Skip to content

Instantly share code, notes, and snippets.

@taegyunkim
Last active February 17, 2020 16:22
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/4e0d162e70bd15699d6b4b6bd8977576 to your computer and use it in GitHub Desktop.
Save taegyunkim/4e0d162e70bd15699d6b4b6bd8977576 to your computer and use it in GitHub Desktop.
Perf analysis of ./examples/hackers_delight/p7.wat at 15b989c
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="598" onload="init(evt)" viewBox="0 0 1200 598" 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="598.0" fill="url(#background)" />
<text id="title" x="600.00" y="24" >Flame Graph</text>
<text id="details" x="10.00" y="581" > </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="581" > </text>
<g id="frames">
<g >
<title>wasmer_runtime::compile_with_config::h3146f6a9cd30dfc8 (21,403 samples, 51.77%)</title><rect x="243.6" y="453" width="610.9" height="15.0" fill="rgb(232,27,4)" rx="2" ry="2" />
<text x="246.59" y="463.5" >wasmer_runtime::compile_with_config::h3146f6a9cd30dfc8</text>
</g>
<g >
<title>__GI___libc_realloc (4 samples, 0.01%)</title><rect x="1171.6" y="309" width="0.1" height="15.0" fill="rgb(242,63,43)" rx="2" ry="2" />
<text x="1174.62" y="319.5" ></text>
</g>
<g >
<title>cranelift_codegen::context::Context::legalize::h3be573a3855dd690 (9 samples, 0.02%)</title><rect x="1176.1" y="405" width="0.3" height="15.0" fill="rgb(251,158,4)" rx="2" ry="2" />
<text x="1179.13" y="415.5" ></text>
</g>
<g >
<title>_ZN16cranelift_entity4list17ListPool$LT$T$GT$7realloc17h94c8a4e9c97c23a9E.llvm.776987249141506950 (4 samples, 0.01%)</title><rect x="93.5" y="213" width="0.1" height="15.0" fill="rgb(210,51,41)" rx="2" ry="2" />
<text x="96.48" y="223.5" ></text>
</g>
<g >
<title>__GI___libc_free (6 samples, 0.01%)</title><rect x="204.8" y="277" width="0.1" height="15.0" fill="rgb(224,143,18)" rx="2" ry="2" />
<text x="207.77" y="287.5" ></text>
</g>
<g >
<title>std::time::Instant::now::h33d2ba6042def2d2 (7 samples, 0.02%)</title><rect x="116.2" y="261" width="0.2" height="15.0" fill="rgb(231,54,30)" rx="2" ry="2" />
<text x="119.20" y="271.5" ></text>
</g>
<g >
<title>wasmparser::binary_reader::BinaryReader::read_section_code::h3130ec4f2be00e86 (81 samples, 0.20%)</title><rect x="564.6" y="309" width="2.3" height="15.0" fill="rgb(243,143,54)" rx="2" ry="2" />
<text x="567.59" y="319.5" ></text>
</g>
<g >
<title>__GI___libc_malloc (4 samples, 0.01%)</title><rect x="324.7" y="341" width="0.1" height="15.0" fill="rgb(234,86,18)" rx="2" ry="2" />
<text x="327.67" y="351.5" ></text>
</g>
<g >
<title>alloc::raw_vec::RawVec$LT$T$C$A$GT$::reserve::hae39d8e15426d2f6 (10 samples, 0.02%)</title><rect x="77.4" y="261" width="0.3" height="15.0" fill="rgb(212,137,30)" rx="2" ry="2" />
<text x="80.42" y="271.5" ></text>
</g>
<g >
<title>std::sys::unix::alloc::_$LT$impl$u20$core..alloc..GlobalAlloc$u20$for$u20$std..alloc..System$GT$::dealloc::h000dc0e1d3b4be28 (8 samples, 0.02%)</title><rect x="730.4" y="373" width="0.2" height="15.0" fill="rgb(239,133,22)" rx="2" ry="2" />
<text x="733.39" y="383.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 (11 samples, 0.03%)</title><rect x="174.8" y="373" width="0.3" height="15.0" fill="rgb(231,60,43)" rx="2" ry="2" />
<text x="177.80" y="383.5" ></text>
</g>
<g >
<title>std::time::Instant::now::h33d2ba6042def2d2 (6 samples, 0.01%)</title><rect x="115.1" y="245" width="0.2" height="15.0" fill="rgb(228,16,47)" rx="2" ry="2" />
<text x="118.12" y="255.5" ></text>
</g>
<g >
<title>_int_free (9 samples, 0.02%)</title><rect x="351.8" y="389" width="0.3" height="15.0" fill="rgb(250,104,10)" rx="2" ry="2" />
<text x="354.82" y="399.5" ></text>
</g>
<g >
<title>__GI___libc_realloc (4 samples, 0.01%)</title><rect x="18.7" y="309" width="0.1" height="15.0" fill="rgb(227,208,46)" rx="2" ry="2" />
<text x="21.73" y="319.5" ></text>
</g>
<g >
<title>mprotect_fixup (218 samples, 0.53%)</title><rect x="263.4" y="277" width="6.2" height="15.0" fill="rgb(215,40,21)" rx="2" ry="2" />
<text x="266.39" 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 (6 samples, 0.01%)</title><rect x="270.6" y="373" width="0.2" height="15.0" fill="rgb(222,103,51)" rx="2" ry="2" />
<text x="273.61" y="383.5" ></text>
</g>
<g >
<title>cranelift_codegen::regalloc::branch_splitting::run::hbbb4e417c98f8376 (64 samples, 0.15%)</title><rect x="123.0" y="277" width="1.9" height="15.0" fill="rgb(253,211,45)" rx="2" ry="2" />
<text x="126.03" y="287.5" ></text>
</g>
<g >
<title>__GI___libc_free (21 samples, 0.05%)</title><rect x="300.2" y="373" width="0.6" height="15.0" fill="rgb(221,24,35)" rx="2" ry="2" />
<text x="303.18" y="383.5" ></text>
</g>
<g >
<title>_int_free (12 samples, 0.03%)</title><rect x="178.0" y="325" width="0.3" height="15.0" fill="rgb(227,118,54)" rx="2" ry="2" />
<text x="180.97" y="335.5" ></text>
</g>
<g >
<title>_$LT$alloc..vec..Vec$LT$T$GT$$u20$as$u20$core..clone..Clone$GT$::clone::hd0c3d21be1c02339 (11 samples, 0.03%)</title><rect x="62.1" y="309" width="0.3" height="15.0" fill="rgb(247,172,9)" rx="2" ry="2" />
<text x="65.09" y="319.5" ></text>
</g>
<g >
<title>core::ptr::real_drop_in_place::h2e9559b12c7fca43 (16 samples, 0.04%)</title><rect x="179.3" y="341" width="0.5" height="15.0" fill="rgb(253,166,44)" rx="2" ry="2" />
<text x="182.34" y="351.5" ></text>
</g>
<g >
<title>__vdso_clock_gettime (4 samples, 0.01%)</title><rect x="37.0" y="245" width="0.1" height="15.0" fill="rgb(211,144,43)" rx="2" ry="2" />
<text x="39.97" y="255.5" ></text>
</g>
<g >
<title>_$LT$rayon..iter..while_some..WhileSome$LT$I$GT$$u20$as$u20$rayon..iter..ParallelIterator$GT$::drive_unindexed::h5bb97cb6437a1950 (270 samples, 0.65%)</title><rect x="174.3" y="421" width="7.7" height="15.0" fill="rgb(238,168,3)" rx="2" ry="2" />
<text x="177.29" y="431.5" ></text>
</g>
<g >
<title>perf_output_copy (7 samples, 0.02%)</title><rect x="287.4" y="197" width="0.2" height="15.0" fill="rgb(229,180,44)" rx="2" ry="2" />
<text x="290.40" y="207.5" ></text>
</g>
<g >
<title>std::time::Instant::now::h33d2ba6042def2d2 (9 samples, 0.02%)</title><rect x="37.7" y="325" width="0.2" height="15.0" fill="rgb(241,120,8)" rx="2" ry="2" />
<text x="40.69" y="335.5" ></text>
</g>
<g >
<title>__vdso_clock_gettime (8 samples, 0.02%)</title><rect x="57.6" y="293" width="0.3" height="15.0" fill="rgb(248,81,6)" rx="2" ry="2" />
<text x="60.64" y="303.5" ></text>
</g>
<g >
<title>cranelift_codegen::postopt::do_postopt::hd4075babc8e08dd8 (54 samples, 0.13%)</title><rect x="118.3" y="293" width="1.5" height="15.0" fill="rgb(246,100,48)" rx="2" ry="2" />
<text x="121.29" y="303.5" ></text>
</g>
<g >
<title>__GI___libc_realloc (6 samples, 0.01%)</title><rect x="1155.7" y="293" width="0.2" height="15.0" fill="rgb(216,49,27)" rx="2" ry="2" />
<text x="1158.75" y="303.5" ></text>
</g>
<g >
<title>std::time::Instant::elapsed::h8e307314b2acf9be (6 samples, 0.01%)</title><rect x="32.6" y="325" width="0.1" height="15.0" fill="rgb(215,180,1)" rx="2" ry="2" />
<text x="35.58" y="335.5" ></text>
</g>
<g >
<title>cranelift_codegen::isa::enc_tables::lookup_enclist::h59f3ade65a5e8b68 (9 samples, 0.02%)</title><rect x="102.3" y="245" width="0.2" height="15.0" fill="rgb(230,64,2)" rx="2" ry="2" />
<text x="105.28" y="255.5" ></text>
</g>
<g >
<title>wasmer_runtime_core::instance::call_func_with_index::hfdcd33b8b41f1e35 (459 samples, 1.11%)</title><rect x="856.1" y="437" width="13.1" height="15.0" fill="rgb(217,162,35)" rx="2" ry="2" />
<text x="859.09" y="447.5" ></text>
</g>
<g >
<title>__GI___libc_realloc (5 samples, 0.01%)</title><rect x="158.0" y="229" width="0.2" height="15.0" fill="rgb(253,148,23)" rx="2" ry="2" />
<text x="161.02" y="239.5" ></text>
</g>
<g >
<title>alloc::raw_vec::RawVec$LT$T$C$A$GT$::reserve::h02503ac3a628c0ac (4 samples, 0.01%)</title><rect x="49.4" y="309" width="0.2" height="15.0" fill="rgb(231,194,32)" rx="2" ry="2" />
<text x="52.44" y="319.5" ></text>
</g>
<g >
<title>_int_free (7 samples, 0.02%)</title><rect x="320.6" y="277" width="0.2" height="15.0" fill="rgb(232,54,12)" rx="2" ry="2" />
<text x="323.56" y="287.5" ></text>
</g>
<g >
<title>wasmparser::binary_reader::BinaryReader::read_func_type::h0cd44550c784004e (981 samples, 2.37%)</title><rect x="455.4" y="357" width="28.0" height="15.0" fill="rgb(216,163,21)" rx="2" ry="2" />
<text x="458.36" y="367.5" >w..</text>
</g>
<g >
<title>alloc::raw_vec::RawVec$LT$T$C$A$GT$::reserve::h5bb4661d248be310 (54 samples, 0.13%)</title><rect x="945.7" y="389" width="1.6" height="15.0" fill="rgb(223,164,52)" rx="2" ry="2" />
<text x="948.71" y="399.5" ></text>
</g>
<g >
<title>__GI___libc_free (5 samples, 0.01%)</title><rect x="242.9" y="437" width="0.1" height="15.0" fill="rgb(240,3,6)" rx="2" ry="2" />
<text x="245.90" y="447.5" ></text>
</g>
<g >
<title>_int_malloc (4 samples, 0.01%)</title><rect x="801.1" y="309" width="0.1" height="15.0" fill="rgb(239,39,10)" rx="2" ry="2" />
<text x="804.09" y="319.5" ></text>
</g>
<g >
<title>_ZN9hashbrown3raw17RawTable$LT$T$GT$14reserve_rehash17h949d57d1e07c193dE.llvm.16938716460618634628 (10 samples, 0.02%)</title><rect x="96.4" y="229" width="0.3" height="15.0" fill="rgb(251,161,4)" rx="2" ry="2" />
<text x="99.42" y="239.5" ></text>
</g>
<g >
<title>wasmer_runtime_core::sys::unix::memory::Memory::with_size::h99a15e322ed7dfca (263 samples, 0.64%)</title><rect x="289.8" y="373" width="7.5" height="15.0" fill="rgb(219,99,46)" rx="2" ry="2" />
<text x="292.77" y="383.5" ></text>
</g>
<g >
<title>_$LT$wasmer_runtime_core..backend..MemoryBoundCheckMode$u20$as$u20$core..default..Default$GT$::default::h7fc24ef0b645386a (7 samples, 0.02%)</title><rect x="217.8" y="453" width="0.2" height="15.0" fill="rgb(252,123,15)" rx="2" ry="2" />
<text x="220.81" y="463.5" ></text>
</g>
<g >
<title>_$LT$parity_wasm..elements..ops..Instruction$u20$as$u20$parity_wasm..elements..Serialize$GT$::serialize::h0e7ca03145b3f942 (2,386 samples, 5.77%)</title><rect x="927.7" y="421" width="68.1" height="15.0" fill="rgb(252,80,10)" rx="2" ry="2" />
<text x="930.73" y="431.5" >_$LT$pa..</text>
</g>
<g >
<title>std::time::Instant::elapsed::h8e307314b2acf9be (4 samples, 0.01%)</title><rect x="69.7" y="277" width="0.1" height="15.0" fill="rgb(251,149,17)" rx="2" ry="2" />
<text x="72.65" y="287.5" ></text>
</g>
<g >
<title>cranelift_codegen::legalizer::legalize_function::h9c05a7523015c4df (16 samples, 0.04%)</title><rect x="1167.4" y="293" width="0.4" height="15.0" fill="rgb(230,166,13)" rx="2" ry="2" />
<text x="1170.37" y="303.5" ></text>
</g>
<g >
<title>std::time::Instant::now::h33d2ba6042def2d2 (8 samples, 0.02%)</title><rect x="54.2" y="341" width="0.2" height="15.0" fill="rgb(249,2,43)" rx="2" ry="2" />
<text x="57.15" y="351.5" ></text>
</g>
<g >
<title>rocinante::stoke::Superoptimizer::synthesize::h4ba34d72c5765be9 (6 samples, 0.01%)</title><rect x="184.6" y="421" width="0.2" height="15.0" fill="rgb(214,83,29)" rx="2" ry="2" />
<text x="187.62" y="431.5" ></text>
</g>
<g >
<title>__GI___libc_free (41 samples, 0.10%)</title><rect x="271.1" y="357" width="1.1" height="15.0" fill="rgb(243,96,11)" rx="2" ry="2" />
<text x="274.07" y="367.5" ></text>
</g>
<g >
<title>__GI___clock_gettime (5 samples, 0.01%)</title><rect x="1170.8" y="277" width="0.1" height="15.0" fill="rgb(249,74,53)" rx="2" ry="2" />
<text x="1173.79" y="287.5" ></text>
</g>
<g >
<title>wasmparser::binary_reader::BinaryReader::read_section_header::h81c8f9a3c6efd252 (17 samples, 0.04%)</title><rect x="813.4" y="325" width="0.5" height="15.0" fill="rgb(231,32,54)" rx="2" ry="2" />
<text x="816.45" y="335.5" ></text>
</g>
<g >
<title>_int_free (11 samples, 0.03%)</title><rect x="307.1" y="341" width="0.4" height="15.0" fill="rgb(211,128,37)" rx="2" ry="2" />
<text x="310.15" y="351.5" ></text>
</g>
<g >
<title>__GI___libc_malloc (6 samples, 0.01%)</title><rect x="163.9" y="261" width="0.1" height="15.0" fill="rgb(239,145,20)" rx="2" ry="2" />
<text x="166.87" y="271.5" ></text>
</g>
<g >
<title>std::sys::unix::time::inner::Instant::now::h23f1bea5949f1bbd (5 samples, 0.01%)</title><rect x="1164.4" y="293" width="0.2" height="15.0" fill="rgb(223,166,43)" rx="2" ry="2" />
<text x="1167.43" y="303.5" ></text>
</g>
<g >
<title>_int_free (15 samples, 0.04%)</title><rect x="195.9" y="197" width="0.4" height="15.0" fill="rgb(234,190,53)" rx="2" ry="2" />
<text x="198.89" y="207.5" ></text>
</g>
<g >
<title>cranelift_codegen::isa::x86::abi::legalize_signature::hdcf9074841354b32 (77 samples, 0.19%)</title><rect x="78.0" y="245" width="2.2" height="15.0" fill="rgb(247,73,22)" rx="2" ry="2" />
<text x="80.99" y="255.5" ></text>
</g>
<g >
<title>__GI___libc_realloc (4 samples, 0.01%)</title><rect x="53.3" y="293" width="0.1" height="15.0" fill="rgb(213,2,38)" rx="2" ry="2" />
<text x="56.27" y="303.5" ></text>
</g>
<g >
<title>_$LT$cranelift_codegen..isa..enc_tables..Encodings$u20$as$u20$core..iter..traits..iterator..Iterator$GT$::next::he6ba202105922eb5 (4 samples, 0.01%)</title><rect x="22.4" y="261" width="0.1" height="15.0" fill="rgb(210,113,6)" rx="2" ry="2" />
<text x="25.42" y="271.5" ></text>
</g>
<g >
<title>hashbrown::map::HashMap$LT$K$C$V$C$S$GT$::contains_key::h6a246e820911d2be (14 samples, 0.03%)</title><rect x="875.4" y="373" width="0.4" height="15.0" fill="rgb(208,189,28)" rx="2" ry="2" />
<text x="878.38" y="383.5" ></text>
</g>
<g >
<title>cranelift_codegen::simple_gvn::do_simple_gvn::h76b7a5cd0deccebd (68 samples, 0.16%)</title><rect x="1163.7" y="357" width="2.0" height="15.0" fill="rgb(209,130,15)" rx="2" ry="2" />
<text x="1166.71" y="367.5" ></text>
</g>
<g >
<title>hashbrown::raw::RawTable$LT$T$GT$::try_with_capacity::h7a6e6bae489d4fe9 (6 samples, 0.01%)</title><rect x="96.5" y="213" width="0.2" height="15.0" fill="rgb(237,58,22)" rx="2" ry="2" />
<text x="99.54" y="223.5" ></text>
</g>
<g >
<title>cranelift_codegen::regalloc::spilling::Spilling::run::hbc5ba3177617b881 (306 samples, 0.74%)</title><rect x="152.4" y="277" width="8.7" height="15.0" fill="rgb(225,50,53)" rx="2" ry="2" />
<text x="155.39" y="287.5" ></text>
</g>
<g >
<title>std::sys::unix::time::inner::now::ha10452f37b2930c5 (4 samples, 0.01%)</title><rect x="1155.1" y="293" width="0.1" height="15.0" fill="rgb(213,187,33)" rx="2" ry="2" />
<text x="1158.09" y="303.5" ></text>
</g>
<g >
<title>cranelift_codegen::ir::function::Function::with_name_signature::h3213a13dd838e646 (16 samples, 0.04%)</title><rect x="800.4" y="373" width="0.4" height="15.0" fill="rgb(245,112,47)" rx="2" ry="2" />
<text x="803.38" y="383.5" ></text>
</g>
<g >
<title>std::sys::unix::time::inner::Instant::now::h23f1bea5949f1bbd (5 samples, 0.01%)</title><rect x="51.7" y="293" width="0.1" height="15.0" fill="rgb(219,113,16)" rx="2" ry="2" />
<text x="54.70" y="303.5" ></text>
</g>
<g >
<title>cranelift_codegen::isa::x86::abi::legalize_signature::hdcf9074841354b32 (38 samples, 0.09%)</title><rect x="15.1" y="325" width="1.0" height="15.0" fill="rgb(240,224,43)" rx="2" ry="2" />
<text x="18.05" y="335.5" ></text>
</g>
<g >
<title>__GI___libc_malloc (5 samples, 0.01%)</title><rect x="38.4" y="309" width="0.1" height="15.0" fill="rgb(230,136,23)" rx="2" ry="2" />
<text x="41.37" 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::h3b22b0ddf87d536f (16 samples, 0.04%)</title><rect x="159.8" y="245" width="0.5" height="15.0" fill="rgb(231,72,17)" rx="2" ry="2" />
<text x="162.84" y="255.5" ></text>
</g>
<g >
<title>cranelift_codegen::ir::builder::InstBuilder::iconst::h085df8078cba1853 (9 samples, 0.02%)</title><rect x="86.5" y="197" width="0.3" height="15.0" fill="rgb(214,194,51)" rx="2" ry="2" />
<text x="89.52" y="207.5" ></text>
</g>
<g >
<title>cranelift_codegen::ir::layout::Layout::append_ebb::h4406a9dd59ad7fbd (12 samples, 0.03%)</title><rect x="807.0" y="357" width="0.3" height="15.0" fill="rgb(205,170,52)" rx="2" ry="2" />
<text x="809.97" y="367.5" ></text>
</g>
<g >
<title>do_syscall_64 (506 samples, 1.22%)</title><rect x="329.2" y="325" width="14.5" height="15.0" fill="rgb(214,207,26)" rx="2" ry="2" />
<text x="332.24" y="335.5" ></text>
</g>
<g >
<title>__GI___libc_free (199 samples, 0.48%)</title><rect x="1023.0" y="421" width="5.7" height="15.0" fill="rgb(228,65,51)" rx="2" ry="2" />
<text x="1025.97" y="431.5" ></text>
</g>
<g >
<title>cranelift_codegen::ir::dfg::DataFlowGraph::append_result::h44f9432a950b5ad1 (5 samples, 0.01%)</title><rect x="319.9" y="341" width="0.1" height="15.0" fill="rgb(252,206,13)" rx="2" ry="2" />
<text x="322.88" y="351.5" ></text>
</g>
<g >
<title>cranelift_codegen::regalloc::diversion::RegDiversions::apply::ha5ceacd048d67eac (15 samples, 0.04%)</title><rect x="97.8" y="261" width="0.5" height="15.0" fill="rgb(231,142,44)" rx="2" ry="2" />
<text x="100.82" y="271.5" ></text>
</g>
<g >
<title>get_sigframe.isra.13.constprop.14 (10 samples, 0.02%)</title><rect x="13.1" y="437" width="0.3" height="15.0" fill="rgb(210,120,13)" rx="2" ry="2" />
<text x="16.11" y="447.5" ></text>
</g>
<g >
<title>alloc_perturb (4 samples, 0.01%)</title><rect x="671.4" y="309" width="0.1" height="15.0" fill="rgb(241,175,19)" rx="2" ry="2" />
<text x="674.43" y="319.5" ></text>
</g>
<g >
<title>cranelift_codegen::regalloc::spilling::Context::spill_reg::hfd9fc3b6557c8c97 (13 samples, 0.03%)</title><rect x="1175.8" y="357" width="0.3" height="15.0" fill="rgb(234,176,17)" rx="2" ry="2" />
<text x="1178.76" y="367.5" ></text>
</g>
<g >
<title>cranelift_codegen::dominator_tree::DominatorTree::last_dominator::hbcfde909e28ac84e (5 samples, 0.01%)</title><rect x="164.2" y="277" width="0.1" height="15.0" fill="rgb(233,94,33)" rx="2" ry="2" />
<text x="167.18" y="287.5" ></text>
</g>
<g >
<title>free_unref_page_list (4 samples, 0.01%)</title><rect x="231.6" y="197" width="0.1" height="15.0" fill="rgb(227,53,23)" rx="2" ry="2" />
<text x="234.63" y="207.5" ></text>
</g>
<g >
<title>malloc_consolidate (30 samples, 0.07%)</title><rect x="799.3" y="325" width="0.9" height="15.0" fill="rgb(240,162,15)" rx="2" ry="2" />
<text x="802.35" y="335.5" ></text>
</g>
<g >
<title>_$LT$$RF$mut$u20$cranelift_codegen..cursor..EncCursor$u20$as$u20$cranelift_codegen..ir..builder..InstInserterBase$GT$::insert_built_inst::hbf5c6b2278487fe8 (22 samples, 0.05%)</title><rect x="1171.6" y="341" width="0.6" height="15.0" fill="rgb(212,188,47)" rx="2" ry="2" />
<text x="1174.62" y="351.5" ></text>
</g>
<g >
<title>_ZN17cranelift_codegen8regalloc6solver6Solver13find_solution17h23fb3e5d74fee50cE.llvm.529824060399144151 (13 samples, 0.03%)</title><rect x="135.5" y="261" width="0.3" height="15.0" fill="rgb(210,105,21)" rx="2" ry="2" />
<text x="138.47" y="271.5" ></text>
</g>
<g >
<title>_$LT$wasmer_clif_backend..code..CraneliftModuleCodeGenerator$u20$as$u20$wasmer_runtime_core..codegen..ModuleCodeGenerator$LT$wasmer_clif_backend..code..CraneliftFunctionCodeGenerator$C$wasmer_clif_backend..signal..Caller$C$wasmer_clif_backend..code..CodegenError$GT$$GT$::finalize::hbd8b1f6eb4859c5a (315 samples, 0.76%)</title><rect x="174.3" y="485" width="9.0" height="15.0" fill="rgb(214,139,4)" rx="2" ry="2" />
<text x="177.29" y="495.5" ></text>
</g>
<g >
<title>perf_iterate_ctx (64 samples, 0.15%)</title><rect x="267.1" y="229" width="1.9" height="15.0" fill="rgb(223,196,4)" rx="2" ry="2" />
<text x="270.13" y="239.5" ></text>
</g>
<g >
<title>std::rt::lang_start_internal::h3bdc4c7d98181bf9 (723 samples, 1.75%)</title><rect x="184.8" y="453" width="20.7" height="15.0" fill="rgb(250,83,3)" rx="2" ry="2" />
<text x="187.85" y="463.5" ></text>
</g>
<g >
<title>__GI___libc_realloc (8 samples, 0.02%)</title><rect x="1176.8" y="325" width="0.2" height="15.0" fill="rgb(228,141,53)" rx="2" ry="2" />
<text x="1179.79" y="335.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 (6 samples, 0.01%)</title><rect x="85.6" y="197" width="0.2" height="15.0" fill="rgb(211,157,6)" rx="2" ry="2" />
<text x="88.61" y="207.5" ></text>
</g>
<g >
<title>__rust_probestack (7 samples, 0.02%)</title><rect x="1180.5" y="517" width="0.2" height="15.0" fill="rgb(233,216,5)" rx="2" ry="2" />
<text x="1183.50" y="527.5" ></text>
</g>
<g >
<title>alloc::vec::Vec$LT$T$GT$::resize::h32a2d4ba425bc523 (11 samples, 0.03%)</title><rect x="13.7" y="341" width="0.3" height="15.0" fill="rgb(245,214,43)" rx="2" ry="2" />
<text x="16.71" y="351.5" ></text>
</g>
<g >
<title>perf_iterate_ctx (5 samples, 0.01%)</title><rect x="187.0" y="37" width="0.1" height="15.0" fill="rgb(239,212,6)" rx="2" ry="2" />
<text x="189.99" y="47.5" ></text>
</g>
<g >
<title>c2_chacha::guts::refill_wide::he4343866a1fa78ce (58 samples, 0.14%)</title><rect x="211.4" y="453" width="1.7" height="15.0" fill="rgb(216,96,41)" rx="2" ry="2" />
<text x="214.42" y="463.5" ></text>
</g>
<g >
<title>alloc::raw_vec::RawVec$LT$T$C$A$GT$::reserve::hd6c8f26eb3c9fb4b (15 samples, 0.04%)</title><rect x="88.3" y="245" width="0.5" height="15.0" fill="rgb(233,108,7)" rx="2" ry="2" />
<text x="91.35" y="255.5" ></text>
</g>
<g >
<title>cranelift_codegen::ir::builder::InstBuilder::sshr_imm::h62de6656fe758ee0 (8 samples, 0.02%)</title><rect x="84.7" y="213" width="0.3" height="15.0" fill="rgb(238,27,21)" rx="2" ry="2" />
<text x="87.72" y="223.5" ></text>
</g>
<g >
<title>__GI___libc_malloc (323 samples, 0.78%)</title><rect x="720.3" y="389" width="9.3" height="15.0" fill="rgb(243,15,9)" rx="2" ry="2" />
<text x="723.35" y="399.5" ></text>
</g>
<g >
<title>wasmparser::parser::Parser::read_next_section::h4d9786321eb758cf (1,463 samples, 3.54%)</title><rect x="525.1" y="357" width="41.8" height="15.0" fill="rgb(247,78,41)" rx="2" ry="2" />
<text x="528.15" y="367.5" >was..</text>
</g>
<g >
<title>cranelift_codegen::ir::layout::Layout::insert_inst::h352d76f498d27496 (5 samples, 0.01%)</title><rect x="137.6" y="229" width="0.1" height="15.0" fill="rgb(242,64,20)" rx="2" ry="2" />
<text x="140.58" y="239.5" ></text>
</g>
<g >
<title>_ZN9hashbrown3raw17RawTable$LT$T$GT$14reserve_rehash17h949d57d1e07c193dE.llvm.16938716460618634628 (22 samples, 0.05%)</title><rect x="72.2" y="245" width="0.7" height="15.0" fill="rgb(253,220,45)" rx="2" ry="2" />
<text x="75.25" y="255.5" ></text>
</g>
<g >
<title>crossbeam_epoch::internal::Global::try_advance::hdfa3562e1e5e830a (10 samples, 0.02%)</title><rect x="184.2" y="245" width="0.3" height="15.0" fill="rgb(222,210,20)" rx="2" ry="2" />
<text x="187.22" 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::h3b22b0ddf87d536f (4 samples, 0.01%)</title><rect x="1169.9" y="261" width="0.1" height="15.0" fill="rgb(231,109,6)" rx="2" ry="2" />
<text x="1172.91" y="271.5" ></text>
</g>
<g >
<title>_int_malloc (4 samples, 0.01%)</title><rect x="323.6" y="325" width="0.1" height="15.0" fill="rgb(212,129,22)" rx="2" ry="2" />
<text x="326.59" y="335.5" ></text>
</g>
<g >
<title>rocinante::main::h69eb7648725adb6f (33,050 samples, 79.94%)</title><rect x="205.5" y="501" width="943.3" height="15.0" fill="rgb(244,196,36)" rx="2" ry="2" />
<text x="208.48" y="511.5" >rocinante::main::h69eb7648725adb6f</text>
</g>
<g >
<title>c2_chacha::guts::refill_wide::he4343866a1fa78ce (13 samples, 0.03%)</title><rect x="1144.0" y="437" width="0.4" height="15.0" fill="rgb(224,215,29)" rx="2" ry="2" />
<text x="1147.05" y="447.5" ></text>
</g>
<g >
<title>_$LT$wasmparser..validator..ValidatingParser$u20$as$u20$wasmparser..parser..WasmDecoder$GT$::read::h573837335870e77b (167 samples, 0.40%)</title><rect x="810.7" y="389" width="4.7" height="15.0" fill="rgb(243,22,0)" rx="2" ry="2" />
<text x="813.65" y="399.5" ></text>
</g>
<g >
<title>__GI___libc_malloc (9 samples, 0.02%)</title><rect x="193.6" y="165" width="0.2" height="15.0" fill="rgb(213,195,5)" rx="2" ry="2" />
<text x="196.58" y="175.5" ></text>
</g>
<g >
<title>sys_rt_sigprocmask (15 samples, 0.04%)</title><rect x="1189.6" y="453" width="0.4" height="15.0" fill="rgb(242,92,4)" rx="2" ry="2" />
<text x="1192.57" y="463.5" ></text>
</g>
<g >
<title>__vma_rb_erase (9 samples, 0.02%)</title><rect x="342.7" y="229" width="0.2" height="15.0" fill="rgb(233,103,19)" rx="2" ry="2" />
<text x="345.68" y="239.5" ></text>
</g>
<g >
<title>__GI___sched_yield (4 samples, 0.01%)</title><rect x="184.5" y="309" width="0.1" height="15.0" fill="rgb(246,212,49)" rx="2" ry="2" />
<text x="187.50" y="319.5" ></text>
</g>
<g >
<title>__vdso_clock_gettime (5 samples, 0.01%)</title><rect x="107.5" y="213" width="0.1" height="15.0" fill="rgb(225,180,33)" rx="2" ry="2" />
<text x="110.50" y="223.5" ></text>
</g>
<g >
<title>std::time::Instant::elapsed::h8e307314b2acf9be (11 samples, 0.03%)</title><rect x="37.6" y="341" width="0.3" height="15.0" fill="rgb(225,142,3)" rx="2" ry="2" />
<text x="40.63" y="351.5" ></text>
</g>
<g >
<title>__GI___libc_malloc (13 samples, 0.03%)</title><rect x="813.9" y="373" width="0.4" height="15.0" fill="rgb(212,63,29)" rx="2" ry="2" />
<text x="816.93" y="383.5" ></text>
</g>
<g >
<title>alloc::raw_vec::RawVec$LT$T$C$A$GT$::reserve::h0782b123c92dc061 (6 samples, 0.01%)</title><rect x="306.5" y="373" width="0.2" height="15.0" fill="rgb(207,107,34)" rx="2" ry="2" />
<text x="309.49" y="383.5" ></text>
</g>
<g >
<title>__GI___libc_malloc (5 samples, 0.01%)</title><rect x="147.7" y="213" width="0.2" height="15.0" fill="rgb(216,224,47)" rx="2" ry="2" />
<text x="150.74" y="223.5" ></text>
</g>
<g >
<title>cranelift_codegen::ir::layout::Layout::append_ebb::h4406a9dd59ad7fbd (5 samples, 0.01%)</title><rect x="324.8" y="373" width="0.2" height="15.0" fill="rgb(241,72,51)" rx="2" ry="2" />
<text x="327.82" y="383.5" ></text>
</g>
<g >
<title>cranelift_codegen::regalloc::spilling::Spilling::run::hbc5ba3177617b881 (24 samples, 0.06%)</title><rect x="1169.3" y="293" width="0.7" height="15.0" fill="rgb(241,222,23)" rx="2" ry="2" />
<text x="1172.34" y="303.5" ></text>
</g>
<g >
<title>std::sys::unix::time::inner::Instant::now::h23f1bea5949f1bbd (5 samples, 0.01%)</title><rect x="36.9" y="293" width="0.2" height="15.0" fill="rgb(236,111,1)" rx="2" ry="2" />
<text x="39.94" y="303.5" ></text>
</g>
<g >
<title>_$LT$crossbeam_epoch..sync..list..Iter$LT$T$C$C$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$::next::hfa992e1b1f77fd4f (10 samples, 0.02%)</title><rect x="184.2" y="229" width="0.3" height="15.0" fill="rgb(254,160,9)" rx="2" ry="2" />
<text x="187.22" y="239.5" ></text>
</g>
<g >
<title>get_signal (5 samples, 0.01%)</title><rect x="13.4" y="437" width="0.1" height="15.0" fill="rgb(217,229,5)" rx="2" ry="2" />
<text x="16.40" y="447.5" ></text>
</g>
<g >
<title>_ZN9hashbrown3raw17RawTable$LT$T$GT$14reserve_rehash17h949d57d1e07c193dE.llvm.16938716460618634628 (10 samples, 0.02%)</title><rect x="1171.3" y="325" width="0.3" height="15.0" fill="rgb(219,37,21)" rx="2" ry="2" />
<text x="1174.33" y="335.5" ></text>
</g>
<g >
<title>cranelift_codegen::ir::builder::InstBuilder::spill::hddbf9a7f97d9d38b (31 samples, 0.07%)</title><rect x="1173.9" y="341" width="0.9" height="15.0" fill="rgb(243,61,20)" rx="2" ry="2" />
<text x="1176.90" y="351.5" ></text>
</g>
<g >
<title>_ZN4core3ptr18real_drop_in_place17he728ca68fc8217d5E.llvm.689856235829814499 (68 samples, 0.16%)</title><rect x="307.5" y="357" width="2.0" height="15.0" fill="rgb(215,61,3)" rx="2" ry="2" />
<text x="310.52" y="367.5" ></text>
</g>
<g >
<title>__GI___libc_realloc (8 samples, 0.02%)</title><rect x="1178.0" y="341" width="0.3" height="15.0" fill="rgb(230,7,44)" rx="2" ry="2" />
<text x="1181.04" y="351.5" ></text>
</g>
<g >
<title>cranelift_codegen::ir::builder::InstBuilder::regmove::h2d2e8972aa228be7 (21 samples, 0.05%)</title><rect x="1176.8" y="373" width="0.6" height="15.0" fill="rgb(250,163,14)" rx="2" ry="2" />
<text x="1179.79" y="383.5" ></text>
</g>
<g >
<title>__GI___libc_realloc (13 samples, 0.03%)</title><rect x="319.2" y="309" width="0.4" height="15.0" fill="rgb(240,178,15)" rx="2" ry="2" />
<text x="322.19" y="319.5" ></text>
</g>
<g >
<title>_$LT$cranelift_codegen..isa..x86..Isa$u20$as$u20$cranelift_codegen..isa..TargetIsa$GT$::prologue_epilogue::ha0b7830888e212f4 (232 samples, 0.56%)</title><rect x="87.4" y="277" width="6.7" height="15.0" fill="rgb(217,170,40)" rx="2" ry="2" />
<text x="90.43" y="287.5" ></text>
</g>
<g >
<title>std::sys::unix::time::inner::Instant::now::h23f1bea5949f1bbd (4 samples, 0.01%)</title><rect x="1161.1" y="325" width="0.1" height="15.0" fill="rgb(211,80,33)" rx="2" ry="2" />
<text x="1164.09" y="335.5" ></text>
</g>
<g >
<title>cranelift_codegen::isa::x86::enc_tables::expand_sdivrem::h68f3c5d1142a2234 (72 samples, 0.17%)</title><rect x="83.5" y="229" width="2.0" height="15.0" fill="rgb(237,216,14)" rx="2" ry="2" />
<text x="86.47" y="239.5" ></text>
</g>
<g >
<title>cranelift_codegen::regalloc::solver::Solver::reassign_in::h4635b38f4d433603 (10 samples, 0.02%)</title><rect x="1172.6" y="341" width="0.2" height="15.0" fill="rgb(208,30,39)" rx="2" ry="2" />
<text x="1175.56" y="351.5" ></text>
</g>
<g >
<title>wasmparser::binary_reader::BinaryReader::read_var_u32::h9f3e844d80d20a5e (33 samples, 0.08%)</title><rect x="521.0" y="325" width="1.0" height="15.0" fill="rgb(233,6,3)" rx="2" ry="2" />
<text x="524.04" y="335.5" ></text>
</g>
<g >
<title>do_mmap (149 samples, 0.36%)</title><rect x="345.3" y="261" width="4.3" height="15.0" fill="rgb(253,150,54)" rx="2" ry="2" />
<text x="348.31" y="271.5" ></text>
</g>
<g >
<title>cranelift_codegen::isa::encoding::base_size::he0d0831e71de2a0c (6 samples, 0.01%)</title><rect x="25.7" y="341" width="0.2" height="15.0" fill="rgb(233,164,41)" rx="2" ry="2" />
<text x="28.70" y="351.5" ></text>
</g>
<g >
<title>cranelift_codegen::ir::instructions::InstructionData::arguments_mut::hd68ce32862759160 (9 samples, 0.02%)</title><rect x="144.8" y="245" width="0.3" height="15.0" fill="rgb(240,180,44)" rx="2" ry="2" />
<text x="147.83" y="255.5" ></text>
</g>
<g >
<title>__memcpy_avx_unaligned (5 samples, 0.01%)</title><rect x="820.9" y="373" width="0.2" height="15.0" fill="rgb(208,35,20)" rx="2" ry="2" />
<text x="823.93" y="383.5" ></text>
</g>
<g >
<title>__GI___libc_malloc (60 samples, 0.15%)</title><rect x="252.7" y="373" width="1.7" height="15.0" fill="rgb(212,115,48)" rx="2" ry="2" />
<text x="255.66" y="383.5" ></text>
</g>
<g >
<title>cranelift_codegen::dominator_tree::DominatorTree::compute::hb8295076ad170b26 (24 samples, 0.06%)</title><rect x="36.6" y="357" width="0.7" height="15.0" fill="rgb(237,25,10)" rx="2" ry="2" />
<text x="39.60" y="367.5" ></text>
</g>
<g >
<title>sys_mmap_pgoff (6 samples, 0.01%)</title><rect x="187.0" y="133" width="0.2" height="15.0" fill="rgb(230,223,14)" rx="2" ry="2" />
<text x="189.99" y="143.5" ></text>
</g>
<g >
<title>__GI___libc_free (8 samples, 0.02%)</title><rect x="327.1" y="309" width="0.3" height="15.0" fill="rgb(247,27,9)" rx="2" ry="2" />
<text x="330.13" y="319.5" ></text>
</g>
<g >
<title>wasmparser::validator::ValidatingParser::new::hf8cf84418abf20c9 (8 samples, 0.02%)</title><rect x="851.1" y="389" width="0.2" height="15.0" fill="rgb(206,201,49)" rx="2" ry="2" />
<text x="854.10" y="399.5" ></text>
</g>
<g >
<title>std::time::Instant::elapsed::h8e307314b2acf9be (8 samples, 0.02%)</title><rect x="24.3" y="325" width="0.2" height="15.0" fill="rgb(249,200,6)" rx="2" ry="2" />
<text x="27.27" y="335.5" ></text>
</g>
<g >
<title>_ZN16cranelift_entity4list17ListPool$LT$T$GT$5alloc17h7031e3fd97879e16E.llvm.776987249141506950 (26 samples, 0.06%)</title><rect x="80.2" y="229" width="0.7" height="15.0" fill="rgb(246,213,32)" rx="2" ry="2" />
<text x="83.18" y="239.5" ></text>
</g>
<g >
<title>perf_iterate_sb (67 samples, 0.16%)</title><rect x="267.0" y="245" width="2.0" height="15.0" fill="rgb(240,111,4)" rx="2" ry="2" />
<text x="270.05" y="255.5" ></text>
</g>
<g >
<title>_int_free (5 samples, 0.01%)</title><rect x="281.4" y="325" width="0.2" height="15.0" fill="rgb(220,43,51)" rx="2" ry="2" />
<text x="284.43" 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 (4 samples, 0.01%)</title><rect x="1140.9" y="421" width="0.1" height="15.0" fill="rgb(235,198,49)" rx="2" ry="2" />
<text x="1143.85" y="431.5" ></text>
</g>
<g >
<title>_int_realloc (9 samples, 0.02%)</title><rect x="1168.4" y="229" width="0.3" height="15.0" fill="rgb(240,3,25)" rx="2" ry="2" />
<text x="1171.42" y="239.5" ></text>
</g>
<g >
<title>alloc::raw_vec::RawVec$LT$T$C$A$GT$::reserve::h5e34cfad90a6ce21 (4 samples, 0.01%)</title><rect x="84.5" y="165" width="0.1" height="15.0" fill="rgb(220,220,40)" rx="2" ry="2" />
<text x="87.52" y="175.5" ></text>
</g>
<g >
<title>_int_malloc (4 samples, 0.01%)</title><rect x="141.1" y="197" width="0.1" height="15.0" fill="rgb(253,71,27)" rx="2" ry="2" />
<text x="144.06" y="207.5" ></text>
</g>
<g >
<title>__GI___pthread_rwlock_unlock (15 samples, 0.04%)</title><rect x="816.0" y="389" width="0.4" height="15.0" fill="rgb(213,88,0)" rx="2" ry="2" />
<text x="818.99" y="399.5" ></text>
</g>
<g >
<title>alloc::vec::Vec$LT$T$GT$::resize::hce468c49acab73c0 (23 samples, 0.06%)</title><rect x="14.4" y="325" width="0.7" height="15.0" fill="rgb(220,60,45)" rx="2" ry="2" />
<text x="17.40" y="335.5" ></text>
</g>
<g >
<title>unmap_region (4 samples, 0.01%)</title><rect x="185.4" y="117" width="0.1" height="15.0" fill="rgb(219,68,2)" rx="2" ry="2" />
<text x="188.42" y="127.5" ></text>
</g>
<g >
<title>cranelift_codegen::context::Context::prologue_epilogue::he7fad23bcfb5a3af (234 samples, 0.57%)</title><rect x="87.4" y="293" width="6.7" height="15.0" fill="rgb(226,98,22)" rx="2" ry="2" />
<text x="90.38" y="303.5" ></text>
</g>
<g >
<title>cranelift_entity::list::EntityList$LT$T$GT$::push::h051541d55e7ee057 (4 samples, 0.01%)</title><rect x="1169.8" y="261" width="0.1" height="15.0" fill="rgb(245,49,21)" rx="2" ry="2" />
<text x="1172.79" y="271.5" ></text>
</g>
<g >
<title>__vdso_clock_gettime (4 samples, 0.01%)</title><rect x="171.2" y="181" width="0.1" height="15.0" fill="rgb(206,188,42)" rx="2" ry="2" />
<text x="174.18" y="191.5" ></text>
</g>
<g >
<title>_int_free (146 samples, 0.35%)</title><rect x="1089.7" y="389" width="4.1" height="15.0" fill="rgb(210,58,31)" rx="2" ry="2" />
<text x="1092.68" y="399.5" ></text>
</g>
<g >
<title>_int_realloc (4 samples, 0.01%)</title><rect x="1178.7" y="309" width="0.1" height="15.0" fill="rgb(218,73,49)" rx="2" ry="2" />
<text x="1181.70" y="319.5" ></text>
</g>
<g >
<title>cranelift_codegen::regalloc::live_value_tracker::LiveValueTracker::ebb_top::hfe56a550654953ca (12 samples, 0.03%)</title><rect x="1179.4" y="373" width="0.3" height="15.0" fill="rgb(220,141,43)" rx="2" ry="2" />
<text x="1182.38" y="383.5" ></text>
</g>
<g >
<title>cranelift_codegen::ir::dfg::DataFlowGraph::make_inst_results::hc774d04d1992dff6 (14 samples, 0.03%)</title><rect x="324.2" y="373" width="0.4" height="15.0" fill="rgb(242,109,17)" rx="2" ry="2" />
<text x="327.16" y="383.5" ></text>
</g>
<g >
<title>__rust_alloc (5 samples, 0.01%)</title><rect x="1049.1" y="405" width="0.2" height="15.0" fill="rgb(226,103,52)" rx="2" ry="2" />
<text x="1052.12" y="415.5" ></text>
</g>
<g >
<title>wasmer_clif_backend::resolver::FuncResolverBuilder::new::h17aa56962b53b260 (93 samples, 0.22%)</title><rect x="1167.4" y="501" width="2.6" height="15.0" fill="rgb(218,164,7)" rx="2" ry="2" />
<text x="1170.37" y="511.5" ></text>
</g>
<g >
<title>__GI___libc_malloc (7 samples, 0.02%)</title><rect x="157.8" y="229" width="0.2" height="15.0" fill="rgb(250,191,43)" rx="2" ry="2" />
<text x="160.82" y="239.5" ></text>
</g>
<g >
<title>_ZN9hashbrown3raw17RawTable$LT$T$GT$14reserve_rehash17h949d57d1e07c193dE.llvm.16938716460618634628 (15 samples, 0.04%)</title><rect x="1152.0" y="309" width="0.4" height="15.0" fill="rgb(220,139,21)" rx="2" ry="2" />
<text x="1154.98" y="319.5" ></text>
</g>
<g >
<title>std::time::Instant::elapsed::h8e307314b2acf9be (7 samples, 0.02%)</title><rect x="96.2" y="245" width="0.2" height="15.0" fill="rgb(227,147,42)" rx="2" ry="2" />
<text x="99.20" y="255.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 (4,073 samples, 9.85%)</title><rect x="58.0" y="501" width="116.3" height="15.0" fill="rgb(234,194,32)" rx="2" ry="2" />
<text x="61.04" y="511.5" >_$LT$wasmer_cl..</text>
</g>
<g >
<title>_int_realloc (4 samples, 0.01%)</title><rect x="1167.5" y="117" width="0.1" height="15.0" fill="rgb(219,160,43)" rx="2" ry="2" />
<text x="1170.48" y="127.5" ></text>
</g>
<g >
<title>std::sys::unix::time::inner::now::ha10452f37b2930c5 (10 samples, 0.02%)</title><rect x="108.8" y="213" width="0.3" height="15.0" fill="rgb(212,186,39)" rx="2" ry="2" />
<text x="111.78" y="223.5" ></text>
</g>
<g >
<title>alloc::raw_vec::RawVec$LT$T$C$A$GT$::reserve::hc8a0fc8526f8c69b (4 samples, 0.01%)</title><rect x="53.3" y="309" width="0.1" height="15.0" fill="rgb(224,100,21)" rx="2" ry="2" />
<text x="56.27" y="319.5" ></text>
</g>
<g >
<title>std::sys::unix::time::inner::Instant::now::h23f1bea5949f1bbd (4 samples, 0.01%)</title><rect x="1160.6" y="293" width="0.1" height="15.0" fill="rgb(228,193,53)" rx="2" ry="2" />
<text x="1163.60" y="303.5" ></text>
</g>
<g >
<title>_int_free (4 samples, 0.01%)</title><rect x="202.1" y="245" width="0.1" height="15.0" fill="rgb(254,40,22)" rx="2" ry="2" />
<text x="205.09" y="255.5" ></text>
</g>
<g >
<title>_int_realloc (5 samples, 0.01%)</title><rect x="201.7" y="213" width="0.1" height="15.0" fill="rgb(230,76,40)" rx="2" ry="2" />
<text x="204.66" y="223.5" ></text>
</g>
<g >
<title>perf_event_mmap (5 samples, 0.01%)</title><rect x="187.0" y="69" width="0.1" height="15.0" fill="rgb(205,124,24)" rx="2" ry="2" />
<text x="189.99" y="79.5" ></text>
</g>
<g >
<title>std::sys::unix::time::inner::now::ha10452f37b2930c5 (8 samples, 0.02%)</title><rect x="54.2" y="309" width="0.2" height="15.0" fill="rgb(224,125,29)" rx="2" ry="2" />
<text x="57.15" y="319.5" ></text>
</g>
<g >
<title>crossbeam_epoch::default::pin::hb4a29c3259df6262 (32 samples, 0.08%)</title><rect x="183.6" y="277" width="0.9" height="15.0" fill="rgb(228,196,42)" rx="2" ry="2" />
<text x="186.59" y="287.5" ></text>
</g>
<g >
<title>cranelift_entity::sparse::SparseMap$LT$K$C$V$GT$::insert::h31013d437c52e258 (14 samples, 0.03%)</title><rect x="1177.4" y="341" width="0.4" height="15.0" fill="rgb(241,157,23)" rx="2" ry="2" />
<text x="1180.38" y="351.5" ></text>
</g>
<g >
<title>_$LT$cranelift_codegen..isa..x86..Isa$u20$as$u20$cranelift_codegen..isa..TargetIsa$GT$::legal_encodings::hf067c4c0987c0b93 (16 samples, 0.04%)</title><rect x="102.1" y="261" width="0.4" height="15.0" fill="rgb(239,62,54)" rx="2" ry="2" />
<text x="105.08" y="271.5" ></text>
</g>
<g >
<title>cranelift_codegen::regalloc::pressure::Pressure::take_transient::h55ed3b6faf9ff3f9 (6 samples, 0.01%)</title><rect x="56.9" y="341" width="0.2" height="15.0" fill="rgb(227,148,14)" rx="2" ry="2" />
<text x="59.92" y="351.5" ></text>
</g>
<g >
<title>std::sys::unix::time::inner::now::ha10452f37b2930c5 (6 samples, 0.01%)</title><rect x="1166.8" y="309" width="0.1" height="15.0" fill="rgb(254,129,54)" rx="2" ry="2" />
<text x="1169.77" y="319.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 (4,003 samples, 9.68%)</title><rect x="58.0" y="373" width="114.3" height="15.0" fill="rgb(247,95,1)" rx="2" ry="2" />
<text x="61.04" y="383.5" >_$LT$rayon..it..</text>
</g>
<g >
<title>__GI___libc_free (446 samples, 1.08%)</title><rect x="707.6" y="389" width="12.7" height="15.0" fill="rgb(213,86,16)" rx="2" ry="2" />
<text x="710.62" y="399.5" ></text>
</g>
<g >
<title>cranelift_codegen::ir::dfg::DataFlowGraph::append_result::h44f9432a950b5ad1 (6 samples, 0.01%)</title><rect x="850.2" y="309" width="0.2" height="15.0" fill="rgb(233,214,34)" rx="2" ry="2" />
<text x="853.21" y="319.5" ></text>
</g>
<g >
<title>_int_free (208 samples, 0.50%)</title><rect x="497.7" y="309" width="5.9" height="15.0" fill="rgb(239,61,53)" rx="2" ry="2" />
<text x="500.69" y="319.5" ></text>
</g>
<g >
<title>_$LT$cranelift_codegen..timing..details..TimingToken$u20$as$u20$core..ops..drop..Drop$GT$::drop::h1b19c2a93ee0a091 (9 samples, 0.02%)</title><rect x="51.6" y="341" width="0.2" height="15.0" fill="rgb(235,148,3)" rx="2" ry="2" />
<text x="54.59" y="351.5" ></text>
</g>
<g >
<title>alloc::sync::Arc$LT$T$GT$::drop_slow::h585962fb74e37fd1 (5 samples, 0.01%)</title><rect x="185.6" y="277" width="0.1" height="15.0" fill="rgb(226,145,50)" rx="2" ry="2" />
<text x="188.56" y="287.5" ></text>
</g>
<g >
<title>__GI___clock_gettime (8 samples, 0.02%)</title><rect x="161.2" y="229" width="0.3" height="15.0" fill="rgb(248,229,20)" rx="2" ry="2" />
<text x="164.24" y="239.5" ></text>
</g>
<g >
<title>_int_malloc (4 samples, 0.01%)</title><rect x="1177.4" y="293" width="0.1" height="15.0" fill="rgb(209,206,9)" rx="2" ry="2" />
<text x="1180.38" y="303.5" ></text>
</g>
<g >
<title>__GI___libc_free (228 samples, 0.55%)</title><rect x="497.1" y="325" width="6.5" height="15.0" fill="rgb(209,122,39)" rx="2" ry="2" />
<text x="500.12" y="335.5" ></text>
</g>
<g >
<title>cranelift_codegen::ir::function::Function::special_param::h6bb1e5d45c3f4180 (4 samples, 0.01%)</title><rect x="1157.1" y="293" width="0.1" height="15.0" fill="rgb(251,130,20)" rx="2" ry="2" />
<text x="1160.12" y="303.5" ></text>
</g>
<g >
<title>cranelift_codegen::ir::builder::InstBuilder::copy::h9316b7c9ced6bd9c (7 samples, 0.02%)</title><rect x="1169.3" y="277" width="0.2" height="15.0" fill="rgb(226,217,4)" rx="2" ry="2" />
<text x="1172.34" y="287.5" ></text>
</g>
<g >
<title>__GI___libc_malloc (4 samples, 0.01%)</title><rect x="56.2" y="325" width="0.1" height="15.0" fill="rgb(223,163,36)" rx="2" ry="2" />
<text x="59.15" y="335.5" ></text>
</g>
<g >
<title>alloc::raw_vec::RawVec$LT$T$C$A$GT$::reserve::h5bb4661d248be310 (1,416 samples, 3.43%)</title><rect x="952.3" y="405" width="40.4" height="15.0" fill="rgb(206,85,9)" rx="2" ry="2" />
<text x="955.28" y="415.5" >all..</text>
</g>
<g >
<title>std::time::Instant::now::h33d2ba6042def2d2 (7 samples, 0.02%)</title><rect x="160.9" y="261" width="0.2" height="15.0" fill="rgb(220,54,33)" rx="2" ry="2" />
<text x="163.93" y="271.5" ></text>
</g>
<g >
<title>_$LT$cranelift_codegen..timing..details..TimingToken$u20$as$u20$core..ops..drop..Drop$GT$::drop::h1b19c2a93ee0a091 (13 samples, 0.03%)</title><rect x="155.7" y="261" width="0.4" height="15.0" fill="rgb(208,147,43)" rx="2" ry="2" />
<text x="158.73" y="271.5" ></text>
</g>
<g >
<title>std::panicking::try::hab539b2d1255d635 (6 samples, 0.01%)</title><rect x="1167.2" y="469" width="0.1" height="15.0" fill="rgb(223,99,1)" rx="2" ry="2" />
<text x="1170.17" y="479.5" ></text>
</g>
<g >
<title>std::time::Instant::now::h33d2ba6042def2d2 (4 samples, 0.01%)</title><rect x="1161.1" y="341" width="0.1" height="15.0" fill="rgb(222,189,23)" rx="2" ry="2" />
<text x="1164.09" y="351.5" ></text>
</g>
<g >
<title>cranelift_codegen::ir::layout::Layout::insert_inst::h352d76f498d27496 (10 samples, 0.02%)</title><rect x="1171.7" y="325" width="0.3" height="15.0" fill="rgb(221,170,36)" rx="2" ry="2" />
<text x="1174.73" y="335.5" ></text>
</g>
<g >
<title>cranelift_entity::sparse::SparseMap$LT$K$C$V$GT$::insert::h31013d437c52e258 (10 samples, 0.02%)</title><rect x="1172.6" y="325" width="0.2" height="15.0" fill="rgb(206,174,9)" rx="2" ry="2" />
<text x="1175.56" y="335.5" ></text>
</g>
<g >
<title>anon_vma_interval_tree_insert (4 samples, 0.01%)</title><rect x="229.2" y="261" width="0.1" height="15.0" fill="rgb(227,145,29)" rx="2" ry="2" />
<text x="232.17" y="271.5" ></text>
</g>
<g >
<title>__GI___libc_malloc (11 samples, 0.03%)</title><rect x="129.7" y="197" width="0.3" height="15.0" fill="rgb(240,162,6)" rx="2" ry="2" />
<text x="132.73" y="207.5" ></text>
</g>
<g >
<title>__GI___libc_realloc (4 samples, 0.01%)</title><rect x="92.9" y="197" width="0.1" height="15.0" fill="rgb(212,183,32)" rx="2" ry="2" />
<text x="95.86" y="207.5" ></text>
</g>
<g >
<title>_int_realloc (11 samples, 0.03%)</title><rect x="1174.3" y="293" width="0.3" height="15.0" fill="rgb(227,119,53)" rx="2" ry="2" />
<text x="1177.30" y="303.5" ></text>
</g>
<g >
<title>_int_realloc (8 samples, 0.02%)</title><rect x="1173.2" y="293" width="0.2" height="15.0" fill="rgb(206,198,18)" rx="2" ry="2" />
<text x="1176.19" y="303.5" ></text>
</g>
<g >
<title>__vdso_clock_gettime (5 samples, 0.01%)</title><rect x="122.4" y="181" width="0.2" height="15.0" fill="rgb(233,162,11)" rx="2" ry="2" />
<text x="125.43" y="191.5" ></text>
</g>
<g >
<title>free_pgd_range (4 samples, 0.01%)</title><rect x="237.7" y="277" width="0.1" height="15.0" fill="rgb(225,2,0)" rx="2" ry="2" />
<text x="240.68" 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::h3e9fa4d2f81daded (12 samples, 0.03%)</title><rect x="874.8" y="373" width="0.4" height="15.0" fill="rgb(233,66,10)" rx="2" ry="2" />
<text x="877.84" 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 (24 samples, 0.06%)</title><rect x="42.8" y="325" width="0.7" height="15.0" fill="rgb(217,124,1)" rx="2" ry="2" />
<text x="45.77" y="335.5" ></text>
</g>
<g >
<title>cranelift_codegen::isa::x86::abi::callee_saved_gprs_used::h307ec5944daa4165 (19 samples, 0.05%)</title><rect x="88.8" y="245" width="0.5" height="15.0" fill="rgb(254,71,24)" rx="2" ry="2" />
<text x="91.78" y="255.5" ></text>
</g>
<g >
<title>cranelift_codegen::context::Context::compile::h9fe1ff28e88fe30f (1,552 samples, 3.75%)</title><rect x="13.6" y="389" width="44.3" height="15.0" fill="rgb(236,80,43)" rx="2" ry="2" />
<text x="16.57" y="399.5" >cran..</text>
</g>
<g >
<title>__GI___libc_malloc (7 samples, 0.02%)</title><rect x="203.6" y="261" width="0.2" height="15.0" fill="rgb(212,115,35)" rx="2" ry="2" />
<text x="206.63" y="271.5" ></text>
</g>
<g >
<title>std::sync::rwlock::RwLock$LT$T$GT$::new::hbb62ff20d783c9ba (14 samples, 0.03%)</title><rect x="820.7" y="389" width="0.4" height="15.0" fill="rgb(214,71,43)" rx="2" ry="2" />
<text x="823.70" y="399.5" ></text>
</g>
<g >
<title>cranelift_codegen::context::Context::legalize::h3be573a3855dd690 (23 samples, 0.06%)</title><rect x="1170.0" y="389" width="0.7" height="15.0" fill="rgb(235,4,34)" rx="2" ry="2" />
<text x="1173.02" y="399.5" ></text>
</g>
<g >
<title>cranelift_codegen::regalloc::live_value_tracker::LiveValueTracker::ebb_top::hfe56a550654953ca (5 samples, 0.01%)</title><rect x="151.2" y="261" width="0.1" height="15.0" fill="rgb(226,121,12)" rx="2" ry="2" />
<text x="154.20" y="271.5" ></text>
</g>
<g >
<title>__rdl_alloc (10 samples, 0.02%)</title><rect x="606.6" y="357" width="0.3" height="15.0" fill="rgb(238,43,13)" rx="2" ry="2" />
<text x="609.61" y="367.5" ></text>
</g>
<g >
<title>alloc::raw_vec::RawVec$LT$T$C$A$GT$::reserve::h500ef385b8747b29 (4 samples, 0.01%)</title><rect x="1169.8" y="229" width="0.1" height="15.0" fill="rgb(207,161,36)" rx="2" ry="2" />
<text x="1172.79" y="239.5" ></text>
</g>
<g >
<title>_int_malloc (12 samples, 0.03%)</title><rect x="80.6" y="165" width="0.3" height="15.0" fill="rgb(207,44,2)" rx="2" ry="2" />
<text x="83.56" y="175.5" ></text>
</g>
<g >
<title>__GI___libc_malloc (16 samples, 0.04%)</title><rect x="33.1" y="277" width="0.4" height="15.0" fill="rgb(212,79,47)" rx="2" ry="2" />
<text x="36.06" y="287.5" ></text>
</g>
<g >
<title>cranelift_codegen::ir::layout::Layout::assign_inst_seq::h59be385ae82e3a19 (4 samples, 0.01%)</title><rect x="298.6" y="357" width="0.1" height="15.0" fill="rgb(224,53,50)" rx="2" ry="2" />
<text x="301.59" y="367.5" ></text>
</g>
<g >
<title>cranelift_codegen::licm::do_licm::hb96edf4ef4d89000 (85 samples, 0.21%)</title><rect x="114.9" y="293" width="2.4" height="15.0" fill="rgb(254,70,50)" rx="2" ry="2" />
<text x="117.86" y="303.5" ></text>
</g>
<g >
<title>std::sys::unix::time::inner::now::ha10452f37b2930c5 (7 samples, 0.02%)</title><rect x="37.1" y="309" width="0.2" height="15.0" fill="rgb(235,82,34)" rx="2" ry="2" />
<text x="40.09" y="319.5" ></text>
</g>
<g >
<title>__GI___libc_malloc (4 samples, 0.01%)</title><rect x="1177.4" y="309" width="0.1" height="15.0" fill="rgb(231,218,47)" rx="2" ry="2" />
<text x="1180.38" 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::h48f6ec9f48077172 (556 samples, 1.34%)</title><rect x="1003.8" y="437" width="15.9" height="15.0" fill="rgb(231,142,7)" rx="2" ry="2" />
<text x="1006.82" y="447.5" ></text>
</g>
<g >
<title>__mmap (257 samples, 0.62%)</title><rect x="289.9" y="357" width="7.3" height="15.0" fill="rgb(239,197,18)" rx="2" ry="2" />
<text x="292.85" y="367.5" ></text>
</g>
<g >
<title>_$LT$wasmer_clif_fork_frontend..frontend..FuncInstBuilder$u20$as$u20$cranelift_codegen..ir..builder..InstBuilderBase$GT$::build::h31ca9581c4035409 (20 samples, 0.05%)</title><rect x="849.9" y="341" width="0.6" height="15.0" fill="rgb(244,74,21)" rx="2" ry="2" />
<text x="852.93" y="351.5" ></text>
</g>
<g >
<title>__GI___libc_malloc (11 samples, 0.03%)</title><rect x="815.7" y="389" width="0.3" height="15.0" fill="rgb(218,104,40)" rx="2" ry="2" />
<text x="818.68" y="399.5" ></text>
</g>
<g >
<title>std::sys::unix::time::inner::now::ha10452f37b2930c5 (6 samples, 0.01%)</title><rect x="1159.5" y="277" width="0.2" height="15.0" fill="rgb(253,43,36)" rx="2" ry="2" />
<text x="1162.52" y="287.5" ></text>
</g>
<g >
<title>pthread_mutexattr_settype (4 samples, 0.01%)</title><rect x="855.3" y="421" width="0.1" height="15.0" fill="rgb(210,228,10)" rx="2" ry="2" />
<text x="858.29" y="431.5" ></text>
</g>
<g >
<title>std::sys::unix::time::inner::now::ha10452f37b2930c5 (7 samples, 0.02%)</title><rect x="160.9" y="229" width="0.2" height="15.0" fill="rgb(213,122,54)" rx="2" ry="2" />
<text x="163.93" y="239.5" ></text>
</g>
<g >
<title>std::sys::unix::time::inner::now::ha10452f37b2930c5 (7 samples, 0.02%)</title><rect x="114.7" y="245" width="0.2" height="15.0" fill="rgb(248,22,46)" rx="2" ry="2" />
<text x="117.66" y="255.5" ></text>
</g>
<g >
<title>std::sys::unix::time::inner::now::ha10452f37b2930c5 (7 samples, 0.02%)</title><rect x="1166.0" y="277" width="0.2" height="15.0" fill="rgb(213,115,38)" rx="2" ry="2" />
<text x="1169.00" y="287.5" ></text>
</g>
<g >
<title>wasmer_clif_backend::resolver::FuncResolverBuilder::new::h17aa56962b53b260 (4,073 samples, 9.85%)</title><rect x="58.0" y="485" width="116.3" height="15.0" fill="rgb(247,171,15)" rx="2" ry="2" />
<text x="61.04" y="495.5" >wasmer_clif_ba..</text>
</g>
<g >
<title>cranelift_codegen::regalloc::liveness::get_or_create::h5a0d21740424a6d5 (47 samples, 0.11%)</title><rect x="48.4" y="341" width="1.4" height="15.0" fill="rgb(253,182,40)" rx="2" ry="2" />
<text x="51.45" y="351.5" ></text>
</g>
<g >
<title>hashbrown::raw::RawTable$LT$T$GT$::reserve_rehash::h145328e315fce2fd (543 samples, 1.31%)</title><rect x="639.3" y="341" width="15.5" height="15.0" fill="rgb(227,209,4)" rx="2" ry="2" />
<text x="642.29" y="351.5" ></text>
</g>
<g >
<title>cranelift_codegen::isa::x86::abi::legalize_signature::hdcf9074841354b32 (9 samples, 0.02%)</title><rect x="1176.1" y="357" width="0.3" height="15.0" fill="rgb(205,169,41)" rx="2" ry="2" />
<text x="1179.13" y="367.5" ></text>
</g>
<g >
<title>hashbrown::rustc_entry::_$LT$impl$u20$hashbrown..map..HashMap$LT$K$C$V$C$S$GT$$GT$::rustc_entry::h157f2592beb19670 (102 samples, 0.25%)</title><rect x="165.9" y="277" width="2.9" height="15.0" fill="rgb(232,190,18)" rx="2" ry="2" />
<text x="168.89" y="287.5" ></text>
</g>
<g >
<title>__rdl_alloc (17 samples, 0.04%)</title><rect x="478.6" y="341" width="0.5" height="15.0" fill="rgb(206,137,6)" rx="2" ry="2" />
<text x="481.57" y="351.5" ></text>
</g>
<g >
<title>alloc::raw_vec::RawVec$LT$T$C$A$GT$::reserve::h500ef385b8747b29 (4 samples, 0.01%)</title><rect x="319.6" y="341" width="0.2" height="15.0" fill="rgb(216,159,13)" rx="2" ry="2" />
<text x="322.65" y="351.5" ></text>
</g>
<g >
<title>alloc::raw_vec::RawVec$LT$T$C$A$GT$::reserve::h35e85fcd2e2f9b0d (16 samples, 0.04%)</title><rect x="203.9" y="277" width="0.4" height="15.0" fill="rgb(210,58,46)" rx="2" ry="2" />
<text x="206.86" y="287.5" ></text>
</g>
<g >
<title>unlink_anon_vmas (17 samples, 0.04%)</title><rect x="237.8" y="277" width="0.5" height="15.0" fill="rgb(220,98,18)" rx="2" ry="2" />
<text x="240.79" y="287.5" ></text>
</g>
<g >
<title>_$LT$std..time..Instant$u20$as$u20$core..ops..arith..Sub$GT$::sub::h63755d061e51623c (4 samples, 0.01%)</title><rect x="87.6" y="229" width="0.1" height="15.0" fill="rgb(210,60,3)" rx="2" ry="2" />
<text x="90.58" y="239.5" ></text>
</g>
<g >
<title>std::sys::unix::time::inner::now::ha10452f37b2930c5 (6 samples, 0.01%)</title><rect x="1166.3" y="309" width="0.2" height="15.0" fill="rgb(246,212,38)" rx="2" ry="2" />
<text x="1169.28" y="319.5" ></text>
</g>
<g >
<title>alloc::raw_vec::RawVec$LT$T$C$A$GT$::reserve::h0c445b41f7c28667 (4 samples, 0.01%)</title><rect x="85.7" y="165" width="0.1" height="15.0" fill="rgb(235,49,0)" rx="2" ry="2" />
<text x="88.66" y="175.5" ></text>
</g>
<g >
<title>alloc::raw_vec::RawVec$LT$T$C$A$GT$::reserve::h5e34cfad90a6ce21 (11 samples, 0.03%)</title><rect x="109.8" y="277" width="0.4" height="15.0" fill="rgb(207,226,5)" rx="2" ry="2" />
<text x="112.84" y="287.5" ></text>
</g>
<g >
<title>_$LT$cranelift_codegen..timing..details..TimingToken$u20$as$u20$core..ops..drop..Drop$GT$::drop::h1b19c2a93ee0a091 (5 samples, 0.01%)</title><rect x="1158.2" y="341" width="0.1" height="15.0" fill="rgb(222,85,12)" rx="2" ry="2" />
<text x="1161.20" y="351.5" ></text>
</g>
<g >
<title>_$LT$wasmparser..validator..ValidatingParser$u20$as$u20$wasmparser..parser..WasmDecoder$GT$::read::h573837335870e77b (269 samples, 0.65%)</title><rect x="187.6" y="229" width="7.6" height="15.0" fill="rgb(236,196,28)" rx="2" ry="2" />
<text x="190.56" y="239.5" ></text>
</g>
<g >
<title>[libpthread-2.23.so] (42 samples, 0.10%)</title><rect x="10.5" y="501" width="1.2" height="15.0" fill="rgb(217,113,16)" rx="2" ry="2" />
<text x="13.54" y="511.5" ></text>
</g>
<g >
<title>hashbrown::map::HashMap$LT$K$C$V$C$S$GT$::remove::hb674e5732ef2fe56 (4 samples, 0.01%)</title><rect x="47.2" y="341" width="0.1" height="15.0" fill="rgb(206,47,11)" rx="2" ry="2" />
<text x="50.16" y="351.5" ></text>
</g>
<g >
<title>_int_realloc (9 samples, 0.02%)</title><rect x="320.5" y="293" width="0.3" height="15.0" fill="rgb(252,45,38)" rx="2" ry="2" />
<text x="323.53" y="303.5" ></text>
</g>
<g >
<title>__GI___libc_malloc (6 samples, 0.01%)</title><rect x="79.8" y="197" width="0.2" height="15.0" fill="rgb(252,171,50)" rx="2" ry="2" />
<text x="82.81" y="207.5" ></text>
</g>
<g >
<title>rocinante::stoke::CandidateFunc::get_equiv_local_idx::h5887c3d4ccb5d2b4 (44 samples, 0.11%)</title><rect x="1109.8" y="453" width="1.2" height="15.0" fill="rgb(238,189,53)" rx="2" ry="2" />
<text x="1112.77" y="463.5" ></text>
</g>
<g >
<title>__GI___libc_malloc (13 samples, 0.03%)</title><rect x="251.2" y="389" width="0.3" height="15.0" fill="rgb(230,82,37)" rx="2" ry="2" />
<text x="254.18" y="399.5" ></text>
</g>
<g >
<title>hashbrown::raw::RawTable$LT$T$GT$::try_with_capacity::h7a6e6bae489d4fe9 (17 samples, 0.04%)</title><rect x="33.1" y="293" width="0.4" height="15.0" fill="rgb(232,114,8)" rx="2" ry="2" />
<text x="36.06" y="303.5" ></text>
</g>
<g >
<title>cranelift_codegen::ir::builder::InstBuilder::x86_sdivmodx::h44c2ca315a447d82 (6 samples, 0.01%)</title><rect x="85.0" y="213" width="0.1" height="15.0" fill="rgb(248,201,1)" rx="2" ry="2" />
<text x="87.95" 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 (150 samples, 0.36%)</title><rect x="236.2" y="421" width="4.2" height="15.0" fill="rgb(243,67,52)" rx="2" ry="2" />
<text x="239.16" y="431.5" ></text>
</g>
<g >
<title>cranelift_codegen::ir::instructions::InstructionData::analyze_branch::h1af3091a9a9e30c3 (10 samples, 0.02%)</title><rect x="1152.8" y="341" width="0.2" height="15.0" fill="rgb(230,219,18)" rx="2" ry="2" />
<text x="1155.75" y="351.5" ></text>
</g>
<g >
<title>perf_iterate_sb (122 samples, 0.30%)</title><rect x="337.1" y="245" width="3.4" height="15.0" fill="rgb(250,15,14)" rx="2" ry="2" />
<text x="340.06" y="255.5" ></text>
</g>
<g >
<title>__GI___sigsetjmp (7 samples, 0.02%)</title><rect x="863.1" y="357" width="0.2" height="15.0" fill="rgb(244,191,0)" rx="2" ry="2" />
<text x="866.14" y="367.5" ></text>
</g>
<g >
<title>_int_malloc (5 samples, 0.01%)</title><rect x="114.3" y="181" width="0.1" height="15.0" fill="rgb(241,45,0)" rx="2" ry="2" />
<text x="117.29" y="191.5" ></text>
</g>
<g >
<title>cranelift_codegen::legalizer::boundary::legalize_signatures::h52a202846af65f87 (108 samples, 0.26%)</title><rect x="14.0" y="341" width="3.1" height="15.0" fill="rgb(234,152,12)" rx="2" ry="2" />
<text x="17.02" y="351.5" ></text>
</g>
<g >
<title>unmapped_area_topdown (12 samples, 0.03%)</title><rect x="345.6" y="213" width="0.3" height="15.0" fill="rgb(244,173,18)" rx="2" ry="2" />
<text x="348.59" y="223.5" ></text>
</g>
<g >
<title>_$LT$wasmer_runtime_core..types..FuncIndex$u20$as$u20$wasmer_runtime_core..structures..TypedIndex$GT$::index::hbb439a916fd7092b (4 samples, 0.01%)</title><rect x="298.9" y="373" width="0.1" height="15.0" fill="rgb(249,170,31)" rx="2" ry="2" />
<text x="301.93" y="383.5" ></text>
</g>
<g >
<title>std::sys::unix::time::inner::now::ha10452f37b2930c5 (5 samples, 0.01%)</title><rect x="168.8" y="245" width="0.1" height="15.0" fill="rgb(242,27,8)" rx="2" ry="2" />
<text x="171.81" y="255.5" ></text>
</g>
<g >
<title>__GI___pthread_rwlock_unlock (5 samples, 0.01%)</title><rect x="354.0" y="405" width="0.1" height="15.0" fill="rgb(208,212,48)" rx="2" ry="2" />
<text x="356.96" y="415.5" ></text>
</g>
<g >
<title>_int_realloc (15 samples, 0.04%)</title><rect x="1178.3" y="309" width="0.4" height="15.0" fill="rgb(209,202,47)" rx="2" ry="2" />
<text x="1181.27" y="319.5" ></text>
</g>
<g >
<title>core::ptr::real_drop_in_place::h767229c0557115cd (11 samples, 0.03%)</title><rect x="63.2" y="325" width="0.3" height="15.0" fill="rgb(208,211,33)" rx="2" ry="2" />
<text x="66.20" y="335.5" ></text>
</g>
<g >
<title>__memcpy_avx_unaligned (4 samples, 0.01%)</title><rect x="200.7" y="245" width="0.1" height="15.0" fill="rgb(229,53,53)" rx="2" ry="2" />
<text x="203.66" y="255.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 (93 samples, 0.22%)</title><rect x="1167.4" y="357" width="2.6" height="15.0" fill="rgb(224,132,3)" rx="2" ry="2" />
<text x="1170.37" y="367.5" ></text>
</g>
<g >
<title>_int_free (28 samples, 0.07%)</title><rect x="271.4" y="341" width="0.8" height="15.0" fill="rgb(219,21,6)" rx="2" ry="2" />
<text x="274.44" y="351.5" ></text>
</g>
<g >
<title>core::ptr::real_drop_in_place::hee16df317d8edeaf (339 samples, 0.82%)</title><rect x="226.5" y="421" width="9.7" height="15.0" fill="rgb(213,208,43)" rx="2" ry="2" />
<text x="229.49" y="431.5" ></text>
</g>
<g >
<title>__memcpy_avx_unaligned (6 samples, 0.01%)</title><rect x="196.9" y="213" width="0.2" height="15.0" fill="rgb(213,117,50)" rx="2" ry="2" />
<text x="199.89" y="223.5" ></text>
</g>
<g >
<title>alloc::raw_vec::RawVec$LT$T$C$A$GT$::reserve::h02503ac3a628c0ac (45 samples, 0.11%)</title><rect x="146.4" y="229" width="1.3" height="15.0" fill="rgb(211,12,54)" rx="2" ry="2" />
<text x="149.43" y="239.5" ></text>
</g>
<g >
<title>alloc::raw_vec::RawVec$LT$T$C$A$GT$::reserve::h500ef385b8747b29 (5 samples, 0.01%)</title><rect x="1168.7" y="261" width="0.1" height="15.0" fill="rgb(220,128,52)" rx="2" ry="2" />
<text x="1171.68" y="271.5" ></text>
</g>
<g >
<title>_ZN4rand3Rng3gen17h7eb46441d353f94aE.llvm.12258486741570985769 (10 samples, 0.02%)</title><rect x="1143.8" y="437" width="0.2" height="15.0" fill="rgb(217,160,44)" rx="2" ry="2" />
<text x="1146.76" y="447.5" ></text>
</g>
<g >
<title>_int_realloc (15 samples, 0.04%)</title><rect x="16.5" y="245" width="0.4" height="15.0" fill="rgb(223,180,52)" rx="2" ry="2" />
<text x="19.51" y="255.5" ></text>
</g>
<g >
<title>cranelift_entity::list::EntityList$LT$T$GT$::push::h051541d55e7ee057 (4 samples, 0.01%)</title><rect x="90.3" y="181" width="0.2" height="15.0" fill="rgb(242,13,52)" rx="2" ry="2" />
<text x="93.34" y="191.5" ></text>
</g>
<g >
<title>alloc::raw_vec::RawVec$LT$T$C$A$GT$::reserve::h500ef385b8747b29 (4 samples, 0.01%)</title><rect x="321.9" y="325" width="0.1" height="15.0" fill="rgb(237,205,45)" rx="2" ry="2" />
<text x="324.88" y="335.5" ></text>
</g>
<g >
<title>__GI___libc_malloc (5 samples, 0.01%)</title><rect x="140.7" y="213" width="0.1" height="15.0" fill="rgb(207,219,28)" rx="2" ry="2" />
<text x="143.66" y="223.5" ></text>
</g>
<g >
<title>std::time::Instant::now::h33d2ba6042def2d2 (5 samples, 0.01%)</title><rect x="1162.0" y="309" width="0.1" height="15.0" fill="rgb(239,28,5)" rx="2" ry="2" />
<text x="1165.00" y="319.5" ></text>
</g>
<g >
<title>__GI___libc_malloc (4 samples, 0.01%)</title><rect x="1176.7" y="341" width="0.1" height="15.0" fill="rgb(245,135,51)" rx="2" ry="2" />
<text x="1179.67" y="351.5" ></text>
</g>
<g >
<title>__rust_alloc (5 samples, 0.01%)</title><rect x="1019.3" y="405" width="0.1" height="15.0" fill="rgb(216,72,9)" rx="2" ry="2" />
<text x="1022.29" y="415.5" ></text>
</g>
<g >
<title>alloc::raw_vec::RawVec$LT$T$C$A$GT$::reserve::h500ef385b8747b29 (18 samples, 0.04%)</title><rect x="128.8" y="245" width="0.5" height="15.0" fill="rgb(218,105,17)" rx="2" ry="2" />
<text x="131.76" y="255.5" ></text>
</g>
<g >
<title>_ZN9hashbrown3raw17RawTable$LT$T$GT$14reserve_rehash17h949d57d1e07c193dE.llvm.16938716460618634628 (24 samples, 0.06%)</title><rect x="32.9" y="309" width="0.6" height="15.0" fill="rgb(212,118,27)" rx="2" ry="2" />
<text x="35.86" y="319.5" ></text>
</g>
<g >
<title>_$LT$cranelift_codegen..timing..details..TimingToken$u20$as$u20$core..ops..drop..Drop$GT$::drop::h1b19c2a93ee0a091 (5 samples, 0.01%)</title><rect x="1149.3" y="357" width="0.2" height="15.0" fill="rgb(228,44,16)" rx="2" ry="2" />
<text x="1152.33" y="367.5" ></text>
</g>
<g >
<title>alloc::raw_vec::RawVec$LT$T$C$A$GT$::reserve::h0c445b41f7c28667 (13 samples, 0.03%)</title><rect x="1179.0" y="309" width="0.3" height="15.0" fill="rgb(222,21,40)" rx="2" ry="2" />
<text x="1181.95" y="319.5" ></text>
</g>
<g >
<title>_int_realloc (11 samples, 0.03%)</title><rect x="1179.0" y="277" width="0.3" height="15.0" fill="rgb(243,8,12)" rx="2" ry="2" />
<text x="1182.01" y="287.5" ></text>
</g>
<g >
<title>cranelift_codegen::context::Context::compile::h9fe1ff28e88fe30f (214 samples, 0.52%)</title><rect x="1170.0" y="405" width="6.1" height="15.0" fill="rgb(209,142,46)" rx="2" ry="2" />
<text x="1173.02" y="415.5" ></text>
</g>
<g >
<title>do_signal (5 samples, 0.01%)</title><rect x="10.9" y="421" width="0.1" height="15.0" fill="rgb(217,109,42)" rx="2" ry="2" />
<text x="13.86" y="431.5" ></text>
</g>
<g >
<title>alloc::raw_vec::RawVec$LT$T$C$A$GT$::reserve::h5e34cfad90a6ce21 (15 samples, 0.04%)</title><rect x="91.6" y="229" width="0.4" height="15.0" fill="rgb(211,159,4)" rx="2" ry="2" />
<text x="94.60" y="239.5" ></text>
</g>
<g >
<title>std::time::Instant::now::h33d2ba6042def2d2 (6 samples, 0.01%)</title><rect x="122.4" y="245" width="0.2" height="15.0" fill="rgb(209,30,26)" rx="2" ry="2" />
<text x="125.40" y="255.5" ></text>
</g>
<g >
<title>std::sys::unix::alloc::_$LT$impl$u20$core..alloc..GlobalAlloc$u20$for$u20$std..alloc..System$GT$::alloc::h33585d4e6aad0166 (7 samples, 0.02%)</title><rect x="691.6" y="325" width="0.2" height="15.0" fill="rgb(208,34,25)" rx="2" ry="2" />
<text x="694.63" y="335.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 (4,003 samples, 9.68%)</title><rect x="58.0" y="357" width="114.3" height="15.0" fill="rgb(246,181,36)" rx="2" ry="2" />
<text x="61.04" y="367.5" >_$LT$core..ite..</text>
</g>
<g >
<title>alloc::raw_vec::RawVec$LT$T$C$A$GT$::reserve::h500ef385b8747b29 (6 samples, 0.01%)</title><rect x="127.3" y="245" width="0.2" height="15.0" fill="rgb(228,97,7)" rx="2" ry="2" />
<text x="130.33" y="255.5" ></text>
</g>
<g >
<title>cranelift_codegen::ir::dfg::DataFlowGraph::make_inst::h5a8de03d56461c59 (9 samples, 0.02%)</title><rect x="319.6" y="357" width="0.2" height="15.0" fill="rgb(210,57,9)" rx="2" ry="2" />
<text x="322.56" y="367.5" ></text>
</g>
<g >
<title>__GI___libc_malloc (5 samples, 0.01%)</title><rect x="820.8" y="373" width="0.1" height="15.0" fill="rgb(205,62,20)" rx="2" ry="2" />
<text x="823.78" y="383.5" ></text>
</g>
<g >
<title>alloc::raw_vec::RawVec$LT$T$C$A$GT$::reserve::hae39d8e15426d2f6 (8 samples, 0.02%)</title><rect x="81.6" y="229" width="0.2" height="15.0" fill="rgb(224,124,15)" rx="2" ry="2" />
<text x="84.58" y="239.5" ></text>
</g>
<g >
<title>c2_chacha::guts::refill_wide::he4343866a1fa78ce (44 samples, 0.11%)</title><rect x="1141.3" y="437" width="1.2" height="15.0" fill="rgb(244,14,29)" rx="2" ry="2" />
<text x="1144.28" y="447.5" ></text>
</g>
<g >
<title>_int_free (9 samples, 0.02%)</title><rect x="309.6" y="341" width="0.2" height="15.0" fill="rgb(237,212,35)" rx="2" ry="2" />
<text x="312.57" y="351.5" ></text>
</g>
<g >
<title>_int_malloc (5 samples, 0.01%)</title><rect x="803.7" y="309" width="0.1" height="15.0" fill="rgb(252,201,33)" rx="2" ry="2" />
<text x="806.66" y="319.5" ></text>
</g>
<g >
<title>core::ptr::real_drop_in_place::hcdd9925b441325fd (46 samples, 0.11%)</title><rect x="773.4" y="389" width="1.3" height="15.0" fill="rgb(243,170,11)" rx="2" ry="2" />
<text x="776.38" y="399.5" ></text>
</g>
<g >
<title>_$LT$alloc..vec..Vec$LT$T$GT$$u20$as$u20$core..clone..Clone$GT$::clone::h0ac68de189cf22d9 (7 samples, 0.02%)</title><rect x="59.4" y="309" width="0.2" height="15.0" fill="rgb(239,110,43)" rx="2" ry="2" />
<text x="62.43" y="319.5" ></text>
</g>
<g >
<title>wasmer_clif_fork_frontend::frontend::FunctionBuilder::append_ebb_params_for_function_returns::hef5369dc7503df5f (29 samples, 0.07%)</title><rect x="802.0" y="373" width="0.8" height="15.0" fill="rgb(209,135,8)" rx="2" ry="2" />
<text x="804.98" y="383.5" ></text>
</g>
<g >
<title>cranelift_codegen::ir::layout::Layout::assign_inst_seq::h59be385ae82e3a19 (4 samples, 0.01%)</title><rect x="21.0" y="293" width="0.1" height="15.0" fill="rgb(242,41,28)" rx="2" ry="2" />
<text x="23.96" y="303.5" ></text>
</g>
<g >
<title>main (723 samples, 1.75%)</title><rect x="184.8" y="469" width="20.7" height="15.0" fill="rgb(238,175,1)" rx="2" ry="2" />
<text x="187.85" y="479.5" ></text>
</g>
<g >
<title>_ZN17cranelift_codegen9flowgraph16ControlFlowGraph11compute_ebb17he662711fe9d10399E.llvm.15195122248153170019 (13 samples, 0.03%)</title><rect x="83.8" y="197" width="0.4" height="15.0" fill="rgb(229,88,14)" rx="2" ry="2" />
<text x="86.78" y="207.5" ></text>
</g>
<g >
<title>cranelift_codegen::stack_layout::layout_stack::h292a1cd27b02b094 (4 samples, 0.01%)</title><rect x="93.6" y="245" width="0.1" height="15.0" fill="rgb(214,15,19)" rx="2" ry="2" />
<text x="96.60" y="255.5" ></text>
</g>
<g >
<title>memcpy_erms (5 samples, 0.01%)</title><rect x="295.5" y="165" width="0.1" height="15.0" fill="rgb(228,175,53)" rx="2" ry="2" />
<text x="298.47" y="175.5" ></text>
</g>
<g >
<title>__GI___libc_free (5 samples, 0.01%)</title><rect x="1171.3" y="309" width="0.2" height="15.0" fill="rgb(213,211,36)" rx="2" ry="2" />
<text x="1174.33" y="319.5" ></text>
</g>
<g >
<title>__vdso_clock_gettime (7 samples, 0.02%)</title><rect x="119.6" y="213" width="0.2" height="15.0" fill="rgb(227,79,51)" rx="2" ry="2" />
<text x="122.63" y="223.5" ></text>
</g>
<g >
<title>rocinante::stoke::CandidateFunc::get_binary::h08e8585b39f70dc8 (174 samples, 0.42%)</title><rect x="199.3" y="309" width="5.0" height="15.0" fill="rgb(234,126,42)" rx="2" ry="2" />
<text x="202.35" y="319.5" ></text>
</g>
<g >
<title>__GI___clock_gettime (6 samples, 0.01%)</title><rect x="112.4" y="197" width="0.2" height="15.0" fill="rgb(234,12,49)" rx="2" ry="2" />
<text x="115.41" y="207.5" ></text>
</g>
<g >
<title>std::sys::unix::time::inner::now::ha10452f37b2930c5 (4 samples, 0.01%)</title><rect x="1158.2" y="277" width="0.1" height="15.0" fill="rgb(218,35,32)" rx="2" ry="2" />
<text x="1161.23" y="287.5" ></text>
</g>
<g >
<title>security_mmap_file (5 samples, 0.01%)</title><rect x="296.9" y="261" width="0.2" height="15.0" fill="rgb(233,94,9)" rx="2" ry="2" />
<text x="299.93" y="271.5" ></text>
</g>
<g >
<title>std::sys::unix::time::inner::Instant::now::h23f1bea5949f1bbd (7 samples, 0.02%)</title><rect x="107.4" y="261" width="0.2" height="15.0" fill="rgb(218,45,11)" rx="2" ry="2" />
<text x="110.44" y="271.5" ></text>
</g>
<g >
<title>cranelift_codegen::binemit::emit_function::hcd450d74712a091f (139 samples, 0.34%)</title><rect x="65.0" y="309" width="3.9" height="15.0" fill="rgb(238,67,42)" rx="2" ry="2" />
<text x="67.97" y="319.5" ></text>
</g>
<g >
<title>sys_clone (9 samples, 0.02%)</title><rect x="1180.2" y="469" width="0.3" height="15.0" fill="rgb(246,162,6)" rx="2" ry="2" />
<text x="1183.24" y="479.5" ></text>
</g>
<g >
<title>__rdl_alloc (24 samples, 0.06%)</title><rect x="595.7" y="373" width="0.7" height="15.0" fill="rgb(210,131,37)" rx="2" ry="2" />
<text x="598.73" y="383.5" ></text>
</g>
<g >
<title>alloc::borrow::Cow$LT$B$GT$::to_mut::h2ad6d2b639bc919b (13 samples, 0.03%)</title><rect x="79.8" y="213" width="0.4" height="15.0" fill="rgb(246,35,23)" rx="2" ry="2" />
<text x="82.78" y="223.5" ></text>
</g>
<g >
<title>__GI___libc_malloc (67 samples, 0.16%)</title><rect x="859.7" y="389" width="1.9" height="15.0" fill="rgb(231,157,1)" rx="2" ry="2" />
<text x="862.69" y="399.5" ></text>
</g>
<g >
<title>std::time::Instant::now::h33d2ba6042def2d2 (6 samples, 0.01%)</title><rect x="105.7" y="261" width="0.1" height="15.0" fill="rgb(225,184,26)" rx="2" ry="2" />
<text x="108.67" y="271.5" ></text>
</g>
<g >
<title>std::sys::unix::time::inner::now::ha10452f37b2930c5 (4 samples, 0.01%)</title><rect x="1162.3" y="309" width="0.1" height="15.0" fill="rgb(234,48,52)" rx="2" ry="2" />
<text x="1165.29" y="319.5" ></text>
</g>
<g >
<title>alloc::raw_vec::RawVec$LT$T$C$A$GT$::reserve::hdbdff368c481960d (31 samples, 0.07%)</title><rect x="803.0" y="357" width="0.9" height="15.0" fill="rgb(219,70,16)" rx="2" ry="2" />
<text x="806.00" y="367.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (302 samples, 0.73%)</title><rect x="227.5" y="357" width="8.6" height="15.0" fill="rgb(226,53,36)" rx="2" ry="2" />
<text x="230.46" y="367.5" ></text>
</g>
<g >
<title>_ZN17cranelift_codegen24redundant_reload_remover22RedundantReloadRemover37do_redundant_fill_removal_on_function17h0915e7840d7db9a4E.llvm.15195122248153170019 (148 samples, 0.36%)</title><rect x="1149.5" y="357" width="4.2" height="15.0" fill="rgb(217,159,50)" rx="2" ry="2" />
<text x="1152.47" y="367.5" ></text>
</g>
<g >
<title>cranelift_codegen::legalizer::legalize_inst::h3c0aa7980e624bbf (16 samples, 0.04%)</title><rect x="1167.4" y="277" width="0.4" height="15.0" fill="rgb(233,136,38)" rx="2" ry="2" />
<text x="1170.37" y="287.5" ></text>
</g>
<g >
<title>cranelift_codegen::isa::x86::abi::insert_common_prologue::hd2cca9ef0991829f (69 samples, 0.17%)</title><rect x="20.9" y="325" width="1.9" height="15.0" fill="rgb(219,171,22)" rx="2" ry="2" />
<text x="23.87" y="335.5" ></text>
</g>
<g >
<title>_$LT$alloc..boxed..Box$LT$F$GT$$u20$as$u20$core..ops..function..FnOnce$LT$A$GT$$GT$::call_once::h338c10574a337ece (47 samples, 0.11%)</title><rect x="183.3" y="437" width="1.3" height="15.0" fill="rgb(236,25,31)" rx="2" ry="2" />
<text x="186.28" y="447.5" ></text>
</g>
<g >
<title>__GI___libc_malloc (4 samples, 0.01%)</title><rect x="114.5" y="261" width="0.2" height="15.0" fill="rgb(246,110,8)" rx="2" ry="2" />
<text x="117.55" y="271.5" ></text>
</g>
<g >
<title>_int_malloc (8 samples, 0.02%)</title><rect x="182.8" y="389" width="0.2" height="15.0" fill="rgb(214,116,33)" rx="2" ry="2" />
<text x="185.76" y="399.5" ></text>
</g>
<g >
<title>_vm_normal_page (6 samples, 0.01%)</title><rect x="234.6" y="229" width="0.1" height="15.0" fill="rgb(225,90,9)" rx="2" ry="2" />
<text x="237.57" y="239.5" ></text>
</g>
<g >
<title>__GI___pthread_rwlock_rdlock (34 samples, 0.08%)</title><rect x="197.3" y="213" width="1.0" height="15.0" fill="rgb(213,76,22)" rx="2" ry="2" />
<text x="200.35" y="223.5" ></text>
</g>
<g >
<title>_int_malloc (6 samples, 0.01%)</title><rect x="281.7" y="325" width="0.2" height="15.0" fill="rgb(235,52,45)" rx="2" ry="2" />
<text x="284.72" y="335.5" ></text>
</g>
<g >
<title>cranelift_bforest::set::Set$LT$K$GT$::insert::h750422a26fd1bdc6 (24 samples, 0.06%)</title><rect x="113.8" y="245" width="0.7" height="15.0" fill="rgb(247,50,33)" rx="2" ry="2" />
<text x="116.78" y="255.5" ></text>
</g>
<g >
<title>free_pgtables (21 samples, 0.05%)</title><rect x="237.7" y="293" width="0.6" height="15.0" fill="rgb(240,185,27)" rx="2" ry="2" />
<text x="240.68" y="303.5" ></text>
</g>
<g >
<title>sys_mprotect (474 samples, 1.15%)</title><rect x="330.2" y="309" width="13.5" height="15.0" fill="rgb(217,144,38)" rx="2" ry="2" />
<text x="333.15" y="319.5" ></text>
</g>
<g >
<title>__memcpy_avx_unaligned (170 samples, 0.41%)</title><rect x="947.4" y="405" width="4.9" height="15.0" fill="rgb(235,223,25)" rx="2" ry="2" />
<text x="950.42" y="415.5" ></text>
</g>
<g >
<title>std::time::Instant::elapsed::h8e307314b2acf9be (5 samples, 0.01%)</title><rect x="1149.3" y="341" width="0.2" height="15.0" fill="rgb(244,120,4)" rx="2" ry="2" />
<text x="1152.33" y="351.5" ></text>
</g>
<g >
<title>_$LT$cranelift_codegen..isa..x86..Isa$u20$as$u20$cranelift_codegen..isa..TargetIsa$GT$::allocatable_registers::h2ba12d186321dd42 (6 samples, 0.01%)</title><rect x="155.5" y="261" width="0.2" height="15.0" fill="rgb(242,144,35)" rx="2" ry="2" />
<text x="158.51" y="271.5" ></text>
</g>
<g >
<title>__GI___libc_free (5 samples, 0.01%)</title><rect x="279.6" y="357" width="0.1" height="15.0" fill="rgb(219,59,52)" rx="2" ry="2" />
<text x="282.58" y="367.5" ></text>
</g>
<g >
<title>core::iter::traits::iterator::Iterator::unzip::h894cb0151c0f7fd8 (25 samples, 0.06%)</title><rect x="279.3" y="373" width="0.8" height="15.0" fill="rgb(230,112,15)" rx="2" ry="2" />
<text x="282.35" y="383.5" ></text>
</g>
<g >
<title>std::collections::hash::map::RandomState::new::KEYS::__getit::hc919284a97fb9164 (5 samples, 0.01%)</title><rect x="820.6" y="389" width="0.1" height="15.0" fill="rgb(240,144,51)" rx="2" ry="2" />
<text x="823.56" y="399.5" ></text>
</g>
<g >
<title>alloc::raw_vec::RawVec$LT$T$C$A$GT$::reserve::h5e34cfad90a6ce21 (8 samples, 0.02%)</title><rect x="1160.0" y="341" width="0.2" height="15.0" fill="rgb(238,200,39)" rx="2" ry="2" />
<text x="1163.00" y="351.5" ></text>
</g>
<g >
<title>__GI___libc_realloc (659 samples, 1.59%)</title><rect x="1079.8" y="421" width="18.8" height="15.0" fill="rgb(235,153,47)" rx="2" ry="2" />
<text x="1082.77" y="431.5" ></text>
</g>
<g >
<title>cranelift_codegen::ir::dfg::DataFlowGraph::value_def::h33b3e43a06ac9a1f (6 samples, 0.01%)</title><rect x="1168.1" y="245" width="0.2" height="15.0" fill="rgb(244,200,34)" rx="2" ry="2" />
<text x="1171.11" y="255.5" ></text>
</g>
<g >
<title>userfaultfd_unmap_prep (5 samples, 0.01%)</title><rect x="235.9" y="293" width="0.2" height="15.0" fill="rgb(243,36,52)" rx="2" ry="2" />
<text x="238.91" y="303.5" ></text>
</g>
<g >
<title>alloc::sync::Arc$LT$T$GT$::drop_slow::h585962fb74e37fd1 (150 samples, 0.36%)</title><rect x="236.2" y="437" width="4.2" height="15.0" fill="rgb(237,41,30)" rx="2" ry="2" />
<text x="239.16" y="447.5" ></text>
</g>
<g >
<title>_$LT$wasmer_runtime_core..types..FuncSig$u20$as$u20$core..hash..Hash$GT$::hash::h1e327e01a11a280a (5 samples, 0.01%)</title><rect x="869.9" y="421" width="0.1" height="15.0" fill="rgb(234,90,17)" rx="2" ry="2" />
<text x="872.88" y="431.5" ></text>
</g>
<g >
<title>cranelift_codegen::ir::instructions::InstructionData::arguments::h70ecdef19e20b02a (5 samples, 0.01%)</title><rect x="139.1" y="245" width="0.1" height="15.0" fill="rgb(226,151,35)" rx="2" ry="2" />
<text x="142.09" y="255.5" ></text>
</g>
<g >
<title>__GI___libc_malloc (6 samples, 0.01%)</title><rect x="64.8" y="293" width="0.1" height="15.0" fill="rgb(217,40,25)" rx="2" ry="2" />
<text x="67.77" y="303.5" ></text>
</g>
<g >
<title>std::sys::unix::time::inner::now::ha10452f37b2930c5 (5 samples, 0.01%)</title><rect x="1170.8" y="293" width="0.1" height="15.0" fill="rgb(207,135,29)" rx="2" ry="2" />
<text x="1173.79" y="303.5" ></text>
</g>
<g >
<title>_ZN9hashbrown3raw17RawTable$LT$T$GT$14reserve_rehash17h949d57d1e07c193dE.llvm.16938716460618634628 (15 samples, 0.04%)</title><rect x="68.0" y="245" width="0.4" height="15.0" fill="rgb(229,117,12)" rx="2" ry="2" />
<text x="71.00" y="255.5" ></text>
</g>
<g >
<title>cranelift_codegen::ir::layout::Layout::insert_inst::h352d76f498d27496 (4 samples, 0.01%)</title><rect x="22.2" y="277" width="0.2" height="15.0" fill="rgb(227,190,14)" rx="2" ry="2" />
<text x="25.24" y="287.5" ></text>
</g>
<g >
<title>_int_free (7 samples, 0.02%)</title><rect x="312.0" y="309" width="0.2" height="15.0" fill="rgb(221,181,10)" rx="2" ry="2" />
<text x="314.97" y="319.5" ></text>
</g>
<g >
<title>wasmer_runtime_core::sig_registry::SigRegistry::lookup_signature_ref::hb64a156585a7c92a (21 samples, 0.05%)</title><rect x="875.2" y="389" width="0.6" height="15.0" fill="rgb(225,158,45)" rx="2" ry="2" />
<text x="878.18" y="399.5" ></text>
</g>
<g >
<title>_int_malloc (6 samples, 0.01%)</title><rect x="803.3" y="325" width="0.2" height="15.0" fill="rgb(240,32,1)" rx="2" ry="2" />
<text x="806.29" y="335.5" ></text>
</g>
<g >
<title>wasmer_runtime_core::backing::ImportBacking::new::he38382ce97a0802d (37 samples, 0.09%)</title><rect x="873.1" y="421" width="1.0" height="15.0" fill="rgb(234,99,38)" rx="2" ry="2" />
<text x="876.07" y="431.5" ></text>
</g>
<g >
<title>std::sys::unix::time::inner::Instant::now::h23f1bea5949f1bbd (7 samples, 0.02%)</title><rect x="114.7" y="261" width="0.2" height="15.0" fill="rgb(250,151,42)" rx="2" ry="2" />
<text x="117.66" y="271.5" ></text>
</g>
<g >
<title>mem_cgroup_uncharge_list (24 samples, 0.06%)</title><rect x="232.6" y="181" width="0.7" height="15.0" fill="rgb(231,16,36)" rx="2" ry="2" />
<text x="235.63" y="191.5" ></text>
</g>
<g >
<title>wasmparser::binary_reader::BinaryReader::read_func_type::h0cd44550c784004e (8 samples, 0.02%)</title><rect x="812.1" y="357" width="0.3" height="15.0" fill="rgb(220,168,10)" rx="2" ry="2" />
<text x="815.14" y="367.5" ></text>
</g>
<g >
<title>std::time::Instant::now::h33d2ba6042def2d2 (10 samples, 0.02%)</title><rect x="93.8" y="261" width="0.3" height="15.0" fill="rgb(223,179,49)" rx="2" ry="2" />
<text x="96.77" y="271.5" ></text>
</g>
<g >
<title>indexmap::map::IndexMap$LT$K$C$V$C$S$GT$::get::hc0ee14fbd61fce30 (10 samples, 0.02%)</title><rect x="869.4" y="437" width="0.2" height="15.0" fill="rgb(250,169,51)" rx="2" ry="2" />
<text x="872.36" y="447.5" ></text>
</g>
<g >
<title>std::sys::unix::time::inner::Instant::now::h23f1bea5949f1bbd (5 samples, 0.01%)</title><rect x="318.7" y="341" width="0.1" height="15.0" fill="rgb(227,219,52)" rx="2" ry="2" />
<text x="321.65" y="351.5" ></text>
</g>
<g >
<title>alloc::raw_vec::RawVec$LT$T$C$A$GT$::reserve::h500ef385b8747b29 (26 samples, 0.06%)</title><rect x="130.6" y="245" width="0.7" height="15.0" fill="rgb(240,75,34)" rx="2" ry="2" />
<text x="133.59" y="255.5" ></text>
</g>
<g >
<title>cranelift_codegen::isa::x86::enc_tables::size_plus_maybe_sib_or_offset_for_in_reg_0::h45f17ad339ad9f42 (6 samples, 0.01%)</title><rect x="25.9" y="341" width="0.1" height="15.0" fill="rgb(222,157,26)" rx="2" ry="2" />
<text x="28.87" y="351.5" ></text>
</g>
<g >
<title>__GI___libc_malloc (12 samples, 0.03%)</title><rect x="189.5" y="181" width="0.3" height="15.0" fill="rgb(226,204,46)" rx="2" ry="2" />
<text x="192.47" y="191.5" ></text>
</g>
<g >
<title>_ZN81_$LT$std..collections..hash..map..DefaultHasher$u20$as$u20$core..hash..Hasher$GT$5write17hce30e4f96ad2e64eE.llvm.10396957835513704427 (4 samples, 0.01%)</title><rect x="875.7" y="341" width="0.1" height="15.0" fill="rgb(230,198,15)" rx="2" ry="2" />
<text x="878.67" y="351.5" ></text>
</g>
<g >
<title>cranelift_codegen::ir::instructions::InstructionData::arguments::h70ecdef19e20b02a (14 samples, 0.03%)</title><rect x="104.8" y="245" width="0.4" height="15.0" fill="rgb(216,36,30)" rx="2" ry="2" />
<text x="107.79" y="255.5" ></text>
</g>
<g >
<title>_int_free (28 samples, 0.07%)</title><rect x="178.5" y="325" width="0.8" height="15.0" fill="rgb(214,115,21)" rx="2" ry="2" />
<text x="181.54" y="335.5" ></text>
</g>
<g >
<title>cranelift_codegen::isa::x86::abi::insert_common_prologue::hd2cca9ef0991829f (100 samples, 0.24%)</title><rect x="90.7" y="245" width="2.9" height="15.0" fill="rgb(219,51,25)" rx="2" ry="2" />
<text x="93.74" y="255.5" ></text>
</g>
<g >
<title>__memcpy_avx_unaligned (23 samples, 0.06%)</title><rect x="180.7" y="373" width="0.7" height="15.0" fill="rgb(220,92,17)" rx="2" ry="2" />
<text x="183.71" y="383.5" ></text>
</g>
<g >
<title>cranelift_codegen::ir::instructions::InstructionData::arguments::h70ecdef19e20b02a (11 samples, 0.03%)</title><rect x="138.5" y="261" width="0.3" height="15.0" fill="rgb(220,80,28)" rx="2" ry="2" />
<text x="141.47" y="271.5" ></text>
</g>
<g >
<title>__GI___libc_realloc (21 samples, 0.05%)</title><rect x="805.0" y="325" width="0.6" height="15.0" fill="rgb(253,112,43)" rx="2" ry="2" />
<text x="807.97" y="335.5" ></text>
</g>
<g >
<title>crossbeam_deque::Stealer$LT$T$GT$::steal::h6b48c94d436504c3 (37 samples, 0.09%)</title><rect x="183.4" y="293" width="1.1" height="15.0" fill="rgb(215,79,42)" rx="2" ry="2" />
<text x="186.45" y="303.5" ></text>
</g>
<g >
<title>core::ptr::real_drop_in_place::hf895bb87fb92c73b (34 samples, 0.08%)</title><rect x="255.3" y="389" width="1.0" height="15.0" fill="rgb(220,3,9)" rx="2" ry="2" />
<text x="258.29" y="399.5" ></text>
</g>
<g >
<title>cranelift_codegen::regalloc::coalescing::Coalescing::new::ha20f15d9372bd83a (7 samples, 0.02%)</title><rect x="173.8" y="341" width="0.2" height="15.0" fill="rgb(240,202,5)" rx="2" ry="2" />
<text x="176.83" y="351.5" ></text>
</g>
<g >
<title>kmem_cache_alloc (12 samples, 0.03%)</title><rect x="346.3" y="229" width="0.3" height="15.0" fill="rgb(218,211,23)" rx="2" ry="2" />
<text x="349.28" y="239.5" ></text>
</g>
<g >
<title>__memcpy_avx_unaligned (28 samples, 0.07%)</title><rect x="872.3" y="421" width="0.8" height="15.0" fill="rgb(224,200,11)" rx="2" ry="2" />
<text x="875.27" y="431.5" ></text>
</g>
<g >
<title>cranelift_codegen::isa::lookup::h7750611a3eef7478 (11 samples, 0.03%)</title><rect x="351.3" y="373" width="0.3" height="15.0" fill="rgb(250,147,16)" rx="2" ry="2" />
<text x="354.27" y="383.5" ></text>
</g>
<g >
<title>[[vdso]] (4 samples, 0.01%)</title><rect x="171.8" y="213" width="0.1" height="15.0" fill="rgb(242,154,2)" rx="2" ry="2" />
<text x="174.80" y="223.5" ></text>
</g>
<g >
<title>_int_realloc (17 samples, 0.04%)</title><rect x="80.4" y="181" width="0.5" height="15.0" fill="rgb(221,204,5)" rx="2" ry="2" />
<text x="83.41" y="191.5" ></text>
</g>
<g >
<title>alloc::raw_vec::RawVec$LT$T$C$A$GT$::reserve::h0c445b41f7c28667 (4 samples, 0.01%)</title><rect x="18.7" y="325" width="0.1" height="15.0" fill="rgb(208,37,32)" rx="2" ry="2" />
<text x="21.73" y="335.5" ></text>
</g>
<g >
<title>wasmparser::readers::module::ModuleReader::read::h9a86df7daf36f14d (904 samples, 2.19%)</title><rect x="541.1" y="341" width="25.8" height="15.0" fill="rgb(242,64,8)" rx="2" ry="2" />
<text x="544.10" y="351.5" >w..</text>
</g>
<g >
<title>handle_mm_fault (83 samples, 0.20%)</title><rect x="276.7" y="309" width="2.4" height="15.0" fill="rgb(214,184,26)" rx="2" ry="2" />
<text x="279.69" y="319.5" ></text>
</g>
<g >
<title>__GI___libc_malloc (5 samples, 0.01%)</title><rect x="59.5" y="293" width="0.1" height="15.0" fill="rgb(212,79,37)" rx="2" ry="2" />
<text x="62.49" y="303.5" ></text>
</g>
<g >
<title>wasmer_runtime_core::sig_registry::SigRegistry::lookup_signature_ref::hb64a156585a7c92a (18 samples, 0.04%)</title><rect x="869.6" y="437" width="0.6" height="15.0" fill="rgb(253,8,16)" rx="2" ry="2" />
<text x="872.65" y="447.5" ></text>
</g>
<g >
<title>cranelift_codegen::ir::dfg::DataFlowGraph::append_result::h44f9432a950b5ad1 (6 samples, 0.01%)</title><rect x="20.4" y="277" width="0.1" height="15.0" fill="rgb(249,148,34)" rx="2" ry="2" />
<text x="23.36" y="287.5" ></text>
</g>
<g >
<title>cranelift_entity::list::EntityList$LT$T$GT$::push::h051541d55e7ee057 (6 samples, 0.01%)</title><rect x="93.4" y="229" width="0.2" height="15.0" fill="rgb(252,8,52)" rx="2" ry="2" />
<text x="96.43" y="239.5" ></text>
</g>
<g >
<title>rocinante::stoke::transform::Transform::undo::hc297804561d29045 (37 samples, 0.09%)</title><rect x="1147.7" y="469" width="1.1" height="15.0" fill="rgb(227,1,43)" rx="2" ry="2" />
<text x="1150.73" y="479.5" ></text>
</g>
<g >
<title>std::time::Instant::elapsed::h8e307314b2acf9be (5 samples, 0.01%)</title><rect x="1158.2" y="325" width="0.1" height="15.0" fill="rgb(250,36,21)" rx="2" ry="2" />
<text x="1161.20" y="335.5" ></text>
</g>
<g >
<title>remove_vma (7 samples, 0.02%)</title><rect x="229.8" y="277" width="0.2" height="15.0" fill="rgb(217,156,27)" rx="2" ry="2" />
<text x="232.80" y="287.5" ></text>
</g>
<g >
<title>copy_user_generic_unrolled (22 samples, 0.05%)</title><rect x="1188.9" y="421" width="0.7" height="15.0" fill="rgb(234,191,21)" rx="2" ry="2" />
<text x="1191.94" y="431.5" ></text>
</g>
<g >
<title>cranelift_codegen::ir::dfg::DataFlowGraph::make_inst_results::hc774d04d1992dff6 (8 samples, 0.02%)</title><rect x="90.2" y="213" width="0.3" height="15.0" fill="rgb(247,111,38)" rx="2" ry="2" />
<text x="93.23" y="223.5" ></text>
</g>
<g >
<title>std::time::Instant::now::h33d2ba6042def2d2 (7 samples, 0.02%)</title><rect x="107.4" y="277" width="0.2" height="15.0" fill="rgb(250,201,21)" rx="2" ry="2" />
<text x="110.44" y="287.5" ></text>
</g>
<g >
<title>__GI___libc_realloc (14 samples, 0.03%)</title><rect x="203.9" y="261" width="0.4" height="15.0" fill="rgb(225,8,18)" rx="2" ry="2" />
<text x="206.91" y="271.5" ></text>
</g>
<g >
<title>hashbrown::raw::RawTable$LT$T$GT$::try_with_capacity::h7a6e6bae489d4fe9 (6 samples, 0.01%)</title><rect x="25.0" y="293" width="0.2" height="15.0" fill="rgb(237,220,52)" rx="2" ry="2" />
<text x="27.98" y="303.5" ></text>
</g>
<g >
<title>alloc::raw_vec::RawVec$LT$T$C$A$GT$::reserve::hde4c914cbb5df344 (21 samples, 0.05%)</title><rect x="194.3" y="197" width="0.6" height="15.0" fill="rgb(244,191,45)" rx="2" ry="2" />
<text x="197.32" y="207.5" ></text>
</g>
<g >
<title>__GI___libc_realloc (11 samples, 0.03%)</title><rect x="1174.3" y="309" width="0.3" height="15.0" fill="rgb(229,121,50)" rx="2" ry="2" />
<text x="1177.30" y="319.5" ></text>
</g>
<g >
<title>__GI___clock_gettime (5 samples, 0.01%)</title><rect x="318.7" y="309" width="0.1" height="15.0" fill="rgb(254,100,5)" rx="2" ry="2" />
<text x="321.65" y="319.5" ></text>
</g>
<g >
<title>_$LT$core..iter..adapters..chain..Chain$LT$A$C$B$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$::try_fold::h53a0234d259dd93f (43 samples, 0.10%)</title><rect x="183.3" y="309" width="1.2" height="15.0" fill="rgb(226,167,16)" rx="2" ry="2" />
<text x="186.28" y="319.5" ></text>
</g>
<g >
<title>_int_malloc (4 samples, 0.01%)</title><rect x="73.2" y="245" width="0.1" height="15.0" fill="rgb(225,92,21)" rx="2" ry="2" />
<text x="76.16" y="255.5" ></text>
</g>
<g >
<title>std::sys::unix::time::inner::Instant::now::h23f1bea5949f1bbd (6 samples, 0.01%)</title><rect x="1166.3" y="325" width="0.2" height="15.0" fill="rgb(221,190,25)" rx="2" ry="2" />
<text x="1169.28" y="335.5" ></text>
</g>
<g >
<title>do_syscall_64 (7 samples, 0.02%)</title><rect x="186.4" y="165" width="0.2" height="15.0" fill="rgb(245,74,2)" rx="2" ry="2" />
<text x="189.44" y="175.5" ></text>
</g>
<g >
<title>__memcpy_avx_unaligned (7 samples, 0.02%)</title><rect x="33.6" y="341" width="0.2" height="15.0" fill="rgb(226,122,36)" rx="2" ry="2" />
<text x="36.60" y="351.5" ></text>
</g>
<g >
<title>find_vma (9 samples, 0.02%)</title><rect x="330.4" y="277" width="0.2" height="15.0" fill="rgb(233,224,28)" rx="2" ry="2" />
<text x="333.38" y="287.5" ></text>
</g>
<g >
<title>mmap_region (166 samples, 0.40%)</title><rect x="291.9" y="245" width="4.7" height="15.0" fill="rgb(251,159,15)" rx="2" ry="2" />
<text x="294.91" y="255.5" ></text>
</g>
<g >
<title>cranelift_codegen::ir::dfg::DataFlowGraph::attach_result::h2b371a9194aba790 (5 samples, 0.01%)</title><rect x="53.7" y="293" width="0.1" height="15.0" fill="rgb(219,163,51)" rx="2" ry="2" />
<text x="56.67" y="303.5" ></text>
</g>
<g >
<title>perf_event_alloc (5 samples, 0.01%)</title><rect x="1180.4" y="373" width="0.1" height="15.0" fill="rgb(221,41,8)" rx="2" ry="2" />
<text x="1183.35" y="383.5" ></text>
</g>
<g >
<title>cranelift_codegen::ir::function::Function::with_name_signature::h3213a13dd838e646 (5 samples, 0.01%)</title><rect x="1167.0" y="389" width="0.1" height="15.0" fill="rgb(235,38,24)" rx="2" ry="2" />
<text x="1170.00" y="399.5" ></text>
</g>
<g >
<title>cranelift_entity::sparse::SparseMap$LT$K$C$V$GT$::insert::h7db38de7d591c38a (7 samples, 0.02%)</title><rect x="160.7" y="261" width="0.2" height="15.0" fill="rgb(243,16,23)" rx="2" ry="2" />
<text x="163.73" y="271.5" ></text>
</g>
<g >
<title>vma_compute_subtree_gap (7 samples, 0.02%)</title><rect x="349.3" y="197" width="0.2" height="15.0" fill="rgb(243,1,4)" rx="2" ry="2" />
<text x="352.30" y="207.5" ></text>
</g>
<g >
<title>wasmer_clif_fork_wasm::func_translator::FuncTranslator::new::hf4c7c586c59a333c (51 samples, 0.12%)</title><rect x="808.4" y="373" width="1.5" height="15.0" fill="rgb(242,179,7)" rx="2" ry="2" />
<text x="811.43" y="383.5" ></text>
</g>
<g >
<title>__GI___libc_malloc (5 samples, 0.01%)</title><rect x="1171.5" y="293" width="0.1" height="15.0" fill="rgb(231,31,45)" rx="2" ry="2" />
<text x="1174.48" y="303.5" ></text>
</g>
<g >
<title>wasmparser::operators_validator::FuncState::assert_stack_type_at::h9e905ec303736b73 (4 samples, 0.01%)</title><rect x="696.8" y="341" width="0.1" height="15.0" fill="rgb(248,42,45)" rx="2" ry="2" />
<text x="699.80" y="351.5" ></text>
</g>
<g >
<title>wasmer_runtime_core::sys::unix::memory::round_down_to_page_size::h5c39f4b75daf00b3 (4 samples, 0.01%)</title><rect x="343.9" y="357" width="0.1" height="15.0" fill="rgb(210,113,18)" rx="2" ry="2" />
<text x="346.91" y="367.5" ></text>
</g>
<g >
<title>std::sys::unix::time::inner::now::ha10452f37b2930c5 (4 samples, 0.01%)</title><rect x="163.0" y="213" width="0.1" height="15.0" fill="rgb(209,119,49)" rx="2" ry="2" />
<text x="165.98" y="223.5" ></text>
</g>
<g >
<title>cranelift_codegen::ir::layout::Layout::append_inst::h4a2fb37740cc80ba (12 samples, 0.03%)</title><rect x="298.2" y="357" width="0.4" height="15.0" fill="rgb(243,172,52)" rx="2" ry="2" />
<text x="301.24" y="367.5" ></text>
</g>
<g >
<title>_int_free (6 samples, 0.01%)</title><rect x="1178.0" y="309" width="0.2" height="15.0" fill="rgb(236,216,33)" rx="2" ry="2" />
<text x="1181.04" y="319.5" ></text>
</g>
<g >
<title>__GI___libc_free (14 samples, 0.03%)</title><rect x="820.0" y="373" width="0.4" height="15.0" fill="rgb(244,61,54)" rx="2" ry="2" />
<text x="823.01" y="383.5" ></text>
</g>
<g >
<title>cranelift_codegen::redundant_reload_remover::RedundantReloadRemover::new::ha2ae7fc59b6f07f8 (29 samples, 0.07%)</title><rect x="172.7" y="357" width="0.8" height="15.0" fill="rgb(206,58,17)" rx="2" ry="2" />
<text x="175.72" y="367.5" ></text>
</g>
<g >
<title>_$LT$cranelift_codegen..isa..x86..Isa$u20$as$u20$cranelift_codegen..isa..TargetIsa$GT$::prologue_epilogue::ha0b7830888e212f4 (144 samples, 0.35%)</title><rect x="18.7" y="357" width="4.1" height="15.0" fill="rgb(208,129,3)" rx="2" ry="2" />
<text x="21.73" y="367.5" ></text>
</g>
<g >
<title>__GI___libc_malloc (10 samples, 0.02%)</title><rect x="300.8" y="373" width="0.3" height="15.0" fill="rgb(205,144,15)" rx="2" ry="2" />
<text x="303.78" y="383.5" ></text>
</g>
<g >
<title>do_mprotect_pkey (6 samples, 0.01%)</title><rect x="186.8" y="133" width="0.2" height="15.0" fill="rgb(213,156,5)" rx="2" ry="2" />
<text x="189.79" y="143.5" ></text>
</g>
<g >
<title>__GI___libc_realloc (5 samples, 0.01%)</title><rect x="1178.8" y="309" width="0.2" height="15.0" fill="rgb(213,224,54)" rx="2" ry="2" />
<text x="1181.81" y="319.5" ></text>
</g>
<g >
<title>alloc::raw_vec::RawVec$LT$T$C$A$GT$::reserve::h0c445b41f7c28667 (13 samples, 0.03%)</title><rect x="1177.0" y="325" width="0.4" height="15.0" fill="rgb(229,24,48)" rx="2" ry="2" />
<text x="1180.01" y="335.5" ></text>
</g>
<g >
<title>wasmer_runtime_core::instance::call_func_with_index::hfdcd33b8b41f1e35 (11 samples, 0.03%)</title><rect x="198.5" y="277" width="0.3" height="15.0" fill="rgb(235,100,50)" rx="2" ry="2" />
<text x="201.49" y="287.5" ></text>
</g>
<g >
<title>_int_malloc (6 samples, 0.01%)</title><rect x="205.2" y="261" width="0.2" height="15.0" fill="rgb(251,212,33)" rx="2" ry="2" />
<text x="208.20" y="271.5" ></text>
</g>
<g >
<title>cranelift_codegen::settings::Builder::lookup::hc6620799f46af882 (14 samples, 0.03%)</title><rect x="350.4" y="357" width="0.4" height="15.0" fill="rgb(218,144,37)" rx="2" ry="2" />
<text x="353.39" y="367.5" ></text>
</g>
<g >
<title>__GI___libc_malloc (5 samples, 0.01%)</title><rect x="198.8" y="261" width="0.1" height="15.0" fill="rgb(230,28,54)" rx="2" ry="2" />
<text x="201.80" y="271.5" ></text>
</g>
<g >
<title>__GI___mprotect (225 samples, 0.54%)</title><rect x="283.1" y="357" width="6.4" height="15.0" fill="rgb(210,210,36)" rx="2" ry="2" />
<text x="286.09" y="367.5" ></text>
</g>
<g >
<title>mmap_region (5 samples, 0.01%)</title><rect x="187.0" y="85" width="0.1" height="15.0" fill="rgb(205,71,8)" rx="2" ry="2" />
<text x="189.99" y="95.5" ></text>
</g>
<g >
<title>_$LT$alloc..vec..Vec$LT$T$GT$$u20$as$u20$core..clone..Clone$GT$::clone::h5fc94b05e4d4a2c3 (20 samples, 0.05%)</title><rect x="60.5" y="309" width="0.6" height="15.0" fill="rgb(224,40,0)" rx="2" ry="2" />
<text x="63.52" y="319.5" ></text>
</g>
<g >
<title>alloc::raw_vec::RawVec$LT$T$C$A$GT$::reserve::he459267326f26ce0 (9 samples, 0.02%)</title><rect x="113.4" y="229" width="0.2" height="15.0" fill="rgb(242,198,41)" rx="2" ry="2" />
<text x="116.38" y="239.5" ></text>
</g>
<g >
<title>__vdso_clock_gettime (4 samples, 0.01%)</title><rect x="318.5" y="277" width="0.2" height="15.0" fill="rgb(206,197,52)" rx="2" ry="2" />
<text x="321.54" y="287.5" ></text>
</g>
<g >
<title>std::sys::unix::time::inner::Instant::now::h23f1bea5949f1bbd (5 samples, 0.01%)</title><rect x="1154.1" y="277" width="0.1" height="15.0" fill="rgb(206,107,33)" rx="2" ry="2" />
<text x="1157.07" y="287.5" ></text>
</g>
<g >
<title>vma_compute_subtree_gap (4 samples, 0.01%)</title><rect x="237.0" y="293" width="0.1" height="15.0" fill="rgb(208,120,13)" rx="2" ry="2" />
<text x="239.96" y="303.5" ></text>
</g>
<g >
<title>copy_siginfo_to_user (7 samples, 0.02%)</title><rect x="12.9" y="437" width="0.2" height="15.0" fill="rgb(210,136,19)" rx="2" ry="2" />
<text x="15.91" y="447.5" ></text>
</g>
<g >
<title>_int_malloc (10 samples, 0.02%)</title><rect x="124.4" y="213" width="0.3" height="15.0" fill="rgb(228,33,54)" rx="2" ry="2" />
<text x="127.40" y="223.5" ></text>
</g>
<g >
<title>__GI___libc_realloc (4 samples, 0.01%)</title><rect x="1167.5" y="133" width="0.1" height="15.0" fill="rgb(223,9,50)" rx="2" ry="2" />
<text x="1170.48" y="143.5" ></text>
</g>
<g >
<title>do_group_exit (5 samples, 0.01%)</title><rect x="1180.8" y="437" width="0.2" height="15.0" fill="rgb(249,2,28)" rx="2" ry="2" />
<text x="1183.81" y="447.5" ></text>
</g>
<g >
<title>wasmer_runtime_core::compile_with_config::h2793fe8de72c0bc3 (21,311 samples, 51.55%)</title><rect x="246.2" y="437" width="608.3" height="15.0" fill="rgb(218,8,15)" rx="2" ry="2" />
<text x="249.21" y="447.5" >wasmer_runtime_core::compile_with_config::h2793fe8de72c0bc3</text>
</g>
<g >
<title>sys_mmap (6 samples, 0.01%)</title><rect x="187.0" y="149" width="0.2" height="15.0" fill="rgb(211,71,16)" rx="2" ry="2" />
<text x="189.99" y="159.5" ></text>
</g>
<g >
<title>__GI___libc_malloc (4 samples, 0.01%)</title><rect x="324.8" y="341" width="0.2" height="15.0" fill="rgb(208,41,46)" rx="2" ry="2" />
<text x="327.84" y="351.5" ></text>
</g>
<g >
<title>_int_free (5 samples, 0.01%)</title><rect x="243.2" y="405" width="0.2" height="15.0" fill="rgb(209,158,53)" rx="2" ry="2" />
<text x="246.21" y="415.5" ></text>
</g>
<g >
<title>alloc::raw_vec::RawVec$LT$T$C$A$GT$::reserve::ha898170dd69782a8 (11 samples, 0.03%)</title><rect x="807.0" y="341" width="0.3" height="15.0" fill="rgb(215,216,35)" rx="2" ry="2" />
<text x="810.00" y="351.5" ></text>
</g>
<g >
<title>alloc::sync::Arc$LT$T$GT$::drop_slow::h5338add9120ad023 (592 samples, 1.43%)</title><rect x="225.5" y="453" width="16.9" height="15.0" fill="rgb(248,77,46)" rx="2" ry="2" />
<text x="228.52" y="463.5" ></text>
</g>
<g >
<title>_int_free (4 samples, 0.01%)</title><rect x="255.1" y="357" width="0.2" height="15.0" fill="rgb(206,204,47)" rx="2" ry="2" />
<text x="258.14" y="367.5" ></text>
</g>
<g >
<title>cranelift_codegen::ir::dfg::DataFlowGraph::ctrl_typevar::h001f83f02149e995 (14 samples, 0.03%)</title><rect x="33.8" y="341" width="0.4" height="15.0" fill="rgb(224,148,42)" rx="2" ry="2" />
<text x="36.80" y="351.5" ></text>
</g>
<g >
<title>__GI___libc_realloc (1,062 samples, 2.57%)</title><rect x="958.8" y="389" width="30.4" height="15.0" fill="rgb(251,108,22)" rx="2" ry="2" />
<text x="961.84" y="399.5" >__..</text>
</g>
<g >
<title>cranelift_codegen::regalloc::coloring::Context::visit_inst::h157ddbfc9a018b2b (383 samples, 0.93%)</title><rect x="131.7" y="277" width="10.9" height="15.0" fill="rgb(250,211,23)" rx="2" ry="2" />
<text x="134.67" y="287.5" ></text>
</g>
<g >
<title>alloc::raw_vec::RawVec$LT$T$C$A$GT$::reserve::hc8a0fc8526f8c69b (11 samples, 0.03%)</title><rect x="1174.3" y="325" width="0.3" height="15.0" fill="rgb(245,125,19)" rx="2" ry="2" />
<text x="1177.30" y="335.5" ></text>
</g>
<g >
<title>cranelift_codegen::ir::layout::Layout::insert_inst::h352d76f498d27496 (4 samples, 0.01%)</title><rect x="20.0" y="277" width="0.1" height="15.0" fill="rgb(221,44,15)" rx="2" ry="2" />
<text x="23.02" y="287.5" ></text>
</g>
<g >
<title>std::sys::unix::time::inner::Instant::now::h23f1bea5949f1bbd (5 samples, 0.01%)</title><rect x="1171.2" y="341" width="0.1" height="15.0" fill="rgb(236,18,43)" rx="2" ry="2" />
<text x="1174.19" y="351.5" ></text>
</g>
<g >
<title>_int_malloc (4 samples, 0.01%)</title><rect x="801.7" y="277" width="0.1" height="15.0" fill="rgb(206,225,11)" rx="2" ry="2" />
<text x="804.66" y="287.5" ></text>
</g>
<g >
<title>core::ptr::align_offset::had9fe9d662c4839f (6 samples, 0.01%)</title><rect x="520.9" y="261" width="0.1" height="15.0" fill="rgb(249,135,2)" rx="2" ry="2" />
<text x="523.87" y="271.5" ></text>
</g>
<g >
<title>vm_mmap_pgoff (6 samples, 0.01%)</title><rect x="187.0" y="117" width="0.2" height="15.0" fill="rgb(236,2,53)" rx="2" ry="2" />
<text x="189.99" y="127.5" ></text>
</g>
<g >
<title>__GI___libc_realloc (4 samples, 0.01%)</title><rect x="141.2" y="213" width="0.1" height="15.0" fill="rgb(205,64,25)" rx="2" ry="2" />
<text x="144.18" y="223.5" ></text>
</g>
<g >
<title>__GI___libc_free (4 samples, 0.01%)</title><rect x="166.8" y="245" width="0.1" height="15.0" fill="rgb(246,6,30)" rx="2" ry="2" />
<text x="169.81" y="255.5" ></text>
</g>
<g >
<title>wasmparser::parser::Parser::read_next_section::h4d9786321eb758cf (33 samples, 0.08%)</title><rect x="813.0" y="357" width="0.9" height="15.0" fill="rgb(220,150,1)" rx="2" ry="2" />
<text x="815.99" y="367.5" ></text>
</g>
<g >
<title>__GI___libc_malloc (4 samples, 0.01%)</title><rect x="139.5" y="197" width="0.1" height="15.0" fill="rgb(234,10,50)" rx="2" ry="2" />
<text x="142.52" y="207.5" ></text>
</g>
<g >
<title>get_mem_cgroup_from_mm (4 samples, 0.01%)</title><rect x="342.1" y="197" width="0.2" height="15.0" fill="rgb(210,66,26)" rx="2" ry="2" />
<text x="345.14" y="207.5" ></text>
</g>
<g >
<title>_$LT$cranelift_codegen..timing..details..TimingToken$u20$as$u20$core..ops..drop..Drop$GT$::drop::h1b19c2a93ee0a091 (17 samples, 0.04%)</title><rect x="108.6" y="277" width="0.5" height="15.0" fill="rgb(237,66,52)" rx="2" ry="2" />
<text x="111.58" y="287.5" ></text>
</g>
<g >
<title>cranelift_codegen::isa::x86::abi::legalize_signature::hdcf9074841354b32 (23 samples, 0.06%)</title><rect x="1170.0" y="341" width="0.7" height="15.0" fill="rgb(222,36,9)" rx="2" ry="2" />
<text x="1173.02" y="351.5" ></text>
</g>
<g >
<title>std::time::Instant::now::h33d2ba6042def2d2 (15 samples, 0.04%)</title><rect x="171.5" y="293" width="0.4" height="15.0" fill="rgb(249,111,27)" rx="2" ry="2" />
<text x="174.49" y="303.5" ></text>
</g>
<g >
<title>__GI___libc_realloc (6 samples, 0.01%)</title><rect x="1168.9" y="245" width="0.2" height="15.0" fill="rgb(213,139,4)" rx="2" ry="2" />
<text x="1171.91" y="255.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 (270 samples, 0.65%)</title><rect x="174.3" y="437" width="7.7" height="15.0" fill="rgb(224,213,20)" rx="2" ry="2" />
<text x="177.29" y="447.5" ></text>
</g>
<g >
<title>cranelift_codegen::ir::function::Function::with_name_signature::h3213a13dd838e646 (9 samples, 0.02%)</title><rect x="174.0" y="373" width="0.3" height="15.0" fill="rgb(242,131,28)" rx="2" ry="2" />
<text x="177.03" y="383.5" ></text>
</g>
<g >
<title>rocinante::stoke::Superoptimizer::synthesize::h4ba34d72c5765be9 (33,050 samples, 79.94%)</title><rect x="205.5" y="485" width="943.3" height="15.0" fill="rgb(210,29,37)" rx="2" ry="2" />
<text x="208.48" y="495.5" >rocinante::stoke::Superoptimizer::synthesize::h4ba34d72c5765be9</text>
</g>
<g >
<title>_ZN16cranelift_entity4list17ListPool$LT$T$GT$5alloc17h7031e3fd97879e16E.llvm.776987249141506950 (5 samples, 0.01%)</title><rect x="321.8" y="341" width="0.2" height="15.0" fill="rgb(219,5,17)" rx="2" ry="2" />
<text x="324.85" y="351.5" ></text>
</g>
<g >
<title>_$LT$wasmer_clif_backend..signal..Caller$u20$as$u20$wasmer_runtime_core..backend..RunnableModule$GT$::get_trampoline::invoke::hf0f11602db5710f7 (239 samples, 0.58%)</title><rect x="862.1" y="389" width="6.8" height="15.0" fill="rgb(207,99,29)" rx="2" ry="2" />
<text x="865.11" y="399.5" ></text>
</g>
<g >
<title>std::sys::unix::time::inner::Instant::now::h23f1bea5949f1bbd (4 samples, 0.01%)</title><rect x="1155.1" y="309" width="0.1" height="15.0" fill="rgb(238,144,21)" rx="2" ry="2" />
<text x="1158.09" y="319.5" ></text>
</g>
<g >
<title>std::rt::lang_start::_$u7b$$u7b$closure$u7d$$u7d$::h387b585bfd0524d1 (6 samples, 0.01%)</title><rect x="1167.2" y="405" width="0.1" height="15.0" fill="rgb(226,20,35)" rx="2" ry="2" />
<text x="1170.17" y="415.5" ></text>
</g>
<g >
<title>_ZN9hashbrown3raw17RawTable$LT$T$GT$14reserve_rehash17h949d57d1e07c193dE.llvm.16938716460618634628 (4 samples, 0.01%)</title><rect x="13.6" y="325" width="0.1" height="15.0" fill="rgb(228,71,50)" rx="2" ry="2" />
<text x="16.57" y="335.5" ></text>
</g>
<g >
<title>__GI___clock_gettime (5 samples, 0.01%)</title><rect x="51.7" y="261" width="0.1" height="15.0" fill="rgb(209,161,23)" rx="2" ry="2" />
<text x="54.70" y="271.5" ></text>
</g>
<g >
<title>_ZN17cranelift_codegen24redundant_reload_remover22RedundantReloadRemover37do_redundant_fill_removal_on_function17h0915e7840d7db9a4E.llvm.15195122248153170019 (225 samples, 0.54%)</title><rect x="69.8" y="293" width="6.4" height="15.0" fill="rgb(237,104,11)" rx="2" ry="2" />
<text x="72.77" y="303.5" ></text>
</g>
<g >
<title>wasmparser::parser::Parser::current_position::h11734210ed9d92b6 (287 samples, 0.69%)</title><rect x="696.9" y="373" width="8.2" height="15.0" fill="rgb(243,12,51)" rx="2" ry="2" />
<text x="699.91" y="383.5" ></text>
</g>
<g >
<title>__GI___libc_malloc (9 samples, 0.02%)</title><rect x="1170.2" y="309" width="0.2" height="15.0" fill="rgb(239,36,7)" rx="2" ry="2" />
<text x="1173.16" y="319.5" ></text>
</g>
<g >
<title>alloc::raw_vec::RawVec$LT$T$C$A$GT$::reserve::h0c445b41f7c28667 (6 samples, 0.01%)</title><rect x="1155.7" y="309" width="0.2" height="15.0" fill="rgb(245,91,8)" rx="2" ry="2" />
<text x="1158.75" y="319.5" ></text>
</g>
<g >
<title>std::sys::unix::time::inner::Instant::now::h23f1bea5949f1bbd (12 samples, 0.03%)</title><rect x="57.5" y="341" width="0.4" height="15.0" fill="rgb(238,93,21)" rx="2" ry="2" />
<text x="60.52" y="351.5" ></text>
</g>
<g >
<title>_ZN16cranelift_entity4list17ListPool$LT$T$GT$5alloc17h7031e3fd97879e16E.llvm.776987249141506950 (4 samples, 0.01%)</title><rect x="1169.8" y="245" width="0.1" height="15.0" fill="rgb(230,182,32)" rx="2" ry="2" />
<text x="1172.79" y="255.5" ></text>
</g>
<g >
<title>__GI___libc_realloc (17 samples, 0.04%)</title><rect x="16.5" y="261" width="0.4" height="15.0" fill="rgb(207,174,3)" rx="2" ry="2" />
<text x="19.45" y="271.5" ></text>
</g>
<g >
<title>parity_wasm::elements::primitives::CountedWriter$LT$W$GT$::done::hd4981212fa202dc5 (28 samples, 0.07%)</title><rect x="202.6" y="277" width="0.8" height="15.0" fill="rgb(206,106,49)" rx="2" ry="2" />
<text x="205.57" y="287.5" ></text>
</g>
<g >
<title>_ZN3std9panicking3try7do_call17h7b956e322363fb07E.llvm.15827231380573383134 (47 samples, 0.11%)</title><rect x="183.3" y="373" width="1.3" height="15.0" fill="rgb(238,129,1)" rx="2" ry="2" />
<text x="186.28" y="383.5" ></text>
</g>
<g >
<title>__GI___libc_realloc (13 samples, 0.03%)</title><rect x="1179.0" y="293" width="0.3" height="15.0" fill="rgb(227,215,20)" rx="2" ry="2" />
<text x="1181.95" y="303.5" ></text>
</g>
<g >
<title>_int_realloc (8 samples, 0.02%)</title><rect x="803.6" y="325" width="0.2" height="15.0" fill="rgb(238,224,7)" rx="2" ry="2" />
<text x="806.57" y="335.5" ></text>
</g>
<g >
<title>cranelift_codegen::ir::instructions::InstructionData::arguments::h70ecdef19e20b02a (7 samples, 0.02%)</title><rect x="151.0" y="261" width="0.2" height="15.0" fill="rgb(242,222,54)" rx="2" ry="2" />
<text x="154.00" y="271.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 (73 samples, 0.18%)</title><rect x="99.8" y="261" width="2.0" height="15.0" fill="rgb(236,70,53)" rx="2" ry="2" />
<text x="102.76" y="271.5" ></text>
</g>
<g >
<title>wasmer_clif_backend::get_isa::he894f6446deff718 (87 samples, 0.21%)</title><rect x="325.5" y="373" width="2.5" height="15.0" fill="rgb(238,32,17)" rx="2" ry="2" />
<text x="328.53" y="383.5" ></text>
</g>
<g >
<title>std::sys::unix::alloc::_$LT$impl$u20$core..alloc..GlobalAlloc$u20$for$u20$std..alloc..System$GT$::dealloc::h000dc0e1d3b4be28 (4 samples, 0.01%)</title><rect x="176.9" y="341" width="0.1" height="15.0" fill="rgb(207,17,48)" rx="2" ry="2" />
<text x="179.88" 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 (4,073 samples, 9.85%)</title><rect x="58.0" y="453" width="116.3" height="15.0" fill="rgb(250,137,24)" rx="2" ry="2" />
<text x="61.04" y="463.5" >rayon::iter::c..</text>
</g>
<g >
<title>get_page_from_freelist (15 samples, 0.04%)</title><rect x="277.4" y="245" width="0.5" height="15.0" fill="rgb(213,76,4)" rx="2" ry="2" />
<text x="280.44" y="255.5" ></text>
</g>
<g >
<title>_int_malloc (5 samples, 0.01%)</title><rect x="1168.3" y="229" width="0.1" height="15.0" fill="rgb(244,181,11)" rx="2" ry="2" />
<text x="1171.28" y="239.5" ></text>
</g>
<g >
<title>__GI___clock_gettime (4 samples, 0.01%)</title><rect x="1155.1" y="277" width="0.1" height="15.0" fill="rgb(212,42,45)" rx="2" ry="2" />
<text x="1158.09" y="287.5" ></text>
</g>
<g >
<title>_$LT$cranelift_codegen..timing..details..TimingToken$u20$as$u20$core..ops..drop..Drop$GT$::drop::h1b19c2a93ee0a091 (11 samples, 0.03%)</title><rect x="112.3" y="277" width="0.3" height="15.0" fill="rgb(220,220,12)" rx="2" ry="2" />
<text x="115.26" y="287.5" ></text>
</g>
<g >
<title>_int_free (4 samples, 0.01%)</title><rect x="1176.8" y="293" width="0.1" height="15.0" fill="rgb(240,207,48)" rx="2" ry="2" />
<text x="1179.79" y="303.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 (15 samples, 0.04%)</title><rect x="319.1" y="357" width="0.5" height="15.0" fill="rgb(212,126,44)" rx="2" ry="2" />
<text x="322.14" y="367.5" ></text>
</g>
<g >
<title>wasmer_runtime_core::parse::read_module::h3875b654eed5ef74 (6 samples, 0.01%)</title><rect x="1167.2" y="293" width="0.1" height="15.0" fill="rgb(245,87,35)" rx="2" ry="2" />
<text x="1170.17" y="303.5" ></text>
</g>
<g >
<title>vma_link (10 samples, 0.02%)</title><rect x="296.3" y="229" width="0.3" height="15.0" fill="rgb(237,224,7)" rx="2" ry="2" />
<text x="299.27" y="239.5" ></text>
</g>
<g >
<title>cranelift_codegen::context::Context::new::hb2c1be51d6979949 (7 samples, 0.02%)</title><rect x="1180.0" y="437" width="0.2" height="15.0" fill="rgb(246,62,48)" rx="2" ry="2" />
<text x="1183.04" y="447.5" ></text>
</g>
<g >
<title>__GI___clock_gettime (7 samples, 0.02%)</title><rect x="114.7" y="229" width="0.2" height="15.0" fill="rgb(226,108,36)" rx="2" ry="2" />
<text x="117.66" y="239.5" ></text>
</g>
<g >
<title>cranelift_codegen::context::Context::new::hb2c1be51d6979949 (45 samples, 0.11%)</title><rect x="182.0" y="453" width="1.3" height="15.0" fill="rgb(246,42,35)" rx="2" ry="2" />
<text x="184.99" y="463.5" ></text>
</g>
<g >
<title>cranelift_codegen::abi::legalize_args::he47515d3a3ad0ee6 (26 samples, 0.06%)</title><rect x="79.4" y="229" width="0.8" height="15.0" fill="rgb(239,74,25)" rx="2" ry="2" />
<text x="82.41" y="239.5" ></text>
</g>
<g >
<title>std::time::Instant::now::h33d2ba6042def2d2 (6 samples, 0.01%)</title><rect x="155.9" y="229" width="0.2" height="15.0" fill="rgb(209,163,0)" rx="2" ry="2" />
<text x="158.93" y="239.5" ></text>
</g>
<g >
<title>kmem_cache_alloc (7 samples, 0.02%)</title><rect x="342.1" y="229" width="0.2" height="15.0" fill="rgb(227,23,54)" rx="2" ry="2" />
<text x="345.05" y="239.5" ></text>
</g>
<g >
<title>_int_free (168 samples, 0.41%)</title><rect x="504.4" y="325" width="4.8" height="15.0" fill="rgb(222,71,29)" rx="2" ry="2" />
<text x="507.40" 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 (4 samples, 0.01%)</title><rect x="13.6" y="341" width="0.1" height="15.0" fill="rgb(223,166,10)" rx="2" ry="2" />
<text x="16.57" y="351.5" ></text>
</g>
<g >
<title>cranelift_codegen::context::Context::compile_and_emit::h5499205207e7951f (93 samples, 0.22%)</title><rect x="1167.4" y="341" width="2.6" height="15.0" fill="rgb(247,131,37)" rx="2" ry="2" />
<text x="1170.37" y="351.5" ></text>
</g>
<g >
<title>cranelift_codegen::regalloc::live_value_tracker::LiveValueTracker::process_inst::hcd4ba6fb549516b2 (13 samples, 0.03%)</title><rect x="1175.4" y="357" width="0.4" height="15.0" fill="rgb(236,198,16)" rx="2" ry="2" />
<text x="1178.39" y="367.5" ></text>
</g>
<g >
<title>_$LT$cranelift_codegen..timing..details..TimingToken$u20$as$u20$core..ops..drop..Drop$GT$::drop::h1b19c2a93ee0a091 (9 samples, 0.02%)</title><rect x="36.8" y="341" width="0.3" height="15.0" fill="rgb(231,127,31)" rx="2" ry="2" />
<text x="39.83" y="351.5" ></text>
</g>
<g >
<title>_$LT$rayon..iter..while_some..WhileSome$LT$I$GT$$u20$as$u20$rayon..iter..ParallelIterator$GT$::drive_unindexed::h5bb97cb6437a1950 (4,073 samples, 9.85%)</title><rect x="58.0" y="437" width="116.3" height="15.0" fill="rgb(214,169,42)" rx="2" ry="2" />
<text x="61.04" y="447.5" >_$LT$rayon..it..</text>
</g>
<g >
<title>__GI___libc_free (18 samples, 0.04%)</title><rect x="181.4" y="357" width="0.5" height="15.0" fill="rgb(215,107,13)" rx="2" ry="2" />
<text x="184.39" y="367.5" ></text>
</g>
<g >
<title>cranelift_codegen::isa::TargetIsa::encode::h3618ddf6ad568ce7 (4 samples, 0.01%)</title><rect x="91.5" y="213" width="0.1" height="15.0" fill="rgb(246,7,23)" rx="2" ry="2" />
<text x="94.49" y="223.5" ></text>
</g>
<g >
<title>__vdso_clock_gettime (5 samples, 0.01%)</title><rect x="117.0" y="197" width="0.1" height="15.0" fill="rgb(235,42,41)" rx="2" ry="2" />
<text x="120.00" y="207.5" ></text>
</g>
<g >
<title>__GI___libc_malloc (7 samples, 0.02%)</title><rect x="113.4" y="213" width="0.2" height="15.0" fill="rgb(209,207,16)" rx="2" ry="2" />
<text x="116.44" y="223.5" ></text>
</g>
<g >
<title>cranelift_codegen::regalloc::context::Context::run::hacf4bbc8f4d0071a (710 samples, 1.72%)</title><rect x="37.6" y="373" width="20.3" height="15.0" fill="rgb(225,37,3)" rx="2" ry="2" />
<text x="40.60" y="383.5" ></text>
</g>
<g >
<title>cranelift_codegen::flowgraph::ControlFlowGraph::recompute_ebb::h44e6fe3205f2df2b (8 samples, 0.02%)</title><rect x="1167.4" y="229" width="0.2" height="15.0" fill="rgb(244,8,2)" rx="2" ry="2" />
<text x="1170.37" y="239.5" ></text>
</g>
<g >
<title>rocinante::solver::z3::Z3Solver::verify::ha247dd2077cd2fca (5 samples, 0.01%)</title><rect x="885.8" y="469" width="0.1" height="15.0" fill="rgb(217,58,5)" rx="2" ry="2" />
<text x="888.77" y="479.5" ></text>
</g>
<g >
<title>hashbrown::map::HashMap$LT$K$C$V$C$S$GT$::contains_key::hc2d70e289ae6b120 (5 samples, 0.01%)</title><rect x="814.6" y="373" width="0.1" height="15.0" fill="rgb(223,36,20)" rx="2" ry="2" />
<text x="817.59" y="383.5" ></text>
</g>
<g >
<title>std::collections::hash::map::RandomState::new::KEYS::__getit::hc919284a97fb9164 (10 samples, 0.02%)</title><rect x="809.6" y="341" width="0.3" height="15.0" fill="rgb(232,166,31)" rx="2" ry="2" />
<text x="812.60" 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 (15 samples, 0.04%)</title><rect x="43.7" y="325" width="0.5" height="15.0" fill="rgb(234,33,33)" rx="2" ry="2" />
<text x="46.74" y="335.5" ></text>
</g>
<g >
<title>wasmer_clif_backend::resolver::FuncResolverBuilder::new::h17aa56962b53b260 (270 samples, 0.65%)</title><rect x="174.3" y="469" width="7.7" height="15.0" fill="rgb(234,105,53)" rx="2" ry="2" />
<text x="177.29" y="479.5" ></text>
</g>
<g >
<title>__GI___clock_gettime (4 samples, 0.01%)</title><rect x="1160.6" y="261" width="0.1" height="15.0" fill="rgb(237,151,40)" rx="2" ry="2" />
<text x="1163.60" y="271.5" ></text>
</g>
<g >
<title>std::sys::unix::time::inner::Instant::now::h23f1bea5949f1bbd (9 samples, 0.02%)</title><rect x="37.7" y="309" width="0.2" height="15.0" fill="rgb(208,66,44)" rx="2" ry="2" />
<text x="40.69" y="319.5" ></text>
</g>
<g >
<title>_int_malloc (5 samples, 0.01%)</title><rect x="1168.7" y="229" width="0.1" height="15.0" fill="rgb(227,223,6)" rx="2" ry="2" />
<text x="1171.68" y="239.5" ></text>
</g>
<g >
<title>__GI___libc_free (12 samples, 0.03%)</title><rect x="313.5" y="341" width="0.4" height="15.0" fill="rgb(253,120,47)" rx="2" ry="2" />
<text x="316.51" y="351.5" ></text>
</g>
<g >
<title>_$LT$alloc..vec..Vec$LT$T$GT$$u20$as$u20$core..clone..Clone$GT$::clone::h95539acf8836d879 (4 samples, 0.01%)</title><rect x="61.4" y="309" width="0.1" height="15.0" fill="rgb(218,84,30)" rx="2" ry="2" />
<text x="64.40" y="319.5" ></text>
</g>
<g >
<title>__GI___libc_free (656 samples, 1.59%)</title><rect x="754.2" y="373" width="18.7" height="15.0" fill="rgb(235,28,42)" rx="2" ry="2" />
<text x="757.17" y="383.5" ></text>
</g>
<g >
<title>cranelift_codegen::isa::x86::abi::insert_common_epilogues::h86f7f3e925a821fa (50 samples, 0.12%)</title><rect x="89.3" y="245" width="1.4" height="15.0" fill="rgb(207,221,49)" rx="2" ry="2" />
<text x="92.32" y="255.5" ></text>
</g>
<g >
<title>cranelift_entity::list::EntityList$LT$T$GT$::push::h3b7b875a11d2ba0c (31 samples, 0.07%)</title><rect x="320.0" y="357" width="0.9" height="15.0" fill="rgb(247,208,10)" rx="2" ry="2" />
<text x="323.05" y="367.5" ></text>
</g>
<g >
<title>_int_realloc (172 samples, 0.42%)</title><rect x="984.2" y="373" width="5.0" height="15.0" fill="rgb(210,104,7)" rx="2" ry="2" />
<text x="987.24" y="383.5" ></text>
</g>
<g >
<title>_ZN9hashbrown3raw17RawTable$LT$T$GT$14reserve_rehash17h949d57d1e07c193dE.llvm.16938716460618634628 (19 samples, 0.05%)</title><rect x="42.9" y="309" width="0.6" height="15.0" fill="rgb(210,137,52)" rx="2" ry="2" />
<text x="45.91" y="319.5" ></text>
</g>
<g >
<title>cranelift_codegen::isa::x86::enc_tables::size_plus_maybe_sib_for_in_reg_0::h9614877b53180600 (18 samples, 0.04%)</title><rect x="30.4" y="325" width="0.5" height="15.0" fill="rgb(217,58,52)" rx="2" ry="2" />
<text x="33.44" y="335.5" ></text>
</g>
<g >
<title>cranelift_codegen::regalloc::reload::Context::insert_spill::heb310b7f97e05ad2 (25 samples, 0.06%)</title><rect x="53.1" y="341" width="0.7" height="15.0" fill="rgb(252,151,27)" rx="2" ry="2" />
<text x="56.10" y="351.5" ></text>
</g>
<g >
<title>std::sys::unix::time::inner::now::ha10452f37b2930c5 (10 samples, 0.02%)</title><rect x="119.5" y="245" width="0.3" height="15.0" fill="rgb(244,164,41)" rx="2" ry="2" />
<text x="122.54" y="255.5" ></text>
</g>
<g >
<title>page_counter_uncharge (7 samples, 0.02%)</title><rect x="233.1" y="149" width="0.2" height="15.0" fill="rgb(248,164,35)" rx="2" ry="2" />
<text x="236.11" y="159.5" ></text>
</g>
<g >
<title>cranelift_codegen::isa::constraints::RecipeConstraints::satisfied::h33556c8a9b1bba6e (40 samples, 0.10%)</title><rect x="34.2" y="341" width="1.1" height="15.0" fill="rgb(245,72,28)" rx="2" ry="2" />
<text x="37.20" y="351.5" ></text>
</g>
<g >
<title>_$LT$cranelift_codegen..timing..details..TimingToken$u20$as$u20$core..ops..drop..Drop$GT$::drop::h1b19c2a93ee0a091 (8 samples, 0.02%)</title><rect x="171.1" y="277" width="0.2" height="15.0" fill="rgb(241,5,38)" rx="2" ry="2" />
<text x="174.06" y="287.5" ></text>
</g>
<g >
<title>__GI___libc_free (9 samples, 0.02%)</title><rect x="195.2" y="229" width="0.3" height="15.0" fill="rgb(249,166,0)" rx="2" ry="2" />
<text x="198.24" y="239.5" ></text>
</g>
<g >
<title>std::sys::unix::alloc::_$LT$impl$u20$core..alloc..GlobalAlloc$u20$for$u20$std..alloc..System$GT$::alloc::h33585d4e6aad0166 (9 samples, 0.02%)</title><rect x="478.8" y="325" width="0.3" height="15.0" fill="rgb(205,88,31)" rx="2" ry="2" />
<text x="481.80" y="335.5" ></text>
</g>
<g >
<title>cranelift_codegen::regalloc::coalescing::Coalescing::conventional_ssa::h25e21334b716fc0d (23 samples, 0.06%)</title><rect x="1170.7" y="373" width="0.6" height="15.0" fill="rgb(210,227,44)" rx="2" ry="2" />
<text x="1173.68" y="383.5" ></text>
</g>
<g >
<title>alloc::raw_vec::RawVec$LT$T$C$A$GT$::reserve::h500ef385b8747b29 (13 samples, 0.03%)</title><rect x="96.9" y="261" width="0.4" height="15.0" fill="rgb(227,6,10)" rx="2" ry="2" />
<text x="99.88" y="271.5" ></text>
</g>
<g >
<title>cranelift_codegen::flowgraph::ControlFlowGraph::compute::hdce42828fa3e59cb (23 samples, 0.06%)</title><rect x="1160.5" y="357" width="0.7" height="15.0" fill="rgb(221,87,47)" rx="2" ry="2" />
<text x="1163.54" y="367.5" ></text>
</g>
<g >
<title>cranelift_codegen::ir::dfg::DataFlowGraph::resolve_aliases_in_arguments::ha1a59fc1c5edab63 (17 samples, 0.04%)</title><rect x="144.6" y="261" width="0.5" height="15.0" fill="rgb(222,227,9)" rx="2" ry="2" />
<text x="147.60" y="271.5" ></text>
</g>
<g >
<title>_ZN16cranelift_entity4list17ListPool$LT$T$GT$5alloc17h7031e3fd97879e16E.llvm.776987249141506950 (17 samples, 0.04%)</title><rect x="322.5" y="325" width="0.5" height="15.0" fill="rgb(211,117,10)" rx="2" ry="2" />
<text x="325.47" y="335.5" ></text>
</g>
<g >
<title>_int_malloc (57 samples, 0.14%)</title><rect x="870.6" y="405" width="1.7" height="15.0" fill="rgb(207,113,17)" rx="2" ry="2" />
<text x="873.65" y="415.5" ></text>
</g>
<g >
<title>_int_malloc (12 samples, 0.03%)</title><rect x="795.1" y="309" width="0.4" height="15.0" fill="rgb(235,184,9)" rx="2" ry="2" />
<text x="798.13" y="319.5" ></text>
</g>
<g >
<title>kmem_cache_alloc (6 samples, 0.01%)</title><rect x="229.0" y="245" width="0.1" height="15.0" fill="rgb(219,154,17)" rx="2" ry="2" />
<text x="231.97" y="255.5" ></text>
</g>
<g >
<title>__memcpy_avx_unaligned (4 samples, 0.01%)</title><rect x="198.3" y="261" width="0.1" height="15.0" fill="rgb(219,16,14)" rx="2" ry="2" />
<text x="201.32" y="271.5" ></text>
</g>
<g >
<title>cranelift_entity::sparse::SparseMap$LT$K$C$V$GT$::insert::h7db38de7d591c38a (19 samples, 0.05%)</title><rect x="1178.3" y="357" width="0.5" height="15.0" fill="rgb(211,131,25)" rx="2" ry="2" />
<text x="1181.27" y="367.5" ></text>
</g>
<g >
<title>std::sys::unix::time::inner::Instant::now::h23f1bea5949f1bbd (4 samples, 0.01%)</title><rect x="1158.2" y="293" width="0.1" height="15.0" fill="rgb(220,1,37)" rx="2" ry="2" />
<text x="1161.23" y="303.5" ></text>
</g>
<g >
<title>_$LT$cranelift_bforest..Node$u20$as$u20$cranelift_entity..packed_option..ReservedValue$GT$::reserved_value::h5835179d85b4948d (7 samples, 0.02%)</title><rect x="125.9" y="261" width="0.2" height="15.0" fill="rgb(210,133,28)" rx="2" ry="2" />
<text x="128.91" y="271.5" ></text>
</g>
<g >
<title>__GI___pthread_mutex_init (4 samples, 0.01%)</title><rect x="282.4" y="341" width="0.1" height="15.0" fill="rgb(224,47,47)" rx="2" ry="2" />
<text x="285.37" y="351.5" ></text>
</g>
<g >
<title>_int_malloc (143 samples, 0.35%)</title><rect x="1015.0" y="389" width="4.1" height="15.0" fill="rgb(229,94,1)" rx="2" ry="2" />
<text x="1018.01" y="399.5" ></text>
</g>
<g >
<title>_int_free (14 samples, 0.03%)</title><rect x="147.0" y="181" width="0.4" height="15.0" fill="rgb(233,226,34)" rx="2" ry="2" />
<text x="150.03" y="191.5" ></text>
</g>
<g >
<title>__memcpy_avx_unaligned (5 samples, 0.01%)</title><rect x="281.9" y="341" width="0.1" height="15.0" fill="rgb(216,147,3)" rx="2" ry="2" />
<text x="284.89" y="351.5" ></text>
</g>
<g >
<title>core::ptr::real_drop_in_place::h8f5edcc205986b39 (146 samples, 0.35%)</title><rect x="307.5" y="373" width="4.2" height="15.0" fill="rgb(239,114,9)" rx="2" ry="2" />
<text x="310.49" y="383.5" ></text>
</g>
<g >
<title>do_trap (9 samples, 0.02%)</title><rect x="12.5" y="437" width="0.3" height="15.0" fill="rgb(206,213,32)" rx="2" ry="2" />
<text x="15.51" y="447.5" ></text>
</g>
<g >
<title>__GI___pthread_rwlock_rdlock (998 samples, 2.41%)</title><rect x="821.2" y="373" width="28.4" height="15.0" fill="rgb(214,18,22)" rx="2" ry="2" />
<text x="824.16" y="383.5" >__..</text>
</g>
<g >
<title>core::ptr::real_drop_in_place::hb35dbfa927a2ec4a (18 samples, 0.04%)</title><rect x="243.1" y="437" width="0.5" height="15.0" fill="rgb(244,16,38)" rx="2" ry="2" />
<text x="246.07" y="447.5" ></text>
</g>
<g >
<title>alloc::raw_vec::RawVec$LT$T$C$A$GT$::reserve::h500ef385b8747b29 (5 samples, 0.01%)</title><rect x="117.9" y="277" width="0.2" height="15.0" fill="rgb(244,79,46)" rx="2" ry="2" />
<text x="120.92" y="287.5" ></text>
</g>
<g >
<title>_int_malloc (131 samples, 0.32%)</title><rect x="725.8" y="373" width="3.8" height="15.0" fill="rgb(209,216,25)" rx="2" ry="2" />
<text x="728.83" y="383.5" ></text>
</g>
<g >
<title>_int_malloc (4 samples, 0.01%)</title><rect x="103.0" y="181" width="0.1" height="15.0" fill="rgb(219,181,48)" rx="2" ry="2" />
<text x="106.02" y="191.5" ></text>
</g>
<g >
<title>__memcpy_avx_unaligned (5 samples, 0.01%)</title><rect x="273.6" y="373" width="0.2" height="15.0" fill="rgb(225,56,41)" rx="2" ry="2" />
<text x="276.61" y="383.5" ></text>
</g>
<g >
<title>page_counter_uncharge (5 samples, 0.01%)</title><rect x="239.0" y="181" width="0.1" height="15.0" fill="rgb(217,95,10)" rx="2" ry="2" />
<text x="241.96" y="191.5" ></text>
</g>
<g >
<title>do_syscall_64 (6 samples, 0.01%)</title><rect x="186.8" y="165" width="0.2" height="15.0" fill="rgb(240,184,7)" rx="2" ry="2" />
<text x="189.79" y="175.5" ></text>
</g>
<g >
<title>do_syscall_64 (7 samples, 0.02%)</title><rect x="185.4" y="181" width="0.2" height="15.0" fill="rgb(207,118,42)" rx="2" ry="2" />
<text x="188.36" y="191.5" ></text>
</g>
<g >
<title>cranelift_codegen::regalloc::liveness::Liveness::compute::h5fc2c46ff15ebd51 (19 samples, 0.05%)</title><rect x="1178.3" y="389" width="0.5" height="15.0" fill="rgb(212,166,8)" rx="2" ry="2" />
<text x="1181.27" y="399.5" ></text>
</g>
<g >
<title>_$LT$alloc..vec..Vec$LT$T$GT$$u20$as$u20$core..clone..Clone$GT$::clone::h514986f3b28de5ec (11 samples, 0.03%)</title><rect x="60.2" y="309" width="0.3" height="15.0" fill="rgb(207,124,12)" rx="2" ry="2" />
<text x="63.20" y="319.5" ></text>
</g>
<g >
<title>c2_chacha::guts::refill_wide::impl_avx2::hcbb75f7591de3cb9 (7 samples, 0.02%)</title><rect x="1143.8" y="405" width="0.2" height="15.0" fill="rgb(206,139,9)" rx="2" ry="2" />
<text x="1146.85" y="415.5" ></text>
</g>
<g >
<title>std::sys::unix::time::inner::now::ha10452f37b2930c5 (7 samples, 0.02%)</title><rect x="96.2" y="197" width="0.2" height="15.0" fill="rgb(250,162,28)" rx="2" ry="2" />
<text x="99.20" y="207.5" ></text>
</g>
<g >
<title>_int_malloc (4 samples, 0.01%)</title><rect x="74.7" y="229" width="0.1" height="15.0" fill="rgb(230,155,51)" rx="2" ry="2" />
<text x="77.73" y="239.5" ></text>
</g>
<g >
<title>cranelift_codegen::ir::builder::InstBuilder::x86_pop::h5a280d9badba4b5b (24 samples, 0.06%)</title><rect x="89.8" y="229" width="0.7" height="15.0" fill="rgb(251,3,26)" rx="2" ry="2" />
<text x="92.77" y="239.5" ></text>
</g>
<g >
<title>std::sys::unix::time::inner::now::ha10452f37b2930c5 (11 samples, 0.03%)</title><rect x="171.9" y="277" width="0.3" height="15.0" fill="rgb(233,202,48)" rx="2" ry="2" />
<text x="174.92" y="287.5" ></text>
</g>
<g >
<title>alloc::sync::Arc$LT$T$GT$::drop_slow::h5338add9120ad023 (15 samples, 0.04%)</title><rect x="185.4" y="293" width="0.4" height="15.0" fill="rgb(209,180,9)" rx="2" ry="2" />
<text x="188.36" y="303.5" ></text>
</g>
<g >
<title>alloc::raw_vec::RawVec$LT$T$C$A$GT$::reserve::h156c4ca9e87e66cc (16 samples, 0.04%)</title><rect x="124.2" y="245" width="0.5" height="15.0" fill="rgb(252,163,21)" rx="2" ry="2" />
<text x="127.22" y="255.5" ></text>
</g>
<g >
<title>__perf_event__output_id_sample (5 samples, 0.01%)</title><rect x="348.4" y="165" width="0.2" height="15.0" fill="rgb(227,79,15)" rx="2" ry="2" />
<text x="351.45" y="175.5" ></text>
</g>
<g >
<title>cranelift_codegen::regalloc::live_value_tracker::LiveValueTracker::process_inst::hcd4ba6fb549516b2 (17 samples, 0.04%)</title><rect x="1169.5" y="277" width="0.5" height="15.0" fill="rgb(221,42,23)" rx="2" ry="2" />
<text x="1172.54" y="287.5" ></text>
</g>
<g >
<title>copy_process.part.35 (9 samples, 0.02%)</title><rect x="1180.2" y="437" width="0.3" height="15.0" fill="rgb(253,99,40)" rx="2" ry="2" />
<text x="1183.24" y="447.5" ></text>
</g>
<g >
<title>core::ptr::real_drop_in_place::h192c5818fa53fe5a (40 samples, 0.10%)</title><rect x="240.4" y="437" width="1.2" height="15.0" fill="rgb(217,16,35)" rx="2" ry="2" />
<text x="243.45" y="447.5" ></text>
</g>
<g >
<title>core::ptr::real_drop_in_place::h51630cd8049767c4 (8 samples, 0.02%)</title><rect x="255.0" y="389" width="0.3" height="15.0" fill="rgb(253,77,41)" rx="2" ry="2" />
<text x="258.03" y="399.5" ></text>
</g>
<g >
<title>wasmparser::parser::Parser::current_position::h11734210ed9d92b6 (9 samples, 0.02%)</title><rect x="195.0" y="213" width="0.2" height="15.0" fill="rgb(235,185,17)" rx="2" ry="2" />
<text x="197.98" y="223.5" ></text>
</g>
<g >
<title>cranelift_codegen::regalloc::live_value_tracker::LiveValueTracker::ebb_top::hfe56a550654953ca (11 samples, 0.03%)</title><rect x="142.7" y="277" width="0.3" height="15.0" fill="rgb(249,99,14)" rx="2" ry="2" />
<text x="145.66" y="287.5" ></text>
</g>
<g >
<title>cranelift_codegen::ir::function::Function::update_encoding::hf75ec520bc911a0c (22 samples, 0.05%)</title><rect x="17.1" y="325" width="0.6" height="15.0" fill="rgb(211,220,35)" rx="2" ry="2" />
<text x="20.11" y="335.5" ></text>
</g>
<g >
<title>core::option::Option$LT$T$GT$::as_ref::h350fc43ea7807372 (5 samples, 0.01%)</title><rect x="809.7" y="293" width="0.2" height="15.0" fill="rgb(212,213,6)" rx="2" ry="2" />
<text x="812.74" y="303.5" ></text>
</g>
<g >
<title>alloc::raw_vec::RawVec$LT$T$C$A$GT$::reserve::h5e34cfad90a6ce21 (7 samples, 0.02%)</title><rect x="802.1" y="341" width="0.2" height="15.0" fill="rgb(251,52,18)" rx="2" ry="2" />
<text x="805.09" y="351.5" ></text>
</g>
<g >
<title>alloc::raw_vec::RawVec$LT$T$C$A$GT$::reserve::h500ef385b8747b29 (11 samples, 0.03%)</title><rect x="159.5" y="213" width="0.3" height="15.0" fill="rgb(243,69,8)" rx="2" ry="2" />
<text x="162.53" y="223.5" ></text>
</g>
<g >
<title>std::time::Instant::now::h33d2ba6042def2d2 (8 samples, 0.02%)</title><rect x="152.2" y="261" width="0.2" height="15.0" fill="rgb(221,169,50)" rx="2" ry="2" />
<text x="155.17" y="271.5" ></text>
</g>
<g >
<title>std::sys::unix::time::inner::now::ha10452f37b2930c5 (5 samples, 0.01%)</title><rect x="1162.0" y="277" width="0.1" height="15.0" fill="rgb(213,85,50)" rx="2" ry="2" />
<text x="1165.00" y="287.5" ></text>
</g>
<g >
<title>_int_malloc (9 samples, 0.02%)</title><rect x="1174.4" y="277" width="0.2" height="15.0" fill="rgb(221,195,38)" rx="2" ry="2" />
<text x="1177.36" y="287.5" ></text>
</g>
<g >
<title>alloc::raw_vec::RawVec$LT$T$C$A$GT$::reserve::hcd647565ba58b57f (7 samples, 0.02%)</title><rect x="67.6" y="261" width="0.2" height="15.0" fill="rgb(220,42,3)" rx="2" ry="2" />
<text x="70.63" y="271.5" ></text>
</g>
<g >
<title>__GI___libc_free (270 samples, 0.65%)</title><rect x="995.8" y="421" width="7.7" height="15.0" fill="rgb(235,158,28)" rx="2" ry="2" />
<text x="998.83" y="431.5" ></text>
</g>
<g >
<title>core::ptr::real_drop_in_place::hee16df317d8edeaf (7 samples, 0.02%)</title><rect x="185.4" y="261" width="0.2" height="15.0" fill="rgb(238,153,13)" rx="2" ry="2" />
<text x="188.36" y="271.5" ></text>
</g>
<g >
<title>std::time::Instant::elapsed::h8e307314b2acf9be (5 samples, 0.01%)</title><rect x="150.7" y="245" width="0.1" height="15.0" fill="rgb(236,185,3)" rx="2" ry="2" />
<text x="153.68" y="255.5" ></text>
</g>
<g >
<title>cranelift_codegen::flowgraph::ControlFlowGraph::add_edge::hf2c2f4cb34e85a4f (6 samples, 0.01%)</title><rect x="116.8" y="245" width="0.2" height="15.0" fill="rgb(232,176,34)" rx="2" ry="2" />
<text x="119.80" y="255.5" ></text>
</g>
<g >
<title>cranelift_codegen::context::Context::compile_and_emit::h5499205207e7951f (3,781 samples, 9.15%)</title><rect x="64.3" y="325" width="107.9" height="15.0" fill="rgb(216,18,29)" rx="2" ry="2" />
<text x="67.31" y="335.5" >cranelift_cod..</text>
</g>
<g >
<title>alloc::raw_vec::RawVec$LT$T$C$A$GT$::reserve::hd6c8f26eb3c9fb4b (7 samples, 0.02%)</title><rect x="56.1" y="341" width="0.2" height="15.0" fill="rgb(222,182,50)" rx="2" ry="2" />
<text x="59.09" y="351.5" ></text>
</g>
<g >
<title>anon_vma_interval_tree_insert (4 samples, 0.01%)</title><rect x="269.5" y="245" width="0.1" height="15.0" fill="rgb(239,25,29)" rx="2" ry="2" />
<text x="272.50" y="255.5" ></text>
</g>
<g >
<title>alloc::raw_vec::RawVec$LT$T$C$A$GT$::reserve::h90000ec143ceb992 (4 samples, 0.01%)</title><rect x="814.5" y="373" width="0.1" height="15.0" fill="rgb(238,192,40)" rx="2" ry="2" />
<text x="817.48" y="383.5" ></text>
</g>
<g >
<title>__GI___libc_malloc (44 samples, 0.11%)</title><rect x="695.1" y="341" width="1.2" height="15.0" fill="rgb(248,97,1)" rx="2" ry="2" />
<text x="698.09" y="351.5" ></text>
</g>
<g >
<title>__GI___libc_realloc (4 samples, 0.01%)</title><rect x="81.7" y="213" width="0.1" height="15.0" fill="rgb(230,8,10)" rx="2" ry="2" />
<text x="84.70" y="223.5" ></text>
</g>
<g >
<title>do_syscall_64 (9 samples, 0.02%)</title><rect x="1180.2" y="485" width="0.3" height="15.0" fill="rgb(235,190,50)" rx="2" ry="2" />
<text x="1183.24" y="495.5" ></text>
</g>
<g >
<title>_int_free (17 samples, 0.04%)</title><rect x="310.7" y="325" width="0.4" height="15.0" fill="rgb(239,187,21)" rx="2" ry="2" />
<text x="313.66" y="335.5" ></text>
</g>
<g >
<title>[perf-3176.map] (125 samples, 0.30%)</title><rect x="10.0" y="517" width="3.6" height="15.0" fill="rgb(247,135,54)" rx="2" ry="2" />
<text x="13.00" y="527.5" ></text>
</g>
<g >
<title>alloc::raw_vec::RawVec$LT$T$C$A$GT$::reserve::h500ef385b8747b29 (10 samples, 0.02%)</title><rect x="801.5" y="309" width="0.3" height="15.0" fill="rgb(205,212,4)" rx="2" ry="2" />
<text x="804.52" y="319.5" ></text>
</g>
<g >
<title>anon_vma_interval_tree_insert (4 samples, 0.01%)</title><rect x="288.8" y="245" width="0.1" height="15.0" fill="rgb(217,172,8)" rx="2" ry="2" />
<text x="291.77" y="255.5" ></text>
</g>
<g >
<title>_ZN17cranelift_codegen9flowgraph16ControlFlowGraph11compute_ebb17he662711fe9d10399E.llvm.15195122248153170019 (5 samples, 0.01%)</title><rect x="37.4" y="341" width="0.1" height="15.0" fill="rgb(215,176,32)" rx="2" ry="2" />
<text x="40.37" y="351.5" ></text>
</g>
<g >
<title>perf_iterate_sb (79 samples, 0.19%)</title><rect x="285.4" y="245" width="2.2" height="15.0" fill="rgb(233,82,50)" rx="2" ry="2" />
<text x="288.37" y="255.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 (270 samples, 0.65%)</title><rect x="174.3" y="405" width="7.7" height="15.0" fill="rgb(241,61,3)" rx="2" ry="2" />
<text x="177.29" y="415.5" ></text>
</g>
<g >
<title>core::ptr::real_drop_in_place::hecc58545c2033bf4 (26 samples, 0.06%)</title><rect x="242.8" y="453" width="0.8" height="15.0" fill="rgb(218,96,25)" rx="2" ry="2" />
<text x="245.84" y="463.5" ></text>
</g>
<g >
<title>__memcpy_avx_unaligned (9 samples, 0.02%)</title><rect x="74.8" y="245" width="0.3" height="15.0" fill="rgb(215,207,12)" rx="2" ry="2" />
<text x="77.85" y="255.5" ></text>
</g>
<g >
<title>core::ptr::real_drop_in_place::hb4af2f77e0210fc8 (17 samples, 0.04%)</title><rect x="180.1" y="341" width="0.5" height="15.0" fill="rgb(211,49,17)" rx="2" ry="2" />
<text x="183.11" y="351.5" ></text>
</g>
<g >
<title>_$LT$cranelift_codegen..isa..x86..abi..Args$u20$as$u20$cranelift_codegen..abi..ArgAssigner$GT$::assign::h1ef61b42453724d8 (8 samples, 0.02%)</title><rect x="79.6" y="213" width="0.2" height="15.0" fill="rgb(236,71,13)" rx="2" ry="2" />
<text x="82.56" y="223.5" ></text>
</g>
<g >
<title>__GI___libc_malloc (7 samples, 0.02%)</title><rect x="25.4" y="325" width="0.2" height="15.0" fill="rgb(232,133,30)" rx="2" ry="2" />
<text x="28.38" y="335.5" ></text>
</g>
<g >
<title>std::time::Instant::now::h33d2ba6042def2d2 (7 samples, 0.02%)</title><rect x="312.7" y="325" width="0.2" height="15.0" fill="rgb(213,110,32)" rx="2" ry="2" />
<text x="315.66" y="335.5" ></text>
</g>
<g >
<title>alloc::raw_vec::RawVec$LT$T$C$A$GT$::reserve::hc8a0fc8526f8c69b (7 samples, 0.02%)</title><rect x="1177.6" y="325" width="0.2" height="15.0" fill="rgb(243,4,4)" rx="2" ry="2" />
<text x="1180.58" y="335.5" ></text>
</g>
<g >
<title>__dec_node_state (4 samples, 0.01%)</title><rect x="235.6" y="197" width="0.1" height="15.0" fill="rgb(205,227,16)" rx="2" ry="2" />
<text x="238.57" y="207.5" ></text>
</g>
<g >
<title>remove_vma (6 samples, 0.01%)</title><rect x="237.4" y="309" width="0.1" height="15.0" fill="rgb(217,105,31)" rx="2" ry="2" />
<text x="240.36" y="319.5" ></text>
</g>
<g >
<title>_$LT$rocinante..exec..wasmer..Wasmer$u20$as$u20$rocinante..exec..Interpreter$GT$::eval_test_cases::hf136840e36843cad (6 samples, 0.01%)</title><rect x="1167.2" y="357" width="0.1" height="15.0" fill="rgb(220,113,10)" rx="2" ry="2" />
<text x="1170.17" y="367.5" ></text>
</g>
<g >
<title>_$LT$wasmer_clif_backend..signal..Caller$u20$as$u20$wasmer_runtime_core..backend..RunnableModule$GT$::get_trampoline::invoke::hf0f11602db5710f7 (9 samples, 0.02%)</title><rect x="198.5" y="229" width="0.3" height="15.0" fill="rgb(213,216,6)" rx="2" ry="2" />
<text x="201.55" y="239.5" ></text>
</g>
<g >
<title>alloc::raw_vec::RawVec$LT$T$C$A$GT$::reserve::hc8a0fc8526f8c69b (4 samples, 0.01%)</title><rect x="139.5" y="213" width="0.1" height="15.0" fill="rgb(250,142,9)" rx="2" ry="2" />
<text x="142.52" y="223.5" ></text>
</g>
<g >
<title>std::sys::unix::thread::Thread::new::thread_start::h61c012ef60f933c0 (47 samples, 0.11%)</title><rect x="183.3" y="469" width="1.3" height="15.0" fill="rgb(216,189,46)" rx="2" ry="2" />
<text x="186.28" y="479.5" ></text>
</g>
<g >
<title>cranelift_codegen::ir::dfg::DataFlowGraph::ctrl_typevar::h001f83f02149e995 (10 samples, 0.02%)</title><rect x="103.5" y="261" width="0.3" height="15.0" fill="rgb(244,144,38)" rx="2" ry="2" />
<text x="106.50" y="271.5" ></text>
</g>
<g >
<title>cranelift_codegen::redundant_reload_remover::RedundantReloadRemover::processing_stack_maybe_push::h68b38d091c29c7ca (61 samples, 0.15%)</title><rect x="74.3" y="277" width="1.8" height="15.0" fill="rgb(252,59,37)" rx="2" ry="2" />
<text x="77.33" y="287.5" ></text>
</g>
<g >
<title>_int_malloc (4 samples, 0.01%)</title><rect x="147.8" y="197" width="0.1" height="15.0" fill="rgb(229,21,15)" rx="2" ry="2" />
<text x="150.77" y="207.5" ></text>
</g>
<g >
<title>__GI___libc_malloc (4 samples, 0.01%)</title><rect x="1170.5" y="293" width="0.1" height="15.0" fill="rgb(224,4,18)" rx="2" ry="2" />
<text x="1173.53" y="303.5" ></text>
</g>
<g >
<title>wasmer_runtime::compile_with_config::h3146f6a9cd30dfc8 (1,558 samples, 3.77%)</title><rect x="13.6" y="485" width="44.4" height="15.0" fill="rgb(208,58,13)" rx="2" ry="2" />
<text x="16.57" y="495.5" >wasm..</text>
</g>
<g >
<title>std::time::Instant::elapsed::h8e307314b2acf9be (4 samples, 0.01%)</title><rect x="48.1" y="325" width="0.1" height="15.0" fill="rgb(233,93,16)" rx="2" ry="2" />
<text x="51.07" y="335.5" ></text>
</g>
<g >
<title>cranelift_codegen::ir::dfg::DataFlowGraph::make_ebb::hb6736aafedf924cd (21 samples, 0.05%)</title><rect x="803.9" y="357" width="0.6" height="15.0" fill="rgb(218,52,22)" rx="2" ry="2" />
<text x="806.89" y="367.5" ></text>
</g>
<g >
<title>__rdl_alloc (14 samples, 0.03%)</title><rect x="671.5" y="341" width="0.4" height="15.0" fill="rgb(238,73,38)" rx="2" ry="2" />
<text x="674.54" y="351.5" ></text>
</g>
<g >
<title>_int_free (244 samples, 0.59%)</title><rect x="1121.8" y="421" width="6.9" height="15.0" fill="rgb(249,221,42)" rx="2" ry="2" />
<text x="1124.76" y="431.5" ></text>
</g>
<g >
<title>cranelift_codegen::isa::x86::enc_tables::size_plus_maybe_sib_or_offset_for_in_reg_1::h655f2e9c6d128efc (8 samples, 0.02%)</title><rect x="26.0" y="341" width="0.3" height="15.0" fill="rgb(226,220,44)" rx="2" ry="2" />
<text x="29.04" y="351.5" ></text>
</g>
<g >
<title>std::time::Instant::now::h33d2ba6042def2d2 (7 samples, 0.02%)</title><rect x="36.2" y="341" width="0.2" height="15.0" fill="rgb(211,177,35)" rx="2" ry="2" />
<text x="39.17" y="351.5" ></text>
</g>
<g >
<title>do_mprotect_pkey (228 samples, 0.55%)</title><rect x="263.2" y="293" width="6.5" height="15.0" fill="rgb(218,205,48)" rx="2" ry="2" />
<text x="266.16" y="303.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (9 samples, 0.02%)</title><rect x="1180.2" y="501" width="0.3" height="15.0" fill="rgb(217,17,46)" rx="2" ry="2" />
<text x="1183.24" y="511.5" ></text>
</g>
<g >
<title>cranelift_codegen::isa::x86::abi::callee_saved_gprs_used::h307ec5944daa4165 (12 samples, 0.03%)</title><rect x="1156.3" y="309" width="0.4" height="15.0" fill="rgb(215,41,34)" rx="2" ry="2" />
<text x="1159.32" y="319.5" ></text>
</g>
<g >
<title>sys_munmap (288 samples, 0.70%)</title><rect x="227.8" y="325" width="8.3" height="15.0" fill="rgb(220,22,45)" rx="2" ry="2" />
<text x="230.83" y="335.5" ></text>
</g>
<g >
<title>alloc::vec::Vec$LT$T$GT$::retain::h44e70c6a80d771f1 (4 samples, 0.01%)</title><rect x="56.3" y="341" width="0.1" height="15.0" fill="rgb(221,134,36)" rx="2" ry="2" />
<text x="59.29" y="351.5" ></text>
</g>
<g >
<title>rocinante::stoke::Superoptimizer::synthesize::h4ba34d72c5765be9 (643 samples, 1.56%)</title><rect x="1148.8" y="501" width="18.3" height="15.0" fill="rgb(234,23,21)" rx="2" ry="2" />
<text x="1151.79" y="511.5" ></text>
</g>
<g >
<title>exit_to_usermode_loop (5 samples, 0.01%)</title><rect x="1180.8" y="485" width="0.2" height="15.0" fill="rgb(206,22,11)" rx="2" ry="2" />
<text x="1183.81" y="495.5" ></text>
</g>
<g >
<title>do_munmap (269 samples, 0.65%)</title><rect x="228.1" y="293" width="7.7" height="15.0" fill="rgb(241,124,45)" rx="2" ry="2" />
<text x="231.14" y="303.5" ></text>
</g>
<g >
<title>_$LT$alloc..vec..Vec$LT$T$GT$$u20$as$u20$alloc..vec..SpecExtend$LT$T$C$I$GT$$GT$::from_iter::h08b8b6ec5bae7de5 (42 samples, 0.10%)</title><rect x="874.6" y="405" width="1.2" height="15.0" fill="rgb(227,158,52)" rx="2" ry="2" />
<text x="877.59" y="415.5" ></text>
</g>
<g >
<title>vma_merge (34 samples, 0.08%)</title><rect x="342.4" y="261" width="1.0" height="15.0" fill="rgb(249,84,32)" rx="2" ry="2" />
<text x="345.43" y="271.5" ></text>
</g>
<g >
<title>std::sys::unix::time::inner::now::ha10452f37b2930c5 (5 samples, 0.01%)</title><rect x="64.5" y="245" width="0.2" height="15.0" fill="rgb(232,121,32)" rx="2" ry="2" />
<text x="67.54" y="255.5" ></text>
</g>
<g >
<title>_$LT$parity_wasm..elements..ops..Instruction$u20$as$u20$core..cmp..PartialEq$GT$::ne::he4ad3ed04bed2102 (21 samples, 0.05%)</title><rect x="1106.9" y="453" width="0.6" height="15.0" fill="rgb(226,61,14)" rx="2" ry="2" />
<text x="1109.92" y="463.5" ></text>
</g>
<g >
<title>c2_chacha::guts::refill_wide::impl_avx2::hcbb75f7591de3cb9 (44 samples, 0.11%)</title><rect x="1141.3" y="421" width="1.2" height="15.0" fill="rgb(249,63,48)" rx="2" ry="2" />
<text x="1144.28" y="431.5" ></text>
</g>
<g >
<title>__rust_dealloc (4 samples, 0.01%)</title><rect x="1141.2" y="437" width="0.1" height="15.0" fill="rgb(247,118,23)" rx="2" ry="2" />
<text x="1144.17" y="447.5" ></text>
</g>
<g >
<title>_int_free (6 samples, 0.01%)</title><rect x="1178.3" y="293" width="0.1" height="15.0" fill="rgb(224,89,41)" rx="2" ry="2" />
<text x="1181.27" y="303.5" ></text>
</g>
<g >
<title>_int_malloc (135 samples, 0.33%)</title><rect x="614.1" y="341" width="3.9" height="15.0" fill="rgb(218,205,44)" rx="2" ry="2" />
<text x="617.14" y="351.5" ></text>
</g>
<g >
<title>__vdso_clock_gettime (6 samples, 0.01%)</title><rect x="77.2" y="165" width="0.2" height="15.0" fill="rgb(225,2,41)" rx="2" ry="2" />
<text x="80.24" y="175.5" ></text>
</g>
<g >
<title>wasmer_clif_backend::signal::unix::do_unwind::h30a2256d0dd1db30 (26 samples, 0.06%)</title><rect x="11.0" y="469" width="0.7" height="15.0" fill="rgb(210,169,9)" rx="2" ry="2" />
<text x="14.00" y="479.5" ></text>
</g>
<g >
<title>_int_free (4 samples, 0.01%)</title><rect x="1164.6" y="325" width="0.1" height="15.0" fill="rgb(235,79,27)" rx="2" ry="2" />
<text x="1167.60" y="335.5" ></text>
</g>
<g >
<title>cranelift_codegen::legalizer::boundary::legalize_signatures::h52a202846af65f87 (9 samples, 0.02%)</title><rect x="1176.1" y="373" width="0.3" height="15.0" fill="rgb(205,62,29)" rx="2" ry="2" />
<text x="1179.13" y="383.5" ></text>
</g>
<g >
<title>page_remove_rmap (7 samples, 0.02%)</title><rect x="235.5" y="213" width="0.2" height="15.0" fill="rgb(222,133,19)" rx="2" ry="2" />
<text x="238.48" y="223.5" ></text>
</g>
<g >
<title>alloc::raw_vec::RawVec$LT$T$C$A$GT$::reserve::h500ef385b8747b29 (4 samples, 0.01%)</title><rect x="323.2" y="357" width="0.1" height="15.0" fill="rgb(240,225,5)" rx="2" ry="2" />
<text x="326.16" y="367.5" ></text>
</g>
<g >
<title>std::sys::unix::time::inner::Instant::now::h23f1bea5949f1bbd (17 samples, 0.04%)</title><rect x="111.6" y="261" width="0.4" height="15.0" fill="rgb(251,16,49)" rx="2" ry="2" />
<text x="114.55" y="271.5" ></text>
</g>
<g >
<title>__memcmp_sse4_1 (4 samples, 0.01%)</title><rect x="350.3" y="357" width="0.1" height="15.0" fill="rgb(249,200,44)" rx="2" ry="2" />
<text x="353.27" y="367.5" ></text>
</g>
<g >
<title>wasmparser::binary_reader::BinaryReader::read_var_u32::h9f3e844d80d20a5e (6 samples, 0.01%)</title><rect x="189.9" y="197" width="0.2" height="15.0" fill="rgb(242,89,14)" rx="2" ry="2" />
<text x="192.93" y="207.5" ></text>
</g>
<g >
<title>__vma_adjust (15 samples, 0.04%)</title><rect x="228.4" y="261" width="0.4" height="15.0" fill="rgb(217,180,4)" rx="2" ry="2" />
<text x="231.37" y="271.5" ></text>
</g>
<g >
<title>cranelift_codegen::ir::layout::Layout::insert_inst::h352d76f498d27496 (4 samples, 0.01%)</title><rect x="91.4" y="213" width="0.1" height="15.0" fill="rgb(225,110,0)" rx="2" ry="2" />
<text x="94.37" y="223.5" ></text>
</g>
<g >
<title>__GI___clock_gettime (5 samples, 0.01%)</title><rect x="1154.1" y="245" width="0.1" height="15.0" fill="rgb(246,137,48)" rx="2" ry="2" />
<text x="1157.07" y="255.5" ></text>
</g>
<g >
<title>_$LT$cranelift_codegen..timing..details..TimingToken$u20$as$u20$core..ops..drop..Drop$GT$::drop::h1b19c2a93ee0a091 (8 samples, 0.02%)</title><rect x="24.3" y="341" width="0.2" height="15.0" fill="rgb(233,157,15)" rx="2" ry="2" />
<text x="27.27" y="351.5" ></text>
</g>
<g >
<title>__GI___libc_malloc (4 samples, 0.01%)</title><rect x="876.4" y="389" width="0.1" height="15.0" fill="rgb(251,152,29)" rx="2" ry="2" />
<text x="879.41" y="399.5" ></text>
</g>
<g >
<title>perf_iterate_sb (112 samples, 0.27%)</title><rect x="293.0" y="213" width="3.2" height="15.0" fill="rgb(241,58,27)" rx="2" ry="2" />
<text x="295.99" y="223.5" ></text>
</g>
<g >
<title>exit_to_usermode_loop (28 samples, 0.07%)</title><rect x="12.8" y="469" width="0.8" height="15.0" fill="rgb(248,141,21)" rx="2" ry="2" />
<text x="15.77" y="479.5" ></text>
</g>
<g >
<title>cranelift_codegen::topo_order::TopoOrder::next::h3ea49efe09e3a2f0 (13 samples, 0.03%)</title><rect x="38.3" y="341" width="0.4" height="15.0" fill="rgb(219,48,50)" rx="2" ry="2" />
<text x="41.31" y="351.5" ></text>
</g>
<g >
<title>_int_malloc (7 samples, 0.02%)</title><rect x="1110.8" y="405" width="0.2" height="15.0" fill="rgb(228,201,54)" rx="2" ry="2" />
<text x="1113.80" y="415.5" ></text>
</g>
<g >
<title>_int_malloc (8 samples, 0.02%)</title><rect x="299.8" y="341" width="0.2" height="15.0" fill="rgb(214,144,28)" rx="2" ry="2" />
<text x="302.78" y="351.5" ></text>
</g>
<g >
<title>wasmer_runtime_core::sys::unix::memory::Memory::with_size::h99a15e322ed7dfca (8 samples, 0.02%)</title><rect x="187.0" y="213" width="0.2" height="15.0" fill="rgb(209,40,37)" rx="2" ry="2" />
<text x="189.96" y="223.5" ></text>
</g>
<g >
<title>wasmparser::parser::Parser::read_next_section::h4d9786321eb758cf (33 samples, 0.08%)</title><rect x="190.8" y="197" width="1.0" height="15.0" fill="rgb(210,53,54)" rx="2" ry="2" />
<text x="193.84" y="207.5" ></text>
</g>
<g >
<title>do_mmap (201 samples, 0.49%)</title><rect x="291.0" y="261" width="5.7" height="15.0" fill="rgb(251,75,32)" rx="2" ry="2" />
<text x="293.99" 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::h7064f9e18988cbdb (9 samples, 0.02%)</title><rect x="18.2" y="293" width="0.3" height="15.0" fill="rgb(249,190,41)" rx="2" ry="2" />
<text x="21.25" y="303.5" ></text>
</g>
<g >
<title>__GI___libc_realloc (10 samples, 0.02%)</title><rect x="18.9" y="309" width="0.3" height="15.0" fill="rgb(240,156,27)" rx="2" ry="2" />
<text x="21.91" y="319.5" ></text>
</g>
<g >
<title>core::str::run_utf8_validation::hcab5686003e72b95 (68 samples, 0.16%)</title><rect x="519.1" y="293" width="1.9" height="15.0" fill="rgb(205,177,9)" rx="2" ry="2" />
<text x="522.10" y="303.5" ></text>
</g>
<g >
<title>__GI___libc_free (255 samples, 0.62%)</title><rect x="218.0" y="453" width="7.3" height="15.0" fill="rgb(212,197,51)" rx="2" ry="2" />
<text x="221.01" y="463.5" ></text>
</g>
<g >
<title>_$LT$cranelift_codegen..isa..x86..Isa$u20$as$u20$cranelift_codegen..isa..TargetIsa$GT$::prologue_epilogue::ha0b7830888e212f4 (88 samples, 0.21%)</title><rect x="1155.2" y="341" width="2.5" height="15.0" fill="rgb(222,162,28)" rx="2" ry="2" />
<text x="1158.21" y="351.5" ></text>
</g>
<g >
<title>std::sys::unix::time::inner::now::ha10452f37b2930c5 (12 samples, 0.03%)</title><rect x="57.5" y="325" width="0.4" height="15.0" fill="rgb(227,148,5)" rx="2" ry="2" />
<text x="60.52" y="335.5" ></text>
</g>
<g >
<title>cranelift_codegen::simple_preopt::do_preopt::hc14889b432418503 (69 samples, 0.17%)</title><rect x="168.9" y="293" width="2.0" height="15.0" fill="rgb(230,2,51)" rx="2" ry="2" />
<text x="171.95" y="303.5" ></text>
</g>
<g >
<title>std::time::Instant::duration_since::hf7e05f120fc0288f (4 samples, 0.01%)</title><rect x="87.6" y="213" width="0.1" height="15.0" fill="rgb(221,111,24)" rx="2" ry="2" />
<text x="90.58" y="223.5" ></text>
</g>
<g >
<title>cranelift_codegen::context::Context::prologue_epilogue::he7fad23bcfb5a3af (144 samples, 0.35%)</title><rect x="18.7" y="373" width="4.1" height="15.0" fill="rgb(214,178,37)" rx="2" ry="2" />
<text x="21.73" y="383.5" ></text>
</g>
<g >
<title>cranelift_codegen::binemit::emit_function::hcd450d74712a091f (19 samples, 0.05%)</title><rect x="1148.8" y="373" width="0.5" height="15.0" fill="rgb(220,104,20)" rx="2" ry="2" />
<text x="1151.79" y="383.5" ></text>
</g>
<g >
<title>_int_malloc (5 samples, 0.01%)</title><rect x="807.1" y="309" width="0.2" height="15.0" fill="rgb(251,212,2)" rx="2" ry="2" />
<text x="810.14" y="319.5" ></text>
</g>
<g >
<title>do_syscall_64 (247 samples, 0.60%)</title><rect x="290.1" y="325" width="7.1" height="15.0" fill="rgb(222,43,3)" rx="2" ry="2" />
<text x="293.14" y="335.5" ></text>
</g>
<g >
<title>alloc_perturb (8 samples, 0.02%)</title><rect x="691.3" y="309" width="0.2" height="15.0" fill="rgb(220,190,33)" rx="2" ry="2" />
<text x="694.26" y="319.5" ></text>
</g>
<g >
<title>_int_malloc (12 samples, 0.03%)</title><rect x="75.7" y="229" width="0.3" height="15.0" fill="rgb(221,215,52)" rx="2" ry="2" />
<text x="78.70" y="239.5" ></text>
</g>
<g >
<title>__rdl_alloc (9 samples, 0.02%)</title><rect x="1078.6" y="421" width="0.3" height="15.0" fill="rgb(251,114,45)" rx="2" ry="2" />
<text x="1081.60" y="431.5" ></text>
</g>
<g >
<title>wasmer_runtime_core::sys::unix::memory::Memory::protect::hc4dfd0a2abe36912 (257 samples, 0.62%)</title><rect x="262.4" y="373" width="7.3" height="15.0" fill="rgb(224,25,6)" rx="2" ry="2" />
<text x="265.37" y="383.5" ></text>
</g>
<g >
<title>cranelift_codegen::dominator_tree::DominatorTree::compute::hb8295076ad170b26 (5 samples, 0.01%)</title><rect x="97.6" y="261" width="0.2" height="15.0" fill="rgb(221,157,37)" rx="2" ry="2" />
<text x="100.62" y="271.5" ></text>
</g>
<g >
<title>__libc_calloc (6 samples, 0.01%)</title><rect x="1158.5" y="341" width="0.1" height="15.0" fill="rgb(218,161,9)" rx="2" ry="2" />
<text x="1161.46" y="351.5" ></text>
</g>
<g >
<title>std::sys::unix::time::inner::Instant::now::h23f1bea5949f1bbd (6 samples, 0.01%)</title><rect x="57.4" y="325" width="0.1" height="15.0" fill="rgb(244,48,23)" rx="2" ry="2" />
<text x="60.35" y="335.5" ></text>
</g>
<g >
<title>__sigjmp_save (316 samples, 0.76%)</title><rect x="1181.0" y="501" width="9.0" height="15.0" fill="rgb(223,117,23)" rx="2" ry="2" />
<text x="1183.98" y="511.5" ></text>
</g>
<g >
<title>_int_malloc (5 samples, 0.01%)</title><rect x="193.7" y="149" width="0.1" height="15.0" fill="rgb(222,181,0)" rx="2" ry="2" />
<text x="196.69" y="159.5" ></text>
</g>
<g >
<title>__GI___mprotect (7 samples, 0.02%)</title><rect x="186.4" y="197" width="0.2" height="15.0" fill="rgb(254,80,24)" rx="2" ry="2" />
<text x="189.44" y="207.5" ></text>
</g>
<g >
<title>std::sys::unix::alloc::_$LT$impl$u20$core..alloc..GlobalAlloc$u20$for$u20$std..alloc..System$GT$::dealloc::h000dc0e1d3b4be28 (9 samples, 0.02%)</title><rect x="772.9" y="357" width="0.2" height="15.0" fill="rgb(220,3,51)" rx="2" ry="2" />
<text x="775.89" y="367.5" ></text>
</g>
<g >
<title>_int_malloc (117 samples, 0.28%)</title><rect x="258.0" y="341" width="3.3" height="15.0" fill="rgb(214,59,12)" rx="2" ry="2" />
<text x="261.00" y="351.5" ></text>
</g>
<g >
<title>__GI___libc_malloc (8 samples, 0.02%)</title><rect x="808.2" y="341" width="0.2" height="15.0" fill="rgb(212,63,36)" rx="2" ry="2" />
<text x="811.17" y="351.5" ></text>
</g>
<g >
<title>_int_malloc (4 samples, 0.01%)</title><rect x="129.0" y="213" width="0.2" height="15.0" fill="rgb(243,204,28)" rx="2" ry="2" />
<text x="132.05" y="223.5" ></text>
</g>
<g >
<title>cranelift_codegen::context::Context::compile::h9fe1ff28e88fe30f (3,608 samples, 8.73%)</title><rect x="68.9" y="309" width="103.0" height="15.0" fill="rgb(231,122,22)" rx="2" ry="2" />
<text x="71.94" y="319.5" >cranelift_co..</text>
</g>
<g >
<title>cranelift_codegen::context::Context::compile::h9fe1ff28e88fe30f (137 samples, 0.33%)</title><rect x="1176.1" y="421" width="3.9" height="15.0" fill="rgb(226,158,45)" rx="2" ry="2" />
<text x="1179.13" y="431.5" ></text>
</g>
<g >
<title>std::panicking::try::hab539b2d1255d635 (722 samples, 1.75%)</title><rect x="184.8" y="421" width="20.7" height="15.0" fill="rgb(247,123,11)" rx="2" ry="2" />
<text x="187.85" y="431.5" ></text>
</g>
<g >
<title>__perf_event_header__init_id (7 samples, 0.02%)</title><rect x="295.2" y="165" width="0.2" height="15.0" fill="rgb(205,49,0)" rx="2" ry="2" />
<text x="298.25" y="175.5" ></text>
</g>
<g >
<title>_int_malloc (8 samples, 0.02%)</title><rect x="251.3" y="373" width="0.2" height="15.0" fill="rgb(226,35,0)" rx="2" ry="2" />
<text x="254.32" y="383.5" ></text>
</g>
<g >
<title>alloc::raw_vec::RawVec$LT$T$C$A$GT$::reserve::hae39d8e15426d2f6 (6 samples, 0.01%)</title><rect x="1154.2" y="325" width="0.2" height="15.0" fill="rgb(226,41,53)" rx="2" ry="2" />
<text x="1157.21" y="335.5" ></text>
</g>
<g >
<title>clear_page_erms (5 samples, 0.01%)</title><rect x="277.3" y="245" width="0.1" height="15.0" fill="rgb(250,177,18)" rx="2" ry="2" />
<text x="280.29" y="255.5" ></text>
</g>
<g >
<title>_$LT$cranelift_codegen..timing..details..TimingToken$u20$as$u20$core..ops..drop..Drop$GT$::drop::h1b19c2a93ee0a091 (10 samples, 0.02%)</title><rect x="312.6" y="357" width="0.3" height="15.0" fill="rgb(229,89,47)" rx="2" ry="2" />
<text x="315.57" y="367.5" ></text>
</g>
<g >
<title>__vdso_clock_gettime (4 samples, 0.01%)</title><rect x="98.3" y="197" width="0.1" height="15.0" fill="rgb(246,114,10)" rx="2" ry="2" />
<text x="101.31" y="207.5" ></text>
</g>
<g >
<title>vm_munmap (6 samples, 0.01%)</title><rect x="185.4" y="149" width="0.2" height="15.0" fill="rgb(241,56,20)" rx="2" ry="2" />
<text x="188.39" y="159.5" ></text>
</g>
<g >
<title>wasmer_runtime_core::instance::DynFunc::call::hd3653a4c23d70200 (12 samples, 0.03%)</title><rect x="198.5" y="293" width="0.3" height="15.0" fill="rgb(248,217,40)" rx="2" ry="2" />
<text x="201.46" y="303.5" ></text>
</g>
<g >
<title>cranelift_codegen::isa::TargetIsa::encode::h3618ddf6ad568ce7 (8 samples, 0.02%)</title><rect x="137.8" y="229" width="0.2" height="15.0" fill="rgb(221,136,13)" rx="2" ry="2" />
<text x="140.81" y="239.5" ></text>
</g>
<g >
<title>alloc::raw_vec::RawVec$LT$T$C$A$GT$::reserve::hd6c8f26eb3c9fb4b (12 samples, 0.03%)</title><rect x="18.8" y="325" width="0.4" height="15.0" fill="rgb(229,18,42)" rx="2" ry="2" />
<text x="21.85" y="335.5" ></text>
</g>
<g >
<title>__GI___libc_malloc (9 samples, 0.02%)</title><rect x="123.5" y="245" width="0.2" height="15.0" fill="rgb(238,160,50)" rx="2" ry="2" />
<text x="126.48" y="255.5" ></text>
</g>
<g >
<title>cranelift_codegen::topo_order::TopoOrder::next::h3ea49efe09e3a2f0 (6 samples, 0.01%)</title><rect x="152.0" y="261" width="0.2" height="15.0" fill="rgb(240,53,34)" rx="2" ry="2" />
<text x="155.00" y="271.5" ></text>
</g>
<g >
<title>_int_free (15 samples, 0.04%)</title><rect x="196.4" y="197" width="0.4" height="15.0" fill="rgb(233,74,35)" rx="2" ry="2" />
<text x="199.41" y="207.5" ></text>
</g>
<g >
<title>std::sys::unix::time::inner::now::ha10452f37b2930c5 (5 samples, 0.01%)</title><rect x="1161.5" y="309" width="0.2" height="15.0" fill="rgb(236,67,5)" rx="2" ry="2" />
<text x="1164.52" y="319.5" ></text>
</g>
<g >
<title>_int_realloc (4 samples, 0.01%)</title><rect x="44.7" y="293" width="0.1" height="15.0" fill="rgb(223,144,0)" rx="2" ry="2" />
<text x="47.71" 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 (431 samples, 1.04%)</title><rect x="186.0" y="261" width="12.3" height="15.0" fill="rgb(241,0,10)" rx="2" ry="2" />
<text x="189.02" y="271.5" ></text>
</g>
<g >
<title>std::time::Instant::now::h33d2ba6042def2d2 (5 samples, 0.01%)</title><rect x="1164.4" y="309" width="0.2" height="15.0" fill="rgb(243,103,35)" rx="2" ry="2" />
<text x="1167.43" y="319.5" ></text>
</g>
<g >
<title>alloc::raw_vec::RawVec$LT$T$C$A$GT$::reserve::hc8a0fc8526f8c69b (5 samples, 0.01%)</title><rect x="1172.7" y="309" width="0.1" height="15.0" fill="rgb(215,209,10)" rx="2" ry="2" />
<text x="1175.70" y="319.5" ></text>
</g>
<g >
<title>cranelift_codegen::regalloc::live_value_tracker::LiveValueTracker::process_inst::hcd4ba6fb549516b2 (20 samples, 0.05%)</title><rect x="139.6" y="261" width="0.6" height="15.0" fill="rgb(220,69,34)" rx="2" ry="2" />
<text x="142.64" y="271.5" ></text>
</g>
<g >
<title>cranelift_codegen::regalloc::coloring::Context::visit_inst::h157ddbfc9a018b2b (6 samples, 0.01%)</title><rect x="1169.2" y="293" width="0.1" height="15.0" fill="rgb(245,58,52)" rx="2" ry="2" />
<text x="1172.16" y="303.5" ></text>
</g>
<g >
<title>change_protection_range (38 samples, 0.09%)</title><rect x="263.6" y="245" width="1.0" height="15.0" fill="rgb(246,38,6)" rx="2" ry="2" />
<text x="266.56" y="255.5" ></text>
</g>
<g >
<title>__GI___libc_free (5 samples, 0.01%)</title><rect x="106.8" y="277" width="0.1" height="15.0" fill="rgb(250,217,17)" rx="2" ry="2" />
<text x="109.76" y="287.5" ></text>
</g>
<g >
<title>rocinante::stoke::CandidateFunc::to_func_body::h165b92686588e7a9 (30 samples, 0.07%)</title><rect x="203.5" y="293" width="0.8" height="15.0" fill="rgb(253,7,8)" rx="2" ry="2" />
<text x="206.46" y="303.5" ></text>
</g>
<g >
<title>_$LT$cranelift_codegen..timing..details..TimingToken$u20$as$u20$core..ops..drop..Drop$GT$::drop::h1b19c2a93ee0a091 (9 samples, 0.02%)</title><rect x="117.7" y="277" width="0.2" height="15.0" fill="rgb(254,131,2)" rx="2" ry="2" />
<text x="120.66" y="287.5" ></text>
</g>
<g >
<title>alloc::raw_vec::RawVec$LT$T$C$A$GT$::reserve::h500ef385b8747b29 (13 samples, 0.03%)</title><rect x="1173.4" y="325" width="0.4" height="15.0" fill="rgb(232,224,27)" rx="2" ry="2" />
<text x="1176.42" y="335.5" ></text>
</g>
<g >
<title>cranelift_codegen::ir::builder::InstBuilder::copy::h9316b7c9ced6bd9c (17 samples, 0.04%)</title><rect x="156.5" y="261" width="0.5" height="15.0" fill="rgb(206,213,54)" rx="2" ry="2" />
<text x="159.48" y="271.5" ></text>
</g>
<g >
<title>_int_realloc (6 samples, 0.01%)</title><rect x="1168.9" y="229" width="0.2" height="15.0" fill="rgb(245,6,19)" rx="2" ry="2" />
<text x="1171.91" y="239.5" ></text>
</g>
<g >
<title>alloc::raw_vec::RawVec$LT$T$C$A$GT$::reserve::h500ef385b8747b29 (20 samples, 0.05%)</title><rect x="123.5" y="261" width="0.6" height="15.0" fill="rgb(240,164,33)" rx="2" ry="2" />
<text x="126.48" y="271.5" ></text>
</g>
<g >
<title>__GI___libc_malloc (9 samples, 0.02%)</title><rect x="805.8" y="325" width="0.3" height="15.0" fill="rgb(247,192,16)" rx="2" ry="2" />
<text x="808.83" y="335.5" ></text>
</g>
<g >
<title>std::time::Instant::elapsed::h8e307314b2acf9be (7 samples, 0.02%)</title><rect x="112.4" y="261" width="0.2" height="15.0" fill="rgb(213,11,11)" rx="2" ry="2" />
<text x="115.38" 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 (6 samples, 0.01%)</title><rect x="1167.2" y="277" width="0.1" height="15.0" fill="rgb(210,117,47)" rx="2" ry="2" />
<text x="1170.17" y="287.5" ></text>
</g>
<g >
<title>_int_free (4 samples, 0.01%)</title><rect x="327.2" y="293" width="0.2" height="15.0" fill="rgb(209,207,44)" rx="2" ry="2" />
<text x="330.24" y="303.5" ></text>
</g>
<g >
<title>split_vma (56 samples, 0.14%)</title><rect x="340.7" y="261" width="1.6" height="15.0" fill="rgb(228,163,41)" rx="2" ry="2" />
<text x="343.71" y="271.5" ></text>
</g>
<g >
<title>cranelift_codegen::ir::layout::Layout::insert_inst::h352d76f498d27496 (4 samples, 0.01%)</title><rect x="85.7" y="181" width="0.1" height="15.0" fill="rgb(239,159,16)" rx="2" ry="2" />
<text x="88.66" y="191.5" ></text>
</g>
<g >
<title>__GI___clock_gettime (4 samples, 0.01%)</title><rect x="1158.2" y="261" width="0.1" height="15.0" fill="rgb(253,59,16)" rx="2" ry="2" />
<text x="1161.23" y="271.5" ></text>
</g>
<g >
<title>_int_malloc (42 samples, 0.10%)</title><rect x="799.0" y="341" width="1.2" height="15.0" fill="rgb(230,202,4)" rx="2" ry="2" />
<text x="802.04" y="351.5" ></text>
</g>
<g >
<title>std::sys::unix::time::inner::Instant::now::h23f1bea5949f1bbd (8 samples, 0.02%)</title><rect x="1160.3" y="325" width="0.2" height="15.0" fill="rgb(216,68,28)" rx="2" ry="2" />
<text x="1163.32" y="335.5" ></text>
</g>
<g >
<title>__mmap (198 samples, 0.48%)</title><rect x="344.1" y="357" width="5.7" height="15.0" fill="rgb(241,174,8)" rx="2" ry="2" />
<text x="347.11" y="367.5" ></text>
</g>
<g >
<title>__GI___libc_malloc (8 samples, 0.02%)</title><rect x="62.1" y="293" width="0.3" height="15.0" fill="rgb(225,180,42)" rx="2" ry="2" />
<text x="65.15" y="303.5" ></text>
</g>
<g >
<title>__GI___libc_free (15 samples, 0.04%)</title><rect x="179.4" y="325" width="0.4" height="15.0" fill="rgb(237,33,41)" rx="2" ry="2" />
<text x="182.37" y="335.5" ></text>
</g>
<g >
<title>alloc::vec::Vec$LT$T$GT$::resize::h4f8d39030b6aaee7 (12 samples, 0.03%)</title><rect x="808.1" y="357" width="0.3" height="15.0" fill="rgb(249,54,49)" rx="2" ry="2" />
<text x="811.08" y="367.5" ></text>
</g>
<g >
<title>cranelift_codegen::isa::x86::enc_tables::size_plus_maybe_sib_for_in_reg_1::hf4d83c62d16b3d32 (9 samples, 0.02%)</title><rect x="30.9" y="325" width="0.3" height="15.0" fill="rgb(237,88,27)" rx="2" ry="2" />
<text x="33.95" y="335.5" ></text>
</g>
<g >
<title>c2_chacha::guts::refill_wide::impl_avx2::hcbb75f7591de3cb9 (57 samples, 0.14%)</title><rect x="211.4" y="437" width="1.7" height="15.0" fill="rgb(250,159,51)" rx="2" ry="2" />
<text x="214.45" y="447.5" ></text>
</g>
<g >
<title>cranelift_codegen::isa::TargetIsa::encode::h3618ddf6ad568ce7 (8 samples, 0.02%)</title><rect x="1172.0" y="325" width="0.2" height="15.0" fill="rgb(217,150,42)" rx="2" ry="2" />
<text x="1175.02" y="335.5" ></text>
</g>
<g >
<title>rocinante::stoke::CandidateFunc::to_func_body::h165b92686588e7a9 (1,562 samples, 3.78%)</title><rect x="1056.0" y="453" width="44.6" height="15.0" fill="rgb(219,55,7)" rx="2" ry="2" />
<text x="1059.00" y="463.5" >roci..</text>
</g>
<g >
<title>wasmer_clif_backend::trampoline::Trampolines::new::h8a78526849fe89b9 (45 samples, 0.11%)</title><rect x="182.0" y="469" width="1.3" height="15.0" fill="rgb(232,197,21)" rx="2" ry="2" />
<text x="184.99" y="479.5" ></text>
</g>
<g >
<title>alloc::raw_vec::RawVec$LT$T$C$A$GT$::reserve::h362292f8e76d2258 (19 samples, 0.05%)</title><rect x="1110.5" y="437" width="0.5" height="15.0" fill="rgb(212,135,15)" rx="2" ry="2" />
<text x="1113.45" y="447.5" ></text>
</g>
<g >
<title>__GI___libc_malloc (5 samples, 0.01%)</title><rect x="807.9" y="341" width="0.2" height="15.0" fill="rgb(250,124,47)" rx="2" ry="2" />
<text x="810.94" y="351.5" ></text>
</g>
<g >
<title>cranelift_bforest::path::Path$LT$F$GT$::next::h50188cd678c454ba (9 samples, 0.02%)</title><rect x="73.3" y="277" width="0.3" height="15.0" fill="rgb(238,25,3)" rx="2" ry="2" />
<text x="76.33" y="287.5" ></text>
</g>
<g >
<title>wasmer_clif_backend::trampoline::Trampolines::new::h8a78526849fe89b9 (1,558 samples, 3.77%)</title><rect x="13.6" y="421" width="44.4" height="15.0" fill="rgb(221,171,27)" rx="2" ry="2" />
<text x="16.57" y="431.5" >wasm..</text>
</g>
<g >
<title>__GI___libc_free (9 samples, 0.02%)</title><rect x="185.1" y="293" width="0.3" height="15.0" fill="rgb(218,67,20)" rx="2" ry="2" />
<text x="188.10" y="303.5" ></text>
</g>
<g >
<title>release_pages (26 samples, 0.06%)</title><rect x="238.4" y="229" width="0.8" height="15.0" fill="rgb(235,90,32)" rx="2" ry="2" />
<text x="241.42" y="239.5" ></text>
</g>
<g >
<title>wasmer_runtime_core::instance::Instance::new::h767b5a62d9ac8288 (10 samples, 0.02%)</title><rect x="198.8" y="277" width="0.3" height="15.0" fill="rgb(205,149,15)" rx="2" ry="2" />
<text x="201.80" y="287.5" ></text>
</g>
<g >
<title>__GI___clock_gettime (12 samples, 0.03%)</title><rect x="171.6" y="245" width="0.3" height="15.0" fill="rgb(251,224,13)" rx="2" ry="2" />
<text x="174.57" y="255.5" ></text>
</g>
<g >
<title>__GI___libc_realloc (6 samples, 0.01%)</title><rect x="137.2" y="213" width="0.2" height="15.0" fill="rgb(211,130,48)" rx="2" ry="2" />
<text x="140.21" y="223.5" ></text>
</g>
<g >
<title>__vma_adjust (22 samples, 0.05%)</title><rect x="340.7" y="229" width="0.7" height="15.0" fill="rgb(220,25,34)" rx="2" ry="2" />
<text x="343.74" y="239.5" ></text>
</g>
<g >
<title>do_error_trap.part.9 (36 samples, 0.09%)</title><rect x="11.7" y="453" width="1.1" height="15.0" fill="rgb(245,211,42)" rx="2" ry="2" />
<text x="14.74" y="463.5" ></text>
</g>
<g >
<title>_ZN81_$LT$std..collections..hash..map..DefaultHasher$u20$as$u20$core..hash..Hasher$GT$5write17hce30e4f96ad2e64eE.llvm.10396957835513704427 (6 samples, 0.01%)</title><rect x="869.4" y="421" width="0.2" height="15.0" fill="rgb(219,187,45)" rx="2" ry="2" />
<text x="872.45" y="431.5" ></text>
</g>
<g >
<title>_int_malloc (8 samples, 0.02%)</title><rect x="1168.5" y="213" width="0.2" height="15.0" fill="rgb(232,89,41)" rx="2" ry="2" />
<text x="1171.45" y="223.5" ></text>
</g>
<g >
<title>_$LT$$RF$mut$u20$cranelift_codegen..cursor..EncCursor$u20$as$u20$cranelift_codegen..ir..builder..InstInserterBase$GT$::insert_built_inst::hbf5c6b2278487fe8 (9 samples, 0.02%)</title><rect x="156.6" y="245" width="0.2" height="15.0" fill="rgb(216,141,10)" rx="2" ry="2" />
<text x="159.56" y="255.5" ></text>
</g>
<g >
<title>hashbrown::map::HashMap$LT$K$C$V$C$S$GT$::insert::h9f8df50b4f63ad32 (13 samples, 0.03%)</title><rect x="325.1" y="373" width="0.4" height="15.0" fill="rgb(230,110,18)" rx="2" ry="2" />
<text x="328.13" y="383.5" ></text>
</g>
<g >
<title>cranelift_codegen::isa::x86::enc_tables::x86_expand::h65f50b7ad4fea636 (123 samples, 0.30%)</title><rect x="83.3" y="245" width="3.5" height="15.0" fill="rgb(220,191,5)" rx="2" ry="2" />
<text x="86.30" y="255.5" ></text>
</g>
<g >
<title>wasmparser::binary_reader::BinaryReader::read_section_header::h81c8f9a3c6efd252 (623 samples, 1.51%)</title><rect x="549.1" y="325" width="17.8" height="15.0" fill="rgb(212,131,38)" rx="2" ry="2" />
<text x="552.12" y="335.5" ></text>
</g>
<g >
<title>cranelift_codegen::regalloc::coloring::Context::visit_inst::h157ddbfc9a018b2b (57 samples, 0.14%)</title><rect x="1171.3" y="373" width="1.7" height="15.0" fill="rgb(216,39,36)" rx="2" ry="2" />
<text x="1174.33" y="383.5" ></text>
</g>
<g >
<title>_int_realloc (13 samples, 0.03%)</title><rect x="21.5" y="277" width="0.4" height="15.0" fill="rgb(252,214,49)" rx="2" ry="2" />
<text x="24.53" y="287.5" ></text>
</g>
<g >
<title>__GI___libc_realloc (35 samples, 0.08%)</title><rect x="200.8" y="229" width="1.0" height="15.0" fill="rgb(206,107,22)" rx="2" ry="2" />
<text x="203.80" y="239.5" ></text>
</g>
<g >
<title>__GI___libc_malloc (9 samples, 0.02%)</title><rect x="109.9" y="261" width="0.3" height="15.0" fill="rgb(209,72,10)" rx="2" ry="2" />
<text x="112.90" y="271.5" ></text>
</g>
<g >
<title>alloc::borrow::Cow$LT$B$GT$::to_mut::hc816a9c98cae5186 (9 samples, 0.02%)</title><rect x="1170.2" y="325" width="0.2" height="15.0" fill="rgb(216,137,7)" rx="2" ry="2" />
<text x="1173.16" y="335.5" ></text>
</g>
<g >
<title>alloc::raw_vec::RawVec$LT$T$C$A$GT$::reserve::h90000ec143ceb992 (396 samples, 0.96%)</title><rect x="607.1" y="373" width="11.3" height="15.0" fill="rgb(235,222,20)" rx="2" ry="2" />
<text x="610.09" y="383.5" ></text>
</g>
<g >
<title>cranelift_codegen::context::Context::compile::h9fe1ff28e88fe30f (39 samples, 0.09%)</title><rect x="317.5" y="357" width="1.2" height="15.0" fill="rgb(211,77,2)" rx="2" ry="2" />
<text x="320.54" y="367.5" ></text>
</g>
<g >
<title>alloc::raw_vec::RawVec$LT$T$C$A$GT$::reserve::hde4c914cbb5df344 (10 samples, 0.02%)</title><rect x="618.4" y="373" width="0.3" height="15.0" fill="rgb(224,182,45)" rx="2" ry="2" />
<text x="621.40" y="383.5" ></text>
</g>
<g >
<title>__GI___libc_free (4 samples, 0.01%)</title><rect x="24.9" y="293" width="0.1" height="15.0" fill="rgb(206,145,0)" rx="2" ry="2" />
<text x="27.87" y="303.5" ></text>
</g>
<g >
<title>alloc::sync::Arc$LT$T$GT$::drop_slow::h7c0b96f23ce547fa (19 samples, 0.05%)</title><rect x="254.4" y="389" width="0.5" height="15.0" fill="rgb(229,31,5)" rx="2" ry="2" />
<text x="257.40" y="399.5" ></text>
</g>
<g >
<title>cranelift_entity::list::EntityList$LT$T$GT$::push::h051541d55e7ee057 (15 samples, 0.04%)</title><rect x="159.4" y="245" width="0.4" height="15.0" fill="rgb(237,76,22)" rx="2" ry="2" />
<text x="162.42" y="255.5" ></text>
</g>
<g >
<title>alloc::raw_vec::RawVec$LT$T$C$A$GT$::reserve::hd6c8f26eb3c9fb4b (4 samples, 0.01%)</title><rect x="56.8" y="325" width="0.1" height="15.0" fill="rgb(212,150,38)" rx="2" ry="2" />
<text x="59.81" y="335.5" ></text>
</g>
<g >
<title>std::rt::lang_start_internal::_$u7b$$u7b$closure$u7d$$u7d$::h6ea535ec5c50fc3e (6 samples, 0.01%)</title><rect x="184.6" y="469" width="0.2" height="15.0" fill="rgb(254,216,29)" rx="2" ry="2" />
<text x="187.62" y="479.5" ></text>
</g>
<g >
<title>std::time::Instant::elapsed::h8e307314b2acf9be (10 samples, 0.02%)</title><rect x="115.0" y="261" width="0.3" height="15.0" fill="rgb(219,90,37)" rx="2" ry="2" />
<text x="118.00" y="271.5" ></text>
</g>
<g >
<title>copy_fpstate_to_sigframe (8 samples, 0.02%)</title><rect x="13.2" y="421" width="0.2" height="15.0" fill="rgb(251,171,47)" rx="2" ry="2" />
<text x="16.17" y="431.5" ></text>
</g>
<g >
<title>_int_malloc (4 samples, 0.01%)</title><rect x="1169.9" y="213" width="0.1" height="15.0" fill="rgb(218,109,46)" rx="2" ry="2" />
<text x="1172.91" y="223.5" ></text>
</g>
<g >
<title>_ZN9hashbrown3raw17RawTable$LT$T$GT$17try_with_capacity17h973883eb89d53af0E.llvm.15158078102622578017 (18 samples, 0.04%)</title><rect x="299.7" y="373" width="0.5" height="15.0" fill="rgb(232,92,43)" rx="2" ry="2" />
<text x="302.67" y="383.5" ></text>
</g>
<g >
<title>cranelift_codegen::regalloc::diversion::RegDiversions::diversion::h0a2605efbb6eb85b (17 samples, 0.04%)</title><rect x="317.1" y="325" width="0.4" height="15.0" fill="rgb(205,4,7)" rx="2" ry="2" />
<text x="320.05" y="335.5" ></text>
</g>
<g >
<title>perf_event_mmap_output (39 samples, 0.09%)</title><rect x="295.0" y="181" width="1.1" height="15.0" fill="rgb(216,8,14)" rx="2" ry="2" />
<text x="297.99" y="191.5" ></text>
</g>
<g >
<title>cranelift_codegen::regalloc::context::Context::run::hacf4bbc8f4d0071a (191 samples, 0.46%)</title><rect x="1170.7" y="389" width="5.4" height="15.0" fill="rgb(219,168,11)" rx="2" ry="2" />
<text x="1173.68" y="399.5" ></text>
</g>
<g >
<title>_$LT$rand..distributions..uniform..UniformInt$LT$i32$GT$$u20$as$u20$rand..distributions..uniform..UniformSampler$GT$::sample_single::h414accef804fe040 (178 samples, 0.43%)</title><rect x="208.0" y="469" width="5.1" height="15.0" fill="rgb(223,35,2)" rx="2" ry="2" />
<text x="211.02" y="479.5" ></text>
</g>
<g >
<title>alloc::raw_vec::RawVec$LT$T$C$A$GT$::reserve::ha898170dd69782a8 (14 samples, 0.03%)</title><rect x="127.9" y="245" width="0.4" height="15.0" fill="rgb(215,66,50)" rx="2" ry="2" />
<text x="130.88" y="255.5" ></text>
</g>
<g >
<title>vma_compute_subtree_gap (6 samples, 0.01%)</title><rect x="296.4" y="197" width="0.1" height="15.0" fill="rgb(236,198,47)" rx="2" ry="2" />
<text x="299.36" y="207.5" ></text>
</g>
<g >
<title>std::thread::local::fast::Key$LT$T$GT$::get::h1843b0ce52f9035a (7 samples, 0.02%)</title><rect x="809.7" y="325" width="0.2" height="15.0" fill="rgb(241,228,14)" rx="2" ry="2" />
<text x="812.68" y="335.5" ></text>
</g>
<g >
<title>__GI___clock_gettime (6 samples, 0.01%)</title><rect x="115.1" y="197" width="0.2" height="15.0" fill="rgb(249,58,49)" rx="2" ry="2" />
<text x="118.12" y="207.5" ></text>
</g>
<g >
<title>std::time::Instant::now::h33d2ba6042def2d2 (5 samples, 0.01%)</title><rect x="98.3" y="261" width="0.1" height="15.0" fill="rgb(236,111,43)" rx="2" ry="2" />
<text x="101.28" y="271.5" ></text>
</g>
<g >
<title>alloc::raw_vec::RawVec$LT$T$C$A$GT$::reserve::h0c445b41f7c28667 (7 samples, 0.02%)</title><rect x="298.4" y="341" width="0.2" height="15.0" fill="rgb(229,6,32)" rx="2" ry="2" />
<text x="301.39" y="351.5" ></text>
</g>
<g >
<title>std::time::Instant::now::h33d2ba6042def2d2 (7 samples, 0.02%)</title><rect x="1166.0" y="309" width="0.2" height="15.0" fill="rgb(205,87,29)" rx="2" ry="2" />
<text x="1169.00" y="319.5" ></text>
</g>
<g >
<title>cranelift_codegen::regalloc::liveness::Liveness::compute::h5fc2c46ff15ebd51 (29 samples, 0.07%)</title><rect x="1173.0" y="373" width="0.8" height="15.0" fill="rgb(244,111,40)" rx="2" ry="2" />
<text x="1175.96" y="383.5" ></text>
</g>
<g >
<title>alloc::sync::Arc$LT$T$GT$::drop_slow::h56d8944c190ba4ca (7 samples, 0.02%)</title><rect x="185.4" y="277" width="0.2" height="15.0" fill="rgb(239,85,3)" rx="2" ry="2" />
<text x="188.36" y="287.5" ></text>
</g>
<g >
<title>_int_malloc (26 samples, 0.06%)</title><rect x="860.9" y="373" width="0.7" height="15.0" fill="rgb(225,61,37)" rx="2" ry="2" />
<text x="863.86" y="383.5" ></text>
</g>
<g >
<title>cranelift_entity::sparse::SparseMap$LT$K$C$V$GT$::insert::hd3cdf3966e0187a9 (9 samples, 0.02%)</title><rect x="53.9" y="341" width="0.3" height="15.0" fill="rgb(212,173,5)" rx="2" ry="2" />
<text x="56.90" y="351.5" ></text>
</g>
<g >
<title>cranelift_codegen::legalizer::legalize_inst::h3c0aa7980e624bbf (220 samples, 0.53%)</title><rect x="81.0" y="261" width="6.3" height="15.0" fill="rgb(251,225,38)" rx="2" ry="2" />
<text x="83.98" y="271.5" ></text>
</g>
<g >
<title>wasmparser::binary_reader::BinaryReader::read_string::hc015eb960d8c9fac (171 samples, 0.41%)</title><rect x="516.2" y="325" width="4.8" height="15.0" fill="rgb(242,19,33)" rx="2" ry="2" />
<text x="519.16" y="335.5" ></text>
</g>
<g >
<title>_ZN17cranelift_codegen8regalloc6solver6Solver13find_solution17h23fb3e5d74fee50cE.llvm.529824060399144151 (33 samples, 0.08%)</title><rect x="41.8" y="341" width="0.9" height="15.0" fill="rgb(219,81,4)" rx="2" ry="2" />
<text x="44.80" y="351.5" ></text>
</g>
<g >
<title>alloc::raw_vec::RawVec$LT$T$C$A$GT$::reserve::hc8a0fc8526f8c69b (4 samples, 0.01%)</title><rect x="850.1" y="309" width="0.1" height="15.0" fill="rgb(235,173,9)" rx="2" ry="2" />
<text x="853.10" y="319.5" ></text>
</g>
<g >
<title>__perf_event_header__init_id (4 samples, 0.01%)</title><rect x="348.6" y="165" width="0.1" height="15.0" fill="rgb(207,85,14)" rx="2" ry="2" />
<text x="351.59" y="175.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (506 samples, 1.22%)</title><rect x="329.2" y="341" width="14.5" height="15.0" fill="rgb(241,155,47)" rx="2" ry="2" />
<text x="332.24" y="351.5" ></text>
</g>
<g >
<title>__GI___libc_free (4 samples, 0.01%)</title><rect x="1158.3" y="341" width="0.2" height="15.0" fill="rgb(231,1,28)" rx="2" ry="2" />
<text x="1161.35" y="351.5" ></text>
</g>
<g >
<title>alloc::vec::Vec$LT$T$GT$::retain::h44e70c6a80d771f1 (6 samples, 0.01%)</title><rect x="156.3" y="261" width="0.2" height="15.0" fill="rgb(251,217,45)" rx="2" ry="2" />
<text x="159.30" y="271.5" ></text>
</g>
<g >
<title>_int_realloc (12 samples, 0.03%)</title><rect x="91.7" y="197" width="0.3" height="15.0" fill="rgb(216,204,32)" rx="2" ry="2" />
<text x="94.69" y="207.5" ></text>
</g>
<g >
<title>alloc_perturb (5 samples, 0.01%)</title><rect x="478.4" y="309" width="0.2" height="15.0" fill="rgb(249,112,46)" rx="2" ry="2" />
<text x="481.43" y="319.5" ></text>
</g>
<g >
<title>std::time::Instant::elapsed::h8e307314b2acf9be (7 samples, 0.02%)</title><rect x="77.2" y="245" width="0.2" height="15.0" fill="rgb(218,159,2)" rx="2" ry="2" />
<text x="80.22" y="255.5" ></text>
</g>
<g >
<title>alloc::vec::Vec$LT$T$GT$::retain::h44e70c6a80d771f1 (4 samples, 0.01%)</title><rect x="51.9" y="341" width="0.1" height="15.0" fill="rgb(253,189,15)" rx="2" ry="2" />
<text x="54.93" 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 (21 samples, 0.05%)</title><rect x="1176.8" y="357" width="0.6" height="15.0" fill="rgb(212,81,22)" rx="2" ry="2" />
<text x="1179.79" y="367.5" ></text>
</g>
<g >
<title>sys_rt_sigprocmask (55 samples, 0.13%)</title><rect x="1188.0" y="437" width="1.6" height="15.0" fill="rgb(236,98,28)" rx="2" ry="2" />
<text x="1191.00" y="447.5" ></text>
</g>
<g >
<title>alloc::raw_vec::RawVec$LT$T$C$A$GT$::reserve::hae39d8e15426d2f6 (4 samples, 0.01%)</title><rect x="1171.6" y="325" width="0.1" height="15.0" fill="rgb(215,203,33)" rx="2" ry="2" />
<text x="1174.62" y="335.5" ></text>
</g>
<g >
<title>wasmer_runtime::compile_with_config::h3146f6a9cd30dfc8 (441 samples, 1.07%)</title><rect x="185.8" y="293" width="12.6" height="15.0" fill="rgb(224,45,10)" rx="2" ry="2" />
<text x="188.85" y="303.5" ></text>
</g>
<g >
<title>cranelift_codegen::context::Context::compile_and_emit::h5499205207e7951f (1,552 samples, 3.75%)</title><rect x="13.6" y="405" width="44.3" height="15.0" fill="rgb(249,87,26)" rx="2" ry="2" />
<text x="16.57" y="415.5" >cran..</text>
</g>
<g >
<title>_$LT$cranelift_codegen..timing..details..TimingToken$u20$as$u20$core..ops..drop..Drop$GT$::drop::h1b19c2a93ee0a091 (13 samples, 0.03%)</title><rect x="1159.3" y="341" width="0.4" height="15.0" fill="rgb(224,215,41)" rx="2" ry="2" />
<text x="1162.32" y="351.5" ></text>
</g>
<g >
<title>alloc::borrow::Cow$LT$B$GT$::to_mut::hc816a9c98cae5186 (28 samples, 0.07%)</title><rect x="78.6" y="229" width="0.8" height="15.0" fill="rgb(254,174,34)" rx="2" ry="2" />
<text x="81.61" y="239.5" ></text>
</g>
<g >
<title>wasmparser::parser::Parser::read_export_entry::hf5e381312c2f0c73 (9 samples, 0.02%)</title><rect x="190.6" y="197" width="0.2" height="15.0" fill="rgb(238,132,14)" rx="2" ry="2" />
<text x="193.55" y="207.5" ></text>
</g>
<g >
<title>__GI___libc_free (13 samples, 0.03%)</title><rect x="241.8" y="405" width="0.4" height="15.0" fill="rgb(217,121,43)" rx="2" ry="2" />
<text x="244.84" y="415.5" ></text>
</g>
<g >
<title>wasmparser::binary_reader::BinaryReader::read_section_header::h81c8f9a3c6efd252 (13 samples, 0.03%)</title><rect x="191.4" y="165" width="0.4" height="15.0" fill="rgb(244,100,7)" rx="2" ry="2" />
<text x="194.41" y="175.5" ></text>
</g>
<g >
<title>_ZN3std10sys_common9backtrace28__rust_begin_short_backtrace17ha8f073e9b0fe5d28E.llvm.8055091970093994922 (47 samples, 0.11%)</title><rect x="183.3" y="357" width="1.3" height="15.0" fill="rgb(241,152,17)" rx="2" ry="2" />
<text x="186.28" y="367.5" ></text>
</g>
<g >
<title>__handle_mm_fault (61 samples, 0.15%)</title><rect x="304.4" y="293" width="1.7" height="15.0" fill="rgb(232,59,46)" rx="2" ry="2" />
<text x="307.41" y="303.5" ></text>
</g>
<g >
<title>cranelift_codegen::ir::instructions::InstructionData::hash::h6390f709ac90b71c (8 samples, 0.02%)</title><rect x="168.0" y="245" width="0.2" height="15.0" fill="rgb(213,162,37)" rx="2" ry="2" />
<text x="170.98" y="255.5" ></text>
</g>
<g >
<title>std::sys::unix::time::inner::Instant::now::h23f1bea5949f1bbd (7 samples, 0.02%)</title><rect x="160.9" y="245" width="0.2" height="15.0" fill="rgb(231,36,8)" rx="2" ry="2" />
<text x="163.93" y="255.5" ></text>
</g>
<g >
<title>_int_realloc (8 samples, 0.02%)</title><rect x="1176.8" y="309" width="0.2" height="15.0" fill="rgb(218,189,33)" rx="2" ry="2" />
<text x="1179.79" y="319.5" ></text>
</g>
<g >
<title>inherit_task_group.isra.100.part.101 (7 samples, 0.02%)</title><rect x="1180.3" y="405" width="0.2" height="15.0" fill="rgb(215,226,3)" rx="2" ry="2" />
<text x="1183.30" y="415.5" ></text>
</g>
<g >
<title>std::sys::unix::time::inner::now::ha10452f37b2930c5 (6 samples, 0.01%)</title><rect x="105.7" y="229" width="0.1" height="15.0" fill="rgb(252,63,31)" rx="2" ry="2" />
<text x="108.67" y="239.5" ></text>
</g>
<g >
<title>cranelift_codegen::isa::TargetIsa::encode::h3618ddf6ad568ce7 (8 samples, 0.02%)</title><rect x="21.2" y="293" width="0.2" height="15.0" fill="rgb(239,168,19)" rx="2" ry="2" />
<text x="24.19" y="303.5" ></text>
</g>
<g >
<title>alloc::raw_vec::RawVec$LT$T$C$A$GT$::reserve::h5bb4661d248be310 (377 samples, 0.91%)</title><rect x="1008.7" y="421" width="10.7" height="15.0" fill="rgb(236,189,40)" rx="2" ry="2" />
<text x="1011.67" y="431.5" ></text>
</g>
<g >
<title>cranelift_codegen::isa::TargetIsa::encode::h3618ddf6ad568ce7 (22 samples, 0.05%)</title><rect x="17.1" y="309" width="0.6" height="15.0" fill="rgb(254,60,53)" rx="2" ry="2" />
<text x="20.11" y="319.5" ></text>
</g>
<g >
<title>[[vdso]] (4 samples, 0.01%)</title><rect x="312.7" y="245" width="0.2" height="15.0" fill="rgb(224,219,35)" rx="2" ry="2" />
<text x="315.74" y="255.5" ></text>
</g>
<g >
<title>down_write_killable (5 samples, 0.01%)</title><rect x="296.7" y="261" width="0.2" height="15.0" fill="rgb(224,188,27)" rx="2" ry="2" />
<text x="299.73" y="271.5" ></text>
</g>
<g >
<title>_int_free (176 samples, 0.43%)</title><rect x="1023.6" y="405" width="5.1" height="15.0" fill="rgb(215,132,12)" rx="2" ry="2" />
<text x="1026.63" y="415.5" ></text>
</g>
<g >
<title>handle_mm_fault (75 samples, 0.18%)</title><rect x="304.2" y="309" width="2.1" height="15.0" fill="rgb(206,181,12)" rx="2" ry="2" />
<text x="307.15" y="319.5" ></text>
</g>
<g >
<title>unmap_page_range (30 samples, 0.07%)</title><rect x="234.8" y="229" width="0.9" height="15.0" fill="rgb(247,124,51)" rx="2" ry="2" />
<text x="237.82" y="239.5" ></text>
</g>
<g >
<title>rayon_core::registry::global_registry::hc896ca4008b342a6 (8 samples, 0.02%)</title><rect x="281.2" y="293" width="0.2" height="15.0" fill="rgb(221,97,38)" rx="2" ry="2" />
<text x="284.20" y="303.5" ></text>
</g>
<g >
<title>cranelift_entity::sparse::SparseMap$LT$K$C$V$GT$::insert::h7db38de7d591c38a (29 samples, 0.07%)</title><rect x="1173.0" y="341" width="0.8" height="15.0" fill="rgb(234,94,24)" rx="2" ry="2" />
<text x="1175.96" y="351.5" ></text>
</g>
<g >
<title>sys_mprotect (6 samples, 0.01%)</title><rect x="186.8" y="149" width="0.2" height="15.0" fill="rgb(253,153,3)" rx="2" ry="2" />
<text x="189.79" y="159.5" ></text>
</g>
<g >
<title>__do_page_fault (119 samples, 0.29%)</title><rect x="302.9" y="325" width="3.4" height="15.0" fill="rgb(217,179,33)" rx="2" ry="2" />
<text x="305.92" y="335.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (247 samples, 0.60%)</title><rect x="290.1" y="341" width="7.1" height="15.0" fill="rgb(229,109,48)" rx="2" ry="2" />
<text x="293.14" y="351.5" ></text>
</g>
<g >
<title>_int_free (238 samples, 0.58%)</title><rect x="996.7" y="405" width="6.8" height="15.0" fill="rgb(217,217,48)" rx="2" ry="2" />
<text x="999.74" y="415.5" ></text>
</g>
<g >
<title>__GI___libc_malloc (5 samples, 0.01%)</title><rect x="306.7" y="357" width="0.1" height="15.0" fill="rgb(246,126,26)" rx="2" ry="2" />
<text x="309.69" y="367.5" ></text>
</g>
<g >
<title>core::fmt::write::h1f444f4312eb6c27 (5 samples, 0.01%)</title><rect x="869.0" y="341" width="0.2" height="15.0" fill="rgb(246,133,4)" rx="2" ry="2" />
<text x="872.05" y="351.5" ></text>
</g>
<g >
<title>__sigprocmask (316 samples, 0.76%)</title><rect x="1181.0" y="485" width="9.0" height="15.0" fill="rgb(216,138,39)" rx="2" ry="2" />
<text x="1183.98" y="495.5" ></text>
</g>
<g >
<title>cranelift_codegen::ir::instructions::Opcode::other_side_effects::h21504290cdf50634 (5 samples, 0.01%)</title><rect x="1165.5" y="341" width="0.1" height="15.0" fill="rgb(210,129,8)" rx="2" ry="2" />
<text x="1168.45" y="351.5" ></text>
</g>
<g >
<title>divide_error (36 samples, 0.09%)</title><rect x="11.7" y="501" width="1.1" height="15.0" fill="rgb(218,172,53)" rx="2" ry="2" />
<text x="14.74" y="511.5" ></text>
</g>
<g >
<title>cranelift_codegen::legalizer::legalize_function::h9c05a7523015c4df (23 samples, 0.06%)</title><rect x="1170.0" y="373" width="0.7" height="15.0" fill="rgb(249,137,23)" rx="2" ry="2" />
<text x="1173.02" y="383.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 (6 samples, 0.01%)</title><rect x="174.9" y="357" width="0.2" height="15.0" fill="rgb(249,72,13)" rx="2" ry="2" />
<text x="177.94" y="367.5" ></text>
</g>
<g >
<title>cranelift_codegen::ir::layout::Layout::insert_inst::h352d76f498d27496 (13 samples, 0.03%)</title><rect x="1179.0" y="325" width="0.3" height="15.0" fill="rgb(219,120,53)" rx="2" ry="2" />
<text x="1181.95" y="335.5" ></text>
</g>
<g >
<title>__GI___libc_malloc (10 samples, 0.02%)</title><rect x="807.0" y="325" width="0.3" height="15.0" fill="rgb(241,205,30)" rx="2" ry="2" />
<text x="810.00" y="335.5" ></text>
</g>
<g >
<title>std::sys::unix::time::inner::now::ha10452f37b2930c5 (5 samples, 0.01%)</title><rect x="318.7" y="325" width="0.1" height="15.0" fill="rgb(211,6,0)" rx="2" ry="2" />
<text x="321.65" y="335.5" ></text>
</g>
<g >
<title>std::time::Instant::elapsed::h8e307314b2acf9be (8 samples, 0.02%)</title><rect x="155.9" y="245" width="0.2" height="15.0" fill="rgb(223,36,20)" rx="2" ry="2" />
<text x="158.88" y="255.5" ></text>
</g>
<g >
<title>_$LT$rocinante..exec..wasmer..Wasmer$u20$as$u20$rocinante..exec..Interpreter$GT$::eval_test_cases::hf136840e36843cad (23,256 samples, 56.25%)</title><rect x="213.1" y="469" width="663.8" height="15.0" fill="rgb(213,174,47)" rx="2" ry="2" />
<text x="216.10" y="479.5" >_$LT$rocinante..exec..wasmer..Wasmer$u20$as$u20$rocinante..exec..Interpreter$GT$::eval_test..</text>
</g>
<g >
<title>_int_free (14 samples, 0.03%)</title><rect x="225.9" y="421" width="0.4" height="15.0" fill="rgb(213,149,5)" rx="2" ry="2" />
<text x="228.92" y="431.5" ></text>
</g>
<g >
<title>alloc::vec::Vec$LT$T$GT$::resize::h32a2d4ba425bc523 (23 samples, 0.06%)</title><rect x="75.4" y="261" width="0.6" height="15.0" fill="rgb(223,135,20)" rx="2" ry="2" />
<text x="78.39" y="271.5" ></text>
</g>
<g >
<title>cranelift_codegen::regalloc::context::Context::run::hacf4bbc8f4d0071a (1,459 samples, 3.53%)</title><rect x="119.8" y="293" width="41.7" height="15.0" fill="rgb(224,212,4)" rx="2" ry="2" />
<text x="122.83" y="303.5" >cra..</text>
</g>
<g >
<title>unmap_region (99 samples, 0.24%)</title><rect x="237.5" y="309" width="2.9" height="15.0" fill="rgb(218,106,6)" rx="2" ry="2" />
<text x="240.53" y="319.5" ></text>
</g>
<g >
<title>do_syscall_64 (18 samples, 0.04%)</title><rect x="11.2" y="405" width="0.5" height="15.0" fill="rgb(226,157,54)" rx="2" ry="2" />
<text x="14.17" y="415.5" ></text>
</g>
<g >
<title>_int_malloc (7 samples, 0.02%)</title><rect x="1176.1" y="309" width="0.2" height="15.0" fill="rgb(228,202,35)" rx="2" ry="2" />
<text x="1179.13" y="319.5" ></text>
</g>
<g >
<title>cranelift_codegen::legalizer::expand::hc4ef15636e9956ca (8 samples, 0.02%)</title><rect x="1167.6" y="229" width="0.2" height="15.0" fill="rgb(242,114,30)" rx="2" ry="2" />
<text x="1170.59" 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 (5 samples, 0.01%)</title><rect x="1169.2" y="261" width="0.1" height="15.0" fill="rgb(241,176,1)" rx="2" ry="2" />
<text x="1172.16" y="271.5" ></text>
</g>
<g >
<title>cranelift_codegen::ir::function::Function::update_encoding::hf75ec520bc911a0c (69 samples, 0.17%)</title><rect x="81.3" y="245" width="2.0" height="15.0" fill="rgb(238,9,47)" rx="2" ry="2" />
<text x="84.33" y="255.5" ></text>
</g>
<g >
<title>__GI___libc_realloc (5 samples, 0.01%)</title><rect x="1179.7" y="341" width="0.2" height="15.0" fill="rgb(246,45,1)" rx="2" ry="2" />
<text x="1182.72" y="351.5" ></text>
</g>
<g >
<title>mem_cgroup_try_charge (8 samples, 0.02%)</title><rect x="278.4" y="277" width="0.3" height="15.0" fill="rgb(236,133,41)" rx="2" ry="2" />
<text x="281.43" y="287.5" ></text>
</g>
<g >
<title>alloc::raw_vec::RawVec$LT$T$C$A$GT$::reserve::hae39d8e15426d2f6 (8 samples, 0.02%)</title><rect x="1176.8" y="341" width="0.2" height="15.0" fill="rgb(225,87,53)" rx="2" ry="2" />
<text x="1179.79" 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 (4 samples, 0.01%)</title><rect x="52.1" y="325" width="0.1" height="15.0" fill="rgb(236,181,44)" rx="2" ry="2" />
<text x="55.10" y="335.5" ></text>
</g>
<g >
<title>page_counter_cancel (6 samples, 0.01%)</title><rect x="233.1" y="133" width="0.2" height="15.0" fill="rgb(235,2,27)" rx="2" ry="2" />
<text x="236.14" y="143.5" ></text>
</g>
<g >
<title>__GI___libc_malloc (7 samples, 0.02%)</title><rect x="114.2" y="197" width="0.2" height="15.0" fill="rgb(245,181,18)" rx="2" ry="2" />
<text x="117.23" y="207.5" ></text>
</g>
<g >
<title>vmacache_find (4 samples, 0.01%)</title><rect x="330.5" y="261" width="0.1" height="15.0" fill="rgb(205,58,19)" rx="2" ry="2" />
<text x="333.49" y="271.5" ></text>
</g>
<g >
<title>wasmer_runtime_core::sys::unix::memory::Memory::protect::hc4dfd0a2abe36912 (237 samples, 0.57%)</title><rect x="283.0" y="373" width="6.7" height="15.0" fill="rgb(215,33,44)" rx="2" ry="2" />
<text x="285.97" y="383.5" ></text>
</g>
<g >
<title>std::sys::unix::time::inner::Instant::now::h23f1bea5949f1bbd (8 samples, 0.02%)</title><rect x="152.2" y="245" width="0.2" height="15.0" fill="rgb(214,178,10)" rx="2" ry="2" />
<text x="155.17" y="255.5" ></text>
</g>
<g >
<title>cranelift_codegen::ir::dfg::DataFlowGraph::ctrl_typevar::h001f83f02149e995 (9 samples, 0.02%)</title><rect x="1154.6" y="293" width="0.3" height="15.0" fill="rgb(210,88,25)" rx="2" ry="2" />
<text x="1157.64" y="303.5" ></text>
</g>
<g >
<title>_int_free (26 samples, 0.06%)</title><rect x="250.4" y="373" width="0.8" height="15.0" fill="rgb(221,136,2)" rx="2" ry="2" />
<text x="253.44" y="383.5" ></text>
</g>
<g >
<title>__vma_link_rb (9 samples, 0.02%)</title><rect x="349.2" y="213" width="0.3" height="15.0" fill="rgb(229,74,8)" rx="2" ry="2" />
<text x="352.25" y="223.5" ></text>
</g>
<g >
<title>cranelift_codegen::ir::dfg::DataFlowGraph::new::h1636284a161b274f (6 samples, 0.01%)</title><rect x="800.7" y="357" width="0.1" height="15.0" fill="rgb(243,222,25)" rx="2" ry="2" />
<text x="803.66" y="367.5" ></text>
</g>
<g >
<title>do_error_trap (36 samples, 0.09%)</title><rect x="11.7" y="469" width="1.1" height="15.0" fill="rgb(223,133,9)" rx="2" ry="2" />
<text x="14.74" y="479.5" ></text>
</g>
<g >
<title>do_munmap (5 samples, 0.01%)</title><rect x="185.6" y="165" width="0.1" height="15.0" fill="rgb(248,154,22)" rx="2" ry="2" />
<text x="188.56" y="175.5" ></text>
</g>
<g >
<title>free_pgd_range (6 samples, 0.01%)</title><rect x="230.4" y="245" width="0.2" height="15.0" fill="rgb(216,71,42)" rx="2" ry="2" />
<text x="233.40" y="255.5" ></text>
</g>
<g >
<title>_$LT$cranelift_codegen..timing..details..TimingToken$u20$as$u20$core..ops..drop..Drop$GT$::drop::h1b19c2a93ee0a091 (6 samples, 0.01%)</title><rect x="150.7" y="261" width="0.1" height="15.0" fill="rgb(206,75,4)" rx="2" ry="2" />
<text x="153.65" y="271.5" ></text>
</g>
<g >
<title>__GI___libc_malloc (10 samples, 0.02%)</title><rect x="1159.7" y="325" width="0.3" height="15.0" fill="rgb(252,187,16)" rx="2" ry="2" />
<text x="1162.72" y="335.5" ></text>
</g>
<g >
<title>malloc_consolidate (38 samples, 0.09%)</title><rect x="253.3" y="341" width="1.1" height="15.0" fill="rgb(216,142,19)" rx="2" ry="2" />
<text x="256.29" y="351.5" ></text>
</g>
<g >
<title>wasmer_runtime_core::instance::call_func_with_index_inner::_$u7b$$u7b$closure$u7d$$u7d$::h13770553ad121b04 (263 samples, 0.64%)</title><rect x="861.7" y="405" width="7.5" height="15.0" fill="rgb(250,140,22)" rx="2" ry="2" />
<text x="864.68" y="415.5" ></text>
</g>
<g >
<title>__vdso_clock_gettime (5 samples, 0.01%)</title><rect x="1166.3" y="277" width="0.2" height="15.0" fill="rgb(215,198,50)" rx="2" ry="2" />
<text x="1169.31" y="287.5" ></text>
</g>
<g >
<title>alloc::raw_vec::RawVec$LT$T$C$A$GT$::reserve::hd6c8f26eb3c9fb4b (9 samples, 0.02%)</title><rect x="1169.5" y="261" width="0.3" height="15.0" fill="rgb(228,55,22)" rx="2" ry="2" />
<text x="1172.54" y="271.5" ></text>
</g>
<g >
<title>alloc::raw_vec::RawVec$LT$T$C$A$GT$::reserve::h156c4ca9e87e66cc (7 samples, 0.02%)</title><rect x="75.2" y="261" width="0.2" height="15.0" fill="rgb(214,173,10)" rx="2" ry="2" />
<text x="78.19" y="271.5" ></text>
</g>
<g >
<title>_ZN9hashbrown3raw17RawTable$LT$T$GT$14reserve_rehash17ha8dc20cee05f0e84E.llvm.16938716460618634628 (14 samples, 0.03%)</title><rect x="159.9" y="229" width="0.4" height="15.0" fill="rgb(254,97,51)" rx="2" ry="2" />
<text x="162.90" y="239.5" ></text>
</g>
<g >
<title>__memcpy_avx_unaligned (5 samples, 0.01%)</title><rect x="63.0" y="309" width="0.1" height="15.0" fill="rgb(238,161,45)" rx="2" ry="2" />
<text x="66.00" y="319.5" ></text>
</g>
<g >
<title>cranelift_codegen::ir::dfg::DataFlowGraph::append_ebb_param::h7014c3b1302a9186 (26 samples, 0.06%)</title><rect x="802.1" y="357" width="0.7" height="15.0" fill="rgb(250,1,46)" rx="2" ry="2" />
<text x="805.06" y="367.5" ></text>
</g>
<g >
<title>std::rt::lang_start_internal::_$u7b$$u7b$closure$u7d$$u7d$::h6ea535ec5c50fc3e (6 samples, 0.01%)</title><rect x="1167.2" y="421" width="0.1" height="15.0" fill="rgb(244,26,45)" rx="2" ry="2" />
<text x="1170.17" y="431.5" ></text>
</g>
<g >
<title>__libc_start_main (724 samples, 1.75%)</title><rect x="184.8" y="485" width="20.7" height="15.0" fill="rgb(226,201,20)" rx="2" ry="2" />
<text x="187.82" y="495.5" ></text>
</g>
<g >
<title>std::sys::unix::alloc::_$LT$impl$u20$core..alloc..GlobalAlloc$u20$for$u20$std..alloc..System$GT$::dealloc::h000dc0e1d3b4be28 (9 samples, 0.02%)</title><rect x="751.9" y="357" width="0.3" height="15.0" fill="rgb(242,115,44)" rx="2" ry="2" />
<text x="754.94" y="367.5" ></text>
</g>
<g >
<title>wasmer_runtime_core::codegen::validate_with_features::hca6a4340e6d214c2 (344 samples, 0.83%)</title><rect x="187.3" y="245" width="9.8" height="15.0" fill="rgb(205,173,30)" rx="2" ry="2" />
<text x="190.27" y="255.5" ></text>
</g>
<g >
<title>do_munmap (126 samples, 0.30%)</title><rect x="236.8" y="325" width="3.6" height="15.0" fill="rgb(210,69,33)" rx="2" ry="2" />
<text x="239.79" y="335.5" ></text>
</g>
<g >
<title>arch_tlb_finish_mmu (88 samples, 0.21%)</title><rect x="231.8" y="245" width="2.5" height="15.0" fill="rgb(208,93,23)" rx="2" ry="2" />
<text x="234.83" y="255.5" ></text>
</g>
<g >
<title>_int_malloc (4 samples, 0.01%)</title><rect x="815.9" y="373" width="0.1" height="15.0" fill="rgb(219,203,52)" rx="2" ry="2" />
<text x="818.88" y="383.5" ></text>
</g>
<g >
<title>vma_merge (22 samples, 0.05%)</title><rect x="269.0" y="261" width="0.6" height="15.0" fill="rgb(209,56,11)" rx="2" ry="2" />
<text x="271.99" y="271.5" ></text>
</g>
<g >
<title>alloc::raw_vec::RawVec$LT$T$C$A$GT$::reserve::hae39d8e15426d2f6 (7 samples, 0.02%)</title><rect x="137.2" y="229" width="0.2" height="15.0" fill="rgb(231,184,25)" rx="2" ry="2" />
<text x="140.18" y="239.5" ></text>
</g>
<g >
<title>cranelift_codegen::regalloc::pressure::Pressure::take_transient::h55ed3b6faf9ff3f9 (4 samples, 0.01%)</title><rect x="160.4" y="261" width="0.1" height="15.0" fill="rgb(216,67,13)" rx="2" ry="2" />
<text x="163.36" y="271.5" ></text>
</g>
<g >
<title>cranelift_codegen::regalloc::liveness::get_or_create::h5a0d21740424a6d5 (115 samples, 0.28%)</title><rect x="145.1" y="261" width="3.3" height="15.0" fill="rgb(250,57,35)" rx="2" ry="2" />
<text x="148.15" y="271.5" ></text>
</g>
<g >
<title>__GI___libc_realloc (13 samples, 0.03%)</title><rect x="1173.0" y="309" width="0.4" height="15.0" fill="rgb(232,223,51)" rx="2" ry="2" />
<text x="1176.05" y="319.5" ></text>
</g>
<g >
<title>_ZN17cranelift_codegen24redundant_reload_remover22RedundantReloadRemover37do_redundant_fill_removal_on_function17h0915e7840d7db9a4E.llvm.15195122248153170019 (16 samples, 0.04%)</title><rect x="13.6" y="373" width="0.4" height="15.0" fill="rgb(253,54,33)" rx="2" ry="2" />
<text x="16.57" y="383.5" ></text>
</g>
<g >
<title>core::ptr::real_drop_in_place::hac17000b73420afe (4 samples, 0.01%)</title><rect x="243.5" y="421" width="0.1" height="15.0" fill="rgb(250,106,41)" rx="2" ry="2" />
<text x="246.47" y="431.5" ></text>
</g>
<g >
<title>_ZN16cranelift_entity4list17ListPool$LT$T$GT$5alloc17h7031e3fd97879e16E.llvm.776987249141506950 (12 samples, 0.03%)</title><rect x="159.5" y="229" width="0.3" height="15.0" fill="rgb(233,160,18)" rx="2" ry="2" />
<text x="162.50" y="239.5" ></text>
</g>
<g >
<title>vm_munmap (5 samples, 0.01%)</title><rect x="185.6" y="181" width="0.1" height="15.0" fill="rgb(218,203,37)" rx="2" ry="2" />
<text x="188.56" y="191.5" ></text>
</g>
<g >
<title>std::rt::lang_start::_$u7b$$u7b$closure$u7d$$u7d$::h387b585bfd0524d1 (6 samples, 0.01%)</title><rect x="184.6" y="453" width="0.2" height="15.0" fill="rgb(249,219,21)" rx="2" ry="2" />
<text x="187.62" y="463.5" ></text>
</g>
<g >
<title>free_pages_and_swap_cache (44 samples, 0.11%)</title><rect x="232.1" y="213" width="1.2" height="15.0" fill="rgb(239,86,36)" rx="2" ry="2" />
<text x="235.08" y="223.5" ></text>
</g>
<g >
<title>wasmer_runtime_core::compile_with_config::h2793fe8de72c0bc3 (1,558 samples, 3.77%)</title><rect x="13.6" y="469" width="44.4" height="15.0" fill="rgb(253,107,4)" rx="2" ry="2" />
<text x="16.57" y="479.5" >wasm..</text>
</g>
<g >
<title>__next_zones_zonelist (7 samples, 0.02%)</title><rect x="304.6" y="245" width="0.2" height="15.0" fill="rgb(212,90,12)" rx="2" ry="2" />
<text x="307.64" 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 (18 samples, 0.04%)</title><rect x="24.7" y="325" width="0.5" height="15.0" fill="rgb(224,16,16)" rx="2" ry="2" />
<text x="27.67" y="335.5" ></text>
</g>
<g >
<title>__GI___libc_malloc (8 samples, 0.02%)</title><rect x="806.5" y="341" width="0.2" height="15.0" fill="rgb(221,73,27)" rx="2" ry="2" />
<text x="809.46" y="351.5" ></text>
</g>
<g >
<title>get_signal (5 samples, 0.01%)</title><rect x="1180.8" y="453" width="0.2" height="15.0" fill="rgb(241,168,37)" rx="2" ry="2" />
<text x="1183.81" y="463.5" ></text>
</g>
<g >
<title>_int_free (5 samples, 0.01%)</title><rect x="1171.3" y="293" width="0.2" height="15.0" fill="rgb(247,227,45)" rx="2" ry="2" />
<text x="1174.33" y="303.5" ></text>
</g>
<g >
<title>_int_malloc (245 samples, 0.59%)</title><rect x="684.5" y="325" width="7.0" height="15.0" fill="rgb(222,209,19)" rx="2" ry="2" />
<text x="687.50" y="335.5" ></text>
</g>
<g >
<title>cranelift_codegen::legalizer::expand_flags::hf22fb7652a0ec5c8 (8 samples, 0.02%)</title><rect x="1167.6" y="245" width="0.2" height="15.0" fill="rgb(224,157,20)" rx="2" ry="2" />
<text x="1170.59" y="255.5" ></text>
</g>
<g >
<title>std::time::Instant::elapsed::h8e307314b2acf9be (9 samples, 0.02%)</title><rect x="87.5" y="245" width="0.3" height="15.0" fill="rgb(237,29,27)" rx="2" ry="2" />
<text x="90.52" y="255.5" ></text>
</g>
<g >
<title>core::ptr::real_drop_in_place::h767229c0557115cd (26 samples, 0.06%)</title><rect x="177.1" y="357" width="0.7" height="15.0" fill="rgb(225,48,30)" rx="2" ry="2" />
<text x="180.08" y="367.5" ></text>
</g>
<g >
<title>cranelift_codegen::regalloc::live_value_tracker::LiveValueTracker::process_inst::hcd4ba6fb549516b2 (11 samples, 0.03%)</title><rect x="52.7" y="341" width="0.3" height="15.0" fill="rgb(224,200,10)" rx="2" ry="2" />
<text x="55.67" y="351.5" ></text>
</g>
<g >
<title>__GI___libc_malloc (12 samples, 0.03%)</title><rect x="279.7" y="357" width="0.4" height="15.0" fill="rgb(250,72,24)" rx="2" ry="2" />
<text x="282.72" y="367.5" ></text>
</g>
<g >
<title>alloc::vec::Vec$LT$T$GT$::into_boxed_slice::h53071a82632f4b65 (5 samples, 0.01%)</title><rect x="873.9" y="405" width="0.1" height="15.0" fill="rgb(251,24,1)" rx="2" ry="2" />
<text x="876.87" y="415.5" ></text>
</g>
<g >
<title>cranelift_codegen::dominator_tree::DominatorTreePreorder::compute::hb821b7ecbf347c37 (26 samples, 0.06%)</title><rect x="126.8" y="261" width="0.7" height="15.0" fill="rgb(243,138,23)" rx="2" ry="2" />
<text x="129.76" y="271.5" ></text>
</g>
<g >
<title>unmap_vmas (42 samples, 0.10%)</title><rect x="234.5" y="261" width="1.2" height="15.0" fill="rgb(241,207,30)" rx="2" ry="2" />
<text x="237.48" y="271.5" ></text>
</g>
<g >
<title>std::sys::unix::time::inner::Instant::now::h23f1bea5949f1bbd (7 samples, 0.02%)</title><rect x="171.3" y="261" width="0.2" height="15.0" fill="rgb(210,128,37)" rx="2" ry="2" />
<text x="174.29" y="271.5" ></text>
</g>
<g >
<title>cranelift_codegen::regalloc::liveness::get_or_create::h5a0d21740424a6d5 (19 samples, 0.05%)</title><rect x="1178.3" y="373" width="0.5" height="15.0" fill="rgb(240,121,9)" rx="2" ry="2" />
<text x="1181.27" y="383.5" ></text>
</g>
<g >
<title>hashbrown::rustc_entry::_$LT$impl$u20$hashbrown..map..HashMap$LT$K$C$V$C$S$GT$$GT$::rustc_entry::h157f2592beb19670 (5 samples, 0.01%)</title><rect x="165.6" y="261" width="0.2" height="15.0" fill="rgb(235,14,20)" rx="2" ry="2" />
<text x="168.61" y="271.5" ></text>
</g>
<g >
<title>_int_malloc (271 samples, 0.66%)</title><rect x="470.8" y="325" width="7.8" height="15.0" fill="rgb(224,132,26)" rx="2" ry="2" />
<text x="473.83" y="335.5" ></text>
</g>
<g >
<title>cranelift_entity::list::EntityList$LT$T$GT$::push::h051541d55e7ee057 (21 samples, 0.05%)</title><rect x="129.5" y="245" width="0.6" height="15.0" fill="rgb(228,100,19)" rx="2" ry="2" />
<text x="132.48" y="255.5" ></text>
</g>
<g >
<title>alloc::raw_vec::RawVec$LT$T$C$A$GT$::reserve::hc8a0fc8526f8c69b (14 samples, 0.03%)</title><rect x="140.9" y="229" width="0.4" height="15.0" fill="rgb(233,109,40)" rx="2" ry="2" />
<text x="143.89" y="239.5" ></text>
</g>
<g >
<title>cranelift_codegen::regalloc::diversion::RegDiversions::apply::ha5ceacd048d67eac (4 samples, 0.01%)</title><rect x="76.1" y="277" width="0.1" height="15.0" fill="rgb(230,150,19)" rx="2" ry="2" />
<text x="79.07" y="287.5" ></text>
</g>
<g >
<title>__lock_text_start (7 samples, 0.02%)</title><rect x="12.6" y="405" width="0.2" height="15.0" fill="rgb(221,12,33)" rx="2" ry="2" />
<text x="15.57" y="415.5" ></text>
</g>
<g >
<title>__libc_calloc (4 samples, 0.01%)</title><rect x="186.3" y="197" width="0.1" height="15.0" fill="rgb(237,43,20)" rx="2" ry="2" />
<text x="189.30" y="207.5" ></text>
</g>
<g >
<title>wasmer_runtime_core::import::ImportObject::new::hbf222489b0e5ea45 (34 samples, 0.08%)</title><rect x="854.5" y="453" width="0.9" height="15.0" fill="rgb(254,21,3)" rx="2" ry="2" />
<text x="857.46" y="463.5" ></text>
</g>
<g >
<title>rocinante (41,343 samples, 100.00%)</title><rect x="10.0" y="533" width="1180.0" height="15.0" fill="rgb(210,149,10)" rx="2" ry="2" />
<text x="13.00" y="543.5" >rocinante</text>
</g>
<g >
<title>_$LT$cranelift_codegen..isa..x86..Isa$u20$as$u20$cranelift_codegen..isa..TargetIsa$GT$::legal_encodings::hf067c4c0987c0b93 (28 samples, 0.07%)</title><rect x="31.7" y="341" width="0.8" height="15.0" fill="rgb(224,71,32)" rx="2" ry="2" />
<text x="34.75" 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 (214 samples, 0.52%)</title><rect x="1170.0" y="469" width="6.1" height="15.0" fill="rgb(215,79,23)" rx="2" ry="2" />
<text x="1173.02" y="479.5" ></text>
</g>
<g >
<title>__sigprocmask (23 samples, 0.06%)</title><rect x="11.1" y="437" width="0.6" height="15.0" fill="rgb(252,106,10)" rx="2" ry="2" />
<text x="14.06" y="447.5" ></text>
</g>
<g >
<title>wasmer_runtime_core::parse::read_module::h3875b654eed5ef74 (6 samples, 0.01%)</title><rect x="184.6" y="341" width="0.2" height="15.0" fill="rgb(250,11,52)" rx="2" ry="2" />
<text x="187.62" 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 (11 samples, 0.03%)</title><rect x="89.8" y="213" width="0.3" height="15.0" fill="rgb(237,207,44)" rx="2" ry="2" />
<text x="92.83" y="223.5" ></text>
</g>
<g >
<title>alloc::raw_vec::RawVec$LT$T$C$A$GT$::reserve::h0c445b41f7c28667 (5 samples, 0.01%)</title><rect x="1169.2" y="229" width="0.1" height="15.0" fill="rgb(240,81,43)" rx="2" ry="2" />
<text x="1172.16" 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 (21 samples, 0.05%)</title><rect x="22.1" y="293" width="0.6" height="15.0" fill="rgb(212,173,15)" rx="2" ry="2" />
<text x="25.07" y="303.5" ></text>
</g>
<g >
<title>cranelift_entity::sparse::SparseMap$LT$K$C$V$GT$::insert::h31013d437c52e258 (11 samples, 0.03%)</title><rect x="139.3" y="229" width="0.3" height="15.0" fill="rgb(246,2,26)" rx="2" ry="2" />
<text x="142.32" y="239.5" ></text>
</g>
<g >
<title>__rust_dealloc (4 samples, 0.01%)</title><rect x="1029.3" y="421" width="0.1" height="15.0" fill="rgb(233,152,14)" rx="2" ry="2" />
<text x="1032.31" y="431.5" ></text>
</g>
<g >
<title>__perf_event__output_id_sample (6 samples, 0.01%)</title><rect x="295.1" y="165" width="0.1" height="15.0" fill="rgb(244,7,18)" rx="2" ry="2" />
<text x="298.07" y="175.5" ></text>
</g>
<g >
<title>core::fmt::Formatter::write_fmt::h8a3d5dce895eed65 (6 samples, 0.01%)</title><rect x="869.0" y="357" width="0.2" height="15.0" fill="rgb(212,218,9)" rx="2" ry="2" />
<text x="872.02" y="367.5" ></text>
</g>
<g >
<title>hashbrown::raw::RawTable$LT$T$GT$::try_with_capacity::h7a6e6bae489d4fe9 (8 samples, 0.02%)</title><rect x="68.2" y="229" width="0.2" height="15.0" fill="rgb(223,112,15)" rx="2" ry="2" />
<text x="71.20" y="239.5" ></text>
</g>
<g >
<title>__GI___libc_malloc (7 samples, 0.02%)</title><rect x="74.6" y="245" width="0.2" height="15.0" fill="rgb(251,14,48)" rx="2" ry="2" />
<text x="77.65" y="255.5" ></text>
</g>
<g >
<title>__GI___libc_malloc (4 samples, 0.01%)</title><rect x="795.5" y="357" width="0.1" height="15.0" fill="rgb(253,39,3)" rx="2" ry="2" />
<text x="798.50" y="367.5" ></text>
</g>
<g >
<title>kmem_cache_free (6 samples, 0.01%)</title><rect x="237.4" y="293" width="0.1" height="15.0" fill="rgb(238,138,43)" rx="2" ry="2" />
<text x="240.36" y="303.5" ></text>
</g>
<g >
<title>__GI___libc_free (11 samples, 0.03%)</title><rect x="78.3" y="229" width="0.3" height="15.0" fill="rgb(231,203,24)" rx="2" ry="2" />
<text x="81.27" y="239.5" ></text>
</g>
<g >
<title>__GI___clock_gettime (5 samples, 0.01%)</title><rect x="98.3" y="213" width="0.1" height="15.0" fill="rgb(235,91,27)" rx="2" ry="2" />
<text x="101.28" y="223.5" ></text>
</g>
<g >
<title>cranelift_codegen::regalloc::solver::Solver::schedule_moves::h81b194ab48ac25d3 (38 samples, 0.09%)</title><rect x="141.3" y="261" width="1.1" height="15.0" fill="rgb(211,85,6)" rx="2" ry="2" />
<text x="144.29" y="271.5" ></text>
</g>
<g >
<title>_$LT$cranelift_codegen..isa..enc_tables..Encodings$u20$as$u20$core..iter..traits..iterator..Iterator$GT$::next::he6ba202105922eb5 (19 samples, 0.05%)</title><rect x="82.2" y="213" width="0.5" height="15.0" fill="rgb(238,97,45)" rx="2" ry="2" />
<text x="85.15" y="223.5" ></text>
</g>
<g >
<title>__vdso_clock_gettime (5 samples, 0.01%)</title><rect x="1171.2" y="293" width="0.1" height="15.0" fill="rgb(236,6,5)" rx="2" ry="2" />
<text x="1174.19" y="303.5" ></text>
</g>
<g >
<title>_int_free (184 samples, 0.45%)</title><rect x="1050.6" y="437" width="5.2" height="15.0" fill="rgb(235,171,45)" rx="2" ry="2" />
<text x="1053.57" y="447.5" ></text>
</g>
<g >
<title>perf_event_mmap (87 samples, 0.21%)</title><rect x="346.7" y="229" width="2.5" height="15.0" fill="rgb(214,190,5)" rx="2" ry="2" />
<text x="349.74" 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 (26 samples, 0.06%)</title><rect x="32.8" y="325" width="0.7" height="15.0" fill="rgb(226,68,6)" rx="2" ry="2" />
<text x="35.80" y="335.5" ></text>
</g>
<g >
<title>__GI___clock_gettime (7 samples, 0.02%)</title><rect x="77.2" y="181" width="0.2" height="15.0" fill="rgb(208,43,37)" rx="2" ry="2" />
<text x="80.22" y="191.5" ></text>
</g>
<g >
<title>_$LT$cranelift_codegen..timing..details..TimingToken$u20$as$u20$core..ops..drop..Drop$GT$::drop::h1b19c2a93ee0a091 (12 samples, 0.03%)</title><rect x="114.9" y="277" width="0.4" height="15.0" fill="rgb(206,31,47)" rx="2" ry="2" />
<text x="117.95" y="287.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 (21 samples, 0.05%)</title><rect x="298.1" y="373" width="0.6" height="15.0" fill="rgb(243,139,16)" rx="2" ry="2" />
<text x="301.10" y="383.5" ></text>
</g>
<g >
<title>__vdso_clock_gettime (4 samples, 0.01%)</title><rect x="1164.5" y="245" width="0.1" height="15.0" fill="rgb(239,15,15)" rx="2" ry="2" />
<text x="1167.46" y="255.5" ></text>
</g>
<g >
<title>alloc::raw_vec::RawVec$LT$T$C$A$GT$::reserve::hde4c914cbb5df344 (61 samples, 0.15%)</title><rect x="694.9" y="357" width="1.8" height="15.0" fill="rgb(234,96,18)" rx="2" ry="2" />
<text x="697.94" y="367.5" ></text>
</g>
<g >
<title>cranelift_codegen::ir::layout::Layout::insert_inst::h352d76f498d27496 (13 samples, 0.03%)</title><rect x="1177.0" y="341" width="0.4" height="15.0" fill="rgb(243,229,43)" rx="2" ry="2" />
<text x="1180.01" y="351.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 (10 samples, 0.02%)</title><rect x="142.0" y="245" width="0.3" height="15.0" fill="rgb(252,139,51)" rx="2" ry="2" />
<text x="144.98" y="255.5" ></text>
</g>
<g >
<title>_$LT$std..collections..hash..map..DefaultHasher$u20$as$u20$core..hash..Hasher$GT$::write::hce30e4f96ad2e64e (93 samples, 0.22%)</title><rect x="624.8" y="357" width="2.6" height="15.0" fill="rgb(217,205,25)" rx="2" ry="2" />
<text x="627.79" y="367.5" ></text>
</g>
<g >
<title>wasmparser::operators_validator::OperatorValidator::new::hf45e218c5d7c8944 (35 samples, 0.08%)</title><rect x="193.9" y="213" width="1.0" height="15.0" fill="rgb(232,28,28)" rx="2" ry="2" />
<text x="196.92" y="223.5" ></text>
</g>
<g >
<title>perf_event_mmap (84 samples, 0.20%)</title><rect x="285.2" y="261" width="2.4" height="15.0" fill="rgb(241,163,27)" rx="2" ry="2" />
<text x="288.23" y="271.5" ></text>
</g>
<g >
<title>__GI___libc_free (19 samples, 0.05%)</title><rect x="225.8" y="437" width="0.5" height="15.0" fill="rgb(224,228,34)" rx="2" ry="2" />
<text x="228.78" y="447.5" ></text>
</g>
<g >
<title>__munmap (319 samples, 0.77%)</title><rect x="227.0" y="373" width="9.1" height="15.0" fill="rgb(232,71,13)" rx="2" ry="2" />
<text x="229.97" y="383.5" ></text>
</g>
<g >
<title>__GI___clock_gettime (5 samples, 0.01%)</title><rect x="318.5" y="293" width="0.2" height="15.0" fill="rgb(242,127,1)" rx="2" ry="2" />
<text x="321.51" y="303.5" ></text>
</g>
<g >
<title>cranelift_codegen::isa::encoding::base_size::he0d0831e71de2a0c (14 samples, 0.03%)</title><rect x="105.2" y="261" width="0.4" height="15.0" fill="rgb(215,28,48)" rx="2" ry="2" />
<text x="108.19" y="271.5" ></text>
</g>
<g >
<title>_int_malloc (8 samples, 0.02%)</title><rect x="1179.5" y="309" width="0.2" height="15.0" fill="rgb(210,119,37)" rx="2" ry="2" />
<text x="1182.50" y="319.5" ></text>
</g>
<g >
<title>__vdso_clock_gettime (5 samples, 0.01%)</title><rect x="37.1" y="277" width="0.2" height="15.0" fill="rgb(205,10,45)" rx="2" ry="2" />
<text x="40.14" y="287.5" ></text>
</g>
<g >
<title>alloc::raw_vec::RawVec$LT$T$C$A$GT$::reserve::h500ef385b8747b29 (6 samples, 0.01%)</title><rect x="124.7" y="245" width="0.2" height="15.0" fill="rgb(215,20,29)" rx="2" ry="2" />
<text x="127.68" y="255.5" ></text>
</g>
<g >
<title>hashbrown::raw::bucket_mask_to_capacity::hff8682455bc98726 (24 samples, 0.06%)</title><rect x="653.6" y="325" width="0.7" height="15.0" fill="rgb(235,134,15)" rx="2" ry="2" />
<text x="656.62" y="335.5" ></text>
</g>
<g >
<title>__rust_maybe_catch_panic (6 samples, 0.01%)</title><rect x="1167.2" y="453" width="0.1" height="15.0" fill="rgb(215,22,53)" rx="2" ry="2" />
<text x="1170.17" y="463.5" ></text>
</g>
<g >
<title>_int_free (9 samples, 0.02%)</title><rect x="195.2" y="213" width="0.3" height="15.0" fill="rgb(238,18,11)" rx="2" ry="2" />
<text x="198.24" y="223.5" ></text>
</g>
<g >
<title>alloc::raw_vec::RawVec$LT$T$C$A$GT$::reserve::hae39d8e15426d2f6 (4 samples, 0.01%)</title><rect x="1173.9" y="309" width="0.1" height="15.0" fill="rgb(250,86,49)" rx="2" ry="2" />
<text x="1176.90" y="319.5" ></text>
</g>
<g >
<title>rayon::result::_$LT$impl$u20$rayon..iter..FromParallelIterator$LT$core..result..Result$LT$T$C$E$GT$$GT$$u20$for$u20$core..result..Result$LT$C$C$E$GT$$GT$::from_par_iter::h1e10d100eaa83031 (4,073 samples, 9.85%)</title><rect x="58.0" y="469" width="116.3" height="15.0" fill="rgb(226,141,15)" rx="2" ry="2" />
<text x="61.04" y="479.5" >rayon::result:..</text>
</g>
<g >
<title>cranelift_codegen::dominator_tree::DominatorTree::compute::hb8295076ad170b26 (56 samples, 0.14%)</title><rect x="1158.9" y="357" width="1.6" height="15.0" fill="rgb(244,177,17)" rx="2" ry="2" />
<text x="1161.95" y="367.5" ></text>
</g>
<g >
<title>__GI___libc_malloc (5 samples, 0.01%)</title><rect x="43.5" y="325" width="0.1" height="15.0" fill="rgb(232,139,31)" rx="2" ry="2" />
<text x="46.48" y="335.5" ></text>
</g>
<g >
<title>__GI___libc_free (16 samples, 0.04%)</title><rect x="177.9" y="341" width="0.4" height="15.0" fill="rgb(240,217,2)" rx="2" ry="2" />
<text x="180.85" y="351.5" ></text>
</g>
<g >
<title>__GI___libc_malloc (5 samples, 0.01%)</title><rect x="327.9" y="341" width="0.1" height="15.0" fill="rgb(206,157,22)" rx="2" ry="2" />
<text x="330.87" y="351.5" ></text>
</g>
<g >
<title>alloc::raw_vec::RawVec$LT$T$C$A$GT$::reserve::h500ef385b8747b29 (18 samples, 0.04%)</title><rect x="804.0" y="341" width="0.5" height="15.0" fill="rgb(231,161,14)" rx="2" ry="2" />
<text x="806.97" y="351.5" ></text>
</g>
<g >
<title>_ZN78_$LT$parity_wasm..elements..ops..Instruction$u20$as$u20$core..clone..Clone$GT$5clone17hb3781841ab52f338E.llvm.15796135503815885487 (12 samples, 0.03%)</title><rect x="1148.4" y="453" width="0.4" height="15.0" fill="rgb(236,84,29)" rx="2" ry="2" />
<text x="1151.44" y="463.5" ></text>
</g>
<g >
<title>__GI___pthread_rwlock_rdlock (79 samples, 0.19%)</title><rect x="795.9" y="357" width="2.2" height="15.0" fill="rgb(242,199,12)" rx="2" ry="2" />
<text x="798.87" y="367.5" ></text>
</g>
<g >
<title>cranelift_codegen::flowgraph::ControlFlowGraph::add_edge::hf2c2f4cb34e85a4f (29 samples, 0.07%)</title><rect x="113.6" y="261" width="0.9" height="15.0" fill="rgb(238,83,39)" rx="2" ry="2" />
<text x="116.63" y="271.5" ></text>
</g>
<g >
<title>unmap_region (196 samples, 0.47%)</title><rect x="230.1" y="277" width="5.6" height="15.0" fill="rgb(233,156,26)" rx="2" ry="2" />
<text x="233.09" y="287.5" ></text>
</g>
<g >
<title>__GI___libc_free (206 samples, 0.50%)</title><rect x="1049.9" y="453" width="5.9" height="15.0" fill="rgb(214,73,18)" rx="2" ry="2" />
<text x="1052.95" y="463.5" ></text>
</g>
<g >
<title>cranelift_codegen::ir::instructions::InstructionData::arguments::h70ecdef19e20b02a (4 samples, 0.01%)</title><rect x="48.3" y="341" width="0.1" height="15.0" fill="rgb(231,162,54)" rx="2" ry="2" />
<text x="51.33" y="351.5" ></text>
</g>
<g >
<title>_$LT$cranelift_codegen..timing..details..TimingToken$u20$as$u20$core..ops..drop..Drop$GT$::drop::h1b19c2a93ee0a091 (10 samples, 0.02%)</title><rect x="69.5" y="293" width="0.3" height="15.0" fill="rgb(232,63,40)" rx="2" ry="2" />
<text x="72.48" y="303.5" ></text>
</g>
<g >
<title>clear_page_erms (7 samples, 0.02%)</title><rect x="304.8" y="245" width="0.2" height="15.0" fill="rgb(232,26,12)" rx="2" ry="2" />
<text x="307.84" y="255.5" ></text>
</g>
<g >
<title>std::sys::unix::time::inner::Instant::now::h23f1bea5949f1bbd (5 samples, 0.01%)</title><rect x="1170.8" y="309" width="0.1" height="15.0" fill="rgb(225,90,11)" rx="2" ry="2" />
<text x="1173.79" y="319.5" ></text>
</g>
<g >
<title>std::sys::unix::time::inner::now::ha10452f37b2930c5 (6 samples, 0.01%)</title><rect x="115.1" y="213" width="0.2" height="15.0" fill="rgb(228,138,43)" rx="2" ry="2" />
<text x="118.12" y="223.5" ></text>
</g>
<g >
<title>__GI___libc_malloc (15 samples, 0.04%)</title><rect x="204.9" y="277" width="0.5" height="15.0" fill="rgb(210,47,17)" rx="2" ry="2" />
<text x="207.94" y="287.5" ></text>
</g>
<g >
<title>alloc::raw_vec::RawVec$LT$T$C$A$GT$::reserve::h0c445b41f7c28667 (4 samples, 0.01%)</title><rect x="88.2" y="245" width="0.1" height="15.0" fill="rgb(219,213,2)" rx="2" ry="2" />
<text x="91.23" y="255.5" ></text>
</g>
<g >
<title>wasmparser::validator::ValidatingParser::check_value_types::h852fc8c2d0e6778a (88 samples, 0.21%)</title><rect x="705.1" y="373" width="2.5" height="15.0" fill="rgb(217,104,35)" rx="2" ry="2" />
<text x="708.10" y="383.5" ></text>
</g>
<g >
<title>wasmer_clif_fork_frontend::frontend::FunctionBuilder::seal_block::h8e4b98b0ea45c88d (9 samples, 0.02%)</title><rect x="807.5" y="373" width="0.3" height="15.0" fill="rgb(241,38,3)" rx="2" ry="2" />
<text x="810.51" y="383.5" ></text>
</g>
<g >
<title>__GI___clock_gettime (7 samples, 0.02%)</title><rect x="36.4" y="277" width="0.2" height="15.0" fill="rgb(240,57,9)" rx="2" ry="2" />
<text x="39.40" y="287.5" ></text>
</g>
<g >
<title>sys_munmap (131 samples, 0.32%)</title><rect x="236.7" y="357" width="3.7" height="15.0" fill="rgb(221,130,4)" rx="2" ry="2" />
<text x="239.71" y="367.5" ></text>
</g>
<g >
<title>_$LT$rayon..iter..while_some..WhileSome$LT$I$GT$$u20$as$u20$rayon..iter..ParallelIterator$GT$::drive_unindexed::h5bb97cb6437a1950 (26 samples, 0.06%)</title><rect x="280.7" y="341" width="0.7" height="15.0" fill="rgb(212,15,0)" rx="2" ry="2" />
<text x="283.69" y="351.5" ></text>
</g>
<g >
<title>__GI___libc_realloc (9 samples, 0.02%)</title><rect x="1169.5" y="245" width="0.3" height="15.0" fill="rgb(245,137,53)" rx="2" ry="2" />
<text x="1172.54" y="255.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 (93 samples, 0.22%)</title><rect x="1167.4" y="373" width="2.6" height="15.0" fill="rgb(224,66,38)" rx="2" ry="2" />
<text x="1170.37" y="383.5" ></text>
</g>
<g >
<title>alloc::raw_vec::RawVec$LT$T$C$A$GT$::reserve::h5333cea73f0fa9cd (62 samples, 0.15%)</title><rect x="252.6" y="389" width="1.8" height="15.0" fill="rgb(236,228,22)" rx="2" ry="2" />
<text x="255.63" y="399.5" ></text>
</g>
<g >
<title>rocinante::main::h69eb7648725adb6f (6 samples, 0.01%)</title><rect x="1167.2" y="389" width="0.1" height="15.0" fill="rgb(224,26,23)" rx="2" ry="2" />
<text x="1170.17" y="399.5" ></text>
</g>
<g >
<title>__GI___libc_free (5 samples, 0.01%)</title><rect x="1164.6" y="341" width="0.1" height="15.0" fill="rgb(243,76,44)" rx="2" ry="2" />
<text x="1167.57" y="351.5" ></text>
</g>
<g >
<title>_int_malloc (55 samples, 0.13%)</title><rect x="252.8" y="357" width="1.6" height="15.0" fill="rgb(234,17,39)" rx="2" ry="2" />
<text x="255.80" y="367.5" ></text>
</g>
<g >
<title>copy_user_enhanced_fast_string (8 samples, 0.02%)</title><rect x="1188.7" y="421" width="0.2" height="15.0" fill="rgb(253,133,25)" rx="2" ry="2" />
<text x="1191.72" y="431.5" ></text>
</g>
<g >
<title>_int_free (7 samples, 0.02%)</title><rect x="1152.5" y="325" width="0.2" height="15.0" fill="rgb(244,123,12)" rx="2" ry="2" />
<text x="1155.47" y="335.5" ></text>
</g>
<g >
<title>cranelift_codegen::legalizer::legalize_function::h9c05a7523015c4df (165 samples, 0.40%)</title><rect x="14.0" y="357" width="4.7" height="15.0" fill="rgb(253,4,21)" rx="2" ry="2" />
<text x="17.02" y="367.5" ></text>
</g>
<g >
<title>lru_add_drain_cpu (34 samples, 0.08%)</title><rect x="230.8" y="245" width="1.0" height="15.0" fill="rgb(226,102,23)" rx="2" ry="2" />
<text x="233.80" y="255.5" ></text>
</g>
<g >
<title>std::sys::unix::time::inner::now::ha10452f37b2930c5 (5 samples, 0.01%)</title><rect x="24.4" y="277" width="0.1" height="15.0" fill="rgb(208,58,20)" rx="2" ry="2" />
<text x="27.36" y="287.5" ></text>
</g>
<g >
<title>free_pgtables (18 samples, 0.04%)</title><rect x="230.3" y="261" width="0.5" height="15.0" fill="rgb(215,93,36)" rx="2" ry="2" />
<text x="233.28" y="271.5" ></text>
</g>
<g >
<title>cranelift_codegen::regalloc::spilling::Context::spill_reg::hfd9fc3b6557c8c97 (6 samples, 0.01%)</title><rect x="1179.9" y="373" width="0.1" height="15.0" fill="rgb(215,2,6)" rx="2" ry="2" />
<text x="1182.87" y="383.5" ></text>
</g>
<g >
<title>_int_realloc (7 samples, 0.02%)</title><rect x="324.3" y="309" width="0.2" height="15.0" fill="rgb(248,33,27)" rx="2" ry="2" />
<text x="327.30" y="319.5" ></text>
</g>
<g >
<title>std::time::Instant::elapsed::h8e307314b2acf9be (5 samples, 0.01%)</title><rect x="1164.4" y="325" width="0.2" height="15.0" fill="rgb(223,127,49)" rx="2" ry="2" />
<text x="1167.43" y="335.5" ></text>
</g>
<g >
<title>__GI___libc_free (4 samples, 0.01%)</title><rect x="569.9" y="373" width="0.1" height="15.0" fill="rgb(231,21,26)" rx="2" ry="2" />
<text x="572.87" y="383.5" ></text>
</g>
<g >
<title>__GI___mprotect (536 samples, 1.30%)</title><rect x="328.4" y="357" width="15.3" height="15.0" fill="rgb(228,124,49)" rx="2" ry="2" />
<text x="331.38" y="367.5" ></text>
</g>
<g >
<title>wasmparser::binary_reader::BinaryReader::read_string::hc015eb960d8c9fac (4 samples, 0.01%)</title><rect x="190.7" y="165" width="0.1" height="15.0" fill="rgb(214,8,16)" rx="2" ry="2" />
<text x="193.67" y="175.5" ></text>
</g>
<g >
<title>_$LT$core..iter..adapters..Cloned$LT$I$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$::fold::h694f7df7412590c2 (13 samples, 0.03%)</title><rect x="60.5" y="293" width="0.4" height="15.0" fill="rgb(247,137,45)" rx="2" ry="2" />
<text x="63.52" 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$::fold::h053c4e0e67e6e8b2 (120 samples, 0.29%)</title><rect x="27.9" y="341" width="3.4" height="15.0" fill="rgb(226,108,32)" rx="2" ry="2" />
<text x="30.92" y="351.5" ></text>
</g>
<g >
<title>cranelift_codegen::context::Context::clear::h8fd0c2f2825a66ed (26 samples, 0.06%)</title><rect x="311.7" y="373" width="0.8" height="15.0" fill="rgb(234,8,33)" rx="2" ry="2" />
<text x="314.71" y="383.5" ></text>
</g>
<g >
<title>std::sys::unix::time::inner::now::ha10452f37b2930c5 (5 samples, 0.01%)</title><rect x="1164.4" y="277" width="0.2" height="15.0" fill="rgb(243,183,3)" rx="2" ry="2" />
<text x="1167.43" y="287.5" ></text>
</g>
<g >
<title>cranelift_codegen::ir::dfg::DataFlowGraph::make_inst_results::hc774d04d1992dff6 (6 samples, 0.01%)</title><rect x="850.2" y="325" width="0.2" height="15.0" fill="rgb(246,121,42)" rx="2" ry="2" />
<text x="853.21" y="335.5" ></text>
</g>
<g >
<title>__GI___libc_malloc (10 samples, 0.02%)</title><rect x="202.9" y="245" width="0.3" height="15.0" fill="rgb(217,208,3)" rx="2" ry="2" />
<text x="205.88" y="255.5" ></text>
</g>
<g >
<title>alloc::raw_vec::RawVec$LT$T$C$A$GT$::reserve::h500ef385b8747b29 (10 samples, 0.02%)</title><rect x="25.4" y="341" width="0.3" height="15.0" fill="rgb(245,161,44)" rx="2" ry="2" />
<text x="28.38" y="351.5" ></text>
</g>
<g >
<title>__GI___libc_realloc (4 samples, 0.01%)</title><rect x="129.2" y="229" width="0.1" height="15.0" fill="rgb(206,32,48)" rx="2" ry="2" />
<text x="132.16" y="239.5" ></text>
</g>
<g >
<title>alloc_perturb (7 samples, 0.02%)</title><rect x="595.4" y="341" width="0.2" height="15.0" fill="rgb(239,123,15)" rx="2" ry="2" />
<text x="598.39" y="351.5" ></text>
</g>
<g >
<title>__GI___clock_gettime (5 samples, 0.01%)</title><rect x="1164.4" y="261" width="0.2" height="15.0" fill="rgb(210,65,54)" rx="2" ry="2" />
<text x="1167.43" y="271.5" ></text>
</g>
<g >
<title>alloc::raw_vec::RawVec$LT$T$C$A$GT$::reserve::h5e34cfad90a6ce21 (5 samples, 0.01%)</title><rect x="54.0" y="325" width="0.2" height="15.0" fill="rgb(245,48,11)" rx="2" ry="2" />
<text x="57.01" y="335.5" ></text>
</g>
<g >
<title>__rust_maybe_catch_panic (47 samples, 0.11%)</title><rect x="183.3" y="389" width="1.3" height="15.0" fill="rgb(226,100,31)" rx="2" ry="2" />
<text x="186.28" y="399.5" ></text>
</g>
<g >
<title>cranelift_codegen::regalloc::liveness::Liveness::compute::h5fc2c46ff15ebd51 (98 samples, 0.24%)</title><rect x="47.3" y="357" width="2.8" height="15.0" fill="rgb(211,176,10)" rx="2" ry="2" />
<text x="50.33" y="367.5" ></text>
</g>
<g >
<title>_ZN17cranelift_codegen8regalloc9diversion13RegDiversions6divert17h0dfdaeead6ef2c57E.llvm.6468024634034730254 (19 samples, 0.05%)</title><rect x="1148.8" y="341" width="0.5" height="15.0" fill="rgb(211,203,28)" rx="2" ry="2" />
<text x="1151.79" y="351.5" ></text>
</g>
<g >
<title>swapgs_restore_regs_and_return_to_usermode (5 samples, 0.01%)</title><rect x="10.9" y="469" width="0.1" height="15.0" fill="rgb(248,6,45)" rx="2" ry="2" />
<text x="13.86" y="479.5" ></text>
</g>
<g >
<title>std::sys::unix::time::inner::now::ha10452f37b2930c5 (6 samples, 0.01%)</title><rect x="112.4" y="213" width="0.2" height="15.0" fill="rgb(231,176,2)" rx="2" ry="2" />
<text x="115.41" y="223.5" ></text>
</g>
<g >
<title>cranelift_codegen::dominator_tree::DominatorTreePreorder::compute::hb821b7ecbf347c37 (10 samples, 0.02%)</title><rect x="1176.5" y="373" width="0.3" height="15.0" fill="rgb(253,138,25)" rx="2" ry="2" />
<text x="1179.50" y="383.5" ></text>
</g>
<g >
<title>_ZN9hashbrown3raw17RawTable$LT$T$GT$14reserve_rehash17h949d57d1e07c193dE.llvm.16938716460618634628 (18 samples, 0.04%)</title><rect x="136.1" y="229" width="0.5" height="15.0" fill="rgb(218,229,25)" rx="2" ry="2" />
<text x="139.07" y="239.5" ></text>
</g>
<g >
<title>cranelift_codegen::dominator_tree::DominatorTreePreorder::compute::hb821b7ecbf347c37 (7 samples, 0.02%)</title><rect x="1171.0" y="357" width="0.2" height="15.0" fill="rgb(249,8,13)" rx="2" ry="2" />
<text x="1173.99" y="367.5" ></text>
</g>
<g >
<title>__vdso_clock_gettime (4 samples, 0.01%)</title><rect x="1160.4" y="277" width="0.1" height="15.0" fill="rgb(242,118,42)" rx="2" ry="2" />
<text x="1163.43" y="287.5" ></text>
</g>
<g >
<title>cranelift_bforest::path::Path$LT$F$GT$::first::h256ba824701b413a (5 samples, 0.01%)</title><rect x="74.0" y="261" width="0.2" height="15.0" fill="rgb(236,226,26)" rx="2" ry="2" />
<text x="77.05" y="271.5" ></text>
</g>
<g >
<title>__GI___libc_malloc (6 samples, 0.01%)</title><rect x="1164.7" y="325" width="0.2" height="15.0" fill="rgb(236,69,26)" rx="2" ry="2" />
<text x="1167.71" y="335.5" ></text>
</g>
<g >
<title>_int_malloc (5 samples, 0.01%)</title><rect x="322.8" y="261" width="0.2" height="15.0" fill="rgb(251,18,29)" rx="2" ry="2" />
<text x="325.82" y="271.5" ></text>
</g>
<g >
<title>cranelift_codegen::constant_hash::probe::hd04e9b03fd50ee53 (11 samples, 0.03%)</title><rect x="326.2" y="325" width="0.3" height="15.0" fill="rgb(233,4,6)" rx="2" ry="2" />
<text x="329.19" y="335.5" ></text>
</g>
<g >
<title>wasmer_clif_backend::resolver::FuncResolverBuilder::new::h17aa56962b53b260 (19 samples, 0.05%)</title><rect x="186.6" y="229" width="0.6" height="15.0" fill="rgb(237,77,19)" rx="2" ry="2" />
<text x="189.64" y="239.5" ></text>
</g>
<g >
<title>__rdl_dealloc (9 samples, 0.02%)</title><rect x="772.9" y="373" width="0.2" height="15.0" fill="rgb(238,160,30)" rx="2" ry="2" />
<text x="775.89" y="383.5" ></text>
</g>
<g >
<title>core::ptr::real_drop_in_place::h8e38f4c4f35fb102 (80 samples, 0.19%)</title><rect x="178.3" y="357" width="2.3" height="15.0" fill="rgb(238,172,0)" rx="2" ry="2" />
<text x="181.31" y="367.5" ></text>
</g>
<g >
<title>_$LT$alloc..vec..Vec$LT$T$GT$$u20$as$u20$core..clone..Clone$GT$::clone::hed7bc371c65279af (9 samples, 0.02%)</title><rect x="62.5" y="309" width="0.3" height="15.0" fill="rgb(220,190,43)" rx="2" ry="2" />
<text x="65.55" y="319.5" ></text>
</g>
<g >
<title>alloc::raw_vec::RawVec$LT$T$C$A$GT$::reserve::h7d58c3dcd294aa1f (5 samples, 0.01%)</title><rect x="876.4" y="405" width="0.1" height="15.0" fill="rgb(226,57,52)" rx="2" ry="2" />
<text x="879.38" y="415.5" ></text>
</g>
<g >
<title>std::time::Instant::now::h33d2ba6042def2d2 (4 samples, 0.01%)</title><rect x="1162.3" y="341" width="0.1" height="15.0" fill="rgb(230,170,22)" rx="2" ry="2" />
<text x="1165.29" y="351.5" ></text>
</g>
<g >
<title>cranelift_codegen::settings::Flags::new::h4f222e483e8872a2 (4 samples, 0.01%)</title><rect x="327.7" y="357" width="0.1" height="15.0" fill="rgb(217,196,54)" rx="2" ry="2" />
<text x="330.73" y="367.5" ></text>
</g>
<g >
<title>[[vdso]] (4 samples, 0.01%)</title><rect x="119.4" y="165" width="0.1" height="15.0" fill="rgb(251,137,32)" rx="2" ry="2" />
<text x="122.43" y="175.5" ></text>
</g>
<g >
<title>__GI___libc_realloc (9 samples, 0.02%)</title><rect x="109.6" y="261" width="0.2" height="15.0" fill="rgb(214,102,14)" rx="2" ry="2" />
<text x="112.55" y="271.5" ></text>
</g>
<g >
<title>page_counter_uncharge (4 samples, 0.01%)</title><rect x="232.6" y="165" width="0.1" height="15.0" fill="rgb(245,134,27)" rx="2" ry="2" />
<text x="235.63" y="175.5" ></text>
</g>
<g >
<title>core::slice::_$LT$impl$u20$$u5b$T$u5d$$GT$::copy_from_slice::hf2a016039d5668ca (96 samples, 0.23%)</title><rect x="992.7" y="405" width="2.7" height="15.0" fill="rgb(251,74,19)" rx="2" ry="2" />
<text x="995.69" y="415.5" ></text>
</g>
<g >
<title>cranelift_codegen::regalloc::liveness::get_or_create::h5a0d21740424a6d5 (29 samples, 0.07%)</title><rect x="1173.0" y="357" width="0.8" height="15.0" fill="rgb(240,156,10)" rx="2" ry="2" />
<text x="1175.96" y="367.5" ></text>
</g>
<g >
<title>__GI___libc_realloc (4 samples, 0.01%)</title><rect x="1173.9" y="293" width="0.1" height="15.0" fill="rgb(241,17,5)" rx="2" ry="2" />
<text x="1176.90" y="303.5" ></text>
</g>
<g >
<title>std::time::Instant::elapsed::h8e307314b2acf9be (6 samples, 0.01%)</title><rect x="64.5" y="293" width="0.2" height="15.0" fill="rgb(230,123,46)" rx="2" ry="2" />
<text x="67.51" y="303.5" ></text>
</g>
<g >
<title>wasmer_runtime_core::compile_with_config::h2793fe8de72c0bc3 (6 samples, 0.01%)</title><rect x="184.6" y="373" width="0.2" height="15.0" fill="rgb(227,110,32)" rx="2" ry="2" />
<text x="187.62" y="383.5" ></text>
</g>
<g >
<title>exit_to_usermode_loop (5 samples, 0.01%)</title><rect x="10.9" y="437" width="0.1" height="15.0" fill="rgb(240,209,52)" rx="2" ry="2" />
<text x="13.86" y="447.5" ></text>
</g>
<g >
<title>alloc::raw_vec::RawVec$LT$T$C$A$GT$::reserve::h500ef385b8747b29 (4 samples, 0.01%)</title><rect x="139.4" y="213" width="0.1" height="15.0" fill="rgb(208,156,1)" rx="2" ry="2" />
<text x="142.41" y="223.5" ></text>
</g>
<g >
<title>_do_fork (9 samples, 0.02%)</title><rect x="1180.2" y="453" width="0.3" height="15.0" fill="rgb(230,161,2)" rx="2" ry="2" />
<text x="1183.24" y="463.5" ></text>
</g>
<g >
<title>std::time::Instant::now::h33d2ba6042def2d2 (4 samples, 0.01%)</title><rect x="1158.2" y="309" width="0.1" height="15.0" fill="rgb(235,62,47)" rx="2" ry="2" />
<text x="1161.23" y="319.5" ></text>
</g>
<g >
<title>perf_output_begin (6 samples, 0.01%)</title><rect x="295.6" y="165" width="0.2" height="15.0" fill="rgb(229,195,17)" rx="2" ry="2" />
<text x="298.62" y="175.5" ></text>
</g>
<g >
<title>std::sys::unix::time::inner::Instant::now::h23f1bea5949f1bbd (6 samples, 0.01%)</title><rect x="155.9" y="213" width="0.2" height="15.0" fill="rgb(248,3,38)" rx="2" ry="2" />
<text x="158.93" y="223.5" ></text>
</g>
<g >
<title>__GI___libc_malloc (16 samples, 0.04%)</title><rect x="1110.5" y="421" width="0.5" height="15.0" fill="rgb(237,0,19)" rx="2" ry="2" />
<text x="1113.54" y="431.5" ></text>
</g>
<g >
<title>alloc::raw_vec::RawVec$LT$T$C$A$GT$::reserve::h0c445b41f7c28667 (5 samples, 0.01%)</title><rect x="1171.9" y="309" width="0.1" height="15.0" fill="rgb(254,42,20)" rx="2" ry="2" />
<text x="1174.88" y="319.5" ></text>
</g>
<g >
<title>_$LT$$u5b$T$u5d$$u20$as$u20$rand..seq..SliceRandom$GT$::choose::hfbb574fdbd70dcbd (9 samples, 0.02%)</title><rect x="1110.0" y="437" width="0.2" height="15.0" fill="rgb(239,55,40)" rx="2" ry="2" />
<text x="1112.97" y="447.5" ></text>
</g>
<g >
<title>cranelift_codegen::legalizer::split::simplify_branch_arguments::hc015be84b07814bd (10 samples, 0.02%)</title><rect x="87.0" y="245" width="0.3" height="15.0" fill="rgb(248,159,45)" rx="2" ry="2" />
<text x="89.98" y="255.5" ></text>
</g>
<g >
<title>cranelift_codegen::regalloc::spilling::Spilling::run::hbc5ba3177617b881 (47 samples, 0.11%)</title><rect x="1174.8" y="373" width="1.3" height="15.0" fill="rgb(235,199,44)" rx="2" ry="2" />
<text x="1177.79" y="383.5" ></text>
</g>
<g >
<title>core::slice::_$LT$impl$u20$$u5b$T$u5d$$GT$::copy_from_slice::hf2a016039d5668ca (9 samples, 0.02%)</title><rect x="1019.4" y="421" width="0.3" height="15.0" fill="rgb(248,52,9)" rx="2" ry="2" />
<text x="1022.43" y="431.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (242 samples, 0.59%)</title><rect x="262.8" y="341" width="6.9" height="15.0" fill="rgb(217,23,45)" rx="2" ry="2" />
<text x="265.77" y="351.5" ></text>
</g>
<g >
<title>cranelift_entity::list::EntityList$LT$T$GT$::push::h051541d55e7ee057 (28 samples, 0.07%)</title><rect x="80.2" y="245" width="0.8" height="15.0" fill="rgb(221,185,3)" rx="2" ry="2" />
<text x="83.18" y="255.5" ></text>
</g>
<g >
<title>wasmparser::operators_validator::OperatorValidator::check_block_return::haf4dccb6c9dcd005 (5 samples, 0.01%)</title><rect x="696.8" y="357" width="0.1" height="15.0" fill="rgb(254,117,11)" rx="2" ry="2" />
<text x="699.77" y="367.5" ></text>
</g>
<g >
<title>do_syscall_64 (4 samples, 0.01%)</title><rect x="184.5" y="277" width="0.1" height="15.0" fill="rgb(220,8,17)" rx="2" ry="2" />
<text x="187.50" y="287.5" ></text>
</g>
<g >
<title>cranelift_codegen::legalizer::boundary::legalize_signatures::h52a202846af65f87 (23 samples, 0.06%)</title><rect x="1170.0" y="357" width="0.7" height="15.0" fill="rgb(249,6,25)" rx="2" ry="2" />
<text x="1173.02" y="367.5" ></text>
</g>
<g >
<title>cranelift_codegen::unreachable_code::eliminate_unreachable_code::he5a7c427cf1b37ff (20 samples, 0.05%)</title><rect x="170.9" y="293" width="0.6" height="15.0" fill="rgb(240,106,41)" rx="2" ry="2" />
<text x="173.92" y="303.5" ></text>
</g>
<g >
<title>cranelift_codegen::legalizer::split::split_ebb_params::he3edb3e49d817505 (4 samples, 0.01%)</title><rect x="1155.0" y="325" width="0.1" height="15.0" fill="rgb(209,153,38)" rx="2" ry="2" />
<text x="1157.98" y="335.5" ></text>
</g>
<g >
<title>sys_mprotect (7 samples, 0.02%)</title><rect x="186.4" y="149" width="0.2" height="15.0" fill="rgb(241,116,51)" rx="2" ry="2" />
<text x="189.44" y="159.5" ></text>
</g>
<g >
<title>__GI___libc_malloc (7 samples, 0.02%)</title><rect x="854.5" y="437" width="0.2" height="15.0" fill="rgb(211,226,33)" rx="2" ry="2" />
<text x="857.52" y="447.5" ></text>
</g>
<g >
<title>sys_munmap (5 samples, 0.01%)</title><rect x="185.6" y="197" width="0.1" height="15.0" fill="rgb(229,119,41)" rx="2" ry="2" />
<text x="188.56" y="207.5" ></text>
</g>
<g >
<title>hashbrown::raw::RawTable$LT$T$GT$::try_with_capacity::h7a6e6bae489d4fe9 (13 samples, 0.03%)</title><rect x="43.1" y="293" width="0.3" height="15.0" fill="rgb(238,173,53)" rx="2" ry="2" />
<text x="46.05" y="303.5" ></text>
</g>
<g >
<title>_int_free (5 samples, 0.01%)</title><rect x="311.5" y="309" width="0.1" height="15.0" fill="rgb(240,229,47)" rx="2" ry="2" />
<text x="314.49" y="319.5" ></text>
</g>
<g >
<title>__memset_avx2 (10 samples, 0.02%)</title><rect x="876.1" y="405" width="0.3" height="15.0" fill="rgb(230,23,7)" rx="2" ry="2" />
<text x="879.10" y="415.5" ></text>
</g>
<g >
<title>_$LT$core..iter..adapters..Cloned$LT$I$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$::fold::h70a7f85ebaece8d1 (203 samples, 0.49%)</title><rect x="1061.9" y="421" width="5.8" height="15.0" fill="rgb(229,40,28)" rx="2" ry="2" />
<text x="1064.90" y="431.5" ></text>
</g>
<g >
<title>std::sys::unix::time::inner::Instant::now::h23f1bea5949f1bbd (6 samples, 0.01%)</title><rect x="318.5" y="325" width="0.2" height="15.0" fill="rgb(230,228,54)" rx="2" ry="2" />
<text x="321.48" y="335.5" ></text>
</g>
<g >
<title>wasmer_runtime_core::backing::LocalBacking::new::h9729591e2bf3454e (86 samples, 0.21%)</title><rect x="874.1" y="421" width="2.5" height="15.0" fill="rgb(228,176,1)" rx="2" ry="2" />
<text x="877.13" y="431.5" ></text>
</g>
<g >
<title>cranelift_codegen::ir::dfg::DataFlowGraph::make_ebb::hb6736aafedf924cd (4 samples, 0.01%)</title><rect x="323.2" y="373" width="0.1" height="15.0" fill="rgb(228,35,1)" rx="2" ry="2" />
<text x="326.16" y="383.5" ></text>
</g>
<g >
<title>cranelift_codegen::regalloc::liverange::GenericLiveRange$LT$PO$GT$::extend_in_ebb::hbdb01049c0b9a2e0 (15 samples, 0.04%)</title><rect x="148.4" y="261" width="0.5" height="15.0" fill="rgb(239,58,35)" rx="2" ry="2" />
<text x="151.43" y="271.5" ></text>
</g>
<g >
<title>do_syscall_64 (301 samples, 0.73%)</title><rect x="227.5" y="341" width="8.6" height="15.0" fill="rgb(253,127,46)" rx="2" ry="2" />
<text x="230.46" y="351.5" ></text>
</g>
<g >
<title>__GI___clock_gettime (6 samples, 0.01%)</title><rect x="155.9" y="181" width="0.2" height="15.0" fill="rgb(245,30,15)" rx="2" ry="2" />
<text x="158.93" y="191.5" ></text>
</g>
<g >
<title>cranelift_codegen::context::Context::shrink_instructions::he0b1678d1727ad37 (347 samples, 0.84%)</title><rect x="26.5" y="373" width="9.9" height="15.0" fill="rgb(254,30,48)" rx="2" ry="2" />
<text x="29.47" y="383.5" ></text>
</g>
<g >
<title>get_unmapped_area (24 samples, 0.06%)</title><rect x="345.5" y="245" width="0.6" height="15.0" fill="rgb(232,17,24)" rx="2" ry="2" />
<text x="348.45" y="255.5" ></text>
</g>
<g >
<title>std::sys::unix::time::inner::now::ha10452f37b2930c5 (6 samples, 0.01%)</title><rect x="131.5" y="229" width="0.2" height="15.0" fill="rgb(253,46,26)" rx="2" ry="2" />
<text x="134.50" y="239.5" ></text>
</g>
<g >
<title>_int_malloc (5 samples, 0.01%)</title><rect x="810.2" y="325" width="0.2" height="15.0" fill="rgb(215,29,8)" rx="2" ry="2" />
<text x="813.22" y="335.5" ></text>
</g>
<g >
<title>std::time::Instant::now::h33d2ba6042def2d2 (5 samples, 0.01%)</title><rect x="1154.1" y="293" width="0.1" height="15.0" fill="rgb(229,69,41)" rx="2" ry="2" />
<text x="1157.07" y="303.5" ></text>
</g>
<g >
<title>cranelift_codegen::regalloc::coalescing::DomForest::push_node::h7bf50934d429ea56 (25 samples, 0.06%)</title><rect x="127.6" y="261" width="0.7" height="15.0" fill="rgb(223,176,41)" rx="2" ry="2" />
<text x="130.56" y="271.5" ></text>
</g>
<g >
<title>hashbrown::map::HashMap$LT$K$C$V$C$S$GT$::insert::h7f71a0adc74f5535 (15 samples, 0.04%)</title><rect x="814.7" y="373" width="0.5" height="15.0" fill="rgb(249,3,28)" rx="2" ry="2" />
<text x="817.73" y="383.5" ></text>
</g>
<g >
<title>std::time::Instant::now::h33d2ba6042def2d2 (5 samples, 0.01%)</title><rect x="24.4" y="309" width="0.1" height="15.0" fill="rgb(247,211,15)" rx="2" ry="2" />
<text x="27.36" y="319.5" ></text>
</g>
<g >
<title>core::ptr::real_drop_in_place::h096927e62fedec5f (16 samples, 0.04%)</title><rect x="195.9" y="229" width="0.4" height="15.0" fill="rgb(234,196,23)" rx="2" ry="2" />
<text x="198.86" y="239.5" ></text>
</g>
<g >
<title>cranelift_codegen::legalizer::expand_flags::hf22fb7652a0ec5c8 (16 samples, 0.04%)</title><rect x="86.3" y="229" width="0.5" height="15.0" fill="rgb(210,132,9)" rx="2" ry="2" />
<text x="89.35" y="239.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (6 samples, 0.01%)</title><rect x="186.8" y="181" width="0.2" height="15.0" fill="rgb(205,148,41)" rx="2" ry="2" />
<text x="189.79" y="191.5" ></text>
</g>
<g >
<title>alloc::raw_vec::RawVec$LT$T$C$A$GT$::reserve::h500ef385b8747b29 (11 samples, 0.03%)</title><rect x="1159.7" y="341" width="0.3" height="15.0" fill="rgb(254,1,52)" rx="2" ry="2" />
<text x="1162.69" y="351.5" ></text>
</g>
<g >
<title>cranelift_codegen::ir::dfg::DataFlowGraph::append_result::h44f9432a950b5ad1 (5 samples, 0.01%)</title><rect x="1167.7" y="181" width="0.1" height="15.0" fill="rgb(235,164,10)" rx="2" ry="2" />
<text x="1170.68" y="191.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 (66 samples, 0.16%)</title><rect x="349.9" y="405" width="1.9" height="15.0" fill="rgb(210,0,48)" rx="2" ry="2" />
<text x="352.90" y="415.5" ></text>
</g>
<g >
<title>cranelift_codegen::ir::dfg::DataFlowGraph::append_ebb_param::h7014c3b1302a9186 (75 samples, 0.18%)</title><rect x="320.9" y="373" width="2.2" height="15.0" fill="rgb(244,224,43)" rx="2" ry="2" />
<text x="323.93" y="383.5" ></text>
</g>
<g >
<title>__rust_dealloc (6 samples, 0.01%)</title><rect x="730.7" y="389" width="0.1" height="15.0" fill="rgb(220,198,47)" rx="2" ry="2" />
<text x="733.68" y="399.5" ></text>
</g>
<g >
<title>__GI___libc_malloc (897 samples, 2.17%)</title><rect x="570.0" y="373" width="25.6" height="15.0" fill="rgb(221,197,31)" rx="2" ry="2" />
<text x="572.99" y="383.5" >_..</text>
</g>
<g >
<title>std::sys::unix::time::inner::Instant::now::h23f1bea5949f1bbd (5 samples, 0.01%)</title><rect x="64.5" y="261" width="0.2" height="15.0" fill="rgb(218,11,15)" rx="2" ry="2" />
<text x="67.54" y="271.5" ></text>
</g>
<g >
<title>std::sys::unix::time::inner::Instant::now::h23f1bea5949f1bbd (5 samples, 0.01%)</title><rect x="117.1" y="261" width="0.2" height="15.0" fill="rgb(235,22,6)" rx="2" ry="2" />
<text x="120.15" y="271.5" ></text>
</g>
<g >
<title>alloc::raw_vec::RawVec$LT$T$C$A$GT$::reserve::h500ef385b8747b29 (8 samples, 0.02%)</title><rect x="49.6" y="309" width="0.2" height="15.0" fill="rgb(231,216,21)" rx="2" ry="2" />
<text x="52.56" y="319.5" ></text>
</g>
<g >
<title>get_vma_policy.part.30 (6 samples, 0.01%)</title><rect x="278.1" y="277" width="0.1" height="15.0" fill="rgb(232,47,39)" rx="2" ry="2" />
<text x="281.06" y="287.5" ></text>
</g>
<g >
<title>hashbrown::raw::RawTable$LT$T$GT$::reserve_rehash::h145328e315fce2fd (17 samples, 0.04%)</title><rect x="193.4" y="181" width="0.5" height="15.0" fill="rgb(217,153,53)" rx="2" ry="2" />
<text x="196.41" y="191.5" ></text>
</g>
<g >
<title>_int_free (11 samples, 0.03%)</title><rect x="179.5" y="309" width="0.3" height="15.0" fill="rgb(221,107,51)" rx="2" ry="2" />
<text x="182.48" y="319.5" ></text>
</g>
<g >
<title>rayon::result::_$LT$impl$u20$rayon..iter..FromParallelIterator$LT$core..result..Result$LT$T$C$E$GT$$GT$$u20$for$u20$core..result..Result$LT$C$C$E$GT$$GT$::from_par_iter::h1e10d100eaa83031 (97 samples, 0.23%)</title><rect x="280.1" y="373" width="2.7" height="15.0" fill="rgb(208,115,28)" rx="2" ry="2" />
<text x="283.06" y="383.5" ></text>
</g>
<g >
<title>cranelift_codegen::regalloc::coloring::Context::visit_inst::h157ddbfc9a018b2b (282 samples, 0.68%)</title><rect x="39.2" y="357" width="8.1" height="15.0" fill="rgb(221,176,46)" rx="2" ry="2" />
<text x="42.23" y="367.5" ></text>
</g>
<g >
<title>anon_vma_interval_tree_insert (4 samples, 0.01%)</title><rect x="269.3" y="229" width="0.1" height="15.0" fill="rgb(254,191,8)" rx="2" ry="2" />
<text x="272.27" y="239.5" ></text>
</g>
<g >
<title>__GI___clock_gettime (4 samples, 0.01%)</title><rect x="24.4" y="261" width="0.1" height="15.0" fill="rgb(227,124,48)" rx="2" ry="2" />
<text x="27.39" y="271.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 (270 samples, 0.65%)</title><rect x="174.3" y="453" width="7.7" height="15.0" fill="rgb(222,180,31)" rx="2" ry="2" />
<text x="177.29" y="463.5" ></text>
</g>
<g >
<title>flush_tlb_mm_range (29 samples, 0.07%)</title><rect x="239.2" y="245" width="0.8" height="15.0" fill="rgb(236,166,18)" rx="2" ry="2" />
<text x="242.19" y="255.5" ></text>
</g>
<g >
<title>_int_malloc (4 samples, 0.01%)</title><rect x="60.9" y="277" width="0.2" height="15.0" fill="rgb(237,28,24)" rx="2" ry="2" />
<text x="63.95" y="287.5" ></text>
</g>
<g >
<title>__memset_sse2 (17 samples, 0.04%)</title><rect x="261.7" y="357" width="0.5" height="15.0" fill="rgb(223,15,48)" rx="2" ry="2" />
<text x="264.74" y="367.5" ></text>
</g>
<g >
<title>alloc::raw_vec::RawVec$LT$T$C$A$GT$::reserve::h209de9d6031d8f72 (4 samples, 0.01%)</title><rect x="164.7" y="245" width="0.1" height="15.0" fill="rgb(239,60,30)" rx="2" ry="2" />
<text x="167.70" y="255.5" ></text>
</g>
<g >
<title>cranelift_codegen::ir::dfg::DataFlowGraph::ctrl_typevar::h001f83f02149e995 (4 samples, 0.01%)</title><rect x="1162.1" y="341" width="0.2" height="15.0" fill="rgb(226,92,7)" rx="2" ry="2" />
<text x="1165.14" y="351.5" ></text>
</g>
<g >
<title>parity_wasm::elements::func::FuncBody::new::h9993762f12bb7897 (16 samples, 0.04%)</title><rect x="1099.8" y="437" width="0.5" height="15.0" fill="rgb(206,144,31)" rx="2" ry="2" />
<text x="1102.81" y="447.5" ></text>
</g>
<g >
<title>wasmer_runtime_core::sys::unix::memory::Memory::protect::hc4dfd0a2abe36912 (7 samples, 0.02%)</title><rect x="186.4" y="213" width="0.2" height="15.0" fill="rgb(248,158,6)" rx="2" ry="2" />
<text x="189.44" y="223.5" ></text>
</g>
<g >
<title>wasmer_runtime_core::codegen::MiddlewareChain::run::hcbfec81dbf94244f (38 samples, 0.09%)</title><rect x="849.6" y="389" width="1.1" height="15.0" fill="rgb(225,71,2)" rx="2" ry="2" />
<text x="852.64" y="399.5" ></text>
</g>
<g >
<title>cranelift_entity::sparse::SparseMap$LT$K$C$V$GT$::insert::h31013d437c52e258 (30 samples, 0.07%)</title><rect x="140.4" y="245" width="0.9" height="15.0" fill="rgb(231,69,10)" rx="2" ry="2" />
<text x="143.44" y="255.5" ></text>
</g>
<g >
<title>__vdso_clock_gettime (5 samples, 0.01%)</title><rect x="152.3" y="197" width="0.1" height="15.0" fill="rgb(230,100,43)" rx="2" ry="2" />
<text x="155.25" y="207.5" ></text>
</g>
<g >
<title>cranelift_codegen::loop_analysis::LoopAnalysis::compute::h2ae6e7af869a79fa (12 samples, 0.03%)</title><rect x="1161.3" y="357" width="0.4" height="15.0" fill="rgb(243,25,47)" rx="2" ry="2" />
<text x="1164.32" y="367.5" ></text>
</g>
<g >
<title>cranelift_codegen::ir::instructions::InstructionData::analyze_branch::h1af3091a9a9e30c3 (4 samples, 0.01%)</title><rect x="1161.0" y="325" width="0.1" height="15.0" fill="rgb(217,82,28)" rx="2" ry="2" />
<text x="1163.97" y="335.5" ></text>
</g>
<g >
<title>cranelift_bforest::path::Path$LT$F$GT$::next::h50188cd678c454ba (9 samples, 0.02%)</title><rect x="126.5" y="261" width="0.3" height="15.0" fill="rgb(239,66,22)" rx="2" ry="2" />
<text x="129.51" y="271.5" ></text>
</g>
<g >
<title>cranelift_entity::list::ListPool$LT$T$GT$::alloc::hf8b79c8ce8fc5d1f (22 samples, 0.05%)</title><rect x="320.2" y="341" width="0.6" height="15.0" fill="rgb(239,225,19)" rx="2" ry="2" />
<text x="323.22" y="351.5" ></text>
</g>
<g >
<title>__memcpy_avx_unaligned (23 samples, 0.06%)</title><rect x="301.1" y="373" width="0.6" height="15.0" fill="rgb(220,171,54)" rx="2" ry="2" />
<text x="304.07" y="383.5" ></text>
</g>
<g >
<title>_start (724 samples, 1.75%)</title><rect x="184.8" y="501" width="20.7" height="15.0" fill="rgb(222,108,51)" rx="2" ry="2" />
<text x="187.82" y="511.5" ></text>
</g>
<g >
<title>__GI___libc_realloc (6 samples, 0.01%)</title><rect x="1174.6" y="309" width="0.2" height="15.0" fill="rgb(234,93,53)" rx="2" ry="2" />
<text x="1177.62" y="319.5" ></text>
</g>
<g >
<title>wasmer_runtime_core::parse::read_module::h3875b654eed5ef74 (43 samples, 0.10%)</title><rect x="197.1" y="245" width="1.2" height="15.0" fill="rgb(228,2,46)" rx="2" ry="2" />
<text x="200.09" y="255.5" ></text>
</g>
<g >
<title>std::rt::lang_start_internal::_$u7b$$u7b$closure$u7d$$u7d$::h6ea535ec5c50fc3e (722 samples, 1.75%)</title><rect x="184.8" y="373" width="20.7" height="15.0" fill="rgb(221,10,5)" rx="2" ry="2" />
<text x="187.85" y="383.5" ></text>
</g>
<g >
<title>__memcpy_avx_unaligned (18 samples, 0.04%)</title><rect x="729.6" y="389" width="0.5" height="15.0" fill="rgb(234,48,53)" rx="2" ry="2" />
<text x="732.57" y="399.5" ></text>
</g>
<g >
<title>__lock_text_start (6 samples, 0.01%)</title><rect x="232.1" y="181" width="0.2" height="15.0" fill="rgb(237,97,11)" rx="2" ry="2" />
<text x="235.11" y="191.5" ></text>
</g>
<g >
<title>cranelift_codegen::context::Context::compile_and_emit::h5499205207e7951f (222 samples, 0.54%)</title><rect x="312.5" y="373" width="6.3" height="15.0" fill="rgb(244,140,31)" rx="2" ry="2" />
<text x="315.46" y="383.5" ></text>
</g>
<g >
<title>wasmer_runtime_core::module::Module::instantiate::h6d7aa260ea24db84 (235 samples, 0.57%)</title><rect x="870.2" y="453" width="6.7" height="15.0" fill="rgb(248,13,37)" rx="2" ry="2" />
<text x="873.16" y="463.5" ></text>
</g>
<g >
<title>__GI___libc_malloc (6 samples, 0.01%)</title><rect x="1160.1" y="325" width="0.1" height="15.0" fill="rgb(253,47,16)" rx="2" ry="2" />
<text x="1163.06" y="335.5" ></text>
</g>
<g >
<title>__rust_alloc (4 samples, 0.01%)</title><rect x="618.3" y="357" width="0.1" height="15.0" fill="rgb(238,132,25)" rx="2" ry="2" />
<text x="621.28" y="367.5" ></text>
</g>
<g >
<title>sys_mmap_pgoff (231 samples, 0.56%)</title><rect x="290.5" y="293" width="6.6" height="15.0" fill="rgb(233,25,43)" rx="2" ry="2" />
<text x="293.54" y="303.5" ></text>
</g>
<g >
<title>__GI___clock_gettime (7 samples, 0.02%)</title><rect x="107.4" y="229" width="0.2" height="15.0" fill="rgb(225,96,25)" rx="2" ry="2" />
<text x="110.44" y="239.5" ></text>
</g>
<g >
<title>__memcpy_avx_unaligned (14 samples, 0.03%)</title><rect x="261.3" y="357" width="0.4" height="15.0" fill="rgb(242,148,28)" rx="2" ry="2" />
<text x="264.34" y="367.5" ></text>
</g>
<g >
<title>wasmer_runtime_core::instance::call_func_with_index_inner::h484a2214ddaa0611 (383 samples, 0.93%)</title><rect x="858.3" y="421" width="10.9" height="15.0" fill="rgb(207,141,35)" rx="2" ry="2" />
<text x="861.26" y="431.5" ></text>
</g>
<g >
<title>alloc::raw_vec::RawVec$LT$T$C$A$GT$::reserve::h5e34cfad90a6ce21 (5 samples, 0.01%)</title><rect x="1167.7" y="165" width="0.1" height="15.0" fill="rgb(209,76,52)" rx="2" ry="2" />
<text x="1170.68" y="175.5" ></text>
</g>
<g >
<title>_ZN16cranelift_entity4list17ListPool$LT$T$GT$5alloc17h7031e3fd97879e16E.llvm.776987249141506950 (15 samples, 0.04%)</title><rect x="129.6" y="229" width="0.4" height="15.0" fill="rgb(237,117,53)" rx="2" ry="2" />
<text x="132.62" y="239.5" ></text>
</g>
<g >
<title>_$LT$cranelift_codegen..timing..details..TimingToken$u20$as$u20$core..ops..drop..Drop$GT$::drop::h1b19c2a93ee0a091 (9 samples, 0.02%)</title><rect x="1170.7" y="357" width="0.2" height="15.0" fill="rgb(225,147,9)" rx="2" ry="2" />
<text x="1173.68" y="367.5" ></text>
</g>
<g >
<title>vma_merge (41 samples, 0.10%)</title><rect x="287.8" y="261" width="1.2" height="15.0" fill="rgb(250,119,47)" rx="2" ry="2" />
<text x="290.80" y="271.5" ></text>
</g>
<g >
<title>__GI___libc_free (4 samples, 0.01%)</title><rect x="280.3" y="357" width="0.1" height="15.0" fill="rgb(253,200,18)" rx="2" ry="2" />
<text x="283.32" y="367.5" ></text>
</g>
<g >
<title>__GI___libc_malloc (318 samples, 0.77%)</title><rect x="1031.1" y="405" width="9.1" height="15.0" fill="rgb(243,147,34)" rx="2" ry="2" />
<text x="1034.14" y="415.5" ></text>
</g>
<g >
<title>_int_realloc (16 samples, 0.04%)</title><rect x="805.1" y="309" width="0.5" height="15.0" fill="rgb(252,53,15)" rx="2" ry="2" />
<text x="808.12" y="319.5" ></text>
</g>
<g >
<title>cranelift_codegen::ir::instructions::InstructionData::arguments::h70ecdef19e20b02a (7 samples, 0.02%)</title><rect x="30.2" y="309" width="0.2" height="15.0" fill="rgb(230,194,12)" rx="2" ry="2" />
<text x="33.24" y="319.5" ></text>
</g>
<g >
<title>perf_event_mmap_output (27 samples, 0.07%)</title><rect x="268.2" y="213" width="0.7" height="15.0" fill="rgb(240,198,5)" rx="2" ry="2" />
<text x="271.16" y="223.5" ></text>
</g>
<g >
<title>sys_mprotect (194 samples, 0.47%)</title><rect x="283.8" y="309" width="5.6" height="15.0" fill="rgb(239,228,21)" rx="2" ry="2" />
<text x="286.83" y="319.5" ></text>
</g>
<g >
<title>cranelift_codegen::scoped_hash_map::ScopedHashMap$LT$K$C$V$GT$::decrement_depth::hf6d6ab0429c2a14c (5 samples, 0.01%)</title><rect x="165.6" y="277" width="0.2" height="15.0" fill="rgb(226,74,16)" rx="2" ry="2" />
<text x="168.61" y="287.5" ></text>
</g>
<g >
<title>std::time::Instant::now::h33d2ba6042def2d2 (7 samples, 0.02%)</title><rect x="114.7" y="277" width="0.2" height="15.0" fill="rgb(208,67,35)" rx="2" ry="2" />
<text x="117.66" y="287.5" ></text>
</g>
<g >
<title>_int_realloc (9 samples, 0.02%)</title><rect x="946.9" y="357" width="0.2" height="15.0" fill="rgb(206,100,38)" rx="2" ry="2" />
<text x="949.85" y="367.5" ></text>
</g>
<g >
<title>change_protection_range (13 samples, 0.03%)</title><rect x="284.7" y="245" width="0.4" height="15.0" fill="rgb(223,200,12)" rx="2" ry="2" />
<text x="287.74" y="255.5" ></text>
</g>
<g >
<title>__GI___libc_realloc (5 samples, 0.01%)</title><rect x="49.6" y="293" width="0.2" height="15.0" fill="rgb(231,195,10)" rx="2" ry="2" />
<text x="52.62" y="303.5" ></text>
</g>
<g >
<title>alloc::raw_vec::RawVec$LT$T$C$A$GT$::reserve::hd6c8f26eb3c9fb4b (4 samples, 0.01%)</title><rect x="156.2" y="261" width="0.1" height="15.0" fill="rgb(242,77,53)" rx="2" ry="2" />
<text x="159.19" y="271.5" ></text>
</g>
<g >
<title>cranelift_codegen::isa::x86::enc_tables::size_plus_maybe_sib_or_offset_for_in_reg_0::h45f17ad339ad9f42 (8 samples, 0.02%)</title><rect x="35.6" y="341" width="0.2" height="15.0" fill="rgb(205,13,14)" rx="2" ry="2" />
<text x="38.60" y="351.5" ></text>
</g>
<g >
<title>_int_malloc (8 samples, 0.02%)</title><rect x="273.4" y="357" width="0.2" height="15.0" fill="rgb(249,130,51)" rx="2" ry="2" />
<text x="276.38" y="367.5" ></text>
</g>
<g >
<title>__GI___libc_realloc (6 samples, 0.01%)</title><rect x="806.1" y="325" width="0.2" height="15.0" fill="rgb(249,196,5)" rx="2" ry="2" />
<text x="809.09" y="335.5" ></text>
</g>
<g >
<title>std::rt::lang_start_internal::h3bdc4c7d98181bf9 (6 samples, 0.01%)</title><rect x="1167.2" y="501" width="0.1" height="15.0" fill="rgb(243,21,7)" rx="2" ry="2" />
<text x="1170.17" y="511.5" ></text>
</g>
<g >
<title>core::str::from_utf8::h5960e424c2aef74c (98 samples, 0.24%)</title><rect x="518.2" y="309" width="2.8" height="15.0" fill="rgb(239,165,21)" rx="2" ry="2" />
<text x="521.24" y="319.5" ></text>
</g>
<g >
<title>_ZN81_$LT$std..collections..hash..map..DefaultHasher$u20$as$u20$core..hash..Hasher$GT$5write17hce30e4f96ad2e64eE.llvm.10396957835513704427 (4 samples, 0.01%)</title><rect x="869.9" y="405" width="0.1" height="15.0" fill="rgb(243,82,32)" rx="2" ry="2" />
<text x="872.90" y="415.5" ></text>
</g>
<g >
<title>__vdso_clock_gettime (7 samples, 0.02%)</title><rect x="1166.0" y="245" width="0.2" height="15.0" fill="rgb(245,169,22)" rx="2" ry="2" />
<text x="1169.00" y="255.5" ></text>
</g>
<g >
<title>security_vm_enough_memory_mm (6 samples, 0.01%)</title><rect x="287.6" y="261" width="0.2" height="15.0" fill="rgb(222,191,42)" rx="2" ry="2" />
<text x="290.63" y="271.5" ></text>
</g>
<g >
<title>_$LT$cranelift_codegen..isa..enc_tables..Encodings$u20$as$u20$core..iter..traits..iterator..Iterator$GT$::next::he6ba202105922eb5 (12 samples, 0.03%)</title><rect x="31.3" y="341" width="0.4" height="15.0" fill="rgb(232,76,26)" rx="2" ry="2" />
<text x="34.35" y="351.5" ></text>
</g>
<g >
<title>__GI___libc_free (677 samples, 1.64%)</title><rect x="732.6" y="373" width="19.3" height="15.0" fill="rgb(223,148,36)" rx="2" ry="2" />
<text x="735.62" y="383.5" ></text>
</g>
<g >
<title>alloc::raw_vec::RawVec$LT$T$C$A$GT$::reserve::h209de9d6031d8f72 (4 samples, 0.01%)</title><rect x="83.6" y="197" width="0.1" height="15.0" fill="rgb(243,24,13)" rx="2" ry="2" />
<text x="86.58" y="207.5" ></text>
</g>
<g >
<title>cranelift_codegen::binemit::shrink::shrink_instructions::h2efbaf74a574d406 (256 samples, 0.62%)</title><rect x="98.5" y="277" width="7.3" height="15.0" fill="rgb(217,85,4)" rx="2" ry="2" />
<text x="101.54" y="287.5" ></text>
</g>
<g >
<title>cranelift_codegen::regalloc::live_value_tracker::LiveValueTracker::ebb_top::hfe56a550654953ca (15 samples, 0.04%)</title><rect x="1175.0" y="357" width="0.4" height="15.0" fill="rgb(218,180,30)" rx="2" ry="2" />
<text x="1177.96" y="367.5" ></text>
</g>
<g >
<title>cranelift_codegen::abi::legalize_args::he47515d3a3ad0ee6 (15 samples, 0.04%)</title><rect x="15.7" y="309" width="0.4" height="15.0" fill="rgb(231,219,16)" rx="2" ry="2" />
<text x="18.71" y="319.5" ></text>
</g>
<g >
<title>_$LT$parity_wasm..elements..func..FuncBody$u20$as$u20$parity_wasm..elements..Serialize$GT$::serialize::h6e9e4c32eabcc851 (138 samples, 0.33%)</title><rect x="199.4" y="293" width="4.0" height="15.0" fill="rgb(216,191,11)" rx="2" ry="2" />
<text x="202.43" y="303.5" ></text>
</g>
<g >
<title>std::sys::unix::time::inner::Instant::now::h23f1bea5949f1bbd (6 samples, 0.01%)</title><rect x="112.4" y="229" width="0.2" height="15.0" fill="rgb(245,75,25)" rx="2" ry="2" />
<text x="115.41" y="239.5" ></text>
</g>
<g >
<title>__vdso_clock_gettime (4 samples, 0.01%)</title><rect x="51.7" y="245" width="0.1" height="15.0" fill="rgb(234,134,12)" rx="2" ry="2" />
<text x="54.73" y="255.5" ></text>
</g>
<g >
<title>_$LT$cranelift_codegen..timing..details..TimingToken$u20$as$u20$core..ops..drop..Drop$GT$::drop::h1b19c2a93ee0a091 (10 samples, 0.02%)</title><rect x="87.5" y="261" width="0.3" height="15.0" fill="rgb(249,228,20)" rx="2" ry="2" />
<text x="90.49" y="271.5" ></text>
</g>
<g >
<title>_ZN16cranelift_entity4list17ListPool$LT$T$GT$5alloc17h7031e3fd97879e16E.llvm.776987249141506950 (14 samples, 0.03%)</title><rect x="802.4" y="325" width="0.4" height="15.0" fill="rgb(231,207,48)" rx="2" ry="2" />
<text x="805.40" y="335.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (6 samples, 0.01%)</title><rect x="187.0" y="181" width="0.2" height="15.0" fill="rgb(215,150,28)" rx="2" ry="2" />
<text x="189.99" y="191.5" ></text>
</g>
<g >
<title>__GI___libc_malloc (4 samples, 0.01%)</title><rect x="160.0" y="213" width="0.1" height="15.0" fill="rgb(253,21,38)" rx="2" ry="2" />
<text x="163.02" y="223.5" ></text>
</g>
<g >
<title>std::sys::unix::time::inner::now::ha10452f37b2930c5 (10 samples, 0.02%)</title><rect x="119.3" y="213" width="0.2" height="15.0" fill="rgb(234,129,27)" rx="2" ry="2" />
<text x="122.26" y="223.5" ></text>
</g>
<g >
<title>sys_mprotect (228 samples, 0.55%)</title><rect x="263.2" y="309" width="6.5" height="15.0" fill="rgb(228,65,3)" rx="2" ry="2" />
<text x="266.16" y="319.5" ></text>
</g>
<g >
<title>rayon_core::registry::WorkerThread::wait_until_cold::h7fe04d79d0f90279 (47 samples, 0.11%)</title><rect x="183.3" y="325" width="1.3" height="15.0" fill="rgb(236,61,35)" rx="2" ry="2" />
<text x="186.28" y="335.5" ></text>
</g>
<g >
<title>wasmer_clif_fork_frontend::frontend::FunctionBuilder::ebb_params::h35de223427a33c5c (5 samples, 0.01%)</title><rect x="806.8" y="373" width="0.1" height="15.0" fill="rgb(211,118,18)" rx="2" ry="2" />
<text x="809.77" y="383.5" ></text>
</g>
<g >
<title>std::sys::unix::time::inner::now::ha10452f37b2930c5 (6 samples, 0.01%)</title><rect x="155.9" y="197" width="0.2" height="15.0" fill="rgb(248,52,46)" rx="2" ry="2" />
<text x="158.93" y="207.5" ></text>
</g>
<g >
<title>__rdl_alloc (14 samples, 0.03%)</title><rect x="1140.5" y="437" width="0.4" height="15.0" fill="rgb(228,150,13)" rx="2" ry="2" />
<text x="1143.45" y="447.5" ></text>
</g>
<g >
<title>_$LT$cranelift_codegen..timing..details..TimingToken$u20$as$u20$core..ops..drop..Drop$GT$::drop::h1b19c2a93ee0a091 (5 samples, 0.01%)</title><rect x="1166.6" y="341" width="0.2" height="15.0" fill="rgb(250,37,39)" rx="2" ry="2" />
<text x="1169.62" y="351.5" ></text>
</g>
<g >
<title>alloc::raw_vec::RawVec$LT$T$C$A$GT$::reserve::hbfb989f525a2d15c (74 samples, 0.18%)</title><rect x="859.6" y="405" width="2.1" height="15.0" fill="rgb(217,184,51)" rx="2" ry="2" />
<text x="862.57" y="415.5" ></text>
</g>
<g >
<title>hashbrown::map::HashMap$LT$K$C$V$C$S$GT$::remove::hb674e5732ef2fe56 (8 samples, 0.02%)</title><rect x="142.4" y="261" width="0.2" height="15.0" fill="rgb(251,2,12)" rx="2" ry="2" />
<text x="145.38" y="271.5" ></text>
</g>
<g >
<title>__memcpy_avx_unaligned (9 samples, 0.02%)</title><rect x="945.5" y="389" width="0.2" height="15.0" fill="rgb(205,142,31)" rx="2" ry="2" />
<text x="948.45" y="399.5" ></text>
</g>
<g >
<title>_$LT$cranelift_codegen..isa..enc_tables..Encodings$u20$as$u20$core..iter..traits..iterator..Iterator$GT$::next::he6ba202105922eb5 (11 samples, 0.03%)</title><rect x="17.2" y="293" width="0.3" height="15.0" fill="rgb(241,104,40)" rx="2" ry="2" />
<text x="20.19" y="303.5" ></text>
</g>
<g >
<title>wasmer_clif_backend::trampoline::Trampolines::new::h8a78526849fe89b9 (144 samples, 0.35%)</title><rect x="1176.1" y="453" width="4.1" height="15.0" fill="rgb(218,102,49)" rx="2" ry="2" />
<text x="1179.13" y="463.5" ></text>
</g>
<g >
<title>__GI___clock_gettime (6 samples, 0.01%)</title><rect x="171.3" y="229" width="0.2" height="15.0" fill="rgb(253,31,41)" rx="2" ry="2" />
<text x="174.32" y="239.5" ></text>
</g>
<g >
<title>_$LT$cranelift_codegen..timing..details..TimingToken$u20$as$u20$core..ops..drop..Drop$GT$::drop::h1b19c2a93ee0a091 (7 samples, 0.02%)</title><rect x="64.5" y="309" width="0.2" height="15.0" fill="rgb(253,52,50)" rx="2" ry="2" />
<text x="67.49" y="319.5" ></text>
</g>
<g >
<title>_int_malloc (4 samples, 0.01%)</title><rect x="123.6" y="229" width="0.1" height="15.0" fill="rgb(233,196,47)" rx="2" ry="2" />
<text x="126.62" y="239.5" ></text>
</g>
<g >
<title>__vdso_clock_gettime (4 samples, 0.01%)</title><rect x="1160.6" y="245" width="0.1" height="15.0" fill="rgb(225,217,53)" rx="2" ry="2" />
<text x="1163.60" y="255.5" ></text>
</g>
<g >
<title>__rust_dealloc (6 samples, 0.01%)</title><rect x="752.2" y="373" width="0.2" height="15.0" fill="rgb(222,224,47)" rx="2" ry="2" />
<text x="755.20" y="383.5" ></text>
</g>
<g >
<title>cranelift_codegen::isa::x86::abi::allocatable_registers::h4512a9a8f2d4d6da (4 samples, 0.01%)</title><rect x="155.6" y="245" width="0.1" height="15.0" fill="rgb(205,224,46)" rx="2" ry="2" />
<text x="158.56" y="255.5" ></text>
</g>
<g >
<title>cranelift_codegen::regalloc::reload::Reload::run::h05729139e9b4ae44 (149 samples, 0.36%)</title><rect x="50.1" y="357" width="4.3" height="15.0" fill="rgb(208,89,13)" rx="2" ry="2" />
<text x="53.13" y="367.5" ></text>
</g>
<g >
<title>security_file_mprotect (4 samples, 0.01%)</title><rect x="343.5" y="277" width="0.1" height="15.0" fill="rgb(212,135,2)" rx="2" ry="2" />
<text x="346.45" y="287.5" ></text>
</g>
<g >
<title>__GI___clock_gettime (4 samples, 0.01%)</title><rect x="131.6" y="213" width="0.1" height="15.0" fill="rgb(218,69,1)" rx="2" ry="2" />
<text x="134.56" y="223.5" ></text>
</g>
<g >
<title>_int_malloc (4 samples, 0.01%)</title><rect x="808.0" y="325" width="0.1" height="15.0" fill="rgb(219,190,11)" rx="2" ry="2" />
<text x="810.97" y="335.5" ></text>
</g>
<g >
<title>cranelift_bforest::path::Path$LT$F$GT$::next::h50188cd678c454ba (11 samples, 0.03%)</title><rect x="110.8" y="261" width="0.4" height="15.0" fill="rgb(206,181,53)" rx="2" ry="2" />
<text x="113.84" y="271.5" ></text>
</g>
<g >
<title>alloc::raw_vec::RawVec$LT$T$C$A$GT$::reserve::h209de9d6031d8f72 (9 samples, 0.02%)</title><rect x="322.2" y="309" width="0.3" height="15.0" fill="rgb(209,208,38)" rx="2" ry="2" />
<text x="325.22" y="319.5" ></text>
</g>
<g >
<title>std::time::Instant::now::h33d2ba6042def2d2 (12 samples, 0.03%)</title><rect x="161.1" y="277" width="0.4" height="15.0" fill="rgb(212,121,46)" rx="2" ry="2" />
<text x="164.13" y="287.5" ></text>
</g>
<g >
<title>alloc::raw_vec::RawVec$LT$T$C$A$GT$::reserve::hea3f43976955e3d2 (14 samples, 0.03%)</title><rect x="136.6" y="261" width="0.4" height="15.0" fill="rgb(209,92,43)" rx="2" ry="2" />
<text x="139.58" y="271.5" ></text>
</g>
<g >
<title>_int_malloc (139 samples, 0.34%)</title><rect x="602.6" y="341" width="4.0" height="15.0" fill="rgb(207,194,45)" rx="2" ry="2" />
<text x="605.64" y="351.5" ></text>
</g>
<g >
<title>c2_chacha::guts::refill_wide::he4343866a1fa78ce (58 samples, 0.14%)</title><rect x="884.1" y="469" width="1.7" height="15.0" fill="rgb(215,87,20)" rx="2" ry="2" />
<text x="887.12" y="479.5" ></text>
</g>
<g >
<title>rocinante::stoke::transform::Transform::operate::hbf80625ac53e38d8 (39 samples, 0.09%)</title><rect x="204.3" y="309" width="1.1" height="15.0" fill="rgb(209,47,22)" rx="2" ry="2" />
<text x="207.31" y="319.5" ></text>
</g>
<g >
<title>__GI___libc_realloc (5 samples, 0.01%)</title><rect x="164.0" y="261" width="0.2" height="15.0" fill="rgb(231,76,6)" rx="2" ry="2" />
<text x="167.04" y="271.5" ></text>
</g>
<g >
<title>_int_free (10 samples, 0.02%)</title><rect x="313.6" y="325" width="0.3" height="15.0" fill="rgb(241,211,20)" rx="2" ry="2" />
<text x="316.57" y="335.5" ></text>
</g>
<g >
<title>__rust_realloc (4 samples, 0.01%)</title><rect x="1049.3" y="405" width="0.1" height="15.0" fill="rgb(225,77,5)" rx="2" ry="2" />
<text x="1052.26" y="415.5" ></text>
</g>
<g >
<title>_$LT$cranelift_codegen..timing..details..TimingToken$u20$as$u20$core..ops..drop..Drop$GT$::drop::h1b19c2a93ee0a091 (8 samples, 0.02%)</title><rect x="1161.9" y="341" width="0.2" height="15.0" fill="rgb(227,49,32)" rx="2" ry="2" />
<text x="1164.91" y="351.5" ></text>
</g>
<g >
<title>__GI___clock_gettime (6 samples, 0.01%)</title><rect x="122.4" y="197" width="0.2" height="15.0" fill="rgb(211,13,40)" rx="2" ry="2" />
<text x="125.40" y="207.5" ></text>
</g>
<g >
<title>_ZN17cranelift_codegen8regalloc9diversion13RegDiversions6divert17h0dfdaeead6ef2c57E.llvm.6468024634034730254 (17 samples, 0.04%)</title><rect x="102.7" y="261" width="0.5" height="15.0" fill="rgb(224,99,35)" rx="2" ry="2" />
<text x="105.67" y="271.5" ></text>
</g>
<g >
<title>_int_free (5 samples, 0.01%)</title><rect x="1168.9" y="213" width="0.2" height="15.0" fill="rgb(212,188,45)" rx="2" ry="2" />
<text x="1171.91" y="223.5" ></text>
</g>
<g >
<title>alloc::sync::Arc$LT$T$GT$::drop_slow::h56d8944c190ba4ca (343 samples, 0.83%)</title><rect x="226.4" y="437" width="9.8" height="15.0" fill="rgb(206,98,6)" rx="2" ry="2" />
<text x="229.37" y="447.5" ></text>
</g>
<g >
<title>_int_malloc (5 samples, 0.01%)</title><rect x="279.9" y="341" width="0.2" height="15.0" fill="rgb(232,12,4)" rx="2" ry="2" />
<text x="282.92" y="351.5" ></text>
</g>
<g >
<title>cranelift_codegen::topo_order::TopoOrder::next::h3ea49efe09e3a2f0 (9 samples, 0.02%)</title><rect x="160.5" y="261" width="0.2" height="15.0" fill="rgb(220,131,3)" rx="2" ry="2" />
<text x="163.47" y="271.5" ></text>
</g>
<g >
<title>std::sys::unix::alloc::_$LT$impl$u20$core..alloc..GlobalAlloc$u20$for$u20$std..alloc..System$GT$::alloc::h33585d4e6aad0166 (18 samples, 0.04%)</title><rect x="595.9" y="357" width="0.5" height="15.0" fill="rgb(215,221,50)" rx="2" ry="2" />
<text x="598.90" y="367.5" ></text>
</g>
<g >
<title>find_vma (14 samples, 0.03%)</title><rect x="284.1" y="277" width="0.4" height="15.0" fill="rgb(241,156,44)" rx="2" ry="2" />
<text x="287.06" y="287.5" ></text>
</g>
<g >
<title>_int_realloc (5 samples, 0.01%)</title><rect x="1169.2" y="197" width="0.1" height="15.0" fill="rgb(218,150,30)" rx="2" ry="2" />
<text x="1172.16" y="207.5" ></text>
</g>
<g >
<title>cranelift_codegen::context::Context::prologue_epilogue::he7fad23bcfb5a3af (88 samples, 0.21%)</title><rect x="1155.2" y="357" width="2.5" height="15.0" fill="rgb(213,171,32)" rx="2" ry="2" />
<text x="1158.21" y="367.5" ></text>
</g>
<g >
<title>cranelift_codegen::context::Context::legalize::h3be573a3855dd690 (16 samples, 0.04%)</title><rect x="1167.4" y="309" width="0.4" height="15.0" fill="rgb(240,205,40)" rx="2" ry="2" />
<text x="1170.37" y="319.5" ></text>
</g>
<g >
<title>libc_feholdsetround_sse_ctx (17 samples, 0.04%)</title><rect x="883.6" y="437" width="0.5" height="15.0" fill="rgb(234,108,54)" rx="2" ry="2" />
<text x="886.63" y="447.5" ></text>
</g>
<g >
<title>cranelift_codegen::flowgraph::ControlFlowGraph::add_edge::hf2c2f4cb34e85a4f (5 samples, 0.01%)</title><rect x="1167.5" y="197" width="0.1" height="15.0" fill="rgb(215,98,8)" rx="2" ry="2" />
<text x="1170.45" y="207.5" ></text>
</g>
<g >
<title>std::time::Instant::elapsed::h8e307314b2acf9be (4 samples, 0.01%)</title><rect x="106.6" y="261" width="0.2" height="15.0" fill="rgb(250,104,0)" rx="2" ry="2" />
<text x="109.64" y="271.5" ></text>
</g>
<g >
<title>__GI___libc_malloc (6 samples, 0.01%)</title><rect x="321.1" y="341" width="0.2" height="15.0" fill="rgb(207,208,17)" rx="2" ry="2" />
<text x="324.13" y="351.5" ></text>
</g>
<g >
<title>_$LT$alloc..vec..Vec$LT$T$GT$$u20$as$u20$core..clone..Clone$GT$::clone::h5b9e6f3d06cc15e0 (11 samples, 0.03%)</title><rect x="203.5" y="277" width="0.4" height="15.0" fill="rgb(209,92,49)" rx="2" ry="2" />
<text x="206.54" y="287.5" ></text>
</g>
<g >
<title>page_size::get::h2fd6e9e7cd166ffd (4 samples, 0.01%)</title><rect x="343.7" y="357" width="0.1" height="15.0" fill="rgb(244,73,33)" rx="2" ry="2" />
<text x="346.68" y="367.5" ></text>
</g>
<g >
<title>__vdso_clock_gettime (4 samples, 0.01%)</title><rect x="1157.6" y="261" width="0.1" height="15.0" fill="rgb(213,110,30)" rx="2" ry="2" />
<text x="1160.61" y="271.5" ></text>
</g>
<g >
<title>alloc::raw_vec::RawVec$LT$T$C$A$GT$::reserve::h86648d6f1470c78b (6 samples, 0.01%)</title><rect x="814.3" y="373" width="0.2" height="15.0" fill="rgb(251,193,2)" rx="2" ry="2" />
<text x="817.31" y="383.5" ></text>
</g>
<g >
<title>cranelift_codegen::isa::constraints::RecipeConstraints::satisfied::h33556c8a9b1bba6e (48 samples, 0.12%)</title><rect x="29.1" y="325" width="1.3" height="15.0" fill="rgb(221,48,50)" rx="2" ry="2" />
<text x="32.07" y="335.5" ></text>
</g>
<g >
<title>rayon::iter::plumbing::bridge_producer_consumer::helper::h864336325ddf8446 (270 samples, 0.65%)</title><rect x="174.3" y="389" width="7.7" height="15.0" fill="rgb(223,146,33)" rx="2" ry="2" />
<text x="177.29" y="399.5" ></text>
</g>
<g >
<title>cranelift_bforest::map::Map$LT$K$C$V$GT$::insert::h73d5aa0753b93df7 (20 samples, 0.05%)</title><rect x="113.1" y="261" width="0.5" height="15.0" fill="rgb(222,44,9)" rx="2" ry="2" />
<text x="116.06" y="271.5" ></text>
</g>
<g >
<title>wasmer_runtime_core::sig_registry::SigRegistry::lookup_sig_index::hb06a5506c3dd534f (16 samples, 0.04%)</title><rect x="874.7" y="389" width="0.5" height="15.0" fill="rgb(218,139,49)" rx="2" ry="2" />
<text x="877.73" y="399.5" ></text>
</g>
<g >
<title>cranelift_codegen::isa::encoding::base_size::he0d0831e71de2a0c (9 samples, 0.02%)</title><rect x="35.3" y="341" width="0.3" height="15.0" fill="rgb(231,75,5)" rx="2" ry="2" />
<text x="38.35" y="351.5" ></text>
</g>
<g >
<title>_ZN17cranelift_codegen9flowgraph16ControlFlowGraph11compute_ebb17he662711fe9d10399E.llvm.15195122248153170019 (13 samples, 0.03%)</title><rect x="1160.7" y="341" width="0.4" height="15.0" fill="rgb(228,101,36)" rx="2" ry="2" />
<text x="1163.72" y="351.5" ></text>
</g>
<g >
<title>rayon::iter::plumbing::bridge_producer_consumer::helper::h864336325ddf8446 (4,073 samples, 9.85%)</title><rect x="58.0" y="405" width="116.3" height="15.0" fill="rgb(246,41,48)" rx="2" ry="2" />
<text x="61.04" y="415.5" >rayon::iter::p..</text>
</g>
<g >
<title>std::sys::unix::time::inner::Instant::now::h23f1bea5949f1bbd (7 samples, 0.02%)</title><rect x="312.7" y="309" width="0.2" height="15.0" fill="rgb(228,135,10)" rx="2" ry="2" />
<text x="315.66" y="319.5" ></text>
</g>
<g >
<title>__rust_dealloc (8 samples, 0.02%)</title><rect x="773.1" y="373" width="0.3" height="15.0" fill="rgb(213,59,29)" rx="2" ry="2" />
<text x="776.15" y="383.5" ></text>
</g>
<g >
<title>__vdso_clock_gettime (6 samples, 0.01%)</title><rect x="114.7" y="213" width="0.2" height="15.0" fill="rgb(244,150,49)" rx="2" ry="2" />
<text x="117.69" y="223.5" ></text>
</g>
<g >
<title>std::time::Instant::now::h33d2ba6042def2d2 (6 samples, 0.01%)</title><rect x="171.1" y="245" width="0.2" height="15.0" fill="rgb(248,100,47)" rx="2" ry="2" />
<text x="174.12" y="255.5" ></text>
</g>
<g >
<title>__GI___libc_malloc (8 samples, 0.02%)</title><rect x="323.5" y="341" width="0.2" height="15.0" fill="rgb(238,77,29)" rx="2" ry="2" />
<text x="326.47" y="351.5" ></text>
</g>
<g >
<title>alloc::raw_vec::RawVec$LT$T$C$A$GT$::reserve::he459267326f26ce0 (9 samples, 0.02%)</title><rect x="114.2" y="213" width="0.3" height="15.0" fill="rgb(249,20,7)" rx="2" ry="2" />
<text x="117.21" y="223.5" ></text>
</g>
<g >
<title>_int_free (4 samples, 0.01%)</title><rect x="802.5" y="261" width="0.1" height="15.0" fill="rgb(253,206,44)" rx="2" ry="2" />
<text x="805.52" y="271.5" ></text>
</g>
<g >
<title>cranelift_codegen::legalizer::boundary::spill_call_arguments::h7c8569664b42f645 (19 samples, 0.05%)</title><rect x="18.1" y="309" width="0.5" height="15.0" fill="rgb(233,201,0)" rx="2" ry="2" />
<text x="21.08" y="319.5" ></text>
</g>
<g >
<title>tlb_flush_mmu_free (29 samples, 0.07%)</title><rect x="238.3" y="261" width="0.9" height="15.0" fill="rgb(225,216,1)" rx="2" ry="2" />
<text x="241.33" y="271.5" ></text>
</g>
<g >
<title>alloc::raw_vec::RawVec$LT$T$C$A$GT$::reserve::h500ef385b8747b29 (17 samples, 0.04%)</title><rect x="323.4" y="357" width="0.5" height="15.0" fill="rgb(246,14,46)" rx="2" ry="2" />
<text x="326.42" y="367.5" ></text>
</g>
<g >
<title>cranelift_codegen::ir::builder::InstBuilder::regmove::h2d2e8972aa228be7 (50 samples, 0.12%)</title><rect x="137.0" y="261" width="1.4" height="15.0" fill="rgb(210,131,50)" rx="2" ry="2" />
<text x="139.98" y="271.5" ></text>
</g>
<g >
<title>alloc::raw_vec::RawVec$LT$T$C$A$GT$::reserve::h02503ac3a628c0ac (15 samples, 0.04%)</title><rect x="1178.3" y="341" width="0.4" height="15.0" fill="rgb(224,122,43)" rx="2" ry="2" />
<text x="1181.27" y="351.5" ></text>
</g>
<g >
<title>cranelift_codegen::regalloc::live_value_tracker::LiveValueTracker::process_inst::hcd4ba6fb549516b2 (70 samples, 0.17%)</title><rect x="158.3" y="261" width="2.0" height="15.0" fill="rgb(229,30,16)" rx="2" ry="2" />
<text x="161.30" y="271.5" ></text>
</g>
<g >
<title>std::sync::mutex::Mutex$LT$T$GT$::new::he5341902ede916cb (21 samples, 0.05%)</title><rect x="854.8" y="437" width="0.6" height="15.0" fill="rgb(223,165,17)" rx="2" ry="2" />
<text x="857.83" y="447.5" ></text>
</g>
<g >
<title>cranelift_codegen::ir::dfg::DataFlowGraph::clear::h864e5fe24548dc9f (9 samples, 0.02%)</title><rect x="63.7" y="293" width="0.3" height="15.0" fill="rgb(239,60,15)" rx="2" ry="2" />
<text x="66.74" y="303.5" ></text>
</g>
<g >
<title>__alloc_pages_nodemask (30 samples, 0.07%)</title><rect x="304.6" y="261" width="0.8" height="15.0" fill="rgb(243,225,30)" rx="2" ry="2" />
<text x="307.58" y="271.5" ></text>
</g>
<g >
<title>hashbrown::map::HashMap$LT$K$C$V$C$S$GT$::contains_key::hc2d70e289ae6b120 (8 samples, 0.02%)</title><rect x="192.9" y="213" width="0.2" height="15.0" fill="rgb(217,210,22)" rx="2" ry="2" />
<text x="195.90" y="223.5" ></text>
</g>
<g >
<title>cranelift_codegen::ir::layout::Layout::remove_inst::h17e123ecaa4a07c6 (5 samples, 0.01%)</title><rect x="165.5" y="277" width="0.1" height="15.0" fill="rgb(241,25,47)" rx="2" ry="2" />
<text x="168.47" y="287.5" ></text>
</g>
<g >
<title>std::sys::unix::time::inner::Instant::now::h23f1bea5949f1bbd (5 samples, 0.01%)</title><rect x="168.8" y="261" width="0.1" height="15.0" fill="rgb(208,129,36)" rx="2" ry="2" />
<text x="171.81" y="271.5" ></text>
</g>
<g >
<title>__perf_event__output_id_sample (6 samples, 0.01%)</title><rect x="268.3" y="197" width="0.1" height="15.0" fill="rgb(223,110,44)" rx="2" ry="2" />
<text x="271.27" y="207.5" ></text>
</g>
<g >
<title>_ZN17cranelift_codegen9flowgraph16ControlFlowGraph11compute_ebb17he662711fe9d10399E.llvm.15195122248153170019 (69 samples, 0.17%)</title><rect x="112.6" y="277" width="1.9" height="15.0" fill="rgb(225,32,50)" rx="2" ry="2" />
<text x="115.58" y="287.5" ></text>
</g>
<g >
<title>_int_realloc (10 samples, 0.02%)</title><rect x="802.5" y="277" width="0.3" height="15.0" fill="rgb(206,217,32)" rx="2" ry="2" />
<text x="805.49" y="287.5" ></text>
</g>
<g >
<title>_$LT$cranelift_codegen..isa..x86..abi..Args$u20$as$u20$cranelift_codegen..abi..ArgAssigner$GT$::assign::h1ef61b42453724d8 (6 samples, 0.01%)</title><rect x="15.9" y="293" width="0.2" height="15.0" fill="rgb(234,124,46)" rx="2" ry="2" />
<text x="18.94" y="303.5" ></text>
</g>
<g >
<title>wasmparser::binary_reader::BinaryReader::read_var_u32::h9f3e844d80d20a5e (246 samples, 0.60%)</title><rect x="486.3" y="357" width="7.0" height="15.0" fill="rgb(229,180,34)" rx="2" ry="2" />
<text x="489.30" y="367.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 (214 samples, 0.52%)</title><rect x="1170.0" y="453" width="6.1" height="15.0" fill="rgb(217,114,22)" rx="2" ry="2" />
<text x="1173.02" y="463.5" ></text>
</g>
<g >
<title>alloc::raw_vec::RawVec$LT$T$C$A$GT$::reserve::h5e34cfad90a6ce21 (17 samples, 0.04%)</title><rect x="21.4" y="309" width="0.5" height="15.0" fill="rgb(212,51,52)" rx="2" ry="2" />
<text x="24.42" y="319.5" ></text>
</g>
<g >
<title>_ZN3std4sync6rwlock15RwLock$LT$T$GT$4read17h11453e6976358159E.llvm.1752998059772103100 (80 samples, 0.19%)</title><rect x="795.8" y="373" width="2.3" height="15.0" fill="rgb(234,33,50)" rx="2" ry="2" />
<text x="798.84" y="383.5" ></text>
</g>
<g >
<title>__GI___clock_gettime (5 samples, 0.01%)</title><rect x="117.0" y="213" width="0.1" height="15.0" fill="rgb(224,101,44)" rx="2" ry="2" />
<text x="120.00" y="223.5" ></text>
</g>
<g >
<title>_int_free (6 samples, 0.01%)</title><rect x="256.9" y="357" width="0.2" height="15.0" fill="rgb(224,210,49)" rx="2" ry="2" />
<text x="259.89" y="367.5" ></text>
</g>
<g >
<title>_$LT$parity_wasm..elements..ops..Instruction$u20$as$u20$parity_wasm..elements..Serialize$GT$::serialize::h0e7ca03145b3f942 (62 samples, 0.15%)</title><rect x="200.2" y="261" width="1.8" height="15.0" fill="rgb(239,137,42)" rx="2" ry="2" />
<text x="203.23" y="271.5" ></text>
</g>
<g >
<title>wasmer_runtime_core::parse::read_module::h3875b654eed5ef74 (2,044 samples, 4.94%)</title><rect x="793.0" y="405" width="58.3" height="15.0" fill="rgb(229,229,37)" rx="2" ry="2" />
<text x="795.98" y="415.5" >wasmer..</text>
</g>
<g >
<title>_ZN4core5slice4sort7recurse17hcfda5acadaf50c0aE.llvm.15195122248153170019 (14 samples, 0.03%)</title><rect x="1167.9" y="277" width="0.4" height="15.0" fill="rgb(206,214,3)" rx="2" ry="2" />
<text x="1170.88" y="287.5" ></text>
</g>
<g >
<title>__GI___clock_gettime (6 samples, 0.01%)</title><rect x="1166.8" y="293" width="0.1" height="15.0" fill="rgb(248,43,27)" rx="2" ry="2" />
<text x="1169.77" y="303.5" ></text>
</g>
<g >
<title>_$LT$$RF$mut$u20$cranelift_codegen..cursor..EncCursor$u20$as$u20$cranelift_codegen..ir..builder..InstInserterBase$GT$::data_flow_graph_mut::hce95f6c3cc92a144 (4 samples, 0.01%)</title><rect x="298.0" y="373" width="0.1" height="15.0" fill="rgb(241,192,2)" rx="2" ry="2" />
<text x="300.96" y="383.5" ></text>
</g>
<g >
<title>alloc::raw_vec::RawVec$LT$T$C$A$GT$::reserve::h156c4ca9e87e66cc (5 samples, 0.01%)</title><rect x="38.4" y="325" width="0.1" height="15.0" fill="rgb(229,168,50)" rx="2" ry="2" />
<text x="41.37" y="335.5" ></text>
</g>
<g >
<title>_int_malloc (4 samples, 0.01%)</title><rect x="1179.9" y="325" width="0.1" height="15.0" fill="rgb(245,156,31)" rx="2" ry="2" />
<text x="1182.92" y="335.5" ></text>
</g>
<g >
<title>_int_realloc (4 samples, 0.01%)</title><rect x="321.6" y="325" width="0.1" height="15.0" fill="rgb(243,129,25)" rx="2" ry="2" />
<text x="324.59" y="335.5" ></text>
</g>
<g >
<title>cranelift_codegen::ir::instructions::InstructionData::arguments::h70ecdef19e20b02a (5 samples, 0.01%)</title><rect x="26.1" y="325" width="0.1" height="15.0" fill="rgb(241,216,5)" rx="2" ry="2" />
<text x="29.10" y="335.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 (34 samples, 0.08%)</title><rect x="1146.3" y="437" width="1.0" height="15.0" fill="rgb(224,113,43)" rx="2" ry="2" />
<text x="1149.33" y="447.5" ></text>
</g>
<g >
<title>_$LT$cranelift_codegen..timing..details..TimingToken$u20$as$u20$core..ops..drop..Drop$GT$::drop::h1b19c2a93ee0a091 (7 samples, 0.02%)</title><rect x="96.2" y="261" width="0.2" height="15.0" fill="rgb(225,205,26)" rx="2" ry="2" />
<text x="99.20" y="271.5" ></text>
</g>
<g >
<title>wasmer_clif_fork_frontend::frontend::FunctionBuilder::declare_var::hea859e8fadbdd9f2 (14 samples, 0.03%)</title><rect x="806.3" y="373" width="0.4" height="15.0" fill="rgb(239,26,47)" rx="2" ry="2" />
<text x="809.34" y="383.5" ></text>
</g>
<g >
<title>cranelift_codegen::context::Context::compile_and_emit::h5499205207e7951f (637 samples, 1.54%)</title><rect x="1148.8" y="389" width="18.2" height="15.0" fill="rgb(210,182,7)" rx="2" ry="2" />
<text x="1151.79" y="399.5" ></text>
</g>
<g >
<title>__GI___libc_malloc (6 samples, 0.01%)</title><rect x="194.1" y="181" width="0.2" height="15.0" fill="rgb(205,202,15)" rx="2" ry="2" />
<text x="197.12" y="191.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 (55 samples, 0.13%)</title><rect x="280.5" y="357" width="1.6" height="15.0" fill="rgb(239,184,40)" rx="2" ry="2" />
<text x="283.52" y="367.5" ></text>
</g>
<g >
<title>mprotect_fixup (6 samples, 0.01%)</title><rect x="186.4" y="117" width="0.2" height="15.0" fill="rgb(247,175,32)" rx="2" ry="2" />
<text x="189.44" y="127.5" ></text>
</g>
<g >
<title>std::time::Instant::now::h33d2ba6042def2d2 (12 samples, 0.03%)</title><rect x="57.5" y="357" width="0.4" height="15.0" fill="rgb(246,106,27)" rx="2" ry="2" />
<text x="60.52" y="367.5" ></text>
</g>
<g >
<title>cranelift_codegen::context::Context::shrink_instructions::he0b1678d1727ad37 (260 samples, 0.63%)</title><rect x="98.4" y="293" width="7.4" height="15.0" fill="rgb(242,195,15)" rx="2" ry="2" />
<text x="101.42" y="303.5" ></text>
</g>
<g >
<title>std::time::Instant::now::h33d2ba6042def2d2 (7 samples, 0.02%)</title><rect x="77.2" y="229" width="0.2" height="15.0" fill="rgb(232,5,10)" rx="2" ry="2" />
<text x="80.22" y="239.5" ></text>
</g>
<g >
<title>rocinante::stoke::transform::Transform::operate::hbf80625ac53e38d8 (1,652 samples, 4.00%)</title><rect x="1100.6" y="469" width="47.1" height="15.0" fill="rgb(250,4,33)" rx="2" ry="2" />
<text x="1103.58" y="479.5" >roci..</text>
</g>
<g >
<title>vma_compute_subtree_gap (5 samples, 0.01%)</title><rect x="342.8" y="213" width="0.1" height="15.0" fill="rgb(246,77,2)" rx="2" ry="2" />
<text x="345.80" y="223.5" ></text>
</g>
<g >
<title>__GI___libc_malloc (17 samples, 0.04%)</title><rect x="75.6" y="245" width="0.4" height="15.0" fill="rgb(229,164,6)" rx="2" ry="2" />
<text x="78.56" y="255.5" ></text>
</g>
<g >
<title>_int_free (4 samples, 0.01%)</title><rect x="279.6" y="341" width="0.1" height="15.0" fill="rgb(211,145,48)" rx="2" ry="2" />
<text x="282.61" y="351.5" ></text>
</g>
<g >
<title>_int_malloc (5 samples, 0.01%)</title><rect x="203.0" y="229" width="0.2" height="15.0" fill="rgb(207,108,5)" rx="2" ry="2" />
<text x="206.03" y="239.5" ></text>
</g>
<g >
<title>core::num::_$LT$impl$u20$usize$GT$::one_less_than_next_power_of_two::h3c7982a12f0106e5 (6 samples, 0.01%)</title><rect x="654.6" y="293" width="0.2" height="15.0" fill="rgb(251,5,10)" rx="2" ry="2" />
<text x="657.61" y="303.5" ></text>
</g>
<g >
<title>alloc::sync::Arc$LT$T$GT$::drop_slow::hc5a1fad3ed79882c (14 samples, 0.03%)</title><rect x="242.4" y="453" width="0.4" height="15.0" fill="rgb(229,104,41)" rx="2" ry="2" />
<text x="245.42" y="463.5" ></text>
</g>
<g >
<title>core::ptr::real_drop_in_place::h8e38f4c4f35fb102 (50 samples, 0.12%)</title><rect x="310.2" y="357" width="1.5" height="15.0" fill="rgb(226,71,8)" rx="2" ry="2" />
<text x="313.23" y="367.5" ></text>
</g>
<g >
<title>wasmparser::binary_reader::BinaryReader::read_var_u32::h9f3e844d80d20a5e (29 samples, 0.07%)</title><rect x="524.3" y="341" width="0.8" height="15.0" fill="rgb(245,44,54)" rx="2" ry="2" />
<text x="527.32" y="351.5" ></text>
</g>
<g >
<title>release_pages (44 samples, 0.11%)</title><rect x="232.1" y="197" width="1.2" height="15.0" fill="rgb(229,203,39)" rx="2" ry="2" />
<text x="235.08" y="207.5" ></text>
</g>
<g >
<title>__GI___pthread_rwlock_rdlock (55 samples, 0.13%)</title><rect x="352.4" y="405" width="1.6" height="15.0" fill="rgb(241,126,18)" rx="2" ry="2" />
<text x="355.39" y="415.5" ></text>
</g>
<g >
<title>_$LT$wasmer_runtime_core..codegen..StreamingCompiler$LT$MCG$C$FCG$C$RM$C$E$C$CGEN$GT$$u20$as$u20$wasmer_runtime_core..backend..Compiler$GT$::compile::h8e59f93f7f287bf9 (144 samples, 0.35%)</title><rect x="1176.1" y="485" width="4.1" height="15.0" fill="rgb(238,160,40)" rx="2" ry="2" />
<text x="1179.13" y="495.5" ></text>
</g>
<g >
<title>__GI___libc_malloc (12 samples, 0.03%)</title><rect x="14.6" y="309" width="0.4" height="15.0" fill="rgb(234,144,18)" rx="2" ry="2" />
<text x="17.62" y="319.5" ></text>
</g>
<g >
<title>__GI___libc_realloc (14 samples, 0.03%)</title><rect x="91.6" y="213" width="0.4" height="15.0" fill="rgb(211,54,51)" rx="2" ry="2" />
<text x="94.63" y="223.5" ></text>
</g>
<g >
<title>std::sys::unix::time::inner::now::ha10452f37b2930c5 (6 samples, 0.01%)</title><rect x="117.0" y="229" width="0.1" height="15.0" fill="rgb(211,67,29)" rx="2" ry="2" />
<text x="119.97" y="239.5" ></text>
</g>
<g >
<title>kmem_cache_free (4 samples, 0.01%)</title><rect x="343.1" y="229" width="0.1" height="15.0" fill="rgb(252,17,8)" rx="2" ry="2" />
<text x="346.08" y="239.5" ></text>
</g>
<g >
<title>cranelift_codegen::ir::builder::InstBuilder::iconst::h085df8078cba1853 (13 samples, 0.03%)</title><rect x="85.6" y="213" width="0.4" height="15.0" fill="rgb(227,121,31)" rx="2" ry="2" />
<text x="88.61" y="223.5" ></text>
</g>
<g >
<title>wasmer_clif_fork_frontend::frontend::FunctionBuilderContext::new::h436ea5f82fe59916 (15 samples, 0.04%)</title><rect x="808.7" y="357" width="0.5" height="15.0" fill="rgb(205,83,43)" rx="2" ry="2" />
<text x="811.74" y="367.5" ></text>
</g>
<g >
<title>alloc::vec::Vec$LT$T$GT$::resize::h9160379633033fa6 (12 samples, 0.03%)</title><rect x="44.5" y="325" width="0.3" height="15.0" fill="rgb(237,146,8)" rx="2" ry="2" />
<text x="47.51" y="335.5" ></text>
</g>
<g >
<title>rocinante::stoke::CandidateFunc::get_binary::h08e8585b39f70dc8 (7,521 samples, 18.19%)</title><rect x="885.9" y="469" width="214.7" height="15.0" fill="rgb(208,99,25)" rx="2" ry="2" />
<text x="888.92" y="479.5" >rocinante::stoke::CandidateF..</text>
</g>
<g >
<title>_$LT$cranelift_codegen..isa..x86..Isa$u20$as$u20$cranelift_codegen..isa..TargetIsa$GT$::register_info::h76187ccb5a22d979 (6 samples, 0.01%)</title><rect x="69.3" y="293" width="0.2" height="15.0" fill="rgb(252,99,26)" rx="2" ry="2" />
<text x="72.31" y="303.5" ></text>
</g>
<g >
<title>cranelift_codegen::simple_preopt::do_preopt::hc14889b432418503 (28 samples, 0.07%)</title><rect x="1165.7" y="357" width="0.8" height="15.0" fill="rgb(224,123,7)" rx="2" ry="2" />
<text x="1168.65" y="367.5" ></text>
</g>
<g >
<title>std::sys::unix::time::inner::now::ha10452f37b2930c5 (7 samples, 0.02%)</title><rect x="36.4" y="293" width="0.2" height="15.0" fill="rgb(232,89,32)" rx="2" ry="2" />
<text x="39.40" y="303.5" ></text>
</g>
<g >
<title>cranelift_codegen::regalloc::liveness::Liveness::compute::h5fc2c46ff15ebd51 (209 samples, 0.51%)</title><rect x="143.0" y="277" width="5.9" height="15.0" fill="rgb(237,14,25)" rx="2" ry="2" />
<text x="145.98" y="287.5" ></text>
</g>
<g >
<title>__GI___libc_realloc (8 samples, 0.02%)</title><rect x="324.3" y="325" width="0.2" height="15.0" fill="rgb(244,213,11)" rx="2" ry="2" />
<text x="327.27" y="335.5" ></text>
</g>
<g >
<title>_int_malloc (8 samples, 0.02%)</title><rect x="130.9" y="213" width="0.2" height="15.0" fill="rgb(241,24,54)" rx="2" ry="2" />
<text x="133.87" y="223.5" ></text>
</g>
<g >
<title>_int_realloc (4 samples, 0.01%)</title><rect x="137.3" y="197" width="0.1" height="15.0" fill="rgb(213,80,23)" rx="2" ry="2" />
<text x="140.27" y="207.5" ></text>
</g>
<g >
<title>cranelift_codegen::ir::dfg::DataFlowGraph::new::h1636284a161b274f (7 samples, 0.02%)</title><rect x="1180.0" y="405" width="0.2" height="15.0" fill="rgb(250,121,26)" rx="2" ry="2" />
<text x="1183.04" y="415.5" ></text>
</g>
<g >
<title>alloc::raw_vec::RawVec$LT$T$C$A$GT$::reserve::h500ef385b8747b29 (6 samples, 0.01%)</title><rect x="38.5" y="325" width="0.2" height="15.0" fill="rgb(218,153,31)" rx="2" ry="2" />
<text x="41.51" y="335.5" ></text>
</g>
<g >
<title>cranelift_codegen::ir::layout::Layout::remove_inst::h17e123ecaa4a07c6 (5 samples, 0.01%)</title><rect x="86.2" y="213" width="0.1" height="15.0" fill="rgb(215,117,42)" rx="2" ry="2" />
<text x="89.18" y="223.5" ></text>
</g>
<g >
<title>hashbrown::raw::RawTable$LT$T$GT$::reserve_rehash::h145328e315fce2fd (7 samples, 0.02%)</title><rect x="815.0" y="341" width="0.2" height="15.0" fill="rgb(224,99,40)" rx="2" ry="2" />
<text x="817.96" y="351.5" ></text>
</g>
<g >
<title>cranelift_codegen::context::Context::legalize::h3be573a3855dd690 (53 samples, 0.13%)</title><rect x="1153.7" y="357" width="1.5" height="15.0" fill="rgb(211,66,5)" rx="2" ry="2" />
<text x="1156.69" y="367.5" ></text>
</g>
<g >
<title>__vma_adjust (31 samples, 0.07%)</title><rect x="287.9" y="245" width="0.9" height="15.0" fill="rgb(232,218,23)" rx="2" ry="2" />
<text x="290.88" y="255.5" ></text>
</g>
<g >
<title>cranelift_codegen::ir::dfg::DataFlowGraph::append_result::h44f9432a950b5ad1 (4 samples, 0.01%)</title><rect x="84.5" y="181" width="0.1" height="15.0" fill="rgb(235,146,13)" rx="2" ry="2" />
<text x="87.52" y="191.5" ></text>
</g>
<g >
<title>_ZN16cranelift_entity4list17ListPool$LT$T$GT$7realloc17h94c8a4e9c97c23a9E.llvm.776987249141506950 (36 samples, 0.09%)</title><rect x="322.0" y="341" width="1.0" height="15.0" fill="rgb(215,55,53)" rx="2" ry="2" />
<text x="324.99" y="351.5" ></text>
</g>
<g >
<title>__GI___mprotect (7 samples, 0.02%)</title><rect x="186.8" y="197" width="0.2" height="15.0" fill="rgb(206,167,11)" rx="2" ry="2" />
<text x="189.76" y="207.5" ></text>
</g>
<g >
<title>cranelift_codegen::legalizer::legalize_inst::h3c0aa7980e624bbf (20 samples, 0.05%)</title><rect x="1154.4" y="325" width="0.6" height="15.0" fill="rgb(254,94,33)" rx="2" ry="2" />
<text x="1157.41" y="335.5" ></text>
</g>
<g >
<title>std::time::Instant::now::h33d2ba6042def2d2 (6 samples, 0.01%)</title><rect x="1166.3" y="341" width="0.2" height="15.0" fill="rgb(238,180,48)" rx="2" ry="2" />
<text x="1169.28" y="351.5" ></text>
</g>
<g >
<title>cranelift_codegen::ir::instructions::InstructionData::arguments::h70ecdef19e20b02a (5 samples, 0.01%)</title><rect x="1158.7" y="341" width="0.1" height="15.0" fill="rgb(214,22,5)" rx="2" ry="2" />
<text x="1161.69" y="351.5" ></text>
</g>
<g >
<title>__GI___libc_malloc (17 samples, 0.04%)</title><rect x="78.8" y="213" width="0.4" height="15.0" fill="rgb(223,193,53)" rx="2" ry="2" />
<text x="81.76" y="223.5" ></text>
</g>
<g >
<title>_$LT$parity_wasm..elements..primitives..VarUint32$u20$as$u20$core..convert..From$LT$usize$GT$$GT$::from::h6b95634f89525d61 (11 samples, 0.03%)</title><rect x="1007.9" y="421" width="0.3" height="15.0" fill="rgb(206,226,18)" rx="2" ry="2" />
<text x="1010.90" y="431.5" ></text>
</g>
<g >
<title>_int_malloc (4 samples, 0.01%)</title><rect x="64.8" y="277" width="0.1" height="15.0" fill="rgb(254,3,54)" rx="2" ry="2" />
<text x="67.83" y="287.5" ></text>
</g>
<g >
<title>__GI___libc_malloc (9 samples, 0.02%)</title><rect x="195.5" y="229" width="0.2" height="15.0" fill="rgb(237,100,10)" rx="2" ry="2" />
<text x="198.49" y="239.5" ></text>
</g>
<g >
<title>_ZN77_$LT$cranelift_codegen..simple_gvn..HashKey$u20$as$u20$core..clone..Clone$GT$5clone17hdd8a04f286b7e1acE.llvm.9287824473182564923 (11 samples, 0.03%)</title><rect x="163.1" y="277" width="0.3" height="15.0" fill="rgb(214,74,4)" rx="2" ry="2" />
<text x="166.10" y="287.5" ></text>
</g>
<g >
<title>cranelift_codegen::ir::builder::InstBuilder::fill::h8891fd072647990a (9 samples, 0.02%)</title><rect x="52.0" y="341" width="0.3" height="15.0" fill="rgb(220,119,4)" rx="2" ry="2" />
<text x="55.04" y="351.5" ></text>
</g>
<g >
<title>std::sys::unix::time::inner::Instant::now::h23f1bea5949f1bbd (4 samples, 0.01%)</title><rect x="1162.3" y="325" width="0.1" height="15.0" fill="rgb(243,36,2)" rx="2" ry="2" />
<text x="1165.29" y="335.5" ></text>
</g>
<g >
<title>__GI___libc_realloc (4 samples, 0.01%)</title><rect x="1178.7" y="325" width="0.1" height="15.0" fill="rgb(218,84,12)" rx="2" ry="2" />
<text x="1181.70" y="335.5" ></text>
</g>
<g >
<title>wasmparser::readers::code_section::FunctionBody::get_operators_reader::h331a49773c095d89 (104 samples, 0.25%)</title><rect x="566.9" y="357" width="3.0" height="15.0" fill="rgb(236,94,53)" rx="2" ry="2" />
<text x="569.91" y="367.5" ></text>
</g>
<g >
<title>__GI___clock_gettime (8 samples, 0.02%)</title><rect x="93.8" y="213" width="0.3" height="15.0" fill="rgb(235,108,40)" rx="2" ry="2" />
<text x="96.83" y="223.5" ></text>
</g>
<g >
<title>__anon_vma_interval_tree_augment_rotate (4 samples, 0.01%)</title><rect x="341.5" y="197" width="0.1" height="15.0" fill="rgb(244,13,23)" rx="2" ry="2" />
<text x="344.45" y="207.5" ></text>
</g>
<g >
<title>__GI___libc_malloc (5 samples, 0.01%)</title><rect x="127.4" y="229" width="0.1" height="15.0" fill="rgb(237,19,24)" rx="2" ry="2" />
<text x="130.36" y="239.5" ></text>
</g>
<g >
<title>std::sys::unix::alloc::_$LT$impl$u20$core..alloc..GlobalAlloc$u20$for$u20$std..alloc..System$GT$::realloc::h1ccdfac189eaabae (52 samples, 0.13%)</title><rect x="990.6" y="373" width="1.4" height="15.0" fill="rgb(247,38,29)" rx="2" ry="2" />
<text x="993.55" y="383.5" ></text>
</g>
<g >
<title>cranelift_codegen::context::Context::for_function::hea969f7415ee7749 (45 samples, 0.11%)</title><rect x="182.0" y="437" width="1.3" height="15.0" fill="rgb(220,182,50)" rx="2" ry="2" />
<text x="184.99" y="447.5" ></text>
</g>
<g >
<title>std::sys::unix::time::inner::Instant::now::h23f1bea5949f1bbd (4 samples, 0.01%)</title><rect x="50.0" y="325" width="0.1" height="15.0" fill="rgb(241,131,47)" rx="2" ry="2" />
<text x="53.02" y="335.5" ></text>
</g>
<g >
<title>std::time::Instant::now::h33d2ba6042def2d2 (4 samples, 0.01%)</title><rect x="1160.6" y="309" width="0.1" height="15.0" fill="rgb(243,179,40)" rx="2" ry="2" />
<text x="1163.60" y="319.5" ></text>
</g>
<g >
<title>std::sys::unix::time::inner::Instant::now::h23f1bea5949f1bbd (7 samples, 0.02%)</title><rect x="116.2" y="245" width="0.2" height="15.0" fill="rgb(240,204,9)" rx="2" ry="2" />
<text x="119.20" y="255.5" ></text>
</g>
<g >
<title>__GI___libc_malloc (23 samples, 0.06%)</title><rect x="273.0" y="373" width="0.6" height="15.0" fill="rgb(219,74,8)" rx="2" ry="2" />
<text x="275.95" y="383.5" ></text>
</g>
<g >
<title>__GI___libc_realloc (5 samples, 0.01%)</title><rect x="323.7" y="341" width="0.1" height="15.0" fill="rgb(231,53,10)" rx="2" ry="2" />
<text x="326.70" y="351.5" ></text>
</g>
<g >
<title>wasmparser::operators_validator::OperatorValidator::new::hf45e218c5d7c8944 (1,323 samples, 3.20%)</title><rect x="654.8" y="373" width="37.7" height="15.0" fill="rgb(240,96,7)" rx="2" ry="2" />
<text x="657.79" y="383.5" >was..</text>
</g>
<g >
<title>__GI___libc_realloc (40 samples, 0.10%)</title><rect x="946.0" y="373" width="1.1" height="15.0" fill="rgb(248,165,15)" rx="2" ry="2" />
<text x="948.97" y="383.5" ></text>
</g>
<g >
<title>wasmer_runtime_core::compile_with_config::h2793fe8de72c0bc3 (214 samples, 0.52%)</title><rect x="1170.0" y="485" width="6.1" height="15.0" fill="rgb(245,54,8)" rx="2" ry="2" />
<text x="1173.02" y="495.5" ></text>
</g>
<g >
<title>__perf_addr_filters_adjust (25 samples, 0.06%)</title><rect x="264.7" y="245" width="0.7" height="15.0" fill="rgb(212,5,39)" rx="2" ry="2" />
<text x="267.73" y="255.5" ></text>
</g>
<g >
<title>alloc::raw_vec::RawVec$LT$T$C$A$GT$::reserve::h500ef385b8747b29 (10 samples, 0.02%)</title><rect x="111.2" y="261" width="0.3" height="15.0" fill="rgb(223,71,13)" rx="2" ry="2" />
<text x="114.18" y="271.5" ></text>
</g>
<g >
<title>alloc::raw_vec::RawVec$LT$T$C$A$GT$::reserve::h500ef385b8747b29 (27 samples, 0.07%)</title><rect x="109.1" y="277" width="0.7" height="15.0" fill="rgb(245,142,45)" rx="2" ry="2" />
<text x="112.07" y="287.5" ></text>
</g>
<g >
<title>std::time::Instant::now::h33d2ba6042def2d2 (5 samples, 0.01%)</title><rect x="318.7" y="357" width="0.1" height="15.0" fill="rgb(230,121,40)" rx="2" ry="2" />
<text x="321.65" y="367.5" ></text>
</g>
<g >
<title>perf_iterate_ctx (120 samples, 0.29%)</title><rect x="337.1" y="229" width="3.4" height="15.0" fill="rgb(227,179,6)" rx="2" ry="2" />
<text x="340.12" y="239.5" ></text>
</g>
<g >
<title>wasmer_runtime_core::backing::LocalBacking::new::h9729591e2bf3454e (4 samples, 0.01%)</title><rect x="198.9" y="261" width="0.2" height="15.0" fill="rgb(223,58,6)" rx="2" ry="2" />
<text x="201.95" y="271.5" ></text>
</g>
<g >
<title>kmem_cache_alloc (5 samples, 0.01%)</title><rect x="341.8" y="213" width="0.1" height="15.0" fill="rgb(244,185,36)" rx="2" ry="2" />
<text x="344.80" y="223.5" ></text>
</g>
<g >
<title>std::panicking::try::do_call::h631c6408dfccc6f5 (722 samples, 1.75%)</title><rect x="184.8" y="389" width="20.7" height="15.0" fill="rgb(212,136,31)" rx="2" ry="2" />
<text x="187.85" y="399.5" ></text>
</g>
<g >
<title>__GI___libc_malloc (10 samples, 0.02%)</title><rect x="102.8" y="197" width="0.3" height="15.0" fill="rgb(253,146,18)" rx="2" ry="2" />
<text x="105.85" y="207.5" ></text>
</g>
<g >
<title>_$LT$cranelift_codegen..timing..details..TimingToken$u20$as$u20$core..ops..drop..Drop$GT$::drop::h1b19c2a93ee0a091 (8 samples, 0.02%)</title><rect x="36.4" y="357" width="0.2" height="15.0" fill="rgb(238,12,48)" rx="2" ry="2" />
<text x="39.37" y="367.5" ></text>
</g>
<g >
<title>__GI___clock_gettime (6 samples, 0.01%)</title><rect x="1160.4" y="293" width="0.1" height="15.0" fill="rgb(212,34,54)" rx="2" ry="2" />
<text x="1163.37" y="303.5" ></text>
</g>
<g >
<title>wasmer_runtime_core::sys::unix::memory::Memory::with_size::h99a15e322ed7dfca (202 samples, 0.49%)</title><rect x="344.0" y="373" width="5.8" height="15.0" fill="rgb(208,225,45)" rx="2" ry="2" />
<text x="347.02" 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 (13 samples, 0.03%)</title><rect x="102.8" y="245" width="0.4" height="15.0" fill="rgb(251,81,12)" rx="2" ry="2" />
<text x="105.79" y="255.5" ></text>
</g>
<g >
<title>cranelift_codegen::ir::instructions::InstructionData::typevar_operand::hbf9a7e821f2ceac3 (6 samples, 0.01%)</title><rect x="1154.7" y="277" width="0.2" height="15.0" fill="rgb(225,128,20)" rx="2" ry="2" />
<text x="1157.72" y="287.5" ></text>
</g>
<g >
<title>__perf_addr_filters_adjust (29 samples, 0.07%)</title><rect x="333.6" y="245" width="0.8" height="15.0" fill="rgb(241,58,10)" rx="2" ry="2" />
<text x="336.61" y="255.5" ></text>
</g>
<g >
<title>wasmer_runtime_core::vm::Ctx::new::hf7bd00d86e8dda7b (10 samples, 0.02%)</title><rect x="876.6" y="421" width="0.3" height="15.0" fill="rgb(220,95,52)" rx="2" ry="2" />
<text x="879.58" y="431.5" ></text>
</g>
<g >
<title>hashbrown::raw::RawTable$LT$T$GT$::try_with_capacity::h7a6e6bae489d4fe9 (10 samples, 0.02%)</title><rect x="102.8" y="213" width="0.3" height="15.0" fill="rgb(220,204,22)" rx="2" ry="2" />
<text x="105.85" y="223.5" ></text>
</g>
<g >
<title>std::time::Instant::now::h33d2ba6042def2d2 (6 samples, 0.01%)</title><rect x="1159.5" y="309" width="0.2" height="15.0" fill="rgb(206,161,32)" rx="2" ry="2" />
<text x="1162.52" y="319.5" ></text>
</g>
<g >
<title>_int_free (4 samples, 0.01%)</title><rect x="1178.8" y="277" width="0.1" height="15.0" fill="rgb(244,63,25)" rx="2" ry="2" />
<text x="1181.81" y="287.5" ></text>
</g>
<g >
<title>_int_realloc (9 samples, 0.02%)</title><rect x="204.1" y="245" width="0.2" height="15.0" fill="rgb(224,178,53)" rx="2" ry="2" />
<text x="207.06" y="255.5" ></text>
</g>
<g >
<title>memcg_kmem_get_cache (4 samples, 0.01%)</title><rect x="346.4" y="213" width="0.2" height="15.0" fill="rgb(233,110,54)" rx="2" ry="2" />
<text x="349.45" y="223.5" ></text>
</g>
<g >
<title>std::panic::catch_unwind::hd5e0a26424bd7f34 (6 samples, 0.01%)</title><rect x="1167.2" y="485" width="0.1" height="15.0" fill="rgb(238,185,40)" rx="2" ry="2" />
<text x="1170.17" y="495.5" ></text>
</g>
<g >
<title>_ZN17cranelift_codegen8regalloc9diversion13RegDiversions6divert17h0dfdaeead6ef2c57E.llvm.6468024634034730254 (4 samples, 0.01%)</title><rect x="13.6" y="357" width="0.1" height="15.0" fill="rgb(209,68,48)" rx="2" ry="2" />
<text x="16.57" y="367.5" ></text>
</g>
<g >
<title>alloc::raw_vec::RawVec$LT$T$C$A$GT$::reserve::hea3f43976955e3d2 (4 samples, 0.01%)</title><rect x="142.3" y="245" width="0.1" height="15.0" fill="rgb(254,36,45)" rx="2" ry="2" />
<text x="145.26" y="255.5" ></text>
</g>
<g >
<title>__GI___libc_free (8 samples, 0.02%)</title><rect x="1110.2" y="437" width="0.3" height="15.0" fill="rgb(207,45,25)" rx="2" ry="2" />
<text x="1113.23" y="447.5" ></text>
</g>
<g >
<title>__GI___libc_free (30 samples, 0.07%)</title><rect x="307.6" y="341" width="0.9" height="15.0" fill="rgb(212,38,28)" rx="2" ry="2" />
<text x="310.60" y="351.5" ></text>
</g>
<g >
<title>_ZN17cranelift_codegen8regalloc9diversion13RegDiversions6divert17h0dfdaeead6ef2c57E.llvm.6468024634034730254 (24 samples, 0.06%)</title><rect x="24.5" y="341" width="0.7" height="15.0" fill="rgb(245,13,5)" rx="2" ry="2" />
<text x="27.50" y="351.5" ></text>
</g>
<g >
<title>std::sys::unix::time::inner::Instant::now::h23f1bea5949f1bbd (10 samples, 0.02%)</title><rect x="108.8" y="229" width="0.3" height="15.0" fill="rgb(248,166,24)" rx="2" ry="2" />
<text x="111.78" y="239.5" ></text>
</g>
<g >
<title>_int_realloc (9 samples, 0.02%)</title><rect x="1177.8" y="325" width="0.2" height="15.0" fill="rgb(215,204,15)" rx="2" ry="2" />
<text x="1180.78" y="335.5" ></text>
</g>
<g >
<title>mprotect_fixup (158 samples, 0.38%)</title><rect x="284.5" y="277" width="4.5" height="15.0" fill="rgb(240,159,15)" rx="2" ry="2" />
<text x="287.46" y="287.5" ></text>
</g>
<g >
<title>parity_wasm::elements::primitives::CountedWriter$LT$W$GT$::done::hd4981212fa202dc5 (1,060 samples, 2.56%)</title><rect x="1019.7" y="437" width="30.2" height="15.0" fill="rgb(230,220,42)" rx="2" ry="2" />
<text x="1022.69" y="447.5" >pa..</text>
</g>
<g >
<title>_$LT$hashbrown..raw..RawTable$LT$T$GT$$u20$as$u20$core..clone..Clone$GT$::clone::hbbe73e1f74833d54 (7 samples, 0.02%)</title><rect x="257.4" y="357" width="0.2" height="15.0" fill="rgb(205,56,1)" rx="2" ry="2" />
<text x="260.43" y="367.5" ></text>
</g>
<g >
<title>_int_malloc (7 samples, 0.02%)</title><rect x="1177.2" y="277" width="0.2" height="15.0" fill="rgb(243,5,36)" rx="2" ry="2" />
<text x="1180.18" y="287.5" ></text>
</g>
<g >
<title>alloc::raw_vec::RawVec$LT$T$C$A$GT$::reserve::hd6c8f26eb3c9fb4b (12 samples, 0.03%)</title><rect x="1179.4" y="357" width="0.3" height="15.0" fill="rgb(236,110,37)" rx="2" ry="2" />
<text x="1182.38" y="367.5" ></text>
</g>
<g >
<title>__rust_maybe_catch_panic (6 samples, 0.01%)</title><rect x="184.6" y="501" width="0.2" height="15.0" fill="rgb(226,42,46)" rx="2" ry="2" />
<text x="187.62" y="511.5" ></text>
</g>
<g >
<title>cranelift_codegen::regalloc::virtregs::VirtRegs::find::h8895455c5ba49bed (6 samples, 0.01%)</title><rect x="131.3" y="245" width="0.2" height="15.0" fill="rgb(226,118,5)" rx="2" ry="2" />
<text x="134.33" y="255.5" ></text>
</g>
<g >
<title>alloc_perturb (4 samples, 0.01%)</title><rect x="1040.1" y="373" width="0.1" height="15.0" fill="rgb(239,30,11)" rx="2" ry="2" />
<text x="1043.10" y="383.5" ></text>
</g>
<g >
<title>hashbrown::raw::RawTable$LT$T$GT$::try_with_capacity::h7a6e6bae489d4fe9 (11 samples, 0.03%)</title><rect x="136.2" y="213" width="0.4" height="15.0" fill="rgb(237,170,43)" rx="2" ry="2" />
<text x="139.24" y="223.5" ></text>
</g>
<g >
<title>_$LT$cranelift_codegen..timing..details..TimingToken$u20$as$u20$core..ops..drop..Drop$GT$::drop::h1b19c2a93ee0a091 (5 samples, 0.01%)</title><rect x="170.1" y="277" width="0.2" height="15.0" fill="rgb(215,214,19)" rx="2" ry="2" />
<text x="173.12" y="287.5" ></text>
</g>
<g >
<title>std::sys::unix::time::inner::now::ha10452f37b2930c5 (5 samples, 0.01%)</title><rect x="98.3" y="229" width="0.1" height="15.0" fill="rgb(209,151,51)" rx="2" ry="2" />
<text x="101.28" y="239.5" ></text>
</g>
<g >
<title>_$LT$core..iter..adapters..Cloned$LT$I$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$::fold::hd92c812f09fe4460 (14 samples, 0.03%)</title><rect x="795.1" y="357" width="0.4" height="15.0" fill="rgb(250,37,25)" rx="2" ry="2" />
<text x="798.10" y="367.5" ></text>
</g>
<g >
<title>core::ptr::real_drop_in_place::h8867d7619d5a1899 (11 samples, 0.03%)</title><rect x="179.8" y="341" width="0.3" height="15.0" fill="rgb(243,71,11)" rx="2" ry="2" />
<text x="182.79" y="351.5" ></text>
</g>
<g >
<title>__GI___libc_malloc (4 samples, 0.01%)</title><rect x="1179.9" y="341" width="0.1" height="15.0" fill="rgb(253,146,54)" rx="2" ry="2" />
<text x="1182.92" y="351.5" ></text>
</g>
<g >
<title>find_vma (9 samples, 0.02%)</title><rect x="237.1" y="309" width="0.2" height="15.0" fill="rgb(216,205,36)" rx="2" ry="2" />
<text x="240.08" 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 (12 samples, 0.03%)</title><rect x="19.5" y="309" width="0.3" height="15.0" fill="rgb(225,180,40)" rx="2" ry="2" />
<text x="22.50" y="319.5" ></text>
</g>
<g >
<title>cranelift_bforest::pool::NodePool$LT$F$GT$::alloc_node::h8c4b85d6336313f8 (12 samples, 0.03%)</title><rect x="113.3" y="245" width="0.3" height="15.0" fill="rgb(240,39,28)" rx="2" ry="2" />
<text x="116.29" y="255.5" ></text>
</g>
<g >
<title>__GI___libc_malloc (11 samples, 0.03%)</title><rect x="803.1" y="341" width="0.4" height="15.0" fill="rgb(205,104,11)" rx="2" ry="2" />
<text x="806.15" y="351.5" ></text>
</g>
<g >
<title>_int_free (4 samples, 0.01%)</title><rect x="91.7" y="181" width="0.2" height="15.0" fill="rgb(209,151,39)" rx="2" ry="2" />
<text x="94.74" y="191.5" ></text>
</g>
<g >
<title>cranelift_codegen::isa::constraints::RecipeConstraints::satisfied::h33556c8a9b1bba6e (47 samples, 0.11%)</title><rect x="100.4" y="245" width="1.4" height="15.0" fill="rgb(206,214,4)" rx="2" ry="2" />
<text x="103.42" 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 (18 samples, 0.04%)</title><rect x="1151.9" y="325" width="0.5" height="15.0" fill="rgb(213,64,43)" rx="2" ry="2" />
<text x="1154.90" y="335.5" ></text>
</g>
<g >
<title>cranelift_codegen::regalloc::diversion::RegDiversions::apply::ha5ceacd048d67eac (5 samples, 0.01%)</title><rect x="26.3" y="341" width="0.1" height="15.0" fill="rgb(229,225,27)" rx="2" ry="2" />
<text x="29.27" y="351.5" ></text>
</g>
<g >
<title>__GI___libc_malloc (5 samples, 0.01%)</title><rect x="1168.7" y="245" width="0.1" height="15.0" fill="rgb(249,70,31)" rx="2" ry="2" />
<text x="1171.68" y="255.5" ></text>
</g>
<g >
<title>cranelift_codegen::isa::x86::enc_tables::size_plus_maybe_sib_or_offset_for_in_reg_1::h655f2e9c6d128efc (9 samples, 0.02%)</title><rect x="35.8" y="341" width="0.3" height="15.0" fill="rgb(236,226,49)" rx="2" ry="2" />
<text x="38.83" y="351.5" ></text>
</g>
<g >
<title>do_mmap (5 samples, 0.01%)</title><rect x="187.0" y="101" width="0.1" height="15.0" fill="rgb(233,67,5)" rx="2" ry="2" />
<text x="189.99" y="111.5" ></text>
</g>
<g >
<title>__perf_event__output_id_sample (4 samples, 0.01%)</title><rect x="339.6" y="197" width="0.1" height="15.0" fill="rgb(227,200,23)" rx="2" ry="2" />
<text x="342.57" y="207.5" ></text>
</g>
<g >
<title>_ZN16cranelift_entity4list17ListPool$LT$T$GT$5alloc17h7031e3fd97879e16E.llvm.776987249141506950 (4 samples, 0.01%)</title><rect x="16.3" y="309" width="0.1" height="15.0" fill="rgb(216,37,54)" rx="2" ry="2" />
<text x="19.25" y="319.5" ></text>
</g>
<g >
<title>_$LT$cranelift_codegen..timing..details..TimingToken$u20$as$u20$core..ops..drop..Drop$GT$::drop::h1b19c2a93ee0a091 (13 samples, 0.03%)</title><rect x="119.2" y="277" width="0.3" height="15.0" fill="rgb(230,151,25)" rx="2" ry="2" />
<text x="122.17" y="287.5" ></text>
</g>
<g >
<title>anon_vma_interval_tree_insert (10 samples, 0.02%)</title><rect x="341.5" y="213" width="0.2" height="15.0" fill="rgb(217,77,14)" rx="2" ry="2" />
<text x="344.45" y="223.5" ></text>
</g>
<g >
<title>unmap_page_range (5 samples, 0.01%)</title><rect x="240.2" y="261" width="0.2" height="15.0" fill="rgb(215,177,2)" rx="2" ry="2" />
<text x="243.22" y="271.5" ></text>
</g>
<g >
<title>_$LT$alloc..vec..Vec$LT$T$GT$$u20$as$u20$core..clone..Clone$GT$::clone::h5b9e6f3d06cc15e0 (652 samples, 1.58%)</title><rect x="1060.2" y="437" width="18.7" height="15.0" fill="rgb(231,201,26)" rx="2" ry="2" />
<text x="1063.25" y="447.5" ></text>
</g>
<g >
<title>_int_malloc (5 samples, 0.01%)</title><rect x="33.4" y="261" width="0.1" height="15.0" fill="rgb(220,79,49)" rx="2" ry="2" />
<text x="36.38" y="271.5" ></text>
</g>
<g >
<title>_ZN16cranelift_entity4list17ListPool$LT$T$GT$4free17hccc32c4538eef572E.llvm.776987249141506950 (4 samples, 0.01%)</title><rect x="83.6" y="213" width="0.1" height="15.0" fill="rgb(226,80,45)" rx="2" ry="2" />
<text x="86.58" y="223.5" ></text>
</g>
<g >
<title>__vdso_clock_gettime (8 samples, 0.02%)</title><rect x="171.7" y="229" width="0.2" height="15.0" fill="rgb(226,218,27)" rx="2" ry="2" />
<text x="174.69" y="239.5" ></text>
</g>
<g >
<title>rocinante::stoke::Superoptimizer::synthesize::h4ba34d72c5765be9 (6 samples, 0.01%)</title><rect x="1167.2" y="373" width="0.1" height="15.0" fill="rgb(206,184,34)" rx="2" ry="2" />
<text x="1170.17" y="383.5" ></text>
</g>
<g >
<title>_$LT$cranelift_codegen..isa..enc_tables..Encodings$u20$as$u20$core..iter..traits..iterator..Iterator$GT$::next::he6ba202105922eb5 (21 samples, 0.05%)</title><rect x="28.5" y="325" width="0.6" height="15.0" fill="rgb(226,41,24)" rx="2" ry="2" />
<text x="31.47" y="335.5" ></text>
</g>
<g >
<title>_$LT$core..result..Result$LT$T$C$E$GT$$u20$as$u20$core..ops..try..Try$GT$::into_result::h503c920fc569103b (5 samples, 0.01%)</title><rect x="519.0" y="293" width="0.1" height="15.0" fill="rgb(233,55,33)" rx="2" ry="2" />
<text x="521.96" y="303.5" ></text>
</g>
<g >
<title>_int_realloc (10 samples, 0.02%)</title><rect x="18.9" y="293" width="0.3" height="15.0" fill="rgb(219,187,5)" rx="2" ry="2" />
<text x="21.91" y="303.5" ></text>
</g>
<g >
<title>__GI___libc_malloc (352 samples, 0.85%)</title><rect x="607.9" y="357" width="10.1" height="15.0" fill="rgb(213,3,41)" rx="2" ry="2" />
<text x="610.95" y="367.5" ></text>
</g>
<g >
<title>_int_free (202 samples, 0.49%)</title><rect x="362.7" y="357" width="5.7" height="15.0" fill="rgb(249,155,54)" rx="2" ry="2" />
<text x="365.66" y="367.5" ></text>
</g>
<g >
<title>_int_realloc (440 samples, 1.06%)</title><rect x="1086.0" y="405" width="12.6" height="15.0" fill="rgb(243,182,19)" rx="2" ry="2" />
<text x="1089.02" y="415.5" ></text>
</g>
<g >
<title>_int_free (590 samples, 1.43%)</title><rect x="756.1" y="357" width="16.8" height="15.0" fill="rgb(226,31,29)" rx="2" ry="2" />
<text x="759.05" y="367.5" ></text>
</g>
<g >
<title>wasmer_clif_backend::trampoline::Trampolines::new::h8a78526849fe89b9 (643 samples, 1.56%)</title><rect x="1148.8" y="405" width="18.3" height="15.0" fill="rgb(225,36,27)" rx="2" ry="2" />
<text x="1151.79" y="415.5" ></text>
</g>
<g >
<title>sys_rt_sigprocmask (6 samples, 0.01%)</title><rect x="11.5" y="389" width="0.2" height="15.0" fill="rgb(237,205,52)" rx="2" ry="2" />
<text x="14.51" y="399.5" ></text>
</g>
<g >
<title>__GI___libc_realloc (6 samples, 0.01%)</title><rect x="128.1" y="229" width="0.1" height="15.0" fill="rgb(232,52,14)" rx="2" ry="2" />
<text x="131.08" y="239.5" ></text>
</g>
<g >
<title>std::sys::unix::alloc::_$LT$impl$u20$core..alloc..GlobalAlloc$u20$for$u20$std..alloc..System$GT$::realloc::h1ccdfac189eaabae (14 samples, 0.03%)</title><rect x="1098.8" y="405" width="0.4" height="15.0" fill="rgb(225,177,43)" rx="2" ry="2" />
<text x="1101.75" y="415.5" ></text>
</g>
<g >
<title>parity_wasm::elements::primitives::_$LT$impl$u20$core..convert..From$LT$parity_wasm..elements..primitives..VarInt32$GT$$u20$for$u20$i32$GT$::from::h0369c0448a8ade5c (14 samples, 0.03%)</title><rect x="995.4" y="405" width="0.4" height="15.0" fill="rgb(250,1,20)" rx="2" ry="2" />
<text x="998.43" y="415.5" ></text>
</g>
<g >
<title>_$LT$alloc..vec..Vec$LT$T$GT$$u20$as$u20$core..clone..Clone$GT$::clone::h6f689c5462342c94 (23 samples, 0.06%)</title><rect x="795.0" y="373" width="0.7" height="15.0" fill="rgb(230,135,10)" rx="2" ry="2" />
<text x="798.01" y="383.5" ></text>
</g>
<g >
<title>__GI___clock_gettime (7 samples, 0.02%)</title><rect x="1157.5" y="277" width="0.2" height="15.0" fill="rgb(232,85,10)" rx="2" ry="2" />
<text x="1160.52" y="287.5" ></text>
</g>
<g >
<title>uncharge_batch (11 samples, 0.03%)</title><rect x="238.8" y="197" width="0.3" height="15.0" fill="rgb(242,209,12)" rx="2" ry="2" />
<text x="241.79" y="207.5" ></text>
</g>
<g >
<title>cranelift_codegen::ir::layout::Layout::insert_inst::h352d76f498d27496 (4 samples, 0.01%)</title><rect x="1174.1" y="309" width="0.1" height="15.0" fill="rgb(247,94,23)" rx="2" ry="2" />
<text x="1177.07" 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 (6 samples, 0.01%)</title><rect x="184.6" y="325" width="0.2" height="15.0" fill="rgb(210,84,13)" rx="2" ry="2" />
<text x="187.62" y="335.5" ></text>
</g>
<g >
<title>_ZN4core5slice4sort7recurse17hcfda5acadaf50c0aE.llvm.15195122248153170019 (4 samples, 0.01%)</title><rect x="126.3" y="261" width="0.2" height="15.0" fill="rgb(252,142,5)" rx="2" ry="2" />
<text x="129.34" y="271.5" ></text>
</g>
<g >
<title>hashbrown::raw::RawTable$LT$T$GT$::insert_no_grow::he41501be23667ca7 (4 samples, 0.01%)</title><rect x="165.8" y="277" width="0.1" height="15.0" fill="rgb(214,101,49)" rx="2" ry="2" />
<text x="168.75" y="287.5" ></text>
</g>
<g >
<title>_int_malloc (9 samples, 0.02%)</title><rect x="1178.4" y="293" width="0.3" height="15.0" fill="rgb(215,125,37)" rx="2" ry="2" />
<text x="1181.44" y="303.5" ></text>
</g>
<g >
<title>core::slice::_$LT$impl$u20$$u5b$T$u5d$$GT$::copy_from_slice::hf2a016039d5668ca (6 samples, 0.01%)</title><rect x="947.3" y="389" width="0.1" height="15.0" fill="rgb(227,145,8)" rx="2" ry="2" />
<text x="950.25" y="399.5" ></text>
</g>
<g >
<title>__GI___libc_malloc (6 samples, 0.01%)</title><rect x="1176.5" y="341" width="0.2" height="15.0" fill="rgb(234,97,21)" rx="2" ry="2" />
<text x="1179.50" y="351.5" ></text>
</g>
<g >
<title>core::ptr::real_drop_in_place::h767229c0557115cd (12 samples, 0.03%)</title><rect x="299.3" y="357" width="0.4" height="15.0" fill="rgb(206,37,44)" rx="2" ry="2" />
<text x="302.33" y="367.5" ></text>
</g>
<g >
<title>__GI___libc_malloc (8 samples, 0.02%)</title><rect x="257.1" y="373" width="0.2" height="15.0" fill="rgb(213,171,30)" rx="2" ry="2" />
<text x="260.06" y="383.5" ></text>
</g>
<g >
<title>__GI___libc_malloc (329 samples, 0.80%)</title><rect x="1009.7" y="405" width="9.4" height="15.0" fill="rgb(232,137,51)" rx="2" ry="2" />
<text x="1012.70" y="415.5" ></text>
</g>
<g >
<title>_int_malloc (4 samples, 0.01%)</title><rect x="1176.9" y="293" width="0.1" height="15.0" fill="rgb(252,38,15)" rx="2" ry="2" />
<text x="1179.90" y="303.5" ></text>
</g>
<g >
<title>vm_mmap_pgoff (163 samples, 0.39%)</title><rect x="345.1" y="277" width="4.7" height="15.0" fill="rgb(215,155,15)" rx="2" ry="2" />
<text x="348.11" y="287.5" ></text>
</g>
<g >
<title>alloc::raw_vec::RawVec$LT$T$C$A$GT$::reserve::h500ef385b8747b29 (25 samples, 0.06%)</title><rect x="147.7" y="229" width="0.7" height="15.0" fill="rgb(213,194,33)" rx="2" ry="2" />
<text x="150.71" y="239.5" ></text>
</g>
<g >
<title>_int_malloc (9 samples, 0.02%)</title><rect x="805.3" y="293" width="0.3" height="15.0" fill="rgb(248,67,7)" rx="2" ry="2" />
<text x="808.31" y="303.5" ></text>
</g>
<g >
<title>__vma_link_rb (5 samples, 0.01%)</title><rect x="228.6" y="245" width="0.1" height="15.0" fill="rgb(211,71,37)" rx="2" ry="2" />
<text x="231.60" y="255.5" ></text>
</g>
<g >
<title>alloc_pages_vma (30 samples, 0.07%)</title><rect x="277.2" y="277" width="0.8" height="15.0" fill="rgb(215,67,19)" rx="2" ry="2" />
<text x="280.18" y="287.5" ></text>
</g>
<g >
<title>vma_compute_subtree_gap (5 samples, 0.01%)</title><rect x="235.7" y="277" width="0.1" height="15.0" fill="rgb(218,209,54)" rx="2" ry="2" />
<text x="238.68" y="287.5" ></text>
</g>
<g >
<title>cranelift_codegen::dominator_tree::DominatorTree::compute::hb8295076ad170b26 (39 samples, 0.09%)</title><rect x="115.3" y="277" width="1.1" height="15.0" fill="rgb(207,144,27)" rx="2" ry="2" />
<text x="118.29" y="287.5" ></text>
</g>
<g >
<title>__GI___libc_malloc (6 samples, 0.01%)</title><rect x="73.1" y="261" width="0.2" height="15.0" fill="rgb(229,117,43)" rx="2" ry="2" />
<text x="76.11" y="271.5" ></text>
</g>
<g >
<title>_$LT$cranelift_codegen..isa..x86..Isa$u20$as$u20$cranelift_codegen..isa..TargetIsa$GT$::regclass_for_abi_type::hf8a70febdf7f3646 (4 samples, 0.01%)</title><rect x="49.0" y="325" width="0.1" height="15.0" fill="rgb(244,76,27)" rx="2" ry="2" />
<text x="52.02" y="335.5" ></text>
</g>
<g >
<title>std::time::Instant::elapsed::h8e307314b2acf9be (7 samples, 0.02%)</title><rect x="171.1" y="261" width="0.2" height="15.0" fill="rgb(242,223,8)" rx="2" ry="2" />
<text x="174.09" y="271.5" ></text>
</g>
<g >
<title>cranelift_codegen_shared::constant_hash::simple_hash::h522b288b2afb6d20 (13 samples, 0.03%)</title><rect x="326.5" y="325" width="0.4" height="15.0" fill="rgb(241,40,3)" rx="2" ry="2" />
<text x="329.50" y="335.5" ></text>
</g>
<g >
<title>cranelift_codegen::ir::dfg::DataFlowGraph::resolve_aliases_in_arguments::ha1a59fc1c5edab63 (17 samples, 0.04%)</title><rect x="164.8" y="277" width="0.5" height="15.0" fill="rgb(225,125,8)" rx="2" ry="2" />
<text x="167.84" y="287.5" ></text>
</g>
<g >
<title>std::time::Instant::now::h33d2ba6042def2d2 (6 samples, 0.01%)</title><rect x="131.5" y="261" width="0.2" height="15.0" fill="rgb(223,8,22)" rx="2" ry="2" />
<text x="134.50" y="271.5" ></text>
</g>
<g >
<title>_ZN9hashbrown3raw17RawTable$LT$T$GT$14reserve_rehash17h949d57d1e07c193dE.llvm.16938716460618634628 (14 samples, 0.03%)</title><rect x="1148.9" y="309" width="0.4" height="15.0" fill="rgb(236,209,13)" rx="2" ry="2" />
<text x="1151.93" y="319.5" ></text>
</g>
<g >
<title>cranelift_codegen::redundant_reload_remover::RedundantReloadRemover::processing_stack_maybe_push::h68b38d091c29c7ca (16 samples, 0.04%)</title><rect x="1153.1" y="341" width="0.5" height="15.0" fill="rgb(209,111,8)" rx="2" ry="2" />
<text x="1156.10" y="351.5" ></text>
</g>
<g >
<title>c2_chacha::guts::refill_wide::he4343866a1fa78ce (7 samples, 0.02%)</title><rect x="1143.8" y="421" width="0.2" height="15.0" fill="rgb(245,14,37)" rx="2" ry="2" />
<text x="1146.85" y="431.5" ></text>
</g>
<g >
<title>do_syscall_64 (211 samples, 0.51%)</title><rect x="283.3" y="325" width="6.1" height="15.0" fill="rgb(249,200,13)" rx="2" ry="2" />
<text x="286.34" y="335.5" ></text>
</g>
<g >
<title>cranelift_codegen::regalloc::solver::Solver::reassign_in::h4635b38f4d433603 (33 samples, 0.08%)</title><rect x="140.3" y="261" width="1.0" height="15.0" fill="rgb(246,23,10)" rx="2" ry="2" />
<text x="143.35" y="271.5" ></text>
</g>
<g >
<title>__rust_alloc (12 samples, 0.03%)</title><rect x="596.4" y="373" width="0.4" height="15.0" fill="rgb(254,76,42)" rx="2" ry="2" />
<text x="599.42" y="383.5" ></text>
</g>
<g >
<title>cranelift_codegen::context::Context::compile::h9fe1ff28e88fe30f (93 samples, 0.22%)</title><rect x="1167.4" y="325" width="2.6" height="15.0" fill="rgb(222,217,42)" rx="2" ry="2" />
<text x="1170.37" y="335.5" ></text>
</g>
<g >
<title>_copy_to_user (8 samples, 0.02%)</title><rect x="1188.5" y="421" width="0.2" height="15.0" fill="rgb(240,137,5)" rx="2" ry="2" />
<text x="1191.49" y="431.5" ></text>
</g>
<g >
<title>hashbrown::raw::RawTable$LT$T$GT$::insert::h1ba60dad4ebe9e0f (21 samples, 0.05%)</title><rect x="193.3" y="197" width="0.6" height="15.0" fill="rgb(232,70,9)" rx="2" ry="2" />
<text x="196.29" y="207.5" ></text>
</g>
<g >
<title>__GI___clock_gettime (7 samples, 0.02%)</title><rect x="116.2" y="213" width="0.2" height="15.0" fill="rgb(209,56,45)" rx="2" ry="2" />
<text x="119.20" y="223.5" ></text>
</g>
<g >
<title>_$LT$wasmparser..validator..ValidatingParser$u20$as$u20$wasmparser..parser..WasmDecoder$GT$::read::h573837335870e77b (11,878 samples, 28.73%)</title><rect x="368.6" y="389" width="339.0" height="15.0" fill="rgb(208,56,26)" rx="2" ry="2" />
<text x="371.60" y="399.5" >_$LT$wasmparser..validator..ValidatingParser$..</text>
</g>
<g >
<title>__GI___libc_malloc (7 samples, 0.02%)</title><rect x="192.6" y="197" width="0.2" height="15.0" fill="rgb(239,126,19)" rx="2" ry="2" />
<text x="195.58" y="207.5" ></text>
</g>
<g >
<title>hashbrown::raw::RawTable$LT$T$GT$::try_with_capacity::h7a6e6bae489d4fe9 (6 samples, 0.01%)</title><rect x="1149.2" y="293" width="0.1" height="15.0" fill="rgb(236,206,13)" rx="2" ry="2" />
<text x="1152.16" y="303.5" ></text>
</g>
<g >
<title>std::sys::unix::time::inner::now::ha10452f37b2930c5 (5 samples, 0.01%)</title><rect x="36.9" y="277" width="0.2" height="15.0" fill="rgb(250,5,7)" rx="2" ry="2" />
<text x="39.94" y="287.5" ></text>
</g>
<g >
<title>__libc_siglongjmp (26 samples, 0.06%)</title><rect x="11.0" y="453" width="0.7" height="15.0" fill="rgb(241,121,51)" rx="2" ry="2" />
<text x="14.00" y="463.5" ></text>
</g>
<g >
<title>cranelift_codegen::isa::TargetIsa::encode::h3618ddf6ad568ce7 (4 samples, 0.01%)</title><rect x="1174.2" y="309" width="0.1" height="15.0" fill="rgb(209,155,52)" rx="2" ry="2" />
<text x="1177.19" y="319.5" ></text>
</g>
<g >
<title>__GI___libc_realloc (18 samples, 0.04%)</title><rect x="147.9" y="213" width="0.5" height="15.0" fill="rgb(229,135,18)" rx="2" ry="2" />
<text x="150.89" y="223.5" ></text>
</g>
<g >
<title>std::time::Instant::now::h33d2ba6042def2d2 (7 samples, 0.02%)</title><rect x="36.4" y="325" width="0.2" height="15.0" fill="rgb(207,109,52)" rx="2" ry="2" />
<text x="39.40" y="335.5" ></text>
</g>
<g >
<title>alloc::raw_vec::RawVec$LT$T$C$A$GT$::reserve::h86648d6f1470c78b (362 samples, 0.88%)</title><rect x="596.8" y="373" width="10.3" height="15.0" fill="rgb(217,181,1)" rx="2" ry="2" />
<text x="599.76" y="383.5" ></text>
</g>
<g >
<title>_ZN17cranelift_codegen8regalloc9diversion13RegDiversions6divert17h0dfdaeead6ef2c57E.llvm.6468024634034730254 (26 samples, 0.06%)</title><rect x="72.1" y="277" width="0.8" height="15.0" fill="rgb(230,210,21)" rx="2" ry="2" />
<text x="75.14" y="287.5" ></text>
</g>
<g >
<title>__vdso_clock_gettime (6 samples, 0.01%)</title><rect x="161.3" y="213" width="0.2" height="15.0" fill="rgb(222,162,53)" rx="2" ry="2" />
<text x="164.30" y="223.5" ></text>
</g>
<g >
<title>__perf_event_header__init_id (4 samples, 0.01%)</title><rect x="339.7" y="197" width="0.1" height="15.0" fill="rgb(227,10,26)" rx="2" ry="2" />
<text x="342.69" y="207.5" ></text>
</g>
<g >
<title>_$LT$wasmer_clif_backend..signal..Caller$u20$as$u20$wasmer_runtime_core..backend..RunnableModule$GT$::get_func::hbdb643ef237f3ef3 (8 samples, 0.02%)</title><rect x="875.9" y="389" width="0.2" height="15.0" fill="rgb(228,149,54)" rx="2" ry="2" />
<text x="878.87" y="399.5" ></text>
</g>
<g >
<title>std::sys::unix::time::inner::Instant::checked_sub_instant::hba0bb9395d034aa4 (4 samples, 0.01%)</title><rect x="87.6" y="197" width="0.1" height="15.0" fill="rgb(217,22,41)" rx="2" ry="2" />
<text x="90.58" y="207.5" ></text>
</g>
<g >
<title>__rdl_alloc (9 samples, 0.02%)</title><rect x="1048.5" y="405" width="0.3" height="15.0" fill="rgb(250,28,54)" rx="2" ry="2" />
<text x="1051.52" y="415.5" ></text>
</g>
<g >
<title>_int_realloc (6 samples, 0.01%)</title><rect x="1174.6" y="293" width="0.2" height="15.0" fill="rgb(214,60,46)" rx="2" ry="2" />
<text x="1177.62" y="303.5" ></text>
</g>
<g >
<title>_int_realloc (6 samples, 0.01%)</title><rect x="319.4" y="293" width="0.2" height="15.0" fill="rgb(238,82,14)" rx="2" ry="2" />
<text x="322.39" y="303.5" ></text>
</g>
<g >
<title>_ZN17cranelift_codegen3isa3x8615isa_constructor17h4c0ec78ad154a9afE.llvm.1715965870215341490 (20 samples, 0.05%)</title><rect x="326.9" y="341" width="0.6" height="15.0" fill="rgb(206,77,51)" rx="2" ry="2" />
<text x="329.90" y="351.5" ></text>
</g>
<g >
<title>__memcpy_avx_unaligned (8 samples, 0.02%)</title><rect x="182.2" y="421" width="0.2" height="15.0" fill="rgb(222,37,22)" rx="2" ry="2" />
<text x="185.16" y="431.5" ></text>
</g>
<g >
<title>_ZN4core3ptr18real_drop_in_place17hbf1a2e7b1d7f1667E.llvm.2002196175208074555 (81 samples, 0.20%)</title><rect x="450.5" y="357" width="2.3" height="15.0" fill="rgb(251,14,24)" rx="2" ry="2" />
<text x="453.46" y="367.5" ></text>
</g>
<g >
<title>__GI___libc_realloc (5 samples, 0.01%)</title><rect x="1167.7" y="149" width="0.1" height="15.0" fill="rgb(232,43,16)" rx="2" ry="2" />
<text x="1170.68" y="159.5" ></text>
</g>
<g >
<title>cranelift_bforest::set::Set$LT$K$GT$::insert::h750422a26fd1bdc6 (5 samples, 0.01%)</title><rect x="116.8" y="229" width="0.2" height="15.0" fill="rgb(206,137,26)" rx="2" ry="2" />
<text x="119.83" y="239.5" ></text>
</g>
<g >
<title>cranelift_codegen::ir::dfg::DataFlowGraph::make_inst_results::hc774d04d1992dff6 (8 samples, 0.02%)</title><rect x="319.8" y="357" width="0.2" height="15.0" fill="rgb(234,92,18)" rx="2" ry="2" />
<text x="322.82" y="367.5" ></text>
</g>
<g >
<title>__GI___libc_malloc (19 samples, 0.05%)</title><rect x="194.4" y="181" width="0.5" height="15.0" fill="rgb(236,168,44)" rx="2" ry="2" />
<text x="197.35" y="191.5" ></text>
</g>
<g >
<title>cranelift_codegen::isa::x86::abi::insert_common_epilogues::h86f7f3e925a821fa (59 samples, 0.14%)</title><rect x="19.2" y="325" width="1.7" height="15.0" fill="rgb(251,142,45)" rx="2" ry="2" />
<text x="22.19" y="335.5" ></text>
</g>
<g >
<title>alloc_perturb (4 samples, 0.01%)</title><rect x="652.0" y="293" width="0.2" height="15.0" fill="rgb(211,178,47)" rx="2" ry="2" />
<text x="655.05" y="303.5" ></text>
</g>
<g >
<title>wasmparser::validator::ValidatingParser::new::hf8cf84418abf20c9 (641 samples, 1.55%)</title><rect x="774.7" y="389" width="18.3" height="15.0" fill="rgb(252,175,42)" rx="2" ry="2" />
<text x="777.69" y="399.5" ></text>
</g>
<g >
<title>_$LT$parity_wasm..elements..primitives..CountedListWriter$LT$I$C$T$GT$$u20$as$u20$parity_wasm..elements..Serialize$GT$::serialize::h48f6ec9f48077172 (13 samples, 0.03%)</title><rect x="202.2" y="277" width="0.4" height="15.0" fill="rgb(247,168,32)" rx="2" ry="2" />
<text x="205.20" y="287.5" ></text>
</g>
<g >
<title>perf_output_copy (4 samples, 0.01%)</title><rect x="268.8" y="197" width="0.1" height="15.0" fill="rgb(213,58,25)" rx="2" ry="2" />
<text x="271.79" y="207.5" ></text>
</g>
<g >
<title>cranelift_codegen::flowgraph::ControlFlowGraph::compute::hdce42828fa3e59cb (11 samples, 0.03%)</title><rect x="37.3" y="357" width="0.3" height="15.0" fill="rgb(245,15,35)" rx="2" ry="2" />
<text x="40.29" y="367.5" ></text>
</g>
<g >
<title>cranelift_codegen::ir::builder::InstBuilder::iconst::h085df8078cba1853 (8 samples, 0.02%)</title><rect x="1167.6" y="213" width="0.2" height="15.0" fill="rgb(242,3,2)" rx="2" ry="2" />
<text x="1170.59" y="223.5" ></text>
</g>
<g >
<title>alloc::raw_vec::RawVec$LT$T$C$A$GT$::reserve::h46d48c74cb3cbfdc (17 samples, 0.04%)</title><rect x="1099.3" y="437" width="0.5" height="15.0" fill="rgb(254,39,43)" rx="2" ry="2" />
<text x="1102.32" y="447.5" ></text>
</g>
<g >
<title>alloc::raw_vec::RawVec$LT$T$C$A$GT$::reserve::h5e34cfad90a6ce21 (11 samples, 0.03%)</title><rect x="801.0" y="341" width="0.3" height="15.0" fill="rgb(254,33,25)" rx="2" ry="2" />
<text x="803.98" y="351.5" ></text>
</g>
<g >
<title>core::ptr::real_drop_in_place::hfcfcbc8f14d16298 (29 samples, 0.07%)</title><rect x="354.6" y="405" width="0.8" height="15.0" fill="rgb(230,178,23)" rx="2" ry="2" />
<text x="357.58" y="415.5" ></text>
</g>
<g >
<title>std::time::Instant::now::h33d2ba6042def2d2 (7 samples, 0.02%)</title><rect x="37.1" y="341" width="0.2" height="15.0" fill="rgb(211,67,26)" rx="2" ry="2" />
<text x="40.09" y="351.5" ></text>
</g>
<g >
<title>alloc::raw_vec::RawVec$LT$T$C$A$GT$::reserve::h5bb4661d248be310 (39 samples, 0.09%)</title><rect x="200.8" y="245" width="1.1" height="15.0" fill="rgb(251,140,26)" rx="2" ry="2" />
<text x="203.77" y="255.5" ></text>
</g>
<g >
<title>wasmparser::parser::Parser::check_section_end::h80796459380c08b2 (16 samples, 0.04%)</title><rect x="812.5" y="357" width="0.4" height="15.0" fill="rgb(240,65,35)" rx="2" ry="2" />
<text x="815.48" y="367.5" ></text>
</g>
<g >
<title>_ZN17cranelift_codegen8regalloc9diversion13RegDiversions6divert17h0dfdaeead6ef2c57E.llvm.6468024634034730254 (28 samples, 0.07%)</title><rect x="32.7" y="341" width="0.8" height="15.0" fill="rgb(213,11,0)" rx="2" ry="2" />
<text x="35.75" y="351.5" ></text>
</g>
<g >
<title>cranelift_codegen::flowgraph::ControlFlowGraph::compute::hdce42828fa3e59cb (99 samples, 0.24%)</title><rect x="112.0" y="293" width="2.9" height="15.0" fill="rgb(235,71,47)" rx="2" ry="2" />
<text x="115.04" y="303.5" ></text>
</g>
<g >
<title>__GI___libc_malloc (18 samples, 0.04%)</title><rect x="191.9" y="213" width="0.5" height="15.0" fill="rgb(215,136,23)" rx="2" ry="2" />
<text x="194.87" y="223.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 (93 samples, 0.22%)</title><rect x="1167.4" y="389" width="2.6" height="15.0" fill="rgb(226,123,49)" rx="2" ry="2" />
<text x="1170.37" y="399.5" ></text>
</g>
<g >
<title>wasmer_clif_backend::trampoline::Trampolines::to_trampoline_cache::h749748cb93becce9 (176 samples, 0.43%)</title><rect x="257.3" y="373" width="5.1" height="15.0" fill="rgb(213,171,13)" rx="2" ry="2" />
<text x="260.34" y="383.5" ></text>
</g>
<g >
<title>__GI___libc_malloc (17 samples, 0.04%)</title><rect x="182.5" y="405" width="0.5" height="15.0" fill="rgb(222,88,29)" rx="2" ry="2" />
<text x="185.51" y="415.5" ></text>
</g>
<g >
<title>__vdso_clock_gettime (7 samples, 0.02%)</title><rect x="111.8" y="213" width="0.2" height="15.0" fill="rgb(242,121,35)" rx="2" ry="2" />
<text x="114.84" y="223.5" ></text>
</g>
<g >
<title>_ZN17cranelift_codegen9flowgraph16ControlFlowGraph11compute_ebb17he662711fe9d10399E.llvm.15195122248153170019 (8 samples, 0.02%)</title><rect x="1167.4" y="213" width="0.2" height="15.0" fill="rgb(224,188,13)" rx="2" ry="2" />
<text x="1170.37" y="223.5" ></text>
</g>
<g >
<title>rocinante::main::h69eb7648725adb6f (6 samples, 0.01%)</title><rect x="184.6" y="437" width="0.2" height="15.0" fill="rgb(231,194,40)" rx="2" ry="2" />
<text x="187.62" y="447.5" ></text>
</g>
<g >
<title>alloc::raw_vec::RawVec$LT$T$C$A$GT$::reserve::h393bb52f79c5d475 (8 samples, 0.02%)</title><rect x="58.3" y="341" width="0.3" height="15.0" fill="rgb(245,189,18)" rx="2" ry="2" />
<text x="61.35" 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 (4 samples, 0.01%)</title><rect x="1173.8" y="341" width="0.1" height="15.0" fill="rgb(235,11,29)" rx="2" ry="2" />
<text x="1176.79" y="351.5" ></text>
</g>
<g >
<title>alloc::raw_vec::RawVec$LT$T$C$A$GT$::reserve::h500ef385b8747b29 (16 samples, 0.04%)</title><rect x="322.5" y="309" width="0.5" height="15.0" fill="rgb(253,52,23)" rx="2" ry="2" />
<text x="325.50" y="319.5" ></text>
</g>
<g >
<title>cranelift_codegen::flowgraph::ControlFlowGraph::recompute_ebb::h44e6fe3205f2df2b (19 samples, 0.05%)</title><rect x="83.7" y="213" width="0.6" height="15.0" fill="rgb(219,223,20)" rx="2" ry="2" />
<text x="86.72" y="223.5" ></text>
</g>
<g >
<title>cranelift_codegen::regalloc::reload::Reload::run::h05729139e9b4ae44 (18 samples, 0.04%)</title><rect x="1178.8" y="389" width="0.5" height="15.0" fill="rgb(231,64,23)" rx="2" ry="2" />
<text x="1181.81" y="399.5" ></text>
</g>
<g >
<title>_ZN81_$LT$std..collections..hash..map..DefaultHasher$u20$as$u20$core..hash..Hasher$GT$5write17hce30e4f96ad2e64eE.llvm.689856235829814499 (6 samples, 0.01%)</title><rect x="858.0" y="389" width="0.2" height="15.0" fill="rgb(252,121,51)" rx="2" ry="2" />
<text x="861.03" y="399.5" ></text>
</g>
<g >
<title>std::sys::unix::time::inner::Instant::now::h23f1bea5949f1bbd (6 samples, 0.01%)</title><rect x="122.4" y="229" width="0.2" height="15.0" fill="rgb(222,155,29)" rx="2" ry="2" />
<text x="125.40" 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 (11 samples, 0.03%)</title><rect x="91.3" y="229" width="0.3" height="15.0" fill="rgb(210,133,38)" rx="2" ry="2" />
<text x="94.29" y="239.5" ></text>
</g>
<g >
<title>_int_malloc (171 samples, 0.41%)</title><rect x="1135.6" y="421" width="4.9" height="15.0" fill="rgb(219,138,20)" rx="2" ry="2" />
<text x="1138.57" y="431.5" ></text>
</g>
<g >
<title>_int_malloc (5 samples, 0.01%)</title><rect x="110.0" y="245" width="0.2" height="15.0" fill="rgb(247,6,52)" rx="2" ry="2" />
<text x="113.01" y="255.5" ></text>
</g>
<g >
<title>cranelift_codegen::ir::layout::Layout::assign_inst_seq::h59be385ae82e3a19 (7 samples, 0.02%)</title><rect x="137.4" y="229" width="0.2" height="15.0" fill="rgb(214,97,32)" rx="2" ry="2" />
<text x="140.38" y="239.5" ></text>
</g>
<g >
<title>cranelift_codegen::legalizer::boundary::legalize_signatures::h52a202846af65f87 (115 samples, 0.28%)</title><rect x="77.7" y="261" width="3.3" height="15.0" fill="rgb(214,189,1)" rx="2" ry="2" />
<text x="80.70" y="271.5" ></text>
</g>
<g >
<title>std::sys::unix::time::inner::Instant::now::h23f1bea5949f1bbd (5 samples, 0.01%)</title><rect x="98.3" y="245" width="0.1" height="15.0" fill="rgb(238,149,52)" rx="2" ry="2" />
<text x="101.28" y="255.5" ></text>
</g>
<g >
<title>_int_malloc (5 samples, 0.01%)</title><rect x="192.4" y="181" width="0.2" height="15.0" fill="rgb(225,42,48)" rx="2" ry="2" />
<text x="195.44" y="191.5" ></text>
</g>
<g >
<title>__GI___libc_realloc (4 samples, 0.01%)</title><rect x="319.6" y="325" width="0.2" height="15.0" fill="rgb(229,149,51)" rx="2" ry="2" />
<text x="322.65" y="335.5" ></text>
</g>
<g >
<title>wasmer_runtime_core::instance::call_func_with_index_inner::h484a2214ddaa0611 (11 samples, 0.03%)</title><rect x="198.5" y="261" width="0.3" height="15.0" fill="rgb(245,1,35)" rx="2" ry="2" />
<text x="201.49" y="271.5" ></text>
</g>
<g >
<title>_$LT$wasmer_runtime_core..sys..unix..memory..Memory$u20$as$u20$core..ops..drop..Drop$GT$::drop::h019b69b880433af9 (5 samples, 0.01%)</title><rect x="185.6" y="261" width="0.1" height="15.0" fill="rgb(227,28,40)" rx="2" ry="2" />
<text x="188.56" y="271.5" ></text>
</g>
<g >
<title>_int_realloc (7 samples, 0.02%)</title><rect x="88.5" y="213" width="0.2" height="15.0" fill="rgb(244,164,35)" rx="2" ry="2" />
<text x="91.55" y="223.5" ></text>
</g>
<g >
<title>__GI___libc_free (14 samples, 0.03%)</title><rect x="309.8" y="341" width="0.4" height="15.0" fill="rgb(218,149,48)" rx="2" ry="2" />
<text x="312.83" y="351.5" ></text>
</g>
<g >
<title>cranelift_bforest::pool::NodePool$LT$F$GT$::alloc_node::h962928eb17e6ebe3 (19 samples, 0.05%)</title><rect x="113.9" y="229" width="0.6" height="15.0" fill="rgb(209,112,31)" rx="2" ry="2" />
<text x="116.92" y="239.5" ></text>
</g>
<g >
<title>cranelift_codegen::regalloc::coalescing::Coalescing::conventional_ssa::h25e21334b716fc0d (45 samples, 0.11%)</title><rect x="1167.9" y="293" width="1.3" height="15.0" fill="rgb(214,138,45)" rx="2" ry="2" />
<text x="1170.88" y="303.5" ></text>
</g>
<g >
<title>__GI___clock_gettime (7 samples, 0.02%)</title><rect x="37.1" y="293" width="0.2" height="15.0" fill="rgb(250,209,37)" rx="2" ry="2" />
<text x="40.09" y="303.5" ></text>
</g>
<g >
<title>alloc::raw_vec::RawVec$LT$T$C$A$GT$::reserve::h0c445b41f7c28667 (14 samples, 0.03%)</title><rect x="1168.3" y="261" width="0.4" height="15.0" fill="rgb(236,17,6)" rx="2" ry="2" />
<text x="1171.28" y="271.5" ></text>
</g>
<g >
<title>__rdl_dealloc (5 samples, 0.01%)</title><rect x="1029.2" y="421" width="0.1" height="15.0" fill="rgb(237,92,43)" rx="2" ry="2" />
<text x="1032.17" y="431.5" ></text>
</g>
<g >
<title>alloc::raw_vec::RawVec$LT$T$C$A$GT$::reserve::hd3b5c53c8d089f18 (11 samples, 0.03%)</title><rect x="810.1" y="357" width="0.3" height="15.0" fill="rgb(253,195,13)" rx="2" ry="2" />
<text x="813.11" y="367.5" ></text>
</g>
<g >
<title>__GI___libc_free (5 samples, 0.01%)</title><rect x="190.4" y="181" width="0.1" height="15.0" fill="rgb(220,62,53)" rx="2" ry="2" />
<text x="193.38" y="191.5" ></text>
</g>
<g >
<title>hashbrown::rustc_entry::_$LT$impl$u20$hashbrown..map..HashMap$LT$K$C$V$C$S$GT$$GT$::rustc_entry::h0c810357b190d293 (25 samples, 0.06%)</title><rect x="72.2" y="261" width="0.7" height="15.0" fill="rgb(208,64,18)" rx="2" ry="2" />
<text x="75.16" y="271.5" ></text>
</g>
<g >
<title>sys_munmap (6 samples, 0.01%)</title><rect x="185.4" y="165" width="0.2" height="15.0" fill="rgb(252,63,36)" rx="2" ry="2" />
<text x="188.39" y="175.5" ></text>
</g>
<g >
<title>__GI___libc_free (10 samples, 0.02%)</title><rect x="351.8" y="405" width="0.3" height="15.0" fill="rgb(212,46,47)" rx="2" ry="2" />
<text x="354.79" y="415.5" ></text>
</g>
<g >
<title>__GI___clock_gettime (7 samples, 0.02%)</title><rect x="96.2" y="181" width="0.2" height="15.0" fill="rgb(230,145,48)" rx="2" ry="2" />
<text x="99.20" y="191.5" ></text>
</g>
<g >
<title>cranelift_codegen::ir::builder::InstBuilder::x86_push::h21ec220088e6ffaa (28 samples, 0.07%)</title><rect x="22.0" y="309" width="0.8" height="15.0" fill="rgb(232,22,42)" rx="2" ry="2" />
<text x="25.02" y="319.5" ></text>
</g>
<g >
<title>std::time::Instant::now::h33d2ba6042def2d2 (4 samples, 0.01%)</title><rect x="48.1" y="309" width="0.1" height="15.0" fill="rgb(246,12,43)" rx="2" ry="2" />
<text x="51.07" y="319.5" ></text>
</g>
<g >
<title>__memcpy_avx_unaligned (5 samples, 0.01%)</title><rect x="595.6" y="373" width="0.1" height="15.0" fill="rgb(215,143,0)" rx="2" ry="2" />
<text x="598.59" y="383.5" ></text>
</g>
<g >
<title>alloc::raw_vec::RawVec$LT$T$C$A$GT$::reserve::h500ef385b8747b29 (12 samples, 0.03%)</title><rect x="163.8" y="277" width="0.4" height="15.0" fill="rgb(242,193,4)" rx="2" ry="2" />
<text x="166.84" y="287.5" ></text>
</g>
<g >
<title>std::time::Instant::elapsed::h8e307314b2acf9be (7 samples, 0.02%)</title><rect x="312.7" y="341" width="0.2" height="15.0" fill="rgb(243,86,41)" rx="2" ry="2" />
<text x="315.66" y="351.5" ></text>
</g>
<g >
<title>memcg_kmem_get_cache (4 samples, 0.01%)</title><rect x="342.1" y="213" width="0.2" height="15.0" fill="rgb(222,39,22)" rx="2" ry="2" />
<text x="345.14" y="223.5" ></text>
</g>
<g >
<title>__GI___clock_gettime (10 samples, 0.02%)</title><rect x="171.9" y="261" width="0.3" height="15.0" fill="rgb(221,129,0)" rx="2" ry="2" />
<text x="174.95" y="271.5" ></text>
</g>
<g >
<title>cranelift_codegen::context::Context::clear::h8fd0c2f2825a66ed (28 samples, 0.07%)</title><rect x="63.5" y="325" width="0.8" height="15.0" fill="rgb(230,57,39)" rx="2" ry="2" />
<text x="66.52" y="335.5" ></text>
</g>
<g >
<title>wasmer_clif_backend::trampoline::Trampolines::new::h8a78526849fe89b9 (1,844 samples, 4.46%)</title><rect x="297.3" y="389" width="52.6" height="15.0" fill="rgb(216,128,4)" rx="2" ry="2" />
<text x="300.27" y="399.5" >wasme..</text>
</g>
<g >
<title>_ZN9hashbrown3raw17RawTable$LT$T$GT$14reserve_rehash17h949d57d1e07c193dE.llvm.16938716460618634628 (14 samples, 0.03%)</title><rect x="24.8" y="309" width="0.4" height="15.0" fill="rgb(227,24,13)" rx="2" ry="2" />
<text x="27.78" y="319.5" ></text>
</g>
<g >
<title>__vdso_clock_gettime (4 samples, 0.01%)</title><rect x="48.1" y="245" width="0.1" height="15.0" fill="rgb(229,194,18)" rx="2" ry="2" />
<text x="51.07" y="255.5" ></text>
</g>
<g >
<title>alloc::vec::Vec$LT$T$GT$::resize::h32a2d4ba425bc523 (5 samples, 0.01%)</title><rect x="1153.4" y="325" width="0.2" height="15.0" fill="rgb(227,143,41)" rx="2" ry="2" />
<text x="1156.41" y="335.5" ></text>
</g>
<g >
<title>[[vdso]] (4 samples, 0.01%)</title><rect x="161.4" y="197" width="0.1" height="15.0" fill="rgb(229,6,3)" rx="2" ry="2" />
<text x="164.36" y="207.5" ></text>
</g>
<g >
<title>_raw_spin_lock (7 samples, 0.02%)</title><rect x="331.0" y="245" width="0.2" height="15.0" fill="rgb(220,160,44)" rx="2" ry="2" />
<text x="334.01" y="255.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,516 samples, 8.50%)</title><rect x="249.6" y="405" width="100.3" height="15.0" fill="rgb(231,41,42)" rx="2" ry="2" />
<text x="252.55" y="415.5" >_$LT$wasmer_..</text>
</g>
<g >
<title>smallvec::SmallVec$LT$A$GT$::insert::hcda578008f248202 (5 samples, 0.01%)</title><rect x="148.7" y="245" width="0.2" height="15.0" fill="rgb(228,62,23)" rx="2" ry="2" />
<text x="151.71" y="255.5" ></text>
</g>
<g >
<title>_ZN17cranelift_codegen8regalloc9diversion13RegDiversions6divert17h0dfdaeead6ef2c57E.llvm.6468024634034730254 (24 samples, 0.06%)</title><rect x="1151.7" y="341" width="0.7" height="15.0" fill="rgb(252,197,4)" rx="2" ry="2" />
<text x="1154.73" y="351.5" ></text>
</g>
<g >
<title>_int_free (396 samples, 0.96%)</title><rect x="709.0" y="373" width="11.3" height="15.0" fill="rgb(228,81,15)" rx="2" ry="2" />
<text x="712.04" y="383.5" ></text>
</g>
<g >
<title>wasmparser::parser::Parser::read_function_body::hcb187222237f62c7 (111 samples, 0.27%)</title><rect x="522.0" y="357" width="3.1" height="15.0" fill="rgb(238,207,1)" rx="2" ry="2" />
<text x="524.98" y="367.5" ></text>
</g>
<g >
<title>perf_event_mmap (250 samples, 0.60%)</title><rect x="333.4" y="261" width="7.1" height="15.0" fill="rgb(214,3,32)" rx="2" ry="2" />
<text x="336.41" y="271.5" ></text>
</g>
<g >
<title>wasmparser::readers::export_section::ExportSectionReader::read::h3ee6d1ee74ae2753 (308 samples, 0.74%)</title><rect x="513.2" y="341" width="8.8" height="15.0" fill="rgb(228,67,51)" rx="2" ry="2" />
<text x="516.19" y="351.5" ></text>
</g>
<g >
<title>_int_free (12 samples, 0.03%)</title><rect x="241.9" y="389" width="0.3" height="15.0" fill="rgb(223,106,8)" rx="2" ry="2" />
<text x="244.87" y="399.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (7 samples, 0.02%)</title><rect x="186.4" y="181" width="0.2" height="15.0" fill="rgb(209,80,37)" rx="2" ry="2" />
<text x="189.44" y="191.5" ></text>
</g>
<g >
<title>__vdso_clock_gettime (9 samples, 0.02%)</title><rect x="119.3" y="181" width="0.2" height="15.0" fill="rgb(228,43,33)" rx="2" ry="2" />
<text x="122.29" y="191.5" ></text>
</g>
<g >
<title>std::time::Instant::now::h33d2ba6042def2d2 (5 samples, 0.01%)</title><rect x="64.5" y="277" width="0.2" height="15.0" fill="rgb(227,42,20)" rx="2" ry="2" />
<text x="67.54" y="287.5" ></text>
</g>
<g >
<title>__vdso_clock_gettime (6 samples, 0.01%)</title><rect x="312.7" y="261" width="0.2" height="15.0" fill="rgb(226,124,31)" rx="2" ry="2" />
<text x="315.68" y="271.5" ></text>
</g>
<g >
<title>cranelift_codegen::ir::dfg::DataFlowGraph::append_ebb_param::h7014c3b1302a9186 (35 samples, 0.08%)</title><rect x="801.0" y="357" width="1.0" height="15.0" fill="rgb(242,144,33)" rx="2" ry="2" />
<text x="803.98" y="367.5" ></text>
</g>
<g >
<title>__GI___libc_malloc (5 samples, 0.01%)</title><rect x="96.5" y="197" width="0.2" height="15.0" fill="rgb(217,152,28)" rx="2" ry="2" />
<text x="99.54" y="207.5" ></text>
</g>
<g >
<title>__memcpy_avx_unaligned (16 samples, 0.04%)</title><rect x="1008.2" y="421" width="0.5" height="15.0" fill="rgb(226,124,28)" rx="2" ry="2" />
<text x="1011.22" y="431.5" ></text>
</g>
<g >
<title>__GI___libc_malloc (9 samples, 0.02%)</title><rect x="59.7" y="293" width="0.3" height="15.0" fill="rgb(220,181,4)" rx="2" ry="2" />
<text x="62.72" y="303.5" ></text>
</g>
<g >
<title>std::sys::unix::time::inner::now::ha10452f37b2930c5 (6 samples, 0.01%)</title><rect x="171.1" y="213" width="0.2" height="15.0" fill="rgb(206,131,48)" rx="2" ry="2" />
<text x="174.12" y="223.5" ></text>
</g>
<g >
<title>do_syscall_64 (140 samples, 0.34%)</title><rect x="236.4" y="373" width="4.0" height="15.0" fill="rgb(211,77,19)" rx="2" ry="2" />
<text x="239.45" y="383.5" ></text>
</g>
<g >
<title>wasmer_runtime::compile_with_config::h3146f6a9cd30dfc8 (643 samples, 1.56%)</title><rect x="1148.8" y="469" width="18.3" height="15.0" fill="rgb(229,195,5)" rx="2" ry="2" />
<text x="1151.79" y="479.5" ></text>
</g>
<g >
<title>__GI___libc_free (9 samples, 0.02%)</title><rect x="815.4" y="389" width="0.3" height="15.0" fill="rgb(249,52,35)" rx="2" ry="2" />
<text x="818.42" y="399.5" ></text>
</g>
<g >
<title>cranelift_codegen::regalloc::virtregs::VirtRegs::union::ha7e897024c5fb158 (50 samples, 0.12%)</title><rect x="130.1" y="261" width="1.4" height="15.0" fill="rgb(206,84,24)" rx="2" ry="2" />
<text x="133.07" y="271.5" ></text>
</g>
<g >
<title>cranelift_codegen::dominator_tree::DominatorTreePreorder::pre_cmp_def::h23e7b9b8ee537cad (8 samples, 0.02%)</title><rect x="1168.1" y="261" width="0.2" height="15.0" fill="rgb(231,46,9)" rx="2" ry="2" />
<text x="1171.05" y="271.5" ></text>
</g>
<g >
<title>alloc::raw_vec::RawVec$LT$T$C$A$GT$::reserve::hea3f43976955e3d2 (8 samples, 0.02%)</title><rect x="1178.0" y="357" width="0.3" height="15.0" fill="rgb(234,3,28)" rx="2" ry="2" />
<text x="1181.04" y="367.5" ></text>
</g>
<g >
<title>wasmer_runtime_core::module::Module::instantiate::h6d7aa260ea24db84 (10 samples, 0.02%)</title><rect x="198.8" y="293" width="0.3" height="15.0" fill="rgb(241,198,49)" rx="2" ry="2" />
<text x="201.80" y="303.5" ></text>
</g>
<g >
<title>std::time::Instant::elapsed::h8e307314b2acf9be (11 samples, 0.03%)</title><rect x="108.8" y="261" width="0.3" height="15.0" fill="rgb(241,103,24)" rx="2" ry="2" />
<text x="111.75" y="271.5" ></text>
</g>
<g >
<title>_$LT$cranelift_codegen..timing..details..TimingToken$u20$as$u20$core..ops..drop..Drop$GT$::drop::h1b19c2a93ee0a091 (9 samples, 0.02%)</title><rect x="77.2" y="261" width="0.2" height="15.0" fill="rgb(208,88,46)" rx="2" ry="2" />
<text x="80.16" y="271.5" ></text>
</g>
<g >
<title>wasmer_clif_backend::resolver::FuncResolverBuilder::finalize::h91eab78c48207186 (12 samples, 0.03%)</title><rect x="186.3" y="229" width="0.3" height="15.0" fill="rgb(238,104,23)" rx="2" ry="2" />
<text x="189.30" y="239.5" ></text>
</g>
<g >
<title>_$LT$parity_wasm..elements..primitives..VarUint32$u20$as$u20$core..convert..From$LT$usize$GT$$GT$::from::h6b95634f89525d61 (11 samples, 0.03%)</title><rect x="1022.7" y="421" width="0.3" height="15.0" fill="rgb(241,214,9)" rx="2" ry="2" />
<text x="1025.66" y="431.5" ></text>
</g>
<g >
<title>_$LT$std..collections..hash..map..DefaultHasher$u20$as$u20$core..hash..Hasher$GT$::write::hce30e4f96ad2e64e (97 samples, 0.23%)</title><rect x="631.9" y="341" width="2.8" height="15.0" fill="rgb(226,28,41)" rx="2" ry="2" />
<text x="634.90" y="351.5" ></text>
</g>
<g >
<title>__GI___libc_malloc (11 samples, 0.03%)</title><rect x="281.6" y="341" width="0.3" height="15.0" fill="rgb(250,77,27)" rx="2" ry="2" />
<text x="284.57" y="351.5" ></text>
</g>
<g >
<title>std::time::Instant::elapsed::h8e307314b2acf9be (4 samples, 0.01%)</title><rect x="1176.4" y="357" width="0.1" height="15.0" fill="rgb(212,203,33)" rx="2" ry="2" />
<text x="1179.39" y="367.5" ></text>
</g>
<g >
<title>cranelift_codegen::ir::instructions::InstructionData::arguments::h70ecdef19e20b02a (5 samples, 0.01%)</title><rect x="107.1" y="277" width="0.1" height="15.0" fill="rgb(232,142,33)" rx="2" ry="2" />
<text x="110.10" y="287.5" ></text>
</g>
<g >
<title>alloc::raw_vec::RawVec$LT$T$C$A$GT$::reserve::hae39d8e15426d2f6 (4 samples, 0.01%)</title><rect x="92.3" y="197" width="0.1" height="15.0" fill="rgb(227,27,31)" rx="2" ry="2" />
<text x="95.26" y="207.5" ></text>
</g>
<g >
<title>_$LT$cranelift_codegen..timing..details..TimingToken$u20$as$u20$core..ops..drop..Drop$GT$::drop::h1b19c2a93ee0a091 (6 samples, 0.01%)</title><rect x="1164.4" y="341" width="0.2" height="15.0" fill="rgb(242,204,33)" rx="2" ry="2" />
<text x="1167.40" y="351.5" ></text>
</g>
<g >
<title>__GI___libc_free (4 samples, 0.01%)</title><rect x="794.4" y="373" width="0.1" height="15.0" fill="rgb(245,216,18)" rx="2" ry="2" />
<text x="797.35" y="383.5" ></text>
</g>
<g >
<title>_ZN17cranelift_codegen8regalloc9diversion13RegDiversions6divert17h0dfdaeead6ef2c57E.llvm.6468024634034730254 (11 samples, 0.03%)</title><rect x="96.4" y="261" width="0.3" height="15.0" fill="rgb(209,104,15)" rx="2" ry="2" />
<text x="99.40" y="271.5" ></text>
</g>
<g >
<title>_ZN17cranelift_codegen8regalloc6solver6Solver12add_live_var17hb8d34feccdc3c3d4E.llvm.529824060399144151 (7 samples, 0.02%)</title><rect x="41.6" y="341" width="0.2" height="15.0" fill="rgb(212,99,7)" rx="2" ry="2" />
<text x="44.60" y="351.5" ></text>
</g>
<g >
<title>do_syscall_64 (5 samples, 0.01%)</title><rect x="1180.8" y="501" width="0.2" height="15.0" fill="rgb(252,39,43)" rx="2" ry="2" />
<text x="1183.81" y="511.5" ></text>
</g>
<g >
<title>__rdl_dealloc (4 samples, 0.01%)</title><rect x="1140.9" y="437" width="0.1" height="15.0" fill="rgb(248,29,1)" rx="2" ry="2" />
<text x="1143.85" y="447.5" ></text>
</g>
<g >
<title>std::sys::unix::time::inner::now::ha10452f37b2930c5 (5 samples, 0.01%)</title><rect x="117.1" y="245" width="0.2" height="15.0" fill="rgb(217,41,24)" rx="2" ry="2" />
<text x="120.15" y="255.5" ></text>
</g>
<g >
<title>__GI___libc_free (5 samples, 0.01%)</title><rect x="1170.0" y="325" width="0.2" height="15.0" fill="rgb(222,49,15)" rx="2" ry="2" />
<text x="1173.02" y="335.5" ></text>
</g>
<g >
<title>mem_cgroup_commit_charge (4 samples, 0.01%)</title><rect x="278.3" y="277" width="0.1" height="15.0" fill="rgb(213,12,48)" rx="2" ry="2" />
<text x="281.32" y="287.5" ></text>
</g>
<g >
<title>__vdso_clock_gettime (5 samples, 0.01%)</title><rect x="36.2" y="277" width="0.2" height="15.0" fill="rgb(249,97,23)" rx="2" ry="2" />
<text x="39.23" y="287.5" ></text>
</g>
<g >
<title>cranelift_codegen::dce::do_dce::h45d4354699d5d0cc (63 samples, 0.15%)</title><rect x="105.8" y="293" width="1.8" height="15.0" fill="rgb(208,141,27)" rx="2" ry="2" />
<text x="108.84" y="303.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 (14 samples, 0.03%)</title><rect x="174.4" y="373" width="0.4" height="15.0" fill="rgb(237,216,21)" rx="2" ry="2" />
<text x="177.40" y="383.5" ></text>
</g>
<g >
<title>hashbrown::raw::RawTable$LT$T$GT$::insert::h1ba60dad4ebe9e0f (705 samples, 1.71%)</title><rect x="634.7" y="357" width="20.1" height="15.0" fill="rgb(239,156,42)" rx="2" ry="2" />
<text x="637.66" y="367.5" ></text>
</g>
<g >
<title>_int_free (22 samples, 0.05%)</title><rect x="308.8" y="309" width="0.7" height="15.0" fill="rgb(240,228,12)" rx="2" ry="2" />
<text x="311.83" y="319.5" ></text>
</g>
<g >
<title>cranelift_codegen::simple_gvn::do_simple_gvn::h76b7a5cd0deccebd (262 samples, 0.63%)</title><rect x="161.5" y="293" width="7.4" height="15.0" fill="rgb(244,40,4)" rx="2" ry="2" />
<text x="164.47" y="303.5" ></text>
</g>
<g >
<title>cranelift_codegen::licm::do_licm::hb96edf4ef4d89000 (43 samples, 0.10%)</title><rect x="36.4" y="373" width="1.2" height="15.0" fill="rgb(252,88,26)" rx="2" ry="2" />
<text x="39.37" y="383.5" ></text>
</g>
<g >
<title>alloc_perturb (5 samples, 0.01%)</title><rect x="729.4" y="357" width="0.1" height="15.0" fill="rgb(231,39,52)" rx="2" ry="2" />
<text x="732.39" y="367.5" ></text>
</g>
<g >
<title>__GI___libc_free (191 samples, 0.46%)</title><rect x="503.7" y="341" width="5.5" height="15.0" fill="rgb(253,5,44)" rx="2" ry="2" />
<text x="506.74" y="351.5" ></text>
</g>
<g >
<title>sched_clock_cpu (4 samples, 0.01%)</title><rect x="287.1" y="165" width="0.1" height="15.0" fill="rgb(205,132,38)" rx="2" ry="2" />
<text x="290.05" y="175.5" ></text>
</g>
<g >
<title>wasmer_runtime::compile_with_config::h3146f6a9cd30dfc8 (6 samples, 0.01%)</title><rect x="1167.2" y="341" width="0.1" height="15.0" fill="rgb(248,58,10)" rx="2" ry="2" />
<text x="1170.17" y="351.5" ></text>
</g>
<g >
<title>_ZN16cranelift_entity4list17ListPool$LT$T$GT$5alloc17h7031e3fd97879e16E.llvm.776987249141506950 (15 samples, 0.04%)</title><rect x="801.4" y="325" width="0.4" height="15.0" fill="rgb(218,166,26)" rx="2" ry="2" />
<text x="804.38" y="335.5" ></text>
</g>
<g >
<title>__memcpy_avx_unaligned (16 samples, 0.04%)</title><rect x="798.2" y="373" width="0.4" height="15.0" fill="rgb(206,154,8)" rx="2" ry="2" />
<text x="801.15" y="383.5" ></text>
</g>
<g >
<title>uncharge_batch (20 samples, 0.05%)</title><rect x="232.7" y="165" width="0.6" height="15.0" fill="rgb(240,153,1)" rx="2" ry="2" />
<text x="235.74" y="175.5" ></text>
</g>
<g >
<title>std::time::Instant::now::h33d2ba6042def2d2 (11 samples, 0.03%)</title><rect x="171.9" y="309" width="0.3" height="15.0" fill="rgb(243,187,11)" rx="2" ry="2" />
<text x="174.92" y="319.5" ></text>
</g>
<g >
<title>cranelift_codegen::isa::constraints::RecipeConstraints::satisfied::h33556c8a9b1bba6e (49 samples, 0.12%)</title><rect x="103.8" y="261" width="1.4" height="15.0" fill="rgb(205,43,8)" rx="2" ry="2" />
<text x="106.79" y="271.5" ></text>
</g>
<g >
<title>__GI___libc_realloc (14 samples, 0.03%)</title><rect x="320.4" y="309" width="0.4" height="15.0" fill="rgb(210,159,10)" rx="2" ry="2" />
<text x="323.39" y="319.5" ></text>
</g>
<g >
<title>arch_get_unmapped_area_topdown (16 samples, 0.04%)</title><rect x="345.5" y="229" width="0.4" height="15.0" fill="rgb(210,195,27)" rx="2" ry="2" />
<text x="348.48" y="239.5" ></text>
</g>
<g >
<title>alloc::raw_vec::RawVec$LT$T$C$A$GT$::reserve::h500ef385b8747b29 (12 samples, 0.03%)</title><rect x="129.7" y="213" width="0.3" height="15.0" fill="rgb(234,100,36)" rx="2" ry="2" />
<text x="132.70" y="223.5" ></text>
</g>
<g >
<title>alloc::raw_vec::RawVec$LT$T$C$A$GT$::reserve::h500ef385b8747b29 (18 samples, 0.04%)</title><rect x="16.5" y="277" width="0.5" height="15.0" fill="rgb(230,22,31)" rx="2" ry="2" />
<text x="19.45" y="287.5" ></text>
</g>
<g >
<title>cranelift_codegen::ir::instructions::InstructionData::arguments_mut::hd68ce32862759160 (9 samples, 0.02%)</title><rect x="165.1" y="261" width="0.2" height="15.0" fill="rgb(231,62,2)" rx="2" ry="2" />
<text x="168.07" y="271.5" ></text>
</g>
<g >
<title>__rdl_realloc (4 samples, 0.01%)</title><rect x="947.1" y="373" width="0.1" height="15.0" fill="rgb(215,88,12)" rx="2" ry="2" />
<text x="950.11" y="383.5" ></text>
</g>
<g >
<title>cranelift_codegen::regalloc::diversion::RegDiversions::diversion::h0a2605efbb6eb85b (7 samples, 0.02%)</title><rect x="30.7" y="309" width="0.2" height="15.0" fill="rgb(219,144,16)" rx="2" ry="2" />
<text x="33.75" y="319.5" ></text>
</g>
<g >
<title>__GI___libc_malloc (5 samples, 0.01%)</title><rect x="1168.3" y="245" width="0.1" height="15.0" fill="rgb(225,100,50)" rx="2" ry="2" />
<text x="1171.28" y="255.5" ></text>
</g>
<g >
<title>__GI___libc_malloc (8 samples, 0.02%)</title><rect x="851.3" y="421" width="0.3" height="15.0" fill="rgb(215,57,16)" rx="2" ry="2" />
<text x="854.32" y="431.5" ></text>
</g>
<g >
<title>c2_chacha::guts::refill_wide::impl_avx2::hcbb75f7591de3cb9 (56 samples, 0.14%)</title><rect x="884.2" y="453" width="1.6" height="15.0" fill="rgb(228,171,24)" rx="2" ry="2" />
<text x="887.18" y="463.5" ></text>
</g>
<g >
<title>[unknown] (40,876 samples, 98.87%)</title><rect x="13.6" y="517" width="1166.6" height="15.0" fill="rgb(239,135,1)" rx="2" ry="2" />
<text x="16.57" y="527.5" >[unknown]</text>
</g>
<g >
<title>_int_free (21 samples, 0.05%)</title><rect x="240.9" y="405" width="0.6" height="15.0" fill="rgb(232,202,23)" rx="2" ry="2" />
<text x="243.93" y="415.5" ></text>
</g>
<g >
<title>do_exit (5 samples, 0.01%)</title><rect x="1180.8" y="421" width="0.2" height="15.0" fill="rgb(251,227,48)" rx="2" ry="2" />
<text x="1183.81" y="431.5" ></text>
</g>
<g >
<title>wasmparser::operators_validator::OperatorValidator::process_operator::hf8ee49dfd4957437 (153 samples, 0.37%)</title><rect x="692.5" y="373" width="4.4" height="15.0" fill="rgb(229,63,44)" rx="2" ry="2" />
<text x="695.55" y="383.5" ></text>
</g>
<g >
<title>core::slice::_$LT$impl$u20$$u5b$T$u5d$$GT$::copy_from_slice::h741bc29efe0e57bc (16 samples, 0.04%)</title><rect x="619.0" y="373" width="0.5" height="15.0" fill="rgb(234,193,28)" rx="2" ry="2" />
<text x="621.99" y="383.5" ></text>
</g>
<g >
<title>_$LT$rocinante..exec..wasmer..Wasmer$u20$as$u20$rocinante..exec..Interpreter$GT$::eval_test_cases::hf136840e36843cad (643 samples, 1.56%)</title><rect x="1148.8" y="485" width="18.3" height="15.0" fill="rgb(227,124,6)" rx="2" ry="2" />
<text x="1151.79" y="495.5" ></text>
</g>
<g >
<title>std::sys::unix::alloc::_$LT$impl$u20$core..alloc..GlobalAlloc$u20$for$u20$std..alloc..System$GT$::alloc::h33585d4e6aad0166 (5 samples, 0.01%)</title><rect x="671.8" y="325" width="0.1" height="15.0" fill="rgb(218,146,28)" rx="2" ry="2" />
<text x="674.80" y="335.5" ></text>
</g>
<g >
<title>std::time::Instant::elapsed::h8e307314b2acf9be (7 samples, 0.02%)</title><rect x="1170.7" y="341" width="0.2" height="15.0" fill="rgb(213,156,16)" rx="2" ry="2" />
<text x="1173.73" y="351.5" ></text>
</g>
<g >
<title>cranelift_codegen::ir::dfg::DataFlowGraph::make_inst_results::hc774d04d1992dff6 (4 samples, 0.01%)</title><rect x="84.5" y="197" width="0.1" height="15.0" fill="rgb(218,16,12)" rx="2" ry="2" />
<text x="87.52" y="207.5" ></text>
</g>
<g >
<title>__GI___libc_realloc (9 samples, 0.02%)</title><rect x="696.3" y="341" width="0.3" height="15.0" fill="rgb(221,123,18)" rx="2" ry="2" />
<text x="699.34" y="351.5" ></text>
</g>
<g >
<title>__GI___libc_malloc (33 samples, 0.08%)</title><rect x="166.9" y="245" width="1.0" height="15.0" fill="rgb(237,171,30)" rx="2" ry="2" />
<text x="169.92" y="255.5" ></text>
</g>
<g >
<title>cranelift_entity::list::EntityList$LT$T$GT$::push::h051541d55e7ee057 (18 samples, 0.04%)</title><rect x="802.3" y="341" width="0.5" height="15.0" fill="rgb(254,219,46)" rx="2" ry="2" />
<text x="805.29" y="351.5" ></text>
</g>
<g >
<title>_int_free (11 samples, 0.03%)</title><rect x="309.9" y="325" width="0.3" height="15.0" fill="rgb(232,130,8)" rx="2" ry="2" />
<text x="312.92" y="335.5" ></text>
</g>
<g >
<title>__vdso_clock_gettime (4 samples, 0.01%)</title><rect x="96.3" y="165" width="0.1" height="15.0" fill="rgb(235,112,6)" rx="2" ry="2" />
<text x="99.28" y="175.5" ></text>
</g>
<g >
<title>std::time::Instant::elapsed::h8e307314b2acf9be (6 samples, 0.01%)</title><rect x="162.9" y="261" width="0.2" height="15.0" fill="rgb(222,100,4)" rx="2" ry="2" />
<text x="165.93" y="271.5" ></text>
</g>
<g >
<title>std::sys::unix::time::inner::now::ha10452f37b2930c5 (9 samples, 0.02%)</title><rect x="1157.5" y="293" width="0.2" height="15.0" fill="rgb(232,10,30)" rx="2" ry="2" />
<text x="1160.46" y="303.5" ></text>
</g>
<g >
<title>core::ptr::real_drop_in_place::h7fa7a2046fdc054a (14 samples, 0.03%)</title><rect x="309.8" y="357" width="0.4" height="15.0" fill="rgb(229,128,15)" rx="2" ry="2" />
<text x="312.83" y="367.5" ></text>
</g>
<g >
<title>__GI___libc_free (9 samples, 0.02%)</title><rect x="1152.4" y="341" width="0.3" height="15.0" fill="rgb(242,77,40)" rx="2" ry="2" />
<text x="1155.41" y="351.5" ></text>
</g>
<g >
<title>alloc::raw_vec::RawVec$LT$T$C$A$GT$::reserve::h35e85fcd2e2f9b0d (717 samples, 1.73%)</title><rect x="1078.9" y="437" width="20.4" height="15.0" fill="rgb(217,56,36)" rx="2" ry="2" />
<text x="1081.86" y="447.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 samples, 0.01%)</title><rect x="1167.2" y="309" width="0.1" height="15.0" fill="rgb(227,121,27)" rx="2" ry="2" />
<text x="1170.17" y="319.5" ></text>
</g>
<g >
<title>do_syscall_64 (6 samples, 0.01%)</title><rect x="187.0" y="165" width="0.2" height="15.0" fill="rgb(221,57,13)" rx="2" ry="2" />
<text x="189.99" y="175.5" ></text>
</g>
<g >
<title>vmacache_find (4 samples, 0.01%)</title><rect x="237.2" y="293" width="0.1" height="15.0" fill="rgb(241,200,53)" rx="2" ry="2" />
<text x="240.22" y="303.5" ></text>
</g>
<g >
<title>__rdl_alloc (6 samples, 0.01%)</title><rect x="653.4" y="325" width="0.2" height="15.0" fill="rgb(234,127,2)" rx="2" ry="2" />
<text x="656.42" y="335.5" ></text>
</g>
<g >
<title>__GI___libc_free (4 samples, 0.01%)</title><rect x="180.6" y="373" width="0.1" height="15.0" fill="rgb(208,175,15)" rx="2" ry="2" />
<text x="183.59" y="383.5" ></text>
</g>
<g >
<title>hashbrown::map::HashMap$LT$K$C$V$C$S$GT$::contains_key::hc2d70e289ae6b120 (280 samples, 0.68%)</title><rect x="619.5" y="373" width="7.9" height="15.0" fill="rgb(224,136,41)" rx="2" ry="2" />
<text x="622.45" y="383.5" ></text>
</g>
<g >
<title>alloc::raw_vec::RawVec$LT$T$C$A$GT$::reserve::hd6c8f26eb3c9fb4b (5 samples, 0.01%)</title><rect x="159.3" y="245" width="0.1" height="15.0" fill="rgb(210,202,33)" rx="2" ry="2" />
<text x="162.27" y="255.5" ></text>
</g>
<g >
<title>std::sys::unix::time::inner::Instant::now::h23f1bea5949f1bbd (4 samples, 0.01%)</title><rect x="48.1" y="293" width="0.1" height="15.0" fill="rgb(230,195,4)" rx="2" ry="2" />
<text x="51.07" y="303.5" ></text>
</g>
<g >
<title>cranelift_codegen::dce::do_dce::h45d4354699d5d0cc (41 samples, 0.10%)</title><rect x="1157.8" y="357" width="1.1" height="15.0" fill="rgb(246,168,40)" rx="2" ry="2" />
<text x="1160.78" y="367.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (216 samples, 0.52%)</title><rect x="283.3" y="341" width="6.2" height="15.0" fill="rgb(253,49,52)" rx="2" ry="2" />
<text x="286.34" y="351.5" ></text>
</g>
<g >
<title>_ZN78_$LT$parity_wasm..elements..ops..Instruction$u20$as$u20$core..clone..Clone$GT$5clone17hb3781841ab52f338E.llvm.11307484699232997089 (7 samples, 0.02%)</title><rect x="1147.3" y="437" width="0.2" height="15.0" fill="rgb(208,122,51)" rx="2" ry="2" />
<text x="1150.33" y="447.5" ></text>
</g>
<g >
<title>cranelift_codegen::ir::builder::InstBuilder::spill::hddbf9a7f97d9d38b (18 samples, 0.04%)</title><rect x="1178.8" y="357" width="0.5" height="15.0" fill="rgb(219,207,44)" rx="2" ry="2" />
<text x="1181.81" y="367.5" ></text>
</g>
<g >
<title>_$LT$hashbrown..raw..RawTable$LT$T$GT$$u20$as$u20$core..ops..drop..Drop$GT$::drop::h698d2ed12909e0bd (6 samples, 0.01%)</title><rect x="794.3" y="389" width="0.2" height="15.0" fill="rgb(228,110,0)" rx="2" ry="2" />
<text x="797.33" y="399.5" ></text>
</g>
<g >
<title>flush_tlb_mm_range (31 samples, 0.07%)</title><rect x="233.5" y="213" width="0.8" height="15.0" fill="rgb(234,91,14)" rx="2" ry="2" />
<text x="236.45" y="223.5" ></text>
</g>
<g >
<title>__GI___libc_realloc (11 samples, 0.03%)</title><rect x="1173.5" y="309" width="0.3" height="15.0" fill="rgb(213,189,46)" rx="2" ry="2" />
<text x="1176.47" y="319.5" ></text>
</g>
<g >
<title>_ZN4core3ptr18real_drop_in_place17he728ca68fc8217d5E.llvm.1993498855596296840 (53 samples, 0.13%)</title><rect x="270.8" y="373" width="1.6" height="15.0" fill="rgb(226,51,33)" rx="2" ry="2" />
<text x="273.84" y="383.5" ></text>
</g>
<g >
<title>__memcpy_avx_unaligned (8 samples, 0.02%)</title><rect x="808.5" y="357" width="0.2" height="15.0" fill="rgb(223,178,33)" rx="2" ry="2" />
<text x="811.51" y="367.5" ></text>
</g>
<g >
<title>__GI___libc_free (7 samples, 0.02%)</title><rect x="255.1" y="373" width="0.2" height="15.0" fill="rgb(241,107,53)" rx="2" ry="2" />
<text x="258.06" y="383.5" ></text>
</g>
<g >
<title>_int_malloc (372 samples, 0.90%)</title><rect x="585.0" y="357" width="10.6" height="15.0" fill="rgb(226,18,53)" rx="2" ry="2" />
<text x="587.97" y="367.5" ></text>
</g>
<g >
<title>__rust_alloc (7 samples, 0.02%)</title><rect x="606.9" y="357" width="0.2" height="15.0" fill="rgb(245,138,10)" rx="2" ry="2" />
<text x="609.89" y="367.5" ></text>
</g>
<g >
<title>cranelift_codegen::isa::enc_tables::lookup_enclist::h59f3ade65a5e8b68 (5 samples, 0.01%)</title><rect x="1172.1" y="309" width="0.1" height="15.0" fill="rgb(213,147,32)" rx="2" ry="2" />
<text x="1175.10" y="319.5" ></text>
</g>
<g >
<title>__GI___libc_free (7 samples, 0.02%)</title><rect x="202.0" y="261" width="0.2" height="15.0" fill="rgb(219,154,40)" rx="2" ry="2" />
<text x="205.00" y="271.5" ></text>
</g>
<g >
<title>cranelift_codegen::ir::dfg::DataFlowGraph::replace_ebb_param::hfbaec20e816d346f (4 samples, 0.01%)</title><rect x="52.3" y="341" width="0.1" height="15.0" fill="rgb(234,105,45)" rx="2" ry="2" />
<text x="55.30" y="351.5" ></text>
</g>
<g >
<title>cranelift_codegen::context::Context::legalize::h3be573a3855dd690 (392 samples, 0.95%)</title><rect x="76.2" y="293" width="11.2" height="15.0" fill="rgb(206,225,33)" rx="2" ry="2" />
<text x="79.19" 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 (4 samples, 0.01%)</title><rect x="53.2" y="309" width="0.1" height="15.0" fill="rgb(250,89,21)" rx="2" ry="2" />
<text x="56.16" y="319.5" ></text>
</g>
<g >
<title>__GI___clock_gettime (12 samples, 0.03%)</title><rect x="57.5" y="309" width="0.4" height="15.0" fill="rgb(254,74,21)" rx="2" ry="2" />
<text x="60.52" y="319.5" ></text>
</g>
<g >
<title>cranelift_codegen::ir::dfg::DataFlowGraph::make_inst_results::hc774d04d1992dff6 (8 samples, 0.02%)</title><rect x="93.1" y="213" width="0.2" height="15.0" fill="rgb(212,14,5)" rx="2" ry="2" />
<text x="96.06" y="223.5" ></text>
</g>
<g >
<title>__GI___libc_malloc (4 samples, 0.01%)</title><rect x="312.9" y="341" width="0.1" height="15.0" fill="rgb(254,72,41)" rx="2" ry="2" />
<text x="315.88" y="351.5" ></text>
</g>
<g >
<title>hashbrown::raw::RawTable$LT$T$GT$::try_with_capacity::h7a6e6bae489d4fe9 (14 samples, 0.03%)</title><rect x="72.5" y="229" width="0.4" height="15.0" fill="rgb(252,24,6)" rx="2" ry="2" />
<text x="75.48" y="239.5" ></text>
</g>
<g >
<title>perf_event_mmap_output (27 samples, 0.07%)</title><rect x="348.4" y="181" width="0.8" height="15.0" fill="rgb(217,112,3)" rx="2" ry="2" />
<text x="351.42" y="191.5" ></text>
</g>
<g >
<title>__GI___clock_gettime (5 samples, 0.01%)</title><rect x="1171.2" y="309" width="0.1" height="15.0" fill="rgb(221,40,48)" rx="2" ry="2" />
<text x="1174.19" y="319.5" ></text>
</g>
<g >
<title>alloc::raw_vec::RawVec$LT$T$C$A$GT$::reserve::hae39d8e15426d2f6 (5 samples, 0.01%)</title><rect x="1178.8" y="325" width="0.2" height="15.0" fill="rgb(209,60,27)" rx="2" ry="2" />
<text x="1181.81" y="335.5" ></text>
</g>
<g >
<title>perf_output_copy (8 samples, 0.02%)</title><rect x="340.2" y="197" width="0.2" height="15.0" fill="rgb(240,200,6)" rx="2" ry="2" />
<text x="343.20" y="207.5" ></text>
</g>
<g >
<title>cranelift_codegen::regalloc::liverange::GenericLiveRange$LT$PO$GT$::extend_in_ebb::hbdb01049c0b9a2e0 (4 samples, 0.01%)</title><rect x="53.0" y="341" width="0.1" height="15.0" fill="rgb(220,198,3)" rx="2" ry="2" />
<text x="55.98" y="351.5" ></text>
</g>
<g >
<title>__GI___libc_malloc (4 samples, 0.01%)</title><rect x="142.1" y="229" width="0.1" height="15.0" fill="rgb(235,27,10)" rx="2" ry="2" />
<text x="145.12" y="239.5" ></text>
</g>
<g >
<title>cranelift_codegen::regalloc::solver::Solver::add_kill::h253158fd0df01fa2 (8 samples, 0.02%)</title><rect x="45.9" y="341" width="0.2" height="15.0" fill="rgb(232,163,22)" rx="2" ry="2" />
<text x="48.91" y="351.5" ></text>
</g>
<g >
<title>std::sys::unix::time::inner::Instant::now::h23f1bea5949f1bbd (7 samples, 0.02%)</title><rect x="37.1" y="325" width="0.2" height="15.0" fill="rgb(208,209,8)" rx="2" ry="2" />
<text x="40.09" y="335.5" ></text>
</g>
<g >
<title>cranelift_codegen::ir::instructions::InstructionData::hash::h6390f709ac90b71c (15 samples, 0.04%)</title><rect x="168.4" y="261" width="0.4" height="15.0" fill="rgb(252,227,6)" rx="2" ry="2" />
<text x="171.38" y="271.5" ></text>
</g>
<g >
<title>cranelift_codegen::regalloc::context::Context::new::h18b3346fa2ea1088 (17 samples, 0.04%)</title><rect x="173.5" y="357" width="0.5" height="15.0" fill="rgb(216,120,22)" rx="2" ry="2" />
<text x="176.54" y="367.5" ></text>
</g>
<g >
<title>mem_cgroup_uncharge_list (13 samples, 0.03%)</title><rect x="238.8" y="213" width="0.4" height="15.0" fill="rgb(244,63,43)" rx="2" ry="2" />
<text x="241.79" y="223.5" ></text>
</g>
<g >
<title>_$LT$rocinante..exec..wasmer..Wasmer$u20$as$u20$rocinante..exec..Interpreter$GT$::eval_test_cases::hf136840e36843cad (6 samples, 0.01%)</title><rect x="184.6" y="405" width="0.2" height="15.0" fill="rgb(213,140,50)" rx="2" ry="2" />
<text x="187.62" y="415.5" ></text>
</g>
<g >
<title>hashbrown::map::make_hash::h9e18b3170aa0c7c4 (6 samples, 0.01%)</title><rect x="814.7" y="357" width="0.2" height="15.0" fill="rgb(205,31,13)" rx="2" ry="2" />
<text x="817.73" y="367.5" ></text>
</g>
<g >
<title>std::sys::unix::time::inner::Instant::now::h23f1bea5949f1bbd (10 samples, 0.02%)</title><rect x="119.5" y="261" width="0.3" height="15.0" fill="rgb(243,199,43)" rx="2" ry="2" />
<text x="122.54" y="271.5" ></text>
</g>
<g >
<title>__memmove_avx_unaligned (12 samples, 0.03%)</title><rect x="798.6" y="373" width="0.4" height="15.0" fill="rgb(208,60,13)" rx="2" ry="2" />
<text x="801.61" y="383.5" ></text>
</g>
<g >
<title>_$LT$cranelift_codegen..timing..details..TimingToken$u20$as$u20$core..ops..drop..Drop$GT$::drop::h1b19c2a93ee0a091 (9 samples, 0.02%)</title><rect x="1165.9" y="341" width="0.3" height="15.0" fill="rgb(241,224,18)" rx="2" ry="2" />
<text x="1168.94" y="351.5" ></text>
</g>
<g >
<title>_int_realloc (11 samples, 0.03%)</title><rect x="1179.4" y="325" width="0.3" height="15.0" fill="rgb(246,57,3)" rx="2" ry="2" />
<text x="1182.41" y="335.5" ></text>
</g>
<g >
<title>flush_tlb_mm_range (52 samples, 0.13%)</title><rect x="331.8" y="229" width="1.5" height="15.0" fill="rgb(225,71,24)" rx="2" ry="2" />
<text x="334.78" y="239.5" ></text>
</g>
<g >
<title>_int_free (8 samples, 0.02%)</title><rect x="185.1" y="277" width="0.3" height="15.0" fill="rgb(226,83,53)" rx="2" ry="2" />
<text x="188.13" y="287.5" ></text>
</g>
<g >
<title>perf_event_mmap (121 samples, 0.29%)</title><rect x="292.8" y="229" width="3.5" height="15.0" fill="rgb(248,114,28)" rx="2" ry="2" />
<text x="295.82" y="239.5" ></text>
</g>
<g >
<title>wasmer_runtime_core::codegen::validate_with_features::hca6a4340e6d214c2 (15,330 samples, 37.08%)</title><rect x="355.4" y="405" width="437.6" height="15.0" fill="rgb(231,188,38)" rx="2" ry="2" />
<text x="358.44" y="415.5" >wasmer_runtime_core::codegen::validate_with_features::hca6a..</text>
</g>
<g >
<title>cranelift_codegen::isa::TargetIsa::encode::h3618ddf6ad568ce7 (47 samples, 0.11%)</title><rect x="82.0" y="229" width="1.3" height="15.0" fill="rgb(214,218,12)" rx="2" ry="2" />
<text x="84.95" y="239.5" ></text>
</g>
<g >
<title>cranelift_codegen::ir::layout::Layout::append_inst::h4a2fb37740cc80ba (14 samples, 0.03%)</title><rect x="319.2" y="341" width="0.4" height="15.0" fill="rgb(243,192,2)" rx="2" ry="2" />
<text x="322.16" y="351.5" ></text>
</g>
<g >
<title>alloc::raw_vec::RawVec$LT$T$C$A$GT$::reserve::h8388d76edb66302c (16 samples, 0.04%)</title><rect x="730.8" y="389" width="0.5" height="15.0" fill="rgb(218,35,26)" rx="2" ry="2" />
<text x="733.85" y="399.5" ></text>
</g>
<g >
<title>__GI___exp (253 samples, 0.61%)</title><rect x="876.9" y="469" width="7.2" height="15.0" fill="rgb(225,195,44)" rx="2" ry="2" />
<text x="879.90" y="479.5" ></text>
</g>
<g >
<title>__do_page_fault (138 samples, 0.33%)</title><rect x="275.2" y="325" width="3.9" height="15.0" fill="rgb(222,228,33)" rx="2" ry="2" />
<text x="278.15" y="335.5" ></text>
</g>
<g >
<title>cranelift_codegen::regalloc::live_value_tracker::LiveValueTracker::process_inst::hcd4ba6fb549516b2 (5 samples, 0.01%)</title><rect x="1179.7" y="373" width="0.2" height="15.0" fill="rgb(225,98,5)" rx="2" ry="2" />
<text x="1182.72" y="383.5" ></text>
</g>
<g >
<title>__GI___libc_malloc (11 samples, 0.03%)</title><rect x="174.5" y="357" width="0.3" height="15.0" fill="rgb(205,47,51)" rx="2" ry="2" />
<text x="177.49" 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 (9 samples, 0.02%)</title><rect x="1140.6" y="421" width="0.3" height="15.0" fill="rgb(216,121,7)" rx="2" ry="2" />
<text x="1143.59" y="431.5" ></text>
</g>
<g >
<title>_ZN17cranelift_codegen8regalloc9diversion13RegDiversions6divert17h0dfdaeead6ef2c57E.llvm.6468024634034730254 (26 samples, 0.06%)</title><rect x="135.8" y="261" width="0.8" height="15.0" fill="rgb(216,110,15)" rx="2" ry="2" />
<text x="138.84" y="271.5" ></text>
</g>
<g >
<title>sched_clock_cpu (4 samples, 0.01%)</title><rect x="295.3" y="133" width="0.1" height="15.0" fill="rgb(240,143,13)" rx="2" ry="2" />
<text x="298.33" y="143.5" ></text>
</g>
<g >
<title>alloc::raw_vec::RawVec$LT$T$C$A$GT$::reserve::h500ef385b8747b29 (6 samples, 0.01%)</title><rect x="1168.9" y="261" width="0.2" height="15.0" fill="rgb(235,195,36)" rx="2" ry="2" />
<text x="1171.91" y="271.5" ></text>
</g>
<g >
<title>__GI___libc_malloc (5 samples, 0.01%)</title><rect x="192.4" y="197" width="0.2" height="15.0" fill="rgb(244,149,44)" rx="2" ry="2" />
<text x="195.44" y="207.5" ></text>
</g>
<g >
<title>__vdso_clock_gettime (4 samples, 0.01%)</title><rect x="318.7" y="293" width="0.1" height="15.0" fill="rgb(233,85,27)" rx="2" ry="2" />
<text x="321.68" y="303.5" ></text>
</g>
<g >
<title>_int_malloc (24 samples, 0.06%)</title><rect x="167.2" y="229" width="0.7" height="15.0" fill="rgb(221,199,35)" rx="2" ry="2" />
<text x="170.18" y="239.5" ></text>
</g>
<g >
<title>_int_realloc (7 samples, 0.02%)</title><rect x="44.3" y="293" width="0.2" height="15.0" fill="rgb(240,157,31)" rx="2" ry="2" />
<text x="47.31" y="303.5" ></text>
</g>
<g >
<title>get_mem_cgroup_from_mm (8 samples, 0.02%)</title><rect x="305.6" y="261" width="0.3" height="15.0" fill="rgb(234,41,34)" rx="2" ry="2" />
<text x="308.64" y="271.5" ></text>
</g>
<g >
<title>cranelift_codegen::ir::instructions::Opcode::can_load::hb339196e255b07c9 (4 samples, 0.01%)</title><rect x="165.3" y="277" width="0.1" height="15.0" fill="rgb(248,187,15)" rx="2" ry="2" />
<text x="168.32" y="287.5" ></text>
</g>
<g >
<title>free_unref_page_list (4 samples, 0.01%)</title><rect x="238.6" y="213" width="0.2" height="15.0" fill="rgb(217,61,26)" rx="2" ry="2" />
<text x="241.65" y="223.5" ></text>
</g>
<g >
<title>swapgs_restore_regs_and_return_to_usermode (28 samples, 0.07%)</title><rect x="12.8" y="501" width="0.8" height="15.0" fill="rgb(237,176,46)" rx="2" ry="2" />
<text x="15.77" y="511.5" ></text>
</g>
<g >
<title>wasmer_clif_fork_wasm::state::func_state::FuncTranslationState::new::h6b2b81b0d4ac791a (25 samples, 0.06%)</title><rect x="809.2" y="357" width="0.7" height="15.0" fill="rgb(252,209,24)" rx="2" ry="2" />
<text x="812.17" y="367.5" ></text>
</g>
<g >
<title>hashbrown::map::make_hash::h9e18b3170aa0c7c4 (184 samples, 0.45%)</title><rect x="629.4" y="357" width="5.3" height="15.0" fill="rgb(247,211,16)" rx="2" ry="2" />
<text x="632.41" y="367.5" ></text>
</g>
<g >
<title>alloc::raw_vec::RawVec$LT$T$C$A$GT$::reserve::hbea2e111e8f00580 (5 samples, 0.01%)</title><rect x="807.9" y="357" width="0.2" height="15.0" fill="rgb(215,85,28)" rx="2" ry="2" />
<text x="810.94" y="367.5" ></text>
</g>
<g >
<title>__GI___libc_malloc (10 samples, 0.02%)</title><rect x="804.0" y="325" width="0.3" height="15.0" fill="rgb(242,163,19)" rx="2" ry="2" />
<text x="807.03" y="335.5" ></text>
</g>
<g >
<title>__GI___libc_free (8 samples, 0.02%)</title><rect x="311.4" y="325" width="0.2" height="15.0" fill="rgb(230,155,12)" rx="2" ry="2" />
<text x="314.40" y="335.5" ></text>
</g>
<g >
<title>__GI___libc_free (30 samples, 0.07%)</title><rect x="240.7" y="421" width="0.8" height="15.0" fill="rgb(220,123,11)" rx="2" ry="2" />
<text x="243.67" y="431.5" ></text>
</g>
<g >
<title>cranelift_codegen::dominator_tree::DominatorTree::push_if_unseen::h8fc9e551ebc0c5e1 (10 samples, 0.02%)</title><rect x="111.2" y="277" width="0.3" height="15.0" fill="rgb(209,225,22)" rx="2" ry="2" />
<text x="114.18" y="287.5" ></text>
</g>
<g >
<title>__GI___libc_malloc (4 samples, 0.01%)</title><rect x="350.9" y="341" width="0.1" height="15.0" fill="rgb(213,209,25)" rx="2" ry="2" />
<text x="353.90" 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 (19 samples, 0.05%)</title><rect x="1148.8" y="325" width="0.5" height="15.0" fill="rgb(221,109,52)" rx="2" ry="2" />
<text x="1151.79" y="335.5" ></text>
</g>
<g >
<title>_$LT$cranelift_codegen..settings..Builder$u20$as$u20$cranelift_codegen..settings..Configurable$GT$::set::h176f1ed6e0099d99 (44 samples, 0.11%)</title><rect x="325.6" y="357" width="1.3" height="15.0" fill="rgb(249,158,33)" rx="2" ry="2" />
<text x="328.61" y="367.5" ></text>
</g>
<g >
<title>std::sys::unix::time::inner::Instant::now::h23f1bea5949f1bbd (5 samples, 0.01%)</title><rect x="24.4" y="293" width="0.1" height="15.0" fill="rgb(249,62,27)" rx="2" ry="2" />
<text x="27.36" y="303.5" ></text>
</g>
<g >
<title>__GI___libc_free (30 samples, 0.07%)</title><rect x="310.3" y="341" width="0.8" height="15.0" fill="rgb(233,53,23)" rx="2" ry="2" />
<text x="313.29" y="351.5" ></text>
</g>
<g >
<title>cranelift_codegen::context::Context::compile::h9fe1ff28e88fe30f (618 samples, 1.49%)</title><rect x="1149.3" y="373" width="17.7" height="15.0" fill="rgb(225,190,20)" rx="2" ry="2" />
<text x="1152.33" y="383.5" ></text>
</g>
<g >
<title>__GI___libc_malloc (5 samples, 0.01%)</title><rect x="327.6" y="341" width="0.1" height="15.0" fill="rgb(237,150,26)" rx="2" ry="2" />
<text x="330.58" y="351.5" ></text>
</g>
<g >
<title>prepare_exit_to_usermode (5 samples, 0.01%)</title><rect x="10.9" y="453" width="0.1" height="15.0" fill="rgb(211,180,19)" rx="2" ry="2" />
<text x="13.86" y="463.5" ></text>
</g>
<g >
<title>wasmer_clif_backend::trampoline::Trampolines::to_trampoline_cache::h749748cb93becce9 (5 samples, 0.01%)</title><rect x="186.3" y="213" width="0.1" height="15.0" fill="rgb(250,203,46)" rx="2" ry="2" />
<text x="189.30" y="223.5" ></text>
</g>
<g >
<title>std::time::Instant::elapsed::h8e307314b2acf9be (9 samples, 0.02%)</title><rect x="122.3" y="261" width="0.3" height="15.0" fill="rgb(213,120,44)" rx="2" ry="2" />
<text x="125.31" y="271.5" ></text>
</g>
<g >
<title>cranelift_codegen::legalizer::expand::hc4ef15636e9956ca (16 samples, 0.04%)</title><rect x="86.3" y="213" width="0.5" height="15.0" fill="rgb(221,100,26)" rx="2" ry="2" />
<text x="89.35" y="223.5" ></text>
</g>
<g >
<title>anon_vma_clone (20 samples, 0.05%)</title><rect x="341.4" y="229" width="0.6" height="15.0" fill="rgb(253,38,48)" rx="2" ry="2" />
<text x="344.40" y="239.5" ></text>
</g>
<g >
<title>__GI___libc_malloc (4 samples, 0.01%)</title><rect x="38.5" y="309" width="0.2" height="15.0" fill="rgb(230,96,47)" rx="2" ry="2" />
<text x="41.54" y="319.5" ></text>
</g>
<g >
<title>__GI___pthread_rwlock_rdlock (4 samples, 0.01%)</title><rect x="184.6" y="293" width="0.1" height="15.0" fill="rgb(226,190,54)" rx="2" ry="2" />
<text x="187.62" y="303.5" ></text>
</g>
<g >
<title>std::sys::unix::time::inner::Instant::now::h23f1bea5949f1bbd (4 samples, 0.01%)</title><rect x="163.0" y="229" width="0.1" height="15.0" fill="rgb(207,205,52)" rx="2" ry="2" />
<text x="165.98" y="239.5" ></text>
</g>
<g >
<title>std::sys::unix::time::inner::now::ha10452f37b2930c5 (5 samples, 0.01%)</title><rect x="1154.1" y="261" width="0.1" height="15.0" fill="rgb(226,149,45)" rx="2" ry="2" />
<text x="1157.07" y="271.5" ></text>
</g>
<g >
<title>__GI___libc_malloc (8 samples, 0.02%)</title><rect x="46.9" y="309" width="0.2" height="15.0" fill="rgb(218,196,40)" rx="2" ry="2" />
<text x="49.88" y="319.5" ></text>
</g>
<g >
<title>alloc::raw_vec::RawVec$LT$T$C$A$GT$::reserve::h5e34cfad90a6ce21 (4 samples, 0.01%)</title><rect x="114.5" y="277" width="0.2" height="15.0" fill="rgb(239,136,36)" rx="2" ry="2" />
<text x="117.55" y="287.5" ></text>
</g>
<g >
<title>_int_malloc (6 samples, 0.01%)</title><rect x="174.6" y="341" width="0.2" height="15.0" fill="rgb(228,98,15)" rx="2" ry="2" />
<text x="177.63" y="351.5" ></text>
</g>
<g >
<title>parity_wasm::elements::ops::Instructions::new::hd16213cb99346656 (11 samples, 0.03%)</title><rect x="1100.3" y="437" width="0.3" height="15.0" fill="rgb(247,228,10)" rx="2" ry="2" />
<text x="1103.26" y="447.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 (25 samples, 0.06%)</title><rect x="135.9" y="245" width="0.7" height="15.0" fill="rgb(233,26,29)" rx="2" ry="2" />
<text x="138.87" y="255.5" ></text>
</g>
<g >
<title>cranelift_codegen::isa::x86::enc_tables::x86_expand::h65f50b7ad4fea636 (16 samples, 0.04%)</title><rect x="1167.4" y="261" width="0.4" height="15.0" fill="rgb(228,129,9)" rx="2" ry="2" />
<text x="1170.37" y="271.5" ></text>
</g>
<g >
<title>start_thread (47 samples, 0.11%)</title><rect x="183.3" y="485" width="1.3" height="15.0" fill="rgb(207,102,29)" rx="2" ry="2" />
<text x="186.28" y="495.5" ></text>
</g>
<g >
<title>rocinante::stoke::CandidateFunc::get_rand_instr::h1affb64f6e1408ee (31 samples, 0.07%)</title><rect x="204.5" y="293" width="0.9" height="15.0" fill="rgb(229,221,52)" rx="2" ry="2" />
<text x="207.51" y="303.5" ></text>
</g>
<g >
<title>__GI___libc_malloc (5 samples, 0.01%)</title><rect x="127.1" y="229" width="0.2" height="15.0" fill="rgb(213,23,4)" rx="2" ry="2" />
<text x="130.14" y="239.5" ></text>
</g>
<g >
<title>_int_malloc (4 samples, 0.01%)</title><rect x="198.8" y="245" width="0.1" height="15.0" fill="rgb(221,185,40)" rx="2" ry="2" />
<text x="201.83" y="255.5" ></text>
</g>
<g >
<title>__GI___libc_malloc (11 samples, 0.03%)</title><rect x="128.8" y="229" width="0.4" height="15.0" fill="rgb(233,23,10)" rx="2" ry="2" />
<text x="131.85" y="239.5" ></text>
</g>
<g >
<title>std::time::Instant::now::h33d2ba6042def2d2 (4 samples, 0.01%)</title><rect x="50.0" y="341" width="0.1" height="15.0" fill="rgb(235,103,40)" rx="2" ry="2" />
<text x="53.02" y="351.5" ></text>
</g>
<g >
<title>__rdl_realloc (12 samples, 0.03%)</title><rect x="1048.8" y="405" width="0.3" height="15.0" fill="rgb(220,217,9)" rx="2" ry="2" />
<text x="1051.78" y="415.5" ></text>
</g>
<g >
<title>__perf_addr_filters_adjust (78 samples, 0.19%)</title><rect x="334.8" y="229" width="2.3" height="15.0" fill="rgb(238,208,25)" rx="2" ry="2" />
<text x="337.83" y="239.5" ></text>
</g>
<g >
<title>__GI___libc_malloc (9 samples, 0.02%)</title><rect x="122.6" y="261" width="0.3" height="15.0" fill="rgb(244,121,47)" rx="2" ry="2" />
<text x="125.63" y="271.5" ></text>
</g>
<g >
<title>rocinante::stoke::whitelist::get_equiv_instr::h0d13bcc03db4a9ca (115 samples, 0.28%)</title><rect x="1144.4" y="453" width="3.3" height="15.0" fill="rgb(252,4,31)" rx="2" ry="2" />
<text x="1147.45" y="463.5" ></text>
</g>
<g >
<title>cranelift_codegen::unreachable_code::eliminate_unreachable_code::he5a7c427cf1b37ff (17 samples, 0.04%)</title><rect x="1166.5" y="357" width="0.4" height="15.0" fill="rgb(235,35,51)" rx="2" ry="2" />
<text x="1169.45" y="367.5" ></text>
</g>
<g >
<title>_$LT$$RF$T$u20$as$u20$core..fmt..Display$GT$::fmt::h1604155e69b0be26 (7 samples, 0.02%)</title><rect x="869.0" y="373" width="0.2" height="15.0" fill="rgb(247,182,24)" rx="2" ry="2" />
<text x="871.99" y="383.5" ></text>
</g>
<g >
<title>std::time::Instant::now::h33d2ba6042def2d2 (5 samples, 0.01%)</title><rect x="168.8" y="277" width="0.1" height="15.0" fill="rgb(249,225,29)" rx="2" ry="2" />
<text x="171.81" y="287.5" ></text>
</g>
<g >
<title>rayon_core::current_num_threads::hd153282d6ebc6706 (21 samples, 0.05%)</title><rect x="280.8" y="309" width="0.6" height="15.0" fill="rgb(208,54,49)" rx="2" ry="2" />
<text x="283.83" y="319.5" ></text>
</g>
<g >
<title>std::time::Instant::elapsed::h8e307314b2acf9be (6 samples, 0.01%)</title><rect x="1160.5" y="325" width="0.2" height="15.0" fill="rgb(210,19,42)" rx="2" ry="2" />
<text x="1163.54" y="335.5" ></text>
</g>
<g >
<title>_ZN9hashbrown3raw17RawTable$LT$T$GT$14reserve_rehash17ha4062a2c7a6e2cb5E.llvm.16938716460618634628 (73 samples, 0.18%)</title><rect x="166.3" y="261" width="2.0" height="15.0" fill="rgb(235,150,10)" rx="2" ry="2" />
<text x="169.27" y="271.5" ></text>
</g>
<g >
<title>memcpy_erms (5 samples, 0.01%)</title><rect x="287.2" y="197" width="0.2" height="15.0" fill="rgb(210,169,51)" rx="2" ry="2" />
<text x="290.23" y="207.5" ></text>
</g>
<g >
<title>_$LT$alloc..vec..Vec$LT$T$GT$$u20$as$u20$core..clone..Clone$GT$::clone::h9c68dd6a4f9475a9 (5 samples, 0.01%)</title><rect x="61.5" y="309" width="0.2" height="15.0" fill="rgb(208,204,12)" rx="2" ry="2" />
<text x="64.52" y="319.5" ></text>
</g>
<g >
<title>hashbrown::raw::RawTable$LT$T$GT$::insert::h1ba60dad4ebe9e0f (9 samples, 0.02%)</title><rect x="814.9" y="357" width="0.3" height="15.0" fill="rgb(222,165,42)" rx="2" ry="2" />
<text x="817.90" y="367.5" ></text>
</g>
<g >
<title>vm_mmap_pgoff (224 samples, 0.54%)</title><rect x="290.7" y="277" width="6.4" height="15.0" fill="rgb(218,112,21)" rx="2" ry="2" />
<text x="293.74" y="287.5" ></text>
</g>
<g >
<title>cranelift_codegen::ir::dfg::DataFlowGraph::replace_with_aliases::hf72d80b187eea82e (11 samples, 0.03%)</title><rect x="164.5" y="277" width="0.3" height="15.0" fill="rgb(223,217,2)" rx="2" ry="2" />
<text x="167.52" y="287.5" ></text>
</g>
<g >
<title>unmap_single_vma (42 samples, 0.10%)</title><rect x="234.5" y="245" width="1.2" height="15.0" fill="rgb(229,58,28)" rx="2" ry="2" />
<text x="237.48" y="255.5" ></text>
</g>
<g >
<title>cranelift_codegen::ir::dfg::DataFlowGraph::make_inst::h5a8de03d56461c59 (31 samples, 0.07%)</title><rect x="323.3" y="373" width="0.9" height="15.0" fill="rgb(229,171,46)" rx="2" ry="2" />
<text x="326.27" y="383.5" ></text>
</g>
<g >
<title>_int_malloc (8 samples, 0.02%)</title><rect x="109.3" y="245" width="0.3" height="15.0" fill="rgb(235,206,27)" rx="2" ry="2" />
<text x="112.33" y="255.5" ></text>
</g>
<g >
<title>alloc::raw_vec::RawVec$LT$T$C$A$GT$::reserve::hc8a0fc8526f8c69b (10 samples, 0.02%)</title><rect x="1172.2" y="341" width="0.3" height="15.0" fill="rgb(216,120,4)" rx="2" ry="2" />
<text x="1175.25" y="351.5" ></text>
</g>
<g >
<title>_int_malloc (8 samples, 0.02%)</title><rect x="804.1" y="309" width="0.2" height="15.0" fill="rgb(231,81,40)" rx="2" ry="2" />
<text x="807.09" y="319.5" ></text>
</g>
<g >
<title>std::time::Instant::elapsed::h8e307314b2acf9be (6 samples, 0.01%)</title><rect x="36.9" y="325" width="0.2" height="15.0" fill="rgb(220,78,48)" rx="2" ry="2" />
<text x="39.91" y="335.5" ></text>
</g>
<g >
<title>cranelift_codegen::context::Context::relax_branches::hbf7d0399633288d4 (127 samples, 0.31%)</title><rect x="22.8" y="373" width="3.7" height="15.0" fill="rgb(234,7,29)" rx="2" ry="2" />
<text x="25.84" y="383.5" ></text>
</g>
<g >
<title>wasmparser::readers::export_section::ExportSectionReader::read::h3ee6d1ee74ae2753 (7 samples, 0.02%)</title><rect x="190.6" y="181" width="0.2" height="15.0" fill="rgb(229,120,48)" rx="2" ry="2" />
<text x="193.61" y="191.5" ></text>
</g>
<g >
<title>hashbrown::raw::sse2::Group::static_empty::h80f52363fc69c9bd (4 samples, 0.01%)</title><rect x="809.5" y="341" width="0.1" height="15.0" fill="rgb(252,55,54)" rx="2" ry="2" />
<text x="812.48" y="351.5" ></text>
</g>
<g >
<title>cranelift_codegen::ir::instructions::InstructionData::typevar_operand::hbf9a7e821f2ceac3 (4 samples, 0.01%)</title><rect x="34.1" y="325" width="0.1" height="15.0" fill="rgb(205,227,48)" rx="2" ry="2" />
<text x="37.09" y="335.5" ></text>
</g>
<g >
<title>_$LT$$RF$mut$u20$cranelift_codegen..cursor..EncCursor$u20$as$u20$cranelift_codegen..ir..builder..InstInserterBase$GT$::insert_built_inst::hbf5c6b2278487fe8 (9 samples, 0.02%)</title><rect x="20.0" y="293" width="0.2" height="15.0" fill="rgb(237,156,26)" rx="2" ry="2" />
<text x="22.96" y="303.5" ></text>
</g>
<g >
<title>cranelift_codegen::ir::function::Function::with_name_signature::h3213a13dd838e646 (6 samples, 0.01%)</title><rect x="57.9" y="389" width="0.1" height="15.0" fill="rgb(239,165,18)" rx="2" ry="2" />
<text x="60.86" y="399.5" ></text>
</g>
<g >
<title>cranelift_codegen::ir::builder::InstBuilder::ifcmp_imm::h300e825ec84d98ef (11 samples, 0.03%)</title><rect x="84.3" y="213" width="0.3" height="15.0" fill="rgb(247,7,53)" rx="2" ry="2" />
<text x="87.32" y="223.5" ></text>
</g>
<g >
<title>cranelift_codegen::isa::lookup::h7750611a3eef7478 (9 samples, 0.02%)</title><rect x="327.5" y="357" width="0.2" height="15.0" fill="rgb(205,153,25)" rx="2" ry="2" />
<text x="330.47" y="367.5" ></text>
</g>
<g >
<title>cranelift_codegen::ir::dfg::DataFlowGraph::clear::h864e5fe24548dc9f (14 samples, 0.03%)</title><rect x="311.8" y="341" width="0.4" height="15.0" fill="rgb(213,9,21)" rx="2" ry="2" />
<text x="314.80" 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 (643 samples, 1.56%)</title><rect x="1148.8" y="437" width="18.3" height="15.0" fill="rgb(231,154,49)" rx="2" ry="2" />
<text x="1151.79" y="447.5" ></text>
</g>
<g >
<title>core::ptr::real_drop_in_place::hb2e11882195b050b (29 samples, 0.07%)</title><rect x="241.6" y="437" width="0.8" height="15.0" fill="rgb(207,28,16)" rx="2" ry="2" />
<text x="244.59" y="447.5" ></text>
</g>
<g >
<title>cranelift_codegen::context::Context::for_function::hea969f7415ee7749 (59 samples, 0.14%)</title><rect x="172.3" y="373" width="1.7" height="15.0" fill="rgb(248,42,26)" rx="2" ry="2" />
<text x="175.35" y="383.5" ></text>
</g>
<g >
<title>cranelift_codegen::legalizer::boundary::handle_return_abi::h764f90cd82edb83f (4 samples, 0.01%)</title><rect x="18.6" y="325" width="0.1" height="15.0" fill="rgb(235,79,46)" rx="2" ry="2" />
<text x="21.62" y="335.5" ></text>
</g>
<g >
<title>cranelift_codegen::ir::layout::Layout::insert_inst::h352d76f498d27496 (4 samples, 0.01%)</title><rect x="21.1" y="293" width="0.1" height="15.0" fill="rgb(221,158,24)" rx="2" ry="2" />
<text x="24.07" y="303.5" ></text>
</g>
<g >
<title>cranelift_bforest::set::Set$LT$K$GT$::insert::h750422a26fd1bdc6 (4 samples, 0.01%)</title><rect x="1167.5" y="181" width="0.1" height="15.0" fill="rgb(231,45,9)" rx="2" ry="2" />
<text x="1170.48" y="191.5" ></text>
</g>
<g >
<title>_ZN4core3ptr18real_drop_in_place17hbf1a2e7b1d7f1667E.llvm.2002196175208074555 (18 samples, 0.04%)</title><rect x="523.8" y="341" width="0.5" height="15.0" fill="rgb(209,141,25)" rx="2" ry="2" />
<text x="526.81" y="351.5" ></text>
</g>
<g >
<title>__memcpy_avx_unaligned (43 samples, 0.10%)</title><rect x="659.4" y="357" width="1.2" height="15.0" fill="rgb(207,24,18)" rx="2" ry="2" />
<text x="662.38" y="367.5" ></text>
</g>
<g >
<title>cranelift_codegen::ir::function::Function::update_encoding::hf75ec520bc911a0c (16 samples, 0.04%)</title><rect x="1154.5" y="309" width="0.4" height="15.0" fill="rgb(244,65,3)" rx="2" ry="2" />
<text x="1157.47" y="319.5" ></text>
</g>
<g >
<title>_$LT$wasmer_runtime_core..codegen..StreamingCompiler$LT$MCG$C$FCG$C$RM$C$E$C$CGEN$GT$$u20$as$u20$wasmer_runtime_core..backend..Compiler$GT$::compile::h8e59f93f7f287bf9 (21,132 samples, 51.11%)</title><rect x="248.2" y="421" width="603.1" height="15.0" fill="rgb(239,122,22)" rx="2" ry="2" />
<text x="251.18" y="431.5" >_$LT$wasmer_runtime_core..codegen..StreamingCompiler$LT$MCG$C$FCG$C$RM$C$E$C$CGEN$G..</text>
</g>
<g >
<title>change_protection (39 samples, 0.09%)</title><rect x="263.5" y="261" width="1.1" height="15.0" fill="rgb(224,135,32)" rx="2" ry="2" />
<text x="266.54" 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 (19 samples, 0.05%)</title><rect x="20.9" y="309" width="0.5" height="15.0" fill="rgb(242,114,54)" rx="2" ry="2" />
<text x="23.87" y="319.5" ></text>
</g>
<g >
<title>__GI___clock_gettime (9 samples, 0.02%)</title><rect x="37.7" y="277" width="0.2" height="15.0" fill="rgb(224,126,48)" rx="2" ry="2" />
<text x="40.69" y="287.5" ></text>
</g>
<g >
<title>__vdso_clock_gettime (8 samples, 0.02%)</title><rect x="108.8" y="181" width="0.3" height="15.0" fill="rgb(254,25,47)" rx="2" ry="2" />
<text x="111.84" y="191.5" ></text>
</g>
<g >
<title>_$LT$rocinante..exec..wasmer..Wasmer$u20$as$u20$rocinante..exec..Interpreter$GT$::eval_test_cases::hf136840e36843cad (1,558 samples, 3.77%)</title><rect x="13.6" y="501" width="44.4" height="15.0" fill="rgb(241,82,47)" rx="2" ry="2" />
<text x="16.57" y="511.5" >_$LT..</text>
</g>
<g >
<title>change_protection (15 samples, 0.04%)</title><rect x="284.7" y="261" width="0.4" height="15.0" fill="rgb(210,171,5)" rx="2" ry="2" />
<text x="287.69" y="271.5" ></text>
</g>
<g >
<title>__GI___libc_realloc (17 samples, 0.04%)</title><rect x="21.4" y="293" width="0.5" height="15.0" fill="rgb(220,163,51)" rx="2" ry="2" />
<text x="24.42" y="303.5" ></text>
</g>
<g >
<title>std::time::Instant::now::h33d2ba6042def2d2 (5 samples, 0.01%)</title><rect x="51.7" y="309" width="0.1" height="15.0" fill="rgb(216,158,34)" rx="2" ry="2" />
<text x="54.70" y="319.5" ></text>
</g>
<g >
<title>_int_free (5 samples, 0.01%)</title><rect x="72.9" y="261" width="0.1" height="15.0" fill="rgb(214,22,34)" rx="2" ry="2" />
<text x="75.88" y="271.5" ></text>
</g>
<g >
<title>alloc::vec::Vec$LT$T$GT$::into_boxed_slice::h1ce3360cecae11fd (29 samples, 0.07%)</title><rect x="452.8" y="357" width="0.8" height="15.0" fill="rgb(225,86,8)" rx="2" ry="2" />
<text x="455.77" y="367.5" ></text>
</g>
<g >
<title>_$LT$alloc..vec..Vec$LT$T$GT$$u20$as$u20$core..clone..Clone$GT$::clone::h514986f3b28de5ec (14 samples, 0.03%)</title><rect x="795.1" y="341" width="0.4" height="15.0" fill="rgb(235,126,29)" rx="2" ry="2" />
<text x="798.10" y="351.5" ></text>
</g>
<g >
<title>_int_free (6 samples, 0.01%)</title><rect x="179.9" y="309" width="0.2" height="15.0" fill="rgb(239,2,41)" rx="2" ry="2" />
<text x="182.94" y="319.5" ></text>
</g>
<g >
<title>__GI___libc_malloc (5 samples, 0.01%)</title><rect x="282.2" y="341" width="0.2" height="15.0" fill="rgb(230,26,3)" rx="2" ry="2" />
<text x="285.23" y="351.5" ></text>
</g>
<g >
<title>__GI___libc_malloc (8 samples, 0.02%)</title><rect x="202.3" y="245" width="0.3" height="15.0" fill="rgb(209,25,13)" rx="2" ry="2" />
<text x="205.34" y="255.5" ></text>
</g>
<g >
<title>std::sys::unix::time::inner::Instant::now::h23f1bea5949f1bbd (12 samples, 0.03%)</title><rect x="161.1" y="261" width="0.4" height="15.0" fill="rgb(211,91,36)" rx="2" ry="2" />
<text x="164.13" y="271.5" ></text>
</g>
<g >
<title>__GI___libc_malloc (11 samples, 0.03%)</title><rect x="352.1" y="405" width="0.3" height="15.0" fill="rgb(225,228,47)" rx="2" ry="2" />
<text x="355.07" y="415.5" ></text>
</g>
<g >
<title>sys_mmap (165 samples, 0.40%)</title><rect x="345.1" y="309" width="4.7" height="15.0" fill="rgb(231,197,29)" rx="2" ry="2" />
<text x="348.05" y="319.5" ></text>
</g>
<g >
<title>_$LT$rayon..iter..plumbing..bridge..Callback$LT$C$GT$$u20$as$u20$rayon..iter..plumbing..ProducerCallback$LT$I$GT$$GT$::callback::hf4ac68f147f82ab3 (25 samples, 0.06%)</title><rect x="280.7" y="325" width="0.7" height="15.0" fill="rgb(250,123,19)" rx="2" ry="2" />
<text x="283.72" y="335.5" ></text>
</g>
<g >
<title>cranelift_codegen::ir::instructions::InstructionData::arguments::h70ecdef19e20b02a (4 samples, 0.01%)</title><rect x="45.5" y="325" width="0.1" height="15.0" fill="rgb(229,194,34)" rx="2" ry="2" />
<text x="48.48" y="335.5" ></text>
</g>
<g >
<title>_$LT$wasmer_runtime_core..codegen..StreamingCompiler$LT$MCG$C$FCG$C$RM$C$E$C$CGEN$GT$$u20$as$u20$wasmer_runtime_core..backend..Compiler$GT$::compile::h8e59f93f7f287bf9 (315 samples, 0.76%)</title><rect x="174.3" y="501" width="9.0" height="15.0" fill="rgb(219,41,50)" rx="2" ry="2" />
<text x="177.29" y="511.5" ></text>
</g>
<g >
<title>do_mprotect_pkey (7 samples, 0.02%)</title><rect x="186.4" y="133" width="0.2" height="15.0" fill="rgb(230,21,49)" rx="2" ry="2" />
<text x="189.44" y="143.5" ></text>
</g>
<g >
<title>cranelift_codegen::constant_hash::probe::hd04e9b03fd50ee53 (5 samples, 0.01%)</title><rect x="350.6" y="341" width="0.1" height="15.0" fill="rgb(230,148,50)" rx="2" ry="2" />
<text x="353.56" y="351.5" ></text>
</g>
<g >
<title>cranelift_codegen::ir::builder::InstBuilder::x86_pop::h5a280d9badba4b5b (23 samples, 0.06%)</title><rect x="19.9" y="309" width="0.6" height="15.0" fill="rgb(235,36,22)" rx="2" ry="2" />
<text x="22.88" y="319.5" ></text>
</g>
<g >
<title>__GI___libc_free (4 samples, 0.01%)</title><rect x="190.3" y="165" width="0.1" height="15.0" fill="rgb(219,66,37)" rx="2" ry="2" />
<text x="193.27" y="175.5" ></text>
</g>
<g >
<title>__lock_text_start (16 samples, 0.04%)</title><rect x="230.9" y="213" width="0.5" height="15.0" fill="rgb(240,205,20)" rx="2" ry="2" />
<text x="233.91" y="223.5" ></text>
</g>
<g >
<title>core::num::_$LT$impl$u20$usize$GT$::next_power_of_two::h599a73e6ec7026f3 (6 samples, 0.01%)</title><rect x="654.6" y="309" width="0.2" height="15.0" fill="rgb(245,9,6)" rx="2" ry="2" />
<text x="657.61" y="319.5" ></text>
</g>
<g >
<title>_$LT$cranelift_codegen..settings..Builder$u20$as$u20$cranelift_codegen..settings..Configurable$GT$::set::h176f1ed6e0099d99 (26 samples, 0.06%)</title><rect x="350.0" y="373" width="0.8" height="15.0" fill="rgb(206,195,52)" rx="2" ry="2" />
<text x="353.05" y="383.5" ></text>
</g>
<g >
<title>prepare_exit_to_usermode (28 samples, 0.07%)</title><rect x="12.8" y="485" width="0.8" height="15.0" fill="rgb(215,178,27)" rx="2" ry="2" />
<text x="15.77" y="495.5" ></text>
</g>
<g >
<title>cranelift_codegen::isa::TargetIsa::encode::h3618ddf6ad568ce7 (11 samples, 0.03%)</title><rect x="22.4" y="277" width="0.3" height="15.0" fill="rgb(226,150,54)" rx="2" ry="2" />
<text x="25.36" y="287.5" ></text>
</g>
<g >
<title>__memcpy_sse2 (4 samples, 0.01%)</title><rect x="44.4" y="277" width="0.1" height="15.0" fill="rgb(217,40,9)" rx="2" ry="2" />
<text x="47.39" y="287.5" ></text>
</g>
<g >
<title>__memcpy_avx_unaligned (5 samples, 0.01%)</title><rect x="103.3" y="261" width="0.1" height="15.0" fill="rgb(224,106,7)" rx="2" ry="2" />
<text x="106.27" y="271.5" ></text>
</g>
<g >
<title>std::time::Instant::now::h33d2ba6042def2d2 (6 samples, 0.01%)</title><rect x="117.0" y="261" width="0.1" height="15.0" fill="rgb(244,209,10)" rx="2" ry="2" />
<text x="119.97" y="271.5" ></text>
</g>
<g >
<title>_int_free (18 samples, 0.04%)</title><rect x="255.7" y="357" width="0.5" height="15.0" fill="rgb(213,8,40)" rx="2" ry="2" />
<text x="258.66" y="367.5" ></text>
</g>
<g >
<title>_int_malloc (7 samples, 0.02%)</title><rect x="194.7" y="165" width="0.2" height="15.0" fill="rgb(238,162,17)" rx="2" ry="2" />
<text x="197.69" y="175.5" ></text>
</g>
<g >
<title>_int_realloc (4 samples, 0.01%)</title><rect x="298.5" y="309" width="0.1" height="15.0" fill="rgb(224,105,9)" rx="2" ry="2" />
<text x="301.47" y="319.5" ></text>
</g>
<g >
<title>cranelift_codegen::isa::x86::binemit::emit_inst::h4f026cde2beb5a85 (19 samples, 0.05%)</title><rect x="1148.8" y="357" width="0.5" height="15.0" fill="rgb(224,60,6)" rx="2" ry="2" />
<text x="1151.79" y="367.5" ></text>
</g>
<g >
<title>cranelift_codegen::topo_order::TopoOrder::next::h3ea49efe09e3a2f0 (27 samples, 0.07%)</title><rect x="124.1" y="261" width="0.8" height="15.0" fill="rgb(222,193,25)" rx="2" ry="2" />
<text x="127.08" y="271.5" ></text>
</g>
<g >
<title>_int_malloc (146 samples, 0.35%)</title><rect x="648.0" y="309" width="4.2" height="15.0" fill="rgb(232,126,34)" rx="2" ry="2" />
<text x="650.99" y="319.5" ></text>
</g>
<g >
<title>cranelift_codegen::isa::Builder::finish::h10c6dcad4391fb0e (21 samples, 0.05%)</title><rect x="326.9" y="357" width="0.6" height="15.0" fill="rgb(251,183,46)" rx="2" ry="2" />
<text x="329.87" y="367.5" ></text>
</g>
<g >
<title>cranelift_codegen::regalloc::solver::Solver::schedule_moves::h81b194ab48ac25d3 (36 samples, 0.09%)</title><rect x="46.1" y="341" width="1.1" height="15.0" fill="rgb(221,47,18)" rx="2" ry="2" />
<text x="49.13" y="351.5" ></text>
</g>
<g >
<title>do_munmap (5 samples, 0.01%)</title><rect x="185.4" y="133" width="0.2" height="15.0" fill="rgb(209,162,52)" rx="2" ry="2" />
<text x="188.42" y="143.5" ></text>
</g>
<g >
<title>__GI___clock_gettime (12 samples, 0.03%)</title><rect x="111.7" y="229" width="0.3" height="15.0" fill="rgb(215,223,31)" rx="2" ry="2" />
<text x="114.69" y="239.5" ></text>
</g>
<g >
<title>unmap_single_vma (6 samples, 0.01%)</title><rect x="240.2" y="277" width="0.2" height="15.0" fill="rgb(234,174,19)" rx="2" ry="2" />
<text x="243.19" y="287.5" ></text>
</g>
<g >
<title>alloc::raw_vec::RawVec$LT$T$C$A$GT$::reserve::h156c4ca9e87e66cc (5 samples, 0.01%)</title><rect x="312.9" y="357" width="0.1" height="15.0" fill="rgb(225,135,36)" rx="2" ry="2" />
<text x="315.88" y="367.5" ></text>
</g>
<g >
<title>cranelift_codegen::ir::dfg::DataFlowGraph::make_inst_results_reusing::h668204b844797576 (4 samples, 0.01%)</title><rect x="86.1" y="197" width="0.1" height="15.0" fill="rgb(238,183,13)" rx="2" ry="2" />
<text x="89.06" y="207.5" ></text>
</g>
<g >
<title>cranelift_codegen::flowgraph::ControlFlowGraph::add_edge::hf2c2f4cb34e85a4f (6 samples, 0.01%)</title><rect x="83.9" y="181" width="0.2" height="15.0" fill="rgb(209,80,27)" rx="2" ry="2" />
<text x="86.89" y="191.5" ></text>
</g>
<g >
<title>__GI___clock_gettime (6 samples, 0.01%)</title><rect x="171.1" y="197" width="0.2" height="15.0" fill="rgb(216,38,51)" rx="2" ry="2" />
<text x="174.12" y="207.5" ></text>
</g>
<g >
<title>wasmparser::binary_reader::BinaryReader::read_operator::h66dd186d320fc797 (103 samples, 0.25%)</title><rect x="483.4" y="357" width="2.9" height="15.0" fill="rgb(242,46,51)" rx="2" ry="2" />
<text x="486.36" y="367.5" ></text>
</g>
<g >
<title>std::time::Instant::now::h33d2ba6042def2d2 (5 samples, 0.01%)</title><rect x="1170.8" y="325" width="0.1" height="15.0" fill="rgb(247,224,3)" rx="2" ry="2" />
<text x="1173.79" y="335.5" ></text>
</g>
<g >
<title>__perf_addr_filters_adjust (49 samples, 0.12%)</title><rect x="265.6" y="229" width="1.4" height="15.0" fill="rgb(217,131,23)" rx="2" ry="2" />
<text x="268.65" y="239.5" ></text>
</g>
<g >
<title>std::sys::unix::time::inner::now::ha10452f37b2930c5 (7 samples, 0.02%)</title><rect x="36.2" y="309" width="0.2" height="15.0" fill="rgb(236,8,19)" rx="2" ry="2" />
<text x="39.17" y="319.5" ></text>
</g>
<g >
<title>cranelift_bforest::path::Path$LT$F$GT$::next::h5ea6a430c3b76c71 (5 samples, 0.01%)</title><rect x="74.2" y="261" width="0.1" height="15.0" fill="rgb(213,53,21)" rx="2" ry="2" />
<text x="77.19" y="271.5" ></text>
</g>
<g >
<title>core::ptr::real_drop_in_place::h73e5f742715a1243 (22 samples, 0.05%)</title><rect x="306.9" y="373" width="0.6" height="15.0" fill="rgb(217,95,49)" rx="2" ry="2" />
<text x="309.86" y="383.5" ></text>
</g>
<g >
<title>cranelift_codegen::regalloc::context::Context::run::hacf4bbc8f4d0071a (128 samples, 0.31%)</title><rect x="1176.4" y="405" width="3.6" height="15.0" fill="rgb(218,126,49)" rx="2" ry="2" />
<text x="1179.39" y="415.5" ></text>
</g>
<g >
<title>cranelift_codegen::legalizer::legalize_function::h9c05a7523015c4df (53 samples, 0.13%)</title><rect x="1153.7" y="341" width="1.5" height="15.0" fill="rgb(227,160,19)" rx="2" ry="2" />
<text x="1156.69" 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 samples, 0.01%)</title><rect x="184.6" y="357" width="0.2" height="15.0" fill="rgb(241,144,34)" rx="2" ry="2" />
<text x="187.62" y="367.5" ></text>
</g>
<g >
<title>__GI___libc_malloc (655 samples, 1.58%)</title><rect x="459.9" y="341" width="18.7" height="15.0" fill="rgb(249,24,31)" rx="2" ry="2" />
<text x="462.87" y="351.5" ></text>
</g>
<g >
<title>__GI___libc_malloc (6 samples, 0.01%)</title><rect x="58.4" y="325" width="0.2" height="15.0" fill="rgb(251,133,3)" rx="2" ry="2" />
<text x="61.41" y="335.5" ></text>
</g>
<g >
<title>cranelift_codegen::isa::x86::abi::prologue_epilogue::h9cb24b877f7c4837 (144 samples, 0.35%)</title><rect x="18.7" y="341" width="4.1" height="15.0" fill="rgb(216,97,42)" rx="2" ry="2" />
<text x="21.73" y="351.5" ></text>
</g>
<g >
<title>_ZN25wasmer_clif_fork_frontend3ssa10SSABuilder25seal_one_ebb_header_block17h26b4541b1eac3a67E.llvm.13732412221390219292 (7 samples, 0.02%)</title><rect x="807.6" y="357" width="0.2" height="15.0" fill="rgb(232,126,12)" rx="2" ry="2" />
<text x="810.57" y="367.5" ></text>
</g>
<g >
<title>__GI___libc_free (15 samples, 0.04%)</title><rect x="195.9" y="213" width="0.4" height="15.0" fill="rgb(224,117,29)" rx="2" ry="2" />
<text x="198.89" y="223.5" ></text>
</g>
<g >
<title>__GI___libc_realloc (13 samples, 0.03%)</title><rect x="1177.0" y="309" width="0.4" height="15.0" fill="rgb(214,151,9)" rx="2" ry="2" />
<text x="1180.01" y="319.5" ></text>
</g>
<g >
<title>_int_realloc (51 samples, 0.12%)</title><rect x="1047.1" y="389" width="1.4" height="15.0" fill="rgb(223,121,39)" rx="2" ry="2" />
<text x="1050.06" y="399.5" ></text>
</g>
<g >
<title>__GI___libc_free (5 samples, 0.01%)</title><rect x="281.4" y="341" width="0.2" height="15.0" fill="rgb(219,135,48)" rx="2" ry="2" />
<text x="284.43" y="351.5" ></text>
</g>
<g >
<title>std::sys::unix::time::inner::Instant::now::h23f1bea5949f1bbd (7 samples, 0.02%)</title><rect x="1166.0" y="293" width="0.2" height="15.0" fill="rgb(235,113,2)" rx="2" ry="2" />
<text x="1169.00" y="303.5" ></text>
</g>
<g >
<title>force_sig_info (7 samples, 0.02%)</title><rect x="12.6" y="421" width="0.2" height="15.0" fill="rgb(232,161,32)" rx="2" ry="2" />
<text x="15.57" y="431.5" ></text>
</g>
<g >
<title>std::time::Instant::now::h33d2ba6042def2d2 (10 samples, 0.02%)</title><rect x="119.5" y="277" width="0.3" height="15.0" fill="rgb(230,223,24)" rx="2" ry="2" />
<text x="122.54" y="287.5" ></text>
</g>
<g >
<title>__rb_insert_augmented (4 samples, 0.01%)</title><rect x="341.6" y="197" width="0.1" height="15.0" fill="rgb(213,186,15)" rx="2" ry="2" />
<text x="344.57" y="207.5" ></text>
</g>
<g >
<title>alloc::raw_vec::RawVec$LT$T$C$A$GT$::reserve::h4284e17124a0ec35 (12 samples, 0.03%)</title><rect x="806.4" y="357" width="0.3" height="15.0" fill="rgb(218,107,51)" rx="2" ry="2" />
<text x="809.40" y="367.5" ></text>
</g>
<g >
<title>cranelift_codegen::regalloc::solver::Solver::reassign_in::h4635b38f4d433603 (14 samples, 0.03%)</title><rect x="139.2" y="245" width="0.4" height="15.0" fill="rgb(251,161,46)" rx="2" ry="2" />
<text x="142.24" y="255.5" ></text>
</g>
<g >
<title>std::time::Instant::elapsed::h8e307314b2acf9be (5 samples, 0.01%)</title><rect x="144.5" y="245" width="0.1" height="15.0" fill="rgb(222,25,22)" rx="2" ry="2" />
<text x="147.46" y="255.5" ></text>
</g>
<g >
<title>_$LT$$RF$mut$u20$cranelift_codegen..cursor..EncCursor$u20$as$u20$cranelift_codegen..ir..builder..InstInserterBase$GT$::data_flow_graph_mut::hce95f6c3cc92a144 (4 samples, 0.01%)</title><rect x="319.0" y="357" width="0.1" height="15.0" fill="rgb(251,95,32)" rx="2" ry="2" />
<text x="321.99" y="367.5" ></text>
</g>
<g >
<title>perf_iterate_ctx (77 samples, 0.19%)</title><rect x="285.4" y="229" width="2.2" height="15.0" fill="rgb(217,78,7)" rx="2" ry="2" />
<text x="288.43" y="239.5" ></text>
</g>
<g >
<title>wasmparser::binary_reader::BinaryReader::read_var_u32::h9f3e844d80d20a5e (50 samples, 0.12%)</title><rect x="568.4" y="341" width="1.5" height="15.0" fill="rgb(220,63,14)" rx="2" ry="2" />
<text x="571.45" y="351.5" ></text>
</g>
<g >
<title>perf_iterate_ctx (53 samples, 0.13%)</title><rect x="265.5" y="245" width="1.5" height="15.0" fill="rgb(242,126,24)" rx="2" ry="2" />
<text x="268.53" y="255.5" ></text>
</g>
<g >
<title>alloc::raw_vec::RawVec$LT$T$C$A$GT$::reserve::h02503ac3a628c0ac (16 samples, 0.04%)</title><rect x="1173.0" y="325" width="0.4" height="15.0" fill="rgb(245,98,51)" rx="2" ry="2" />
<text x="1175.96" y="335.5" ></text>
</g>
<g >
<title>std::sys::unix::time::inner::now::ha10452f37b2930c5 (7 samples, 0.02%)</title><rect x="171.3" y="245" width="0.2" height="15.0" fill="rgb(245,192,19)" rx="2" ry="2" />
<text x="174.29" y="255.5" ></text>
</g>
<g >
<title>_$LT$cranelift_codegen..timing..details..TimingToken$u20$as$u20$core..ops..drop..Drop$GT$::drop::h1b19c2a93ee0a091 (7 samples, 0.02%)</title><rect x="32.5" y="341" width="0.2" height="15.0" fill="rgb(205,148,17)" rx="2" ry="2" />
<text x="35.55" y="351.5" ></text>
</g>
<g >
<title>std::sys::unix::time::inner::Instant::now::h23f1bea5949f1bbd (7 samples, 0.02%)</title><rect x="96.2" y="213" width="0.2" height="15.0" fill="rgb(248,158,5)" rx="2" ry="2" />
<text x="99.20" y="223.5" ></text>
</g>
<g >
<title>__GI___libc_free (61 samples, 0.15%)</title><rect x="175.1" y="357" width="1.8" height="15.0" fill="rgb(221,90,23)" rx="2" ry="2" />
<text x="178.14" y="367.5" ></text>
</g>
<g >
<title>_int_free (612 samples, 1.48%)</title><rect x="734.5" y="357" width="17.4" height="15.0" fill="rgb(246,177,4)" rx="2" ry="2" />
<text x="737.47" y="367.5" ></text>
</g>
<g >
<title>std::sys::unix::time::inner::Instant::now::h23f1bea5949f1bbd (8 samples, 0.02%)</title><rect x="54.2" y="325" width="0.2" height="15.0" fill="rgb(242,57,12)" rx="2" ry="2" />
<text x="57.15" 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 (4,073 samples, 9.85%)</title><rect x="58.0" y="421" width="116.3" height="15.0" fill="rgb(240,154,14)" rx="2" ry="2" />
<text x="61.04" y="431.5" >_$LT$rayon..it..</text>
</g>
<g >
<title>__GI___libc_realloc (12 samples, 0.03%)</title><rect x="803.5" y="341" width="0.3" height="15.0" fill="rgb(244,205,51)" rx="2" ry="2" />
<text x="806.46" y="351.5" ></text>
</g>
<g >
<title>__GI___libc_realloc (20 samples, 0.05%)</title><rect x="80.3" y="197" width="0.6" height="15.0" fill="rgb(214,174,14)" rx="2" ry="2" />
<text x="83.33" y="207.5" ></text>
</g>
<g >
<title>std::collections::hash::map::RandomState::new::KEYS::__getit::hc919284a97fb9164 (28 samples, 0.07%)</title><rect x="792.2" y="373" width="0.8" height="15.0" fill="rgb(254,190,38)" rx="2" ry="2" />
<text x="795.19" y="383.5" ></text>
</g>
<g >
<title>hashbrown::raw::capacity_to_buckets::hf5c44c5afd412277 (4 samples, 0.01%)</title><rect x="300.1" y="357" width="0.1" height="15.0" fill="rgb(237,149,11)" rx="2" ry="2" />
<text x="303.07" y="367.5" ></text>
</g>
<g >
<title>cranelift_codegen::dominator_tree::DominatorTree::compute_idom::haefe97f2edc1fd51 (36 samples, 0.09%)</title><rect x="110.2" y="277" width="1.0" height="15.0" fill="rgb(240,53,41)" rx="2" ry="2" />
<text x="113.15" y="287.5" ></text>
</g>
<g >
<title>wasmer_runtime_core::module::StringTableBuilder$LT$K$GT$::finish::h88fdba4e50ddfb2a (10 samples, 0.02%)</title><rect x="850.8" y="389" width="0.3" height="15.0" fill="rgb(244,53,46)" rx="2" ry="2" />
<text x="853.81" y="399.5" ></text>
</g>
<g >
<title>_$LT$rayon..iter..while_some..WhileSome$LT$I$GT$$u20$as$u20$rayon..iter..ParallelIterator$GT$::drive_unindexed::h5bb97cb6437a1950 (93 samples, 0.22%)</title><rect x="1167.4" y="453" width="2.6" height="15.0" fill="rgb(209,122,13)" rx="2" ry="2" />
<text x="1170.37" y="463.5" ></text>
</g>
<g >
<title>lru_add_drain (35 samples, 0.08%)</title><rect x="230.8" y="261" width="1.0" height="15.0" fill="rgb(245,34,51)" rx="2" ry="2" />
<text x="233.80" y="271.5" ></text>
</g>
<g >
<title>cranelift_codegen::legalizer::boundary::handle_call_abi::hfe91bd1ce81b1bda (31 samples, 0.07%)</title><rect x="17.7" y="325" width="0.9" height="15.0" fill="rgb(215,220,48)" rx="2" ry="2" />
<text x="20.73" y="335.5" ></text>
</g>
<g >
<title>__GI___libc_realloc (8 samples, 0.02%)</title><rect x="131.1" y="229" width="0.2" height="15.0" fill="rgb(213,61,19)" rx="2" ry="2" />
<text x="134.10" y="239.5" ></text>
</g>
<g >
<title>__rust_realloc (23 samples, 0.06%)</title><rect x="992.0" y="389" width="0.7" height="15.0" fill="rgb(233,225,23)" rx="2" ry="2" />
<text x="995.03" y="399.5" ></text>
</g>
<g >
<title>cranelift_codegen::ir::builder::InstBuilder::call_indirect::h1d38d2281f406238 (70 samples, 0.17%)</title><rect x="318.9" y="373" width="2.0" height="15.0" fill="rgb(218,72,2)" rx="2" ry="2" />
<text x="321.94" y="383.5" ></text>
</g>
<g >
<title>_int_malloc (9 samples, 0.02%)</title><rect x="79.0" y="197" width="0.2" height="15.0" fill="rgb(225,37,11)" rx="2" ry="2" />
<text x="81.99" y="207.5" ></text>
</g>
<g >
<title>wasmer_clif_fork_frontend::frontend::FunctionBuilder::create_ebb::hae9a6333ca79d10c (124 samples, 0.30%)</title><rect x="802.8" y="373" width="3.5" height="15.0" fill="rgb(212,18,36)" rx="2" ry="2" />
<text x="805.80" y="383.5" ></text>
</g>
<g >
<title>cranelift_codegen::context::Context::legalize::h3be573a3855dd690 (165 samples, 0.40%)</title><rect x="14.0" y="373" width="4.7" height="15.0" fill="rgb(230,44,7)" rx="2" ry="2" />
<text x="17.02" y="383.5" ></text>
</g>
<g >
<title>cranelift_codegen::ir::builder::InstBuilder::regmove::h2d2e8972aa228be7 (33 samples, 0.08%)</title><rect x="1171.6" y="357" width="1.0" height="15.0" fill="rgb(230,78,17)" rx="2" ry="2" />
<text x="1174.62" y="367.5" ></text>
</g>
<g >
<title>cranelift_codegen::topo_order::TopoOrder::next::h3ea49efe09e3a2f0 (8 samples, 0.02%)</title><rect x="57.1" y="341" width="0.3" height="15.0" fill="rgb(251,119,12)" rx="2" ry="2" />
<text x="60.12" y="351.5" ></text>
</g>
<g >
<title>std::sys::unix::time::inner::now::ha10452f37b2930c5 (7 samples, 0.02%)</title><rect x="107.4" y="245" width="0.2" height="15.0" fill="rgb(220,144,47)" rx="2" ry="2" />
<text x="110.44" y="255.5" ></text>
</g>
<g >
<title>cranelift_codegen::regalloc::virtregs::VirtRegs::finish_union_find::hfb24c09a580ec121 (52 samples, 0.13%)</title><rect x="128.6" y="261" width="1.5" height="15.0" fill="rgb(230,137,29)" rx="2" ry="2" />
<text x="131.59" y="271.5" ></text>
</g>
<g >
<title>__memset_avx2 (5 samples, 0.01%)</title><rect x="25.2" y="341" width="0.2" height="15.0" fill="rgb(232,226,35)" rx="2" ry="2" />
<text x="28.24" y="351.5" ></text>
</g>
<g >
<title>__GI___libc_free (5 samples, 0.01%)</title><rect x="72.9" y="277" width="0.1" height="15.0" fill="rgb(235,170,21)" rx="2" ry="2" />
<text x="75.88" y="287.5" ></text>
</g>
<g >
<title>__rust_alloc (7 samples, 0.02%)</title><rect x="1141.0" y="437" width="0.2" height="15.0" fill="rgb(225,19,42)" rx="2" ry="2" />
<text x="1143.97" y="447.5" ></text>
</g>
<g >
<title>__GI___libc_realloc (291 samples, 0.70%)</title><rect x="1040.2" y="405" width="8.3" height="15.0" fill="rgb(225,159,30)" rx="2" ry="2" />
<text x="1043.21" y="415.5" ></text>
</g>
<g >
<title>core::ptr::real_drop_in_place::h73e5f742715a1243 (19 samples, 0.05%)</title><rect x="181.4" y="373" width="0.5" height="15.0" fill="rgb(215,166,19)" rx="2" ry="2" />
<text x="184.36" y="383.5" ></text>
</g>
<g >
<title>_ZN16cranelift_entity4list17ListPool$LT$T$GT$4free17hccc32c4538eef572E.llvm.776987249141506950 (12 samples, 0.03%)</title><rect x="322.1" y="325" width="0.4" height="15.0" fill="rgb(223,155,27)" rx="2" ry="2" />
<text x="325.13" 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 (4,003 samples, 9.68%)</title><rect x="58.0" y="389" width="114.3" height="15.0" fill="rgb(214,183,29)" rx="2" ry="2" />
<text x="61.04" y="399.5" >_$LT$rayon..it..</text>
</g>
<g >
<title>alloc::raw_vec::RawVec$LT$T$C$A$GT$::reserve::hc8a0fc8526f8c69b (4 samples, 0.01%)</title><rect x="92.9" y="213" width="0.1" height="15.0" fill="rgb(229,209,12)" rx="2" ry="2" />
<text x="95.86" y="223.5" ></text>
</g>
<g >
<title>cranelift_codegen::ir::dfg::DataFlowGraph::append_inst_arg::h0a85602c512eb008 (8 samples, 0.02%)</title><rect x="90.5" y="229" width="0.2" height="15.0" fill="rgb(205,214,7)" rx="2" ry="2" />
<text x="93.46" y="239.5" ></text>
</g>
<g >
<title>cranelift_codegen::binemit::relaxation::relax_branches::hf8ed24268a55ae64 (127 samples, 0.31%)</title><rect x="22.8" y="357" width="3.7" height="15.0" fill="rgb(234,90,33)" rx="2" ry="2" />
<text x="25.84" y="367.5" ></text>
</g>
<g >
<title>__GI___libc_realloc (9 samples, 0.02%)</title><rect x="1177.8" y="341" width="0.2" height="15.0" fill="rgb(240,65,24)" rx="2" ry="2" />
<text x="1180.78" y="351.5" ></text>
</g>
<g >
<title>__GI___libc_malloc (11 samples, 0.03%)</title><rect x="13.7" y="325" width="0.3" height="15.0" fill="rgb(246,181,35)" rx="2" ry="2" />
<text x="16.71" y="335.5" ></text>
</g>
<g >
<title>_$LT$parity_wasm..elements..ops..Instructions$u20$as$u20$parity_wasm..elements..Serialize$GT$::serialize::h2a48be252ee90fa3 (3,904 samples, 9.44%)</title><rect x="892.4" y="437" width="111.4" height="15.0" fill="rgb(239,154,28)" rx="2" ry="2" />
<text x="895.40" y="447.5" >_$LT$parity_w..</text>
</g>
<g >
<title>_int_free (38 samples, 0.09%)</title><rect x="175.8" y="341" width="1.1" height="15.0" fill="rgb(214,47,6)" rx="2" ry="2" />
<text x="178.80" y="351.5" ></text>
</g>
<g >
<title>_int_free (11 samples, 0.03%)</title><rect x="181.6" y="341" width="0.3" height="15.0" fill="rgb(254,159,52)" rx="2" ry="2" />
<text x="184.59" y="351.5" ></text>
</g>
<g >
<title>cranelift_codegen::regalloc::liverange::GenericLiveRange$LT$PO$GT$::overlaps_def::h922ef41f94ddfc58 (11 samples, 0.03%)</title><rect x="128.3" y="261" width="0.3" height="15.0" fill="rgb(251,88,19)" rx="2" ry="2" />
<text x="131.28" y="271.5" ></text>
</g>
<g >
<title>khugepaged_enter_vma_merge (4 samples, 0.01%)</title><rect x="285.1" y="261" width="0.1" height="15.0" fill="rgb(250,124,0)" rx="2" ry="2" />
<text x="288.11" y="271.5" ></text>
</g>
<g >
<title>std::sys::unix::time::inner::now::ha10452f37b2930c5 (4 samples, 0.01%)</title><rect x="1160.6" y="277" width="0.1" height="15.0" fill="rgb(209,177,35)" rx="2" ry="2" />
<text x="1163.60" y="287.5" ></text>
</g>
<g >
<title>inherit_event.isra.98 (7 samples, 0.02%)</title><rect x="1180.3" y="389" width="0.2" height="15.0" fill="rgb(208,55,48)" rx="2" ry="2" />
<text x="1183.30" y="399.5" ></text>
</g>
<g >
<title>__GI___libc_realloc (12 samples, 0.03%)</title><rect x="44.2" y="309" width="0.3" height="15.0" fill="rgb(232,190,31)" rx="2" ry="2" />
<text x="47.16" y="319.5" ></text>
</g>
<g >
<title>_ZN17cranelift_codegen8regalloc9liverange26GenericLiveRange$LT$PO$GT$27lookup_entry_containing_ebb17h07adca6bc1ca0a2eE.llvm.6468024634034730254 (4 samples, 0.01%)</title><rect x="157.6" y="245" width="0.2" height="15.0" fill="rgb(254,82,8)" rx="2" ry="2" />
<text x="160.65" y="255.5" ></text>
</g>
<g >
<title>std::sys::unix::time::inner::now::ha10452f37b2930c5 (6 samples, 0.01%)</title><rect x="57.4" y="309" width="0.1" height="15.0" fill="rgb(216,165,5)" rx="2" ry="2" />
<text x="60.35" y="319.5" ></text>
</g>
<g >
<title>perf_iterate_sb (5 samples, 0.01%)</title><rect x="187.0" y="53" width="0.1" height="15.0" fill="rgb(225,193,53)" rx="2" ry="2" />
<text x="189.99" y="63.5" ></text>
</g>
<g >
<title>_$LT$cranelift_codegen..timing..details..TimingToken$u20$as$u20$core..ops..drop..Drop$GT$::drop::h1b19c2a93ee0a091 (7 samples, 0.02%)</title><rect x="115.7" y="261" width="0.2" height="15.0" fill="rgb(243,142,29)" rx="2" ry="2" />
<text x="118.72" y="271.5" ></text>
</g>
<g >
<title>__memcpy_avx_unaligned (424 samples, 1.03%)</title><rect x="780.0" y="373" width="12.1" height="15.0" fill="rgb(246,210,13)" rx="2" ry="2" />
<text x="783.03" y="383.5" ></text>
</g>
<g >
<title>_int_free (6 samples, 0.01%)</title><rect x="204.8" y="261" width="0.1" height="15.0" fill="rgb(240,226,29)" rx="2" ry="2" />
<text x="207.77" y="271.5" ></text>
</g>
<g >
<title>_int_malloc (5 samples, 0.01%)</title><rect x="805.9" y="309" width="0.2" height="15.0" fill="rgb(216,221,5)" rx="2" ry="2" />
<text x="808.94" y="319.5" ></text>
</g>
<g >
<title>_int_free (4 samples, 0.01%)</title><rect x="190.3" y="149" width="0.1" height="15.0" fill="rgb(222,46,31)" rx="2" ry="2" />
<text x="193.27" y="159.5" ></text>
</g>
<g >
<title>_$LT$alloc..collections..btree..map..BTreeMap$LT$K$C$V$GT$$u20$as$u20$core..ops..drop..Drop$GT$::drop::had2149cfb906d42f (7 samples, 0.02%)</title><rect x="63.3" y="309" width="0.2" height="15.0" fill="rgb(253,21,19)" rx="2" ry="2" />
<text x="66.32" y="319.5" ></text>
</g>
<g >
<title>cranelift_codegen::isa::x86::abi::prologue_epilogue::h9cb24b877f7c4837 (210 samples, 0.51%)</title><rect x="87.8" y="261" width="6.0" height="15.0" fill="rgb(234,120,35)" rx="2" ry="2" />
<text x="90.78" y="271.5" ></text>
</g>
<g >
<title>[[vdso]] (5 samples, 0.01%)</title><rect x="1166.1" y="229" width="0.1" height="15.0" fill="rgb(215,15,6)" rx="2" ry="2" />
<text x="1169.05" y="239.5" ></text>
</g>
<g >
<title>__GI___libc_realloc (4 samples, 0.01%)</title><rect x="67.7" y="245" width="0.1" height="15.0" fill="rgb(249,110,49)" rx="2" ry="2" />
<text x="70.65" y="255.5" ></text>
</g>
<g >
<title>cranelift_codegen::regalloc::live_value_tracker::LiveValueTracker::ebb_top::hfe56a550654953ca (40 samples, 0.10%)</title><rect x="157.2" y="261" width="1.1" height="15.0" fill="rgb(222,207,33)" rx="2" ry="2" />
<text x="160.16" y="271.5" ></text>
</g>
<g >
<title>hashbrown::raw::RawTable$LT$T$GT$::insert::h4b9ffbaeed2622ad (4 samples, 0.01%)</title><rect x="325.4" y="357" width="0.1" height="15.0" fill="rgb(247,170,0)" rx="2" ry="2" />
<text x="328.39" y="367.5" ></text>
</g>
<g >
<title>std::sync::rwlock::RwLock$LT$T$GT$::read::h77a932a23fb2e9de (1,000 samples, 2.42%)</title><rect x="821.1" y="389" width="28.5" height="15.0" fill="rgb(218,58,1)" rx="2" ry="2" />
<text x="824.10" y="399.5" >st..</text>
</g>
<g >
<title>cranelift_codegen::flowgraph::ControlFlowGraph::compute::hdce42828fa3e59cb (6 samples, 0.01%)</title><rect x="318.1" y="341" width="0.2" height="15.0" fill="rgb(216,26,20)" rx="2" ry="2" />
<text x="321.08" y="351.5" ></text>
</g>
<g >
<title>__rdl_dealloc (8 samples, 0.02%)</title><rect x="730.4" y="389" width="0.2" height="15.0" fill="rgb(212,145,24)" rx="2" ry="2" />
<text x="733.39" y="399.5" ></text>
</g>
<g >
<title>page_counter_cancel (5 samples, 0.01%)</title><rect x="239.0" y="165" width="0.1" height="15.0" fill="rgb(247,226,41)" rx="2" ry="2" />
<text x="241.96" y="175.5" ></text>
</g>
<g >
<title>__GI___libc_malloc (11 samples, 0.03%)</title><rect x="299.7" y="357" width="0.3" height="15.0" fill="rgb(248,104,47)" rx="2" ry="2" />
<text x="302.70" y="367.5" ></text>
</g>
<g >
<title>std::time::Instant::elapsed::h8e307314b2acf9be (7 samples, 0.02%)</title><rect x="51.6" y="325" width="0.2" height="15.0" fill="rgb(244,193,47)" rx="2" ry="2" />
<text x="54.64" y="335.5" ></text>
</g>
<g >
<title>_raw_spin_lock (4 samples, 0.01%)</title><rect x="278.7" y="293" width="0.2" height="15.0" fill="rgb(242,188,8)" rx="2" ry="2" />
<text x="281.75" y="303.5" ></text>
</g>
<g >
<title>__GI___libc_malloc (4 samples, 0.01%)</title><rect x="321.9" y="309" width="0.1" height="15.0" fill="rgb(207,56,14)" rx="2" ry="2" />
<text x="324.88" y="319.5" ></text>
</g>
<g >
<title>std::sys::unix::time::inner::now::ha10452f37b2930c5 (8 samples, 0.02%)</title><rect x="152.2" y="229" width="0.2" height="15.0" fill="rgb(241,18,9)" rx="2" ry="2" />
<text x="155.17" y="239.5" ></text>
</g>
<g >
<title>__GI___clock_gettime (4 samples, 0.01%)</title><rect x="48.1" y="261" width="0.1" height="15.0" fill="rgb(221,79,22)" rx="2" ry="2" />
<text x="51.07" y="271.5" ></text>
</g>
<g >
<title>wasmparser::readers::module::ModuleReader::read::h9a86df7daf36f14d (22 samples, 0.05%)</title><rect x="813.3" y="341" width="0.6" height="15.0" fill="rgb(233,129,36)" rx="2" ry="2" />
<text x="816.31" y="351.5" ></text>
</g>
<g >
<title>_$LT$cranelift_codegen_shared..isa..x86..encoding_bits..EncodingBits$u20$as$u20$core..convert..From$LT$u16$GT$$GT$::from::h5bd2bad42e50bf3a (4 samples, 0.01%)</title><rect x="316.8" y="325" width="0.1" height="15.0" fill="rgb(234,18,8)" rx="2" ry="2" />
<text x="319.82" y="335.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (4 samples, 0.01%)</title><rect x="184.5" y="293" width="0.1" height="15.0" fill="rgb(219,174,6)" rx="2" ry="2" />
<text x="187.50" y="303.5" ></text>
</g>
<g >
<title>__GI___libc_malloc (62 samples, 0.15%)</title><rect x="870.5" y="421" width="1.8" height="15.0" fill="rgb(245,158,13)" rx="2" ry="2" />
<text x="873.50" y="431.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 (34 samples, 0.08%)</title><rect x="849.8" y="373" width="0.9" height="15.0" fill="rgb(218,214,32)" rx="2" ry="2" />
<text x="852.75" y="383.5" ></text>
</g>
<g >
<title>anon_vma_clone (13 samples, 0.03%)</title><rect x="228.8" y="261" width="0.4" height="15.0" fill="rgb(218,178,41)" rx="2" ry="2" />
<text x="231.80" y="271.5" ></text>
</g>
<g >
<title>__GI___libc_realloc (8 samples, 0.02%)</title><rect x="37.9" y="341" width="0.3" height="15.0" fill="rgb(246,151,51)" rx="2" ry="2" />
<text x="40.94" y="351.5" ></text>
</g>
<g >
<title>std::time::Instant::elapsed::h8e307314b2acf9be (8 samples, 0.02%)</title><rect x="1161.9" y="325" width="0.2" height="15.0" fill="rgb(207,119,23)" rx="2" ry="2" />
<text x="1164.91" y="335.5" ></text>
</g>
<g >
<title>_$LT$parity_wasm..elements..ops..Instructions$u20$as$u20$parity_wasm..elements..Serialize$GT$::serialize::h2a48be252ee90fa3 (96 samples, 0.23%)</title><rect x="199.5" y="277" width="2.7" height="15.0" fill="rgb(254,69,4)" rx="2" ry="2" />
<text x="202.46" y="287.5" ></text>
</g>
<g >
<title>__vdso_clock_gettime (5 samples, 0.01%)</title><rect x="1162.0" y="245" width="0.1" height="15.0" fill="rgb(228,112,45)" rx="2" ry="2" />
<text x="1165.00" y="255.5" ></text>
</g>
<g >
<title>__rdl_alloc (12 samples, 0.03%)</title><rect x="691.5" y="341" width="0.3" height="15.0" fill="rgb(232,127,27)" rx="2" ry="2" />
<text x="694.49" y="351.5" ></text>
</g>
<g >
<title>unmap_vmas (7 samples, 0.02%)</title><rect x="240.2" y="293" width="0.2" height="15.0" fill="rgb(252,49,25)" rx="2" ry="2" />
<text x="243.16" y="303.5" ></text>
</g>
<g >
<title>std::sys::unix::time::inner::Instant::now::h23f1bea5949f1bbd (6 samples, 0.01%)</title><rect x="131.5" y="245" width="0.2" height="15.0" fill="rgb(246,78,34)" rx="2" ry="2" />
<text x="134.50" y="255.5" ></text>
</g>
<g >
<title>cranelift_codegen::regalloc::solver::Solver::schedule_moves::h81b194ab48ac25d3 (17 samples, 0.04%)</title><rect x="1177.8" y="373" width="0.5" height="15.0" fill="rgb(250,119,36)" rx="2" ry="2" />
<text x="1180.78" y="383.5" ></text>
</g>
<g >
<title>core::ptr::real_drop_in_place::h4e692177cbad22c9 (15 samples, 0.04%)</title><rect x="820.0" y="389" width="0.4" height="15.0" fill="rgb(229,127,38)" rx="2" ry="2" />
<text x="822.99" y="399.5" ></text>
</g>
<g >
<title>cranelift_codegen::ir::dfg::DataFlowGraph::make_inst_results_reusing::h668204b844797576 (12 samples, 0.03%)</title><rect x="53.5" y="309" width="0.3" height="15.0" fill="rgb(246,83,48)" rx="2" ry="2" />
<text x="56.47" y="319.5" ></text>
</g>
<g >
<title>alloc::raw_vec::RawVec$LT$T$C$A$GT$::reserve::h5bb4661d248be310 (699 samples, 1.69%)</title><rect x="1029.4" y="421" width="20.0" height="15.0" fill="rgb(225,225,54)" rx="2" ry="2" />
<text x="1032.42" y="431.5" ></text>
</g>
<g >
<title>__memset_avx2 (44 samples, 0.11%)</title><rect x="652.2" y="325" width="1.2" height="15.0" fill="rgb(205,63,35)" rx="2" ry="2" />
<text x="655.16" y="335.5" ></text>
</g>
<g >
<title>cranelift_codegen::redundant_reload_remover::RedundantReloadRemover::processing_stack_maybe_push::h68b38d091c29c7ca (12 samples, 0.03%)</title><rect x="13.7" y="357" width="0.3" height="15.0" fill="rgb(222,1,3)" rx="2" ry="2" />
<text x="16.68" y="367.5" ></text>
</g>
<g >
<title>__GI___libc_malloc (350 samples, 0.85%)</title><rect x="661.6" y="341" width="9.9" height="15.0" fill="rgb(209,104,36)" rx="2" ry="2" />
<text x="664.55" y="351.5" ></text>
</g>
<g >
<title>alloc::raw_vec::RawVec$LT$T$C$A$GT$::reserve::h500ef385b8747b29 (4 samples, 0.01%)</title><rect x="850.0" y="309" width="0.1" height="15.0" fill="rgb(228,193,24)" rx="2" ry="2" />
<text x="852.98" y="319.5" ></text>
</g>
<g >
<title>__munmap (150 samples, 0.36%)</title><rect x="236.2" y="405" width="4.2" height="15.0" fill="rgb(242,49,8)" rx="2" ry="2" />
<text x="239.16" y="415.5" ></text>
</g>
<g >
<title>__GI___libc_realloc (9 samples, 0.02%)</title><rect x="1168.4" y="245" width="0.3" height="15.0" fill="rgb(237,207,14)" rx="2" ry="2" />
<text x="1171.42" y="255.5" ></text>
</g>
<g >
<title>alloc::raw_vec::RawVec$LT$T$C$A$GT$::reserve::h52417e3a50e4e754 (16 samples, 0.04%)</title><rect x="320.4" y="325" width="0.4" height="15.0" fill="rgb(229,163,44)" rx="2" ry="2" />
<text x="323.39" y="335.5" ></text>
</g>
<g >
<title>cranelift_codegen::regalloc::coloring::Context::program_input_abi::h34ced53bbc43d7b1 (14 samples, 0.03%)</title><rect x="1177.4" y="373" width="0.4" height="15.0" fill="rgb(212,20,2)" rx="2" ry="2" />
<text x="1180.38" y="383.5" ></text>
</g>
<g >
<title>std::sys::unix::time::inner::Instant::now::h23f1bea5949f1bbd (6 samples, 0.01%)</title><rect x="1166.8" y="325" width="0.1" height="15.0" fill="rgb(254,226,27)" rx="2" ry="2" />
<text x="1169.77" y="335.5" ></text>
</g>
<g >
<title>__rdl_realloc (101 samples, 0.24%)</title><rect x="989.2" y="389" width="2.8" height="15.0" fill="rgb(208,34,7)" rx="2" ry="2" />
<text x="992.15" y="399.5" ></text>
</g>
<g >
<title>std::sys::unix::alloc::_$LT$impl$u20$core..alloc..GlobalAlloc$u20$for$u20$std..alloc..System$GT$::alloc::h33585d4e6aad0166 (5 samples, 0.01%)</title><rect x="1048.6" y="389" width="0.2" height="15.0" fill="rgb(249,63,15)" rx="2" ry="2" />
<text x="1051.63" y="399.5" ></text>
</g>
<g >
<title>page_counter_cancel (5 samples, 0.01%)</title><rect x="233.0" y="149" width="0.1" height="15.0" fill="rgb(212,22,17)" rx="2" ry="2" />
<text x="235.97" y="159.5" ></text>
</g>
<g >
<title>_int_malloc (12 samples, 0.03%)</title><rect x="696.0" y="325" width="0.3" height="15.0" fill="rgb(238,193,17)" rx="2" ry="2" />
<text x="699.00" y="335.5" ></text>
</g>
<g >
<title>cranelift_codegen::ir::layout::Layout::remove_inst::h17e123ecaa4a07c6 (4 samples, 0.01%)</title><rect x="107.3" y="277" width="0.1" height="15.0" fill="rgb(213,29,7)" rx="2" ry="2" />
<text x="110.33" y="287.5" ></text>
</g>
<g >
<title>std::sys::unix::time::inner::Instant::now::h23f1bea5949f1bbd (6 samples, 0.01%)</title><rect x="171.1" y="229" width="0.2" height="15.0" fill="rgb(246,76,8)" rx="2" ry="2" />
<text x="174.12" y="239.5" ></text>
</g>
<g >
<title>wasmer_runtime_core::instance::DynFunc::call::hd3653a4c23d70200 (482 samples, 1.17%)</title><rect x="855.4" y="453" width="13.8" height="15.0" fill="rgb(205,166,30)" rx="2" ry="2" />
<text x="858.43" y="463.5" ></text>
</g>
<g >
<title>cranelift_codegen::dominator_tree::DominatorTree::compute_idom::haefe97f2edc1fd51 (9 samples, 0.02%)</title><rect x="115.9" y="261" width="0.3" height="15.0" fill="rgb(206,123,4)" rx="2" ry="2" />
<text x="118.92" y="271.5" ></text>
</g>
<g >
<title>local_clock (6 samples, 0.01%)</title><rect x="295.3" y="149" width="0.1" height="15.0" fill="rgb(220,144,20)" rx="2" ry="2" />
<text x="298.27" y="159.5" ></text>
</g>
<g >
<title>std::time::Instant::now::h33d2ba6042def2d2 (9 samples, 0.02%)</title><rect x="1157.5" y="325" width="0.2" height="15.0" fill="rgb(247,215,48)" rx="2" ry="2" />
<text x="1160.46" y="335.5" ></text>
</g>
<g >
<title>std::sync::rwlock::RwLock$LT$T$GT$::read::h77a932a23fb2e9de (34 samples, 0.08%)</title><rect x="197.3" y="229" width="1.0" height="15.0" fill="rgb(225,145,23)" rx="2" ry="2" />
<text x="200.35" y="239.5" ></text>
</g>
<g >
<title>_int_malloc (166 samples, 0.40%)</title><rect x="1093.8" y="389" width="4.8" height="15.0" fill="rgb(233,114,50)" rx="2" ry="2" />
<text x="1096.84" y="399.5" ></text>
</g>
<g >
<title>cranelift_codegen::binemit::shrink::shrink_instructions::h2efbaf74a574d406 (347 samples, 0.84%)</title><rect x="26.5" y="357" width="9.9" height="15.0" fill="rgb(205,214,9)" rx="2" ry="2" />
<text x="29.47" y="367.5" ></text>
</g>
<g >
<title>_$LT$wasmer_clif_backend..signal..Caller$u20$as$u20$wasmer_runtime_core..backend..RunnableModule$GT$::get_func::hbdb643ef237f3ef3 (6 samples, 0.01%)</title><rect x="856.5" y="421" width="0.2" height="15.0" fill="rgb(221,120,24)" rx="2" ry="2" />
<text x="859.55" y="431.5" ></text>
</g>
<g >
<title>wasmer_runtime_core::instance::Instance::new::h767b5a62d9ac8288 (233 samples, 0.56%)</title><rect x="870.2" y="437" width="6.7" height="15.0" fill="rgb(219,19,19)" rx="2" ry="2" />
<text x="873.22" y="447.5" ></text>
</g>
<g >
<title>perf_event_mmap (150 samples, 0.36%)</title><rect x="264.7" y="261" width="4.3" height="15.0" fill="rgb(235,3,17)" rx="2" ry="2" />
<text x="267.68" y="271.5" ></text>
</g>
<g >
<title>page_add_new_anon_rmap (6 samples, 0.01%)</title><rect x="305.9" y="277" width="0.2" height="15.0" fill="rgb(243,153,48)" rx="2" ry="2" />
<text x="308.95" y="287.5" ></text>
</g>
<g >
<title>get_unmapped_area (25 samples, 0.06%)</title><rect x="291.2" y="245" width="0.7" height="15.0" fill="rgb(238,12,45)" rx="2" ry="2" />
<text x="294.19" y="255.5" ></text>
</g>
<g >
<title>wasmer_clif_backend::resolver::FuncResolverBuilder::new::h17aa56962b53b260 (966 samples, 2.34%)</title><rect x="269.7" y="389" width="27.6" height="15.0" fill="rgb(213,220,5)" rx="2" ry="2" />
<text x="272.70" y="399.5" >w..</text>
</g>
<g >
<title>flush_tlb_mm_range (30 samples, 0.07%)</title><rect x="263.8" y="229" width="0.8" height="15.0" fill="rgb(230,26,29)" rx="2" ry="2" />
<text x="266.79" y="239.5" ></text>
</g>
<g >
<title>alloc::raw_vec::RawVec$LT$T$C$A$GT$::reserve::he459267326f26ce0 (4 samples, 0.01%)</title><rect x="1167.5" y="149" width="0.1" height="15.0" fill="rgb(242,101,40)" rx="2" ry="2" />
<text x="1170.48" y="159.5" ></text>
</g>
<g >
<title>std::sys::unix::time::inner::now::ha10452f37b2930c5 (5 samples, 0.01%)</title><rect x="1171.2" y="325" width="0.1" height="15.0" fill="rgb(207,16,43)" rx="2" ry="2" />
<text x="1174.19" y="335.5" ></text>
</g>
<g >
<title>_$LT$cranelift_codegen..timing..details..TimingToken$u20$as$u20$core..ops..drop..Drop$GT$::drop::h1b19c2a93ee0a091 (6 samples, 0.01%)</title><rect x="1160.5" y="341" width="0.2" height="15.0" fill="rgb(253,208,9)" rx="2" ry="2" />
<text x="1163.54" y="351.5" ></text>
</g>
<g >
<title>__GI___libc_malloc (8 samples, 0.02%)</title><rect x="159.6" y="197" width="0.2" height="15.0" fill="rgb(207,206,30)" rx="2" ry="2" />
<text x="162.56" y="207.5" ></text>
</g>
<g >
<title>cranelift_bforest::pool::NodePool$LT$F$GT$::alloc_node::h962928eb17e6ebe3 (4 samples, 0.01%)</title><rect x="1167.5" y="165" width="0.1" height="15.0" fill="rgb(228,172,28)" rx="2" ry="2" />
<text x="1170.48" y="175.5" ></text>
</g>
<g >
<title>_$LT$rocinante..exec..wasmer..Wasmer$u20$as$u20$rocinante..exec..Interpreter$GT$::eval_test_cases::hf136840e36843cad (496 samples, 1.20%)</title><rect x="184.9" y="309" width="14.2" height="15.0" fill="rgb(229,169,3)" rx="2" ry="2" />
<text x="187.93" y="319.5" ></text>
</g>
<g >
<title>std::sys::unix::time::inner::Instant::now::h23f1bea5949f1bbd (11 samples, 0.03%)</title><rect x="171.9" y="293" width="0.3" height="15.0" fill="rgb(213,171,29)" rx="2" ry="2" />
<text x="174.92" y="303.5" ></text>
</g>
<g >
<title>cranelift_codegen::regalloc::coalescing::Coalescing::conventional_ssa::h25e21334b716fc0d (14 samples, 0.03%)</title><rect x="1176.4" y="389" width="0.4" height="15.0" fill="rgb(236,150,2)" rx="2" ry="2" />
<text x="1179.39" y="399.5" ></text>
</g>
<g >
<title>_int_free (12 samples, 0.03%)</title><rect x="300.4" y="357" width="0.4" height="15.0" fill="rgb(245,93,3)" rx="2" ry="2" />
<text x="303.44" y="367.5" ></text>
</g>
<g >
<title>__GI___libc_free (15 samples, 0.04%)</title><rect x="163.4" y="277" width="0.4" height="15.0" fill="rgb(244,99,42)" rx="2" ry="2" />
<text x="166.41" y="287.5" ></text>
</g>
<g >
<title>do_divide_error (36 samples, 0.09%)</title><rect x="11.7" y="485" width="1.1" height="15.0" fill="rgb(235,145,11)" rx="2" ry="2" />
<text x="14.74" y="495.5" ></text>
</g>
<g >
<title>_$LT$cranelift_codegen..timing..details..TimingToken$u20$as$u20$core..ops..drop..Drop$GT$::drop::h1b19c2a93ee0a091 (8 samples, 0.02%)</title><rect x="1154.0" y="325" width="0.2" height="15.0" fill="rgb(235,9,16)" rx="2" ry="2" />
<text x="1156.98" y="335.5" ></text>
</g>
<g >
<title>_int_realloc (5 samples, 0.01%)</title><rect x="324.0" y="325" width="0.2" height="15.0" fill="rgb(211,218,19)" rx="2" ry="2" />
<text x="327.02" y="335.5" ></text>
</g>
<g >
<title>__rust_dealloc (5 samples, 0.01%)</title><rect x="225.4" y="453" width="0.1" height="15.0" fill="rgb(209,153,45)" rx="2" ry="2" />
<text x="228.38" y="463.5" ></text>
</g>
<g >
<title>cranelift_entity::list::EntityList$LT$T$GT$::push::h051541d55e7ee057 (6 samples, 0.01%)</title><rect x="20.7" y="293" width="0.1" height="15.0" fill="rgb(253,163,29)" rx="2" ry="2" />
<text x="23.67" y="303.5" ></text>
</g>
<g >
<title>__GI___libc_realloc (7 samples, 0.02%)</title><rect x="111.3" y="245" width="0.2" height="15.0" fill="rgb(239,173,47)" rx="2" ry="2" />
<text x="114.27" y="255.5" ></text>
</g>
<g >
<title>__GI___libc_free (17 samples, 0.04%)</title><rect x="196.3" y="213" width="0.5" height="15.0" fill="rgb(245,35,31)" rx="2" ry="2" />
<text x="199.35" y="223.5" ></text>
</g>
<g >
<title>__vma_rb_erase (8 samples, 0.02%)</title><rect x="236.8" y="309" width="0.3" height="15.0" fill="rgb(206,51,32)" rx="2" ry="2" />
<text x="239.85" y="319.5" ></text>
</g>
<g >
<title>_int_malloc (7 samples, 0.02%)</title><rect x="16.7" y="229" width="0.2" height="15.0" fill="rgb(239,76,29)" rx="2" ry="2" />
<text x="19.74" y="239.5" ></text>
</g>
<g >
<title>__GI___libc_free (29 samples, 0.07%)</title><rect x="308.6" y="325" width="0.9" height="15.0" fill="rgb(235,14,19)" rx="2" ry="2" />
<text x="311.63" y="335.5" ></text>
</g>
<g >
<title>wasmer_clif_fork_frontend::frontend::FunctionBuilder::switch_to_block::h5fa766542d12c12c (4 samples, 0.01%)</title><rect x="807.8" y="373" width="0.1" height="15.0" fill="rgb(208,100,19)" rx="2" ry="2" />
<text x="810.77" y="383.5" ></text>
</g>
<g >
<title>__rdl_dealloc (4 samples, 0.01%)</title><rect x="176.9" y="357" width="0.1" height="15.0" fill="rgb(238,54,33)" rx="2" ry="2" />
<text x="179.88" y="367.5" ></text>
</g>
<g >
<title>cranelift_codegen::regalloc::spilling::Spilling::run::hbc5ba3177617b881 (25 samples, 0.06%)</title><rect x="1179.3" y="389" width="0.7" height="15.0" fill="rgb(248,182,53)" rx="2" ry="2" />
<text x="1182.33" y="399.5" ></text>
</g>
<g >
<title>cranelift_codegen::regalloc::coloring::Context::program_input_abi::h34ced53bbc43d7b1 (28 samples, 0.07%)</title><rect x="138.8" y="261" width="0.8" height="15.0" fill="rgb(253,189,39)" rx="2" ry="2" />
<text x="141.84" y="271.5" ></text>
</g>
<g >
<title>cranelift_codegen::regalloc::virtregs::VirtRegs::finish_union_find::hfb24c09a580ec121 (8 samples, 0.02%)</title><rect x="1168.9" y="277" width="0.2" height="15.0" fill="rgb(253,148,21)" rx="2" ry="2" />
<text x="1171.91" y="287.5" ></text>
</g>
<g >
<title>__memset_avx2 (187 samples, 0.45%)</title><rect x="273.8" y="373" width="5.3" height="15.0" fill="rgb(221,174,53)" rx="2" ry="2" />
<text x="276.75" y="383.5" ></text>
</g>
<g >
<title>__memcpy_avx_unaligned (31 samples, 0.07%)</title><rect x="251.5" y="389" width="0.9" height="15.0" fill="rgb(245,142,40)" rx="2" ry="2" />
<text x="254.55" y="399.5" ></text>
</g>
<g >
<title>cranelift_codegen::regalloc::context::Context::run::hacf4bbc8f4d0071a (46 samples, 0.11%)</title><rect x="1162.4" y="357" width="1.3" height="15.0" fill="rgb(210,79,13)" rx="2" ry="2" />
<text x="1165.40" y="367.5" ></text>
</g>
<g >
<title>__GI___clock_gettime (5 samples, 0.01%)</title><rect x="117.1" y="229" width="0.2" height="15.0" fill="rgb(214,118,19)" rx="2" ry="2" />
<text x="120.15" y="239.5" ></text>
</g>
<g >
<title>__GI___libc_malloc (6 samples, 0.01%)</title><rect x="124.7" y="229" width="0.2" height="15.0" fill="rgb(245,94,30)" rx="2" ry="2" />
<text x="127.68" y="239.5" ></text>
</g>
<g >
<title>wasmer_runtime_core::compile_with_config::h2793fe8de72c0bc3 (439 samples, 1.06%)</title><rect x="185.9" y="277" width="12.5" height="15.0" fill="rgb(234,40,14)" rx="2" ry="2" />
<text x="188.90" y="287.5" ></text>
</g>
<g >
<title>__GI___libc_free (15 samples, 0.04%)</title><rect x="180.1" y="325" width="0.5" height="15.0" fill="rgb(254,178,5)" rx="2" ry="2" />
<text x="183.14" y="335.5" ></text>
</g>
<g >
<title>vm_munmap (282 samples, 0.68%)</title><rect x="228.0" y="309" width="8.1" height="15.0" fill="rgb(225,127,47)" rx="2" ry="2" />
<text x="231.00" y="319.5" ></text>
</g>
<g >
<title>__GI___libc_realloc (5 samples, 0.01%)</title><rect x="1169.2" y="213" width="0.1" height="15.0" fill="rgb(228,202,51)" rx="2" ry="2" />
<text x="1172.16" y="223.5" ></text>
</g>
<g >
<title>__GI___libc_malloc (308 samples, 0.74%)</title><rect x="597.8" y="357" width="8.8" height="15.0" fill="rgb(238,61,2)" rx="2" ry="2" />
<text x="600.82" y="367.5" ></text>
</g>
<g >
<title>__GI___clock_gettime (4 samples, 0.01%)</title><rect x="163.0" y="197" width="0.1" height="15.0" fill="rgb(226,96,5)" rx="2" ry="2" />
<text x="165.98" y="207.5" ></text>
</g>
<g >
<title>wasmparser::binary_reader::BinaryReader::read_type::h8a44a0e8de646649 (103 samples, 0.25%)</title><rect x="480.4" y="341" width="3.0" height="15.0" fill="rgb(207,27,47)" rx="2" ry="2" />
<text x="483.42" y="351.5" ></text>
</g>
<g >
<title>_int_free (233 samples, 0.56%)</title><rect x="218.6" y="437" width="6.7" height="15.0" fill="rgb(225,147,22)" rx="2" ry="2" />
<text x="221.64" y="447.5" ></text>
</g>
<g >
<title>_$LT$alloc..vec..Vec$LT$T$GT$$u20$as$u20$core..clone..Clone$GT$::clone::h3d606723029a591c (4 samples, 0.01%)</title><rect x="60.1" y="309" width="0.1" height="15.0" fill="rgb(242,150,7)" rx="2" ry="2" />
<text x="63.09" y="319.5" ></text>
</g>
<g >
<title>_int_realloc (4 samples, 0.01%)</title><rect x="1177.7" y="293" width="0.1" height="15.0" fill="rgb(205,127,22)" rx="2" ry="2" />
<text x="1180.67" y="303.5" ></text>
</g>
<g >
<title>__GI___libc_malloc (11 samples, 0.03%)</title><rect x="72.5" y="213" width="0.3" height="15.0" fill="rgb(233,154,33)" rx="2" ry="2" />
<text x="75.51" y="223.5" ></text>
</g>
<g >
<title>cranelift_codegen::ir::layout::Layout::assign_inst_seq::h59be385ae82e3a19 (5 samples, 0.01%)</title><rect x="92.4" y="197" width="0.1" height="15.0" fill="rgb(211,156,24)" rx="2" ry="2" />
<text x="95.37" y="207.5" ></text>
</g>
<g >
<title>perf_event_mmap_output (34 samples, 0.08%)</title><rect x="339.5" y="213" width="1.0" height="15.0" fill="rgb(210,139,20)" rx="2" ry="2" />
<text x="342.51" y="223.5" ></text>
</g>
<g >
<title>cranelift_codegen::binemit::relaxation::try_fold_redundant_jump::h7d3fd9ec5a386d74 (13 samples, 0.03%)</title><rect x="97.3" y="261" width="0.3" height="15.0" fill="rgb(229,175,30)" rx="2" ry="2" />
<text x="100.25" y="271.5" ></text>
</g>
<g >
<title>cranelift_codegen::isa::x86::abi::prologue_epilogue::h9cb24b877f7c4837 (71 samples, 0.17%)</title><rect x="1155.4" y="325" width="2.1" height="15.0" fill="rgb(222,22,6)" rx="2" ry="2" />
<text x="1158.44" y="335.5" ></text>
</g>
<g >
<title>__rust_realloc (6 samples, 0.01%)</title><rect x="1099.2" y="421" width="0.1" height="15.0" fill="rgb(224,41,39)" rx="2" ry="2" />
<text x="1102.15" y="431.5" ></text>
</g>
<g >
<title>__GI___libc_free (8 samples, 0.02%)</title><rect x="243.1" y="421" width="0.3" height="15.0" fill="rgb(241,39,51)" rx="2" ry="2" />
<text x="246.13" y="431.5" ></text>
</g>
<g >
<title>do_signal (26 samples, 0.06%)</title><rect x="12.8" y="453" width="0.7" height="15.0" fill="rgb(253,181,21)" rx="2" ry="2" />
<text x="15.80" y="463.5" ></text>
</g>
<g >
<title>_$LT$alloc..boxed..Box$LT$F$GT$$u20$as$u20$core..ops..function..FnOnce$LT$A$GT$$GT$::call_once::h3534c64212330b0c (47 samples, 0.11%)</title><rect x="183.3" y="421" width="1.3" height="15.0" fill="rgb(230,227,16)" rx="2" ry="2" />
<text x="186.28" y="431.5" ></text>
</g>
<g >
<title>__memcmp_sse4_1 (8 samples, 0.02%)</title><rect x="326.3" y="309" width="0.2" height="15.0" fill="rgb(213,107,2)" rx="2" ry="2" />
<text x="329.27" y="319.5" ></text>
</g>
<g >
<title>_$LT$cranelift_codegen..timing..details..TimingToken$u20$as$u20$core..ops..drop..Drop$GT$::drop::h1b19c2a93ee0a091 (4 samples, 0.01%)</title><rect x="1176.4" y="373" width="0.1" height="15.0" fill="rgb(237,113,31)" rx="2" ry="2" />
<text x="1179.39" y="383.5" ></text>
</g>
<g >
<title>std::sys::unix::time::inner::now::ha10452f37b2930c5 (4 samples, 0.01%)</title><rect x="48.1" y="277" width="0.1" height="15.0" fill="rgb(209,135,0)" rx="2" ry="2" />
<text x="51.07" y="287.5" ></text>
</g>
<g >
<title>_int_malloc (7 samples, 0.02%)</title><rect x="21.7" y="261" width="0.2" height="15.0" fill="rgb(216,180,13)" rx="2" ry="2" />
<text x="24.70" y="271.5" ></text>
</g>
<g >
<title>alloc::vec::Vec$LT$T$GT$::retain::h44e70c6a80d771f1 (4 samples, 0.01%)</title><rect x="122.9" y="277" width="0.1" height="15.0" fill="rgb(223,67,14)" rx="2" ry="2" />
<text x="125.88" y="287.5" ></text>
</g>
<g >
<title>cranelift_codegen::context::Context::new::hb2c1be51d6979949 (6 samples, 0.01%)</title><rect x="57.9" y="405" width="0.1" height="15.0" fill="rgb(223,95,30)" rx="2" ry="2" />
<text x="60.86" y="415.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 (4 samples, 0.01%)</title><rect x="794.5" y="389" width="0.1" height="15.0" fill="rgb(208,188,10)" rx="2" ry="2" />
<text x="797.50" y="399.5" ></text>
</g>
<g >
<title>__GI___clock_gettime (7 samples, 0.02%)</title><rect x="36.2" y="293" width="0.2" height="15.0" fill="rgb(235,15,42)" rx="2" ry="2" />
<text x="39.17" y="303.5" ></text>
</g>
<g >
<title>_int_free (4 samples, 0.01%)</title><rect x="24.9" y="277" width="0.1" height="15.0" fill="rgb(240,45,13)" rx="2" ry="2" />
<text x="27.87" y="287.5" ></text>
</g>
<g >
<title>_int_malloc (5 samples, 0.01%)</title><rect x="1171.5" y="277" width="0.1" height="15.0" fill="rgb(233,43,10)" rx="2" ry="2" />
<text x="1174.48" y="287.5" ></text>
</g>
<g >
<title>cranelift_codegen::regalloc::solver::Solver::reassign_in::h4635b38f4d433603 (14 samples, 0.03%)</title><rect x="1177.4" y="357" width="0.4" height="15.0" fill="rgb(245,122,14)" rx="2" ry="2" />
<text x="1180.38" y="367.5" ></text>
</g>
<g >
<title>free_pgtables (5 samples, 0.01%)</title><rect x="229.6" y="277" width="0.1" height="15.0" fill="rgb(242,146,40)" rx="2" ry="2" />
<text x="232.57" y="287.5" ></text>
</g>
<g >
<title>__GI___libc_malloc (4 samples, 0.01%)</title><rect x="1152.2" y="277" width="0.2" height="15.0" fill="rgb(252,63,45)" rx="2" ry="2" />
<text x="1155.24" y="287.5" ></text>
</g>
<g >
<title>__vdso_clock_gettime (4 samples, 0.01%)</title><rect x="54.3" y="277" width="0.1" height="15.0" fill="rgb(231,198,41)" rx="2" ry="2" />
<text x="57.27" y="287.5" ></text>
</g>
<g >
<title>mprotect_fixup (449 samples, 1.09%)</title><rect x="330.6" y="277" width="12.9" height="15.0" fill="rgb(252,83,13)" rx="2" ry="2" />
<text x="333.64" y="287.5" ></text>
</g>
<g >
<title>std::sys::unix::time::inner::Instant::now::h23f1bea5949f1bbd (15 samples, 0.04%)</title><rect x="171.5" y="277" width="0.4" height="15.0" fill="rgb(240,9,17)" rx="2" ry="2" />
<text x="174.49" y="287.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (316 samples, 0.76%)</title><rect x="1181.0" y="469" width="9.0" height="15.0" fill="rgb(247,167,20)" rx="2" ry="2" />
<text x="1183.98" y="479.5" ></text>
</g>
<g >
<title>get_mem_cgroup_from_mm (4 samples, 0.01%)</title><rect x="346.4" y="197" width="0.2" height="15.0" fill="rgb(221,59,18)" rx="2" ry="2" />
<text x="349.45" y="207.5" ></text>
</g>
<g >
<title>_int_malloc (6 samples, 0.01%)</title><rect x="147.4" y="181" width="0.2" height="15.0" fill="rgb(215,98,32)" rx="2" ry="2" />
<text x="150.43" y="191.5" ></text>
</g>
<g >
<title>perf_iterate_ctx (81 samples, 0.20%)</title><rect x="346.9" y="197" width="2.3" height="15.0" fill="rgb(237,86,50)" rx="2" ry="2" />
<text x="349.91" y="207.5" ></text>
</g>
<g >
<title>cranelift_codegen::ir::layout::Layout::assign_inst_seq::h59be385ae82e3a19 (4 samples, 0.01%)</title><rect x="44.0" y="309" width="0.1" height="15.0" fill="rgb(236,184,26)" rx="2" ry="2" />
<text x="47.02" y="319.5" ></text>
</g>
<g >
<title>_ZN17cranelift_codegen9flowgraph16ControlFlowGraph11compute_ebb17he662711fe9d10399E.llvm.15195122248153170019 (13 samples, 0.03%)</title><rect x="116.6" y="261" width="0.4" height="15.0" fill="rgb(244,207,15)" rx="2" ry="2" />
<text x="119.60" y="271.5" ></text>
</g>
<g >
<title>alloc::raw_vec::RawVec$LT$T$C$A$GT$::reserve::hea3f43976955e3d2 (11 samples, 0.03%)</title><rect x="46.8" y="325" width="0.4" height="15.0" fill="rgb(225,1,30)" rx="2" ry="2" />
<text x="49.85" y="335.5" ></text>
</g>
<g >
<title>_$LT$T$u20$as$u20$alloc..borrow..ToOwned$GT$::to_owned::h243a230274a8a4d9 (141 samples, 0.34%)</title><rect x="59.1" y="325" width="4.0" height="15.0" fill="rgb(235,94,27)" rx="2" ry="2" />
<text x="62.12" y="335.5" ></text>
</g>
<g >
<title>__GI___libc_malloc (24 samples, 0.06%)</title><rect x="172.8" y="341" width="0.7" height="15.0" fill="rgb(211,147,36)" rx="2" ry="2" />
<text x="175.80" y="351.5" ></text>
</g>
<g >
<title>page_fault (138 samples, 0.33%)</title><rect x="275.2" y="357" width="3.9" height="15.0" fill="rgb(241,124,24)" rx="2" ry="2" />
<text x="278.15" y="367.5" ></text>
</g>
<g >
<title>cranelift_codegen::isa::x86::enc_tables::size_plus_maybe_sib_or_offset_for_in_reg_0::h45f17ad339ad9f42 (5 samples, 0.01%)</title><rect x="31.2" y="325" width="0.1" height="15.0" fill="rgb(228,177,12)" rx="2" ry="2" />
<text x="34.21" y="335.5" ></text>
</g>
<g >
<title>__GI___libc_malloc (4 samples, 0.01%)</title><rect x="1169.9" y="229" width="0.1" height="15.0" fill="rgb(216,45,43)" rx="2" ry="2" />
<text x="1172.91" y="239.5" ></text>
</g>
<g >
<title>__GI___libc_realloc (9 samples, 0.02%)</title><rect x="44.6" y="309" width="0.2" height="15.0" fill="rgb(230,207,51)" rx="2" ry="2" />
<text x="47.56" y="319.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (140 samples, 0.34%)</title><rect x="236.4" y="389" width="4.0" height="15.0" fill="rgb(246,98,47)" rx="2" ry="2" />
<text x="239.45" y="399.5" ></text>
</g>
<g >
<title>__GI___libc_free (13 samples, 0.03%)</title><rect x="309.5" y="357" width="0.3" height="15.0" fill="rgb(251,165,30)" rx="2" ry="2" />
<text x="312.46" y="367.5" ></text>
</g>
<g >
<title>cranelift_codegen::regalloc::liverange::GenericLiveRange$LT$PO$GT$::extend_in_ebb::hbdb01049c0b9a2e0 (8 samples, 0.02%)</title><rect x="49.8" y="341" width="0.2" height="15.0" fill="rgb(235,78,41)" rx="2" ry="2" />
<text x="52.79" y="351.5" ></text>
</g>
<g >
<title>__GI___libc_free (18 samples, 0.04%)</title><rect x="306.9" y="357" width="0.6" height="15.0" fill="rgb(232,205,10)" rx="2" ry="2" />
<text x="309.95" y="367.5" ></text>
</g>
<g >
<title>cranelift_codegen::isa::x86::enc_tables::expand_udivrem::hb314bb4ccef9e2c5 (29 samples, 0.07%)</title><rect x="85.5" y="229" width="0.8" height="15.0" fill="rgb(222,19,35)" rx="2" ry="2" />
<text x="88.52" y="239.5" ></text>
</g>
<g >
<title>alloc::vec::Vec$LT$T$GT$::into_boxed_slice::h4122676c740e9bd3 (43 samples, 0.10%)</title><rect x="479.2" y="341" width="1.2" height="15.0" fill="rgb(250,155,20)" rx="2" ry="2" />
<text x="482.20" y="351.5" ></text>
</g>
<g >
<title>__perf_event_header__init_id (5 samples, 0.01%)</title><rect x="287.1" y="197" width="0.1" height="15.0" fill="rgb(227,203,44)" rx="2" ry="2" />
<text x="290.05" y="207.5" ></text>
</g>
<g >
<title>_$LT$wasmer_clif_backend..code..CraneliftModuleCodeGenerator$u20$as$u20$wasmer_runtime_core..codegen..ModuleCodeGenerator$LT$wasmer_clif_backend..code..CraneliftFunctionCodeGenerator$C$wasmer_clif_backend..signal..Caller$C$wasmer_clif_backend..code..CodegenError$GT$$GT$::finalize::hbd8b1f6eb4859c5a (643 samples, 1.56%)</title><rect x="1148.8" y="421" width="18.3" height="15.0" fill="rgb(224,9,44)" rx="2" ry="2" />
<text x="1151.79" y="431.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 (93 samples, 0.22%)</title><rect x="1167.4" y="437" width="2.6" height="15.0" fill="rgb(219,160,49)" rx="2" ry="2" />
<text x="1170.37" y="447.5" ></text>
</g>
<g >
<title>find_vma (5 samples, 0.01%)</title><rect x="263.3" y="277" width="0.1" height="15.0" fill="rgb(244,68,40)" rx="2" ry="2" />
<text x="266.25" y="287.5" ></text>
</g>
<g >
<title>_$LT$wasmparser..parser..Parser$u20$as$u20$wasmparser..parser..WasmDecoder$GT$::read::h34b06bb75da62f27 (125 samples, 0.30%)</title><rect x="188.3" y="213" width="3.6" height="15.0" fill="rgb(216,129,49)" rx="2" ry="2" />
<text x="191.30" y="223.5" ></text>
</g>
<g >
<title>_ZN78_$LT$parity_wasm..elements..ops..Instruction$u20$as$u20$core..clone..Clone$GT$5clone17hb3781841ab52f338E.llvm.15796135503815885487 (47 samples, 0.11%)</title><rect x="1108.4" y="453" width="1.4" height="15.0" fill="rgb(249,87,6)" rx="2" ry="2" />
<text x="1111.43" y="463.5" ></text>
</g>
<g >
<title>__vdso_clock_gettime (4 samples, 0.01%)</title><rect x="1161.5" y="277" width="0.2" height="15.0" fill="rgb(218,8,3)" rx="2" ry="2" />
<text x="1164.54" y="287.5" ></text>
</g>
<g >
<title>cranelift_codegen::isa::x86::settings::Flags::new::hb176e87743e4d4a7 (12 samples, 0.03%)</title><rect x="327.1" y="325" width="0.3" height="15.0" fill="rgb(234,84,51)" rx="2" ry="2" />
<text x="330.10" y="335.5" ></text>
</g>
<g >
<title>_int_realloc (4 samples, 0.01%)</title><rect x="38.1" y="325" width="0.1" height="15.0" fill="rgb(216,105,14)" rx="2" ry="2" />
<text x="41.06" y="335.5" ></text>
</g>
<g >
<title>alloc::raw_vec::RawVec$LT$T$C$A$GT$::reserve::h500ef385b8747b29 (13 samples, 0.03%)</title><rect x="802.4" y="309" width="0.4" height="15.0" fill="rgb(206,210,21)" rx="2" ry="2" />
<text x="805.43" y="319.5" ></text>
</g>
<g >
<title>alloc::raw_vec::RawVec$LT$T$C$A$GT$::reserve::h156c4ca9e87e66cc (8 samples, 0.02%)</title><rect x="73.1" y="277" width="0.2" height="15.0" fill="rgb(240,15,4)" rx="2" ry="2" />
<text x="76.08" y="287.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 (30 samples, 0.07%)</title><rect x="1107.6" y="453" width="0.8" height="15.0" fill="rgb(246,173,41)" rx="2" ry="2" />
<text x="1110.57" y="463.5" ></text>
</g>
<g >
<title>alloc::raw_vec::RawVec$LT$T$C$A$GT$::reserve::h0c445b41f7c28667 (13 samples, 0.03%)</title><rect x="319.2" y="325" width="0.4" height="15.0" fill="rgb(225,81,18)" rx="2" ry="2" />
<text x="322.19" y="335.5" ></text>
</g>
<g >
<title>_$LT$cranelift_bforest..Node$u20$as$u20$cranelift_entity..packed_option..ReservedValue$GT$::reserved_value::h5835179d85b4948d (4 samples, 0.01%)</title><rect x="117.5" y="277" width="0.2" height="15.0" fill="rgb(251,107,43)" rx="2" ry="2" />
<text x="120.55" y="287.5" ></text>
</g>
<g >
<title>_int_free (5 samples, 0.01%)</title><rect x="1170.0" y="309" width="0.2" height="15.0" fill="rgb(254,136,43)" rx="2" ry="2" />
<text x="1173.02" y="319.5" ></text>
</g>
<g >
<title>__GI___libc_malloc (7 samples, 0.02%)</title><rect x="136.7" y="245" width="0.2" height="15.0" fill="rgb(207,134,34)" rx="2" ry="2" />
<text x="139.73" y="255.5" ></text>
</g>
<g >
<title>cranelift_codegen::ir::dfg::DataFlowGraph::make_inst_results::hc774d04d1992dff6 (4 samples, 0.01%)</title><rect x="22.7" y="293" width="0.1" height="15.0" fill="rgb(250,229,53)" rx="2" ry="2" />
<text x="25.70" y="303.5" ></text>
</g>
<g >
<title>alloc::raw_vec::RawVec$LT$T$C$A$GT$::reserve::h7f206f0262523e6d (31 samples, 0.07%)</title><rect x="804.8" y="341" width="0.9" height="15.0" fill="rgb(227,29,30)" rx="2" ry="2" />
<text x="807.77" y="351.5" ></text>
</g>
<g >
<title>wasmer_runtime_core::compile_with_config::h2793fe8de72c0bc3 (144 samples, 0.35%)</title><rect x="1176.1" y="501" width="4.1" height="15.0" fill="rgb(222,2,50)" rx="2" ry="2" />
<text x="1179.13" y="511.5" ></text>
</g>
<g >
<title>kmem_cache_free (7 samples, 0.02%)</title><rect x="288.5" y="229" width="0.2" height="15.0" fill="rgb(234,41,7)" rx="2" ry="2" />
<text x="291.45" y="239.5" ></text>
</g>
<g >
<title>cranelift_entity::sparse::SparseMap$LT$K$C$V$GT$::insert::h7db38de7d591c38a (87 samples, 0.21%)</title><rect x="145.9" y="245" width="2.5" height="15.0" fill="rgb(236,12,53)" rx="2" ry="2" />
<text x="148.94" y="255.5" ></text>
</g>
<g >
<title>std::time::Instant::elapsed::h8e307314b2acf9be (5 samples, 0.01%)</title><rect x="1154.1" y="309" width="0.1" height="15.0" fill="rgb(205,187,13)" rx="2" ry="2" />
<text x="1157.07" y="319.5" ></text>
</g>
<g >
<title>_$LT$wasmer_runtime_core..sys..unix..memory..Memory$u20$as$u20$core..ops..drop..Drop$GT$::drop::h019b69b880433af9 (7 samples, 0.02%)</title><rect x="185.4" y="229" width="0.2" height="15.0" fill="rgb(219,82,2)" rx="2" ry="2" />
<text x="188.36" y="239.5" ></text>
</g>
<g >
<title>__GI___clock_gettime (6 samples, 0.01%)</title><rect x="1166.3" y="293" width="0.2" height="15.0" fill="rgb(226,64,7)" rx="2" ry="2" />
<text x="1169.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 (4 samples, 0.01%)</title><rect x="1169.3" y="261" width="0.1" height="15.0" fill="rgb(237,177,31)" rx="2" ry="2" />
<text x="1172.34" y="271.5" ></text>
</g>
<g >
<title>_ZN9hashbrown3raw17RawTable$LT$T$GT$14reserve_rehash17h949d57d1e07c193dE.llvm.16938716460618634628 (12 samples, 0.03%)</title><rect x="102.8" y="229" width="0.4" height="15.0" fill="rgb(225,148,6)" rx="2" ry="2" />
<text x="105.82" y="239.5" ></text>
</g>
<g >
<title>__GI___mprotect (254 samples, 0.61%)</title><rect x="262.4" y="357" width="7.3" height="15.0" fill="rgb(245,176,32)" rx="2" ry="2" />
<text x="265.42" y="367.5" ></text>
</g>
<g >
<title>__vdso_clock_gettime (4 samples, 0.01%)</title><rect x="24.4" y="245" width="0.1" height="15.0" fill="rgb(243,175,51)" rx="2" ry="2" />
<text x="27.39" y="255.5" ></text>
</g>
<g >
<title>_ZN19wasmer_clif_backend6signal4unix19signal_trap_handler17ha55e59a207213c20E.llvm.3171045979873438245 (42 samples, 0.10%)</title><rect x="10.5" y="485" width="1.2" height="15.0" fill="rgb(217,137,41)" rx="2" ry="2" />
<text x="13.54" y="495.5" ></text>
</g>
<g >
<title>_int_free (4 samples, 0.01%)</title><rect x="166.8" y="229" width="0.1" height="15.0" fill="rgb(212,48,11)" rx="2" ry="2" />
<text x="169.81" y="239.5" ></text>
</g>
<g >
<title>try_charge (5 samples, 0.01%)</title><rect x="278.5" y="261" width="0.2" height="15.0" fill="rgb(238,171,5)" rx="2" ry="2" />
<text x="281.52" y="271.5" ></text>
</g>
<g >
<title>do_syscall_64 (242 samples, 0.59%)</title><rect x="262.8" y="325" width="6.9" height="15.0" fill="rgb(235,62,3)" rx="2" ry="2" />
<text x="265.77" y="335.5" ></text>
</g>
<g >
<title>cranelift_codegen::loop_analysis::LoopAnalysis::compute::h2ae6e7af869a79fa (35 samples, 0.08%)</title><rect x="117.3" y="293" width="1.0" height="15.0" fill="rgb(218,87,21)" rx="2" ry="2" />
<text x="120.29" y="303.5" ></text>
</g>
<g >
<title>__GI___libc_realloc (6 samples, 0.01%)</title><rect x="203.2" y="245" width="0.1" height="15.0" fill="rgb(235,186,3)" rx="2" ry="2" />
<text x="206.17" y="255.5" ></text>
</g>
<g >
<title>perf_event_init_task (7 samples, 0.02%)</title><rect x="1180.3" y="421" width="0.2" height="15.0" fill="rgb(248,176,5)" rx="2" ry="2" />
<text x="1183.30" y="431.5" ></text>
</g>
<g >
<title>__alloc_pages_nodemask (23 samples, 0.06%)</title><rect x="277.2" y="261" width="0.7" height="15.0" fill="rgb(248,8,11)" rx="2" ry="2" />
<text x="280.21" y="271.5" ></text>
</g>
<g >
<title>_$LT$wasmer_clif_backend..signal..Caller$u20$as$u20$wasmer_runtime_core..backend..RunnableModule$GT$::get_trampoline::h81ec02567a29dd60 (54 samples, 0.13%)</title><rect x="856.7" y="421" width="1.6" height="15.0" fill="rgb(220,78,39)" rx="2" ry="2" />
<text x="859.72" y="431.5" ></text>
</g>
<g >
<title>std::rt::lang_start::_$u7b$$u7b$closure$u7d$$u7d$::h387b585bfd0524d1 (722 samples, 1.75%)</title><rect x="184.8" y="357" width="20.7" height="15.0" fill="rgb(232,189,29)" rx="2" ry="2" />
<text x="187.85" y="367.5" ></text>
</g>
<g >
<title>std::time::Instant::now::h33d2ba6042def2d2 (6 samples, 0.01%)</title><rect x="57.4" y="341" width="0.1" height="15.0" fill="rgb(226,126,0)" rx="2" ry="2" />
<text x="60.35" y="351.5" ></text>
</g>
<g >
<title>core::slice::_$LT$impl$u20$$u5b$T$u5d$$GT$::copy_from_slice::hf2a016039d5668ca (19 samples, 0.05%)</title><rect x="1049.4" y="421" width="0.5" height="15.0" fill="rgb(225,142,9)" rx="2" ry="2" />
<text x="1052.37" y="431.5" ></text>
</g>
<g >
<title>wasmparser::parser::Parser::read_export_entry::hf5e381312c2f0c73 (437 samples, 1.06%)</title><rect x="509.5" y="357" width="12.5" height="15.0" fill="rgb(205,229,50)" rx="2" ry="2" />
<text x="512.51" y="367.5" ></text>
</g>
<g >
<title>_ZN4core3ptr18real_drop_in_place17hbf1a2e7b1d7f1667E.llvm.2002196175208074555 (78 samples, 0.19%)</title><rect x="538.9" y="341" width="2.2" height="15.0" fill="rgb(231,187,13)" rx="2" ry="2" />
<text x="541.88" y="351.5" ></text>
</g>
<g >
<title>_$LT$core..iter..adapters..Map$LT$I$C$F$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$::fold::hb9f3d978c78fd9fa (9 samples, 0.02%)</title><rect x="875.8" y="405" width="0.3" height="15.0" fill="rgb(244,99,49)" rx="2" ry="2" />
<text x="878.84" y="415.5" ></text>
</g>
<g >
<title>__libc_calloc (7 samples, 0.02%)</title><rect x="106.9" y="277" width="0.2" height="15.0" fill="rgb(225,110,16)" rx="2" ry="2" />
<text x="109.90" y="287.5" ></text>
</g>
<g >
<title>alloc::raw_vec::RawVec$LT$T$C$A$GT$::reserve::hae39d8e15426d2f6 (5 samples, 0.01%)</title><rect x="43.9" y="309" width="0.1" height="15.0" fill="rgb(223,22,23)" rx="2" ry="2" />
<text x="46.88" y="319.5" ></text>
</g>
<g >
<title>__vdso_clock_gettime (5 samples, 0.01%)</title><rect x="1159.5" y="245" width="0.2" height="15.0" fill="rgb(214,42,2)" rx="2" ry="2" />
<text x="1162.55" y="255.5" ></text>
</g>
<g >
<title>_$LT$cranelift_codegen..isa..enc_tables..Encodings$u20$as$u20$core..iter..traits..iterator..Iterator$GT$::next::he6ba202105922eb5 (4 samples, 0.01%)</title><rect x="21.3" y="277" width="0.1" height="15.0" fill="rgb(208,43,11)" rx="2" ry="2" />
<text x="24.27" y="287.5" ></text>
</g>
<g >
<title>__rust_dealloc (4 samples, 0.01%)</title><rect x="509.4" y="341" width="0.1" height="15.0" fill="rgb(249,130,47)" rx="2" ry="2" />
<text x="512.39" y="351.5" ></text>
</g>
<g >
<title>cranelift_entity::list::EntityList$LT$T$GT$::push::h051541d55e7ee057 (34 samples, 0.08%)</title><rect x="16.1" y="325" width="1.0" height="15.0" fill="rgb(234,204,31)" rx="2" ry="2" />
<text x="19.14" y="335.5" ></text>
</g>
<g >
<title>wasmparser::readers::module::ModuleReader::read::h9a86df7daf36f14d (19 samples, 0.05%)</title><rect x="191.2" y="181" width="0.6" height="15.0" fill="rgb(246,4,16)" rx="2" ry="2" />
<text x="194.24" y="191.5" ></text>
</g>
<g >
<title>_$LT$cranelift_codegen..isa..enc_tables..Encodings$u20$as$u20$core..iter..traits..iterator..Iterator$GT$::next::he6ba202105922eb5 (6 samples, 0.01%)</title><rect x="101.8" y="261" width="0.2" height="15.0" fill="rgb(237,156,21)" rx="2" ry="2" />
<text x="104.85" y="271.5" ></text>
</g>
<g >
<title>std::time::Instant::now::h33d2ba6042def2d2 (5 samples, 0.01%)</title><rect x="1161.5" y="341" width="0.2" height="15.0" fill="rgb(234,17,8)" rx="2" ry="2" />
<text x="1164.52" y="351.5" ></text>
</g>
<g >
<title>may_expand_vm (4 samples, 0.01%)</title><rect x="346.6" y="229" width="0.1" height="15.0" fill="rgb(242,165,29)" rx="2" ry="2" />
<text x="349.62" y="239.5" ></text>
</g>
<g >
<title>_int_realloc (8 samples, 0.02%)</title><rect x="322.7" y="277" width="0.3" height="15.0" fill="rgb(214,47,7)" rx="2" ry="2" />
<text x="325.73" y="287.5" ></text>
</g>
<g >
<title>cranelift_codegen::ir::function::Function::with_name_signature::h3213a13dd838e646 (7 samples, 0.02%)</title><rect x="1180.0" y="421" width="0.2" height="15.0" fill="rgb(243,203,4)" rx="2" ry="2" />
<text x="1183.04" y="431.5" ></text>
</g>
<g >
<title>unmapped_area_topdown (11 samples, 0.03%)</title><rect x="291.4" y="213" width="0.3" height="15.0" fill="rgb(232,204,50)" rx="2" ry="2" />
<text x="294.39" y="223.5" ></text>
</g>
<g >
<title>cranelift_codegen::regalloc::coloring::Context::program_input_abi::h34ced53bbc43d7b1 (15 samples, 0.04%)</title><rect x="45.3" y="341" width="0.4" height="15.0" fill="rgb(236,117,18)" rx="2" ry="2" />
<text x="48.28" y="351.5" ></text>
</g>
<g >
<title>_int_malloc (4 samples, 0.01%)</title><rect x="324.4" y="293" width="0.1" height="15.0" fill="rgb(238,207,32)" rx="2" ry="2" />
<text x="327.39" y="303.5" ></text>
</g>
<g >
<title>wasmparser::binary_reader::BinaryReader::read_section_code::h3130ec4f2be00e86 (5 samples, 0.01%)</title><rect x="813.8" y="309" width="0.1" height="15.0" fill="rgb(249,38,46)" rx="2" ry="2" />
<text x="816.79" y="319.5" ></text>
</g>
<g >
<title>cranelift_codegen::dominator_tree::DominatorTreePreorder::compute::hb821b7ecbf347c37 (19 samples, 0.05%)</title><rect x="1168.3" y="277" width="0.5" height="15.0" fill="rgb(222,53,28)" rx="2" ry="2" />
<text x="1171.28" y="287.5" ></text>
</g>
<g >
<title>std::time::Instant::now::h33d2ba6042def2d2 (10 samples, 0.02%)</title><rect x="108.8" y="245" width="0.3" height="15.0" fill="rgb(226,12,3)" rx="2" ry="2" />
<text x="111.78" y="255.5" ></text>
</g>
<g >
<title>std::thread::local::lazy::LazyKeyInner$LT$T$GT$::get::h7a1d93eb9cc05874 (5 samples, 0.01%)</title><rect x="809.7" y="309" width="0.2" height="15.0" fill="rgb(218,9,2)" rx="2" ry="2" />
<text x="812.74" y="319.5" ></text>
</g>
<g >
<title>cranelift_codegen::ir::builder::InstBuilder::regmove::h2d2e8972aa228be7 (5 samples, 0.01%)</title><rect x="1169.2" y="277" width="0.1" height="15.0" fill="rgb(238,140,19)" rx="2" ry="2" />
<text x="1172.16" y="287.5" ></text>
</g>
<g >
<title>unlink_anon_vmas (7 samples, 0.02%)</title><rect x="230.6" y="245" width="0.2" height="15.0" fill="rgb(240,153,45)" rx="2" ry="2" />
<text x="233.60" y="255.5" ></text>
</g>
<g >
<title>_ZN4core3ptr18real_drop_in_place17hbf1a2e7b1d7f1667E.llvm.2002196175208074555 (13 samples, 0.03%)</title><rect x="512.8" y="341" width="0.4" height="15.0" fill="rgb(241,73,15)" rx="2" ry="2" />
<text x="515.82" y="351.5" ></text>
</g>
<g >
<title>cranelift_codegen::binemit::emit_function::hcd450d74712a091f (158 samples, 0.38%)</title><rect x="313.0" y="357" width="4.5" height="15.0" fill="rgb(223,99,6)" rx="2" ry="2" />
<text x="316.03" y="367.5" ></text>
</g>
<g >
<title>alloc::raw_vec::RawVec$LT$T$C$A$GT$::reserve::h156c4ca9e87e66cc (8 samples, 0.02%)</title><rect x="64.7" y="309" width="0.3" height="15.0" fill="rgb(247,74,10)" rx="2" ry="2" />
<text x="67.74" y="319.5" ></text>
</g>
<g >
<title>core::ptr::real_drop_in_place::h767229c0557115cd (33 samples, 0.08%)</title><rect x="308.5" y="341" width="1.0" height="15.0" fill="rgb(222,0,3)" rx="2" ry="2" />
<text x="311.52" y="351.5" ></text>
</g>
<g >
<title>_$LT$wasmer_clif_fork_frontend..variable..Variable$u20$as$u20$cranelift_entity..EntityRef$GT$::new::ha1e4485ecde5c647 (5 samples, 0.01%)</title><rect x="795.7" y="373" width="0.1" height="15.0" fill="rgb(249,14,52)" rx="2" ry="2" />
<text x="798.70" y="383.5" ></text>
</g>
<g >
<title>cranelift_codegen::regalloc::reload::Reload::run::h05729139e9b4ae44 (35 samples, 0.08%)</title><rect x="1173.8" y="373" width="1.0" height="15.0" fill="rgb(234,200,34)" rx="2" ry="2" />
<text x="1176.79" y="383.5" ></text>
</g>
<g >
<title>memcpy_erms (4 samples, 0.01%)</title><rect x="295.1" y="149" width="0.1" height="15.0" fill="rgb(226,116,12)" rx="2" ry="2" />
<text x="298.10" y="159.5" ></text>
</g>
<g >
<title>core::ptr::real_drop_in_place::h98f9fd73d14fd071 (18 samples, 0.04%)</title><rect x="196.3" y="229" width="0.5" height="15.0" fill="rgb(238,73,40)" rx="2" ry="2" />
<text x="199.32" y="239.5" ></text>
</g>
<g >
<title>alloc::raw_vec::RawVec$LT$T$C$A$GT$::reserve::h5e34cfad90a6ce21 (21 samples, 0.05%)</title><rect x="321.1" y="357" width="0.6" height="15.0" fill="rgb(254,29,22)" rx="2" ry="2" />
<text x="324.10" y="367.5" ></text>
</g>
<g >
<title>cranelift_codegen::ir::dfg::DataFlowGraph::ctrl_typevar::h001f83f02149e995 (11 samples, 0.03%)</title><rect x="170.4" y="277" width="0.3" height="15.0" fill="rgb(207,110,34)" rx="2" ry="2" />
<text x="173.38" y="287.5" ></text>
</g>
<g >
<title>__GI___libc_malloc (12 samples, 0.03%)</title><rect x="795.1" y="325" width="0.4" height="15.0" fill="rgb(242,211,40)" rx="2" ry="2" />
<text x="798.13" y="335.5" ></text>
</g>
<g >
<title>__GI___libc_malloc (5 samples, 0.01%)</title><rect x="351.4" y="357" width="0.1" height="15.0" fill="rgb(210,70,37)" rx="2" ry="2" />
<text x="354.39" y="367.5" ></text>
</g>
<g >
<title>std::panicking::try::do_call::h631c6408dfccc6f5 (6 samples, 0.01%)</title><rect x="184.6" y="485" width="0.2" height="15.0" fill="rgb(221,9,47)" rx="2" ry="2" />
<text x="187.62" y="495.5" ></text>
</g>
<g >
<title>__GI___libc_free (40 samples, 0.10%)</title><rect x="250.0" y="389" width="1.2" height="15.0" fill="rgb(208,188,25)" rx="2" ry="2" />
<text x="253.04" y="399.5" ></text>
</g>
<g >
<title>_ZN16cranelift_entity4list17ListPool$LT$T$GT$5alloc17h7031e3fd97879e16E.llvm.776987249141506950 (4 samples, 0.01%)</title><rect x="850.3" y="277" width="0.1" height="15.0" fill="rgb(252,64,32)" rx="2" ry="2" />
<text x="853.27" y="287.5" ></text>
</g>
<g >
<title>core::ptr::_$LT$impl$u20$$BP$const$u20$T$GT$::align_offset::hf19defd5a0cbecad (6 samples, 0.01%)</title><rect x="520.9" y="277" width="0.1" height="15.0" fill="rgb(239,199,9)" rx="2" ry="2" />
<text x="523.87" y="287.5" ></text>
</g>
<g >
<title>__GI___libc_realloc (7 samples, 0.02%)</title><rect x="1156.1" y="293" width="0.2" height="15.0" fill="rgb(212,113,24)" rx="2" ry="2" />
<text x="1159.09" y="303.5" ></text>
</g>
<g >
<title>alloc::raw_vec::RawVec$LT$T$C$A$GT$::reserve::hd6c8f26eb3c9fb4b (15 samples, 0.04%)</title><rect x="1175.0" y="341" width="0.4" height="15.0" fill="rgb(252,67,9)" rx="2" ry="2" />
<text x="1177.96" y="351.5" ></text>
</g>
<g >
<title>alloc::raw_vec::RawVec$LT$T$C$A$GT$::reserve::hcf362473d68b86cf (9 samples, 0.02%)</title><rect x="194.1" y="197" width="0.2" height="15.0" fill="rgb(247,88,12)" rx="2" ry="2" />
<text x="197.07" y="207.5" ></text>
</g>
<g >
<title>__lock_text_start (5 samples, 0.01%)</title><rect x="238.5" y="213" width="0.1" height="15.0" fill="rgb(211,40,32)" rx="2" ry="2" />
<text x="241.50" y="223.5" ></text>
</g>
<g >
<title>_$LT$cranelift_codegen..timing..details..TimingToken$u20$as$u20$core..ops..drop..Drop$GT$::drop::h1b19c2a93ee0a091 (4 samples, 0.01%)</title><rect x="48.1" y="341" width="0.1" height="15.0" fill="rgb(228,185,44)" rx="2" ry="2" />
<text x="51.07" y="351.5" ></text>
</g>
<g >
<title>__GI___clock_gettime (5 samples, 0.01%)</title><rect x="36.9" y="261" width="0.2" height="15.0" fill="rgb(239,161,37)" rx="2" ry="2" />
<text x="39.94" y="271.5" ></text>
</g>
<g >
<title>core::fmt::write::h1f444f4312eb6c27 (9 samples, 0.02%)</title><rect x="868.9" y="389" width="0.3" height="15.0" fill="rgb(221,47,22)" rx="2" ry="2" />
<text x="871.93" y="399.5" ></text>
</g>
<g >
<title>cranelift_codegen::ir::dfg::DataFlowGraph::make_inst::h5a8de03d56461c59 (9 samples, 0.02%)</title><rect x="850.0" y="325" width="0.2" height="15.0" fill="rgb(223,45,33)" rx="2" ry="2" />
<text x="852.95" y="335.5" ></text>
</g>
<g >
<title>_$LT$cranelift_codegen..timing..details..TimingToken$u20$as$u20$core..ops..drop..Drop$GT$::drop::h1b19c2a93ee0a091 (5 samples, 0.01%)</title><rect x="102.5" y="261" width="0.2" height="15.0" fill="rgb(246,203,17)" rx="2" ry="2" />
<text x="105.53" y="271.5" ></text>
</g>
<g >
<title>__GI___libc_malloc (6 samples, 0.01%)</title><rect x="77.5" y="245" width="0.2" height="15.0" fill="rgb(220,84,28)" rx="2" ry="2" />
<text x="80.53" y="255.5" ></text>
</g>
<g >
<title>alloc::raw_vec::RawVec$LT$T$C$A$GT$::reserve::h86648d6f1470c78b (6 samples, 0.01%)</title><rect x="192.4" y="213" width="0.2" height="15.0" fill="rgb(233,165,40)" rx="2" ry="2" />
<text x="195.41" y="223.5" ></text>
</g>
<g >
<title>_int_malloc (4 samples, 0.01%)</title><rect x="814.2" y="357" width="0.1" height="15.0" fill="rgb(229,209,2)" rx="2" ry="2" />
<text x="817.19" y="367.5" ></text>
</g>
<g >
<title>cranelift_codegen::redundant_reload_remover::RedundantReloadRemover::new::ha2ae7fc59b6f07f8 (22 samples, 0.05%)</title><rect x="182.4" y="421" width="0.6" height="15.0" fill="rgb(215,33,41)" rx="2" ry="2" />
<text x="185.39" y="431.5" ></text>
</g>
<g >
<title>wasmparser::validator::ValidatingParser::new::hf8cf84418abf20c9 (9 samples, 0.02%)</title><rect x="196.8" y="229" width="0.3" height="15.0" fill="rgb(224,0,9)" rx="2" ry="2" />
<text x="199.83" y="239.5" ></text>
</g>
<g >
<title>std::time::Instant::elapsed::h8e307314b2acf9be (4 samples, 0.01%)</title><rect x="1166.7" y="325" width="0.1" height="15.0" fill="rgb(224,45,23)" rx="2" ry="2" />
<text x="1169.65" y="335.5" ></text>
</g>
<g >
<title>cranelift_codegen::settings::builder::he3e45f2b2c57aae6 (6 samples, 0.01%)</title><rect x="327.8" y="357" width="0.2" height="15.0" fill="rgb(212,17,28)" rx="2" ry="2" />
<text x="330.84" y="367.5" ></text>
</g>
<g >
<title>__GI___libc_malloc (7 samples, 0.02%)</title><rect x="75.2" y="245" width="0.2" height="15.0" fill="rgb(218,179,9)" rx="2" ry="2" />
<text x="78.19" y="255.5" ></text>
</g>
<g >
<title>rayon_core::registry::ThreadBuilder::run::h8d06e03c16a2976b (47 samples, 0.11%)</title><rect x="183.3" y="341" width="1.3" height="15.0" fill="rgb(234,202,4)" rx="2" ry="2" />
<text x="186.28" y="351.5" ></text>
</g>
<g >
<title>mem_cgroup_try_charge (13 samples, 0.03%)</title><rect x="305.6" y="277" width="0.3" height="15.0" fill="rgb(242,140,13)" rx="2" ry="2" />
<text x="308.58" y="287.5" ></text>
</g>
<g >
<title>alloc::raw_vec::RawVec$LT$T$C$A$GT$::reserve::h5bb4661d248be310 (9 samples, 0.02%)</title><rect x="202.3" y="261" width="0.3" height="15.0" fill="rgb(248,53,54)" rx="2" ry="2" />
<text x="205.31" y="271.5" ></text>
</g>
<g >
<title>memcpy_erms (7 samples, 0.02%)</title><rect x="348.7" y="165" width="0.2" height="15.0" fill="rgb(237,174,13)" rx="2" ry="2" />
<text x="351.73" y="175.5" ></text>
</g>
<g >
<title>std::panic::catch_unwind::hd5e0a26424bd7f34 (722 samples, 1.75%)</title><rect x="184.8" y="437" width="20.7" height="15.0" fill="rgb(226,105,25)" rx="2" ry="2" />
<text x="187.85" y="447.5" ></text>
</g>
<g >
<title>std::time::Instant::now::h33d2ba6042def2d2 (4 samples, 0.01%)</title><rect x="1155.1" y="325" width="0.1" height="15.0" fill="rgb(211,198,19)" rx="2" ry="2" />
<text x="1158.09" y="335.5" ></text>
</g>
<g >
<title>cranelift_codegen::ir::instructions::InstructionData::arguments_mut::hd68ce32862759160 (9 samples, 0.02%)</title><rect x="1165.2" y="325" width="0.3" height="15.0" fill="rgb(249,124,29)" rx="2" ry="2" />
<text x="1168.20" y="335.5" ></text>
</g>
<g >
<title>cranelift_codegen::ir::layout::Layout::insert_inst::h352d76f498d27496 (5 samples, 0.01%)</title><rect x="1169.2" y="245" width="0.1" height="15.0" fill="rgb(218,195,39)" rx="2" ry="2" />
<text x="1172.16" y="255.5" ></text>
</g>
<g >
<title>cranelift_codegen::ir::dfg::DataFlowGraph::append_result::h44f9432a950b5ad1 (9 samples, 0.02%)</title><rect x="324.3" y="357" width="0.2" height="15.0" fill="rgb(210,137,20)" rx="2" ry="2" />
<text x="327.27" y="367.5" ></text>
</g>
<g >
<title>std::time::Instant::elapsed::h8e307314b2acf9be (7 samples, 0.02%)</title><rect x="1159.5" y="325" width="0.2" height="15.0" fill="rgb(226,57,1)" rx="2" ry="2" />
<text x="1162.49" y="335.5" ></text>
</g>
<g >
<title>cranelift_codegen::ir::dfg::DataFlowGraph::append_result::h44f9432a950b5ad1 (7 samples, 0.02%)</title><rect x="90.3" y="197" width="0.2" height="15.0" fill="rgb(205,58,42)" rx="2" ry="2" />
<text x="93.26" y="207.5" ></text>
</g>
<g >
<title>std::sys::unix::time::inner::now::ha10452f37b2930c5 (9 samples, 0.02%)</title><rect x="37.7" y="293" width="0.2" height="15.0" fill="rgb(247,213,53)" rx="2" ry="2" />
<text x="40.69" y="303.5" ></text>
</g>
<g >
<title>cranelift_codegen::regalloc::context::Context::new::h18b3346fa2ea1088 (9 samples, 0.02%)</title><rect x="183.0" y="421" width="0.3" height="15.0" fill="rgb(221,135,24)" rx="2" ry="2" />
<text x="186.02" y="431.5" ></text>
</g>
<g >
<title>_$LT$parity_wasm..elements..func..FuncBody$u20$as$u20$parity_wasm..elements..Serialize$GT$::serialize::h6e9e4c32eabcc851 (5,600 samples, 13.55%)</title><rect x="890.1" y="453" width="159.8" height="15.0" fill="rgb(222,111,1)" rx="2" ry="2" />
<text x="893.11" y="463.5" >_$LT$parity_wasm..el..</text>
</g>
<g >
<title>__GI___libc_malloc (6 samples, 0.01%)</title><rect x="854.9" y="421" width="0.2" height="15.0" fill="rgb(227,9,50)" rx="2" ry="2" />
<text x="857.89" y="431.5" ></text>
</g>
<g >
<title>std::time::Instant::now::h33d2ba6042def2d2 (10 samples, 0.02%)</title><rect x="119.3" y="245" width="0.2" height="15.0" fill="rgb(225,76,14)" rx="2" ry="2" />
<text x="122.26" y="255.5" ></text>
</g>
<g >
<title>release_pages (10 samples, 0.02%)</title><rect x="231.5" y="213" width="0.3" height="15.0" fill="rgb(248,82,43)" rx="2" ry="2" />
<text x="234.48" 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$::from_iter::haf5b82d74d141c18 (7 samples, 0.02%)</title><rect x="298.7" y="373" width="0.2" height="15.0" fill="rgb(221,35,12)" rx="2" ry="2" />
<text x="301.70" y="383.5" ></text>
</g>
<g >
<title>cranelift_codegen::regalloc::diversion::RegDiversions::diversion::h0a2605efbb6eb85b (14 samples, 0.03%)</title><rect x="68.5" y="277" width="0.4" height="15.0" fill="rgb(252,83,18)" rx="2" ry="2" />
<text x="71.45" y="287.5" ></text>
</g>
<g >
<title>alloc::raw_vec::RawVec$LT$T$C$A$GT$::reserve::h500ef385b8747b29 (4 samples, 0.01%)</title><rect x="1176.7" y="357" width="0.1" height="15.0" fill="rgb(218,155,7)" rx="2" ry="2" />
<text x="1179.67" y="367.5" ></text>
</g>
<g >
<title>std::time::Instant::now::h33d2ba6042def2d2 (17 samples, 0.04%)</title><rect x="111.6" y="277" width="0.4" height="15.0" fill="rgb(214,22,25)" rx="2" ry="2" />
<text x="114.55" y="287.5" ></text>
</g>
<g >
<title>cranelift_codegen::ir::instructions::InstructionData::analyze_branch::h1af3091a9a9e30c3 (9 samples, 0.02%)</title><rect x="73.6" y="277" width="0.2" height="15.0" fill="rgb(245,69,48)" rx="2" ry="2" />
<text x="76.59" y="287.5" ></text>
</g>
<g >
<title>_$LT$alloc..vec..Vec$LT$T$GT$$u20$as$u20$core..clone..Clone$GT$::clone::h21c33b7e56b1167d (12 samples, 0.03%)</title><rect x="59.6" y="309" width="0.4" height="15.0" fill="rgb(211,148,46)" rx="2" ry="2" />
<text x="62.63" y="319.5" ></text>
</g>
<g >
<title>rocinante::stoke::CandidateFunc::get_rand_instr::h1affb64f6e1408ee (1,105 samples, 2.67%)</title><rect x="1111.0" y="453" width="31.6" height="15.0" fill="rgb(237,110,33)" rx="2" ry="2" />
<text x="1114.03" y="463.5" >ro..</text>
</g>
<g >
<title>_ZN9hashbrown3raw17RawTable$LT$T$GT$14reserve_rehash17ha8dc20cee05f0e84E.llvm.16938716460618634628 (4 samples, 0.01%)</title><rect x="1169.9" y="245" width="0.1" height="15.0" fill="rgb(224,139,8)" rx="2" ry="2" />
<text x="1172.91" y="255.5" ></text>
</g>
<g >
<title>core::ptr::real_drop_in_place::h91ab9e9284da52ab (11 samples, 0.03%)</title><rect x="618.7" y="373" width="0.3" height="15.0" fill="rgb(224,113,35)" rx="2" ry="2" />
<text x="621.68" y="383.5" ></text>
</g>
<g >
<title>__libc_calloc (130 samples, 0.31%)</title><rect x="257.6" y="357" width="3.7" height="15.0" fill="rgb(245,145,6)" rx="2" ry="2" />
<text x="260.63" y="367.5" ></text>
</g>
<g >
<title>std::time::Instant::elapsed::h8e307314b2acf9be (7 samples, 0.02%)</title><rect x="117.7" y="261" width="0.2" height="15.0" fill="rgb(227,29,10)" rx="2" ry="2" />
<text x="120.72" y="271.5" ></text>
</g>
<g >
<title>std::sys::unix::time::inner::now::ha10452f37b2930c5 (6 samples, 0.01%)</title><rect x="318.5" y="309" width="0.2" height="15.0" fill="rgb(250,83,23)" rx="2" ry="2" />
<text x="321.48" y="319.5" ></text>
</g>
<g >
<title>__GI___libc_free (4 samples, 0.01%)</title><rect x="242.6" y="437" width="0.1" height="15.0" fill="rgb(211,229,41)" rx="2" ry="2" />
<text x="245.56" y="447.5" ></text>
</g>
<g >
<title>std::time::Instant::now::h33d2ba6042def2d2 (7 samples, 0.02%)</title><rect x="96.2" y="229" width="0.2" height="15.0" fill="rgb(242,82,53)" rx="2" ry="2" />
<text x="99.20" y="239.5" ></text>
</g>
<g >
<title>__GI___libc_malloc (319 samples, 0.77%)</title><rect x="643.1" y="325" width="9.1" height="15.0" fill="rgb(232,156,52)" rx="2" ry="2" />
<text x="646.06" y="335.5" ></text>
</g>
<g >
<title>get_page_from_freelist (14 samples, 0.03%)</title><rect x="305.0" y="245" width="0.4" height="15.0" fill="rgb(238,201,26)" rx="2" ry="2" />
<text x="308.04" y="255.5" ></text>
</g>
<g >
<title>alloc::borrow::Cow$LT$B$GT$::to_mut::h2ad6d2b639bc919b (9 samples, 0.02%)</title><rect x="1170.4" y="309" width="0.3" height="15.0" fill="rgb(229,74,4)" rx="2" ry="2" />
<text x="1173.42" y="319.5" ></text>
</g>
<g >
<title>hashbrown::map::HashMap$LT$K$C$V$C$S$GT$::insert::h7f71a0adc74f5535 (27 samples, 0.07%)</title><rect x="193.1" y="213" width="0.8" height="15.0" fill="rgb(243,167,19)" rx="2" ry="2" />
<text x="196.12" y="223.5" ></text>
</g>
<g >
<title>__GI___libc_realloc (14 samples, 0.03%)</title><rect x="321.3" y="341" width="0.4" height="15.0" fill="rgb(208,154,52)" rx="2" ry="2" />
<text x="324.30" y="351.5" ></text>
</g>
<g >
<title>_int_realloc (5 samples, 0.01%)</title><rect x="1167.7" y="133" width="0.1" height="15.0" fill="rgb(207,74,28)" rx="2" ry="2" />
<text x="1170.68" y="143.5" ></text>
</g>
<g >
<title>__memcpy_avx_unaligned (102 samples, 0.25%)</title><rect x="851.6" y="421" width="2.9" height="15.0" fill="rgb(218,151,37)" rx="2" ry="2" />
<text x="854.55" y="431.5" ></text>
</g>
<g >
<title>__GI___libc_malloc (4 samples, 0.01%)</title><rect x="54.0" y="309" width="0.2" height="15.0" fill="rgb(234,48,51)" rx="2" ry="2" />
<text x="57.04" y="319.5" ></text>
</g>
<g >
<title>alloc::vec::Vec$LT$T$GT$::resize::h9160379633033fa6 (6 samples, 0.01%)</title><rect x="1174.6" y="325" width="0.2" height="15.0" fill="rgb(252,26,13)" rx="2" ry="2" />
<text x="1177.62" y="335.5" ></text>
</g>
<g >
<title>arch_tlb_finish_mmu (60 samples, 0.15%)</title><rect x="238.3" y="277" width="1.7" height="15.0" fill="rgb(234,16,34)" rx="2" ry="2" />
<text x="241.33" y="287.5" ></text>
</g>
<g >
<title>__x86_indirect_thunk_r14 (4 samples, 0.01%)</title><rect x="334.4" y="245" width="0.1" height="15.0" fill="rgb(237,141,40)" rx="2" ry="2" />
<text x="337.43" y="255.5" ></text>
</g>
<g >
<title>cranelift_codegen::ir::instructions::InstructionData::arguments::h70ecdef19e20b02a (9 samples, 0.02%)</title><rect x="35.1" y="325" width="0.2" height="15.0" fill="rgb(225,139,3)" rx="2" ry="2" />
<text x="38.09" y="335.5" ></text>
</g>
<g >
<title>__vdso_clock_gettime (7 samples, 0.02%)</title><rect x="37.7" y="261" width="0.2" height="15.0" fill="rgb(224,97,34)" rx="2" ry="2" />
<text x="40.74" y="271.5" ></text>
</g>
<g >
<title>std::sys::unix::time::inner::Instant::now::h23f1bea5949f1bbd (5 samples, 0.01%)</title><rect x="1162.0" y="293" width="0.1" height="15.0" fill="rgb(208,167,51)" rx="2" ry="2" />
<text x="1165.00" y="303.5" ></text>
</g>
<g >
<title>cranelift_codegen::ir::dfg::DataFlowGraph::make_inst_results::hc774d04d1992dff6 (10 samples, 0.02%)</title><rect x="20.2" y="293" width="0.3" height="15.0" fill="rgb(207,65,27)" rx="2" ry="2" />
<text x="23.25" y="303.5" ></text>
</g>
<g >
<title>cranelift_codegen::ir::dfg::DataFlowGraph::ctrl_typevar::h001f83f02149e995 (7 samples, 0.02%)</title><rect x="164.3" y="277" width="0.2" height="15.0" fill="rgb(217,180,35)" rx="2" ry="2" />
<text x="167.33" y="287.5" ></text>
</g>
<g >
<title>_int_free (4 samples, 0.01%)</title><rect x="16.6" y="229" width="0.1" height="15.0" fill="rgb(242,98,24)" rx="2" ry="2" />
<text x="19.62" y="239.5" ></text>
</g>
<g >
<title>_ZN4core3ptr18real_drop_in_place17hbf1a2e7b1d7f1667E.llvm.2002196175208074555 (6 samples, 0.01%)</title><rect x="812.7" y="341" width="0.1" height="15.0" fill="rgb(236,35,39)" rx="2" ry="2" />
<text x="815.68" y="351.5" ></text>
</g>
<g >
<title>_int_malloc (6 samples, 0.01%)</title><rect x="91.9" y="181" width="0.1" height="15.0" fill="rgb(207,216,44)" rx="2" ry="2" />
<text x="94.86" y="191.5" ></text>
</g>
<g >
<title>cranelift_codegen::isa::TargetIsa::encode::h3618ddf6ad568ce7 (4 samples, 0.01%)</title><rect x="90.0" y="197" width="0.1" height="15.0" fill="rgb(223,163,38)" rx="2" ry="2" />
<text x="93.03" y="207.5" ></text>
</g>
<g >
<title>wasmer_runtime_core::sys::unix::memory::Memory::as_slice_mut::h338d192e91f17a55 (6 samples, 0.01%)</title><rect x="328.0" y="373" width="0.2" height="15.0" fill="rgb(230,217,8)" rx="2" ry="2" />
<text x="331.01" y="383.5" ></text>
</g>
<g >
<title>cranelift_codegen::regalloc::live_value_tracker::LiveValueTracker::process_inst::hcd4ba6fb549516b2 (7 samples, 0.02%)</title><rect x="45.7" y="341" width="0.2" height="15.0" fill="rgb(243,79,20)" rx="2" ry="2" />
<text x="48.71" y="351.5" ></text>
</g>
<g >
<title>__GI___libc_free (284 samples, 0.69%)</title><rect x="1120.6" y="437" width="8.1" height="15.0" fill="rgb(237,121,30)" rx="2" ry="2" />
<text x="1123.62" y="447.5" ></text>
</g>
<g >
<title>wasmparser::parser::Parser::check_section_end::h80796459380c08b2 (567 samples, 1.37%)</title><rect x="493.3" y="357" width="16.2" height="15.0" fill="rgb(252,39,39)" rx="2" ry="2" />
<text x="496.33" y="367.5" ></text>
</g>
<g >
<title>wasmer_runtime_core::instance::Instance::dyn_func::h22490eb4f9ed4dfd (34 samples, 0.08%)</title><rect x="869.2" y="453" width="1.0" height="15.0" fill="rgb(213,154,35)" rx="2" ry="2" />
<text x="872.19" y="463.5" ></text>
</g>
<g >
<title>_ZN16cranelift_entity4list17ListPool$LT$T$GT$4free17hccc32c4538eef572E.llvm.776987249141506950 (7 samples, 0.02%)</title><rect x="164.6" y="261" width="0.2" height="15.0" fill="rgb(214,76,54)" rx="2" ry="2" />
<text x="167.61" y="271.5" ></text>
</g>
<g >
<title>cranelift_codegen::ir::instructions::InstructionData::arguments::h70ecdef19e20b02a (11 samples, 0.03%)</title><rect x="101.4" y="229" width="0.4" height="15.0" fill="rgb(251,102,34)" rx="2" ry="2" />
<text x="104.45" y="239.5" ></text>
</g>
<g >
<title>__GI___libc_free (10 samples, 0.02%)</title><rect x="256.8" y="373" width="0.3" height="15.0" fill="rgb(248,131,13)" rx="2" ry="2" />
<text x="259.77" y="383.5" ></text>
</g>
<g >
<title>sys_mmap_pgoff (165 samples, 0.40%)</title><rect x="345.1" y="293" width="4.7" height="15.0" fill="rgb(241,171,3)" rx="2" ry="2" />
<text x="348.05" y="303.5" ></text>
</g>
<g >
<title>_$LT$hashbrown..raw..RawTable$LT$T$GT$$u20$as$u20$core..ops..drop..Drop$GT$::drop::h39a7212219667534 (6 samples, 0.01%)</title><rect x="225.6" y="437" width="0.2" height="15.0" fill="rgb(214,162,16)" rx="2" ry="2" />
<text x="228.60" y="447.5" ></text>
</g>
<g >
<title>__GI___libc_realloc (6 samples, 0.01%)</title><rect x="324.0" y="341" width="0.2" height="15.0" fill="rgb(207,63,7)" rx="2" ry="2" />
<text x="326.99" y="351.5" ></text>
</g>
<g >
<title>cranelift_bforest::path::Path$LT$F$GT$::first::h9b45f6bc4766aeed (4 samples, 0.01%)</title><rect x="110.7" y="261" width="0.1" height="15.0" fill="rgb(239,86,51)" rx="2" ry="2" />
<text x="113.72" y="271.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (190 samples, 0.46%)</title><rect x="344.3" y="341" width="5.5" height="15.0" fill="rgb(229,48,29)" rx="2" ry="2" />
<text x="347.34" y="351.5" ></text>
</g>
<g >
<title>cranelift_codegen::regalloc::context::Context::clear::h0291bd2ef9522314 (9 samples, 0.02%)</title><rect x="312.2" y="357" width="0.3" height="15.0" fill="rgb(245,225,51)" rx="2" ry="2" />
<text x="315.20" y="367.5" ></text>
</g>
<g >
<title>_$LT$hashbrown..raw..RawTable$LT$T$GT$$u20$as$u20$core..ops..drop..Drop$GT$::drop::hef6aaa8d561267ad (296 samples, 0.72%)</title><rect x="360.1" y="389" width="8.5" height="15.0" fill="rgb(248,192,24)" rx="2" ry="2" />
<text x="363.15" y="399.5" ></text>
</g>
<g >
<title>_$LT$cranelift_codegen..timing..details..TimingToken$u20$as$u20$core..ops..drop..Drop$GT$::drop::h1b19c2a93ee0a091 (5 samples, 0.01%)</title><rect x="1155.3" y="325" width="0.1" height="15.0" fill="rgb(215,228,11)" rx="2" ry="2" />
<text x="1158.29" y="335.5" ></text>
</g>
<g >
<title>cranelift_codegen::ir::instructions::InstructionData::arguments::h70ecdef19e20b02a (8 samples, 0.02%)</title><rect x="45.0" y="341" width="0.2" height="15.0" fill="rgb(249,82,28)" rx="2" ry="2" />
<text x="47.99" y="351.5" ></text>
</g>
<g >
<title>_int_malloc (6 samples, 0.01%)</title><rect x="257.1" y="357" width="0.2" height="15.0" fill="rgb(207,23,38)" rx="2" ry="2" />
<text x="260.11" y="367.5" ></text>
</g>
<g >
<title>alloc::raw_vec::RawVec$LT$T$C$A$GT$::reserve::h5e34cfad90a6ce21 (4 samples, 0.01%)</title><rect x="1179.9" y="357" width="0.1" height="15.0" fill="rgb(232,99,1)" rx="2" ry="2" />
<text x="1182.92" y="367.5" ></text>
</g>
<g >
<title>_int_malloc (11 samples, 0.03%)</title><rect x="13.7" y="309" width="0.3" height="15.0" fill="rgb(235,100,37)" rx="2" ry="2" />
<text x="16.71" y="319.5" ></text>
</g>
<g >
<title>std::sys::unix::time::inner::now::ha10452f37b2930c5 (7 samples, 0.02%)</title><rect x="116.2" y="229" width="0.2" height="15.0" fill="rgb(237,154,26)" rx="2" ry="2" />
<text x="119.20" y="239.5" ></text>
</g>
<g >
<title>cranelift_codegen::regalloc::solver::Solver::schedule_moves::h81b194ab48ac25d3 (4 samples, 0.01%)</title><rect x="1172.8" y="357" width="0.2" height="15.0" fill="rgb(220,90,51)" rx="2" ry="2" />
<text x="1175.85" y="367.5" ></text>
</g>
<g >
<title>_$LT$cranelift_codegen..timing..details..TimingToken$u20$as$u20$core..ops..drop..Drop$GT$::drop::h1b19c2a93ee0a091 (11 samples, 0.03%)</title><rect x="122.3" y="277" width="0.3" height="15.0" fill="rgb(237,28,12)" rx="2" ry="2" />
<text x="125.25" y="287.5" ></text>
</g>
<g >
<title>core::ptr::real_drop_in_place::h7fa7a2046fdc054a (17 samples, 0.04%)</title><rect x="177.8" y="357" width="0.5" height="15.0" fill="rgb(231,84,35)" rx="2" ry="2" />
<text x="180.83" y="367.5" ></text>
</g>
<g >
<title>hashbrown::raw::capacity_to_buckets::hf5c44c5afd412277 (17 samples, 0.04%)</title><rect x="654.3" y="325" width="0.5" height="15.0" fill="rgb(222,199,33)" rx="2" ry="2" />
<text x="657.30" y="335.5" ></text>
</g>
<g >
<title>malloc_consolidate (33 samples, 0.08%)</title><rect x="871.3" y="389" width="1.0" height="15.0" fill="rgb(241,228,52)" rx="2" ry="2" />
<text x="874.33" y="399.5" ></text>
</g>
<g >
<title>_ZN4core3ptr18real_drop_in_place17hbf1a2e7b1d7f1667E.llvm.2002196175208074555 (293 samples, 0.71%)</title><rect x="495.4" y="341" width="8.3" height="15.0" fill="rgb(230,112,23)" rx="2" ry="2" />
<text x="498.38" y="351.5" ></text>
</g>
<g >
<title>std::sys::unix::time::inner::now::ha10452f37b2930c5 (17 samples, 0.04%)</title><rect x="111.6" y="245" width="0.4" height="15.0" fill="rgb(237,105,45)" rx="2" ry="2" />
<text x="114.55" y="255.5" ></text>
</g>
<g >
<title>memcpy_erms (10 samples, 0.02%)</title><rect x="339.8" y="197" width="0.3" height="15.0" fill="rgb(231,35,40)" rx="2" ry="2" />
<text x="342.83" y="207.5" ></text>
</g>
<g >
<title>__GI___libc_malloc (5 samples, 0.01%)</title><rect x="306.5" y="357" width="0.1" height="15.0" fill="rgb(229,62,20)" rx="2" ry="2" />
<text x="309.49" y="367.5" ></text>
</g>
<g >
<title>hashbrown::rustc_entry::_$LT$impl$u20$hashbrown..map..HashMap$LT$K$C$V$C$S$GT$$GT$::rustc_entry::h0c810357b190d293 (15 samples, 0.04%)</title><rect x="68.0" y="261" width="0.4" height="15.0" fill="rgb(224,28,38)" rx="2" ry="2" />
<text x="71.00" y="271.5" ></text>
</g>
<g >
<title>_int_free (9 samples, 0.02%)</title><rect x="180.3" y="309" width="0.3" height="15.0" fill="rgb(251,141,7)" rx="2" ry="2" />
<text x="183.31" y="319.5" ></text>
</g>
<g >
<title>std::sys::unix::alloc::_$LT$impl$u20$core..alloc..GlobalAlloc$u20$for$u20$std..alloc..System$GT$::realloc::h1ccdfac189eaabae (7 samples, 0.02%)</title><rect x="1048.9" y="389" width="0.2" height="15.0" fill="rgb(254,193,5)" rx="2" ry="2" />
<text x="1051.92" y="399.5" ></text>
</g>
<g >
<title>std::time::Instant::now::h33d2ba6042def2d2 (6 samples, 0.01%)</title><rect x="1166.8" y="341" width="0.1" height="15.0" fill="rgb(227,99,24)" rx="2" ry="2" />
<text x="1169.77" y="351.5" ></text>
</g>
<g >
<title>cranelift_codegen::ir::dfg::DataFlowGraph::value_def::h33b3e43a06ac9a1f (4 samples, 0.01%)</title><rect x="87.1" y="229" width="0.1" height="15.0" fill="rgb(217,91,9)" rx="2" ry="2" />
<text x="90.12" y="239.5" ></text>
</g>
<g >
<title>alloc::raw_vec::RawVec$LT$T$C$A$GT$::reserve::hcf362473d68b86cf (400 samples, 0.97%)</title><rect x="660.6" y="357" width="11.4" height="15.0" fill="rgb(218,20,13)" rx="2" ry="2" />
<text x="663.61" y="367.5" ></text>
</g>
<g >
<title>alloc::raw_vec::RawVec$LT$T$C$A$GT$::reserve::hbea2e111e8f00580 (24 samples, 0.06%)</title><rect x="805.7" y="341" width="0.6" height="15.0" fill="rgb(234,10,8)" rx="2" ry="2" />
<text x="808.66" y="351.5" ></text>
</g>
<g >
<title>perf_iterate_ctx (88 samples, 0.21%)</title><rect x="334.5" y="245" width="2.6" height="15.0" fill="rgb(209,181,24)" rx="2" ry="2" />
<text x="337.55" y="255.5" ></text>
</g>
<g >
<title>alloc::raw_vec::RawVec$LT$T$C$A$GT$::reserve::h5bb4661d248be310 (17 samples, 0.04%)</title><rect x="202.9" y="261" width="0.4" height="15.0" fill="rgb(249,187,27)" rx="2" ry="2" />
<text x="205.86" y="271.5" ></text>
</g>
<g >
<title>cranelift_entity::list::EntityList$LT$T$GT$::push::h051541d55e7ee057 (48 samples, 0.12%)</title><rect x="321.7" y="357" width="1.4" height="15.0" fill="rgb(214,165,24)" rx="2" ry="2" />
<text x="324.70" y="367.5" ></text>
</g>
<g >
<title>c2_chacha::guts::refill_wide::impl_avx2::hcbb75f7591de3cb9 (13 samples, 0.03%)</title><rect x="1144.0" y="421" width="0.4" height="15.0" fill="rgb(252,86,44)" rx="2" ry="2" />
<text x="1147.05" y="431.5" ></text>
</g>
<g >
<title>__mmap (6 samples, 0.01%)</title><rect x="187.0" y="197" width="0.2" height="15.0" fill="rgb(229,41,18)" rx="2" ry="2" />
<text x="189.99" y="207.5" ></text>
</g>
<g >
<title>std::sys::unix::time::inner::Instant::now::h23f1bea5949f1bbd (6 samples, 0.01%)</title><rect x="117.0" y="245" width="0.1" height="15.0" fill="rgb(212,119,39)" rx="2" ry="2" />
<text x="119.97" y="255.5" ></text>
</g>
<g >
<title>__GI___libc_free (4 samples, 0.01%)</title><rect x="242.3" y="389" width="0.1" height="15.0" fill="rgb(243,122,52)" rx="2" ry="2" />
<text x="245.30" y="399.5" ></text>
</g>
<g >
<title>__GI___libc_malloc (6 samples, 0.01%)</title><rect x="43.2" y="277" width="0.2" height="15.0" fill="rgb(213,109,5)" rx="2" ry="2" />
<text x="46.22" y="287.5" ></text>
</g>
<g >
<title>__GI___clock_gettime (6 samples, 0.01%)</title><rect x="1159.5" y="261" width="0.2" height="15.0" fill="rgb(252,154,25)" rx="2" ry="2" />
<text x="1162.52" y="271.5" ></text>
</g>
<g >
<title>_int_realloc (5 samples, 0.01%)</title><rect x="1178.8" y="293" width="0.2" height="15.0" fill="rgb(214,80,45)" rx="2" ry="2" />
<text x="1181.81" y="303.5" ></text>
</g>
<g >
<title>__GI___libc_free (34 samples, 0.08%)</title><rect x="178.4" y="341" width="0.9" height="15.0" fill="rgb(247,138,13)" rx="2" ry="2" />
<text x="181.37" y="351.5" ></text>
</g>
<g >
<title>wasmer_clif_backend::get_isa::he894f6446deff718 (64 samples, 0.15%)</title><rect x="350.0" y="389" width="1.8" height="15.0" fill="rgb(239,159,30)" rx="2" ry="2" />
<text x="352.96" y="399.5" ></text>
</g>
<g >
<title>hashbrown::map::HashMap$LT$K$C$V$C$S$GT$::contains_key::h6a246e820911d2be (5 samples, 0.01%)</title><rect x="870.0" y="421" width="0.2" height="15.0" fill="rgb(241,210,8)" rx="2" ry="2" />
<text x="873.02" y="431.5" ></text>
</g>
<g >
<title>std::time::Instant::now::h33d2ba6042def2d2 (4 samples, 0.01%)</title><rect x="163.0" y="245" width="0.1" height="15.0" fill="rgb(231,167,47)" rx="2" ry="2" />
<text x="165.98" y="255.5" ></text>
</g>
<g >
<title>alloc::borrow::Cow$LT$B$GT$::to_mut::hc816a9c98cae5186 (7 samples, 0.02%)</title><rect x="1176.1" y="341" width="0.2" height="15.0" fill="rgb(233,194,4)" rx="2" ry="2" />
<text x="1179.13" y="351.5" ></text>
</g>
<g >
<title>wasmer_clif_backend::signal::unix::call_protected::h998ed36d6bf840fc (9 samples, 0.02%)</title><rect x="198.5" y="213" width="0.3" height="15.0" fill="rgb(212,107,18)" rx="2" ry="2" />
<text x="201.55" y="223.5" ></text>
</g>
<g >
<title>wasmer_runtime::compile_with_config::h3146f6a9cd30dfc8 (214 samples, 0.52%)</title><rect x="1170.0" y="501" width="6.1" height="15.0" fill="rgb(219,214,32)" rx="2" ry="2" />
<text x="1173.02" y="511.5" ></text>
</g>
<g >
<title>std::sys::unix::alloc::_$LT$impl$u20$core..alloc..GlobalAlloc$u20$for$u20$std..alloc..System$GT$::dealloc::h000dc0e1d3b4be28 (7 samples, 0.02%)</title><rect x="509.2" y="325" width="0.2" height="15.0" fill="rgb(254,124,43)" rx="2" ry="2" />
<text x="512.19" y="335.5" ></text>
</g>
<g >
<title>cranelift_codegen::isa::enc_tables::lookup_enclist::h59f3ade65a5e8b68 (19 samples, 0.05%)</title><rect x="32.0" y="325" width="0.5" height="15.0" fill="rgb(232,148,47)" rx="2" ry="2" />
<text x="35.01" y="335.5" ></text>
</g>
<g >
<title>std::sys::unix::time::inner::Instant::now::h23f1bea5949f1bbd (7 samples, 0.02%)</title><rect x="36.2" y="325" width="0.2" height="15.0" fill="rgb(233,41,8)" rx="2" ry="2" />
<text x="39.17" y="335.5" ></text>
</g>
<g >
<title>wasmer_clif_backend::signal::unix::call_protected::h998ed36d6bf840fc (230 samples, 0.56%)</title><rect x="862.4" y="373" width="6.5" height="15.0" fill="rgb(240,115,8)" rx="2" ry="2" />
<text x="865.37" y="383.5" ></text>
</g>
<g >
<title>std::time::Instant::now::h33d2ba6042def2d2 (7 samples, 0.02%)</title><rect x="171.3" y="277" width="0.2" height="15.0" fill="rgb(247,25,18)" rx="2" ry="2" />
<text x="174.29" y="287.5" ></text>
</g>
<g >
<title>cranelift_codegen::regalloc::coalescing::Coalescing::conventional_ssa::h25e21334b716fc0d (19 samples, 0.05%)</title><rect x="38.7" y="357" width="0.5" height="15.0" fill="rgb(207,114,6)" rx="2" ry="2" />
<text x="41.68" y="367.5" ></text>
</g>
<g >
<title>cranelift_codegen::context::Context::compile_and_emit::h5499205207e7951f (214 samples, 0.52%)</title><rect x="1170.0" y="421" width="6.1" height="15.0" fill="rgb(242,2,5)" rx="2" ry="2" />
<text x="1173.02" y="431.5" ></text>
</g>
<g >
<title>std::sys::unix::time::inner::now::ha10452f37b2930c5 (5 samples, 0.01%)</title><rect x="51.7" y="277" width="0.1" height="15.0" fill="rgb(234,197,15)" rx="2" ry="2" />
<text x="54.70" y="287.5" ></text>
</g>
<g >
<title>arch_get_unmapped_area_topdown (15 samples, 0.04%)</title><rect x="291.3" y="229" width="0.4" height="15.0" fill="rgb(208,148,54)" rx="2" ry="2" />
<text x="294.28" y="239.5" ></text>
</g>
<g >
<title>__sigjmp_save (194 samples, 0.47%)</title><rect x="863.3" y="357" width="5.6" height="15.0" fill="rgb(211,163,39)" rx="2" ry="2" />
<text x="866.34" y="367.5" ></text>
</g>
<g >
<title>_int_malloc (8 samples, 0.02%)</title><rect x="72.6" y="197" width="0.2" height="15.0" fill="rgb(251,46,16)" rx="2" ry="2" />
<text x="75.59" y="207.5" ></text>
</g>
<g >
<title>alloc::raw_vec::RawVec$LT$T$C$A$GT$::reserve::hd6c8f26eb3c9fb4b (19 samples, 0.05%)</title><rect x="157.8" y="245" width="0.5" height="15.0" fill="rgb(217,107,33)" rx="2" ry="2" />
<text x="160.76" y="255.5" ></text>
</g>
<g >
<title>cranelift_codegen::regalloc::coloring::Context::program_input_abi::h34ced53bbc43d7b1 (10 samples, 0.02%)</title><rect x="1172.6" y="357" width="0.2" height="15.0" fill="rgb(251,42,44)" rx="2" ry="2" />
<text x="1175.56" y="367.5" ></text>
</g>
<g >
<title>_$LT$wasmer_clif_backend..code..CraneliftModuleCodeGenerator$u20$as$u20$wasmer_runtime_core..codegen..ModuleCodeGenerator$LT$wasmer_clif_backend..code..CraneliftFunctionCodeGenerator$C$wasmer_clif_backend..signal..Caller$C$wasmer_clif_backend..code..CodegenError$GT$$GT$::finalize::hbd8b1f6eb4859c5a (40 samples, 0.10%)</title><rect x="186.0" y="245" width="1.2" height="15.0" fill="rgb(212,175,23)" rx="2" ry="2" />
<text x="189.05" y="255.5" ></text>
</g>
<g >
<title>__GI___libc_malloc (5 samples, 0.01%)</title><rect x="256.5" y="357" width="0.1" height="15.0" fill="rgb(235,25,26)" rx="2" ry="2" />
<text x="259.46" y="367.5" ></text>
</g>
<g >
<title>_ZN4core3ptr18real_drop_in_place17h8f5edcc205986b39E.llvm.4989837014162833530 (192 samples, 0.46%)</title><rect x="175.1" y="373" width="5.5" height="15.0" fill="rgb(206,168,5)" rx="2" ry="2" />
<text x="178.11" y="383.5" ></text>
</g>
<g >
<title>__GI___libc_malloc (7 samples, 0.02%)</title><rect x="141.0" y="213" width="0.2" height="15.0" fill="rgb(222,124,36)" rx="2" ry="2" />
<text x="143.98" y="223.5" ></text>
</g>
<g >
<title>alloc::vec::Vec$LT$T$GT$::resize::h9160379633033fa6 (7 samples, 0.02%)</title><rect x="138.1" y="245" width="0.2" height="15.0" fill="rgb(217,23,4)" rx="2" ry="2" />
<text x="141.12" y="255.5" ></text>
</g>
<g >
<title>_copy_to_user (9 samples, 0.02%)</title><rect x="1187.7" y="437" width="0.3" height="15.0" fill="rgb(205,31,14)" rx="2" ry="2" />
<text x="1190.75" y="447.5" ></text>
</g>
<g >
<title>__rdl_alloc (10 samples, 0.02%)</title><rect x="618.0" y="357" width="0.3" height="15.0" fill="rgb(209,180,4)" rx="2" ry="2" />
<text x="621.00" y="367.5" ></text>
</g>
<g >
<title>__ieee754_exp_avx (7 samples, 0.02%)</title><rect x="199.1" y="293" width="0.2" height="15.0" fill="rgb(229,29,1)" rx="2" ry="2" />
<text x="202.09" y="303.5" ></text>
</g>
<g >
<title>cranelift_codegen::regalloc::coloring::Context::visit_inst::h157ddbfc9a018b2b (52 samples, 0.13%)</title><rect x="1176.8" y="389" width="1.5" height="15.0" fill="rgb(241,211,21)" rx="2" ry="2" />
<text x="1179.79" y="399.5" ></text>
</g>
<g >
<title>_int_malloc (127 samples, 0.31%)</title><rect x="1036.6" y="389" width="3.6" height="15.0" fill="rgb(254,172,14)" rx="2" ry="2" />
<text x="1039.59" y="399.5" ></text>
</g>
<g >
<title>hashbrown::map::HashMap$LT$K$C$V$C$S$GT$::insert::h7f71a0adc74f5535 (958 samples, 2.32%)</title><rect x="627.4" y="373" width="27.4" height="15.0" fill="rgb(205,217,2)" rx="2" ry="2" />
<text x="630.44" y="383.5" >h..</text>
</g>
<g >
<title>do_page_fault (121 samples, 0.29%)</title><rect x="302.9" y="341" width="3.4" height="15.0" fill="rgb(244,96,36)" rx="2" ry="2" />
<text x="305.90" y="351.5" ></text>
</g>
<g >
<title>_int_free (11 samples, 0.03%)</title><rect x="163.5" y="261" width="0.3" height="15.0" fill="rgb(249,92,54)" rx="2" ry="2" />
<text x="166.53" y="271.5" ></text>
</g>
<g >
<title>__GI___libc_malloc (4 samples, 0.01%)</title><rect x="136.3" y="197" width="0.1" height="15.0" fill="rgb(206,49,31)" rx="2" ry="2" />
<text x="139.33" y="207.5" ></text>
</g>
<g >
<title>do_syscall_64 (301 samples, 0.73%)</title><rect x="1181.0" y="453" width="8.6" height="15.0" fill="rgb(253,185,35)" rx="2" ry="2" />
<text x="1183.98" y="463.5" ></text>
</g>
<g >
<title>__GI___libc_malloc (8 samples, 0.02%)</title><rect x="810.1" y="341" width="0.3" height="15.0" fill="rgb(212,44,14)" rx="2" ry="2" />
<text x="813.14" y="351.5" ></text>
</g>
<g >
<title>__GI___libc_malloc (5 samples, 0.01%)</title><rect x="814.3" y="357" width="0.2" height="15.0" fill="rgb(245,109,32)" rx="2" ry="2" />
<text x="817.33" y="367.5" ></text>
</g>
<g >
<title>_$LT$wasmer_runtime_core..sys..unix..memory..Memory$u20$as$u20$core..ops..drop..Drop$GT$::drop::h019b69b880433af9 (322 samples, 0.78%)</title><rect x="226.9" y="389" width="9.2" height="15.0" fill="rgb(250,14,1)" rx="2" ry="2" />
<text x="229.89" y="399.5" ></text>
</g>
<g >
<title>alloc::raw_vec::RawVec$LT$T$C$A$GT$::reserve::h5e34cfad90a6ce21 (4 samples, 0.01%)</title><rect x="1176.0" y="341" width="0.1" height="15.0" fill="rgb(208,118,22)" rx="2" ry="2" />
<text x="1179.01" y="351.5" ></text>
</g>
<g >
<title>__GI___libc_malloc (6 samples, 0.01%)</title><rect x="812.2" y="341" width="0.1" height="15.0" fill="rgb(241,168,15)" rx="2" ry="2" />
<text x="815.16" y="351.5" ></text>
</g>
<g >
<title>__munmap (5 samples, 0.01%)</title><rect x="185.6" y="245" width="0.1" height="15.0" fill="rgb(237,126,29)" rx="2" ry="2" />
<text x="188.56" y="255.5" ></text>
</g>
<g >
<title>_int_malloc (4 samples, 0.01%)</title><rect x="148.3" y="181" width="0.1" height="15.0" fill="rgb(234,124,18)" rx="2" ry="2" />
<text x="151.28" y="191.5" ></text>
</g>
<g >
<title>cranelift_codegen::context::Context::new::hb2c1be51d6979949 (70 samples, 0.17%)</title><rect x="172.3" y="389" width="2.0" height="15.0" fill="rgb(209,84,28)" rx="2" ry="2" />
<text x="175.29" y="399.5" ></text>
</g>
<g >
<title>__GI___libc_malloc (15 samples, 0.04%)</title><rect x="130.7" y="229" width="0.4" height="15.0" fill="rgb(231,42,2)" rx="2" ry="2" />
<text x="133.67" y="239.5" ></text>
</g>
<g >
<title>_int_realloc (11 samples, 0.03%)</title><rect x="148.1" y="197" width="0.3" height="15.0" fill="rgb(232,38,30)" rx="2" ry="2" />
<text x="151.08" y="207.5" ></text>
</g>
<g >
<title>__rust_alloc (5 samples, 0.01%)</title><rect x="479.1" y="341" width="0.1" height="15.0" fill="rgb(214,173,6)" rx="2" ry="2" />
<text x="482.05" y="351.5" ></text>
</g>
<g >
<title>alloc::raw_vec::RawVec$LT$T$C$A$GT$::reserve::h500ef385b8747b29 (7 samples, 0.02%)</title><rect x="1177.4" y="325" width="0.2" height="15.0" fill="rgb(235,175,14)" rx="2" ry="2" />
<text x="1180.38" y="335.5" ></text>
</g>
<g >
<title>cranelift_codegen::regalloc::context::Context::clear::h0291bd2ef9522314 (11 samples, 0.03%)</title><rect x="64.0" y="309" width="0.3" height="15.0" fill="rgb(233,67,15)" rx="2" ry="2" />
<text x="67.00" y="319.5" ></text>
</g>
<g >
<title>std::time::Instant::now::h33d2ba6042def2d2 (5 samples, 0.01%)</title><rect x="1171.2" y="357" width="0.1" height="15.0" fill="rgb(217,37,41)" rx="2" ry="2" />
<text x="1174.19" y="367.5" ></text>
</g>
<g >
<title>tlb_finish_mmu (63 samples, 0.15%)</title><rect x="238.3" y="293" width="1.8" height="15.0" fill="rgb(229,123,13)" rx="2" ry="2" />
<text x="241.28" y="303.5" ></text>
</g>
<g >
<title>__munmap (7 samples, 0.02%)</title><rect x="185.4" y="213" width="0.2" height="15.0" fill="rgb(220,97,16)" rx="2" ry="2" />
<text x="188.36" y="223.5" ></text>
</g>
<g >
<title>perf_iterate_ctx (110 samples, 0.27%)</title><rect x="293.0" y="197" width="3.2" height="15.0" fill="rgb(218,193,51)" rx="2" ry="2" />
<text x="296.05" y="207.5" ></text>
</g>
<g >
<title>pagevec_lru_move_fn (31 samples, 0.07%)</title><rect x="230.9" y="229" width="0.9" height="15.0" fill="rgb(242,127,0)" rx="2" ry="2" />
<text x="233.88" y="239.5" ></text>
</g>
<g >
<title>_int_malloc (4 samples, 0.01%)</title><rect x="851.4" y="405" width="0.2" height="15.0" fill="rgb(215,188,8)" rx="2" ry="2" />
<text x="854.44" y="415.5" ></text>
</g>
<g >
<title>wasmer_clif_fork_wasm::state::func_state::FuncTranslationState::initialize::h647245500dff39f8 (24 samples, 0.06%)</title><rect x="809.9" y="373" width="0.7" height="15.0" fill="rgb(236,131,29)" rx="2" ry="2" />
<text x="812.88" y="383.5" ></text>
</g>
<g >
<title>__GI___clock_gettime (4 samples, 0.01%)</title><rect x="1161.1" y="293" width="0.1" height="15.0" fill="rgb(214,33,30)" rx="2" ry="2" />
<text x="1164.09" y="303.5" ></text>
</g>
<g >
<title>__perf_event_header__init_id (7 samples, 0.02%)</title><rect x="268.4" y="197" width="0.2" height="15.0" fill="rgb(227,42,2)" rx="2" ry="2" />
<text x="271.45" y="207.5" ></text>
</g>
<g >
<title>alloc::raw_vec::RawVec$LT$T$C$A$GT$::reserve::hd6c8f26eb3c9fb4b (14 samples, 0.03%)</title><rect x="1155.9" y="309" width="0.4" height="15.0" fill="rgb(208,107,30)" rx="2" ry="2" />
<text x="1158.92" y="319.5" ></text>
</g>
<g >
<title>kmem_cache_alloc (16 samples, 0.04%)</title><rect x="292.2" y="229" width="0.4" height="15.0" fill="rgb(227,52,52)" rx="2" ry="2" />
<text x="295.19" y="239.5" ></text>
</g>
<g >
<title>std::panicking::try::do_call::h631c6408dfccc6f5 (6 samples, 0.01%)</title><rect x="1167.2" y="437" width="0.1" height="15.0" fill="rgb(205,174,19)" rx="2" ry="2" />
<text x="1170.17" y="447.5" ></text>
</g>
<g >
<title>cranelift_codegen::regalloc::context::Context::run::hacf4bbc8f4d0071a (75 samples, 0.18%)</title><rect x="1167.9" y="309" width="2.1" height="15.0" fill="rgb(224,140,10)" rx="2" ry="2" />
<text x="1170.88" y="319.5" ></text>
</g>
<g >
<title>_$LT$cranelift_codegen..timing..details..TimingToken$u20$as$u20$core..ops..drop..Drop$GT$::drop::h1b19c2a93ee0a091 (4 samples, 0.01%)</title><rect x="106.6" y="277" width="0.2" height="15.0" fill="rgb(245,210,47)" rx="2" ry="2" />
<text x="109.64" y="287.5" ></text>
</g>
<g >
<title>cranelift_codegen::stack_layout::layout_stack::h292a1cd27b02b094 (6 samples, 0.01%)</title><rect x="1157.3" y="309" width="0.1" height="15.0" fill="rgb(252,194,4)" rx="2" ry="2" />
<text x="1160.26" y="319.5" ></text>
</g>
<g >
<title>__memcpy_sse2 (67 samples, 0.16%)</title><rect x="1087.8" y="389" width="1.9" height="15.0" fill="rgb(242,72,22)" rx="2" ry="2" />
<text x="1090.76" y="399.5" ></text>
</g>
<g >
<title>_ZN81_$LT$std..collections..hash..map..DefaultHasher$u20$as$u20$core..hash..Hasher$GT$5write17hce30e4f96ad2e64eE.llvm.689856235829814499 (6 samples, 0.01%)</title><rect x="325.2" y="357" width="0.2" height="15.0" fill="rgb(224,166,12)" rx="2" ry="2" />
<text x="328.21" y="367.5" ></text>
</g>
<g >
<title>_int_free (5 samples, 0.01%)</title><rect x="1169.5" y="213" width="0.2" height="15.0" fill="rgb(228,68,13)" rx="2" ry="2" />
<text x="1172.54" y="223.5" ></text>
</g>
<g >
<title>wasmparser::parser::Parser::check_section_end::h80796459380c08b2 (16 samples, 0.04%)</title><rect x="190.1" y="197" width="0.5" height="15.0" fill="rgb(216,153,30)" rx="2" ry="2" />
<text x="193.10" y="207.5" ></text>
</g>
<g >
<title>_$LT$alloc..vec..Vec$LT$T$GT$$u20$as$u20$core..clone..Clone$GT$::clone::hd7b91bbd77a11ec1 (5 samples, 0.01%)</title><rect x="256.6" y="373" width="0.2" height="15.0" fill="rgb(205,158,51)" rx="2" ry="2" />
<text x="259.63" y="383.5" ></text>
</g>
<g >
<title>cranelift_codegen::abi::legalize_args::he47515d3a3ad0ee6 (9 samples, 0.02%)</title><rect x="1170.4" y="325" width="0.3" height="15.0" fill="rgb(229,147,45)" rx="2" ry="2" />
<text x="1173.42" y="335.5" ></text>
</g>
<g >
<title>cranelift_codegen::regalloc::solver::Solver::reassign_in::h4635b38f4d433603 (4 samples, 0.01%)</title><rect x="45.6" y="325" width="0.1" height="15.0" fill="rgb(231,136,24)" rx="2" ry="2" />
<text x="48.59" y="335.5" ></text>
</g>
<g >
<title>__GI___clock_gettime (5 samples, 0.01%)</title><rect x="1162.0" y="261" width="0.1" height="15.0" fill="rgb(244,213,45)" rx="2" ry="2" />
<text x="1165.00" y="271.5" ></text>
</g>
<g >
<title>cranelift_codegen::isa::x86::settings::Flags::new::hb176e87743e4d4a7 (7 samples, 0.02%)</title><rect x="351.0" y="341" width="0.2" height="15.0" fill="rgb(222,93,29)" rx="2" ry="2" />
<text x="354.02" y="351.5" ></text>
</g>
<g >
<title>__vma_rb_erase (4 samples, 0.01%)</title><rect x="288.2" y="229" width="0.1" height="15.0" fill="rgb(234,228,34)" rx="2" ry="2" />
<text x="291.22" y="239.5" ></text>
</g>
<g >
<title>_int_free (7 samples, 0.02%)</title><rect x="1110.3" y="421" width="0.2" height="15.0" fill="rgb(223,60,33)" rx="2" ry="2" />
<text x="1113.25" y="431.5" ></text>
</g>
<g >
<title>rayon::iter::collect::_$LT$impl$u20$rayon..iter..ParallelExtend$LT$T$GT$$u20$for$u20$alloc..vec..Vec$LT$T$GT$$GT$::par_extend::h1ed47f20ca241bcf (93 samples, 0.22%)</title><rect x="1167.4" y="469" width="2.6" height="15.0" fill="rgb(247,139,52)" rx="2" ry="2" />
<text x="1170.37" y="479.5" ></text>
</g>
<g >
<title>__rust_alloc (7 samples, 0.02%)</title><rect x="279.1" y="373" width="0.2" height="15.0" fill="rgb(234,8,54)" rx="2" ry="2" />
<text x="282.15" y="383.5" ></text>
</g>
<g >
<title>std::sys::unix::time::inner::Instant::now::h23f1bea5949f1bbd (6 samples, 0.01%)</title><rect x="115.1" y="229" width="0.2" height="15.0" fill="rgb(229,65,19)" rx="2" ry="2" />
<text x="118.12" y="239.5" ></text>
</g>
<g >
<title>alloc::raw_vec::RawVec$LT$T$C$A$GT$::reserve::hd6c8f26eb3c9fb4b (5 samples, 0.01%)</title><rect x="1179.7" y="357" width="0.2" height="15.0" fill="rgb(242,118,43)" rx="2" ry="2" />
<text x="1182.72" y="367.5" ></text>
</g>
<g >
<title>perf_event_mmap_output (26 samples, 0.06%)</title><rect x="286.9" y="213" width="0.7" height="15.0" fill="rgb(207,87,14)" rx="2" ry="2" />
<text x="289.88" y="223.5" ></text>
</g>
<g >
<title>wasmer_clif_backend::resolver::FuncResolverBuilder::finalize::h91eab78c48207186 (471 samples, 1.14%)</title><rect x="256.3" y="389" width="13.4" height="15.0" fill="rgb(234,133,20)" rx="2" ry="2" />
<text x="259.26" y="399.5" ></text>
</g>
<g >
<title>_int_realloc (28 samples, 0.07%)</title><rect x="146.8" y="197" width="0.8" height="15.0" fill="rgb(226,177,5)" rx="2" ry="2" />
<text x="149.80" y="207.5" ></text>
</g>
<g >
<title>alloc_pages_vma (31 samples, 0.07%)</title><rect x="304.6" y="277" width="0.9" height="15.0" fill="rgb(245,160,42)" rx="2" ry="2" />
<text x="307.58" y="287.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 (3,982 samples, 9.63%)</title><rect x="58.6" y="341" width="113.6" height="15.0" fill="rgb(214,15,11)" rx="2" ry="2" />
<text x="61.58" y="351.5" >core::ops::fun..</text>
</g>
<g >
<title>alloc::raw_vec::RawVec$LT$T$C$A$GT$::reserve::h0c445b41f7c28667 (6 samples, 0.01%)</title><rect x="1176.5" y="357" width="0.2" height="15.0" fill="rgb(251,168,21)" rx="2" ry="2" />
<text x="1179.50" y="367.5" ></text>
</g>
<g >
<title>change_protection (85 samples, 0.21%)</title><rect x="330.9" y="261" width="2.4" height="15.0" fill="rgb(243,120,45)" rx="2" ry="2" />
<text x="333.89" y="271.5" ></text>
</g>
<g >
<title>mmap_region (118 samples, 0.29%)</title><rect x="346.1" y="245" width="3.4" height="15.0" fill="rgb(224,78,43)" rx="2" ry="2" />
<text x="349.14" y="255.5" ></text>
</g>
<g >
<title>perf_iterate_sb (81 samples, 0.20%)</title><rect x="346.9" y="213" width="2.3" height="15.0" fill="rgb(254,15,46)" rx="2" ry="2" />
<text x="349.91" y="223.5" ></text>
</g>
<g >
<title>alloc::raw_vec::RawVec$LT$T$C$A$GT$::reserve::hec416ca773dba9b8 (7 samples, 0.02%)</title><rect x="306.7" y="373" width="0.2" height="15.0" fill="rgb(244,153,43)" rx="2" ry="2" />
<text x="309.66" y="383.5" ></text>
</g>
<g >
<title>_int_malloc (4 samples, 0.01%)</title><rect x="14.9" y="293" width="0.1" height="15.0" fill="rgb(214,221,6)" rx="2" ry="2" />
<text x="17.85" y="303.5" ></text>
</g>
<g >
<title>_int_realloc (5 samples, 0.01%)</title><rect x="1179.7" y="325" width="0.2" height="15.0" fill="rgb(253,155,17)" rx="2" ry="2" />
<text x="1182.72" y="335.5" ></text>
</g>
<g >
<title>_$LT$wasmparser..parser..Parser$u20$as$u20$wasmparser..parser..WasmDecoder$GT$::read::h34b06bb75da62f27 (5,864 samples, 14.18%)</title><rect x="402.5" y="373" width="167.4" height="15.0" fill="rgb(234,181,46)" rx="2" ry="2" />
<text x="405.51" y="383.5" >_$LT$wasmparser..pars..</text>
</g>
<g >
<title>_int_free (12 samples, 0.03%)</title><rect x="308.1" y="325" width="0.4" height="15.0" fill="rgb(221,200,0)" rx="2" ry="2" />
<text x="311.12" y="335.5" ></text>
</g>
<g >
<title>cranelift_codegen::context::Context::relax_branches::hbf7d0399633288d4 (153 samples, 0.37%)</title><rect x="94.1" y="293" width="4.3" height="15.0" fill="rgb(241,146,1)" rx="2" ry="2" />
<text x="97.06" y="303.5" ></text>
</g>
<g >
<title>__GI___libc_malloc (9 samples, 0.02%)</title><rect x="801.5" y="293" width="0.3" height="15.0" fill="rgb(214,128,24)" rx="2" ry="2" />
<text x="804.52" y="303.5" ></text>
</g>
<g >
<title>std::sys::unix::time::inner::now::ha10452f37b2930c5 (12 samples, 0.03%)</title><rect x="161.1" y="245" width="0.4" height="15.0" fill="rgb(209,121,38)" rx="2" ry="2" />
<text x="164.13" y="255.5" ></text>
</g>
<g >
<title>__GI___clock_gettime (5 samples, 0.01%)</title><rect x="64.5" y="229" width="0.2" height="15.0" fill="rgb(231,192,39)" rx="2" ry="2" />
<text x="67.54" y="239.5" ></text>
</g>
<g >
<title>__GI___libc_realloc (11 samples, 0.03%)</title><rect x="1179.4" y="341" width="0.3" height="15.0" fill="rgb(250,60,38)" rx="2" ry="2" />
<text x="1182.41" y="351.5" ></text>
</g>
<g >
<title>__GI___libc_realloc (15 samples, 0.04%)</title><rect x="1178.3" y="325" width="0.4" height="15.0" fill="rgb(212,160,29)" rx="2" ry="2" />
<text x="1181.27" y="335.5" ></text>
</g>
<g >
<title>__memcpy_avx_unaligned (8 samples, 0.02%)</title><rect x="172.5" y="357" width="0.2" height="15.0" fill="rgb(229,10,42)" rx="2" ry="2" />
<text x="175.49" y="367.5" ></text>
</g>
<g >
<title>cranelift_entity::list::EntityList$LT$T$GT$::push::h051541d55e7ee057 (5 samples, 0.01%)</title><rect x="850.2" y="293" width="0.2" height="15.0" fill="rgb(224,2,9)" rx="2" ry="2" />
<text x="853.24" y="303.5" ></text>
</g>
<g >
<title>cranelift_codegen::ir::instructions::InstructionData::typevar_operand::hbf9a7e821f2ceac3 (4 samples, 0.01%)</title><rect x="103.7" y="245" width="0.1" height="15.0" fill="rgb(206,77,51)" rx="2" ry="2" />
<text x="106.67" y="255.5" ></text>
</g>
<g >
<title>__GI___exp (7 samples, 0.02%)</title><rect x="199.1" y="309" width="0.2" height="15.0" fill="rgb(211,175,18)" rx="2" ry="2" />
<text x="202.09" y="319.5" ></text>
</g>
<g >
<title>__GI___libc_realloc (6 samples, 0.01%)</title><rect x="802.1" y="325" width="0.2" height="15.0" fill="rgb(219,173,19)" rx="2" ry="2" />
<text x="805.12" y="335.5" ></text>
</g>
<g >
<title>cranelift_codegen::ir::layout::Layout::split_ebb::h465627b364d2697d (9 samples, 0.02%)</title><rect x="85.3" y="213" width="0.2" height="15.0" fill="rgb(235,131,48)" rx="2" ry="2" />
<text x="88.26" y="223.5" ></text>
</g>
<g >
<title>tlb_flush_mmu_free (46 samples, 0.11%)</title><rect x="232.0" y="229" width="1.3" height="15.0" fill="rgb(218,225,37)" rx="2" ry="2" />
<text x="235.03" y="239.5" ></text>
</g>
<g >
<title>__rust_dealloc (7 samples, 0.02%)</title><rect x="1003.6" y="421" width="0.2" height="15.0" fill="rgb(242,89,17)" rx="2" ry="2" />
<text x="1006.62" y="431.5" ></text>
</g>
<g >
<title>_int_realloc (4 samples, 0.01%)</title><rect x="18.7" y="293" width="0.1" height="15.0" fill="rgb(221,203,53)" rx="2" ry="2" />
<text x="21.73" y="303.5" ></text>
</g>
<g >
<title>cranelift_codegen::isa::enc_tables::lookup_enclist::h59f3ade65a5e8b68 (8 samples, 0.02%)</title><rect x="17.5" y="293" width="0.2" height="15.0" fill="rgb(233,113,16)" rx="2" ry="2" />
<text x="20.51" y="303.5" ></text>
</g>
<g >
<title>__GI___libc_realloc (12 samples, 0.03%)</title><rect x="802.4" y="293" width="0.4" height="15.0" fill="rgb(244,69,32)" rx="2" ry="2" />
<text x="805.43" y="303.5" ></text>
</g>
<g >
<title>__GI___libc_free (13 samples, 0.03%)</title><rect x="254.5" y="373" width="0.4" height="15.0" fill="rgb(209,59,48)" rx="2" ry="2" />
<text x="257.55" y="383.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (5 samples, 0.01%)</title><rect x="185.6" y="229" width="0.1" height="15.0" fill="rgb(228,178,1)" rx="2" ry="2" />
<text x="188.56" y="239.5" ></text>
</g>
<g >
<title>cranelift_codegen::postopt::do_postopt::hd4075babc8e08dd8 (26 samples, 0.06%)</title><rect x="1161.7" y="357" width="0.7" height="15.0" fill="rgb(209,176,6)" rx="2" ry="2" />
<text x="1164.66" y="367.5" ></text>
</g>
<g >
<title>std::sys::unix::alloc::_$LT$impl$u20$core..alloc..GlobalAlloc$u20$for$u20$std..alloc..System$GT$::dealloc::h000dc0e1d3b4be28 (5 samples, 0.01%)</title><rect x="1029.2" y="405" width="0.1" height="15.0" fill="rgb(238,97,35)" rx="2" ry="2" />
<text x="1032.17" y="415.5" ></text>
</g>
<g >
<title>cranelift_codegen::ir::layout::Layout::insert_inst::h352d76f498d27496 (11 samples, 0.03%)</title><rect x="92.5" y="197" width="0.3" height="15.0" fill="rgb(228,150,0)" rx="2" ry="2" />
<text x="95.51" y="207.5" ></text>
</g>
<g >
<title>malloc_printerr (4 samples, 0.01%)</title><rect x="1098.5" y="373" width="0.1" height="15.0" fill="rgb(230,129,30)" rx="2" ry="2" />
<text x="1101.47" y="383.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 (18 samples, 0.04%)</title><rect x="1178.8" y="341" width="0.5" height="15.0" fill="rgb(250,160,2)" rx="2" ry="2" />
<text x="1181.81" y="351.5" ></text>
</g>
<g >
<title>cranelift_codegen::ir::dfg::DataFlowGraph::resolve_aliases_in_arguments::ha1a59fc1c5edab63 (5 samples, 0.01%)</title><rect x="48.2" y="341" width="0.1" height="15.0" fill="rgb(210,96,43)" rx="2" ry="2" />
<text x="51.19" y="351.5" ></text>
</g>
<g >
<title>__GI___libc_free (10 samples, 0.02%)</title><rect x="179.8" y="325" width="0.3" height="15.0" fill="rgb(224,150,23)" rx="2" ry="2" />
<text x="182.82" y="335.5" ></text>
</g>
<g >
<title>alloc::borrow::Cow$LT$B$GT$::to_mut::hc816a9c98cae5186 (11 samples, 0.03%)</title><rect x="15.4" y="309" width="0.3" height="15.0" fill="rgb(213,41,34)" rx="2" ry="2" />
<text x="18.39" y="319.5" ></text>
</g>
<g >
<title>__GI___clock_gettime (7 samples, 0.02%)</title><rect x="312.7" y="277" width="0.2" height="15.0" fill="rgb(233,16,0)" rx="2" ry="2" />
<text x="315.66" y="287.5" ></text>
</g>
<g >
<title>cranelift_codegen::ir::dfg::DataFlowGraph::make_inst_results::hc774d04d1992dff6 (5 samples, 0.01%)</title><rect x="1167.7" y="197" width="0.1" height="15.0" fill="rgb(242,74,52)" rx="2" ry="2" />
<text x="1170.68" y="207.5" ></text>
</g>
<g >
<title>alloc::raw_vec::RawVec$LT$T$C$A$GT$::reserve::h90000ec143ceb992 (8 samples, 0.02%)</title><rect x="192.6" y="213" width="0.2" height="15.0" fill="rgb(226,225,9)" rx="2" ry="2" />
<text x="195.58" y="223.5" ></text>
</g>
<g >
<title>__GI___libc_malloc (14 samples, 0.03%)</title><rect x="124.3" y="229" width="0.4" height="15.0" fill="rgb(214,179,27)" rx="2" ry="2" />
<text x="127.28" y="239.5" ></text>
</g>
<g >
<title>cranelift_codegen::regalloc::reload::Context::insert_spill::heb310b7f97e05ad2 (18 samples, 0.04%)</title><rect x="1178.8" y="373" width="0.5" height="15.0" fill="rgb(214,225,44)" rx="2" ry="2" />
<text x="1181.81" y="383.5" ></text>
</g>
<g >
<title>__GI___libc_malloc (619 samples, 1.50%)</title><rect x="673.8" y="341" width="17.7" height="15.0" fill="rgb(208,11,1)" rx="2" ry="2" />
<text x="676.82" y="351.5" ></text>
</g>
<g >
<title>wasmer_clif_fork_frontend::ssa::SSABuilder::def_var::h67475927161b24eb (19 samples, 0.05%)</title><rect x="807.9" y="373" width="0.5" height="15.0" fill="rgb(233,52,26)" rx="2" ry="2" />
<text x="810.88" y="383.5" ></text>
</g>
<g >
<title>_int_realloc (10 samples, 0.02%)</title><rect x="1172.2" y="309" width="0.3" height="15.0" fill="rgb(210,70,12)" rx="2" ry="2" />
<text x="1175.25" y="319.5" ></text>
</g>
<g >
<title>cranelift_codegen::redundant_reload_remover::RedundantReloadRemover::discovery_stack_push_successors_of::h1d35cd4c4d8172b7 (17 samples, 0.04%)</title><rect x="73.8" y="277" width="0.5" height="15.0" fill="rgb(240,211,35)" rx="2" ry="2" />
<text x="76.85" y="287.5" ></text>
</g>
<g >
<title>_$LT$wasmer_clif_backend..relocation..LocalTrapSink$u20$as$u20$cranelift_codegen..binemit..memorysink..TrapSink$GT$::trap::h3a8b24a0da581ead (15 samples, 0.04%)</title><rect x="67.4" y="277" width="0.5" height="15.0" fill="rgb(245,226,37)" rx="2" ry="2" />
<text x="70.43" y="287.5" ></text>
</g>
<g >
<title>unmap_region (4 samples, 0.01%)</title><rect x="185.6" y="149" width="0.1" height="15.0" fill="rgb(223,210,10)" rx="2" ry="2" />
<text x="188.59" y="159.5" ></text>
</g>
<g >
<title>cranelift_codegen::regalloc::coalescing::Coalescing::conventional_ssa::h25e21334b716fc0d (239 samples, 0.58%)</title><rect x="124.9" y="277" width="6.8" height="15.0" fill="rgb(251,95,48)" rx="2" ry="2" />
<text x="127.85" y="287.5" ></text>
</g>
<g >
<title>__memcpy_avx_unaligned (66 samples, 0.16%)</title><rect x="244.3" y="437" width="1.9" height="15.0" fill="rgb(254,154,51)" rx="2" ry="2" />
<text x="247.33" y="447.5" ></text>
</g>
<g >
<title>__GI___libc_malloc (411 samples, 0.99%)</title><rect x="1128.7" y="437" width="11.8" height="15.0" fill="rgb(248,156,12)" rx="2" ry="2" />
<text x="1131.72" y="447.5" ></text>
</g>
<g >
<title>std::sys::unix::time::inner::now::ha10452f37b2930c5 (6 samples, 0.01%)</title><rect x="122.4" y="213" width="0.2" height="15.0" fill="rgb(242,88,41)" rx="2" ry="2" />
<text x="125.40" y="223.5" ></text>
</g>
<g >
<title>core::ptr::real_drop_in_place::h98f9fd73d14fd071 (735 samples, 1.78%)</title><rect x="752.4" y="389" width="21.0" height="15.0" fill="rgb(205,18,18)" rx="2" ry="2" />
<text x="755.40" y="399.5" ></text>
</g>
<g >
<title>_int_free (6 samples, 0.01%)</title><rect x="254.7" y="357" width="0.2" height="15.0" fill="rgb(216,64,22)" rx="2" ry="2" />
<text x="257.75" y="367.5" ></text>
</g>
<g >
<title>sys_mmap (231 samples, 0.56%)</title><rect x="290.5" y="309" width="6.6" height="15.0" fill="rgb(242,191,31)" rx="2" ry="2" />
<text x="293.54" y="319.5" ></text>
</g>
<g >
<title>__vma_adjust (17 samples, 0.04%)</title><rect x="269.0" y="245" width="0.5" height="15.0" fill="rgb(232,124,14)" rx="2" ry="2" />
<text x="272.02" 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 (37 samples, 0.09%)</title><rect x="137.0" y="245" width="1.0" height="15.0" fill="rgb(211,125,24)" rx="2" ry="2" />
<text x="139.98" y="255.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (7 samples, 0.02%)</title><rect x="185.4" y="197" width="0.2" height="15.0" fill="rgb(246,121,44)" rx="2" ry="2" />
<text x="188.36" y="207.5" ></text>
</g>
<g >
<title>_int_malloc (156 samples, 0.38%)</title><rect x="667.1" y="325" width="4.4" height="15.0" fill="rgb(246,60,28)" rx="2" ry="2" />
<text x="670.09" y="335.5" ></text>
</g>
<g >
<title>hashbrown::raw::bucket_mask_to_capacity::hff8682455bc98726 (4 samples, 0.01%)</title><rect x="168.2" y="245" width="0.1" height="15.0" fill="rgb(241,45,31)" rx="2" ry="2" />
<text x="171.21" y="255.5" ></text>
</g>
<g >
<title>_$LT$alloc..vec..Vec$LT$T$GT$$u20$as$u20$core..clone..Clone$GT$::clone::h4dff7b93bd7502e8 (12 samples, 0.03%)</title><rect x="256.3" y="373" width="0.3" height="15.0" fill="rgb(216,119,11)" rx="2" ry="2" />
<text x="259.29" y="383.5" ></text>
</g>
<g >
<title>__rdl_dealloc (7 samples, 0.02%)</title><rect x="509.2" y="341" width="0.2" height="15.0" fill="rgb(220,120,32)" rx="2" ry="2" />
<text x="512.19" y="351.5" ></text>
</g>
<g >
<title>_int_free (13 samples, 0.03%)</title><rect x="177.4" y="325" width="0.4" height="15.0" fill="rgb(207,78,31)" rx="2" ry="2" />
<text x="180.43" y="335.5" ></text>
</g>
<g >
<title>_int_free (8 samples, 0.02%)</title><rect x="820.2" y="357" width="0.2" height="15.0" fill="rgb(234,197,20)" rx="2" ry="2" />
<text x="823.19" y="367.5" ></text>
</g>
<g >
<title>_int_realloc (13 samples, 0.03%)</title><rect x="1177.0" y="293" width="0.4" height="15.0" fill="rgb(236,53,36)" rx="2" ry="2" />
<text x="1180.01" y="303.5" ></text>
</g>
<g >
<title>_$LT$cranelift_codegen..timing..details..TimingToken$u20$as$u20$core..ops..drop..Drop$GT$::drop::h1b19c2a93ee0a091 (5 samples, 0.01%)</title><rect x="126.2" y="261" width="0.1" height="15.0" fill="rgb(228,209,14)" rx="2" ry="2" />
<text x="129.16" y="271.5" ></text>
</g>
<g >
<title>anon_vma_interval_tree_remove (7 samples, 0.02%)</title><rect x="237.8" y="261" width="0.2" height="15.0" fill="rgb(219,93,27)" rx="2" ry="2" />
<text x="240.85" y="271.5" ></text>
</g>
<g >
<title>__rdl_realloc (20 samples, 0.05%)</title><rect x="1098.6" y="421" width="0.6" height="15.0" fill="rgb(243,89,4)" rx="2" ry="2" />
<text x="1101.58" y="431.5" ></text>
</g>
<g >
<title>_ZN17cranelift_codegen8regalloc9diversion13RegDiversions6divert17h0dfdaeead6ef2c57E.llvm.6468024634034730254 (25 samples, 0.06%)</title><rect x="42.7" y="341" width="0.8" height="15.0" fill="rgb(208,122,40)" rx="2" ry="2" />
<text x="45.74" y="351.5" ></text>
</g>
<g >
<title>std::sys::unix::time::inner::now::ha10452f37b2930c5 (7 samples, 0.02%)</title><rect x="312.7" y="293" width="0.2" height="15.0" fill="rgb(210,150,15)" rx="2" ry="2" />
<text x="315.66" y="303.5" ></text>
</g>
<g >
<title>_$LT$parity_wasm..elements..primitives..VarInt32$u20$as$u20$parity_wasm..elements..Serialize$GT$::serialize::he0ef9fcaefd59e6e (101 samples, 0.24%)</title><rect x="944.5" y="405" width="2.9" height="15.0" fill="rgb(221,8,0)" rx="2" ry="2" />
<text x="947.54" y="415.5" ></text>
</g>
<g >
<title>__GI___clock_gettime (9 samples, 0.02%)</title><rect x="119.6" y="229" width="0.2" height="15.0" fill="rgb(210,117,21)" rx="2" ry="2" />
<text x="122.57" y="239.5" ></text>
</g>
<g >
<title>_int_malloc (12 samples, 0.03%)</title><rect x="173.1" y="325" width="0.4" height="15.0" fill="rgb(218,8,35)" rx="2" ry="2" />
<text x="176.14" y="335.5" ></text>
</g>
<g >
<title>wasmparser::binary_reader::BinaryReader::read_file_header::h1f914f45bc503d90 (61 samples, 0.15%)</title><rect x="453.6" y="357" width="1.8" height="15.0" fill="rgb(211,18,33)" rx="2" ry="2" />
<text x="456.62" y="367.5" ></text>
</g>
<g >
<title>cranelift_codegen::ir::builder::InstBuilder::spill::hddbf9a7f97d9d38b (25 samples, 0.06%)</title><rect x="53.1" y="325" width="0.7" height="15.0" fill="rgb(245,154,48)" rx="2" ry="2" />
<text x="56.10" y="335.5" ></text>
</g>
<g >
<title>__GI___libc_realloc (5 samples, 0.01%)</title><rect x="1177.6" y="309" width="0.2" height="15.0" fill="rgb(242,80,17)" rx="2" ry="2" />
<text x="1180.64" y="319.5" ></text>
</g>
<g >
<title>std::sys::unix::time::inner::Instant::now::h23f1bea5949f1bbd (6 samples, 0.01%)</title><rect x="105.7" y="245" width="0.1" height="15.0" fill="rgb(226,38,27)" rx="2" ry="2" />
<text x="108.67" y="255.5" ></text>
</g>
<g >
<title>__GI___libc_malloc (7 samples, 0.02%)</title><rect x="1176.1" y="325" width="0.2" height="15.0" fill="rgb(237,160,53)" rx="2" ry="2" />
<text x="1179.13" y="335.5" ></text>
</g>
<g >
<title>_$LT$hashbrown..raw..RawTable$LT$T$GT$$u20$as$u20$core..ops..drop..Drop$GT$::drop::hef6aaa8d561267ad (4 samples, 0.01%)</title><rect x="187.4" y="229" width="0.2" height="15.0" fill="rgb(226,138,13)" rx="2" ry="2" />
<text x="190.44" y="239.5" ></text>
</g>
<g >
<title>alloc::raw_vec::RawVec$LT$T$C$A$GT$::reserve::h5e34cfad90a6ce21 (10 samples, 0.02%)</title><rect x="122.6" y="277" width="0.3" height="15.0" fill="rgb(241,217,7)" rx="2" ry="2" />
<text x="125.60" y="287.5" ></text>
</g>
<g >
<title>wasmparser::binary_reader::BinaryReader::read_func_type::h0cd44550c784004e (17 samples, 0.04%)</title><rect x="189.4" y="197" width="0.5" height="15.0" fill="rgb(251,77,21)" rx="2" ry="2" />
<text x="192.41" y="207.5" ></text>
</g>
<g >
<title>__clone (47 samples, 0.11%)</title><rect x="183.3" y="501" width="1.3" height="15.0" fill="rgb(220,48,32)" rx="2" ry="2" />
<text x="186.28" y="511.5" ></text>
</g>
<g >
<title>_ZN16cranelift_entity4list17ListPool$LT$T$GT$5alloc17h7031e3fd97879e16E.llvm.776987249141506950 (19 samples, 0.05%)</title><rect x="16.4" y="293" width="0.6" height="15.0" fill="rgb(233,195,25)" rx="2" ry="2" />
<text x="19.42" y="303.5" ></text>
</g>
<g >
<title>std::time::Instant::elapsed::h8e307314b2acf9be (8 samples, 0.02%)</title><rect x="36.4" y="341" width="0.2" height="15.0" fill="rgb(233,211,24)" rx="2" ry="2" />
<text x="39.37" y="351.5" ></text>
</g>
<g >
<title>_int_realloc (8 samples, 0.02%)</title><rect x="1178.0" y="325" width="0.3" height="15.0" fill="rgb(246,132,7)" rx="2" ry="2" />
<text x="1181.04" y="335.5" ></text>
</g>
<g >
<title>rayon::result::_$LT$impl$u20$rayon..iter..FromParallelIterator$LT$core..result..Result$LT$T$C$E$GT$$GT$$u20$for$u20$core..result..Result$LT$C$C$E$GT$$GT$::from_par_iter::h1e10d100eaa83031 (93 samples, 0.22%)</title><rect x="1167.4" y="485" width="2.6" height="15.0" fill="rgb(241,25,14)" rx="2" ry="2" />
<text x="1170.37" y="495.5" ></text>
</g>
<g >
<title>__rdl_alloc (7 samples, 0.02%)</title><rect x="1019.1" y="405" width="0.2" height="15.0" fill="rgb(216,207,7)" rx="2" ry="2" />
<text x="1022.09" y="415.5" ></text>
</g>
<g >
<title>wasmer_runtime_core::compile_with_config::h2793fe8de72c0bc3 (643 samples, 1.56%)</title><rect x="1148.8" y="453" width="18.3" height="15.0" fill="rgb(219,103,7)" rx="2" ry="2" />
<text x="1151.79" y="463.5" ></text>
</g>
<g >
<title>wasmer_runtime::compile_with_config::h3146f6a9cd30dfc8 (6 samples, 0.01%)</title><rect x="184.6" y="389" width="0.2" height="15.0" fill="rgb(208,100,20)" rx="2" ry="2" />
<text x="187.62" y="399.5" ></text>
</g>
<g >
<title>_$LT$cranelift_codegen..binemit..memorysink..NullTrapSink$u20$as$u20$cranelift_codegen..binemit..memorysink..TrapSink$GT$::trap::hc03532845cd67486 (4 samples, 0.01%)</title><rect x="316.7" y="325" width="0.1" height="15.0" fill="rgb(247,195,38)" rx="2" ry="2" />
<text x="319.71" y="335.5" ></text>
</g>
<g >
<title>cranelift_codegen::isa::enc_tables::lookup_enclist::h59f3ade65a5e8b68 (21 samples, 0.05%)</title><rect x="82.7" y="213" width="0.6" height="15.0" fill="rgb(209,42,43)" rx="2" ry="2" />
<text x="85.70" y="223.5" ></text>
</g>
<g >
<title>alloc::raw_vec::RawVec$LT$T$C$A$GT$::reserve::h0c445b41f7c28667 (5 samples, 0.01%)</title><rect x="1171.0" y="341" width="0.1" height="15.0" fill="rgb(216,134,45)" rx="2" ry="2" />
<text x="1173.99" y="351.5" ></text>
</g>
<g >
<title>cranelift_codegen::ir::dfg::DataFlowGraph::append_inst_arg::h0a85602c512eb008 (11 samples, 0.03%)</title><rect x="20.5" y="309" width="0.3" height="15.0" fill="rgb(221,178,35)" rx="2" ry="2" />
<text x="23.53" y="319.5" ></text>
</g>
<g >
<title>local_clock (4 samples, 0.01%)</title><rect x="287.1" y="181" width="0.1" height="15.0" fill="rgb(222,164,31)" rx="2" ry="2" />
<text x="290.05" y="191.5" ></text>
</g>
<g >
<title>_$LT$wasmer_runtime_core..types..FuncSig$u20$as$u20$core..hash..Hash$GT$::hash::h1e327e01a11a280a (7 samples, 0.02%)</title><rect x="875.6" y="357" width="0.2" height="15.0" fill="rgb(209,165,38)" rx="2" ry="2" />
<text x="878.58" y="367.5" ></text>
</g>
<g >
<title>core::ptr::real_drop_in_place::h096927e62fedec5f (739 samples, 1.79%)</title><rect x="731.3" y="389" width="21.1" height="15.0" fill="rgb(218,164,13)" rx="2" ry="2" />
<text x="734.31" y="399.5" ></text>
</g>
<g >
<title>std::sys::unix::time::inner::now::ha10452f37b2930c5 (7 samples, 0.02%)</title><rect x="77.2" y="197" width="0.2" height="15.0" fill="rgb(236,8,12)" rx="2" ry="2" />
<text x="80.22" y="207.5" ></text>
</g>
<g >
<title>cranelift_codegen::ir::builder::InstBuilder::x86_udivmodx::hd60d66081ff370fb (7 samples, 0.02%)</title><rect x="86.0" y="213" width="0.2" height="15.0" fill="rgb(212,12,48)" rx="2" ry="2" />
<text x="88.98" y="223.5" ></text>
</g>
<g >
<title>_$LT$cranelift_codegen..timing..details..TimingToken$u20$as$u20$core..ops..drop..Drop$GT$::drop::h1b19c2a93ee0a091 (11 samples, 0.03%)</title><rect x="37.6" y="357" width="0.3" height="15.0" fill="rgb(216,23,24)" rx="2" ry="2" />
<text x="40.63" y="367.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,558 samples, 3.77%)</title><rect x="13.6" y="437" width="44.4" height="15.0" fill="rgb(207,109,37)" rx="2" ry="2" />
<text x="16.57" y="447.5" >_$LT..</text>
</g>
<g >
<title>cranelift_codegen::ir::builder::InstBuilder::fill::h8891fd072647990a (4 samples, 0.01%)</title><rect x="1173.8" y="357" width="0.1" height="15.0" fill="rgb(225,217,22)" rx="2" ry="2" />
<text x="1176.79" y="367.5" ></text>
</g>
<g >
<title>alloc::raw_vec::RawVec$LT$T$C$A$GT$::reserve::hc8a0fc8526f8c69b (9 samples, 0.02%)</title><rect x="323.9" y="357" width="0.3" height="15.0" fill="rgb(208,227,25)" rx="2" ry="2" />
<text x="326.90" y="367.5" ></text>
</g>
<g >
<title>std::sys::unix::time::inner::Instant::now::h23f1bea5949f1bbd (5 samples, 0.01%)</title><rect x="1161.5" y="325" width="0.2" height="15.0" fill="rgb(252,0,4)" rx="2" ry="2" />
<text x="1164.52" y="335.5" ></text>
</g>
<g >
<title>std::sys::unix::time::inner::now::ha10452f37b2930c5 (15 samples, 0.04%)</title><rect x="171.5" y="261" width="0.4" height="15.0" fill="rgb(226,177,0)" rx="2" ry="2" />
<text x="174.49" y="271.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (19 samples, 0.05%)</title><rect x="11.2" y="421" width="0.5" height="15.0" fill="rgb(231,221,5)" rx="2" ry="2" />
<text x="14.17" y="431.5" ></text>
</g>
<g >
<title>do_page_fault (138 samples, 0.33%)</title><rect x="275.2" y="341" width="3.9" height="15.0" fill="rgb(234,176,4)" rx="2" ry="2" />
<text x="278.15" y="351.5" ></text>
</g>
<g >
<title>alloc::vec::Vec$LT$T$GT$::resize::h9160379633033fa6 (4 samples, 0.01%)</title><rect x="21.9" y="309" width="0.1" height="15.0" fill="rgb(230,226,37)" rx="2" ry="2" />
<text x="24.90" 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 (14 samples, 0.03%)</title><rect x="1173.9" y="325" width="0.4" height="15.0" fill="rgb(214,67,36)" rx="2" ry="2" />
<text x="1176.90" y="335.5" ></text>
</g>
<g >
<title>__GI___libc_malloc (7 samples, 0.02%)</title><rect x="62.5" y="293" width="0.2" height="15.0" fill="rgb(222,66,8)" rx="2" ry="2" />
<text x="65.55" y="303.5" ></text>
</g>
<g >
<title>__rust_maybe_catch_panic (722 samples, 1.75%)</title><rect x="184.8" y="405" width="20.7" height="15.0" fill="rgb(228,91,22)" rx="2" ry="2" />
<text x="187.85" y="415.5" ></text>
</g>
<g >
<title>tlb_finish_mmu (90 samples, 0.22%)</title><rect x="231.8" y="261" width="2.6" height="15.0" fill="rgb(210,47,8)" rx="2" ry="2" />
<text x="234.83" y="271.5" ></text>
</g>
<g >
<title>__GI___libc_realloc (12 samples, 0.03%)</title><rect x="88.4" y="229" width="0.3" height="15.0" fill="rgb(213,193,18)" rx="2" ry="2" />
<text x="91.40" y="239.5" ></text>
</g>
<g >
<title>__GI___clock_gettime (7 samples, 0.02%)</title><rect x="1166.0" y="261" width="0.2" height="15.0" fill="rgb(240,16,14)" rx="2" ry="2" />
<text x="1169.00" y="271.5" ></text>
</g>
<g >
<title>__GI___clock_gettime (10 samples, 0.02%)</title><rect x="108.8" y="197" width="0.3" height="15.0" fill="rgb(252,144,7)" rx="2" ry="2" />
<text x="111.78" y="207.5" ></text>
</g>
<g >
<title>cranelift_codegen::ir::dfg::DataFlowGraph::resolve_aliases_in_arguments::ha1a59fc1c5edab63 (20 samples, 0.05%)</title><rect x="1164.9" y="341" width="0.6" height="15.0" fill="rgb(208,9,8)" rx="2" ry="2" />
<text x="1167.88" y="351.5" ></text>
</g>
<g >
<title>cranelift_codegen::ir::function::Function::import_signature::h2f01a817446550a5 (6 samples, 0.01%)</title><rect x="324.6" y="373" width="0.2" height="15.0" fill="rgb(216,140,24)" rx="2" ry="2" />
<text x="327.62" y="383.5" ></text>
</g>
<g >
<title>cranelift_codegen::isa::x86::binemit::emit_inst::h4f026cde2beb5a85 (113 samples, 0.27%)</title><rect x="65.6" y="293" width="3.3" height="15.0" fill="rgb(240,95,31)" rx="2" ry="2" />
<text x="68.63" y="303.5" ></text>
</g>
<g >
<title>__sigprocmask (184 samples, 0.45%)</title><rect x="863.6" y="341" width="5.3" height="15.0" fill="rgb(247,206,47)" rx="2" ry="2" />
<text x="866.63" y="351.5" ></text>
</g>
<g >
<title>cranelift_codegen::regalloc::branch_splitting::run::hbbb4e417c98f8376 (15 samples, 0.04%)</title><rect x="38.3" y="357" width="0.4" height="15.0" fill="rgb(238,46,54)" rx="2" ry="2" />
<text x="41.26" y="367.5" ></text>
</g>
<g >
<title>rayon::iter::plumbing::bridge_producer_consumer::helper::h864336325ddf8446 (93 samples, 0.22%)</title><rect x="1167.4" y="421" width="2.6" height="15.0" fill="rgb(226,166,14)" rx="2" ry="2" />
<text x="1170.37" y="431.5" ></text>
</g>
<g >
<title>cranelift_entity::list::EntityList$LT$T$GT$::push::h051541d55e7ee057 (4 samples, 0.01%)</title><rect x="53.7" y="277" width="0.1" height="15.0" fill="rgb(253,9,33)" rx="2" ry="2" />
<text x="56.70" y="287.5" ></text>
</g>
<g >
<title>cranelift_codegen::isa::TargetIsa::encode::h3618ddf6ad568ce7 (4 samples, 0.01%)</title><rect x="19.7" y="293" width="0.1" height="15.0" fill="rgb(231,215,23)" rx="2" ry="2" />
<text x="22.73" y="303.5" ></text>
</g>
<g >
<title>__GI___clock_gettime (7 samples, 0.02%)</title><rect x="152.2" y="213" width="0.2" height="15.0" fill="rgb(226,75,10)" rx="2" ry="2" />
<text x="155.19" y="223.5" ></text>
</g>
<g >
<title>vma_link (9 samples, 0.02%)</title><rect x="349.2" y="229" width="0.3" height="15.0" fill="rgb(206,103,47)" rx="2" ry="2" />
<text x="352.25" y="239.5" ></text>
</g>
<g >
<title>cranelift_codegen::isa::x86::enc_tables::expand_sdivrem::h68f3c5d1142a2234 (8 samples, 0.02%)</title><rect x="1167.4" y="245" width="0.2" height="15.0" fill="rgb(234,27,46)" rx="2" ry="2" />
<text x="1170.37" y="255.5" ></text>
</g>
<g >
<title>_$LT$cranelift_codegen..isa..enc_tables..Encodings$u20$as$u20$core..iter..traits..iterator..Iterator$GT$::next::he6ba202105922eb5 (12 samples, 0.03%)</title><rect x="100.1" y="245" width="0.3" height="15.0" fill="rgb(245,182,21)" rx="2" ry="2" />
<text x="103.08" y="255.5" ></text>
</g>
<g >
<title>std::sys::unix::time::inner::now::ha10452f37b2930c5 (10 samples, 0.02%)</title><rect x="93.8" y="229" width="0.3" height="15.0" fill="rgb(211,30,31)" rx="2" ry="2" />
<text x="96.77" y="239.5" ></text>
</g>
<g >
<title>__GI___libc_realloc (9 samples, 0.02%)</title><rect x="123.7" y="245" width="0.3" height="15.0" fill="rgb(240,145,38)" rx="2" ry="2" />
<text x="126.74" 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 (10 samples, 0.02%)</title><rect x="96.4" y="245" width="0.3" height="15.0" fill="rgb(236,41,27)" rx="2" ry="2" />
<text x="99.42" y="255.5" ></text>
</g>
<g >
<title>hashbrown::raw::RawTable$LT$T$GT$::try_with_capacity::h7a6e6bae489d4fe9 (5 samples, 0.01%)</title><rect x="1171.5" y="309" width="0.1" height="15.0" fill="rgb(242,79,17)" rx="2" ry="2" />
<text x="1174.48" y="319.5" ></text>
</g>
<g >
<title>cranelift_codegen::licm::do_licm::hb96edf4ef4d89000 (4 samples, 0.01%)</title><rect x="1161.2" y="357" width="0.1" height="15.0" fill="rgb(245,82,53)" rx="2" ry="2" />
<text x="1164.20" y="367.5" ></text>
</g>
<g >
<title>alloc::raw_vec::RawVec$LT$T$C$A$GT$::reserve::hb1e32baa791fa7ba (45 samples, 0.11%)</title><rect x="799.0" y="373" width="1.2" height="15.0" fill="rgb(213,20,18)" rx="2" ry="2" />
<text x="801.95" y="383.5" ></text>
</g>
<g >
<title>_int_free (6 samples, 0.01%)</title><rect x="78.4" y="213" width="0.2" height="15.0" fill="rgb(247,150,13)" rx="2" ry="2" />
<text x="81.41" y="223.5" ></text>
</g>
<g >
<title>sys_mprotect (5 samples, 0.01%)</title><rect x="289.4" y="325" width="0.1" height="15.0" fill="rgb(231,194,42)" rx="2" ry="2" />
<text x="292.37" y="335.5" ></text>
</g>
<g >
<title>_$LT$wasmer_runtime_core..types..FuncSig$u20$as$u20$core..hash..Hash$GT$::hash::h1e327e01a11a280a (4 samples, 0.01%)</title><rect x="875.1" y="357" width="0.1" height="15.0" fill="rgb(228,46,52)" rx="2" ry="2" />
<text x="878.07" y="367.5" ></text>
</g>
<g >
<title>_$LT$cranelift_codegen..timing..details..TimingToken$u20$as$u20$core..ops..drop..Drop$GT$::drop::h1b19c2a93ee0a091 (8 samples, 0.02%)</title><rect x="144.4" y="261" width="0.2" height="15.0" fill="rgb(239,20,50)" rx="2" ry="2" />
<text x="147.37" y="271.5" ></text>
</g>
<g >
<title>_ZN4core3ptr18real_drop_in_place17he728ca68fc8217d5E.llvm.689856235829814499 (22 samples, 0.05%)</title><rect x="299.0" y="373" width="0.7" height="15.0" fill="rgb(207,140,18)" rx="2" ry="2" />
<text x="302.04" y="383.5" ></text>
</g>
<g >
<title>rocinante::stoke::Superoptimizer::synthesize::h4ba34d72c5765be9 (722 samples, 1.75%)</title><rect x="184.8" y="325" width="20.7" height="15.0" fill="rgb(211,130,22)" rx="2" ry="2" />
<text x="187.85" y="335.5" ></text>
</g>
<g >
<title>_ZN17cranelift_codegen3isa3x8615isa_constructor17h4c0ec78ad154a9afE.llvm.1715965870215341490 (15 samples, 0.04%)</title><rect x="350.8" y="357" width="0.5" height="15.0" fill="rgb(235,147,51)" rx="2" ry="2" />
<text x="353.85" y="367.5" ></text>
</g>
<g >
<title>__GI___libc_free (4 samples, 0.01%)</title><rect x="327.7" y="341" width="0.1" height="15.0" fill="rgb(236,28,9)" rx="2" ry="2" />
<text x="330.73" y="351.5" ></text>
</g>
<g >
<title>wasmer_runtime_core::compile_with_config::h2793fe8de72c0bc3 (6 samples, 0.01%)</title><rect x="1167.2" y="325" width="0.1" height="15.0" fill="rgb(223,9,0)" rx="2" ry="2" />
<text x="1170.17" y="335.5" ></text>
</g>
<g >
<title>alloc::raw_vec::RawVec$LT$T$C$A$GT$::reserve::hde4c914cbb5df344 (696 samples, 1.68%)</title><rect x="672.0" y="357" width="19.9" height="15.0" fill="rgb(234,146,7)" rx="2" ry="2" />
<text x="675.03" y="367.5" ></text>
</g>
<g >
<title>all (41,343 samples, 100%)</title><rect x="10.0" y="549" width="1180.0" height="15.0" fill="rgb(218,87,26)" rx="2" ry="2" />
<text x="13.00" y="559.5" ></text>
</g>
<g >
<title>__GI___libc_realloc (14 samples, 0.03%)</title><rect x="322.6" y="293" width="0.4" height="15.0" fill="rgb(232,146,20)" rx="2" ry="2" />
<text x="325.56" y="303.5" ></text>
</g>
<g >
<title>alloc::raw_vec::RawVec$LT$T$C$A$GT$::reserve::h500ef385b8747b29 (4 samples, 0.01%)</title><rect x="850.3" y="261" width="0.1" height="15.0" fill="rgb(208,22,25)" rx="2" ry="2" />
<text x="853.27" y="271.5" ></text>
</g>
<g >
<title>_$LT$alloc..vec..Vec$LT$T$GT$$u20$as$u20$core..clone..Clone$GT$::clone::hc479d58701aa8fb7 (5 samples, 0.01%)</title><rect x="61.9" y="309" width="0.1" height="15.0" fill="rgb(222,80,48)" rx="2" ry="2" />
<text x="64.86" y="319.5" ></text>
</g>
<g >
<title>alloc::sync::Arc$LT$T$GT$::drop_slow::hec646e7b3cef8b33 (5 samples, 0.01%)</title><rect x="242.3" y="405" width="0.1" height="15.0" fill="rgb(227,222,33)" rx="2" ry="2" />
<text x="245.27" y="415.5" ></text>
</g>
<g >
<title>wasmer_clif_backend::trampoline::Trampolines::new::h8a78526849fe89b9 (214 samples, 0.52%)</title><rect x="1170.0" y="437" width="6.1" height="15.0" fill="rgb(247,134,35)" rx="2" ry="2" />
<text x="1173.02" y="447.5" ></text>
</g>
<g >
<title>__vma_link_rb (8 samples, 0.02%)</title><rect x="296.3" y="213" width="0.2" height="15.0" fill="rgb(229,134,45)" rx="2" ry="2" />
<text x="299.30" y="223.5" ></text>
</g>
<g >
<title>alloc::raw_vec::RawVec$LT$T$C$A$GT$::reserve::ha898170dd69782a8 (4 samples, 0.01%)</title><rect x="324.8" y="357" width="0.2" height="15.0" fill="rgb(213,53,0)" rx="2" ry="2" />
<text x="327.84" y="367.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 (9 samples, 0.02%)</title><rect x="1177.8" y="357" width="0.2" height="15.0" fill="rgb(213,121,15)" rx="2" ry="2" />
<text x="1180.78" y="367.5" ></text>
</g>
<g >
<title>cranelift_codegen::regalloc::spilling::Spilling::run::hbc5ba3177617b881 (110 samples, 0.27%)</title><rect x="54.4" y="357" width="3.1" height="15.0" fill="rgb(224,85,1)" rx="2" ry="2" />
<text x="57.38" y="367.5" ></text>
</g>
<g >
<title>__rdl_dealloc (9 samples, 0.02%)</title><rect x="751.9" y="373" width="0.3" height="15.0" fill="rgb(211,93,42)" rx="2" ry="2" />
<text x="754.94" y="383.5" ></text>
</g>
<g >
<title>_int_malloc (5 samples, 0.01%)</title><rect x="802.6" y="261" width="0.2" height="15.0" fill="rgb(246,3,3)" rx="2" ry="2" />
<text x="805.63" y="271.5" ></text>
</g>
<g >
<title>std::sync::mutex::Mutex$LT$T$GT$::new::hf2c0b119dbf955ad (26 samples, 0.06%)</title><rect x="282.1" y="357" width="0.7" height="15.0" fill="rgb(254,198,25)" rx="2" ry="2" />
<text x="285.09" y="367.5" ></text>
</g>
<g >
<title>__GI___libc_malloc (382 samples, 0.92%)</title><rect x="1067.7" y="421" width="10.9" height="15.0" fill="rgb(213,163,25)" rx="2" ry="2" />
<text x="1070.70" y="431.5" ></text>
</g>
<g >
<title>std::time::Instant::now::h33d2ba6042def2d2 (6 samples, 0.01%)</title><rect x="318.5" y="341" width="0.2" height="15.0" fill="rgb(213,138,38)" rx="2" ry="2" />
<text x="321.48" y="351.5" ></text>
</g>
<g >
<title>free_unref_page_list (9 samples, 0.02%)</title><rect x="232.3" y="181" width="0.3" height="15.0" fill="rgb(247,83,50)" rx="2" ry="2" />
<text x="235.31" y="191.5" ></text>
</g>
<g >
<title>cranelift_codegen::dominator_tree::DominatorTree::compute::hb8295076ad170b26 (154 samples, 0.37%)</title><rect x="107.6" y="293" width="4.4" height="15.0" fill="rgb(249,74,43)" rx="2" ry="2" />
<text x="110.64" y="303.5" ></text>
</g>
<g >
<title>alloc::raw_vec::RawVec$LT$T$C$A$GT$::reserve::h5e34cfad90a6ce21 (11 samples, 0.03%)</title><rect x="37.9" y="357" width="0.4" height="15.0" fill="rgb(238,43,8)" rx="2" ry="2" />
<text x="40.94" y="367.5" ></text>
</g>
<g >
<title>__GI___libc_realloc (6 samples, 0.01%)</title><rect x="1175.2" y="325" width="0.1" height="15.0" fill="rgb(250,96,24)" rx="2" ry="2" />
<text x="1178.16" y="335.5" ></text>
</g>
<g >
<title>wasmer_clif_backend::signal::unix::call_protected::h998ed36d6bf840fc (316 samples, 0.76%)</title><rect x="1181.0" y="517" width="9.0" height="15.0" fill="rgb(219,192,0)" rx="2" ry="2" />
<text x="1183.98" y="527.5" ></text>
</g>
<g >
<title>__ieee754_exp_avx (233 samples, 0.56%)</title><rect x="877.5" y="453" width="6.6" height="15.0" fill="rgb(243,71,36)" rx="2" ry="2" />
<text x="880.47" y="463.5" ></text>
</g>
<g >
<title>std::time::Instant::now::h33d2ba6042def2d2 (5 samples, 0.01%)</title><rect x="36.9" y="309" width="0.2" height="15.0" fill="rgb(227,79,52)" rx="2" ry="2" />
<text x="39.94" y="319.5" ></text>
</g>
<g >
<title>__memset_avx2 (162 samples, 0.39%)</title><rect x="301.7" y="373" width="4.6" height="15.0" fill="rgb(212,130,28)" rx="2" ry="2" />
<text x="304.72" y="383.5" ></text>
</g>
<g >
<title>__GI___libc_free (17 samples, 0.04%)</title><rect x="177.3" y="341" width="0.5" height="15.0" fill="rgb(219,140,30)" rx="2" ry="2" />
<text x="180.31" y="351.5" ></text>
</g>
<g >
<title>__GI___libc_malloc (11 samples, 0.03%)</title><rect x="96.9" y="245" width="0.3" height="15.0" fill="rgb(225,191,33)" rx="2" ry="2" />
<text x="99.91" y="255.5" ></text>
</g>
<g >
<title>_int_free (11 samples, 0.03%)</title><rect x="272.6" y="357" width="0.4" height="15.0" fill="rgb(225,123,33)" rx="2" ry="2" />
<text x="275.64" y="367.5" ></text>
</g>
<g >
<title>do_syscall_64 (190 samples, 0.46%)</title><rect x="344.3" y="325" width="5.5" height="15.0" fill="rgb(247,79,10)" rx="2" ry="2" />
<text x="347.34" y="335.5" ></text>
</g>
<g >
<title>cranelift_codegen::ir::instructions::InstructionData::arguments::h70ecdef19e20b02a (4 samples, 0.01%)</title><rect x="157.0" y="261" width="0.1" height="15.0" fill="rgb(223,208,16)" rx="2" ry="2" />
<text x="159.99" y="271.5" ></text>
</g>
<g >
<title>core::slice::_$LT$impl$u20$$u5b$T$u5d$$GT$::copy_from_slice::h5befb2ef74ba1584 (23 samples, 0.06%)</title><rect x="691.9" y="357" width="0.6" height="15.0" fill="rgb(214,35,24)" rx="2" ry="2" />
<text x="694.89" y="367.5" ></text>
</g>
<g >
<title>wasmer_clif_fork_frontend::frontend::FunctionBuilder::append_ebb_params_for_function_params::h07f799cc3d985229 (38 samples, 0.09%)</title><rect x="800.9" y="373" width="1.1" height="15.0" fill="rgb(226,110,11)" rx="2" ry="2" />
<text x="803.89" y="383.5" ></text>
</g>
<g >
<title>change_protection_range (73 samples, 0.18%)</title><rect x="331.2" y="245" width="2.1" height="15.0" fill="rgb(221,226,12)" rx="2" ry="2" />
<text x="334.21" y="255.5" ></text>
</g>
<g >
<title>hashbrown::raw::bucket_mask_to_capacity::hff8682455bc98726 (5 samples, 0.01%)</title><rect x="810.4" y="357" width="0.2" height="15.0" fill="rgb(246,132,5)" rx="2" ry="2" />
<text x="813.42" y="367.5" ></text>
</g>
<g >
<title>cranelift_codegen::legalizer::legalize_function::h9c05a7523015c4df (9 samples, 0.02%)</title><rect x="1176.1" y="389" width="0.3" height="15.0" fill="rgb(253,111,54)" rx="2" ry="2" />
<text x="1179.13" y="399.5" ></text>
</g>
<g >
<title>std::sys::unix::time::inner::Instant::now::h23f1bea5949f1bbd (10 samples, 0.02%)</title><rect x="119.3" y="229" width="0.2" height="15.0" fill="rgb(220,26,38)" rx="2" ry="2" />
<text x="122.26" y="239.5" ></text>
</g>
<g >
<title>cranelift_codegen::ir::function::Function::clear::h4a6ec45cff5ac809 (14 samples, 0.03%)</title><rect x="311.8" y="357" width="0.4" height="15.0" fill="rgb(209,20,44)" rx="2" ry="2" />
<text x="314.80" y="367.5" ></text>
</g>
<g >
<title>cranelift_codegen::isa::Builder::finish::h10c6dcad4391fb0e (17 samples, 0.04%)</title><rect x="350.8" y="373" width="0.5" height="15.0" fill="rgb(232,56,34)" rx="2" ry="2" />
<text x="353.79" y="383.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (5 samples, 0.01%)</title><rect x="1180.8" y="517" width="0.2" height="15.0" fill="rgb(242,78,54)" rx="2" ry="2" />
<text x="1183.81" y="527.5" ></text>
</g>
<g >
<title>__GI___libc_realloc (5 samples, 0.01%)</title><rect x="298.4" y="325" width="0.2" height="15.0" fill="rgb(221,126,28)" rx="2" ry="2" />
<text x="301.44" y="335.5" ></text>
</g>
<g >
<title>do_mprotect_pkey (474 samples, 1.15%)</title><rect x="330.2" y="293" width="13.5" height="15.0" fill="rgb(215,5,30)" rx="2" ry="2" />
<text x="333.15" y="303.5" ></text>
</g>
<g >
<title>__GI___libc_realloc (10 samples, 0.02%)</title><rect x="1172.2" y="325" width="0.3" height="15.0" fill="rgb(228,48,45)" rx="2" ry="2" />
<text x="1175.25" y="335.5" ></text>
</g>
<g >
<title>std::sys::unix::time::inner::Instant::now::h23f1bea5949f1bbd (9 samples, 0.02%)</title><rect x="1157.5" y="309" width="0.2" height="15.0" fill="rgb(207,120,41)" rx="2" ry="2" />
<text x="1160.46" y="319.5" ></text>
</g>
<g >
<title>_int_malloc (5 samples, 0.01%)</title><rect x="75.2" y="229" width="0.2" height="15.0" fill="rgb(211,111,34)" rx="2" ry="2" />
<text x="78.25" y="239.5" ></text>
</g>
<g >
<title>__GI___libc_malloc (7 samples, 0.02%)</title><rect x="322.3" y="293" width="0.2" height="15.0" fill="rgb(245,90,3)" rx="2" ry="2" />
<text x="325.27" y="303.5" ></text>
</g>
<g >
<title>__GI___libc_malloc (15 samples, 0.04%)</title><rect x="109.1" y="261" width="0.5" height="15.0" fill="rgb(216,103,44)" rx="2" ry="2" />
<text x="112.13" y="271.5" ></text>
</g>
<g >
<title>rocinante::stoke::whitelist::WhitelistedInstruction::sample::hbdfdd11e1dde0ca4 (66 samples, 0.16%)</title><rect x="1142.6" y="453" width="1.8" height="15.0" fill="rgb(254,94,29)" rx="2" ry="2" />
<text x="1145.56" y="463.5" ></text>
</g>
<g >
<title>core::ptr::real_drop_in_place::hb4af2f77e0210fc8 (10 samples, 0.02%)</title><rect x="311.4" y="341" width="0.3" height="15.0" fill="rgb(241,52,22)" rx="2" ry="2" />
<text x="314.37" y="351.5" ></text>
</g>
<g >
<title>page_fault (121 samples, 0.29%)</title><rect x="302.9" y="357" width="3.4" height="15.0" fill="rgb(216,124,25)" rx="2" ry="2" />
<text x="305.90" y="367.5" ></text>
</g>
<g >
<title>std::time::Instant::elapsed::h8e307314b2acf9be (6 samples, 0.01%)</title><rect x="115.7" y="245" width="0.2" height="15.0" fill="rgb(228,73,1)" rx="2" ry="2" />
<text x="118.75" y="255.5" ></text>
</g>
<g >
<title>cranelift_codegen::regalloc::live_value_tracker::LiveValueTracker::ebb_top::hfe56a550654953ca (16 samples, 0.04%)</title><rect x="56.5" y="341" width="0.4" height="15.0" fill="rgb(212,183,48)" rx="2" ry="2" />
<text x="59.47" y="351.5" ></text>
</g>
<g >
<title>_int_free (6 samples, 0.01%)</title><rect x="815.5" y="373" width="0.2" height="15.0" fill="rgb(234,204,39)" rx="2" ry="2" />
<text x="818.50" y="383.5" ></text>
</g>
<g >
<title>__GI___libc_realloc (4 samples, 0.01%)</title><rect x="85.7" y="149" width="0.1" height="15.0" fill="rgb(244,127,45)" rx="2" ry="2" />
<text x="88.66" y="159.5" ></text>
</g>
<g >
<title>std::sys_common::thread::start_thread::h761ac6d57710d65d (47 samples, 0.11%)</title><rect x="183.3" y="453" width="1.3" height="15.0" fill="rgb(247,126,48)" rx="2" ry="2" />
<text x="186.28" y="463.5" ></text>
</g>
<g >
<title>cranelift_codegen::isa::enc_tables::lookup_enclist::h59f3ade65a5e8b68 (5 samples, 0.01%)</title><rect x="22.5" y="261" width="0.2" height="15.0" fill="rgb(222,48,30)" rx="2" ry="2" />
<text x="25.53" y="271.5" ></text>
</g>
<g >
<title>std::sys::unix::time::inner::now::ha10452f37b2930c5 (4 samples, 0.01%)</title><rect x="50.0" y="309" width="0.1" height="15.0" fill="rgb(229,71,5)" rx="2" ry="2" />
<text x="53.02" y="319.5" ></text>
</g>
<g >
<title>crossbeam_epoch::internal::Global::collect::h1f2b29105d9f9b2d (11 samples, 0.03%)</title><rect x="184.2" y="261" width="0.3" height="15.0" fill="rgb(238,42,19)" rx="2" ry="2" />
<text x="187.19" y="271.5" ></text>
</g>
<g >
<title>do_mprotect_pkey (191 samples, 0.46%)</title><rect x="283.8" y="293" width="5.5" height="15.0" fill="rgb(228,169,19)" rx="2" ry="2" />
<text x="286.83" y="303.5" ></text>
</g>
<g >
<title>cranelift_codegen::regalloc::reload::Reload::run::h05729139e9b4ae44 (121 samples, 0.29%)</title><rect x="148.9" y="277" width="3.5" height="15.0" fill="rgb(254,39,20)" rx="2" ry="2" />
<text x="151.94" y="287.5" ></text>
</g>
<g >
<title>wasmer_runtime_core::instance::call_func_with_index_inner::_$u7b$$u7b$closure$u7d$$u7d$::h13770553ad121b04 (9 samples, 0.02%)</title><rect x="198.5" y="245" width="0.3" height="15.0" fill="rgb(218,190,46)" rx="2" ry="2" />
<text x="201.55" y="255.5" ></text>
</g>
<g >
<title>__vdso_clock_gettime (7 samples, 0.02%)</title><rect x="172.0" y="245" width="0.2" height="15.0" fill="rgb(242,122,0)" rx="2" ry="2" />
<text x="175.03" y="255.5" ></text>
</g>
<g >
<title>__GI___libc_free (10 samples, 0.02%)</title><rect x="311.9" y="325" width="0.3" height="15.0" fill="rgb(250,82,50)" rx="2" ry="2" />
<text x="314.89" y="335.5" ></text>
</g>
<g >
<title>__clone (9 samples, 0.02%)</title><rect x="1180.2" y="517" width="0.3" height="15.0" fill="rgb(233,44,21)" rx="2" ry="2" />
<text x="1183.24" y="527.5" ></text>
</g>
<g >
<title>_$LT$alloc..vec..Vec$LT$T$GT$$u20$as$u20$core..clone..Clone$GT$::clone::h6f689c5462342c94 (6 samples, 0.01%)</title><rect x="61.1" y="309" width="0.2" height="15.0" fill="rgb(227,34,42)" rx="2" ry="2" />
<text x="64.12" y="319.5" ></text>
</g>
<g >
<title>cranelift_entity::sparse::SparseMap$LT$K$C$V$GT$::insert::h7db38de7d591c38a (20 samples, 0.05%)</title><rect x="49.2" y="325" width="0.6" height="15.0" fill="rgb(251,79,36)" rx="2" ry="2" />
<text x="52.22" y="335.5" ></text>
</g>
<g >
<title>cranelift_codegen::ir::builder::InstBuilder::regmove::h2d2e8972aa228be7 (44 samples, 0.11%)</title><rect x="43.7" y="341" width="1.2" height="15.0" fill="rgb(213,108,31)" rx="2" ry="2" />
<text x="46.65" y="351.5" ></text>
</g>
<g >
<title>__memcpy_avx_unaligned (18 samples, 0.04%)</title><rect x="1028.7" y="421" width="0.5" height="15.0" fill="rgb(243,110,51)" rx="2" ry="2" />
<text x="1031.65" y="431.5" ></text>
</g>
<g >
<title>cranelift_codegen::ir::builder::InstBuilder::x86_push::h21ec220088e6ffaa (41 samples, 0.10%)</title><rect x="92.1" y="229" width="1.2" height="15.0" fill="rgb(231,218,27)" rx="2" ry="2" />
<text x="95.11" 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 (23 samples, 0.06%)</title><rect x="92.2" y="213" width="0.7" height="15.0" fill="rgb(244,177,45)" rx="2" ry="2" />
<text x="95.20" y="223.5" ></text>
</g>
<g >
<title>__GI___clock_gettime (4 samples, 0.01%)</title><rect x="1161.5" y="293" width="0.2" height="15.0" fill="rgb(226,60,17)" rx="2" ry="2" />
<text x="1164.54" y="303.5" ></text>
</g>
<g >
<title>__vdso_clock_gettime (6 samples, 0.01%)</title><rect x="116.2" y="197" width="0.2" height="15.0" fill="rgb(224,213,11)" rx="2" ry="2" />
<text x="119.23" y="207.5" ></text>
</g>
<g >
<title>cranelift_codegen::context::Context::compile_and_emit::h5499205207e7951f (137 samples, 0.33%)</title><rect x="1176.1" y="437" width="3.9" height="15.0" fill="rgb(216,111,47)" rx="2" ry="2" />
<text x="1179.13" y="447.5" ></text>
</g>
<g >
<title>cranelift_codegen::settings::Builder::lookup::hc6620799f46af882 (30 samples, 0.07%)</title><rect x="326.0" y="341" width="0.9" height="15.0" fill="rgb(235,41,24)" rx="2" ry="2" />
<text x="329.01" y="351.5" ></text>
</g>
<g >
<title>_int_malloc (4 samples, 0.01%)</title><rect x="1177.9" y="309" width="0.1" height="15.0" fill="rgb(206,209,54)" rx="2" ry="2" />
<text x="1180.93" y="319.5" ></text>
</g>
<g >
<title>std::time::Instant::now::h33d2ba6042def2d2 (6 samples, 0.01%)</title><rect x="112.4" y="245" width="0.2" height="15.0" fill="rgb(242,42,28)" rx="2" ry="2" />
<text x="115.41" y="255.5" ></text>
</g>
<g >
<title>__sigprocmask (6 samples, 0.01%)</title><rect x="198.6" y="181" width="0.2" height="15.0" fill="rgb(223,162,32)" rx="2" ry="2" />
<text x="201.63" y="191.5" ></text>
</g>
<g >
<title>malloc_consolidate (95 samples, 0.23%)</title><rect x="258.6" y="325" width="2.7" height="15.0" fill="rgb(226,158,8)" rx="2" ry="2" />
<text x="261.63" y="335.5" ></text>
</g>
<g >
<title>core::ops::function::FnOnce::call_once$u7b$$u7b$vtable.shim$u7d$$u7d$::h68a6f528c140c0fd (47 samples, 0.11%)</title><rect x="183.3" y="405" width="1.3" height="15.0" fill="rgb(230,30,12)" rx="2" ry="2" />
<text x="186.28" y="415.5" ></text>
</g>
<g >
<title>__GI___libc_free (5 samples, 0.01%)</title><rect x="96.7" y="261" width="0.2" height="15.0" fill="rgb(246,0,43)" rx="2" ry="2" />
<text x="99.71" y="271.5" ></text>
</g>
<g >
<title>cranelift_codegen::flowgraph::ControlFlowGraph::compute::hdce42828fa3e59cb (26 samples, 0.06%)</title><rect x="116.4" y="277" width="0.7" height="15.0" fill="rgb(221,54,32)" rx="2" ry="2" />
<text x="119.40" y="287.5" ></text>
</g>
<g >
<title>tlb_flush_mmu_tlbonly (35 samples, 0.08%)</title><rect x="233.3" y="229" width="1.0" height="15.0" fill="rgb(248,129,46)" rx="2" ry="2" />
<text x="236.34" y="239.5" ></text>
</g>
<g >
<title>std::time::Instant::elapsed::h8e307314b2acf9be (10 samples, 0.02%)</title><rect x="119.3" y="261" width="0.2" height="15.0" fill="rgb(213,40,13)" rx="2" ry="2" />
<text x="122.26" y="271.5" ></text>
</g>
<g >
<title>alloc::raw_vec::RawVec$LT$T$C$A$GT$::reserve::hc8a0fc8526f8c69b (12 samples, 0.03%)</title><rect x="44.2" y="325" width="0.3" height="15.0" fill="rgb(227,172,30)" rx="2" ry="2" />
<text x="47.16" y="335.5" ></text>
</g>
<g >
<title>_$LT$alloc..vec..Vec$LT$T$GT$$u20$as$u20$core..clone..Clone$GT$::clone::h4ce7ee2a91eb51fd (22 samples, 0.05%)</title><rect x="74.6" y="261" width="0.6" height="15.0" fill="rgb(254,5,37)" rx="2" ry="2" />
<text x="77.56" y="271.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 (93 samples, 0.22%)</title><rect x="1167.4" y="405" width="2.6" height="15.0" fill="rgb(213,133,2)" rx="2" ry="2" />
<text x="1170.37" y="415.5" ></text>
</g>
<g >
<title>__GI___libc_malloc (44 samples, 0.11%)</title><rect x="799.0" y="357" width="1.2" height="15.0" fill="rgb(235,213,17)" rx="2" ry="2" />
<text x="801.98" y="367.5" ></text>
</g>
<g >
<title>cranelift_codegen::regalloc::virtregs::VirtRegs::find::h8895455c5ba49bed (7 samples, 0.02%)</title><rect x="129.3" y="245" width="0.2" height="15.0" fill="rgb(217,122,45)" rx="2" ry="2" />
<text x="132.28" y="255.5" ></text>
</g>
<g >
<title>cranelift_codegen::legalizer::legalize_function::h9c05a7523015c4df (388 samples, 0.94%)</title><rect x="76.3" y="277" width="11.1" height="15.0" fill="rgb(229,181,20)" rx="2" ry="2" />
<text x="79.30" y="287.5" ></text>
</g>
<g >
<title>alloc::raw_vec::RawVec$LT$T$C$A$GT$::reserve::h500ef385b8747b29 (10 samples, 0.02%)</title><rect x="140.6" y="229" width="0.3" height="15.0" fill="rgb(247,142,13)" rx="2" ry="2" />
<text x="143.61" y="239.5" ></text>
</g>
<g >
<title>alloc::raw_vec::RawVec$LT$T$C$A$GT$::reserve::h500ef385b8747b29 (4 samples, 0.01%)</title><rect x="53.9" y="325" width="0.1" height="15.0" fill="rgb(216,155,45)" rx="2" ry="2" />
<text x="56.90" y="335.5" ></text>
</g>
<g >
<title>_ZN3std4sync6rwlock15RwLock$LT$T$GT$4read17h11453e6976358159E.llvm.1752998059772103100 (4 samples, 0.01%)</title><rect x="184.6" y="309" width="0.1" height="15.0" fill="rgb(248,147,47)" rx="2" ry="2" />
<text x="187.62" y="319.5" ></text>
</g>
<g >
<title>hashbrown::raw::RawTable$LT$T$GT$::try_with_capacity::h7a6e6bae489d4fe9 (7 samples, 0.02%)</title><rect x="1152.2" y="293" width="0.2" height="15.0" fill="rgb(220,155,43)" rx="2" ry="2" />
<text x="1155.18" y="303.5" ></text>
</g>
<g >
<title>_int_malloc (8 samples, 0.02%)</title><rect x="1179.1" y="261" width="0.2" height="15.0" fill="rgb(211,178,51)" rx="2" ry="2" />
<text x="1182.10" y="271.5" ></text>
</g>
<g >
<title>__GI___libc_free (9 samples, 0.02%)</title><rect x="618.7" y="357" width="0.3" height="15.0" fill="rgb(247,113,6)" rx="2" ry="2" />
<text x="621.74" y="367.5" ></text>
</g>
<g >
<title>std::sys::unix::time::inner::Instant::now::h23f1bea5949f1bbd (7 samples, 0.02%)</title><rect x="36.4" y="309" width="0.2" height="15.0" fill="rgb(208,11,4)" rx="2" ry="2" />
<text x="39.40" y="319.5" ></text>
</g>
<g >
<title>_int_malloc (7 samples, 0.02%)</title><rect x="192.2" y="197" width="0.2" height="15.0" fill="rgb(228,175,47)" rx="2" ry="2" />
<text x="195.18" y="207.5" ></text>
</g>
<g >
<title>__GI___clock_gettime (6 samples, 0.01%)</title><rect x="161.0" y="213" width="0.1" height="15.0" fill="rgb(242,109,52)" rx="2" ry="2" />
<text x="163.96" y="223.5" ></text>
</g>
<g >
<title>__GI___libc_free (221 samples, 0.53%)</title><rect x="362.1" y="373" width="6.3" height="15.0" fill="rgb(240,24,30)" rx="2" ry="2" />
<text x="365.12" y="383.5" ></text>
</g>
<g >
<title>cranelift_codegen::regalloc::live_value_tracker::LiveValueTracker::process_inst::hcd4ba6fb549516b2 (23 samples, 0.06%)</title><rect x="151.3" y="261" width="0.7" height="15.0" fill="rgb(208,187,3)" rx="2" ry="2" />
<text x="154.34" y="271.5" ></text>
</g>
<g >
<title>_$LT$cranelift_codegen..isa..x86..Isa$u20$as$u20$cranelift_codegen..isa..TargetIsa$GT$::regclass_for_abi_type::hf8a70febdf7f3646 (6 samples, 0.01%)</title><rect x="145.7" y="245" width="0.2" height="15.0" fill="rgb(208,146,4)" rx="2" ry="2" />
<text x="148.69" y="255.5" ></text>
</g>
<g >
<title>_int_free (4 samples, 0.01%)</title><rect x="242.3" y="373" width="0.1" height="15.0" fill="rgb(235,54,52)" rx="2" ry="2" />
<text x="245.30" y="383.5" ></text>
</g>
<g >
<title>security_vm_enough_memory_mm (6 samples, 0.01%)</title><rect x="340.5" y="261" width="0.2" height="15.0" fill="rgb(246,19,10)" rx="2" ry="2" />
<text x="343.54" y="271.5" ></text>
</g>
<g >
<title>cranelift_codegen::isa::x86::binemit::emit_inst::h4f026cde2beb5a85 (128 samples, 0.31%)</title><rect x="313.9" y="341" width="3.6" height="15.0" fill="rgb(233,128,34)" rx="2" ry="2" />
<text x="316.88" y="351.5" ></text>
</g>
<g >
<title>alloc::sync::Arc$LT$T$GT$::drop_slow::h5f3b24d142b4e9b8 (328 samples, 0.79%)</title><rect x="226.8" y="405" width="9.4" height="15.0" fill="rgb(250,202,43)" rx="2" ry="2" />
<text x="229.80" y="415.5" ></text>
</g>
<g >
<title>alloc::sync::Arc$LT$T$GT$::drop_slow::h5f3b24d142b4e9b8 (7 samples, 0.02%)</title><rect x="185.4" y="245" width="0.2" height="15.0" fill="rgb(226,84,6)" rx="2" ry="2" />
<text x="188.36" y="255.5" ></text>
</g>
<g >
<title>alloc::raw_vec::RawVec$LT$T$C$A$GT$::reserve::hea3f43976955e3d2 (7 samples, 0.02%)</title><rect x="43.5" y="341" width="0.2" height="15.0" fill="rgb(247,40,17)" rx="2" ry="2" />
<text x="46.45" y="351.5" ></text>
</g>
<g >
<title>cranelift_codegen::binemit::relaxation::relax_branches::hf8ed24268a55ae64 (149 samples, 0.36%)</title><rect x="94.2" y="277" width="4.2" height="15.0" fill="rgb(223,84,14)" rx="2" ry="2" />
<text x="97.17" y="287.5" ></text>
</g>
<g >
<title>__GI___libc_realloc (5 samples, 0.01%)</title><rect x="159.3" y="229" width="0.1" height="15.0" fill="rgb(222,202,28)" rx="2" ry="2" />
<text x="162.27" y="239.5" ></text>
</g>
<g >
<title>cranelift_codegen::ir::dfg::DataFlowGraph::ctrl_typevar::h001f83f02149e995 (5 samples, 0.01%)</title><rect x="81.8" y="229" width="0.2" height="15.0" fill="rgb(235,36,8)" rx="2" ry="2" />
<text x="84.81" 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 (10 samples, 0.02%)</title><rect x="1171.3" y="341" width="0.3" height="15.0" fill="rgb(232,59,22)" rx="2" ry="2" />
<text x="1174.33" y="351.5" ></text>
</g>
<g >
<title>__GI___libc_malloc (4 samples, 0.01%)</title><rect x="1175.0" y="325" width="0.2" height="15.0" fill="rgb(218,210,47)" rx="2" ry="2" />
<text x="1178.04" y="335.5" ></text>
</g>
<g >
<title>__vma_adjust (28 samples, 0.07%)</title><rect x="342.5" y="245" width="0.8" height="15.0" fill="rgb(208,164,26)" rx="2" ry="2" />
<text x="345.48" y="255.5" ></text>
</g>
<g >
<title>__handle_mm_fault (68 samples, 0.16%)</title><rect x="276.8" y="293" width="1.9" height="15.0" fill="rgb(232,88,26)" rx="2" ry="2" />
<text x="279.81" y="303.5" ></text>
</g>
<g >
<title>_int_malloc (4 samples, 0.01%)</title><rect x="186.3" y="181" width="0.1" height="15.0" fill="rgb(243,222,43)" rx="2" ry="2" />
<text x="189.30" y="191.5" ></text>
</g>
<g >
<title>_ZN17cranelift_codegen8regalloc9diversion13RegDiversions6divert17h0dfdaeead6ef2c57E.llvm.6468024634034730254 (20 samples, 0.05%)</title><rect x="67.9" y="277" width="0.5" height="15.0" fill="rgb(209,194,24)" rx="2" ry="2" />
<text x="70.85" y="287.5" ></text>
</g>
<g >
<title>__GI___libc_malloc (5 samples, 0.01%)</title><rect x="60.3" y="293" width="0.1" height="15.0" fill="rgb(239,27,38)" rx="2" ry="2" />
<text x="63.26" y="303.5" ></text>
</g>
<g >
<title>std::time::Instant::elapsed::h8e307314b2acf9be (9 samples, 0.02%)</title><rect x="1165.9" y="325" width="0.3" height="15.0" fill="rgb(244,2,11)" rx="2" ry="2" />
<text x="1168.94" y="335.5" ></text>
</g>
<g >
<title>wasmer_clif_fork_frontend::ssa::SSABuilder::declare_ebb_header_block::h26e9e9b0a35fd899 (65 samples, 0.16%)</title><rect x="804.5" y="357" width="1.8" height="15.0" fill="rgb(231,24,11)" rx="2" ry="2" />
<text x="807.49" y="367.5" ></text>
</g>
<g >
<title>_$LT$cranelift_codegen..timing..details..TimingToken$u20$as$u20$core..ops..drop..Drop$GT$::drop::h1b19c2a93ee0a091 (8 samples, 0.02%)</title><rect x="162.9" y="277" width="0.2" height="15.0" fill="rgb(224,185,15)" rx="2" ry="2" />
<text x="165.87" y="287.5" ></text>
</g>
<g >
<title>__rdl_alloc (11 samples, 0.03%)</title><rect x="730.1" y="389" width="0.3" height="15.0" fill="rgb(234,88,47)" rx="2" ry="2" />
<text x="733.08" y="399.5" ></text>
</g>
<g >
<title>cranelift_entity::list::EntityList$LT$T$GT$::push::h051541d55e7ee057 (24 samples, 0.06%)</title><rect x="801.3" y="341" width="0.7" height="15.0" fill="rgb(251,48,24)" rx="2" ry="2" />
<text x="804.29" y="351.5" ></text>
</g>
<g >
<title>_int_malloc (4 samples, 0.01%)</title><rect x="1169.7" y="213" width="0.1" height="15.0" fill="rgb(234,189,13)" rx="2" ry="2" />
<text x="1172.68" y="223.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 (561 samples, 1.36%)</title><rect x="794.6" y="389" width="16.0" height="15.0" fill="rgb(219,131,42)" rx="2" ry="2" />
<text x="797.61" y="399.5" ></text>
</g>
<g >
<title>__GI___libc_free (21 samples, 0.05%)</title><rect x="272.4" y="373" width="0.6" height="15.0" fill="rgb(225,27,16)" rx="2" ry="2" />
<text x="275.36" y="383.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 (144 samples, 0.35%)</title><rect x="1176.1" y="469" width="4.1" height="15.0" fill="rgb(249,55,34)" rx="2" ry="2" />
<text x="1179.13" y="479.5" ></text>
</g>
<g >
<title>__split_vma (55 samples, 0.13%)</title><rect x="340.7" y="245" width="1.6" height="15.0" fill="rgb(229,224,34)" rx="2" ry="2" />
<text x="343.71" y="255.5" ></text>
</g>
<g >
<title>_ZN16cranelift_entity4list17ListPool$LT$T$GT$7realloc17h94c8a4e9c97c23a9E.llvm.776987249141506950 (23 samples, 0.06%)</title><rect x="16.4" y="309" width="0.6" height="15.0" fill="rgb(219,173,10)" rx="2" ry="2" />
<text x="19.36" y="319.5" ></text>
</g>
<g >
<title>alloc::raw_vec::RawVec$LT$T$C$A$GT$::reserve::h5e34cfad90a6ce21 (8 samples, 0.02%)</title><rect x="324.3" y="341" width="0.2" height="15.0" fill="rgb(212,43,39)" rx="2" ry="2" />
<text x="327.27" y="351.5" ></text>
</g>
<g >
<title>_$LT$wasmparser..parser..Parser$u20$as$u20$wasmparser..parser..WasmDecoder$GT$::read::h34b06bb75da62f27 (89 samples, 0.22%)</title><rect x="811.4" y="373" width="2.5" height="15.0" fill="rgb(247,190,48)" rx="2" ry="2" />
<text x="814.39" y="383.5" ></text>
</g>
<g >
<title>__GI___pthread_rwlock_wrlock (4 samples, 0.01%)</title><rect x="197.2" y="229" width="0.1" height="15.0" fill="rgb(233,132,29)" rx="2" ry="2" />
<text x="200.21" y="239.5" ></text>
</g>
<g >
<title>alloc::raw_vec::RawVec$LT$T$C$A$GT$::reserve::h500ef385b8747b29 (21 samples, 0.05%)</title><rect x="80.3" y="213" width="0.6" height="15.0" fill="rgb(238,218,37)" rx="2" ry="2" />
<text x="83.30" y="223.5" ></text>
</g>
<g >
<title>std::sys::unix::time::inner::Instant::now::h23f1bea5949f1bbd (6 samples, 0.01%)</title><rect x="1159.5" y="293" width="0.2" height="15.0" fill="rgb(210,193,12)" rx="2" ry="2" />
<text x="1162.52" y="303.5" ></text>
</g>
<g >
<title>__GI___libc_malloc (4 samples, 0.01%)</title><rect x="814.5" y="357" width="0.1" height="15.0" fill="rgb(209,42,35)" rx="2" ry="2" />
<text x="817.48" y="367.5" ></text>
</g>
<g >
<title>__GI___libc_malloc (6 samples, 0.01%)</title><rect x="60.9" y="293" width="0.2" height="15.0" fill="rgb(220,82,26)" rx="2" ry="2" />
<text x="63.89" y="303.5" ></text>
</g>
<g >
<title>std::sys::unix::time::inner::Instant::now::h23f1bea5949f1bbd (10 samples, 0.02%)</title><rect x="93.8" y="245" width="0.3" height="15.0" fill="rgb(216,163,38)" rx="2" ry="2" />
<text x="96.77" y="255.5" ></text>
</g>
<g >
<title>_int_malloc (6 samples, 0.01%)</title><rect x="204.1" y="229" width="0.2" height="15.0" fill="rgb(220,6,23)" rx="2" ry="2" />
<text x="207.14" y="239.5" ></text>
</g>
<g >
<title>core::ptr::real_drop_in_place::h149d1c3b3b583e51 (23 samples, 0.06%)</title><rect x="241.8" y="421" width="0.6" height="15.0" fill="rgb(234,122,18)" rx="2" ry="2" />
<text x="244.76" y="431.5" ></text>
</g>
<g >
<title>alloc::raw_vec::RawVec$LT$T$C$A$GT$::reserve::h0c445b41f7c28667 (9 samples, 0.02%)</title><rect x="127.1" y="245" width="0.2" height="15.0" fill="rgb(250,25,46)" rx="2" ry="2" />
<text x="130.08" y="255.5" ></text>
</g>
<g >
<title>_int_malloc (7 samples, 0.02%)</title><rect x="1172.3" y="293" width="0.2" height="15.0" fill="rgb(207,158,12)" rx="2" ry="2" />
<text x="1175.33" y="303.5" ></text>
</g>
<g >
<title>std::sys::unix::time::inner::now::ha10452f37b2930c5 (8 samples, 0.02%)</title><rect x="1160.3" y="309" width="0.2" height="15.0" fill="rgb(227,99,36)" rx="2" ry="2" />
<text x="1163.32" y="319.5" ></text>
</g>
<g >
<title>rayon_core::registry::WORKER_THREAD_STATE::__getit::hcbcd24f5bee841f5 (6 samples, 0.01%)</title><rect x="281.0" y="293" width="0.2" height="15.0" fill="rgb(210,223,32)" rx="2" ry="2" />
<text x="284.03" y="303.5" ></text>
</g>
<g >
<title>__GI___libc_free (28 samples, 0.07%)</title><rect x="255.4" y="373" width="0.8" height="15.0" fill="rgb(211,15,51)" rx="2" ry="2" />
<text x="258.37" y="383.5" ></text>
</g>
<g >
<title>cranelift_codegen::ir::dfg::DataFlowGraph::make_inst_results::hc774d04d1992dff6 (5 samples, 0.01%)</title><rect x="85.8" y="197" width="0.2" height="15.0" fill="rgb(252,214,22)" rx="2" ry="2" />
<text x="88.84" y="207.5" ></text>
</g>
<g >
<title>rocinante::main::h69eb7648725adb6f (722 samples, 1.75%)</title><rect x="184.8" y="341" width="20.7" height="15.0" fill="rgb(241,35,5)" rx="2" ry="2" />
<text x="187.85" y="351.5" ></text>
</g>
<g >
<title>std::sys::unix::time::inner::now::ha10452f37b2930c5 (4 samples, 0.01%)</title><rect x="1161.1" y="309" width="0.1" height="15.0" fill="rgb(226,185,25)" rx="2" ry="2" />
<text x="1164.09" y="319.5" ></text>
</g>
<g >
<title>_int_malloc (4 samples, 0.01%)</title><rect x="1167.7" y="117" width="0.1" height="15.0" fill="rgb(233,74,41)" rx="2" ry="2" />
<text x="1170.71" y="127.5" ></text>
</g>
<g >
<title>__GI___clock_gettime (6 samples, 0.01%)</title><rect x="54.2" y="293" width="0.2" height="15.0" fill="rgb(254,68,16)" rx="2" ry="2" />
<text x="57.21" y="303.5" ></text>
</g>
<g >
<title>wasmer_runtime_core::sys::unix::memory::Memory::protect::hc4dfd0a2abe36912 (7 samples, 0.02%)</title><rect x="186.8" y="213" width="0.2" height="15.0" fill="rgb(218,111,53)" rx="2" ry="2" />
<text x="189.76" y="223.5" ></text>
</g>
<g >
<title>_ZN17cranelift_codegen8regalloc9diversion13RegDiversions6divert17h0dfdaeead6ef2c57E.llvm.6468024634034730254 (10 samples, 0.02%)</title><rect x="1171.3" y="357" width="0.3" height="15.0" fill="rgb(214,205,34)" rx="2" ry="2" />
<text x="1174.33" y="367.5" ></text>
</g>
<g >
<title>cranelift_codegen::isa::x86::abi::insert_common_prologue::hd2cca9ef0991829f (21 samples, 0.05%)</title><rect x="1156.7" y="309" width="0.6" height="15.0" fill="rgb(221,114,14)" rx="2" ry="2" />
<text x="1159.66" y="319.5" ></text>
</g>
<g >
<title>cranelift_codegen::regalloc::reload::Context::insert_spill::heb310b7f97e05ad2 (31 samples, 0.07%)</title><rect x="1173.9" y="357" width="0.9" height="15.0" fill="rgb(207,183,12)" rx="2" ry="2" />
<text x="1176.90" y="367.5" ></text>
</g>
<g >
<title>__GI___pthread_rwlock_wrlock (122 samples, 0.30%)</title><rect x="816.4" y="389" width="3.5" height="15.0" fill="rgb(230,85,9)" rx="2" ry="2" />
<text x="819.42" y="399.5" ></text>
</g>
<g >
<title>_$LT$$u5b$T$u5d$$u20$as$u20$rand..seq..SliceRandom$GT$::choose::h6af4ce10a83fbad7 (4 samples, 0.01%)</title><rect x="1143.6" y="437" width="0.2" height="15.0" fill="rgb(242,67,32)" rx="2" ry="2" />
<text x="1146.65" y="447.5" ></text>
</g>
<g >
<title>free_pages_and_swap_cache (28 samples, 0.07%)</title><rect x="238.4" y="245" width="0.8" height="15.0" fill="rgb(229,222,45)" rx="2" ry="2" />
<text x="241.36" y="255.5" ></text>
</g>
<g >
<title>wasmer_runtime_core::sys::unix::memory::Memory::protect::hc4dfd0a2abe36912 (555 samples, 1.34%)</title><rect x="328.2" y="373" width="15.8" height="15.0" fill="rgb(240,40,18)" rx="2" ry="2" />
<text x="331.18" y="383.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,558 samples, 3.77%)</title><rect x="13.6" y="453" width="44.4" height="15.0" fill="rgb(227,82,36)" rx="2" ry="2" />
<text x="16.57" y="463.5" >_$LT..</text>
</g>
<g >
<title>tlb_flush_mmu_tlbonly (30 samples, 0.07%)</title><rect x="239.2" y="261" width="0.8" height="15.0" fill="rgb(224,107,2)" rx="2" ry="2" />
<text x="242.16" y="271.5" ></text>
</g>
<g >
<title>__split_vma (36 samples, 0.09%)</title><rect x="228.3" y="277" width="1.1" height="15.0" fill="rgb(235,76,25)" rx="2" ry="2" />
<text x="231.34" y="287.5" ></text>
</g>
<g >
<title>std::sys::unix::time::inner::Instant::now::h23f1bea5949f1bbd (7 samples, 0.02%)</title><rect x="77.2" y="213" width="0.2" height="15.0" fill="rgb(244,70,26)" rx="2" ry="2" />
<text x="80.22" y="223.5" ></text>
</g>
<g >
<title>do_signal (5 samples, 0.01%)</title><rect x="1180.8" y="469" width="0.2" height="15.0" fill="rgb(237,15,30)" rx="2" ry="2" />
<text x="1183.81" y="479.5" ></text>
</g>
<g >
<title>alloc::raw_vec::RawVec$LT$T$C$A$GT$::reserve::h73c832352071193f (4 samples, 0.01%)</title><rect x="324.7" y="357" width="0.1" height="15.0" fill="rgb(251,203,16)" rx="2" ry="2" />
<text x="327.67" y="367.5" ></text>
</g>
<g >
<title>_int_malloc (179 samples, 0.43%)</title><rect x="1073.5" y="405" width="5.1" height="15.0" fill="rgb(253,228,51)" rx="2" ry="2" />
<text x="1076.49" y="415.5" ></text>
</g>
<g >
<title>_ZN4core3ptr18real_drop_in_place17hbf1a2e7b1d7f1667E.llvm.2002196175208074555 (8 samples, 0.02%)</title><rect x="190.2" y="181" width="0.2" height="15.0" fill="rgb(245,211,52)" rx="2" ry="2" />
<text x="193.16" y="191.5" ></text>
</g>
<g >
<title>hashbrown::map::make_hash::h7f13566add47f7e2 (28 samples, 0.07%)</title><rect x="857.4" y="405" width="0.8" height="15.0" fill="rgb(247,123,42)" rx="2" ry="2" />
<text x="860.40" y="415.5" ></text>
</g>
<g >
<title>__sigjmp_save (7 samples, 0.02%)</title><rect x="198.6" y="197" width="0.2" height="15.0" fill="rgb(218,130,51)" rx="2" ry="2" />
<text x="201.60" y="207.5" ></text>
</g>
<g >
<title>do_syscall_64 (5 samples, 0.01%)</title><rect x="185.6" y="213" width="0.1" height="15.0" fill="rgb(239,2,21)" rx="2" ry="2" />
<text x="188.56" y="223.5" ></text>
</g>
<g >
<title>_$LT$std..collections..hash..map..DefaultHasher$u20$as$u20$core..hash..Hasher$GT$::write::hce30e4f96ad2e64e (4 samples, 0.01%)</title><rect x="814.8" y="341" width="0.1" height="15.0" fill="rgb(212,18,32)" rx="2" ry="2" />
<text x="817.79" y="351.5" ></text>
</g>
<g >
<title>__GI___libc_realloc (34 samples, 0.08%)</title><rect x="146.6" y="213" width="1.0" height="15.0" fill="rgb(206,187,11)" rx="2" ry="2" />
<text x="149.63" y="223.5" ></text>
</g>
<g >
<title>std::time::Instant::now::h33d2ba6042def2d2 (8 samples, 0.02%)</title><rect x="1160.3" y="341" width="0.2" height="15.0" fill="rgb(216,199,30)" rx="2" ry="2" />
<text x="1163.32" y="351.5" ></text>
</g>
<g >
<title>wasmer_clif_fork_frontend::frontend::FunctionBuilder::ensure_inserted_ebb::h850b064f3ceb72aa (18 samples, 0.04%)</title><rect x="806.9" y="373" width="0.5" height="15.0" fill="rgb(206,190,20)" rx="2" ry="2" />
<text x="809.91" y="383.5" ></text>
</g>
<g >
<title>vm_munmap (130 samples, 0.31%)</title><rect x="236.7" y="341" width="3.7" height="15.0" fill="rgb(252,104,26)" rx="2" ry="2" />
<text x="239.74" y="351.5" ></text>
</g>
<g >
<title>alloc::raw_vec::RawVec$LT$T$C$A$GT$::reserve::h500ef385b8747b29 (4 samples, 0.01%)</title><rect x="1178.7" y="341" width="0.1" height="15.0" fill="rgb(212,228,38)" rx="2" ry="2" />
<text x="1181.70" y="351.5" ></text>
</g>
<g >
<title>__GI___libc_free (4 samples, 0.01%)</title><rect x="103.2" y="261" width="0.1" height="15.0" fill="rgb(230,8,18)" rx="2" ry="2" />
<text x="106.16" y="271.5" ></text>
</g>
<g >
<title>wasmer_clif_fork_wasm::code_translator::translate_operator::hf206f87e46803014 (30 samples, 0.07%)</title><rect x="849.9" y="357" width="0.8" height="15.0" fill="rgb(205,5,41)" rx="2" ry="2" />
<text x="852.87" y="367.5" ></text>
</g>
<g >
<title>_int_realloc (9 samples, 0.02%)</title><rect x="1169.5" y="229" width="0.3" height="15.0" fill="rgb(249,104,20)" rx="2" ry="2" />
<text x="1172.54" y="239.5" ></text>
</g>
<g >
<title>__GI___clock_gettime (10 samples, 0.02%)</title><rect x="119.3" y="197" width="0.2" height="15.0" fill="rgb(221,54,19)" rx="2" ry="2" />
<text x="122.26" y="207.5" ></text>
</g>
<g >
<title>__GI___libc_malloc (7 samples, 0.02%)</title><rect x="801.0" y="325" width="0.2" height="15.0" fill="rgb(219,109,15)" rx="2" ry="2" />
<text x="804.01" y="335.5" ></text>
</g>
<g >
<title>alloc::raw_vec::RawVec$LT$T$C$A$GT$::reserve::h500ef385b8747b29 (6 samples, 0.01%)</title><rect x="1164.7" y="341" width="0.2" height="15.0" fill="rgb(245,32,46)" rx="2" ry="2" />
<text x="1167.71" y="351.5" ></text>
</g>
<g >
<title>perf_output_copy (8 samples, 0.02%)</title><rect x="295.8" y="165" width="0.2" height="15.0" fill="rgb(252,188,30)" rx="2" ry="2" />
<text x="298.79" y="175.5" ></text>
</g>
<g >
<title>std::time::Instant::now::h33d2ba6042def2d2 (5 samples, 0.01%)</title><rect x="117.1" y="277" width="0.2" height="15.0" fill="rgb(210,84,19)" rx="2" ry="2" />
<text x="120.15" y="287.5" ></text>
</g>
<g >
<title>__memcpy_avx_unaligned (13 samples, 0.03%)</title><rect x="354.1" y="405" width="0.4" height="15.0" fill="rgb(221,226,44)" rx="2" ry="2" />
<text x="357.10" y="415.5" ></text>
</g>
<g >
<title>cranelift_codegen::ir::function::Function::clear::h4a6ec45cff5ac809 (16 samples, 0.04%)</title><rect x="63.5" y="309" width="0.5" height="15.0" fill="rgb(215,40,30)" rx="2" ry="2" />
<text x="66.54" y="319.5" ></text>
</g>
<g >
<title>cranelift_codegen::legalizer::legalize_inst::h3c0aa7980e624bbf (57 samples, 0.14%)</title><rect x="17.1" y="341" width="1.6" height="15.0" fill="rgb(236,83,13)" rx="2" ry="2" />
<text x="20.11" y="351.5" ></text>
</g>
</g>
</svg>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment