Created
February 18, 2020 19:31
-
-
Save taegyunkim/426efd2d1c829948c63ecf84da5af85d to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?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="534" onload="init(evt)" viewBox="0 0 1200 534" 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="534.0" fill="url(#background)" /> | |
<text id="title" x="600.00" y="24" >Flame Graph</text> | |
<text id="details" x="10.00" y="517" > </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="517" > </text> | |
<g id="frames"> | |
<g > | |
<title>__GI___clock_gettime (20 samples, 0.03%)</title><rect x="114.1" y="133" width="0.3" height="15.0" fill="rgb(209,174,15)" rx="2" ry="2" /> | |
<text x="117.10" y="143.5" ></text> | |
</g> | |
<g > | |
<title>std::time::Instant::now::h33d2ba6042def2d2 (9 samples, 0.01%)</title><rect x="1170.8" y="293" width="0.2" height="15.0" fill="rgb(248,21,41)" rx="2" ry="2" /> | |
<text x="1173.83" y="303.5" ></text> | |
</g> | |
<g > | |
<title>alloc::raw_vec::RawVec$LT$T$C$A$GT$::reserve::hcf362473d68b86cf (600 samples, 0.86%)</title><rect x="666.7" y="293" width="10.1" height="15.0" fill="rgb(206,170,47)" rx="2" ry="2" /> | |
<text x="669.66" y="303.5" ></text> | |
</g> | |
<g > | |
<title>_int_malloc (7 samples, 0.01%)</title><rect x="127.5" y="181" width="0.1" height="15.0" fill="rgb(232,165,7)" rx="2" ry="2" /> | |
<text x="130.52" y="191.5" ></text> | |
</g> | |
<g > | |
<title>_int_free (8 samples, 0.01%)</title><rect x="97.0" y="117" width="0.2" height="15.0" fill="rgb(253,222,20)" rx="2" ry="2" /> | |
<text x="100.03" y="127.5" ></text> | |
</g> | |
<g > | |
<title>alloc::raw_vec::RawVec$LT$T$C$A$GT$::reserve::hae39d8e15426d2f6 (14 samples, 0.02%)</title><rect x="85.2" y="165" width="0.2" height="15.0" fill="rgb(221,62,32)" rx="2" ry="2" /> | |
<text x="88.19" y="175.5" ></text> | |
</g> | |
<g > | |
<title>alloc::raw_vec::RawVec$LT$T$C$A$GT$::reserve::hc8a0fc8526f8c69b (6 samples, 0.01%)</title><rect x="142.9" y="149" width="0.1" height="15.0" fill="rgb(251,117,25)" rx="2" ry="2" /> | |
<text x="145.94" y="159.5" ></text> | |
</g> | |
<g > | |
<title>cranelift_codegen::regalloc::live_value_tracker::LiveValueTracker::ebb_top::hfe56a550654953ca (68 samples, 0.10%)</title><rect x="160.1" y="197" width="1.2" height="15.0" fill="rgb(222,57,7)" rx="2" ry="2" /> | |
<text x="163.14" y="207.5" ></text> | |
</g> | |
<g > | |
<title>__GI___libc_malloc (16 samples, 0.02%)</title><rect x="62.9" y="229" width="0.3" height="15.0" fill="rgb(209,175,24)" rx="2" ry="2" /> | |
<text x="65.89" y="239.5" ></text> | |
</g> | |
<g > | |
<title>anon_vma_interval_tree_remove (11 samples, 0.02%)</title><rect x="234.2" y="197" width="0.2" height="15.0" fill="rgb(253,54,19)" rx="2" ry="2" /> | |
<text x="237.17" y="207.5" ></text> | |
</g> | |
<g > | |
<title>cranelift_codegen::legalizer::boundary::legalize_signatures::h52a202846af65f87 (192 samples, 0.27%)</title><rect x="81.4" y="197" width="3.2" height="15.0" fill="rgb(238,125,12)" rx="2" ry="2" /> | |
<text x="84.37" y="207.5" ></text> | |
</g> | |
<g > | |
<title>std::time::Instant::now::h33d2ba6042def2d2 (8 samples, 0.01%)</title><rect x="101.0" y="165" width="0.1" height="15.0" fill="rgb(252,60,19)" rx="2" ry="2" /> | |
<text x="103.98" y="175.5" ></text> | |
</g> | |
<g > | |
<title>perf_output_begin (8 samples, 0.01%)</title><rect x="353.2" y="101" width="0.2" height="15.0" fill="rgb(222,54,51)" rx="2" ry="2" /> | |
<text x="356.25" y="111.5" ></text> | |
</g> | |
<g > | |
<title>alloc_perturb (18 samples, 0.03%)</title><rect x="603.6" y="277" width="0.3" height="15.0" fill="rgb(248,94,10)" rx="2" ry="2" /> | |
<text x="606.63" y="287.5" ></text> | |
</g> | |
<g > | |
<title>std::time::Instant::elapsed::h8e307314b2acf9be (10 samples, 0.01%)</title><rect x="147.1" y="181" width="0.1" height="15.0" fill="rgb(226,91,41)" rx="2" ry="2" /> | |
<text x="150.07" y="191.5" ></text> | |
</g> | |
<g > | |
<title>__GI___clock_gettime (8 samples, 0.01%)</title><rect x="120.6" y="149" width="0.2" height="15.0" fill="rgb(225,46,11)" rx="2" ry="2" /> | |
<text x="123.62" y="159.5" ></text> | |
</g> | |
<g > | |
<title>alloc::raw_vec::RawVec$LT$T$C$A$GT$::reserve::hea3f43976955e3d2 (12 samples, 0.02%)</title><rect x="140.7" y="197" width="0.2" height="15.0" fill="rgb(218,179,12)" rx="2" ry="2" /> | |
<text x="143.70" y="207.5" ></text> | |
</g> | |
<g > | |
<title>wasmparser::parser::Parser::check_section_end::h80796459380c08b2 (1,146 samples, 1.63%)</title><rect x="501.1" y="293" width="19.3" height="15.0" fill="rgb(237,27,54)" rx="2" ry="2" /> | |
<text x="504.13" y="303.5" ></text> | |
</g> | |
<g > | |
<title>wasmer_runtime_core::sys::unix::memory::Memory::protect::hc4dfd0a2abe36912 (7 samples, 0.01%)</title><rect x="190.2" y="149" width="0.1" height="15.0" fill="rgb(214,180,0)" rx="2" ry="2" /> | |
<text x="193.21" y="159.5" ></text> | |
</g> | |
<g > | |
<title>std::sys::unix::time::inner::Instant::now::h23f1bea5949f1bbd (6 samples, 0.01%)</title><rect x="124.3" y="165" width="0.1" height="15.0" fill="rgb(205,198,33)" rx="2" ry="2" /> | |
<text x="127.32" y="175.5" ></text> | |
</g> | |
<g > | |
<title>cranelift_codegen::ir::instructions::InstructionData::arguments::h70ecdef19e20b02a (16 samples, 0.02%)</title><rect x="36.3" y="261" width="0.3" height="15.0" fill="rgb(233,199,28)" rx="2" ry="2" /> | |
<text x="39.28" y="271.5" ></text> | |
</g> | |
<g > | |
<title>page_remove_rmap (8 samples, 0.01%)</title><rect x="231.2" y="149" width="0.1" height="15.0" fill="rgb(219,204,16)" rx="2" ry="2" /> | |
<text x="234.19" y="159.5" ></text> | |
</g> | |
<g > | |
<title>std::time::Instant::now::h33d2ba6042def2d2 (7 samples, 0.01%)</title><rect x="112.9" y="213" width="0.1" height="15.0" fill="rgb(252,5,28)" rx="2" ry="2" /> | |
<text x="115.90" y="223.5" ></text> | |
</g> | |
<g > | |
<title>std::sys::unix::time::inner::Instant::now::h23f1bea5949f1bbd (10 samples, 0.01%)</title><rect x="54.3" y="229" width="0.1" height="15.0" fill="rgb(245,24,23)" rx="2" ry="2" /> | |
<text x="57.26" y="239.5" ></text> | |
</g> | |
<g > | |
<title>_ZN17cranelift_codegen9flowgraph16ControlFlowGraph11compute_ebb17he662711fe9d10399E.llvm.15195122248153170019 (30 samples, 0.04%)</title><rect x="121.1" y="197" width="0.5" height="15.0" fill="rgb(239,111,21)" rx="2" ry="2" /> | |
<text x="124.11" y="207.5" ></text> | |
</g> | |
<g > | |
<title>std::sys::unix::time::inner::now::ha10452f37b2930c5 (7 samples, 0.01%)</title><rect x="38.6" y="213" width="0.1" height="15.0" fill="rgb(249,218,47)" rx="2" ry="2" /> | |
<text x="41.55" y="223.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 (581 samples, 0.83%)</title><rect x="178.6" y="437" width="9.7" height="15.0" fill="rgb(251,216,51)" rx="2" ry="2" /> | |
<text x="181.57" y="447.5" ></text> | |
</g> | |
<g > | |
<title>_int_malloc (6 samples, 0.01%)</title><rect x="71.9" y="133" width="0.1" height="15.0" fill="rgb(253,77,16)" rx="2" ry="2" /> | |
<text x="74.90" y="143.5" ></text> | |
</g> | |
<g > | |
<title>cranelift_codegen::ir::function::Function::update_encoding::hf75ec520bc911a0c (41 samples, 0.06%)</title><rect x="17.4" y="261" width="0.7" height="15.0" fill="rgb(227,12,36)" rx="2" ry="2" /> | |
<text x="20.37" y="271.5" ></text> | |
</g> | |
<g > | |
<title>alloc::raw_vec::RawVec$LT$T$C$A$GT$::reserve::hc8a0fc8526f8c69b (7 samples, 0.01%)</title><rect x="1177.8" y="261" width="0.1" height="15.0" fill="rgb(213,7,25)" rx="2" ry="2" /> | |
<text x="1180.77" y="271.5" ></text> | |
</g> | |
<g > | |
<title>_int_realloc (21 samples, 0.03%)</title><rect x="16.9" y="181" width="0.4" height="15.0" fill="rgb(239,69,47)" rx="2" ry="2" /> | |
<text x="19.95" y="191.5" ></text> | |
</g> | |
<g > | |
<title>__vdso_clock_gettime (11 samples, 0.02%)</title><rect x="39.1" y="197" width="0.2" height="15.0" fill="rgb(223,38,11)" rx="2" ry="2" /> | |
<text x="42.14" y="207.5" ></text> | |
</g> | |
<g > | |
<title>do_syscall_64 (372 samples, 0.53%)</title><rect x="283.0" y="261" width="6.2" height="15.0" fill="rgb(217,73,44)" rx="2" ry="2" /> | |
<text x="285.99" y="271.5" ></text> | |
</g> | |
<g > | |
<title>std::sys::unix::time::inner::now::ha10452f37b2930c5 (6 samples, 0.01%)</title><rect x="1166.4" y="245" width="0.1" height="15.0" fill="rgb(218,160,40)" rx="2" ry="2" /> | |
<text x="1169.42" y="255.5" ></text> | |
</g> | |
<g > | |
<title>wasmparser::binary_reader::BinaryReader::read_section_code::h3130ec4f2be00e86 (153 samples, 0.22%)</title><rect x="574.4" y="245" width="2.6" height="15.0" fill="rgb(244,52,33)" rx="2" ry="2" /> | |
<text x="577.44" y="255.5" ></text> | |
</g> | |
<g > | |
<title>cranelift_codegen::abi::legalize_args::he47515d3a3ad0ee6 (27 samples, 0.04%)</title><rect x="1169.9" y="261" width="0.4" height="15.0" fill="rgb(226,196,45)" rx="2" ry="2" /> | |
<text x="1172.85" y="271.5" ></text> | |
</g> | |
<g > | |
<title>cranelift_codegen::ir::layout::Layout::append_inst::h4a2fb37740cc80ba (38 samples, 0.05%)</title><rect x="297.7" y="293" width="0.6" height="15.0" fill="rgb(238,47,11)" rx="2" ry="2" /> | |
<text x="300.65" y="303.5" ></text> | |
</g> | |
<g > | |
<title>wasmer_clif_fork_frontend::frontend::FunctionBuilder::append_ebb_params_for_function_returns::hef5369dc7503df5f (66 samples, 0.09%)</title><rect x="806.1" y="309" width="1.1" height="15.0" fill="rgb(227,135,50)" rx="2" ry="2" /> | |
<text x="809.07" y="319.5" ></text> | |
</g> | |
<g > | |
<title>alloc::raw_vec::RawVec$LT$T$C$A$GT$::reserve::h500ef385b8747b29 (7 samples, 0.01%)</title><rect x="1170.7" y="277" width="0.1" height="15.0" fill="rgb(243,102,17)" rx="2" ry="2" /> | |
<text x="1173.68" y="287.5" ></text> | |
</g> | |
<g > | |
<title>_ZN4core3ptr18real_drop_in_place17he728ca68fc8217d5E.llvm.689856235829814499 (44 samples, 0.06%)</title><rect x="298.7" y="309" width="0.7" height="15.0" fill="rgb(237,55,29)" rx="2" ry="2" /> | |
<text x="301.66" y="319.5" ></text> | |
</g> | |
<g > | |
<title>cranelift_codegen::ir::instructions::InstructionData::analyze_call::hd2808ac2090dc569 (6 samples, 0.01%)</title><rect x="55.0" y="277" width="0.1" height="15.0" fill="rgb(213,145,39)" rx="2" ry="2" /> | |
<text x="58.04" y="287.5" ></text> | |
</g> | |
<g > | |
<title>__perf_addr_filters_adjust (100 samples, 0.14%)</title><rect x="265.1" y="165" width="1.6" height="15.0" fill="rgb(205,223,2)" rx="2" ry="2" /> | |
<text x="268.06" y="175.5" ></text> | |
</g> | |
<g > | |
<title>__GI___mprotect (981 samples, 1.40%)</title><rect x="331.5" y="293" width="16.5" height="15.0" fill="rgb(216,54,54)" rx="2" ry="2" /> | |
<text x="334.45" y="303.5" ></text> | |
</g> | |
<g > | |
<title>wasmer_runtime_core::sys::unix::memory::Memory::with_size::h99a15e322ed7dfca (382 samples, 0.54%)</title><rect x="348.2" y="309" width="6.4" height="15.0" fill="rgb(227,130,47)" rx="2" ry="2" /> | |
<text x="351.20" y="319.5" ></text> | |
</g> | |
<g > | |
<title>alloc::raw_vec::RawVec$LT$T$C$A$GT$::reserve::h500ef385b8747b29 (15 samples, 0.02%)</title><rect x="805.7" y="245" width="0.3" height="15.0" fill="rgb(208,39,50)" rx="2" ry="2" /> | |
<text x="808.72" y="255.5" ></text> | |
</g> | |
<g > | |
<title>__GI___libc_malloc (22 samples, 0.03%)</title><rect x="1107.7" y="357" width="0.4" height="15.0" fill="rgb(248,69,46)" rx="2" ry="2" /> | |
<text x="1110.72" y="367.5" ></text> | |
</g> | |
<g > | |
<title>_int_free (8 samples, 0.01%)</title><rect x="329.8" y="229" width="0.1" height="15.0" fill="rgb(210,166,33)" rx="2" ry="2" /> | |
<text x="332.80" y="239.5" ></text> | |
</g> | |
<g > | |
<title>arch_tlb_finish_mmu (166 samples, 0.24%)</title><rect x="227.2" y="181" width="2.8" height="15.0" fill="rgb(218,175,23)" rx="2" ry="2" /> | |
<text x="230.19" y="191.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 (454 samples, 0.65%)</title><rect x="189.9" y="197" width="7.6" height="15.0" fill="rgb(254,110,23)" rx="2" ry="2" /> | |
<text x="192.86" y="207.5" ></text> | |
</g> | |
<g > | |
<title>_int_realloc (22 samples, 0.03%)</title><rect x="1179.0" y="213" width="0.3" height="15.0" fill="rgb(221,111,10)" rx="2" ry="2" /> | |
<text x="1181.95" y="223.5" ></text> | |
</g> | |
<g > | |
<title>cranelift_codegen::legalizer::boundary::legalize_signatures::h52a202846af65f87 (18 samples, 0.03%)</title><rect x="1176.4" y="309" width="0.3" height="15.0" fill="rgb(250,79,20)" rx="2" ry="2" /> | |
<text x="1179.43" y="319.5" ></text> | |
</g> | |
<g > | |
<title>_int_free (17 samples, 0.02%)</title><rect x="182.8" y="261" width="0.3" height="15.0" fill="rgb(220,72,54)" rx="2" ry="2" /> | |
<text x="185.84" y="271.5" ></text> | |
</g> | |
<g > | |
<title>__GI___libc_malloc (18 samples, 0.03%)</title><rect x="819.1" y="325" width="0.3" height="15.0" fill="rgb(226,176,1)" rx="2" ry="2" /> | |
<text x="822.11" y="335.5" ></text> | |
</g> | |
<g > | |
<title>__GI___libc_realloc (25 samples, 0.04%)</title><rect x="151.1" y="149" width="0.4" height="15.0" fill="rgb(238,12,14)" rx="2" ry="2" /> | |
<text x="154.06" y="159.5" ></text> | |
</g> | |
<g > | |
<title>cranelift_codegen::topo_order::TopoOrder::next::h3ea49efe09e3a2f0 (24 samples, 0.03%)</title><rect x="39.8" y="277" width="0.4" height="15.0" fill="rgb(237,207,52)" rx="2" ry="2" /> | |
<text x="42.78" y="287.5" ></text> | |
</g> | |
<g > | |
<title>__GI___libc_malloc (9 samples, 0.01%)</title><rect x="1152.8" y="245" width="0.2" height="15.0" fill="rgb(216,122,44)" rx="2" ry="2" /> | |
<text x="1155.80" y="255.5" ></text> | |
</g> | |
<g > | |
<title>_cond_resched (6 samples, 0.01%)</title><rect x="349.5" y="197" width="0.1" height="15.0" fill="rgb(242,175,12)" rx="2" ry="2" /> | |
<text x="352.53" y="207.5" ></text> | |
</g> | |
<g > | |
<title>__GI___libc_malloc (6 samples, 0.01%)</title><rect x="115.2" y="197" width="0.1" height="15.0" fill="rgb(205,169,45)" rx="2" ry="2" /> | |
<text x="118.17" y="207.5" ></text> | |
</g> | |
<g > | |
<title>__rust_realloc (22 samples, 0.03%)</title><rect x="988.7" y="325" width="0.3" height="15.0" fill="rgb(239,16,24)" rx="2" ry="2" /> | |
<text x="991.67" y="335.5" ></text> | |
</g> | |
<g > | |
<title>std::time::Instant::elapsed::h8e307314b2acf9be (13 samples, 0.02%)</title><rect x="117.3" y="197" width="0.3" height="15.0" fill="rgb(224,189,19)" rx="2" ry="2" /> | |
<text x="120.34" y="207.5" ></text> | |
</g> | |
<g > | |
<title>__GI___libc_malloc (19 samples, 0.03%)</title><rect x="357.2" y="341" width="0.3" height="15.0" fill="rgb(233,23,3)" rx="2" ry="2" /> | |
<text x="360.18" y="351.5" ></text> | |
</g> | |
<g > | |
<title>std::sys::unix::time::inner::now::ha10452f37b2930c5 (20 samples, 0.03%)</title><rect x="114.1" y="149" width="0.3" height="15.0" fill="rgb(228,44,37)" rx="2" ry="2" /> | |
<text x="117.10" y="159.5" ></text> | |
</g> | |
<g > | |
<title>wasmer_clif_fork_frontend::ssa::SSABuilder::declare_ebb_header_block::h26e9e9b0a35fd899 (69 samples, 0.10%)</title><rect x="808.5" y="293" width="1.2" height="15.0" fill="rgb(213,222,50)" rx="2" ry="2" /> | |
<text x="811.49" y="303.5" ></text> | |
</g> | |
<g > | |
<title>cranelift_codegen::ir::layout::Layout::assign_ebb_seq::hcbb4313358ff056c (6 samples, 0.01%)</title><rect x="326.8" y="309" width="0.1" height="15.0" fill="rgb(242,88,12)" rx="2" ry="2" /> | |
<text x="329.85" y="319.5" ></text> | |
</g> | |
<g > | |
<title>sys_mmap (306 samples, 0.44%)</title><rect x="349.3" y="245" width="5.2" height="15.0" fill="rgb(253,25,34)" rx="2" ry="2" /> | |
<text x="352.35" y="255.5" ></text> | |
</g> | |
<g > | |
<title>cranelift_codegen::regalloc::coalescing::DomForest::push_node::h7bf50934d429ea56 (10 samples, 0.01%)</title><rect x="1168.3" y="213" width="0.2" height="15.0" fill="rgb(245,181,29)" rx="2" ry="2" /> | |
<text x="1171.34" y="223.5" ></text> | |
</g> | |
<g > | |
<title>_int_realloc (6 samples, 0.01%)</title><rect x="326.0" y="245" width="0.1" height="15.0" fill="rgb(252,13,5)" rx="2" ry="2" /> | |
<text x="328.97" y="255.5" ></text> | |
</g> | |
<g > | |
<title>std::time::Instant::now::h33d2ba6042def2d2 (10 samples, 0.01%)</title><rect x="54.3" y="245" width="0.1" height="15.0" fill="rgb(239,30,23)" rx="2" ry="2" /> | |
<text x="57.26" y="255.5" ></text> | |
</g> | |
<g > | |
<title>__rust_dealloc (6 samples, 0.01%)</title><rect x="1025.1" y="357" width="0.1" height="15.0" fill="rgb(213,154,5)" rx="2" ry="2" /> | |
<text x="1028.15" y="367.5" ></text> | |
</g> | |
<g > | |
<title>_int_free (10 samples, 0.01%)</title><rect x="823.9" y="293" width="0.1" height="15.0" fill="rgb(226,110,25)" rx="2" ry="2" /> | |
<text x="826.88" y="303.5" ></text> | |
</g> | |
<g > | |
<title>_$LT$parity_wasm..elements..ops..Instructions$u20$as$u20$parity_wasm..elements..Serialize$GT$::serialize::h2a48be252ee90fa3 (86 samples, 0.12%)</title><rect x="198.1" y="213" width="1.4" height="15.0" fill="rgb(239,206,40)" rx="2" ry="2" /> | |
<text x="201.06" y="223.5" ></text> | |
</g> | |
<g > | |
<title>__GI___libc_realloc (83 samples, 0.12%)</title><rect x="149.4" y="149" width="1.4" height="15.0" fill="rgb(245,41,40)" rx="2" ry="2" /> | |
<text x="152.38" y="159.5" ></text> | |
</g> | |
<g > | |
<title>unlink_anon_vmas (12 samples, 0.02%)</title><rect x="225.9" y="181" width="0.2" height="15.0" fill="rgb(212,226,38)" rx="2" ry="2" /> | |
<text x="228.91" 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$::finalize::hbd8b1f6eb4859c5a (55 samples, 0.08%)</title><rect x="189.9" y="181" width="0.9" height="15.0" fill="rgb(214,146,40)" rx="2" ry="2" /> | |
<text x="192.89" y="191.5" ></text> | |
</g> | |
<g > | |
<title>__GI___libc_realloc (14 samples, 0.02%)</title><rect x="134.7" y="165" width="0.2" height="15.0" fill="rgb(247,16,9)" rx="2" ry="2" /> | |
<text x="137.71" y="175.5" ></text> | |
</g> | |
<g > | |
<title>cranelift_codegen::context::Context::legalize::h3be573a3855dd690 (50 samples, 0.07%)</title><rect x="1169.5" y="325" width="0.8" height="15.0" fill="rgb(211,191,0)" rx="2" ry="2" /> | |
<text x="1172.47" y="335.5" ></text> | |
</g> | |
<g > | |
<title>_int_realloc (17 samples, 0.02%)</title><rect x="93.4" y="149" width="0.3" height="15.0" fill="rgb(225,227,19)" rx="2" ry="2" /> | |
<text x="96.38" y="159.5" ></text> | |
</g> | |
<g > | |
<title>std::sys::unix::time::inner::Instant::now::h23f1bea5949f1bbd (10 samples, 0.01%)</title><rect x="163.9" y="181" width="0.2" height="15.0" fill="rgb(250,229,49)" rx="2" ry="2" /> | |
<text x="166.94" y="191.5" ></text> | |
</g> | |
<g > | |
<title>__GI___sched_yield (11 samples, 0.02%)</title><rect x="188.8" y="245" width="0.2" height="15.0" fill="rgb(237,7,51)" rx="2" ry="2" /> | |
<text x="191.85" y="255.5" ></text> | |
</g> | |
<g > | |
<title>hashbrown::map::make_hash::h7f13566add47f7e2 (35 samples, 0.05%)</title><rect x="860.5" y="341" width="0.6" height="15.0" fill="rgb(238,113,17)" rx="2" ry="2" /> | |
<text x="863.53" y="351.5" ></text> | |
</g> | |
<g > | |
<title>alloc::raw_vec::RawVec$LT$T$C$A$GT$::reserve::h209de9d6031d8f72 (8 samples, 0.01%)</title><rect x="168.0" y="181" width="0.2" height="15.0" fill="rgb(208,154,36)" rx="2" ry="2" /> | |
<text x="171.04" y="191.5" ></text> | |
</g> | |
<g > | |
<title>__GI___libc_realloc (17 samples, 0.02%)</title><rect x="700.9" y="277" width="0.3" height="15.0" fill="rgb(212,17,2)" rx="2" ry="2" /> | |
<text x="703.88" y="287.5" ></text> | |
</g> | |
<g > | |
<title>_int_free (13 samples, 0.02%)</title><rect x="1107.5" y="357" width="0.2" height="15.0" fill="rgb(214,213,21)" rx="2" ry="2" /> | |
<text x="1110.46" y="367.5" ></text> | |
</g> | |
<g > | |
<title>_copy_to_user (9 samples, 0.01%)</title><rect x="1188.7" y="357" width="0.2" height="15.0" fill="rgb(216,161,52)" rx="2" ry="2" /> | |
<text x="1191.72" y="367.5" ></text> | |
</g> | |
<g > | |
<title>__GI___libc_malloc (7 samples, 0.01%)</title><rect x="857.7" y="357" width="0.1" height="15.0" fill="rgb(235,90,51)" rx="2" ry="2" /> | |
<text x="860.67" y="367.5" ></text> | |
</g> | |
<g > | |
<title>lru_add_drain (7 samples, 0.01%)</title><rect x="225.1" y="213" width="0.1" height="15.0" fill="rgb(241,46,41)" rx="2" ry="2" /> | |
<text x="228.09" y="223.5" ></text> | |
</g> | |
<g > | |
<title>__sigprocmask (306 samples, 0.44%)</title><rect x="866.0" y="277" width="5.2" height="15.0" fill="rgb(245,152,1)" rx="2" ry="2" /> | |
<text x="869.02" y="287.5" ></text> | |
</g> | |
<g > | |
<title>cranelift_codegen::ir::function::Function::update_encoding::hf75ec520bc911a0c (23 samples, 0.03%)</title><rect x="1154.2" y="245" width="0.4" height="15.0" fill="rgb(215,91,17)" rx="2" ry="2" /> | |
<text x="1157.25" y="255.5" ></text> | |
</g> | |
<g > | |
<title>__perf_addr_filters_adjust (44 samples, 0.06%)</title><rect x="263.8" y="181" width="0.8" height="15.0" fill="rgb(241,88,36)" rx="2" ry="2" /> | |
<text x="266.85" y="191.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 (24 samples, 0.03%)</title><rect x="145.0" y="181" width="0.4" height="15.0" fill="rgb(229,172,49)" rx="2" ry="2" /> | |
<text x="148.02" y="191.5" ></text> | |
</g> | |
<g > | |
<title>std::sys::unix::time::inner::Instant::now::h23f1bea5949f1bbd (12 samples, 0.02%)</title><rect x="110.9" y="181" width="0.2" height="15.0" fill="rgb(210,194,0)" rx="2" ry="2" /> | |
<text x="113.90" y="191.5" ></text> | |
</g> | |
<g > | |
<title>entry_SYSCALL_64_after_hwframe (30 samples, 0.04%)</title><rect x="11.3" y="357" width="0.5" height="15.0" fill="rgb(236,207,42)" rx="2" ry="2" /> | |
<text x="14.33" y="367.5" ></text> | |
</g> | |
<g > | |
<title>hashbrown::map::HashMap$LT$K$C$V$C$S$GT$::contains_key::h6a246e820911d2be (27 samples, 0.04%)</title><rect x="878.0" y="309" width="0.5" height="15.0" fill="rgb(227,10,25)" rx="2" ry="2" /> | |
<text x="881.02" y="319.5" ></text> | |
</g> | |
<g > | |
<title>cranelift_codegen::simple_gvn::do_simple_gvn::h76b7a5cd0deccebd (499 samples, 0.71%)</title><rect x="164.5" y="229" width="8.4" height="15.0" fill="rgb(243,138,20)" rx="2" ry="2" /> | |
<text x="167.51" y="239.5" ></text> | |
</g> | |
<g > | |
<title>_$LT$rocinante..exec..wasmer..Wasmer$u20$as$u20$rocinante..exec..Interpreter$GT$::eval_test_cases::hf136840e36843cad (514 samples, 0.73%)</title><rect x="189.2" y="245" width="8.7" height="15.0" fill="rgb(238,80,51)" rx="2" ry="2" /> | |
<text x="192.23" y="255.5" ></text> | |
</g> | |
<g > | |
<title>_int_malloc (6 samples, 0.01%)</title><rect x="808.2" y="245" width="0.1" height="15.0" fill="rgb(230,69,21)" rx="2" ry="2" /> | |
<text x="811.21" y="255.5" ></text> | |
</g> | |
<g > | |
<title>cranelift_codegen::regalloc::coalescing::Coalescing::new::ha20f15d9372bd83a (8 samples, 0.01%)</title><rect x="188.2" y="341" width="0.1" height="15.0" fill="rgb(213,51,31)" rx="2" ry="2" /> | |
<text x="191.21" y="351.5" ></text> | |
</g> | |
<g > | |
<title>cranelift_codegen::flowgraph::ControlFlowGraph::recompute_ebb::h44e6fe3205f2df2b (17 samples, 0.02%)</title><rect x="1167.0" y="165" width="0.3" height="15.0" fill="rgb(244,148,45)" rx="2" ry="2" /> | |
<text x="1169.99" y="175.5" ></text> | |
</g> | |
<g > | |
<title>rocinante::stoke::CandidateFunc::get_rand_instr::h1affb64f6e1408ee (17 samples, 0.02%)</title><rect x="201.1" y="229" width="0.3" height="15.0" fill="rgb(232,26,20)" rx="2" ry="2" /> | |
<text x="204.11" y="239.5" ></text> | |
</g> | |
<g > | |
<title>__vdso_clock_gettime (13 samples, 0.02%)</title><rect x="314.1" y="197" width="0.2" height="15.0" fill="rgb(227,131,28)" rx="2" ry="2" /> | |
<text x="317.10" y="207.5" ></text> | |
</g> | |
<g > | |
<title>std::sys::unix::time::inner::now::ha10452f37b2930c5 (6 samples, 0.01%)</title><rect x="38.1" y="213" width="0.1" height="15.0" fill="rgb(215,68,21)" rx="2" ry="2" /> | |
<text x="41.08" y="223.5" ></text> | |
</g> | |
<g > | |
<title>alloc::raw_vec::RawVec$LT$T$C$A$GT$::reserve::h500ef385b8747b29 (8 samples, 0.01%)</title><rect x="1161.0" y="277" width="0.1" height="15.0" fill="rgb(233,111,7)" rx="2" ry="2" /> | |
<text x="1164.01" y="287.5" ></text> | |
</g> | |
<g > | |
<title>unlink_anon_vmas (24 samples, 0.03%)</title><rect x="234.0" y="213" width="0.5" height="15.0" fill="rgb(252,58,52)" rx="2" ry="2" /> | |
<text x="237.05" y="223.5" ></text> | |
</g> | |
<g > | |
<title>__GI___clock_gettime (8 samples, 0.01%)</title><rect x="1165.3" y="229" width="0.1" height="15.0" fill="rgb(208,159,43)" rx="2" ry="2" /> | |
<text x="1168.28" y="239.5" ></text> | |
</g> | |
<g > | |
<title>std::sys::unix::time::inner::now::ha10452f37b2930c5 (6 samples, 0.01%)</title><rect x="60.2" y="245" width="0.1" height="15.0" fill="rgb(221,183,50)" rx="2" ry="2" /> | |
<text x="63.25" y="255.5" ></text> | |
</g> | |
<g > | |
<title>cranelift_codegen::isa::encoding::base_size::he0d0831e71de2a0c (10 samples, 0.01%)</title><rect x="110.6" y="197" width="0.2" height="15.0" fill="rgb(246,87,20)" rx="2" ry="2" /> | |
<text x="113.63" y="207.5" ></text> | |
</g> | |
<g > | |
<title>__GI___clock_gettime (11 samples, 0.02%)</title><rect x="1153.8" y="181" width="0.2" height="15.0" fill="rgb(236,159,16)" rx="2" ry="2" /> | |
<text x="1156.81" y="191.5" ></text> | |
</g> | |
<g > | |
<title>__vdso_clock_gettime (7 samples, 0.01%)</title><rect x="1161.2" y="213" width="0.1" height="15.0" fill="rgb(235,211,46)" rx="2" ry="2" /> | |
<text x="1164.21" y="223.5" ></text> | |
</g> | |
<g > | |
<title>cranelift_codegen::ir::builder::InstBuilder::x86_push::h21ec220088e6ffaa (54 samples, 0.08%)</title><rect x="97.4" y="165" width="0.9" height="15.0" fill="rgb(236,122,6)" rx="2" ry="2" /> | |
<text x="100.36" y="175.5" ></text> | |
</g> | |
<g > | |
<title>hashbrown::raw::RawTable$LT$T$GT$::insert::h1ba60dad4ebe9e0f (1,112 samples, 1.58%)</title><rect x="641.7" y="293" width="18.7" height="15.0" fill="rgb(206,116,22)" rx="2" ry="2" /> | |
<text x="644.72" y="303.5" ></text> | |
</g> | |
<g > | |
<title>_int_realloc (7 samples, 0.01%)</title><rect x="162.1" y="149" width="0.1" height="15.0" fill="rgb(241,164,51)" rx="2" ry="2" /> | |
<text x="165.12" y="159.5" ></text> | |
</g> | |
<g > | |
<title>_int_malloc (9 samples, 0.01%)</title><rect x="810.4" y="245" width="0.1" height="15.0" fill="rgb(229,162,38)" rx="2" ry="2" /> | |
<text x="813.39" y="255.5" ></text> | |
</g> | |
<g > | |
<title>std::sys::unix::time::inner::Instant::now::h23f1bea5949f1bbd (11 samples, 0.02%)</title><rect x="50.4" y="229" width="0.2" height="15.0" fill="rgb(205,67,14)" rx="2" ry="2" /> | |
<text x="53.39" y="239.5" ></text> | |
</g> | |
<g > | |
<title>cpumask_any_but (7 samples, 0.01%)</title><rect x="229.8" y="133" width="0.1" height="15.0" fill="rgb(235,53,24)" rx="2" ry="2" /> | |
<text x="232.83" y="143.5" ></text> | |
</g> | |
<g > | |
<title>cranelift_codegen::regalloc::diversion::RegDiversions::apply::ha5ceacd048d67eac (24 samples, 0.03%)</title><rect x="27.2" y="277" width="0.4" height="15.0" fill="rgb(254,111,1)" rx="2" ry="2" /> | |
<text x="30.19" y="287.5" ></text> | |
</g> | |
<g > | |
<title>rocinante::stoke::transform::Transform::undo::hc297804561d29045 (60 samples, 0.09%)</title><rect x="1146.8" y="405" width="1.0" height="15.0" fill="rgb(205,68,51)" rx="2" ry="2" /> | |
<text x="1149.83" y="415.5" ></text> | |
</g> | |
<g > | |
<title>cranelift_codegen::isa::TargetIsa::pointer_bytes::h9e2dadd981cd4ea3 (6 samples, 0.01%)</title><rect x="20.7" y="245" width="0.1" height="15.0" fill="rgb(235,24,44)" rx="2" ry="2" /> | |
<text x="23.70" y="255.5" ></text> | |
</g> | |
<g > | |
<title>alloc::vec::Vec$LT$T$GT$::resize::h9160379633033fa6 (6 samples, 0.01%)</title><rect x="95.5" y="149" width="0.1" height="15.0" fill="rgb(233,64,18)" rx="2" ry="2" /> | |
<text x="98.51" y="159.5" ></text> | |
</g> | |
<g > | |
<title>core::slice::_$LT$impl$u20$$u5b$T$u5d$$GT$::copy_from_slice::hf2a016039d5668ca (158 samples, 0.23%)</title><rect x="989.0" y="341" width="2.7" height="15.0" fill="rgb(206,15,19)" rx="2" ry="2" /> | |
<text x="992.04" y="351.5" ></text> | |
</g> | |
<g > | |
<title>_$LT$cranelift_codegen..isa..enc_tables..Encodings$u20$as$u20$core..iter..traits..iterator..Iterator$GT$::next::he6ba202105922eb5 (10 samples, 0.01%)</title><rect x="21.1" y="213" width="0.2" height="15.0" fill="rgb(222,23,47)" rx="2" ry="2" /> | |
<text x="24.12" y="223.5" ></text> | |
</g> | |
<g > | |
<title>rayon::iter::plumbing::bridge_producer_consumer::helper::h864336325ddf8446 (6,990 samples, 9.96%)</title><rect x="61.0" y="341" width="117.6" height="15.0" fill="rgb(216,49,20)" rx="2" ry="2" /> | |
<text x="64.02" y="351.5" >rayon::iter::p..</text> | |
</g> | |
<g > | |
<title>wasmparser::parser::Parser::check_section_end::h80796459380c08b2 (11 samples, 0.02%)</title><rect x="192.7" y="133" width="0.2" height="15.0" fill="rgb(205,54,33)" rx="2" ry="2" /> | |
<text x="195.71" y="143.5" ></text> | |
</g> | |
<g > | |
<title>_ZN17cranelift_codegen24redundant_reload_remover22RedundantReloadRemover37do_redundant_fill_removal_on_function17h0915e7840d7db9a4E.llvm.15195122248153170019 (45 samples, 0.06%)</title><rect x="14.0" y="309" width="0.7" height="15.0" fill="rgb(222,175,28)" rx="2" ry="2" /> | |
<text x="16.95" y="319.5" ></text> | |
</g> | |
<g > | |
<title>_$LT$cranelift_codegen..timing..details..TimingToken$u20$as$u20$core..ops..drop..Drop$GT$::drop::h1b19c2a93ee0a091 (15 samples, 0.02%)</title><rect x="153.4" y="197" width="0.3" height="15.0" fill="rgb(233,143,14)" rx="2" ry="2" /> | |
<text x="156.43" y="207.5" ></text> | |
</g> | |
<g > | |
<title>__GI___libc_malloc (7 samples, 0.01%)</title><rect x="65.1" y="229" width="0.1" height="15.0" fill="rgb(220,98,4)" rx="2" ry="2" /> | |
<text x="68.11" y="239.5" ></text> | |
</g> | |
<g > | |
<title>core::ptr::real_drop_in_place::hee16df317d8edeaf (12 samples, 0.02%)</title><rect x="189.5" y="197" width="0.2" height="15.0" fill="rgb(221,122,0)" rx="2" ry="2" /> | |
<text x="192.45" y="207.5" ></text> | |
</g> | |
<g > | |
<title>__alloc_pages_nodemask (32 samples, 0.05%)</title><rect x="277.7" y="197" width="0.6" height="15.0" fill="rgb(227,115,40)" rx="2" ry="2" /> | |
<text x="280.72" y="207.5" ></text> | |
</g> | |
<g > | |
<title>alloc::borrow::Cow$LT$B$GT$::to_mut::hc816a9c98cae5186 (28 samples, 0.04%)</title><rect x="15.7" y="245" width="0.5" height="15.0" fill="rgb(225,6,18)" rx="2" ry="2" /> | |
<text x="18.70" y="255.5" ></text> | |
</g> | |
<g > | |
<title>__GI___libc_malloc (22 samples, 0.03%)</title><rect x="299.5" y="293" width="0.4" height="15.0" fill="rgb(247,113,21)" rx="2" ry="2" /> | |
<text x="302.48" y="303.5" ></text> | |
</g> | |
<g > | |
<title>alloc::raw_vec::RawVec$LT$T$C$A$GT$::reserve::h5bb4661d248be310 (15 samples, 0.02%)</title><rect x="199.9" y="197" width="0.2" height="15.0" fill="rgb(210,113,19)" rx="2" ry="2" /> | |
<text x="202.90" y="207.5" ></text> | |
</g> | |
<g > | |
<title>__GI___libc_free (8 samples, 0.01%)</title><rect x="312.7" y="261" width="0.1" height="15.0" fill="rgb(218,83,32)" rx="2" ry="2" /> | |
<text x="315.70" y="271.5" ></text> | |
</g> | |
<g > | |
<title>core::ptr::real_drop_in_place::hfcfcbc8f14d16298 (50 samples, 0.07%)</title><rect x="360.0" y="341" width="0.8" height="15.0" fill="rgb(223,158,23)" rx="2" ry="2" /> | |
<text x="362.99" y="351.5" ></text> | |
</g> | |
<g > | |
<title>kmem_cache_alloc (14 samples, 0.02%)</title><rect x="345.9" y="165" width="0.3" height="15.0" fill="rgb(239,29,37)" rx="2" ry="2" /> | |
<text x="348.92" y="175.5" ></text> | |
</g> | |
<g > | |
<title>std::time::Instant::now::h33d2ba6042def2d2 (8 samples, 0.01%)</title><rect x="52.7" y="277" width="0.1" height="15.0" fill="rgb(214,215,30)" rx="2" ry="2" /> | |
<text x="55.68" y="287.5" ></text> | |
</g> | |
<g > | |
<title>_$LT$rocinante..exec..wasmer..Wasmer$u20$as$u20$rocinante..exec..Interpreter$GT$::eval_test_cases::hf136840e36843cad (39,885 samples, 56.84%)</title><rect x="208.8" y="405" width="670.7" height="15.0" fill="rgb(217,100,46)" rx="2" ry="2" /> | |
<text x="211.76" y="415.5" >_$LT$rocinante..exec..wasmer..Wasmer$u20$as$u20$rocinante..exec..Interpreter$GT$::eval_test_..</text> | |
</g> | |
<g > | |
<title>_$LT$alloc..vec..Vec$LT$T$GT$$u20$as$u20$core..clone..Clone$GT$::clone::hd7b91bbd77a11ec1 (6 samples, 0.01%)</title><rect x="65.6" y="245" width="0.1" height="15.0" fill="rgb(243,36,21)" rx="2" ry="2" /> | |
<text x="68.58" y="255.5" ></text> | |
</g> | |
<g > | |
<title>cranelift_codegen::ir::dfg::DataFlowGraph::make_inst_results::hc774d04d1992dff6 (7 samples, 0.01%)</title><rect x="853.5" y="261" width="0.1" height="15.0" fill="rgb(235,103,8)" rx="2" ry="2" /> | |
<text x="856.48" y="271.5" ></text> | |
</g> | |
<g > | |
<title>__GI___libc_malloc (11 samples, 0.02%)</title><rect x="199.5" y="181" width="0.2" height="15.0" fill="rgb(251,63,46)" rx="2" ry="2" /> | |
<text x="202.53" y="191.5" ></text> | |
</g> | |
<g > | |
<title>alloc::raw_vec::RawVec$LT$T$C$A$GT$::reserve::hc8a0fc8526f8c69b (20 samples, 0.03%)</title><rect x="1174.4" y="261" width="0.3" height="15.0" fill="rgb(213,183,42)" rx="2" ry="2" /> | |
<text x="1177.38" y="271.5" ></text> | |
</g> | |
<g > | |
<title>_$LT$parity_wasm..elements..primitives..VarUint32$u20$as$u20$core..convert..From$LT$usize$GT$$GT$::from::h6b95634f89525d61 (16 samples, 0.02%)</title><rect x="1004.0" y="357" width="0.3" height="15.0" fill="rgb(217,92,50)" rx="2" ry="2" /> | |
<text x="1006.99" 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 (11 samples, 0.02%)</title><rect x="1014.8" y="325" width="0.1" height="15.0" fill="rgb(237,38,49)" rx="2" ry="2" /> | |
<text x="1017.75" y="335.5" ></text> | |
</g> | |
<g > | |
<title>core::ptr::real_drop_in_place::h8f5edcc205986b39 (310 samples, 0.44%)</title><rect x="307.8" y="309" width="5.3" height="15.0" fill="rgb(250,91,30)" rx="2" ry="2" /> | |
<text x="310.84" y="319.5" ></text> | |
</g> | |
<g > | |
<title>wasmparser::binary_reader::BinaryReader::read_func_type::h0cd44550c784004e (13 samples, 0.02%)</title><rect x="815.8" y="293" width="0.2" height="15.0" fill="rgb(238,160,11)" rx="2" ry="2" /> | |
<text x="818.81" y="303.5" ></text> | |
</g> | |
<g > | |
<title>cranelift_codegen::ir::dfg::DataFlowGraph::append_result::h44f9432a950b5ad1 (12 samples, 0.02%)</title><rect x="321.7" y="277" width="0.2" height="15.0" fill="rgb(214,101,53)" rx="2" ry="2" /> | |
<text x="324.72" y="287.5" ></text> | |
</g> | |
<g > | |
<title>_ZN16cranelift_entity4list17ListPool$LT$T$GT$5alloc17h7031e3fd97879e16E.llvm.776987249141506950 (32 samples, 0.05%)</title><rect x="16.8" y="229" width="0.5" height="15.0" fill="rgb(220,34,53)" rx="2" ry="2" /> | |
<text x="19.76" y="239.5" ></text> | |
</g> | |
<g > | |
<title>__rust_dealloc (16 samples, 0.02%)</title><rect x="734.7" y="325" width="0.3" height="15.0" fill="rgb(248,141,34)" rx="2" ry="2" /> | |
<text x="737.72" y="335.5" ></text> | |
</g> | |
<g > | |
<title>hashbrown::raw::RawTable$LT$T$GT$::try_with_capacity::h7a6e6bae489d4fe9 (16 samples, 0.02%)</title><rect x="101.4" y="149" width="0.2" height="15.0" fill="rgb(222,143,54)" rx="2" ry="2" /> | |
<text x="104.37" y="159.5" ></text> | |
</g> | |
<g > | |
<title>c2_chacha::guts::refill_wide::impl_avx2::hcbb75f7591de3cb9 (11 samples, 0.02%)</title><rect x="1142.9" y="341" width="0.2" height="15.0" fill="rgb(234,187,10)" rx="2" ry="2" /> | |
<text x="1145.93" y="351.5" ></text> | |
</g> | |
<g > | |
<title>__GI___libc_free (6 samples, 0.01%)</title><rect x="240.3" y="341" width="0.1" height="15.0" fill="rgb(222,28,22)" rx="2" ry="2" /> | |
<text x="243.27" y="351.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 (147 samples, 0.21%)</title><rect x="1167.0" y="373" width="2.5" height="15.0" fill="rgb(253,53,11)" rx="2" ry="2" /> | |
<text x="1169.99" y="383.5" ></text> | |
</g> | |
<g > | |
<title>cranelift_codegen::isa::Builder::finish::h10c6dcad4391fb0e (37 samples, 0.05%)</title><rect x="329.4" y="293" width="0.6" height="15.0" fill="rgb(235,96,54)" rx="2" ry="2" /> | |
<text x="332.40" y="303.5" ></text> | |
</g> | |
<g > | |
<title>std::time::Instant::now::h33d2ba6042def2d2 (12 samples, 0.02%)</title><rect x="24.8" y="245" width="0.2" height="15.0" fill="rgb(248,113,16)" rx="2" ry="2" /> | |
<text x="27.82" y="255.5" ></text> | |
</g> | |
<g > | |
<title>mem_cgroup_uncharge_list (15 samples, 0.02%)</title><rect x="228.4" y="117" width="0.2" height="15.0" fill="rgb(242,184,8)" rx="2" ry="2" /> | |
<text x="231.37" y="127.5" ></text> | |
</g> | |
<g > | |
<title>_int_malloc (6 samples, 0.01%)</title><rect x="1177.6" y="229" width="0.1" height="15.0" fill="rgb(242,157,49)" rx="2" ry="2" /> | |
<text x="1180.57" y="239.5" ></text> | |
</g> | |
<g > | |
<title>_raw_spin_lock (6 samples, 0.01%)</title><rect x="334.0" y="181" width="0.1" height="15.0" fill="rgb(215,189,2)" rx="2" ry="2" /> | |
<text x="336.99" y="191.5" ></text> | |
</g> | |
<g > | |
<title>alloc::raw_vec::RawVec$LT$T$C$A$GT$::reserve::hde4c914cbb5df344 (22 samples, 0.03%)</title><rect x="624.9" y="309" width="0.3" height="15.0" fill="rgb(228,38,3)" rx="2" ry="2" /> | |
<text x="627.87" y="319.5" ></text> | |
</g> | |
<g > | |
<title>_$LT$cranelift_codegen..timing..details..TimingToken$u20$as$u20$core..ops..drop..Drop$GT$::drop::h1b19c2a93ee0a091 (12 samples, 0.02%)</title><rect x="124.2" y="213" width="0.2" height="15.0" fill="rgb(205,5,5)" rx="2" ry="2" /> | |
<text x="127.22" y="223.5" ></text> | |
</g> | |
<g > | |
<title>_$LT$cranelift_codegen..timing..details..TimingToken$u20$as$u20$core..ops..drop..Drop$GT$::drop::h1b19c2a93ee0a091 (13 samples, 0.02%)</title><rect x="1174.8" y="293" width="0.2" height="15.0" fill="rgb(234,129,1)" rx="2" ry="2" /> | |
<text x="1177.83" y="303.5" ></text> | |
</g> | |
<g > | |
<title>__memcpy_avx_unaligned (129 samples, 0.18%)</title><rect x="241.3" y="373" width="2.2" height="15.0" fill="rgb(252,55,0)" rx="2" ry="2" /> | |
<text x="244.33" y="383.5" ></text> | |
</g> | |
<g > | |
<title>cranelift_codegen::regalloc::context::Context::clear::h0291bd2ef9522314 (23 samples, 0.03%)</title><rect x="67.5" y="245" width="0.4" height="15.0" fill="rgb(221,11,53)" rx="2" ry="2" /> | |
<text x="70.51" y="255.5" ></text> | |
</g> | |
<g > | |
<title>std::sys::unix::time::inner::Instant::now::h23f1bea5949f1bbd (25 samples, 0.04%)</title><rect x="60.3" y="277" width="0.5" height="15.0" fill="rgb(210,72,8)" rx="2" ry="2" /> | |
<text x="63.35" y="287.5" ></text> | |
</g> | |
<g > | |
<title>anon_vma_interval_tree_insert (6 samples, 0.01%)</title><rect x="288.7" y="181" width="0.1" height="15.0" fill="rgb(224,121,40)" rx="2" ry="2" /> | |
<text x="291.70" y="191.5" ></text> | |
</g> | |
<g > | |
<title>__GI___libc_realloc (13 samples, 0.02%)</title><rect x="1155.5" y="229" width="0.2" height="15.0" fill="rgb(228,21,41)" rx="2" ry="2" /> | |
<text x="1158.53" y="239.5" ></text> | |
</g> | |
<g > | |
<title>__GI___libc_free (7 samples, 0.01%)</title><rect x="200.2" y="229" width="0.1" height="15.0" fill="rgb(254,94,28)" rx="2" ry="2" /> | |
<text x="203.18" y="239.5" ></text> | |
</g> | |
<g > | |
<title>lru_add_drain (62 samples, 0.09%)</title><rect x="226.1" y="197" width="1.1" height="15.0" fill="rgb(238,47,48)" rx="2" ry="2" /> | |
<text x="229.13" y="207.5" ></text> | |
</g> | |
<g > | |
<title>hashbrown::map::HashMap$LT$K$C$V$C$S$GT$::remove::hb674e5732ef2fe56 (20 samples, 0.03%)</title><rect x="49.3" y="277" width="0.3" height="15.0" fill="rgb(227,42,39)" rx="2" ry="2" /> | |
<text x="52.28" y="287.5" ></text> | |
</g> | |
<g > | |
<title>alloc::raw_vec::RawVec$LT$T$C$A$GT$::reserve::h500ef385b8747b29 (32 samples, 0.05%)</title><rect x="84.0" y="149" width="0.6" height="15.0" fill="rgb(242,228,30)" rx="2" ry="2" /> | |
<text x="87.04" y="159.5" ></text> | |
</g> | |
<g > | |
<title>_int_free (13 samples, 0.02%)</title><rect x="357.0" y="325" width="0.2" height="15.0" fill="rgb(229,67,15)" rx="2" ry="2" /> | |
<text x="359.96" y="335.5" ></text> | |
</g> | |
<g > | |
<title>_ZN16cranelift_entity4list17ListPool$LT$T$GT$5alloc17h7031e3fd97879e16E.llvm.776987249141506950 (19 samples, 0.03%)</title><rect x="324.0" y="261" width="0.3" height="15.0" fill="rgb(248,192,15)" rx="2" ry="2" /> | |
<text x="326.99" 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 (147 samples, 0.21%)</title><rect x="1167.0" y="421" width="2.5" height="15.0" fill="rgb(213,122,36)" rx="2" ry="2" /> | |
<text x="1169.99" y="431.5" ></text> | |
</g> | |
<g > | |
<title>__GI___libc_realloc (31 samples, 0.04%)</title><rect x="1178.8" y="229" width="0.5" height="15.0" fill="rgb(253,73,44)" rx="2" ry="2" /> | |
<text x="1181.80" y="239.5" ></text> | |
</g> | |
<g > | |
<title>cranelift_bforest::path::Path$LT$F$GT$::next::h50188cd678c454ba (12 samples, 0.02%)</title><rect x="130.5" y="197" width="0.2" height="15.0" fill="rgb(249,2,6)" rx="2" ry="2" /> | |
<text x="133.48" y="207.5" ></text> | |
</g> | |
<g > | |
<title>cranelift_codegen::dominator_tree::DominatorTree::last_dominator::hbcfde909e28ac84e (6 samples, 0.01%)</title><rect x="122.8" y="213" width="0.1" height="15.0" fill="rgb(246,16,42)" rx="2" ry="2" /> | |
<text x="125.84" y="223.5" ></text> | |
</g> | |
<g > | |
<title>__handle_mm_fault (103 samples, 0.15%)</title><rect x="277.3" y="229" width="1.7" height="15.0" fill="rgb(218,0,5)" rx="2" ry="2" /> | |
<text x="280.25" y="239.5" ></text> | |
</g> | |
<g > | |
<title>std::time::Instant::elapsed::h8e307314b2acf9be (18 samples, 0.03%)</title><rect x="314.0" y="277" width="0.3" height="15.0" fill="rgb(236,162,0)" rx="2" ry="2" /> | |
<text x="317.01" y="287.5" ></text> | |
</g> | |
<g > | |
<title>_int_free (12 samples, 0.02%)</title><rect x="166.9" y="197" width="0.2" height="15.0" fill="rgb(249,16,32)" rx="2" ry="2" /> | |
<text x="169.85" y="207.5" ></text> | |
</g> | |
<g > | |
<title>cranelift_codegen::ir::dfg::DataFlowGraph::append_ebb_param::h7014c3b1302a9186 (98 samples, 0.14%)</title><rect x="322.7" y="309" width="1.7" height="15.0" fill="rgb(217,193,24)" rx="2" ry="2" /> | |
<text x="325.72" y="319.5" ></text> | |
</g> | |
<g > | |
<title>__sigprocmask (39 samples, 0.06%)</title><rect x="11.2" y="373" width="0.6" height="15.0" fill="rgb(219,106,30)" rx="2" ry="2" /> | |
<text x="14.18" y="383.5" ></text> | |
</g> | |
<g > | |
<title>alloc::raw_vec::RawVec$LT$T$C$A$GT$::reserve::hd6c8f26eb3c9fb4b (10 samples, 0.01%)</title><rect x="1175.8" y="277" width="0.2" height="15.0" fill="rgb(239,110,11)" rx="2" ry="2" /> | |
<text x="1178.84" y="287.5" ></text> | |
</g> | |
<g > | |
<title>__GI___libc_realloc (9 samples, 0.01%)</title><rect x="85.2" y="149" width="0.2" height="15.0" fill="rgb(242,127,45)" rx="2" ry="2" /> | |
<text x="88.22" y="159.5" ></text> | |
</g> | |
<g > | |
<title>_ZN17cranelift_codegen8regalloc9diversion13RegDiversions6divert17h0dfdaeead6ef2c57E.llvm.6468024634034730254 (32 samples, 0.05%)</title><rect x="101.1" y="197" width="0.6" height="15.0" fill="rgb(228,32,9)" rx="2" ry="2" /> | |
<text x="104.11" y="207.5" ></text> | |
</g> | |
<g > | |
<title>__GI___libc_malloc (8 samples, 0.01%)</title><rect x="76.7" y="197" width="0.1" height="15.0" fill="rgb(224,121,32)" rx="2" ry="2" /> | |
<text x="79.66" y="207.5" ></text> | |
</g> | |
<g > | |
<title>alloc::raw_vec::RawVec$LT$T$C$A$GT$::reserve::h0c445b41f7c28667 (6 samples, 0.01%)</title><rect x="1176.8" y="293" width="0.1" height="15.0" fill="rgb(236,52,37)" rx="2" ry="2" /> | |
<text x="1179.82" y="303.5" ></text> | |
</g> | |
<g > | |
<title>__GI___libc_realloc (13 samples, 0.02%)</title><rect x="39.3" y="277" width="0.2" height="15.0" fill="rgb(246,9,9)" rx="2" ry="2" /> | |
<text x="42.33" y="287.5" ></text> | |
</g> | |
<g > | |
<title>std::sys::unix::time::inner::Instant::now::h23f1bea5949f1bbd (20 samples, 0.03%)</title><rect x="114.1" y="165" width="0.3" height="15.0" fill="rgb(215,121,11)" rx="2" ry="2" /> | |
<text x="117.10" y="175.5" ></text> | |
</g> | |
<g > | |
<title>cranelift_codegen::regalloc::coloring::Context::program_input_abi::h34ced53bbc43d7b1 (35 samples, 0.05%)</title><rect x="142.4" y="197" width="0.6" height="15.0" fill="rgb(214,218,10)" rx="2" ry="2" /> | |
<text x="145.45" 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 (13 samples, 0.02%)</title><rect x="859.5" y="357" width="0.2" height="15.0" fill="rgb(238,174,10)" rx="2" ry="2" /> | |
<text x="862.47" y="367.5" ></text> | |
</g> | |
<g > | |
<title>alloc::raw_vec::RawVec$LT$T$C$A$GT$::reserve::hd6c8f26eb3c9fb4b (6 samples, 0.01%)</title><rect x="1175.0" y="293" width="0.2" height="15.0" fill="rgb(222,165,5)" rx="2" ry="2" /> | |
<text x="1178.05" y="303.5" ></text> | |
</g> | |
<g > | |
<title>wasmer_runtime_core::sys::unix::memory::Memory::protect::hc4dfd0a2abe36912 (555 samples, 0.79%)</title><rect x="261.0" y="309" width="9.4" height="15.0" fill="rgb(244,184,45)" rx="2" ry="2" /> | |
<text x="264.04" y="319.5" ></text> | |
</g> | |
<g > | |
<title>alloc::raw_vec::RawVec$LT$T$C$A$GT$::reserve::h5e34cfad90a6ce21 (37 samples, 0.05%)</title><rect x="96.7" y="165" width="0.6" height="15.0" fill="rgb(212,191,37)" rx="2" ry="2" /> | |
<text x="99.69" y="175.5" ></text> | |
</g> | |
<g > | |
<title>alloc::raw_vec::RawVec$LT$T$C$A$GT$::reserve::h500ef385b8747b29 (12 samples, 0.02%)</title><rect x="1177.6" y="261" width="0.2" height="15.0" fill="rgb(208,94,53)" rx="2" ry="2" /> | |
<text x="1180.57" y="271.5" ></text> | |
</g> | |
<g > | |
<title>std::time::Instant::now::h33d2ba6042def2d2 (12 samples, 0.02%)</title><rect x="37.6" y="261" width="0.2" height="15.0" fill="rgb(249,138,27)" rx="2" ry="2" /> | |
<text x="40.60" y="271.5" ></text> | |
</g> | |
<g > | |
<title>_$LT$cranelift_codegen..isa..x86..Isa$u20$as$u20$cranelift_codegen..isa..TargetIsa$GT$::prologue_epilogue::ha0b7830888e212f4 (418 samples, 0.60%)</title><rect x="92.0" y="213" width="7.0" height="15.0" fill="rgb(246,118,20)" rx="2" ry="2" /> | |
<text x="94.96" y="223.5" ></text> | |
</g> | |
<g > | |
<title>__handle_mm_fault (94 samples, 0.13%)</title><rect x="304.6" y="229" width="1.6" height="15.0" fill="rgb(230,184,7)" rx="2" ry="2" /> | |
<text x="307.61" y="239.5" ></text> | |
</g> | |
<g > | |
<title>cranelift_codegen::isa::x86::abi::insert_common_prologue::hd2cca9ef0991829f (140 samples, 0.20%)</title><rect x="20.8" y="261" width="2.4" height="15.0" fill="rgb(234,65,21)" rx="2" ry="2" /> | |
<text x="23.80" y="271.5" ></text> | |
</g> | |
<g > | |
<title>std::sys::unix::time::inner::Instant::now::h23f1bea5949f1bbd (6 samples, 0.01%)</title><rect x="60.2" y="261" width="0.1" height="15.0" fill="rgb(207,183,49)" rx="2" ry="2" /> | |
<text x="63.25" y="271.5" ></text> | |
</g> | |
<g > | |
<title>__GI___libc_realloc (25 samples, 0.04%)</title><rect x="1177.2" y="245" width="0.4" height="15.0" fill="rgb(249,200,25)" rx="2" ry="2" /> | |
<text x="1180.15" y="255.5" ></text> | |
</g> | |
<g > | |
<title>_ZN78_$LT$parity_wasm..elements..ops..Instruction$u20$as$u20$core..clone..Clone$GT$5clone17hb3781841ab52f338E.llvm.9975108650000548608 (18 samples, 0.03%)</title><rect x="1147.5" y="389" width="0.3" height="15.0" fill="rgb(209,188,52)" rx="2" ry="2" /> | |
<text x="1150.54" y="399.5" ></text> | |
</g> | |
<g > | |
<title>__GI___libc_free (10 samples, 0.01%)</title><rect x="185.5" y="309" width="0.2" height="15.0" fill="rgb(219,42,22)" rx="2" ry="2" /> | |
<text x="188.52" y="319.5" ></text> | |
</g> | |
<g > | |
<title>anon_vma_interval_tree_insert (11 samples, 0.02%)</title><rect x="269.4" y="165" width="0.2" height="15.0" fill="rgb(236,66,20)" rx="2" ry="2" /> | |
<text x="272.42" y="175.5" ></text> | |
</g> | |
<g > | |
<title>cranelift_codegen::topo_order::TopoOrder::next::h3ea49efe09e3a2f0 (15 samples, 0.02%)</title><rect x="154.9" y="197" width="0.2" height="15.0" fill="rgb(247,89,18)" rx="2" ry="2" /> | |
<text x="157.88" y="207.5" ></text> | |
</g> | |
<g > | |
<title>__vdso_clock_gettime (6 samples, 0.01%)</title><rect x="38.6" y="181" width="0.1" height="15.0" fill="rgb(242,224,13)" rx="2" ry="2" /> | |
<text x="41.57" y="191.5" ></text> | |
</g> | |
<g > | |
<title>__memcpy_avx_unaligned (9 samples, 0.01%)</title><rect x="1166.7" y="309" width="0.2" height="15.0" fill="rgb(212,135,37)" rx="2" ry="2" /> | |
<text x="1169.73" y="319.5" ></text> | |
</g> | |
<g > | |
<title>_int_malloc (12 samples, 0.02%)</title><rect x="811.8" y="261" width="0.2" height="15.0" fill="rgb(206,78,10)" rx="2" ry="2" /> | |
<text x="814.81" y="271.5" ></text> | |
</g> | |
<g > | |
<title>cranelift_codegen::regalloc::coloring::Context::visit_inst::h157ddbfc9a018b2b (15 samples, 0.02%)</title><rect x="1168.7" y="229" width="0.3" height="15.0" fill="rgb(219,180,16)" rx="2" ry="2" /> | |
<text x="1171.74" y="239.5" ></text> | |
</g> | |
<g > | |
<title>cranelift_bforest::path::Path$LT$F$GT$::first::h256ba824701b413a (7 samples, 0.01%)</title><rect x="77.5" y="197" width="0.1" height="15.0" fill="rgb(228,3,33)" rx="2" ry="2" /> | |
<text x="80.50" y="207.5" ></text> | |
</g> | |
<g > | |
<title>_int_free (7 samples, 0.01%)</title><rect x="14.0" y="229" width="0.1" height="15.0" fill="rgb(240,88,24)" rx="2" ry="2" /> | |
<text x="16.95" y="239.5" ></text> | |
</g> | |
<g > | |
<title>alloc::raw_vec::RawVec$LT$T$C$A$GT$::reserve::hc8a0fc8526f8c69b (8 samples, 0.01%)</title><rect x="90.0" y="117" width="0.1" height="15.0" fill="rgb(252,187,33)" rx="2" ry="2" /> | |
<text x="92.98" y="127.5" ></text> | |
</g> | |
<g > | |
<title>_int_malloc (7 samples, 0.01%)</title><rect x="71.2" y="165" width="0.1" height="15.0" fill="rgb(231,85,19)" rx="2" ry="2" /> | |
<text x="74.21" y="175.5" ></text> | |
</g> | |
<g > | |
<title>remove_vma (9 samples, 0.01%)</title><rect x="225.4" y="213" width="0.1" height="15.0" fill="rgb(210,113,32)" rx="2" ry="2" /> | |
<text x="228.36" y="223.5" ></text> | |
</g> | |
<g > | |
<title>core::ptr::real_drop_in_place::h192c5818fa53fe5a (75 samples, 0.11%)</title><rect x="237.1" y="373" width="1.2" height="15.0" fill="rgb(219,95,53)" rx="2" ry="2" /> | |
<text x="240.08" y="383.5" ></text> | |
</g> | |
<g > | |
<title>__vdso_clock_gettime (16 samples, 0.02%)</title><rect x="114.2" y="117" width="0.2" height="15.0" fill="rgb(252,20,2)" rx="2" ry="2" /> | |
<text x="117.16" y="127.5" ></text> | |
</g> | |
<g > | |
<title>__GI___libc_free (10 samples, 0.01%)</title><rect x="329.8" y="245" width="0.1" height="15.0" fill="rgb(212,46,46)" rx="2" ry="2" /> | |
<text x="332.77" y="255.5" ></text> | |
</g> | |
<g > | |
<title>cranelift_codegen::regalloc::liveness::Liveness::compute::h5fc2c46ff15ebd51 (68 samples, 0.10%)</title><rect x="1172.8" y="309" width="1.2" height="15.0" fill="rgb(242,119,51)" rx="2" ry="2" /> | |
<text x="1175.83" y="319.5" ></text> | |
</g> | |
<g > | |
<title>_$LT$cranelift_codegen..timing..details..TimingToken$u20$as$u20$core..ops..drop..Drop$GT$::drop::h1b19c2a93ee0a091 (19 samples, 0.03%)</title><rect x="1166.1" y="277" width="0.3" height="15.0" fill="rgb(208,139,40)" rx="2" ry="2" /> | |
<text x="1169.10" y="287.5" ></text> | |
</g> | |
<g > | |
<title>wasmer_runtime_core::instance::call_func_with_index_inner::_$u7b$$u7b$closure$u7d$$u7d$::h13770553ad121b04 (7 samples, 0.01%)</title><rect x="197.6" y="181" width="0.2" height="15.0" fill="rgb(211,74,36)" rx="2" ry="2" /> | |
<text x="200.64" y="191.5" ></text> | |
</g> | |
<g > | |
<title>_$LT$alloc..vec..Vec$LT$T$GT$$u20$as$u20$core..clone..Clone$GT$::clone::hb18dd2fe1d00586d (6 samples, 0.01%)</title><rect x="64.9" y="245" width="0.1" height="15.0" fill="rgb(216,79,15)" rx="2" ry="2" /> | |
<text x="67.89" y="255.5" ></text> | |
</g> | |
<g > | |
<title>parity_wasm::elements::primitives::CountedWriter$LT$W$GT$::done::hd4981212fa202dc5 (26 samples, 0.04%)</title><rect x="199.7" y="213" width="0.5" height="15.0" fill="rgb(218,93,39)" rx="2" ry="2" /> | |
<text x="202.74" y="223.5" ></text> | |
</g> | |
<g > | |
<title>_int_malloc (8 samples, 0.01%)</title><rect x="151.3" y="117" width="0.2" height="15.0" fill="rgb(249,225,30)" rx="2" ry="2" /> | |
<text x="154.35" y="127.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 (34 samples, 0.05%)</title><rect x="162.8" y="181" width="0.6" height="15.0" fill="rgb(218,81,19)" rx="2" ry="2" /> | |
<text x="165.78" y="191.5" ></text> | |
</g> | |
<g > | |
<title>copy_siginfo_to_user (8 samples, 0.01%)</title><rect x="13.2" y="373" width="0.1" height="15.0" fill="rgb(213,226,18)" rx="2" ry="2" /> | |
<text x="16.16" y="383.5" ></text> | |
</g> | |
<g > | |
<title>cranelift_codegen::ir::builder::InstBuilder::fill::h8891fd072647990a (20 samples, 0.03%)</title><rect x="54.6" y="277" width="0.4" height="15.0" fill="rgb(231,97,42)" rx="2" ry="2" /> | |
<text x="57.65" y="287.5" ></text> | |
</g> | |
<g > | |
<title>hashbrown::raw::RawTable$LT$T$GT$::try_with_capacity::h7a6e6bae489d4fe9 (19 samples, 0.03%)</title><rect x="45.2" y="229" width="0.4" height="15.0" fill="rgb(254,185,4)" rx="2" ry="2" /> | |
<text x="48.23" y="239.5" ></text> | |
</g> | |
<g > | |
<title>wasmparser::parser::Parser::read_export_entry::hf5e381312c2f0c73 (657 samples, 0.94%)</title><rect x="520.4" y="293" width="11.1" height="15.0" fill="rgb(231,162,22)" rx="2" ry="2" /> | |
<text x="523.41" y="303.5" ></text> | |
</g> | |
<g > | |
<title>_ZN4rand3Rng3gen17h7eb46441d353f94aE.llvm.311153183790168797 (18 samples, 0.03%)</title><rect x="1142.8" y="373" width="0.3" height="15.0" fill="rgb(240,149,18)" rx="2" ry="2" /> | |
<text x="1145.81" y="383.5" ></text> | |
</g> | |
<g > | |
<title>security_file_mprotect (6 samples, 0.01%)</title><rect x="288.9" y="213" width="0.1" height="15.0" fill="rgb(240,110,10)" rx="2" ry="2" /> | |
<text x="291.94" y="223.5" ></text> | |
</g> | |
<g > | |
<title>cranelift_codegen::regalloc::solver::Solver::reassign_in::h4635b38f4d433603 (19 samples, 0.03%)</title><rect x="1177.6" y="293" width="0.3" height="15.0" fill="rgb(246,114,35)" rx="2" ry="2" /> | |
<text x="1180.57" y="303.5" ></text> | |
</g> | |
<g > | |
<title>rocinante::main::h69eb7648725adb6f (736 samples, 1.05%)</title><rect x="189.1" y="277" width="12.3" height="15.0" fill="rgb(221,33,0)" rx="2" ry="2" /> | |
<text x="192.07" y="287.5" ></text> | |
</g> | |
<g > | |
<title>cranelift_codegen::isa::x86::abi::prologue_epilogue::h9cb24b877f7c4837 (268 samples, 0.38%)</title><rect x="18.6" y="277" width="4.6" height="15.0" fill="rgb(242,225,46)" rx="2" ry="2" /> | |
<text x="21.64" y="287.5" ></text> | |
</g> | |
<g > | |
<title>hashbrown::raw::capacity_to_buckets::hf5c44c5afd412277 (8 samples, 0.01%)</title><rect x="172.0" y="181" width="0.2" height="15.0" fill="rgb(228,122,26)" rx="2" ry="2" /> | |
<text x="175.03" y="191.5" ></text> | |
</g> | |
<g > | |
<title>std::time::Instant::now::h33d2ba6042def2d2 (25 samples, 0.04%)</title><rect x="60.3" y="293" width="0.5" height="15.0" fill="rgb(206,140,18)" rx="2" ry="2" /> | |
<text x="63.35" y="303.5" ></text> | |
</g> | |
<g > | |
<title>_$LT$core..iter..adapters..Map$LT$I$C$F$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$::try_fold::h511ec3d42cfa6b56 (147 samples, 0.21%)</title><rect x="1167.0" y="309" width="2.5" height="15.0" fill="rgb(230,2,16)" rx="2" ry="2" /> | |
<text x="1169.99" y="319.5" ></text> | |
</g> | |
<g > | |
<title>_ZN17cranelift_codegen8regalloc9diversion13RegDiversions6divert17h0dfdaeead6ef2c57E.llvm.6468024634034730254 (44 samples, 0.06%)</title><rect x="33.6" y="277" width="0.8" height="15.0" fill="rgb(227,100,6)" rx="2" ry="2" /> | |
<text x="36.63" y="287.5" ></text> | |
</g> | |
<g > | |
<title>_int_malloc (8 samples, 0.01%)</title><rect x="301.1" y="293" width="0.1" height="15.0" fill="rgb(213,56,12)" rx="2" ry="2" /> | |
<text x="304.06" y="303.5" ></text> | |
</g> | |
<g > | |
<title>_$LT$parity_wasm..elements..ops..Instructions$u20$as$u20$parity_wasm..elements..Serialize$GT$::serialize::h2a48be252ee90fa3 (6,315 samples, 9.00%)</title><rect x="893.0" y="373" width="106.2" height="15.0" fill="rgb(224,222,44)" rx="2" ry="2" /> | |
<text x="895.97" y="383.5" >_$LT$parity_..</text> | |
</g> | |
<g > | |
<title>rayon_core::registry::ThreadBuilder::run::h8d06e03c16a2976b (41 samples, 0.06%)</title><rect x="188.3" y="277" width="0.7" height="15.0" fill="rgb(251,54,41)" rx="2" ry="2" /> | |
<text x="191.34" y="287.5" ></text> | |
</g> | |
<g > | |
<title>cranelift_codegen::regalloc::liveness::Liveness::compute::h5fc2c46ff15ebd51 (364 samples, 0.52%)</title><rect x="146.1" y="213" width="6.1" height="15.0" fill="rgb(229,140,2)" rx="2" ry="2" /> | |
<text x="149.08" y="223.5" ></text> | |
</g> | |
<g > | |
<title>alloc::borrow::Cow$LT$B$GT$::to_mut::hc816a9c98cae5186 (10 samples, 0.01%)</title><rect x="1176.4" y="277" width="0.2" height="15.0" fill="rgb(210,23,30)" rx="2" ry="2" /> | |
<text x="1179.43" y="287.5" ></text> | |
</g> | |
<g > | |
<title>__rdl_dealloc (13 samples, 0.02%)</title><rect x="734.4" y="325" width="0.2" height="15.0" fill="rgb(227,200,17)" rx="2" ry="2" /> | |
<text x="737.42" y="335.5" ></text> | |
</g> | |
<g > | |
<title>std::sys::unix::time::inner::Instant::now::h23f1bea5949f1bbd (15 samples, 0.02%)</title><rect x="98.7" y="181" width="0.3" height="15.0" fill="rgb(235,148,47)" rx="2" ry="2" /> | |
<text x="101.74" y="191.5" ></text> | |
</g> | |
<g > | |
<title>__GI___libc_free (21 samples, 0.03%)</title><rect x="184.7" y="261" width="0.3" height="15.0" fill="rgb(230,12,19)" rx="2" ry="2" /> | |
<text x="187.68" y="271.5" ></text> | |
</g> | |
<g > | |
<title>_int_realloc (14 samples, 0.02%)</title><rect x="1173.4" y="229" width="0.3" height="15.0" fill="rgb(234,206,32)" rx="2" ry="2" /> | |
<text x="1176.42" y="239.5" ></text> | |
</g> | |
<g > | |
<title>__vdso_clock_gettime (16 samples, 0.02%)</title><rect x="175.7" y="165" width="0.3" height="15.0" fill="rgb(250,7,22)" rx="2" ry="2" /> | |
<text x="178.73" y="175.5" ></text> | |
</g> | |
<g > | |
<title>std::sys::unix::time::inner::Instant::now::h23f1bea5949f1bbd (7 samples, 0.01%)</title><rect x="166.3" y="165" width="0.1" height="15.0" fill="rgb(230,31,50)" rx="2" ry="2" /> | |
<text x="169.33" y="175.5" ></text> | |
</g> | |
<g > | |
<title>alloc::raw_vec::RawVec$LT$T$C$A$GT$::reserve::hd3b5c53c8d089f18 (18 samples, 0.03%)</title><rect x="813.6" y="293" width="0.3" height="15.0" fill="rgb(250,36,42)" rx="2" ry="2" /> | |
<text x="816.64" y="303.5" ></text> | |
</g> | |
<g > | |
<title>__vdso_clock_gettime (6 samples, 0.01%)</title><rect x="121.0" y="101" width="0.1" height="15.0" fill="rgb(227,23,45)" rx="2" ry="2" /> | |
<text x="124.01" y="111.5" ></text> | |
</g> | |
<g > | |
<title>__GI___libc_realloc (8 samples, 0.01%)</title><rect x="56.2" y="229" width="0.1" height="15.0" fill="rgb(208,228,23)" rx="2" ry="2" /> | |
<text x="59.21" y="239.5" ></text> | |
</g> | |
<g > | |
<title>kmem_cache_free (14 samples, 0.02%)</title><rect x="233.8" y="229" width="0.2" height="15.0" fill="rgb(216,57,1)" rx="2" ry="2" /> | |
<text x="236.78" y="239.5" ></text> | |
</g> | |
<g > | |
<title>__GI___libc_realloc (1,145 samples, 1.63%)</title><rect x="1076.4" y="357" width="19.3" height="15.0" fill="rgb(205,148,8)" rx="2" ry="2" /> | |
<text x="1079.44" y="367.5" ></text> | |
</g> | |
<g > | |
<title>__GI___libc_malloc (6 samples, 0.01%)</title><rect x="1177.6" y="245" width="0.1" height="15.0" fill="rgb(223,143,47)" rx="2" ry="2" /> | |
<text x="1180.57" 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.01%)</title><rect x="1160.9" y="277" width="0.1" height="15.0" fill="rgb(242,174,46)" rx="2" ry="2" /> | |
<text x="1163.87" y="287.5" ></text> | |
</g> | |
<g > | |
<title>std::sys::unix::time::inner::now::ha10452f37b2930c5 (9 samples, 0.01%)</title><rect x="80.9" y="133" width="0.2" height="15.0" fill="rgb(232,78,32)" rx="2" ry="2" /> | |
<text x="83.92" y="143.5" ></text> | |
</g> | |
<g > | |
<title>[libz3.so.4] (12 samples, 0.02%)</title><rect x="887.1" y="357" width="0.2" height="15.0" fill="rgb(244,145,7)" rx="2" ry="2" /> | |
<text x="890.11" y="367.5" ></text> | |
</g> | |
<g > | |
<title>__memcpy_avx_unaligned (758 samples, 1.08%)</title><rect x="783.4" y="309" width="12.8" height="15.0" fill="rgb(247,113,43)" rx="2" ry="2" /> | |
<text x="786.40" 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 (19 samples, 0.03%)</title><rect x="96.4" y="165" width="0.3" height="15.0" fill="rgb(218,46,34)" rx="2" ry="2" /> | |
<text x="99.37" y="175.5" ></text> | |
</g> | |
<g > | |
<title>perf_iterate_ctx (118 samples, 0.17%)</title><rect x="264.8" y="181" width="1.9" height="15.0" fill="rgb(209,80,46)" rx="2" ry="2" /> | |
<text x="267.76" y="191.5" ></text> | |
</g> | |
<g > | |
<title>__GI___libc_realloc (27 samples, 0.04%)</title><rect x="1171.7" y="261" width="0.4" height="15.0" fill="rgb(209,72,7)" rx="2" ry="2" /> | |
<text x="1174.69" y="271.5" ></text> | |
</g> | |
<g > | |
<title>[[vdso]] (6 samples, 0.01%)</title><rect x="314.2" y="181" width="0.1" height="15.0" fill="rgb(214,227,44)" rx="2" ry="2" /> | |
<text x="317.22" y="191.5" ></text> | |
</g> | |
<g > | |
<title>do_page_fault (231 samples, 0.33%)</title><rect x="275.5" y="277" width="3.9" height="15.0" fill="rgb(221,211,16)" rx="2" ry="2" /> | |
<text x="278.49" y="287.5" ></text> | |
</g> | |
<g > | |
<title>wasmer_clif_backend::resolver::FuncResolverBuilder::new::h17aa56962b53b260 (29 samples, 0.04%)</title><rect x="190.3" y="165" width="0.5" height="15.0" fill="rgb(226,207,28)" rx="2" ry="2" /> | |
<text x="193.33" y="175.5" ></text> | |
</g> | |
<g > | |
<title>alloc::raw_vec::RawVec$LT$T$C$A$GT$::reserve::h5e34cfad90a6ce21 (6 samples, 0.01%)</title><rect x="87.5" y="101" width="0.1" height="15.0" fill="rgb(244,129,2)" rx="2" ry="2" /> | |
<text x="90.47" y="111.5" ></text> | |
</g> | |
<g > | |
<title>wasmer_clif_backend::get_isa::he894f6446deff718 (129 samples, 0.18%)</title><rect x="354.7" y="325" width="2.2" height="15.0" fill="rgb(247,223,18)" rx="2" ry="2" /> | |
<text x="357.74" y="335.5" ></text> | |
</g> | |
<g > | |
<title>alloc_perturb (9 samples, 0.01%)</title><rect x="624.3" y="261" width="0.2" height="15.0" fill="rgb(223,193,29)" rx="2" ry="2" /> | |
<text x="627.32" y="271.5" ></text> | |
</g> | |
<g > | |
<title>cranelift_codegen::isa::TargetIsa::encode::h3618ddf6ad568ce7 (8 samples, 0.01%)</title><rect x="19.9" y="213" width="0.2" height="15.0" fill="rgb(237,155,35)" rx="2" ry="2" /> | |
<text x="22.92" y="223.5" ></text> | |
</g> | |
<g > | |
<title>std::sync::mutex::Mutex$LT$T$GT$::new::he5341902ede916cb (40 samples, 0.06%)</title><rect x="857.5" y="373" width="0.7" height="15.0" fill="rgb(219,99,53)" rx="2" ry="2" /> | |
<text x="860.50" y="383.5" ></text> | |
</g> | |
<g > | |
<title>[[vdso]] (7 samples, 0.01%)</title><rect x="50.5" y="165" width="0.1" height="15.0" fill="rgb(251,65,39)" rx="2" ry="2" /> | |
<text x="53.46" y="175.5" ></text> | |
</g> | |
<g > | |
<title>cranelift_codegen::regalloc::context::Context::run::hacf4bbc8f4d0071a (364 samples, 0.52%)</title><rect x="1170.3" y="325" width="6.1" height="15.0" fill="rgb(213,93,4)" rx="2" ry="2" /> | |
<text x="1173.31" y="335.5" ></text> | |
</g> | |
<g > | |
<title>cranelift_codegen::isa::enc_tables::lookup_enclist::h59f3ade65a5e8b68 (14 samples, 0.02%)</title><rect x="33.3" y="261" width="0.2" height="15.0" fill="rgb(254,103,34)" rx="2" ry="2" /> | |
<text x="36.26" y="271.5" ></text> | |
</g> | |
<g > | |
<title>__GI___libc_free (8 samples, 0.01%)</title><rect x="238.5" y="357" width="0.1" height="15.0" fill="rgb(210,65,49)" rx="2" ry="2" /> | |
<text x="241.49" y="367.5" ></text> | |
</g> | |
<g > | |
<title>cranelift_codegen::regalloc::coalescing::Coalescing::conventional_ssa::h25e21334b716fc0d (35 samples, 0.05%)</title><rect x="40.2" y="293" width="0.6" height="15.0" fill="rgb(251,207,18)" rx="2" ry="2" /> | |
<text x="43.19" y="303.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 (486 samples, 0.69%)</title><rect x="178.6" y="389" width="8.1" height="15.0" fill="rgb(221,49,35)" rx="2" ry="2" /> | |
<text x="181.57" y="399.5" ></text> | |
</g> | |
<g > | |
<title>__GI___libc_malloc (8 samples, 0.01%)</title><rect x="163.0" y="149" width="0.2" height="15.0" fill="rgb(223,26,27)" rx="2" ry="2" /> | |
<text x="166.05" y="159.5" ></text> | |
</g> | |
<g > | |
<title>alloc::raw_vec::RawVec$LT$T$C$A$GT$::reserve::h500ef385b8747b29 (42 samples, 0.06%)</title><rect x="134.3" y="181" width="0.7" height="15.0" fill="rgb(224,27,29)" rx="2" ry="2" /> | |
<text x="137.29" y="191.5" ></text> | |
</g> | |
<g > | |
<title>mprotect_fixup (297 samples, 0.42%)</title><rect x="283.9" y="213" width="5.0" height="15.0" fill="rgb(220,0,13)" rx="2" ry="2" /> | |
<text x="286.93" y="223.5" ></text> | |
</g> | |
<g > | |
<title>mem_cgroup_uncharge_list (23 samples, 0.03%)</title><rect x="235.1" y="149" width="0.4" height="15.0" fill="rgb(233,10,28)" rx="2" ry="2" /> | |
<text x="238.11" y="159.5" ></text> | |
</g> | |
<g > | |
<title>cranelift_codegen::context::Context::legalize::h3be573a3855dd690 (18 samples, 0.03%)</title><rect x="1176.4" y="341" width="0.3" height="15.0" fill="rgb(228,218,24)" rx="2" ry="2" /> | |
<text x="1179.43" y="351.5" ></text> | |
</g> | |
<g > | |
<title>__GI___libc_malloc (543 samples, 0.77%)</title><rect x="615.4" y="293" width="9.1" height="15.0" fill="rgb(247,80,19)" rx="2" ry="2" /> | |
<text x="618.35" y="303.5" ></text> | |
</g> | |
<g > | |
<title>std::sync::rwlock::RwLock$LT$T$GT$::new::hbb62ff20d783c9ba (28 samples, 0.04%)</title><rect x="824.3" y="325" width="0.5" height="15.0" fill="rgb(205,49,43)" rx="2" ry="2" /> | |
<text x="827.30" y="335.5" ></text> | |
</g> | |
<g > | |
<title>std::time::Instant::now::h33d2ba6042def2d2 (10 samples, 0.01%)</title><rect x="103.2" y="197" width="0.1" height="15.0" fill="rgb(207,132,11)" rx="2" ry="2" /> | |
<text x="106.18" y="207.5" ></text> | |
</g> | |
<g > | |
<title>wasmparser::parser::Parser::read_next_section::h4d9786321eb758cf (45 samples, 0.06%)</title><rect x="816.8" y="293" width="0.8" height="15.0" fill="rgb(228,147,10)" rx="2" ry="2" /> | |
<text x="819.82" y="303.5" ></text> | |
</g> | |
<g > | |
<title>__GI___libc_malloc (9 samples, 0.01%)</title><rect x="92.9" y="165" width="0.1" height="15.0" fill="rgb(247,167,0)" rx="2" ry="2" /> | |
<text x="95.86" y="175.5" ></text> | |
</g> | |
<g > | |
<title>alloc::vec::Vec$LT$T$GT$::resize::hce468c49acab73c0 (20 samples, 0.03%)</title><rect x="15.1" y="261" width="0.3" height="15.0" fill="rgb(249,2,0)" rx="2" ry="2" /> | |
<text x="18.08" y="271.5" ></text> | |
</g> | |
<g > | |
<title>_int_realloc (16 samples, 0.02%)</title><rect x="808.9" y="245" width="0.2" height="15.0" fill="rgb(244,12,49)" rx="2" ry="2" /> | |
<text x="811.86" y="255.5" ></text> | |
</g> | |
<g > | |
<title>alloc::raw_vec::RawVec$LT$T$C$A$GT$::reserve::h5e34cfad90a6ce21 (62 samples, 0.09%)</title><rect x="21.4" y="245" width="1.0" height="15.0" fill="rgb(248,106,13)" rx="2" ry="2" /> | |
<text x="24.35" y="255.5" ></text> | |
</g> | |
<g > | |
<title>__GI___libc_malloc (15 samples, 0.02%)</title><rect x="129.0" y="165" width="0.3" height="15.0" fill="rgb(232,63,23)" rx="2" ry="2" /> | |
<text x="132.01" y="175.5" ></text> | |
</g> | |
<g > | |
<title>__GI___libc_free (14 samples, 0.02%)</title><rect x="1107.4" y="373" width="0.3" height="15.0" fill="rgb(221,128,49)" rx="2" ry="2" /> | |
<text x="1110.45" y="383.5" ></text> | |
</g> | |
<g > | |
<title>__vdso_clock_gettime (12 samples, 0.02%)</title><rect x="116.8" y="149" width="0.2" height="15.0" fill="rgb(231,18,32)" rx="2" ry="2" /> | |
<text x="119.79" y="159.5" ></text> | |
</g> | |
<g > | |
<title>_$LT$cranelift_codegen..settings..Builder$u20$as$u20$cranelift_codegen..settings..Configurable$GT$::set::h176f1ed6e0099d99 (85 samples, 0.12%)</title><rect x="328.0" y="293" width="1.4" height="15.0" fill="rgb(210,74,2)" rx="2" ry="2" /> | |
<text x="330.97" y="303.5" ></text> | |
</g> | |
<g > | |
<title>std::time::Instant::now::h33d2ba6042def2d2 (8 samples, 0.01%)</title><rect x="121.6" y="197" width="0.2" height="15.0" fill="rgb(249,222,0)" rx="2" ry="2" /> | |
<text x="124.63" y="207.5" ></text> | |
</g> | |
<g > | |
<title>core::ptr::real_drop_in_place::h8e38f4c4f35fb102 (91 samples, 0.13%)</title><rect x="311.5" y="293" width="1.6" height="15.0" fill="rgb(227,122,5)" rx="2" ry="2" /> | |
<text x="314.52" y="303.5" ></text> | |
</g> | |
<g > | |
<title>_ZN9hashbrown3raw17RawTable$LT$T$GT$14reserve_rehash17h949d57d1e07c193dE.llvm.16938716460618634628 (24 samples, 0.03%)</title><rect x="75.9" y="181" width="0.4" height="15.0" fill="rgb(233,209,12)" rx="2" ry="2" /> | |
<text x="78.85" y="191.5" ></text> | |
</g> | |
<g > | |
<title>__GI___libc_malloc (11 samples, 0.02%)</title><rect x="52.0" y="229" width="0.2" height="15.0" fill="rgb(214,225,17)" rx="2" ry="2" /> | |
<text x="55.01" y="239.5" ></text> | |
</g> | |
<g > | |
<title>alloc::raw_vec::RawVec$LT$T$C$A$GT$::reserve::h5e34cfad90a6ce21 (6 samples, 0.01%)</title><rect x="1160.4" y="277" width="0.1" height="15.0" fill="rgb(229,87,12)" rx="2" ry="2" /> | |
<text x="1163.44" y="287.5" ></text> | |
</g> | |
<g > | |
<title>wasmer_runtime_core::sig_registry::SigRegistry::lookup_signature_ref::hb64a156585a7c92a (54 samples, 0.08%)</title><rect x="877.6" y="325" width="0.9" height="15.0" fill="rgb(206,49,53)" rx="2" ry="2" /> | |
<text x="880.56" y="335.5" ></text> | |
</g> | |
<g > | |
<title>sched_clock_cpu (9 samples, 0.01%)</title><rect x="343.2" y="101" width="0.2" height="15.0" fill="rgb(211,132,36)" rx="2" ry="2" /> | |
<text x="346.22" y="111.5" ></text> | |
</g> | |
<g > | |
<title>_$LT$parity_wasm..elements..primitives..VarUint32$u20$as$u20$core..convert..From$LT$usize$GT$$GT$::from::h6b95634f89525d61 (18 samples, 0.03%)</title><rect x="1018.3" y="357" width="0.3" height="15.0" fill="rgb(251,143,43)" rx="2" ry="2" /> | |
<text x="1021.28" y="367.5" ></text> | |
</g> | |
<g > | |
<title>_$LT$wasmer_runtime_core..codegen..StreamingCompiler$LT$MCG$C$FCG$C$RM$C$E$C$CGEN$GT$$u20$as$u20$wasmer_runtime_core..backend..Compiler$GT$::compile::h8e59f93f7f287bf9 (242 samples, 0.34%)</title><rect x="1176.4" y="421" width="4.1" height="15.0" fill="rgb(244,126,1)" rx="2" ry="2" /> | |
<text x="1179.43" y="431.5" ></text> | |
</g> | |
<g > | |
<title>std::sys::unix::time::inner::Instant::now::h23f1bea5949f1bbd (13 samples, 0.02%)</title><rect x="27.6" y="261" width="0.3" height="15.0" fill="rgb(215,127,30)" rx="2" ry="2" /> | |
<text x="30.64" y="271.5" ></text> | |
</g> | |
<g > | |
<title>std::sys::unix::time::inner::Instant::now::h23f1bea5949f1bbd (7 samples, 0.01%)</title><rect x="121.8" y="197" width="0.1" height="15.0" fill="rgb(210,108,5)" rx="2" ry="2" /> | |
<text x="124.76" y="207.5" ></text> | |
</g> | |
<g > | |
<title>alloc::raw_vec::RawVec$LT$T$C$A$GT$::reserve::h0782b123c92dc061 (23 samples, 0.03%)</title><rect x="306.6" y="309" width="0.4" height="15.0" fill="rgb(212,223,5)" rx="2" ry="2" /> | |
<text x="309.61" y="319.5" ></text> | |
</g> | |
<g > | |
<title>sys_munmap (515 samples, 0.73%)</title><rect x="223.1" y="261" width="8.6" height="15.0" fill="rgb(218,104,32)" rx="2" ry="2" /> | |
<text x="226.09" y="271.5" ></text> | |
</g> | |
<g > | |
<title>cranelift_codegen::context::Context::compile_and_emit::h5499205207e7951f (414 samples, 0.59%)</title><rect x="1169.5" y="357" width="6.9" height="15.0" fill="rgb(226,224,2)" rx="2" ry="2" /> | |
<text x="1172.47" y="367.5" ></text> | |
</g> | |
<g > | |
<title>_int_free (9 samples, 0.01%)</title><rect x="252.9" y="293" width="0.2" height="15.0" fill="rgb(236,51,12)" rx="2" ry="2" /> | |
<text x="255.92" y="303.5" ></text> | |
</g> | |
<g > | |
<title>__vdso_clock_gettime (9 samples, 0.01%)</title><rect x="27.7" y="213" width="0.2" height="15.0" fill="rgb(211,140,4)" rx="2" ry="2" /> | |
<text x="30.71" y="223.5" ></text> | |
</g> | |
<g > | |
<title>__GI___libc_malloc (20 samples, 0.03%)</title><rect x="83.4" y="133" width="0.3" height="15.0" fill="rgb(206,129,51)" rx="2" ry="2" /> | |
<text x="86.39" y="143.5" ></text> | |
</g> | |
<g > | |
<title>_$LT$cranelift_codegen..timing..details..TimingToken$u20$as$u20$core..ops..drop..Drop$GT$::drop::h1b19c2a93ee0a091 (16 samples, 0.02%)</title><rect x="174.0" y="213" width="0.3" height="15.0" fill="rgb(249,8,35)" rx="2" ry="2" /> | |
<text x="177.01" y="223.5" ></text> | |
</g> | |
<g > | |
<title>alloc::raw_vec::RawVec$LT$T$C$A$GT$::reserve::h5e34cfad90a6ce21 (10 samples, 0.01%)</title><rect x="119.2" y="213" width="0.2" height="15.0" fill="rgb(222,108,19)" rx="2" ry="2" /> | |
<text x="122.19" y="223.5" ></text> | |
</g> | |
<g > | |
<title>wasmer_runtime_core::instance::call_func_with_index::hfdcd33b8b41f1e35 (12 samples, 0.02%)</title><rect x="197.6" y="213" width="0.2" height="15.0" fill="rgb(243,191,6)" rx="2" ry="2" /> | |
<text x="200.56" y="223.5" ></text> | |
</g> | |
<g > | |
<title>std::thread::local::lazy::LazyKeyInner$LT$T$GT$::get::h7a1d93eb9cc05874 (14 samples, 0.02%)</title><rect x="796.6" y="277" width="0.2" height="15.0" fill="rgb(242,226,11)" rx="2" ry="2" /> | |
<text x="799.61" y="287.5" ></text> | |
</g> | |
<g > | |
<title>__rdl_alloc (41 samples, 0.06%)</title><rect x="1139.3" y="357" width="0.7" height="15.0" fill="rgb(208,143,28)" rx="2" ry="2" /> | |
<text x="1142.26" y="367.5" ></text> | |
</g> | |
<g > | |
<title>std::sys::unix::time::inner::now::ha10452f37b2930c5 (11 samples, 0.02%)</title><rect x="152.0" y="165" width="0.2" height="15.0" fill="rgb(211,10,16)" rx="2" ry="2" /> | |
<text x="155.02" y="175.5" ></text> | |
</g> | |
<g > | |
<title>std::sys::unix::alloc::_$LT$impl$u20$core..alloc..GlobalAlloc$u20$for$u20$std..alloc..System$GT$::dealloc::h000dc0e1d3b4be28 (23 samples, 0.03%)</title><rect x="776.5" y="293" width="0.4" height="15.0" fill="rgb(212,120,48)" rx="2" ry="2" /> | |
<text x="779.49" y="303.5" ></text> | |
</g> | |
<g > | |
<title>wasmparser::binary_reader::BinaryReader::read_string::hc015eb960d8c9fac (301 samples, 0.43%)</title><rect x="525.7" y="261" width="5.1" height="15.0" fill="rgb(222,90,2)" rx="2" ry="2" /> | |
<text x="528.74" y="271.5" ></text> | |
</g> | |
<g > | |
<title>alloc::raw_vec::RawVec$LT$T$C$A$GT$::reserve::h0c445b41f7c28667 (15 samples, 0.02%)</title><rect x="320.8" y="261" width="0.3" height="15.0" fill="rgb(228,227,8)" rx="2" ry="2" /> | |
<text x="323.84" y="271.5" ></text> | |
</g> | |
<g > | |
<title>kmem_cache_free (7 samples, 0.01%)</title><rect x="347.0" y="165" width="0.1" height="15.0" fill="rgb(243,140,20)" rx="2" ry="2" /> | |
<text x="349.99" y="175.5" ></text> | |
</g> | |
<g > | |
<title>page_fault (215 samples, 0.31%)</title><rect x="302.8" y="293" width="3.7" height="15.0" fill="rgb(206,181,36)" rx="2" ry="2" /> | |
<text x="305.85" y="303.5" ></text> | |
</g> | |
<g > | |
<title>cranelift_codegen::ir::builder::InstBuilder::x86_udivmodx::hd60d66081ff370fb (9 samples, 0.01%)</title><rect x="89.6" y="149" width="0.1" height="15.0" fill="rgb(229,30,22)" rx="2" ry="2" /> | |
<text x="92.58" y="159.5" ></text> | |
</g> | |
<g > | |
<title>get_mem_cgroup_from_mm (6 samples, 0.01%)</title><rect x="292.6" y="133" width="0.1" height="15.0" fill="rgb(234,114,12)" rx="2" ry="2" /> | |
<text x="295.64" y="143.5" ></text> | |
</g> | |
<g > | |
<title>_int_realloc (8 samples, 0.01%)</title><rect x="325.3" y="261" width="0.2" height="15.0" fill="rgb(225,103,4)" rx="2" ry="2" /> | |
<text x="328.35" y="271.5" ></text> | |
</g> | |
<g > | |
<title>_int_malloc (186 samples, 0.27%)</title><rect x="1032.1" y="325" width="3.1" height="15.0" fill="rgb(234,52,6)" rx="2" ry="2" /> | |
<text x="1035.09" y="335.5" ></text> | |
</g> | |
<g > | |
<title>cranelift_entity::sparse::SparseMap$LT$K$C$V$GT$::insert::h7db38de7d591c38a (171 samples, 0.24%)</title><rect x="148.7" y="181" width="2.8" height="15.0" fill="rgb(231,159,13)" rx="2" ry="2" /> | |
<text x="151.65" y="191.5" ></text> | |
</g> | |
<g > | |
<title>std::sync::rwlock::RwLock$LT$T$GT$::read::h77a932a23fb2e9de (1,678 samples, 2.39%)</title><rect x="824.8" y="325" width="28.2" height="15.0" fill="rgb(241,116,21)" rx="2" ry="2" /> | |
<text x="827.77" y="335.5" >s..</text> | |
</g> | |
<g > | |
<title>std::time::Instant::now::h33d2ba6042def2d2 (11 samples, 0.02%)</title><rect x="174.1" y="181" width="0.2" height="15.0" fill="rgb(221,164,48)" rx="2" ry="2" /> | |
<text x="177.10" y="191.5" ></text> | |
</g> | |
<g > | |
<title>__GI___libc_malloc (7 samples, 0.01%)</title><rect x="39.7" y="261" width="0.1" height="15.0" fill="rgb(248,197,37)" rx="2" ry="2" /> | |
<text x="42.66" y="271.5" ></text> | |
</g> | |
<g > | |
<title>__GI___libc_realloc (60 samples, 0.09%)</title><rect x="21.4" y="229" width="1.0" height="15.0" fill="rgb(240,219,46)" rx="2" ry="2" /> | |
<text x="24.37" y="239.5" ></text> | |
</g> | |
<g > | |
<title>cranelift_codegen::isa::enc_tables::lookup_enclist::h59f3ade65a5e8b68 (6 samples, 0.01%)</title><rect x="1171.6" y="245" width="0.1" height="15.0" fill="rgb(247,68,3)" rx="2" ry="2" /> | |
<text x="1174.59" y="255.5" ></text> | |
</g> | |
<g > | |
<title>cranelift_codegen::isa::x86::binemit::emit_inst::h4f026cde2beb5a85 (212 samples, 0.30%)</title><rect x="315.1" y="277" width="3.6" height="15.0" fill="rgb(205,186,10)" rx="2" ry="2" /> | |
<text x="318.14" y="287.5" ></text> | |
</g> | |
<g > | |
<title>_$LT$core..iter..adapters..Map$LT$I$C$F$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$::fold::h053c4e0e67e6e8b2 (201 samples, 0.29%)</title><rect x="29.3" y="277" width="3.4" height="15.0" fill="rgb(240,131,9)" rx="2" ry="2" /> | |
<text x="32.27" y="287.5" ></text> | |
</g> | |
<g > | |
<title>__GI___mprotect (6 samples, 0.01%)</title><rect x="190.6" y="133" width="0.1" height="15.0" fill="rgb(236,33,36)" rx="2" ry="2" /> | |
<text x="193.56" y="143.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 (242 samples, 0.34%)</title><rect x="1176.4" y="405" width="4.1" height="15.0" fill="rgb(217,120,10)" rx="2" ry="2" /> | |
<text x="1179.43" y="415.5" ></text> | |
</g> | |
<g > | |
<title>cranelift_codegen::ir::layout::Layout::insert_inst::h352d76f498d27496 (25 samples, 0.04%)</title><rect x="1177.2" y="277" width="0.4" height="15.0" fill="rgb(237,81,37)" rx="2" ry="2" /> | |
<text x="1180.15" y="287.5" ></text> | |
</g> | |
<g > | |
<title>__GI___mprotect (547 samples, 0.78%)</title><rect x="261.2" y="293" width="9.2" height="15.0" fill="rgb(227,142,9)" rx="2" ry="2" /> | |
<text x="264.16" y="303.5" ></text> | |
</g> | |
<g > | |
<title>core::slice::_$LT$impl$u20$$u5b$T$u5d$$GT$::copy_from_slice::hf2a016039d5668ca (9 samples, 0.01%)</title><rect x="946.6" y="325" width="0.1" height="15.0" fill="rgb(215,103,0)" rx="2" ry="2" /> | |
<text x="949.56" y="335.5" ></text> | |
</g> | |
<g > | |
<title>std::time::Instant::elapsed::h8e307314b2acf9be (10 samples, 0.01%)</title><rect x="1164.3" y="261" width="0.2" height="15.0" fill="rgb(211,51,16)" rx="2" ry="2" /> | |
<text x="1167.29" y="271.5" ></text> | |
</g> | |
<g > | |
<title>std::sys::unix::time::inner::now::ha10452f37b2930c5 (20 samples, 0.03%)</title><rect x="320.0" y="245" width="0.3" height="15.0" fill="rgb(219,41,31)" rx="2" ry="2" /> | |
<text x="323.00" y="255.5" ></text> | |
</g> | |
<g > | |
<title>cranelift_codegen::ir::dfg::DataFlowGraph::resolve_aliases_in_arguments::ha1a59fc1c5edab63 (25 samples, 0.04%)</title><rect x="1164.7" y="277" width="0.4" height="15.0" fill="rgb(215,108,2)" rx="2" ry="2" /> | |
<text x="1167.72" y="287.5" ></text> | |
</g> | |
<g > | |
<title>_$LT$cranelift_codegen..isa..x86..Isa$u20$as$u20$cranelift_codegen..isa..TargetIsa$GT$::flags::h3b25073bf3bf83e7 (9 samples, 0.01%)</title><rect x="73.0" y="229" width="0.1" height="15.0" fill="rgb(235,176,24)" rx="2" ry="2" /> | |
<text x="75.98" y="239.5" ></text> | |
</g> | |
<g > | |
<title>__GI___libc_malloc (6 samples, 0.01%)</title><rect x="62.5" y="229" width="0.1" height="15.0" fill="rgb(240,123,15)" rx="2" ry="2" /> | |
<text x="65.45" y="239.5" ></text> | |
</g> | |
<g > | |
<title>_$LT$cranelift_codegen..isa..x86..Isa$u20$as$u20$cranelift_codegen..isa..TargetIsa$GT$::flags::h3b25073bf3bf83e7 (6 samples, 0.01%)</title><rect x="103.4" y="213" width="0.1" height="15.0" fill="rgb(222,148,3)" rx="2" ry="2" /> | |
<text x="106.42" y="223.5" ></text> | |
</g> | |
<g > | |
<title>std::time::Instant::elapsed::h8e307314b2acf9be (9 samples, 0.01%)</title><rect x="124.3" y="197" width="0.1" height="15.0" fill="rgb(209,66,38)" rx="2" ry="2" /> | |
<text x="127.27" y="207.5" ></text> | |
</g> | |
<g > | |
<title>cranelift_codegen::regalloc::context::Context::run::hacf4bbc8f4d0071a (82 samples, 0.12%)</title><rect x="1162.2" y="293" width="1.4" height="15.0" fill="rgb(246,145,20)" rx="2" ry="2" /> | |
<text x="1165.24" y="303.5" ></text> | |
</g> | |
<g > | |
<title>std::time::Instant::now::h33d2ba6042def2d2 (10 samples, 0.01%)</title><rect x="1166.3" y="245" width="0.1" height="15.0" fill="rgb(254,127,12)" rx="2" ry="2" /> | |
<text x="1169.25" y="255.5" ></text> | |
</g> | |
<g > | |
<title>crossbeam_epoch::default::pin::hb4a29c3259df6262 (24 samples, 0.03%)</title><rect x="188.4" y="213" width="0.4" height="15.0" fill="rgb(220,20,11)" rx="2" ry="2" /> | |
<text x="191.44" y="223.5" ></text> | |
</g> | |
<g > | |
<title>_$LT$$RF$mut$u20$W$u20$as$u20$core..fmt..Write$GT$::write_str::h896234d3569fb13a (11 samples, 0.02%)</title><rect x="871.3" y="261" width="0.2" height="15.0" fill="rgb(222,171,44)" rx="2" ry="2" /> | |
<text x="874.34" y="271.5" ></text> | |
</g> | |
<g > | |
<title>cranelift_codegen::ir::instructions::InstructionData::analyze_branch::h1af3091a9a9e30c3 (10 samples, 0.01%)</title><rect x="1152.4" y="277" width="0.2" height="15.0" fill="rgb(212,32,1)" rx="2" ry="2" /> | |
<text x="1155.41" y="287.5" ></text> | |
</g> | |
<g > | |
<title>_int_realloc (10 samples, 0.01%)</title><rect x="1177.0" y="245" width="0.2" height="15.0" fill="rgb(251,39,4)" rx="2" ry="2" /> | |
<text x="1179.98" y="255.5" ></text> | |
</g> | |
<g > | |
<title>wasmer_clif_backend::trampoline::Trampolines::new::h8a78526849fe89b9 (242 samples, 0.34%)</title><rect x="1176.4" y="389" width="4.1" height="15.0" fill="rgb(228,168,26)" rx="2" ry="2" /> | |
<text x="1179.43" y="399.5" ></text> | |
</g> | |
<g > | |
<title>all (70,168 samples, 100%)</title><rect x="10.0" y="485" width="1180.0" height="15.0" fill="rgb(208,100,30)" rx="2" ry="2" /> | |
<text x="13.00" y="495.5" ></text> | |
</g> | |
<g > | |
<title>alloc::raw_vec::RawVec$LT$T$C$A$GT$::reserve::h0c445b41f7c28667 (18 samples, 0.03%)</title><rect x="1167.9" y="197" width="0.3" height="15.0" fill="rgb(219,73,54)" rx="2" ry="2" /> | |
<text x="1170.94" y="207.5" ></text> | |
</g> | |
<g > | |
<title>__GI___libc_free (17 samples, 0.02%)</title><rect x="82.0" y="165" width="0.3" height="15.0" fill="rgb(250,166,3)" rx="2" ry="2" /> | |
<text x="84.99" y="175.5" ></text> | |
</g> | |
<g > | |
<title>__GI___libc_malloc (6 samples, 0.01%)</title><rect x="1172.4" y="229" width="0.1" height="15.0" fill="rgb(213,79,16)" rx="2" ry="2" /> | |
<text x="1175.39" y="239.5" ></text> | |
</g> | |
<g > | |
<title>__GI___libc_malloc (32 samples, 0.05%)</title><rect x="132.7" y="165" width="0.6" height="15.0" fill="rgb(216,35,47)" rx="2" ry="2" /> | |
<text x="135.73" y="175.5" ></text> | |
</g> | |
<g > | |
<title>__GI___libc_malloc (31 samples, 0.04%)</title><rect x="273.6" y="309" width="0.6" height="15.0" fill="rgb(254,113,27)" rx="2" ry="2" /> | |
<text x="276.64" y="319.5" ></text> | |
</g> | |
<g > | |
<title>std::sys::unix::time::inner::Instant::now::h23f1bea5949f1bbd (8 samples, 0.01%)</title><rect x="1161.2" y="261" width="0.1" height="15.0" fill="rgb(232,59,9)" rx="2" ry="2" /> | |
<text x="1164.19" y="271.5" ></text> | |
</g> | |
<g > | |
<title>do_syscall_64 (6 samples, 0.01%)</title><rect x="190.2" y="101" width="0.1" height="15.0" fill="rgb(238,154,4)" rx="2" ry="2" /> | |
<text x="193.23" y="111.5" ></text> | |
</g> | |
<g > | |
<title>__memset_sse2 (29 samples, 0.04%)</title><rect x="260.4" y="293" width="0.5" height="15.0" fill="rgb(213,17,23)" rx="2" ry="2" /> | |
<text x="263.42" y="303.5" ></text> | |
</g> | |
<g > | |
<title>__GI___clock_gettime (8 samples, 0.01%)</title><rect x="1174.9" y="213" width="0.1" height="15.0" fill="rgb(226,109,22)" rx="2" ry="2" /> | |
<text x="1177.92" y="223.5" ></text> | |
</g> | |
<g > | |
<title>alloc::vec::Vec$LT$T$GT$::resize::h32a2d4ba425bc523 (10 samples, 0.01%)</title><rect x="1153.0" y="261" width="0.1" height="15.0" fill="rgb(222,63,9)" rx="2" ry="2" /> | |
<text x="1155.95" y="271.5" ></text> | |
</g> | |
<g > | |
<title>z3::solver::_$LT$impl$u20$z3..Solver$GT$::check::hbf78416cda00d0a7 (12 samples, 0.02%)</title><rect x="887.1" y="389" width="0.2" height="15.0" fill="rgb(230,126,22)" rx="2" ry="2" /> | |
<text x="890.11" y="399.5" ></text> | |
</g> | |
<g > | |
<title>alloc::vec::Vec$LT$T$GT$::resize::h9160379633033fa6 (11 samples, 0.02%)</title><rect x="56.3" y="245" width="0.2" height="15.0" fill="rgb(241,219,18)" rx="2" ry="2" /> | |
<text x="59.35" y="255.5" ></text> | |
</g> | |
<g > | |
<title>cranelift_codegen::legalizer::boundary::spill_call_arguments::h7c8569664b42f645 (15 samples, 0.02%)</title><rect x="18.4" y="245" width="0.2" height="15.0" fill="rgb(230,132,29)" rx="2" ry="2" /> | |
<text x="21.36" y="255.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 (9 samples, 0.01%)</title><rect x="798.3" y="325" width="0.1" height="15.0" fill="rgb(251,205,53)" rx="2" ry="2" /> | |
<text x="801.27" y="335.5" ></text> | |
</g> | |
<g > | |
<title>__GI___libc_realloc (12 samples, 0.02%)</title><rect x="46.3" y="245" width="0.2" height="15.0" fill="rgb(205,63,10)" rx="2" ry="2" /> | |
<text x="49.31" 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 (147 samples, 0.21%)</title><rect x="1167.0" y="389" width="2.5" height="15.0" fill="rgb(242,76,47)" rx="2" ry="2" /> | |
<text x="1169.99" y="399.5" ></text> | |
</g> | |
<g > | |
<title>_int_malloc (213 samples, 0.30%)</title><rect x="730.1" y="309" width="3.6" height="15.0" fill="rgb(205,205,52)" rx="2" ry="2" /> | |
<text x="733.15" y="319.5" ></text> | |
</g> | |
<g > | |
<title>local_clock (8 samples, 0.01%)</title><rect x="294.8" y="85" width="0.1" height="15.0" fill="rgb(220,47,34)" rx="2" ry="2" /> | |
<text x="297.81" y="95.5" ></text> | |
</g> | |
<g > | |
<title>_$LT$cranelift_codegen..isa..enc_tables..Encodings$u20$as$u20$core..iter..traits..iterator..Iterator$GT$::next::he6ba202105922eb5 (7 samples, 0.01%)</title><rect x="1171.5" y="245" width="0.1" height="15.0" fill="rgb(207,223,51)" rx="2" ry="2" /> | |
<text x="1174.47" y="255.5" ></text> | |
</g> | |
<g > | |
<title>__GI___libc_realloc (24 samples, 0.03%)</title><rect x="806.2" y="261" width="0.4" height="15.0" fill="rgb(214,133,39)" rx="2" ry="2" /> | |
<text x="809.21" y="271.5" ></text> | |
</g> | |
<g > | |
<title>wasmer_runtime_core::vm::Ctx::new::hf7bd00d86e8dda7b (13 samples, 0.02%)</title><rect x="879.3" y="357" width="0.2" height="15.0" fill="rgb(208,69,38)" rx="2" ry="2" /> | |
<text x="882.28" y="367.5" ></text> | |
</g> | |
<g > | |
<title>_$LT$cranelift_codegen..timing..details..TimingToken$u20$as$u20$core..ops..drop..Drop$GT$::drop::h1b19c2a93ee0a091 (14 samples, 0.02%)</title><rect x="1154.8" y="261" width="0.3" height="15.0" fill="rgb(224,200,13)" rx="2" ry="2" /> | |
<text x="1157.82" y="271.5" ></text> | |
</g> | |
<g > | |
<title>__GI___libc_free (15 samples, 0.02%)</title><rect x="818.9" y="325" width="0.2" height="15.0" fill="rgb(238,132,2)" rx="2" ry="2" /> | |
<text x="821.85" y="335.5" ></text> | |
</g> | |
<g > | |
<title>__GI___libc_realloc (13 samples, 0.02%)</title><rect x="325.3" y="277" width="0.2" height="15.0" fill="rgb(207,46,38)" rx="2" ry="2" /> | |
<text x="328.26" y="287.5" ></text> | |
</g> | |
<g > | |
<title>__GI___clock_gettime (6 samples, 0.01%)</title><rect x="38.1" y="197" width="0.1" height="15.0" fill="rgb(214,103,17)" rx="2" ry="2" /> | |
<text x="41.08" y="207.5" ></text> | |
</g> | |
<g > | |
<title>_$LT$wasmparser..parser..Parser$u20$as$u20$wasmparser..parser..WasmDecoder$GT$::read::h34b06bb75da62f27 (118 samples, 0.17%)</title><rect x="191.5" y="149" width="2.0" height="15.0" fill="rgb(239,142,21)" rx="2" ry="2" /> | |
<text x="194.52" y="159.5" ></text> | |
</g> | |
<g > | |
<title>_int_free (14 samples, 0.02%)</title><rect x="184.8" y="245" width="0.2" height="15.0" fill="rgb(208,33,31)" rx="2" ry="2" /> | |
<text x="187.79" y="255.5" ></text> | |
</g> | |
<g > | |
<title>cranelift_codegen::context::Context::legalize::h3be573a3855dd690 (234 samples, 0.33%)</title><rect x="14.7" y="309" width="3.9" height="15.0" fill="rgb(215,88,30)" rx="2" ry="2" /> | |
<text x="17.71" y="319.5" ></text> | |
</g> | |
<g > | |
<title>_$LT$cranelift_codegen..timing..details..TimingToken$u20$as$u20$core..ops..drop..Drop$GT$::drop::h1b19c2a93ee0a091 (19 samples, 0.03%)</title><rect x="24.7" y="277" width="0.3" height="15.0" fill="rgb(231,111,13)" rx="2" ry="2" /> | |
<text x="27.70" y="287.5" ></text> | |
</g> | |
<g > | |
<title>__GI___libc_malloc (14 samples, 0.02%)</title><rect x="34.1" y="213" width="0.2" height="15.0" fill="rgb(247,2,20)" rx="2" ry="2" /> | |
<text x="37.06" y="223.5" ></text> | |
</g> | |
<g > | |
<title>cranelift_codegen::regalloc::liverange::GenericLiveRange$LT$PO$GT$::extend_in_ebb::hbdb01049c0b9a2e0 (15 samples, 0.02%)</title><rect x="52.4" y="277" width="0.3" height="15.0" fill="rgb(223,57,17)" rx="2" ry="2" /> | |
<text x="55.43" y="287.5" ></text> | |
</g> | |
<g > | |
<title>__GI___libc_malloc (507 samples, 0.72%)</title><rect x="650.1" y="261" width="8.5" height="15.0" fill="rgb(238,181,44)" rx="2" ry="2" /> | |
<text x="653.08" y="271.5" ></text> | |
</g> | |
<g > | |
<title>do_signal (14 samples, 0.02%)</title><rect x="10.8" y="357" width="0.3" height="15.0" fill="rgb(212,152,39)" rx="2" ry="2" /> | |
<text x="13.84" y="367.5" ></text> | |
</g> | |
<g > | |
<title>anon_vma_clone (40 samples, 0.06%)</title><rect x="345.2" y="165" width="0.6" height="15.0" fill="rgb(215,14,27)" rx="2" ry="2" /> | |
<text x="348.16" y="175.5" ></text> | |
</g> | |
<g > | |
<title>std::sys::unix::time::inner::now::ha10452f37b2930c5 (15 samples, 0.02%)</title><rect x="314.1" y="229" width="0.2" height="15.0" fill="rgb(224,104,54)" rx="2" ry="2" /> | |
<text x="317.06" y="239.5" ></text> | |
</g> | |
<g > | |
<title>_int_malloc (8 samples, 0.01%)</title><rect x="34.2" y="197" width="0.1" height="15.0" fill="rgb(233,110,2)" rx="2" ry="2" /> | |
<text x="37.17" y="207.5" ></text> | |
</g> | |
<g > | |
<title>__rust_alloc (9 samples, 0.01%)</title><rect x="676.6" y="277" width="0.2" height="15.0" fill="rgb(236,124,38)" rx="2" ry="2" /> | |
<text x="679.60" y="287.5" ></text> | |
</g> | |
<g > | |
<title>_$LT$alloc..vec..Vec$LT$T$GT$$u20$as$u20$core..clone..Clone$GT$::clone::h6f689c5462342c94 (51 samples, 0.07%)</title><rect x="798.7" y="309" width="0.9" height="15.0" fill="rgb(218,175,13)" rx="2" ry="2" /> | |
<text x="801.74" y="319.5" ></text> | |
</g> | |
<g > | |
<title>cranelift_codegen::settings::Flags::new::h4f222e483e8872a2 (16 samples, 0.02%)</title><rect x="330.5" y="293" width="0.3" height="15.0" fill="rgb(242,132,46)" rx="2" ry="2" /> | |
<text x="333.54" y="303.5" ></text> | |
</g> | |
<g > | |
<title>core::ptr::real_drop_in_place::h04dce3cab8235c27 (7 samples, 0.01%)</title><rect x="858.9" y="373" width="0.1" height="15.0" fill="rgb(251,125,29)" rx="2" ry="2" /> | |
<text x="861.89" y="383.5" ></text> | |
</g> | |
<g > | |
<title>cranelift_codegen::regalloc::diversion::RegDiversions::diversion::h0a2605efbb6eb85b (40 samples, 0.06%)</title><rect x="318.0" y="261" width="0.7" height="15.0" fill="rgb(207,36,51)" rx="2" ry="2" /> | |
<text x="321.03" y="271.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 (60 samples, 0.09%)</title><rect x="853.0" y="309" width="1.1" height="15.0" fill="rgb(245,97,25)" rx="2" ry="2" /> | |
<text x="856.04" y="319.5" ></text> | |
</g> | |
<g > | |
<title>alloc::raw_vec::RawVec$LT$T$C$A$GT$::reserve::hc8a0fc8526f8c69b (9 samples, 0.01%)</title><rect x="1172.4" y="245" width="0.1" height="15.0" fill="rgb(247,117,28)" rx="2" ry="2" /> | |
<text x="1175.38" y="255.5" ></text> | |
</g> | |
<g > | |
<title>get_mem_cgroup_from_mm (6 samples, 0.01%)</title><rect x="224.7" y="165" width="0.1" height="15.0" fill="rgb(220,174,22)" rx="2" ry="2" /> | |
<text x="227.72" y="175.5" ></text> | |
</g> | |
<g > | |
<title>__GI___libc_realloc (6 samples, 0.01%)</title><rect x="1178.1" y="277" width="0.1" height="15.0" fill="rgb(227,202,35)" rx="2" ry="2" /> | |
<text x="1181.06" y="287.5" ></text> | |
</g> | |
<g > | |
<title>__GI___libc_malloc (17 samples, 0.02%)</title><rect x="854.4" y="357" width="0.3" height="15.0" fill="rgb(252,19,45)" rx="2" ry="2" /> | |
<text x="857.37" y="367.5" ></text> | |
</g> | |
<g > | |
<title>__vdso_clock_gettime (6 samples, 0.01%)</title><rect x="124.3" y="117" width="0.1" height="15.0" fill="rgb(217,214,9)" rx="2" ry="2" /> | |
<text x="127.32" y="127.5" ></text> | |
</g> | |
<g > | |
<title>std::time::Instant::now::h33d2ba6042def2d2 (8 samples, 0.01%)</title><rect x="119.4" y="213" width="0.1" height="15.0" fill="rgb(233,162,33)" rx="2" ry="2" /> | |
<text x="122.36" y="223.5" ></text> | |
</g> | |
<g > | |
<title>_int_free (6 samples, 0.01%)</title><rect x="312.7" y="245" width="0.1" height="15.0" fill="rgb(206,124,22)" rx="2" ry="2" /> | |
<text x="315.74" y="255.5" ></text> | |
</g> | |
<g > | |
<title>wasmparser::binary_reader::BinaryReader::read_func_type::h0cd44550c784004e (1,608 samples, 2.29%)</title><rect x="461.6" y="293" width="27.0" height="15.0" fill="rgb(228,216,6)" rx="2" ry="2" /> | |
<text x="464.56" y="303.5" >w..</text> | |
</g> | |
<g > | |
<title>__GI___libc_free (423 samples, 0.60%)</title><rect x="991.9" y="357" width="7.1" height="15.0" fill="rgb(238,22,44)" rx="2" ry="2" /> | |
<text x="994.86" y="367.5" ></text> | |
</g> | |
<g > | |
<title>__GI___libc_malloc (12 samples, 0.02%)</title><rect x="108.3" y="133" width="0.2" height="15.0" fill="rgb(228,185,33)" rx="2" ry="2" /> | |
<text x="111.26" y="143.5" ></text> | |
</g> | |
<g > | |
<title>__GI___libc_free (362 samples, 0.52%)</title><rect x="368.6" y="309" width="6.1" height="15.0" fill="rgb(213,120,24)" rx="2" ry="2" /> | |
<text x="371.63" y="319.5" ></text> | |
</g> | |
<g > | |
<title>wasmer_runtime_core::instance::call_func_with_index::hfdcd33b8b41f1e35 (746 samples, 1.06%)</title><rect x="859.0" y="373" width="12.6" height="15.0" fill="rgb(253,97,42)" rx="2" ry="2" /> | |
<text x="862.01" y="383.5" ></text> | |
</g> | |
<g > | |
<title>alloc::raw_vec::RawVec$LT$T$C$A$GT$::reserve::h500ef385b8747b29 (17 samples, 0.02%)</title><rect x="127.9" y="197" width="0.3" height="15.0" fill="rgb(246,31,37)" rx="2" ry="2" /> | |
<text x="130.92" y="207.5" ></text> | |
</g> | |
<g > | |
<title>cranelift_codegen::dominator_tree::DominatorTreePreorder::pre_cmp_def::h23e7b9b8ee537cad (23 samples, 0.03%)</title><rect x="1167.5" y="197" width="0.4" height="15.0" fill="rgb(210,154,48)" rx="2" ry="2" /> | |
<text x="1170.55" y="207.5" ></text> | |
</g> | |
<g > | |
<title>_ZN4core3ptr18real_drop_in_place17hbf1a2e7b1d7f1667E.llvm.2002196175208074555 (603 samples, 0.86%)</title><rect x="503.3" y="277" width="10.2" height="15.0" fill="rgb(207,124,53)" rx="2" ry="2" /> | |
<text x="506.34" y="287.5" ></text> | |
</g> | |
<g > | |
<title>__GI___libc_malloc (12 samples, 0.02%)</title><rect x="306.7" y="293" width="0.2" height="15.0" fill="rgb(223,132,25)" rx="2" ry="2" /> | |
<text x="309.70" y="303.5" ></text> | |
</g> | |
<g > | |
<title>alloc_perturb (15 samples, 0.02%)</title><rect x="483.0" y="245" width="0.2" height="15.0" fill="rgb(233,220,50)" rx="2" ry="2" /> | |
<text x="485.96" y="255.5" ></text> | |
</g> | |
<g > | |
<title>cranelift_codegen::ir::builder::InstBuilder::ushr_imm::h79c82a78486e338b (10 samples, 0.01%)</title><rect x="174.4" y="213" width="0.2" height="15.0" fill="rgb(219,93,22)" rx="2" ry="2" /> | |
<text x="177.38" y="223.5" ></text> | |
</g> | |
<g > | |
<title>cranelift_codegen::regalloc::pressure::Pressure::take_transient::h55ed3b6faf9ff3f9 (10 samples, 0.01%)</title><rect x="163.4" y="197" width="0.1" height="15.0" fill="rgb(220,203,5)" rx="2" ry="2" /> | |
<text x="166.37" y="207.5" ></text> | |
</g> | |
<g > | |
<title>cranelift_codegen::legalizer::legalize_function::h9c05a7523015c4df (22 samples, 0.03%)</title><rect x="1167.0" y="229" width="0.4" height="15.0" fill="rgb(243,115,46)" rx="2" ry="2" /> | |
<text x="1169.99" y="239.5" ></text> | |
</g> | |
<g > | |
<title>__rdl_realloc (29 samples, 0.04%)</title><rect x="1043.0" y="341" width="0.5" height="15.0" fill="rgb(223,55,8)" rx="2" ry="2" /> | |
<text x="1045.99" y="351.5" ></text> | |
</g> | |
<g > | |
<title>__GI___libc_malloc (546 samples, 0.78%)</title><rect x="724.5" y="325" width="9.2" height="15.0" fill="rgb(251,155,21)" rx="2" ry="2" /> | |
<text x="727.55" y="335.5" ></text> | |
</g> | |
<g > | |
<title>_int_malloc (7 samples, 0.01%)</title><rect x="807.9" y="245" width="0.1" height="15.0" fill="rgb(227,125,6)" rx="2" ry="2" /> | |
<text x="810.87" y="255.5" ></text> | |
</g> | |
<g > | |
<title>_int_realloc (17 samples, 0.02%)</title><rect x="18.7" y="229" width="0.3" height="15.0" fill="rgb(253,186,42)" rx="2" ry="2" /> | |
<text x="21.73" y="239.5" ></text> | |
</g> | |
<g > | |
<title>_$LT$wasmer_runtime_core..sys..unix..memory..Memory$u20$as$u20$core..ops..drop..Drop$GT$::drop::h019b69b880433af9 (11 samples, 0.02%)</title><rect x="189.5" y="165" width="0.2" height="15.0" fill="rgb(226,91,18)" rx="2" ry="2" /> | |
<text x="192.47" y="175.5" ></text> | |
</g> | |
<g > | |
<title>_int_malloc (6 samples, 0.01%)</title><rect x="108.4" y="117" width="0.1" height="15.0" fill="rgb(217,90,28)" rx="2" ry="2" /> | |
<text x="111.36" y="127.5" ></text> | |
</g> | |
<g > | |
<title>free_perturb (6 samples, 0.01%)</title><rect x="1091.1" y="309" width="0.1" height="15.0" fill="rgb(223,219,13)" rx="2" ry="2" /> | |
<text x="1094.05" y="319.5" ></text> | |
</g> | |
<g > | |
<title>hashbrown::raw::RawTable$LT$T$GT$::reserve_rehash::h145328e315fce2fd (8 samples, 0.01%)</title><rect x="818.5" y="277" width="0.1" height="15.0" fill="rgb(230,152,43)" rx="2" ry="2" /> | |
<text x="821.50" y="287.5" ></text> | |
</g> | |
<g > | |
<title>cranelift_codegen::regalloc::spilling::Spilling::run::hbc5ba3177617b881 (28 samples, 0.04%)</title><rect x="1169.0" y="229" width="0.5" height="15.0" fill="rgb(232,133,33)" rx="2" ry="2" /> | |
<text x="1172.00" y="239.5" ></text> | |
</g> | |
<g > | |
<title>__GI___clock_gettime (6 samples, 0.01%)</title><rect x="1164.4" y="197" width="0.1" height="15.0" fill="rgb(231,57,29)" rx="2" ry="2" /> | |
<text x="1167.35" y="207.5" ></text> | |
</g> | |
<g > | |
<title>_int_malloc (6 samples, 0.01%)</title><rect x="195.2" y="101" width="0.1" height="15.0" fill="rgb(209,121,6)" rx="2" ry="2" /> | |
<text x="198.15" y="111.5" ></text> | |
</g> | |
<g > | |
<title>__GI___libc_free (6 samples, 0.01%)</title><rect x="222.2" y="341" width="0.1" height="15.0" fill="rgb(214,208,22)" rx="2" ry="2" /> | |
<text x="225.18" y="351.5" ></text> | |
</g> | |
<g > | |
<title>std::sys::unix::time::inner::now::ha10452f37b2930c5 (8 samples, 0.01%)</title><rect x="1174.9" y="229" width="0.1" height="15.0" fill="rgb(234,80,22)" rx="2" ry="2" /> | |
<text x="1177.92" y="239.5" ></text> | |
</g> | |
<g > | |
<title>_int_malloc (10 samples, 0.01%)</title><rect x="1179.8" y="245" width="0.2" height="15.0" fill="rgb(206,93,15)" rx="2" ry="2" /> | |
<text x="1182.81" y="255.5" ></text> | |
</g> | |
<g > | |
<title>find_vma (11 samples, 0.02%)</title><rect x="304.3" y="245" width="0.2" height="15.0" fill="rgb(220,191,5)" rx="2" ry="2" /> | |
<text x="307.28" y="255.5" ></text> | |
</g> | |
<g > | |
<title>_raw_spin_lock (9 samples, 0.01%)</title><rect x="284.2" y="181" width="0.1" height="15.0" fill="rgb(216,113,20)" rx="2" ry="2" /> | |
<text x="287.16" y="191.5" ></text> | |
</g> | |
<g > | |
<title>_$LT$cranelift_codegen..isa..x86..Isa$u20$as$u20$cranelift_codegen..isa..TargetIsa$GT$::legal_encodings::hf067c4c0987c0b93 (23 samples, 0.03%)</title><rect x="107.5" y="197" width="0.4" height="15.0" fill="rgb(236,72,45)" rx="2" ry="2" /> | |
<text x="110.47" y="207.5" ></text> | |
</g> | |
<g > | |
<title>__GI___pthread_mutex_init (9 samples, 0.01%)</title><rect x="857.8" y="357" width="0.1" height="15.0" fill="rgb(254,50,27)" rx="2" ry="2" /> | |
<text x="860.78" y="367.5" ></text> | |
</g> | |
<g > | |
<title>__GI___libc_malloc (531 samples, 0.76%)</title><rect x="1005.7" y="341" width="8.9" height="15.0" fill="rgb(219,229,18)" rx="2" ry="2" /> | |
<text x="1008.70" y="351.5" ></text> | |
</g> | |
<g > | |
<title>_int_malloc (18 samples, 0.03%)</title><rect x="1178.3" y="229" width="0.3" height="15.0" fill="rgb(217,140,26)" rx="2" ry="2" /> | |
<text x="1181.33" y="239.5" ></text> | |
</g> | |
<g > | |
<title>alloc::raw_vec::RawVec$LT$T$C$A$GT$::reserve::h500ef385b8747b29 (8 samples, 0.01%)</title><rect x="39.6" y="277" width="0.2" height="15.0" fill="rgb(233,22,26)" rx="2" ry="2" /> | |
<text x="42.65" y="287.5" ></text> | |
</g> | |
<g > | |
<title>cranelift_codegen::binemit::shrink::shrink_instructions::h2efbaf74a574d406 (451 samples, 0.64%)</title><rect x="103.5" y="213" width="7.6" height="15.0" fill="rgb(249,206,25)" rx="2" ry="2" /> | |
<text x="106.52" y="223.5" ></text> | |
</g> | |
<g > | |
<title>perf_event_mmap_output (53 samples, 0.08%)</title><rect x="268.0" y="149" width="0.8" height="15.0" fill="rgb(236,83,48)" rx="2" ry="2" /> | |
<text x="270.95" y="159.5" ></text> | |
</g> | |
<g > | |
<title>__vdso_clock_gettime (14 samples, 0.02%)</title><rect x="92.3" y="101" width="0.2" height="15.0" fill="rgb(254,195,5)" rx="2" ry="2" /> | |
<text x="95.25" y="111.5" ></text> | |
</g> | |
<g > | |
<title>_int_malloc (6 samples, 0.01%)</title><rect x="1168.2" y="165" width="0.1" height="15.0" fill="rgb(243,135,24)" rx="2" ry="2" /> | |
<text x="1171.24" y="175.5" ></text> | |
</g> | |
<g > | |
<title>cranelift_codegen::ir::instructions::InstructionData::arguments::h70ecdef19e20b02a (14 samples, 0.02%)</title><rect x="159.9" y="197" width="0.2" height="15.0" fill="rgb(241,209,24)" rx="2" ry="2" /> | |
<text x="162.85" y="207.5" ></text> | |
</g> | |
<g > | |
<title>_int_malloc (6 samples, 0.01%)</title><rect x="151.0" y="133" width="0.1" height="15.0" fill="rgb(234,6,32)" rx="2" ry="2" /> | |
<text x="153.96" y="143.5" ></text> | |
</g> | |
<g > | |
<title>__GI___libc_malloc (10 samples, 0.01%)</title><rect x="193.9" y="133" width="0.2" height="15.0" fill="rgb(214,87,10)" rx="2" ry="2" /> | |
<text x="196.94" y="143.5" ></text> | |
</g> | |
<g > | |
<title>alloc::raw_vec::RawVec$LT$T$C$A$GT$::reserve::h500ef385b8747b29 (10 samples, 0.01%)</title><rect x="52.3" y="245" width="0.1" height="15.0" fill="rgb(222,84,42)" rx="2" ry="2" /> | |
<text x="55.26" y="255.5" ></text> | |
</g> | |
<g > | |
<title>__GI___libc_realloc (10 samples, 0.01%)</title><rect x="128.0" y="181" width="0.2" height="15.0" fill="rgb(212,35,45)" rx="2" ry="2" /> | |
<text x="131.04" y="191.5" ></text> | |
</g> | |
<g > | |
<title>wasmer_clif_fork_frontend::frontend::FunctionBuilder::seal_block::h8e4b98b0ea45c88d (18 samples, 0.03%)</title><rect x="811.0" y="309" width="0.3" height="15.0" fill="rgb(248,179,15)" rx="2" ry="2" /> | |
<text x="814.02" y="319.5" ></text> | |
</g> | |
<g > | |
<title>std::time::Instant::now::h33d2ba6042def2d2 (9 samples, 0.01%)</title><rect x="80.9" y="165" width="0.2" height="15.0" fill="rgb(209,80,2)" rx="2" ry="2" /> | |
<text x="83.92" y="175.5" ></text> | |
</g> | |
<g > | |
<title>__GI___libc_realloc (15 samples, 0.02%)</title><rect x="325.8" y="261" width="0.3" height="15.0" fill="rgb(225,206,26)" rx="2" ry="2" /> | |
<text x="328.82" y="271.5" ></text> | |
</g> | |
<g > | |
<title>_$LT$rayon..iter..while_some..WhileSome$LT$I$GT$$u20$as$u20$rayon..iter..ParallelIterator$GT$::drive_unindexed::h5bb97cb6437a1950 (6,990 samples, 9.96%)</title><rect x="61.0" y="373" width="117.6" height="15.0" fill="rgb(243,16,44)" rx="2" ry="2" /> | |
<text x="64.02" y="383.5" >_$LT$rayon..it..</text> | |
</g> | |
<g > | |
<title>_int_free (341 samples, 0.49%)</title><rect x="1045.2" y="373" width="5.8" height="15.0" fill="rgb(253,68,3)" rx="2" ry="2" /> | |
<text x="1048.24" y="383.5" ></text> | |
</g> | |
<g > | |
<title>_ZN4core3ptr18real_drop_in_place17hbf1a2e7b1d7f1667E.llvm.2002196175208074555 (23 samples, 0.03%)</title><rect x="532.8" y="277" width="0.4" height="15.0" fill="rgb(251,113,4)" rx="2" ry="2" /> | |
<text x="535.80" y="287.5" ></text> | |
</g> | |
<g > | |
<title>__GI___libc_realloc (30 samples, 0.04%)</title><rect x="323.0" y="277" width="0.5" height="15.0" fill="rgb(209,31,25)" rx="2" ry="2" /> | |
<text x="326.01" y="287.5" ></text> | |
</g> | |
<g > | |
<title>vm_mmap_pgoff (8 samples, 0.01%)</title><rect x="190.7" y="53" width="0.1" height="15.0" fill="rgb(212,116,54)" rx="2" ry="2" /> | |
<text x="193.68" y="63.5" ></text> | |
</g> | |
<g > | |
<title>_int_free (6 samples, 0.01%)</title><rect x="200.2" y="213" width="0.1" height="15.0" fill="rgb(232,116,47)" rx="2" ry="2" /> | |
<text x="203.20" y="223.5" ></text> | |
</g> | |
<g > | |
<title>core::ptr::real_drop_in_place::hb4af2f77e0210fc8 (28 samples, 0.04%)</title><rect x="185.0" y="277" width="0.5" height="15.0" fill="rgb(253,36,32)" rx="2" ry="2" /> | |
<text x="188.05" y="287.5" ></text> | |
</g> | |
<g > | |
<title>kmem_cache_free (6 samples, 0.01%)</title><rect x="225.4" y="197" width="0.1" height="15.0" fill="rgb(217,46,27)" rx="2" ry="2" /> | |
<text x="228.39" y="207.5" ></text> | |
</g> | |
<g > | |
<title>get_page_from_freelist (16 samples, 0.02%)</title><rect x="278.0" y="181" width="0.3" height="15.0" fill="rgb(217,169,22)" rx="2" ry="2" /> | |
<text x="280.99" y="191.5" ></text> | |
</g> | |
<g > | |
<title>__GI___libc_malloc (6 samples, 0.01%)</title><rect x="1164.6" y="261" width="0.1" height="15.0" fill="rgb(223,26,1)" rx="2" ry="2" /> | |
<text x="1167.61" y="271.5" ></text> | |
</g> | |
<g > | |
<title>_$LT$cranelift_codegen..binemit..memorysink..NullTrapSink$u20$as$u20$cranelift_codegen..binemit..memorysink..TrapSink$GT$::trap::hc03532845cd67486 (8 samples, 0.01%)</title><rect x="317.7" y="261" width="0.2" height="15.0" fill="rgb(242,141,25)" rx="2" ry="2" /> | |
<text x="320.75" y="271.5" ></text> | |
</g> | |
<g > | |
<title>__GI___clock_gettime (6 samples, 0.01%)</title><rect x="124.3" y="133" width="0.1" height="15.0" fill="rgb(210,215,31)" rx="2" ry="2" /> | |
<text x="127.32" y="143.5" ></text> | |
</g> | |
<g > | |
<title>_int_malloc (7 samples, 0.01%)</title><rect x="76.1" y="133" width="0.1" height="15.0" fill="rgb(246,42,10)" rx="2" ry="2" /> | |
<text x="79.12" y="143.5" ></text> | |
</g> | |
<g > | |
<title>_int_free (16 samples, 0.02%)</title><rect x="196.0" y="133" width="0.3" height="15.0" fill="rgb(251,193,46)" rx="2" ry="2" /> | |
<text x="199.01" y="143.5" ></text> | |
</g> | |
<g > | |
<title>std::sys::unix::time::inner::Instant::now::h23f1bea5949f1bbd (8 samples, 0.01%)</title><rect x="119.7" y="165" width="0.2" height="15.0" fill="rgb(250,224,29)" rx="2" ry="2" /> | |
<text x="122.75" y="175.5" ></text> | |
</g> | |
<g > | |
<title>_int_malloc (11 samples, 0.02%)</title><rect x="78.8" y="165" width="0.2" height="15.0" fill="rgb(222,127,43)" rx="2" ry="2" /> | |
<text x="81.81" y="175.5" ></text> | |
</g> | |
<g > | |
<title>std::time::Instant::now::h33d2ba6042def2d2 (11 samples, 0.02%)</title><rect x="1154.9" y="229" width="0.2" height="15.0" fill="rgb(245,163,39)" rx="2" ry="2" /> | |
<text x="1157.87" y="239.5" ></text> | |
</g> | |
<g > | |
<title>copy_fpstate_to_sigframe (15 samples, 0.02%)</title><rect x="13.3" y="357" width="0.3" height="15.0" fill="rgb(231,159,9)" rx="2" ry="2" /> | |
<text x="16.33" y="367.5" ></text> | |
</g> | |
<g > | |
<title>cranelift_codegen::context::Context::prologue_epilogue::he7fad23bcfb5a3af (422 samples, 0.60%)</title><rect x="91.9" y="229" width="7.1" height="15.0" fill="rgb(208,170,26)" rx="2" ry="2" /> | |
<text x="94.90" y="239.5" ></text> | |
</g> | |
<g > | |
<title>_int_free (19 samples, 0.03%)</title><rect x="186.3" y="277" width="0.4" height="15.0" fill="rgb(217,193,53)" rx="2" ry="2" /> | |
<text x="189.34" y="287.5" ></text> | |
</g> | |
<g > | |
<title>__GI___libc_realloc (18 samples, 0.03%)</title><rect x="808.8" y="261" width="0.3" height="15.0" fill="rgb(244,61,21)" rx="2" ry="2" /> | |
<text x="811.83" y="271.5" ></text> | |
</g> | |
<g > | |
<title>cranelift_entity::list::EntityList$LT$T$GT$::push::h051541d55e7ee057 (8 samples, 0.01%)</title><rect x="95.8" y="117" width="0.2" height="15.0" fill="rgb(239,205,29)" rx="2" ry="2" /> | |
<text x="98.85" y="127.5" ></text> | |
</g> | |
<g > | |
<title>std::sys::unix::alloc::_$LT$impl$u20$core..alloc..GlobalAlloc$u20$for$u20$std..alloc..System$GT$::alloc::h33585d4e6aad0166 (23 samples, 0.03%)</title><rect x="604.6" y="293" width="0.4" height="15.0" fill="rgb(218,4,31)" rx="2" ry="2" /> | |
<text x="607.57" y="303.5" ></text> | |
</g> | |
<g > | |
<title>__GI___libc_free (449 samples, 0.64%)</title><rect x="505.6" y="261" width="7.5" height="15.0" fill="rgb(227,210,32)" rx="2" ry="2" /> | |
<text x="508.59" y="271.5" ></text> | |
</g> | |
<g > | |
<title>__vdso_clock_gettime (7 samples, 0.01%)</title><rect x="101.0" y="101" width="0.1" height="15.0" fill="rgb(217,172,26)" rx="2" ry="2" /> | |
<text x="104.00" y="111.5" ></text> | |
</g> | |
<g > | |
<title>alloc::vec::Vec$LT$T$GT$::into_boxed_slice::hf32ceb0c7c3b72c2 (6 samples, 0.01%)</title><rect x="876.5" y="341" width="0.1" height="15.0" fill="rgb(230,63,29)" rx="2" ry="2" /> | |
<text x="879.45" y="351.5" ></text> | |
</g> | |
<g > | |
<title>_$LT$wasmer_clif_fork_frontend..frontend..FuncInstBuilder$u20$as$u20$cranelift_codegen..ir..builder..InstBuilderBase$GT$::build::h31ca9581c4035409 (31 samples, 0.04%)</title><rect x="853.2" y="277" width="0.5" height="15.0" fill="rgb(251,19,43)" rx="2" ry="2" /> | |
<text x="856.21" y="287.5" ></text> | |
</g> | |
<g > | |
<title>cranelift_codegen::ir::dfg::DataFlowGraph::attach_result::h2b371a9194aba790 (9 samples, 0.01%)</title><rect x="56.8" y="229" width="0.1" height="15.0" fill="rgb(241,206,37)" rx="2" ry="2" /> | |
<text x="59.78" y="239.5" ></text> | |
</g> | |
<g > | |
<title>_$LT$parity_wasm..elements..ops..Instruction$u20$as$u20$parity_wasm..elements..Serialize$GT$::serialize::h0e7ca03145b3f942 (3,747 samples, 5.34%)</title><rect x="928.9" y="357" width="63.0" height="15.0" fill="rgb(211,16,0)" rx="2" ry="2" /> | |
<text x="931.85" y="367.5" >_$LT$p..</text> | |
</g> | |
<g > | |
<title>do_syscall_64 (337 samples, 0.48%)</title><rect x="348.8" y="261" width="5.7" height="15.0" fill="rgb(219,58,34)" rx="2" ry="2" /> | |
<text x="351.82" y="271.5" ></text> | |
</g> | |
<g > | |
<title>std::time::Instant::elapsed::h8e307314b2acf9be (17 samples, 0.02%)</title><rect x="24.7" y="261" width="0.3" height="15.0" fill="rgb(235,36,54)" rx="2" ry="2" /> | |
<text x="27.73" y="271.5" ></text> | |
</g> | |
<g > | |
<title>wasmer_clif_backend::signal::unix::call_protected::h998ed36d6bf840fc (540 samples, 0.77%)</title><rect x="1180.9" y="453" width="9.1" height="15.0" fill="rgb(218,36,48)" rx="2" ry="2" /> | |
<text x="1183.90" y="463.5" ></text> | |
</g> | |
<g > | |
<title>cranelift_codegen::ir::layout::Layout::remove_inst::h17e123ecaa4a07c6 (8 samples, 0.01%)</title><rect x="112.8" y="213" width="0.1" height="15.0" fill="rgb(214,163,25)" rx="2" ry="2" /> | |
<text x="115.77" y="223.5" ></text> | |
</g> | |
<g > | |
<title>change_protection_range (120 samples, 0.17%)</title><rect x="334.1" y="181" width="2.0" height="15.0" fill="rgb(231,147,43)" rx="2" ry="2" /> | |
<text x="337.09" y="191.5" ></text> | |
</g> | |
<g > | |
<title>wasmer_runtime_core::sys::unix::memory::Memory::protect::hc4dfd0a2abe36912 (409 samples, 0.58%)</title><rect x="282.6" y="309" width="6.9" height="15.0" fill="rgb(242,190,13)" rx="2" ry="2" /> | |
<text x="285.60" y="319.5" ></text> | |
</g> | |
<g > | |
<title>cranelift_codegen::isa::x86::enc_tables::size_plus_maybe_sib_or_offset_for_in_reg_0::h45f17ad339ad9f42 (21 samples, 0.03%)</title><rect x="26.6" y="277" width="0.3" height="15.0" fill="rgb(246,15,20)" rx="2" ry="2" /> | |
<text x="29.56" y="287.5" ></text> | |
</g> | |
<g > | |
<title>__GI___libc_malloc (6 samples, 0.01%)</title><rect x="282.0" y="277" width="0.1" height="15.0" fill="rgb(207,38,29)" rx="2" ry="2" /> | |
<text x="284.99" y="287.5" ></text> | |
</g> | |
<g > | |
<title>_int_realloc (58 samples, 0.08%)</title><rect x="149.8" y="133" width="1.0" height="15.0" fill="rgb(211,204,40)" rx="2" ry="2" /> | |
<text x="152.80" y="143.5" ></text> | |
</g> | |
<g > | |
<title>alloc::raw_vec::RawVec$LT$T$C$A$GT$::reserve::h500ef385b8747b29 (12 samples, 0.02%)</title><rect x="116.4" y="197" width="0.2" height="15.0" fill="rgb(247,76,12)" rx="2" ry="2" /> | |
<text x="119.40" y="207.5" ></text> | |
</g> | |
<g > | |
<title>cranelift_codegen::context::Context::compile::h9fe1ff28e88fe30f (1,073 samples, 1.53%)</title><rect x="1148.5" y="309" width="18.0" height="15.0" fill="rgb(246,207,45)" rx="2" ry="2" /> | |
<text x="1151.48" y="319.5" ></text> | |
</g> | |
<g > | |
<title>__memcpy_avx_unaligned (11 samples, 0.02%)</title><rect x="196.7" y="149" width="0.2" height="15.0" fill="rgb(209,2,13)" rx="2" ry="2" /> | |
<text x="199.67" y="159.5" ></text> | |
</g> | |
<g > | |
<title>__GI___libc_malloc (7 samples, 0.01%)</title><rect x="201.3" y="197" width="0.1" height="15.0" fill="rgb(238,23,33)" rx="2" ry="2" /> | |
<text x="204.27" y="207.5" ></text> | |
</g> | |
<g > | |
<title>cranelift_codegen::ir::instructions::InstructionData::analyze_branch::h1af3091a9a9e30c3 (11 samples, 0.02%)</title><rect x="77.1" y="213" width="0.2" height="15.0" fill="rgb(250,110,38)" rx="2" ry="2" /> | |
<text x="80.13" y="223.5" ></text> | |
</g> | |
<g > | |
<title>std::sys::unix::time::inner::now::ha10452f37b2930c5 (11 samples, 0.02%)</title><rect x="91.7" y="165" width="0.2" height="15.0" fill="rgb(245,25,25)" rx="2" ry="2" /> | |
<text x="94.71" y="175.5" ></text> | |
</g> | |
<g > | |
<title>wasmer_runtime_core::instance::call_func_with_index_inner::h484a2214ddaa0611 (10 samples, 0.01%)</title><rect x="197.6" y="197" width="0.2" height="15.0" fill="rgb(235,160,8)" rx="2" ry="2" /> | |
<text x="200.59" y="207.5" ></text> | |
</g> | |
<g > | |
<title>__GI___clock_gettime (7 samples, 0.01%)</title><rect x="121.0" y="117" width="0.1" height="15.0" fill="rgb(223,52,10)" rx="2" ry="2" /> | |
<text x="123.99" y="127.5" ></text> | |
</g> | |
<g > | |
<title>_int_malloc (13 samples, 0.02%)</title><rect x="1167.9" y="165" width="0.3" height="15.0" fill="rgb(234,21,19)" rx="2" ry="2" /> | |
<text x="1170.94" y="175.5" ></text> | |
</g> | |
<g > | |
<title>c2_chacha::guts::refill_wide::impl_avx2::hcbb75f7591de3cb9 (17 samples, 0.02%)</title><rect x="1143.1" y="357" width="0.3" height="15.0" fill="rgb(217,38,38)" rx="2" ry="2" /> | |
<text x="1146.11" y="367.5" ></text> | |
</g> | |
<g > | |
<title>_$LT$core..iter..adapters..Map$LT$I$C$F$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$::fold::h053c4e0e67e6e8b2 (126 samples, 0.18%)</title><rect x="105.0" y="197" width="2.2" height="15.0" fill="rgb(239,132,46)" rx="2" ry="2" /> | |
<text x="108.03" y="207.5" ></text> | |
</g> | |
<g > | |
<title>_$LT$std..collections..hash..map..DefaultHasher$u20$as$u20$core..hash..Hasher$GT$::write::hce30e4f96ad2e64e (189 samples, 0.27%)</title><rect x="638.5" y="277" width="3.2" height="15.0" fill="rgb(221,148,29)" rx="2" ry="2" /> | |
<text x="641.54" y="287.5" ></text> | |
</g> | |
<g > | |
<title>cranelift_codegen::ir::builder::InstBuilder::x86_pop::h5a280d9badba4b5b (45 samples, 0.06%)</title><rect x="19.6" y="245" width="0.8" height="15.0" fill="rgb(224,68,34)" rx="2" ry="2" /> | |
<text x="22.60" y="255.5" ></text> | |
</g> | |
<g > | |
<title>__GI___libc_malloc (14 samples, 0.02%)</title><rect x="65.3" y="229" width="0.2" height="15.0" fill="rgb(216,51,9)" rx="2" ry="2" /> | |
<text x="68.31" y="239.5" ></text> | |
</g> | |
<g > | |
<title>cranelift_codegen::binemit::relaxation::try_fold_redundant_jump::h7d3fd9ec5a386d74 (24 samples, 0.03%)</title><rect x="102.2" y="197" width="0.4" height="15.0" fill="rgb(217,42,45)" rx="2" ry="2" /> | |
<text x="105.22" y="207.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 (6,849 samples, 9.76%)</title><rect x="61.0" y="293" width="115.2" height="15.0" fill="rgb(238,21,52)" rx="2" ry="2" /> | |
<text x="64.02" y="303.5" >_$LT$core..ite..</text> | |
</g> | |
<g > | |
<title>std::time::Instant::now::h33d2ba6042def2d2 (7 samples, 0.01%)</title><rect x="37.5" y="277" width="0.1" height="15.0" fill="rgb(227,14,4)" rx="2" ry="2" /> | |
<text x="40.46" y="287.5" ></text> | |
</g> | |
<g > | |
<title>alloc::raw_vec::RawVec$LT$T$C$A$GT$::reserve::hea3f43976955e3d2 (6 samples, 0.01%)</title><rect x="1178.1" y="293" width="0.1" height="15.0" fill="rgb(219,122,4)" rx="2" ry="2" /> | |
<text x="1181.06" y="303.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 (39 samples, 0.06%)</title><rect x="33.7" y="261" width="0.7" height="15.0" fill="rgb(210,60,45)" rx="2" ry="2" /> | |
<text x="36.71" y="271.5" ></text> | |
</g> | |
<g > | |
<title>page_fault (6 samples, 0.01%)</title><rect x="190.4" y="133" width="0.1" height="15.0" fill="rgb(227,182,53)" rx="2" ry="2" /> | |
<text x="193.41" y="143.5" ></text> | |
</g> | |
<g > | |
<title>_int_malloc (10 samples, 0.01%)</title><rect x="102.1" y="165" width="0.1" height="15.0" fill="rgb(237,9,39)" rx="2" ry="2" /> | |
<text x="105.06" y="175.5" ></text> | |
</g> | |
<g > | |
<title>_$LT$cranelift_codegen..timing..details..TimingToken$u20$as$u20$core..ops..drop..Drop$GT$::drop::h1b19c2a93ee0a091 (12 samples, 0.02%)</title><rect x="122.3" y="213" width="0.2" height="15.0" fill="rgb(228,137,30)" rx="2" ry="2" /> | |
<text x="125.27" y="223.5" ></text> | |
</g> | |
<g > | |
<title>__do_page_fault (213 samples, 0.30%)</title><rect x="302.8" y="261" width="3.6" height="15.0" fill="rgb(222,61,1)" rx="2" ry="2" /> | |
<text x="305.85" y="271.5" ></text> | |
</g> | |
<g > | |
<title>hashbrown::map::HashMap$LT$K$C$V$C$S$GT$::insert::h7f71a0adc74f5535 (24 samples, 0.03%)</title><rect x="818.2" y="309" width="0.4" height="15.0" fill="rgb(232,183,26)" rx="2" ry="2" /> | |
<text x="821.23" y="319.5" ></text> | |
</g> | |
<g > | |
<title>__GI___libc_malloc (8 samples, 0.01%)</title><rect x="54.5" y="261" width="0.1" height="15.0" fill="rgb(245,26,51)" rx="2" ry="2" /> | |
<text x="57.50" y="271.5" ></text> | |
</g> | |
<g > | |
<title>__vdso_clock_gettime (8 samples, 0.01%)</title><rect x="1174.9" y="197" width="0.1" height="15.0" fill="rgb(205,118,38)" rx="2" ry="2" /> | |
<text x="1177.92" y="207.5" ></text> | |
</g> | |
<g > | |
<title>_int_malloc (9 samples, 0.01%)</title><rect x="1171.0" y="213" width="0.1" height="15.0" fill="rgb(236,50,36)" rx="2" ry="2" /> | |
<text x="1173.98" y="223.5" ></text> | |
</g> | |
<g > | |
<title>wasmer_clif_fork_frontend::frontend::FunctionBuilderContext::new::h436ea5f82fe59916 (16 samples, 0.02%)</title><rect x="812.7" y="293" width="0.3" height="15.0" fill="rgb(226,156,45)" rx="2" ry="2" /> | |
<text x="815.75" y="303.5" ></text> | |
</g> | |
<g > | |
<title>wasmparser::readers::module::ModuleReader::read::h9a86df7daf36f14d (1,554 samples, 2.21%)</title><rect x="550.9" y="277" width="26.1" height="15.0" fill="rgb(218,76,39)" rx="2" ry="2" /> | |
<text x="553.88" y="287.5" >w..</text> | |
</g> | |
<g > | |
<title>anon_vma_clone (18 samples, 0.03%)</title><rect x="224.1" y="197" width="0.3" height="15.0" fill="rgb(218,46,25)" rx="2" ry="2" /> | |
<text x="227.14" y="207.5" ></text> | |
</g> | |
<g > | |
<title>c2_chacha::guts::refill_wide::he4343866a1fa78ce (7 samples, 0.01%)</title><rect x="1107.3" y="357" width="0.1" height="15.0" fill="rgb(242,218,44)" rx="2" ry="2" /> | |
<text x="1110.33" y="367.5" ></text> | |
</g> | |
<g > | |
<title>__GI___libc_malloc (7 samples, 0.01%)</title><rect x="356.4" y="293" width="0.1" height="15.0" fill="rgb(233,206,19)" rx="2" ry="2" /> | |
<text x="359.36" y="303.5" ></text> | |
</g> | |
<g > | |
<title>_int_malloc (6 samples, 0.01%)</title><rect x="1177.1" y="229" width="0.1" height="15.0" fill="rgb(241,72,16)" rx="2" ry="2" /> | |
<text x="1180.05" y="239.5" ></text> | |
</g> | |
<g > | |
<title>std::sys::unix::time::inner::now::ha10452f37b2930c5 (18 samples, 0.03%)</title><rect x="116.7" y="181" width="0.3" height="15.0" fill="rgb(216,167,39)" rx="2" ry="2" /> | |
<text x="119.69" y="191.5" ></text> | |
</g> | |
<g > | |
<title>_int_free (12 samples, 0.02%)</title><rect x="82.1" y="149" width="0.2" height="15.0" fill="rgb(239,52,21)" rx="2" ry="2" /> | |
<text x="85.08" y="159.5" ></text> | |
</g> | |
<g > | |
<title>__memcpy_avx_unaligned (18 samples, 0.03%)</title><rect x="603.9" y="309" width="0.3" height="15.0" fill="rgb(242,81,41)" rx="2" ry="2" /> | |
<text x="606.94" y="319.5" ></text> | |
</g> | |
<g > | |
<title>do_syscall_64 (931 samples, 1.33%)</title><rect x="332.2" y="261" width="15.6" height="15.0" fill="rgb(218,212,26)" rx="2" ry="2" /> | |
<text x="335.19" y="271.5" ></text> | |
</g> | |
<g > | |
<title>_$LT$cranelift_codegen..timing..details..TimingToken$u20$as$u20$core..ops..drop..Drop$GT$::drop::h1b19c2a93ee0a091 (11 samples, 0.02%)</title><rect x="147.1" y="197" width="0.1" height="15.0" fill="rgb(218,109,18)" rx="2" ry="2" /> | |
<text x="150.06" y="207.5" ></text> | |
</g> | |
<g > | |
<title>wasmer_clif_backend::resolver::FuncResolverBuilder::new::h17aa56962b53b260 (6,990 samples, 9.96%)</title><rect x="61.0" y="421" width="117.6" height="15.0" fill="rgb(208,195,36)" rx="2" ry="2" /> | |
<text x="64.02" y="431.5" >wasmer_clif_ba..</text> | |
</g> | |
<g > | |
<title>hashbrown::raw::RawTable$LT$T$GT$::try_with_capacity::h7a6e6bae489d4fe9 (19 samples, 0.03%)</title><rect x="75.9" y="165" width="0.4" height="15.0" fill="rgb(249,86,10)" rx="2" ry="2" /> | |
<text x="78.94" y="175.5" ></text> | |
</g> | |
<g > | |
<title>std::time::Instant::elapsed::h8e307314b2acf9be (28 samples, 0.04%)</title><rect x="126.8" y="197" width="0.5" height="15.0" fill="rgb(213,144,34)" rx="2" ry="2" /> | |
<text x="129.79" y="207.5" ></text> | |
</g> | |
<g > | |
<title>rocinante::stoke::CandidateFunc::get_rand_instr::h1affb64f6e1408ee (1,959 samples, 2.79%)</title><rect x="1108.1" y="389" width="33.0" height="15.0" fill="rgb(254,69,8)" rx="2" ry="2" /> | |
<text x="1111.12" y="399.5" >ro..</text> | |
</g> | |
<g > | |
<title>cranelift_codegen::ir::instructions::InstructionData::arguments::h70ecdef19e20b02a (7 samples, 0.01%)</title><rect x="59.6" y="277" width="0.2" height="15.0" fill="rgb(233,38,20)" rx="2" ry="2" /> | |
<text x="62.64" y="287.5" ></text> | |
</g> | |
<g > | |
<title>__GI___libc_realloc (15 samples, 0.02%)</title><rect x="298.0" y="261" width="0.3" height="15.0" fill="rgb(241,131,44)" rx="2" ry="2" /> | |
<text x="301.04" y="271.5" ></text> | |
</g> | |
<g > | |
<title>cranelift_codegen::constant_hash::probe::hd04e9b03fd50ee53 (21 samples, 0.03%)</title><rect x="355.3" y="277" width="0.4" height="15.0" fill="rgb(223,54,22)" rx="2" ry="2" /> | |
<text x="358.35" y="287.5" ></text> | |
</g> | |
<g > | |
<title>_$LT$cranelift_codegen..timing..details..TimingToken$u20$as$u20$core..ops..drop..Drop$GT$::drop::h1b19c2a93ee0a091 (14 samples, 0.02%)</title><rect x="166.2" y="213" width="0.2" height="15.0" fill="rgb(206,180,12)" rx="2" ry="2" /> | |
<text x="169.21" y="223.5" ></text> | |
</g> | |
<g > | |
<title>_$LT$alloc..vec..Vec$LT$T$GT$$u20$as$u20$core..clone..Clone$GT$::clone::h21c33b7e56b1167d (18 samples, 0.03%)</title><rect x="62.3" y="245" width="0.3" height="15.0" fill="rgb(249,203,34)" rx="2" ry="2" /> | |
<text x="65.30" y="255.5" ></text> | |
</g> | |
<g > | |
<title>_int_free (41 samples, 0.06%)</title><rect x="308.4" y="261" width="0.7" height="15.0" fill="rgb(214,92,3)" rx="2" ry="2" /> | |
<text x="311.36" y="271.5" ></text> | |
</g> | |
<g > | |
<title>entry_SYSCALL_64_after_hwframe (10 samples, 0.01%)</title><rect x="189.5" y="133" width="0.2" height="15.0" fill="rgb(230,7,46)" rx="2" ry="2" /> | |
<text x="192.49" y="143.5" ></text> | |
</g> | |
<g > | |
<title>_$LT$alloc..vec..Vec$LT$T$GT$$u20$as$u20$core..clone..Clone$GT$::clone::h77d562a39f7591d8 (24 samples, 0.03%)</title><rect x="64.0" y="245" width="0.4" height="15.0" fill="rgb(247,176,9)" rx="2" ry="2" /> | |
<text x="66.97" y="255.5" ></text> | |
</g> | |
<g > | |
<title>mprotect_fixup (471 samples, 0.67%)</title><rect x="262.3" y="213" width="7.9" height="15.0" fill="rgb(240,217,17)" rx="2" ry="2" /> | |
<text x="265.25" y="223.5" ></text> | |
</g> | |
<g > | |
<title>cranelift_entity::sparse::SparseMap$LT$K$C$V$GT$::insert::h31013d437c52e258 (19 samples, 0.03%)</title><rect x="1177.6" y="277" width="0.3" height="15.0" fill="rgb(246,73,29)" rx="2" ry="2" /> | |
<text x="1180.57" y="287.5" ></text> | |
</g> | |
<g > | |
<title>_int_malloc (6 samples, 0.01%)</title><rect x="1168.3" y="165" width="0.1" height="15.0" fill="rgb(217,205,18)" rx="2" ry="2" /> | |
<text x="1171.34" y="175.5" ></text> | |
</g> | |
<g > | |
<title>__GI___libc_malloc (11 samples, 0.02%)</title><rect x="178.8" y="293" width="0.2" height="15.0" fill="rgb(224,152,53)" rx="2" ry="2" /> | |
<text x="181.79" y="303.5" ></text> | |
</g> | |
<g > | |
<title>_start (736 samples, 1.05%)</title><rect x="189.1" y="437" width="12.3" height="15.0" fill="rgb(240,72,2)" rx="2" ry="2" /> | |
<text x="192.07" y="447.5" ></text> | |
</g> | |
<g > | |
<title>__rust_dealloc (11 samples, 0.02%)</title><rect x="1123.1" y="373" width="0.2" height="15.0" fill="rgb(211,156,35)" rx="2" ry="2" /> | |
<text x="1126.09" y="383.5" ></text> | |
</g> | |
<g > | |
<title>alloc::raw_vec::RawVec$LT$T$C$A$GT$::reserve::h8388d76edb66302c (8 samples, 0.01%)</title><rect x="871.4" y="245" width="0.1" height="15.0" fill="rgb(233,161,31)" rx="2" ry="2" /> | |
<text x="874.39" y="255.5" ></text> | |
</g> | |
<g > | |
<title>__GI___libc_free (10 samples, 0.01%)</title><rect x="199.3" y="197" width="0.2" height="15.0" fill="rgb(248,118,33)" rx="2" ry="2" /> | |
<text x="202.34" y="207.5" ></text> | |
</g> | |
<g > | |
<title>core::ops::function::FnOnce::call_once$u7b$$u7b$vtable.shim$u7d$$u7d$::h68a6f528c140c0fd (42 samples, 0.06%)</title><rect x="188.3" y="341" width="0.7" height="15.0" fill="rgb(251,43,33)" rx="2" ry="2" /> | |
<text x="191.34" y="351.5" ></text> | |
</g> | |
<g > | |
<title>_int_malloc (6 samples, 0.01%)</title><rect x="255.4" y="261" width="0.1" height="15.0" fill="rgb(216,222,27)" rx="2" ry="2" /> | |
<text x="258.42" y="271.5" ></text> | |
</g> | |
<g > | |
<title>tlb_finish_mmu (169 samples, 0.24%)</title><rect x="227.2" y="197" width="2.8" height="15.0" fill="rgb(207,42,25)" rx="2" ry="2" /> | |
<text x="230.19" y="207.5" ></text> | |
</g> | |
<g > | |
<title>alloc::raw_vec::RawVec$LT$T$C$A$GT$::reserve::hae39d8e15426d2f6 (18 samples, 0.03%)</title><rect x="81.1" y="197" width="0.3" height="15.0" fill="rgb(221,7,20)" rx="2" ry="2" /> | |
<text x="84.07" y="207.5" ></text> | |
</g> | |
<g > | |
<title>hashbrown::raw::RawTable$LT$T$GT$::insert::h1ba60dad4ebe9e0f (13 samples, 0.02%)</title><rect x="818.4" y="293" width="0.2" height="15.0" fill="rgb(243,172,50)" rx="2" ry="2" /> | |
<text x="821.42" y="303.5" ></text> | |
</g> | |
<g > | |
<title>__GI___clock_gettime (14 samples, 0.02%)</title><rect x="124.5" y="165" width="0.2" height="15.0" fill="rgb(209,38,32)" rx="2" ry="2" /> | |
<text x="127.46" y="175.5" ></text> | |
</g> | |
<g > | |
<title>_ZN9hashbrown3raw17RawTable$LT$T$GT$14reserve_rehash17ha4062a2c7a6e2cb5E.llvm.16938716460618634628 (128 samples, 0.18%)</title><rect x="170.0" y="197" width="2.2" height="15.0" fill="rgb(208,191,50)" rx="2" ry="2" /> | |
<text x="173.01" y="207.5" ></text> | |
</g> | |
<g > | |
<title>__GI___libc_malloc (17 samples, 0.02%)</title><rect x="78.7" y="181" width="0.3" height="15.0" fill="rgb(227,135,8)" rx="2" ry="2" /> | |
<text x="81.71" y="191.5" ></text> | |
</g> | |
<g > | |
<title>__GI___libc_free (13 samples, 0.02%)</title><rect x="195.6" y="165" width="0.2" height="15.0" fill="rgb(234,180,29)" rx="2" ry="2" /> | |
<text x="198.59" y="175.5" ></text> | |
</g> | |
<g > | |
<title>_int_malloc (259 samples, 0.37%)</title><rect x="1134.9" y="341" width="4.4" height="15.0" fill="rgb(253,98,3)" rx="2" ry="2" /> | |
<text x="1137.91" y="351.5" ></text> | |
</g> | |
<g > | |
<title>alloc::raw_vec::RawVec$LT$T$C$A$GT$::reserve::h500ef385b8747b29 (7 samples, 0.01%)</title><rect x="853.3" y="245" width="0.1" height="15.0" fill="rgb(252,192,6)" rx="2" ry="2" /> | |
<text x="856.28" y="255.5" ></text> | |
</g> | |
<g > | |
<title>perf_event_mmap (153 samples, 0.22%)</title><rect x="284.9" y="197" width="2.6" height="15.0" fill="rgb(254,166,16)" rx="2" ry="2" /> | |
<text x="287.90" y="207.5" ></text> | |
</g> | |
<g > | |
<title>sys_munmap (10 samples, 0.01%)</title><rect x="189.5" y="101" width="0.2" height="15.0" fill="rgb(225,205,18)" rx="2" ry="2" /> | |
<text x="192.49" y="111.5" ></text> | |
</g> | |
<g > | |
<title>cranelift_entity::list::EntityList$LT$T$GT$::push::h051541d55e7ee057 (7 samples, 0.01%)</title><rect x="1168.6" y="197" width="0.1" height="15.0" fill="rgb(254,48,44)" rx="2" ry="2" /> | |
<text x="1171.56" y="207.5" ></text> | |
</g> | |
<g > | |
<title>wasmer_runtime::compile_with_config::h3146f6a9cd30dfc8 (414 samples, 0.59%)</title><rect x="1169.5" y="437" width="6.9" height="15.0" fill="rgb(246,192,24)" rx="2" ry="2" /> | |
<text x="1172.47" y="447.5" ></text> | |
</g> | |
<g > | |
<title>core::ptr::real_drop_in_place::h73e5f742715a1243 (32 samples, 0.05%)</title><rect x="307.3" y="309" width="0.5" height="15.0" fill="rgb(222,98,21)" rx="2" ry="2" /> | |
<text x="310.30" y="319.5" ></text> | |
</g> | |
<g > | |
<title>__GI___libc_realloc (454 samples, 0.65%)</title><rect x="1035.2" y="341" width="7.7" height="15.0" fill="rgb(207,215,53)" rx="2" ry="2" /> | |
<text x="1038.22" y="351.5" ></text> | |
</g> | |
<g > | |
<title>alloc::sync::Arc$LT$T$GT$::drop_slow::h56d8944c190ba4ca (601 samples, 0.86%)</title><rect x="222.0" y="373" width="10.1" height="15.0" fill="rgb(210,175,3)" rx="2" ry="2" /> | |
<text x="224.98" y="383.5" ></text> | |
</g> | |
<g > | |
<title>core::ptr::real_drop_in_place::h767229c0557115cd (25 samples, 0.04%)</title><rect x="299.0" y="293" width="0.4" height="15.0" fill="rgb(221,228,39)" rx="2" ry="2" /> | |
<text x="301.98" y="303.5" ></text> | |
</g> | |
<g > | |
<title>std::time::Instant::now::h33d2ba6042def2d2 (7 samples, 0.01%)</title><rect x="155.1" y="197" width="0.1" height="15.0" fill="rgb(221,154,9)" rx="2" ry="2" /> | |
<text x="158.13" y="207.5" ></text> | |
</g> | |
<g > | |
<title>hashbrown::rustc_entry::_$LT$impl$u20$hashbrown..map..HashMap$LT$K$C$V$C$S$GT$$GT$::rustc_entry::h0c810357b190d293 (9 samples, 0.01%)</title><rect x="1171.0" y="277" width="0.1" height="15.0" fill="rgb(239,23,50)" rx="2" ry="2" /> | |
<text x="1173.98" y="287.5" ></text> | |
</g> | |
<g > | |
<title>alloc::raw_vec::RawVec$LT$T$C$A$GT$::reserve::h7f206f0262523e6d (36 samples, 0.05%)</title><rect x="808.6" y="277" width="0.6" height="15.0" fill="rgb(218,103,17)" rx="2" ry="2" /> | |
<text x="811.60" y="287.5" ></text> | |
</g> | |
<g > | |
<title>_int_realloc (8 samples, 0.01%)</title><rect x="141.8" y="149" width="0.1" height="15.0" fill="rgb(241,165,20)" rx="2" ry="2" /> | |
<text x="144.81" y="159.5" ></text> | |
</g> | |
<g > | |
<title>__libc_calloc (7 samples, 0.01%)</title><rect x="190.1" y="133" width="0.1" height="15.0" fill="rgb(232,171,10)" rx="2" ry="2" /> | |
<text x="193.09" y="143.5" ></text> | |
</g> | |
<g > | |
<title>cranelift_codegen::postopt::do_postopt::hd4075babc8e08dd8 (98 samples, 0.14%)</title><rect x="123.0" y="229" width="1.7" height="15.0" fill="rgb(238,7,30)" rx="2" ry="2" /> | |
<text x="126.04" y="239.5" ></text> | |
</g> | |
<g > | |
<title>cranelift_codegen::legalizer::expand_flags::hf22fb7652a0ec5c8 (30 samples, 0.04%)</title><rect x="89.8" y="165" width="0.5" height="15.0" fill="rgb(242,134,42)" rx="2" ry="2" /> | |
<text x="92.76" y="175.5" ></text> | |
</g> | |
<g > | |
<title>__perf_event__output_id_sample (8 samples, 0.01%)</title><rect x="286.8" y="133" width="0.1" height="15.0" fill="rgb(212,217,7)" rx="2" ry="2" /> | |
<text x="289.75" y="143.5" ></text> | |
</g> | |
<g > | |
<title>cranelift_codegen::context::Context::legalize::h3be573a3855dd690 (90 samples, 0.13%)</title><rect x="1153.3" y="293" width="1.5" height="15.0" fill="rgb(211,69,44)" rx="2" ry="2" /> | |
<text x="1156.29" y="303.5" ></text> | |
</g> | |
<g > | |
<title>__GI___libc_malloc (21 samples, 0.03%)</title><rect x="811.7" y="277" width="0.3" height="15.0" fill="rgb(227,197,6)" rx="2" ry="2" /> | |
<text x="814.66" y="287.5" ></text> | |
</g> | |
<g > | |
<title>__GI___clock_gettime (10 samples, 0.01%)</title><rect x="163.9" y="149" width="0.2" height="15.0" fill="rgb(225,106,0)" rx="2" ry="2" /> | |
<text x="166.94" y="159.5" ></text> | |
</g> | |
<g > | |
<title>__vdso_clock_gettime (6 samples, 0.01%)</title><rect x="121.7" y="133" width="0.1" height="15.0" fill="rgb(249,197,5)" rx="2" ry="2" /> | |
<text x="124.66" y="143.5" ></text> | |
</g> | |
<g > | |
<title>cranelift_codegen::regalloc::coloring::Context::add_fixed_output::hb558045f4344ebff (6 samples, 0.01%)</title><rect x="47.0" y="277" width="0.1" height="15.0" fill="rgb(237,118,47)" rx="2" ry="2" /> | |
<text x="50.01" y="287.5" ></text> | |
</g> | |
<g > | |
<title>malloc_consolidate (48 samples, 0.07%)</title><rect x="803.1" y="261" width="0.9" height="15.0" fill="rgb(223,172,44)" rx="2" ry="2" /> | |
<text x="806.15" y="271.5" ></text> | |
</g> | |
<g > | |
<title>__munmap (565 samples, 0.81%)</title><rect x="222.3" y="309" width="9.5" height="15.0" fill="rgb(228,20,30)" rx="2" ry="2" /> | |
<text x="225.35" y="319.5" ></text> | |
</g> | |
<g > | |
<title>do_page_fault (6 samples, 0.01%)</title><rect x="190.4" y="117" width="0.1" height="15.0" fill="rgb(215,167,10)" rx="2" ry="2" /> | |
<text x="193.41" y="127.5" ></text> | |
</g> | |
<g > | |
<title>core::fmt::write::h1f444f4312eb6c27 (13 samples, 0.02%)</title><rect x="871.3" y="277" width="0.3" height="15.0" fill="rgb(232,123,30)" rx="2" ry="2" /> | |
<text x="874.34" y="287.5" ></text> | |
</g> | |
<g > | |
<title>_ZN16cranelift_entity4list17ListPool$LT$T$GT$5alloc17h7031e3fd97879e16E.llvm.776987249141506950 (19 samples, 0.03%)</title><rect x="162.4" y="165" width="0.3" height="15.0" fill="rgb(246,20,3)" rx="2" ry="2" /> | |
<text x="165.41" y="175.5" ></text> | |
</g> | |
<g > | |
<title>std::time::Instant::now::h33d2ba6042def2d2 (15 samples, 0.02%)</title><rect x="98.7" y="197" width="0.3" height="15.0" fill="rgb(236,195,22)" rx="2" ry="2" /> | |
<text x="101.74" y="207.5" ></text> | |
</g> | |
<g > | |
<title>_ZN9hashbrown3raw17RawTable$LT$T$GT$14reserve_rehash17h949d57d1e07c193dE.llvm.16938716460618634628 (40 samples, 0.06%)</title><rect x="44.9" y="245" width="0.7" height="15.0" fill="rgb(212,146,48)" rx="2" ry="2" /> | |
<text x="47.93" y="255.5" ></text> | |
</g> | |
<g > | |
<title>__GI___clock_gettime (7 samples, 0.01%)</title><rect x="166.3" y="133" width="0.1" height="15.0" fill="rgb(236,127,47)" rx="2" ry="2" /> | |
<text x="169.33" y="143.5" ></text> | |
</g> | |
<g > | |
<title>cpumask_any_but (6 samples, 0.01%)</title><rect x="336.0" y="149" width="0.1" height="15.0" fill="rgb(239,46,5)" rx="2" ry="2" /> | |
<text x="338.98" y="159.5" ></text> | |
</g> | |
<g > | |
<title>std::sys::unix::time::inner::Instant::now::h23f1bea5949f1bbd (10 samples, 0.01%)</title><rect x="73.2" y="181" width="0.2" height="15.0" fill="rgb(220,222,14)" rx="2" ry="2" /> | |
<text x="76.23" y="191.5" ></text> | |
</g> | |
<g > | |
<title>cranelift_codegen::context::Context::compile_and_emit::h5499205207e7951f (147 samples, 0.21%)</title><rect x="1167.0" y="277" width="2.5" height="15.0" fill="rgb(253,141,26)" rx="2" ry="2" /> | |
<text x="1169.99" y="287.5" ></text> | |
</g> | |
<g > | |
<title>security_file_mprotect (8 samples, 0.01%)</title><rect x="347.5" y="213" width="0.1" height="15.0" fill="rgb(210,220,47)" rx="2" ry="2" /> | |
<text x="350.46" y="223.5" ></text> | |
</g> | |
<g > | |
<title>cranelift_codegen::isa::x86::abi::insert_common_prologue::hd2cca9ef0991829f (54 samples, 0.08%)</title><rect x="1156.3" y="245" width="1.0" height="15.0" fill="rgb(251,219,38)" rx="2" ry="2" /> | |
<text x="1159.35" y="255.5" ></text> | |
</g> | |
<g > | |
<title>__GI___libc_malloc (16 samples, 0.02%)</title><rect x="140.3" y="133" width="0.3" height="15.0" fill="rgb(210,132,8)" rx="2" ry="2" /> | |
<text x="143.35" y="143.5" ></text> | |
</g> | |
<g > | |
<title>std::sys::unix::time::inner::Instant::now::h23f1bea5949f1bbd (17 samples, 0.02%)</title><rect x="92.2" y="149" width="0.3" height="15.0" fill="rgb(241,218,39)" rx="2" ry="2" /> | |
<text x="95.20" y="159.5" ></text> | |
</g> | |
<g > | |
<title>__vdso_clock_gettime (17 samples, 0.02%)</title><rect x="60.5" y="229" width="0.3" height="15.0" fill="rgb(244,220,19)" rx="2" ry="2" /> | |
<text x="63.48" y="239.5" ></text> | |
</g> | |
<g > | |
<title>__rust_alloc (6 samples, 0.01%)</title><rect x="624.8" y="293" width="0.1" height="15.0" fill="rgb(207,182,5)" rx="2" ry="2" /> | |
<text x="627.77" y="303.5" ></text> | |
</g> | |
<g > | |
<title>_int_malloc (21 samples, 0.03%)</title><rect x="14.4" y="245" width="0.3" height="15.0" fill="rgb(224,61,30)" rx="2" ry="2" /> | |
<text x="17.36" y="255.5" ></text> | |
</g> | |
<g > | |
<title>_int_free (10 samples, 0.01%)</title><rect x="1178.2" y="229" width="0.1" height="15.0" fill="rgb(241,93,40)" rx="2" ry="2" /> | |
<text x="1181.16" y="239.5" ></text> | |
</g> | |
<g > | |
<title>_int_free (87 samples, 0.12%)</title><rect x="180.0" y="277" width="1.5" height="15.0" fill="rgb(218,125,52)" rx="2" ry="2" /> | |
<text x="183.03" y="287.5" ></text> | |
</g> | |
<g > | |
<title>_int_free (8 samples, 0.01%)</title><rect x="93.5" y="133" width="0.1" height="15.0" fill="rgb(226,111,5)" rx="2" ry="2" /> | |
<text x="96.48" y="143.5" ></text> | |
</g> | |
<g > | |
<title>std::sys::unix::time::inner::now::ha10452f37b2930c5 (11 samples, 0.02%)</title><rect x="175.4" y="181" width="0.2" height="15.0" fill="rgb(254,134,26)" rx="2" ry="2" /> | |
<text x="178.41" y="191.5" ></text> | |
</g> | |
<g > | |
<title>__GI___libc_malloc (14 samples, 0.02%)</title><rect x="81.1" y="181" width="0.2" height="15.0" fill="rgb(248,20,51)" rx="2" ry="2" /> | |
<text x="84.07" y="191.5" ></text> | |
</g> | |
<g > | |
<title>wasmer_runtime::compile_with_config::h3146f6a9cd30dfc8 (36,663 samples, 52.25%)</title><rect x="240.6" y="389" width="616.5" height="15.0" fill="rgb(231,9,2)" rx="2" ry="2" /> | |
<text x="243.59" y="399.5" >wasmer_runtime::compile_with_config::h3146f6a9cd30dfc8</text> | |
</g> | |
<g > | |
<title>std::sys::unix::time::inner::Instant::now::h23f1bea5949f1bbd (9 samples, 0.01%)</title><rect x="130.1" y="149" width="0.1" height="15.0" fill="rgb(237,89,40)" rx="2" ry="2" /> | |
<text x="133.06" y="159.5" ></text> | |
</g> | |
<g > | |
<title>cranelift_codegen::regalloc::pressure::Pressure::take_transient::h55ed3b6faf9ff3f9 (7 samples, 0.01%)</title><rect x="60.0" y="277" width="0.1" height="15.0" fill="rgb(215,52,37)" rx="2" ry="2" /> | |
<text x="63.01" y="287.5" ></text> | |
</g> | |
<g > | |
<title>core::ops::function::impls::_$LT$impl$u20$core..ops..function..FnMut$LT$A$GT$$u20$for$u20$$RF$F$GT$::call_mut::he4be4d24cfdada46 (7 samples, 0.01%)</title><rect x="176.1" y="277" width="0.1" height="15.0" fill="rgb(242,64,51)" rx="2" ry="2" /> | |
<text x="179.08" y="287.5" ></text> | |
</g> | |
<g > | |
<title>cranelift_codegen::dominator_tree::DominatorTreePreorder::compute::hb821b7ecbf347c37 (10 samples, 0.01%)</title><rect x="1176.8" y="309" width="0.2" height="15.0" fill="rgb(241,96,40)" rx="2" ry="2" /> | |
<text x="1179.82" y="319.5" ></text> | |
</g> | |
<g > | |
<title>__GI___libc_free (12 samples, 0.02%)</title><rect x="252.9" y="309" width="0.2" height="15.0" fill="rgb(230,121,3)" rx="2" ry="2" /> | |
<text x="255.87" y="319.5" ></text> | |
</g> | |
<g > | |
<title>__vdso_clock_gettime (7 samples, 0.01%)</title><rect x="130.1" y="101" width="0.1" height="15.0" fill="rgb(234,21,43)" rx="2" ry="2" /> | |
<text x="133.09" y="111.5" ></text> | |
</g> | |
<g > | |
<title>[[vdso]] (6 samples, 0.01%)</title><rect x="27.8" y="197" width="0.1" height="15.0" fill="rgb(249,50,40)" rx="2" ry="2" /> | |
<text x="30.76" y="207.5" ></text> | |
</g> | |
<g > | |
<title>cranelift_codegen::regalloc::reload::Reload::run::h05729139e9b4ae44 (281 samples, 0.40%)</title><rect x="52.8" y="293" width="4.7" height="15.0" fill="rgb(234,21,27)" rx="2" ry="2" /> | |
<text x="55.82" y="303.5" ></text> | |
</g> | |
<g > | |
<title>hashbrown::raw::RawTable$LT$T$GT$::try_with_capacity::h7a6e6bae489d4fe9 (9 samples, 0.01%)</title><rect x="1171.0" y="245" width="0.1" height="15.0" fill="rgb(232,20,37)" rx="2" ry="2" /> | |
<text x="1173.98" y="255.5" ></text> | |
</g> | |
<g > | |
<title>_$LT$cranelift_codegen..timing..details..TimingToken$u20$as$u20$core..ops..drop..Drop$GT$::drop::h1b19c2a93ee0a091 (30 samples, 0.04%)</title><rect x="113.9" y="213" width="0.5" height="15.0" fill="rgb(230,71,8)" rx="2" ry="2" /> | |
<text x="116.93" y="223.5" ></text> | |
</g> | |
<g > | |
<title>__memcpy_avx_unaligned (6 samples, 0.01%)</title><rect x="812.9" y="277" width="0.1" height="15.0" fill="rgb(236,40,26)" rx="2" ry="2" /> | |
<text x="815.92" y="287.5" ></text> | |
</g> | |
<g > | |
<title>do_mprotect_pkey (492 samples, 0.70%)</title><rect x="262.0" y="229" width="8.3" height="15.0" fill="rgb(207,187,11)" rx="2" ry="2" /> | |
<text x="265.00" y="239.5" ></text> | |
</g> | |
<g > | |
<title>cranelift_codegen::isa::TargetIsa::encode::h3618ddf6ad568ce7 (11 samples, 0.02%)</title><rect x="141.4" y="165" width="0.2" height="15.0" fill="rgb(230,11,46)" rx="2" ry="2" /> | |
<text x="144.44" y="175.5" ></text> | |
</g> | |
<g > | |
<title>uncharge_batch (18 samples, 0.03%)</title><rect x="235.2" y="133" width="0.3" height="15.0" fill="rgb(208,183,54)" rx="2" ry="2" /> | |
<text x="238.18" y="143.5" ></text> | |
</g> | |
<g > | |
<title>_ZN3std10sys_common9backtrace28__rust_begin_short_backtrace17ha8f073e9b0fe5d28E.llvm.8055091970093994922 (41 samples, 0.06%)</title><rect x="188.3" y="293" width="0.7" height="15.0" fill="rgb(236,75,14)" rx="2" ry="2" /> | |
<text x="191.34" y="303.5" ></text> | |
</g> | |
<g > | |
<title>malloc_printerr (14 samples, 0.02%)</title><rect x="1095.5" y="309" width="0.2" height="15.0" fill="rgb(245,177,41)" rx="2" ry="2" /> | |
<text x="1098.46" y="319.5" ></text> | |
</g> | |
<g > | |
<title>__vdso_clock_gettime (6 samples, 0.01%)</title><rect x="81.0" y="101" width="0.1" height="15.0" fill="rgb(207,94,26)" rx="2" ry="2" /> | |
<text x="83.97" y="111.5" ></text> | |
</g> | |
<g > | |
<title>perf_iterate_ctx (124 samples, 0.18%)</title><rect x="266.8" y="165" width="2.1" height="15.0" fill="rgb(239,6,16)" rx="2" ry="2" /> | |
<text x="269.79" y="175.5" ></text> | |
</g> | |
<g > | |
<title>__rust_dealloc (12 samples, 0.02%)</title><rect x="513.3" y="261" width="0.2" height="15.0" fill="rgb(216,186,31)" rx="2" ry="2" /> | |
<text x="516.28" y="271.5" ></text> | |
</g> | |
<g > | |
<title>__GI___libc_malloc (13 samples, 0.02%)</title><rect x="45.6" y="261" width="0.3" height="15.0" fill="rgb(248,125,50)" rx="2" ry="2" /> | |
<text x="48.63" y="271.5" ></text> | |
</g> | |
<g > | |
<title>__GI___libc_realloc (7 samples, 0.01%)</title><rect x="1168.7" y="149" width="0.2" height="15.0" fill="rgb(233,151,1)" rx="2" ry="2" /> | |
<text x="1171.74" y="159.5" ></text> | |
</g> | |
<g > | |
<title>cranelift_codegen::regalloc::live_value_tracker::LiveValueTracker::ebb_top::hfe56a550654953ca (12 samples, 0.02%)</title><rect x="59.8" y="277" width="0.2" height="15.0" fill="rgb(231,222,9)" rx="2" ry="2" /> | |
<text x="62.76" y="287.5" ></text> | |
</g> | |
<g > | |
<title>__rdl_alloc (8 samples, 0.01%)</title><rect x="734.3" y="325" width="0.1" height="15.0" fill="rgb(245,104,36)" rx="2" ry="2" /> | |
<text x="737.28" y="335.5" ></text> | |
</g> | |
<g > | |
<title>std::time::Instant::elapsed::h8e307314b2acf9be (12 samples, 0.02%)</title><rect x="68.0" y="229" width="0.2" height="15.0" fill="rgb(218,85,31)" rx="2" ry="2" /> | |
<text x="70.98" y="239.5" ></text> | |
</g> | |
<g > | |
<title>__GI___libc_malloc (13 samples, 0.02%)</title><rect x="63.6" y="229" width="0.2" height="15.0" fill="rgb(232,41,16)" rx="2" ry="2" /> | |
<text x="66.58" y="239.5" ></text> | |
</g> | |
<g > | |
<title>__GI___clock_gettime (11 samples, 0.02%)</title><rect x="50.4" y="197" width="0.2" height="15.0" fill="rgb(238,202,39)" rx="2" ry="2" /> | |
<text x="53.39" y="207.5" ></text> | |
</g> | |
<g > | |
<title>__GI___libc_malloc (11 samples, 0.02%)</title><rect x="101.4" y="133" width="0.2" height="15.0" fill="rgb(243,138,10)" rx="2" ry="2" /> | |
<text x="104.45" y="143.5" ></text> | |
</g> | |
<g > | |
<title>cranelift_codegen::ir::dfg::DataFlowGraph::append_result::h44f9432a950b5ad1 (14 samples, 0.02%)</title><rect x="95.7" y="133" width="0.3" height="15.0" fill="rgb(206,193,22)" rx="2" ry="2" /> | |
<text x="98.75" y="143.5" ></text> | |
</g> | |
<g > | |
<title>alloc::raw_vec::RawVec$LT$T$C$A$GT$::reserve::h86648d6f1470c78b (11 samples, 0.02%)</title><rect x="193.9" y="149" width="0.2" height="15.0" fill="rgb(208,100,33)" rx="2" ry="2" /> | |
<text x="196.94" y="159.5" ></text> | |
</g> | |
<g > | |
<title>_$LT$cranelift_codegen..isa..x86..Isa$u20$as$u20$cranelift_codegen..isa..TargetIsa$GT$::allocatable_registers::h2ba12d186321dd42 (9 samples, 0.01%)</title><rect x="158.0" y="197" width="0.1" height="15.0" fill="rgb(217,136,14)" rx="2" ry="2" /> | |
<text x="160.97" y="207.5" ></text> | |
</g> | |
<g > | |
<title>alloc::raw_vec::RawVec$LT$T$C$A$GT$::reserve::h5333cea73f0fa9cd (125 samples, 0.18%)</title><rect x="250.4" y="325" width="2.1" height="15.0" fill="rgb(239,192,1)" rx="2" ry="2" /> | |
<text x="253.36" y="335.5" ></text> | |
</g> | |
<g > | |
<title>indexmap::map::IndexMap$LT$K$C$V$C$S$GT$::get::hc0ee14fbd61fce30 (24 samples, 0.03%)</title><rect x="871.7" y="373" width="0.4" height="15.0" fill="rgb(233,159,47)" rx="2" ry="2" /> | |
<text x="874.68" y="383.5" ></text> | |
</g> | |
<g > | |
<title>_int_free (6 samples, 0.01%)</title><rect x="321.0" y="213" width="0.1" height="15.0" fill="rgb(236,117,21)" rx="2" ry="2" /> | |
<text x="323.98" y="223.5" ></text> | |
</g> | |
<g > | |
<title>__GI___libc_malloc (511 samples, 0.73%)</title><rect x="667.9" y="277" width="8.6" height="15.0" fill="rgb(225,98,51)" rx="2" ry="2" /> | |
<text x="670.87" y="287.5" ></text> | |
</g> | |
<g > | |
<title>alloc::raw_vec::RawVec$LT$T$C$A$GT$::reserve::h0c445b41f7c28667 (6 samples, 0.01%)</title><rect x="1180.2" y="293" width="0.1" height="15.0" fill="rgb(207,54,27)" rx="2" ry="2" /> | |
<text x="1183.16" y="303.5" ></text> | |
</g> | |
<g > | |
<title>wasmparser::parser::Parser::read_next_section::h4d9786321eb758cf (27 samples, 0.04%)</title><rect x="193.0" y="133" width="0.5" height="15.0" fill="rgb(237,116,7)" rx="2" ry="2" /> | |
<text x="196.03" y="143.5" ></text> | |
</g> | |
<g > | |
<title>cranelift_entity::list::EntityList$LT$T$GT$::push::h051541d55e7ee057 (8 samples, 0.01%)</title><rect x="20.2" y="197" width="0.2" height="15.0" fill="rgb(223,134,49)" rx="2" ry="2" /> | |
<text x="23.22" y="207.5" ></text> | |
</g> | |
<g > | |
<title>__GI___clock_gettime (7 samples, 0.01%)</title><rect x="38.8" y="245" width="0.1" height="15.0" fill="rgb(220,28,8)" rx="2" ry="2" /> | |
<text x="41.81" y="255.5" ></text> | |
</g> | |
<g > | |
<title>alloc::raw_vec::RawVec$LT$T$C$A$GT$::reserve::h4284e17124a0ec35 (12 samples, 0.02%)</title><rect x="809.8" y="293" width="0.2" height="15.0" fill="rgb(247,183,11)" rx="2" ry="2" /> | |
<text x="812.76" y="303.5" ></text> | |
</g> | |
<g > | |
<title>__vdso_clock_gettime (8 samples, 0.01%)</title><rect x="174.1" y="117" width="0.2" height="15.0" fill="rgb(242,162,11)" rx="2" ry="2" /> | |
<text x="177.15" y="127.5" ></text> | |
</g> | |
<g > | |
<title>_int_realloc (9 samples, 0.01%)</title><rect x="39.4" y="261" width="0.1" height="15.0" fill="rgb(206,105,27)" rx="2" ry="2" /> | |
<text x="42.40" y="271.5" ></text> | |
</g> | |
<g > | |
<title>__memcpy_avx_unaligned (7 samples, 0.01%)</title><rect x="66.5" y="245" width="0.2" height="15.0" fill="rgb(224,181,1)" rx="2" ry="2" /> | |
<text x="69.54" 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::h3e9fa4d2f81daded (11 samples, 0.02%)</title><rect x="877.4" y="309" width="0.2" height="15.0" fill="rgb(236,11,14)" rx="2" ry="2" /> | |
<text x="880.38" y="319.5" ></text> | |
</g> | |
<g > | |
<title>std::panicking::try::hab539b2d1255d635 (736 samples, 1.05%)</title><rect x="189.1" y="357" width="12.3" height="15.0" fill="rgb(243,202,41)" rx="2" ry="2" /> | |
<text x="192.07" y="367.5" ></text> | |
</g> | |
<g > | |
<title>kmem_cache_alloc (10 samples, 0.01%)</title><rect x="224.2" y="181" width="0.2" height="15.0" fill="rgb(251,90,16)" rx="2" ry="2" /> | |
<text x="227.23" y="191.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 (17 samples, 0.02%)</title><rect x="178.7" y="309" width="0.3" height="15.0" fill="rgb(218,170,20)" rx="2" ry="2" /> | |
<text x="181.72" y="319.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 (6,849 samples, 9.76%)</title><rect x="61.0" y="325" width="115.2" height="15.0" fill="rgb(236,9,43)" rx="2" ry="2" /> | |
<text x="64.02" y="335.5" >_$LT$rayon..it..</text> | |
</g> | |
<g > | |
<title>cranelift_codegen::isa::x86::enc_tables::recipe_predicate_rexop1u_id::h5e3c497f9d753150 (6 samples, 0.01%)</title><rect x="30.7" y="245" width="0.1" height="15.0" fill="rgb(239,107,11)" rx="2" ry="2" /> | |
<text x="33.65" y="255.5" ></text> | |
</g> | |
<g > | |
<title>cranelift_codegen::topo_order::TopoOrder::next::h3ea49efe09e3a2f0 (6 samples, 0.01%)</title><rect x="60.1" y="277" width="0.1" height="15.0" fill="rgb(247,194,48)" rx="2" ry="2" /> | |
<text x="63.15" y="287.5" ></text> | |
</g> | |
<g > | |
<title>memcpy_erms (6 samples, 0.01%)</title><rect x="268.1" y="117" width="0.1" height="15.0" fill="rgb(208,197,0)" rx="2" ry="2" /> | |
<text x="271.05" y="127.5" ></text> | |
</g> | |
<g > | |
<title>cranelift_codegen::context::Context::relax_branches::hbf7d0399633288d4 (280 samples, 0.40%)</title><rect x="23.2" y="309" width="4.7" height="15.0" fill="rgb(213,184,16)" rx="2" ry="2" /> | |
<text x="26.15" y="319.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.01%)</title><rect x="1052.2" y="373" width="0.1" height="15.0" fill="rgb(247,226,44)" rx="2" ry="2" /> | |
<text x="1055.15" y="383.5" ></text> | |
</g> | |
<g > | |
<title>std::time::Instant::elapsed::h8e307314b2acf9be (22 samples, 0.03%)</title><rect x="92.1" y="181" width="0.4" height="15.0" fill="rgb(228,58,19)" rx="2" ry="2" /> | |
<text x="95.12" y="191.5" ></text> | |
</g> | |
<g > | |
<title>__GI___clock_gettime (8 samples, 0.01%)</title><rect x="119.7" y="133" width="0.2" height="15.0" fill="rgb(246,21,34)" rx="2" ry="2" /> | |
<text x="122.75" y="143.5" ></text> | |
</g> | |
<g > | |
<title>cranelift_codegen::ir::dfg::DataFlowGraph::append_result::h44f9432a950b5ad1 (6 samples, 0.01%)</title><rect x="54.9" y="245" width="0.1" height="15.0" fill="rgb(222,138,53)" rx="2" ry="2" /> | |
<text x="57.88" y="255.5" ></text> | |
</g> | |
<g > | |
<title>__GI___libc_malloc (9 samples, 0.01%)</title><rect x="808.7" y="261" width="0.1" height="15.0" fill="rgb(218,58,17)" rx="2" ry="2" /> | |
<text x="811.68" 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.01%)</title><rect x="1165.7" y="277" width="0.2" height="15.0" fill="rgb(225,89,46)" rx="2" ry="2" /> | |
<text x="1168.70" y="287.5" ></text> | |
</g> | |
<g > | |
<title>_ZN78_$LT$parity_wasm..elements..ops..Instruction$u20$as$u20$core..clone..Clone$GT$5clone17hb3781841ab52f338E.llvm.462486280254305087 (31 samples, 0.04%)</title><rect x="1146.0" y="373" width="0.6" height="15.0" fill="rgb(206,100,47)" rx="2" ry="2" /> | |
<text x="1149.04" y="383.5" ></text> | |
</g> | |
<g > | |
<title>_$LT$wasmparser..validator..ValidatingParser$u20$as$u20$wasmparser..parser..WasmDecoder$GT$::read::h573837335870e77b (20,024 samples, 28.54%)</title><rect x="374.8" y="325" width="336.8" height="15.0" fill="rgb(232,65,49)" rx="2" ry="2" /> | |
<text x="377.82" y="335.5" >_$LT$wasmparser..validator..ValidatingParser$..</text> | |
</g> | |
<g > | |
<title>_$LT$rand..distributions..uniform..UniformInt$LT$i32$GT$$u20$as$u20$rand..distributions..uniform..UniformSampler$GT$::sample_single::h414accef804fe040 (6 samples, 0.01%)</title><rect x="189.1" y="245" width="0.1" height="15.0" fill="rgb(226,217,46)" rx="2" ry="2" /> | |
<text x="192.13" 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$::next_function::hbef1985a853e1f1c (923 samples, 1.32%)</title><rect x="798.5" y="325" width="15.5" height="15.0" fill="rgb(252,200,44)" rx="2" ry="2" /> | |
<text x="801.49" 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 (13 samples, 0.02%)</title><rect x="1024.9" y="341" width="0.2" height="15.0" fill="rgb(250,45,26)" rx="2" ry="2" /> | |
<text x="1027.93" y="351.5" ></text> | |
</g> | |
<g > | |
<title>std::sys::unix::time::inner::now::ha10452f37b2930c5 (11 samples, 0.02%)</title><rect x="68.0" y="181" width="0.2" height="15.0" fill="rgb(234,134,25)" rx="2" ry="2" /> | |
<text x="71.00" y="191.5" ></text> | |
</g> | |
<g > | |
<title>__GI___libc_malloc (13 samples, 0.02%)</title><rect x="807.4" y="277" width="0.2" height="15.0" fill="rgb(222,13,21)" rx="2" ry="2" /> | |
<text x="810.40" y="287.5" ></text> | |
</g> | |
<g > | |
<title>cranelift_codegen::ir::instructions::InstructionData::arguments::h70ecdef19e20b02a (7 samples, 0.01%)</title><rect x="50.8" y="277" width="0.1" height="15.0" fill="rgb(246,24,52)" rx="2" ry="2" /> | |
<text x="53.80" y="287.5" ></text> | |
</g> | |
<g > | |
<title>_int_realloc (16 samples, 0.02%)</title><rect x="806.3" y="245" width="0.3" height="15.0" fill="rgb(228,156,14)" rx="2" ry="2" /> | |
<text x="809.34" y="255.5" ></text> | |
</g> | |
<g > | |
<title>__memcpy_avx_unaligned (27 samples, 0.04%)</title><rect x="802.1" y="309" width="0.5" height="15.0" fill="rgb(205,162,16)" rx="2" ry="2" /> | |
<text x="805.10" y="319.5" ></text> | |
</g> | |
<g > | |
<title>__vdso_clock_gettime (9 samples, 0.01%)</title><rect x="37.6" y="197" width="0.2" height="15.0" fill="rgb(223,84,47)" rx="2" ry="2" /> | |
<text x="40.65" y="207.5" ></text> | |
</g> | |
<g > | |
<title>std::sys::unix::time::inner::now::ha10452f37b2930c5 (9 samples, 0.01%)</title><rect x="38.2" y="245" width="0.2" height="15.0" fill="rgb(249,205,26)" rx="2" ry="2" /> | |
<text x="41.24" y="255.5" ></text> | |
</g> | |
<g > | |
<title>_int_malloc (270 samples, 0.38%)</title><rect x="1091.2" y="325" width="4.5" height="15.0" fill="rgb(252,128,43)" rx="2" ry="2" /> | |
<text x="1094.15" y="335.5" ></text> | |
</g> | |
<g > | |
<title>cranelift_codegen::ir::dfg::DataFlowGraph::value_def::h33b3e43a06ac9a1f (8 samples, 0.01%)</title><rect x="1167.8" y="181" width="0.1" height="15.0" fill="rgb(233,158,33)" rx="2" ry="2" /> | |
<text x="1170.80" y="191.5" ></text> | |
</g> | |
<g > | |
<title>alloc::raw_vec::RawVec$LT$T$C$A$GT$::reserve::h0c445b41f7c28667 (18 samples, 0.03%)</title><rect x="131.1" y="181" width="0.3" height="15.0" fill="rgb(243,5,13)" rx="2" ry="2" /> | |
<text x="134.08" y="191.5" ></text> | |
</g> | |
<g > | |
<title>alloc::raw_vec::RawVec$LT$T$C$A$GT$::reserve::h52417e3a50e4e754 (18 samples, 0.03%)</title><rect x="322.3" y="261" width="0.3" height="15.0" fill="rgb(206,38,28)" rx="2" ry="2" /> | |
<text x="325.34" y="271.5" ></text> | |
</g> | |
<g > | |
<title>[[vdso]] (6 samples, 0.01%)</title><rect x="174.2" y="101" width="0.1" height="15.0" fill="rgb(250,186,9)" rx="2" ry="2" /> | |
<text x="177.18" y="111.5" ></text> | |
</g> | |
<g > | |
<title>__GI___pthread_rwlock_rdlock (113 samples, 0.16%)</title><rect x="357.5" y="341" width="1.9" height="15.0" fill="rgb(240,168,3)" rx="2" ry="2" /> | |
<text x="360.50" y="351.5" ></text> | |
</g> | |
<g > | |
<title>__GI___clock_gettime (11 samples, 0.02%)</title><rect x="174.1" y="133" width="0.2" height="15.0" fill="rgb(214,18,45)" rx="2" ry="2" /> | |
<text x="177.10" y="143.5" ></text> | |
</g> | |
<g > | |
<title>__GI___libc_free (772 samples, 1.10%)</title><rect x="711.6" y="325" width="12.9" height="15.0" fill="rgb(230,74,37)" rx="2" ry="2" /> | |
<text x="714.56" y="335.5" ></text> | |
</g> | |
<g > | |
<title>_int_free (43 samples, 0.06%)</title><rect x="248.2" y="309" width="0.7" height="15.0" fill="rgb(222,217,21)" rx="2" ry="2" /> | |
<text x="251.18" y="319.5" ></text> | |
</g> | |
<g > | |
<title>cranelift_codegen::simple_gvn::do_simple_gvn::h76b7a5cd0deccebd (107 samples, 0.15%)</title><rect x="1163.6" y="293" width="1.8" height="15.0" fill="rgb(221,117,23)" rx="2" ry="2" /> | |
<text x="1166.61" y="303.5" ></text> | |
</g> | |
<g > | |
<title>c2_chacha::guts::refill_wide::impl_avx2::hcbb75f7591de3cb9 (97 samples, 0.14%)</title><rect x="207.1" y="373" width="1.6" height="15.0" fill="rgb(219,113,49)" rx="2" ry="2" /> | |
<text x="210.11" y="383.5" ></text> | |
</g> | |
<g > | |
<title>cranelift_codegen::context::Context::new::hb2c1be51d6979949 (95 samples, 0.14%)</title><rect x="186.7" y="389" width="1.6" height="15.0" fill="rgb(236,206,42)" rx="2" ry="2" /> | |
<text x="189.74" y="399.5" ></text> | |
</g> | |
<g > | |
<title>_int_realloc (11 samples, 0.02%)</title><rect x="322.4" y="229" width="0.2" height="15.0" fill="rgb(240,131,35)" rx="2" ry="2" /> | |
<text x="325.42" y="239.5" ></text> | |
</g> | |
<g > | |
<title>cranelift_codegen::isa::x86::abi::legalize_signature::hdcf9074841354b32 (68 samples, 0.10%)</title><rect x="15.4" y="261" width="1.2" height="15.0" fill="rgb(213,8,44)" rx="2" ry="2" /> | |
<text x="18.42" y="271.5" ></text> | |
</g> | |
<g > | |
<title>__GI___libc_malloc (8 samples, 0.01%)</title><rect x="1176.6" y="245" width="0.1" height="15.0" fill="rgb(254,69,11)" rx="2" ry="2" /> | |
<text x="1179.60" y="255.5" ></text> | |
</g> | |
<g > | |
<title>_$LT$cranelift_codegen..timing..details..TimingToken$u20$as$u20$core..ops..drop..Drop$GT$::drop::h1b19c2a93ee0a091 (12 samples, 0.02%)</title><rect x="100.9" y="197" width="0.2" height="15.0" fill="rgb(223,177,20)" rx="2" ry="2" /> | |
<text x="103.91" y="207.5" ></text> | |
</g> | |
<g > | |
<title>cranelift_codegen::flowgraph::ControlFlowGraph::compute::hdce42828fa3e59cb (149 samples, 0.21%)</title><rect x="117.0" y="229" width="2.5" height="15.0" fill="rgb(231,198,30)" rx="2" ry="2" /> | |
<text x="119.99" y="239.5" ></text> | |
</g> | |
<g > | |
<title>cranelift_codegen::legalizer::legalize_inst::h3c0aa7980e624bbf (408 samples, 0.58%)</title><rect x="84.6" y="197" width="6.9" height="15.0" fill="rgb(233,158,19)" rx="2" ry="2" /> | |
<text x="87.60" y="207.5" ></text> | |
</g> | |
<g > | |
<title>_int_malloc (6 samples, 0.01%)</title><rect x="112.3" y="197" width="0.1" height="15.0" fill="rgb(210,189,31)" rx="2" ry="2" /> | |
<text x="115.35" y="207.5" ></text> | |
</g> | |
<g > | |
<title>_int_malloc (7 samples, 0.01%)</title><rect x="140.5" y="117" width="0.1" height="15.0" fill="rgb(223,131,2)" rx="2" ry="2" /> | |
<text x="143.50" y="127.5" ></text> | |
</g> | |
<g > | |
<title>hashbrown::raw::RawTable$LT$T$GT$::try_with_capacity::h7a6e6bae489d4fe9 (13 samples, 0.02%)</title><rect x="71.8" y="165" width="0.3" height="15.0" fill="rgb(244,203,9)" rx="2" ry="2" /> | |
<text x="74.84" y="175.5" ></text> | |
</g> | |
<g > | |
<title>__perf_event_header__init_id (6 samples, 0.01%)</title><rect x="352.9" y="101" width="0.1" height="15.0" fill="rgb(247,4,40)" rx="2" ry="2" /> | |
<text x="355.93" y="111.5" ></text> | |
</g> | |
<g > | |
<title>wasmer_runtime_core::sys::unix::memory::Memory::with_size::h99a15e322ed7dfca (9 samples, 0.01%)</title><rect x="190.7" y="149" width="0.1" height="15.0" fill="rgb(254,177,32)" rx="2" ry="2" /> | |
<text x="193.66" y="159.5" ></text> | |
</g> | |
<g > | |
<title>__vma_rb_erase (8 samples, 0.01%)</title><rect x="233.3" y="245" width="0.2" height="15.0" fill="rgb(243,83,39)" rx="2" ry="2" /> | |
<text x="236.33" y="255.5" ></text> | |
</g> | |
<g > | |
<title>change_protection_range (85 samples, 0.12%)</title><rect x="262.4" y="181" width="1.4" height="15.0" fill="rgb(206,172,10)" rx="2" ry="2" /> | |
<text x="265.35" y="191.5" ></text> | |
</g> | |
<g > | |
<title>__GI___libc_malloc (8 samples, 0.01%)</title><rect x="194.9" y="117" width="0.1" height="15.0" fill="rgb(249,47,29)" rx="2" ry="2" /> | |
<text x="197.88" y="127.5" ></text> | |
</g> | |
<g > | |
<title>_$LT$cranelift_codegen..timing..details..TimingToken$u20$as$u20$core..ops..drop..Drop$GT$::drop::h1b19c2a93ee0a091 (13 samples, 0.02%)</title><rect x="68.0" y="245" width="0.2" height="15.0" fill="rgb(224,227,29)" rx="2" ry="2" /> | |
<text x="70.97" y="255.5" ></text> | |
</g> | |
<g > | |
<title>alloc::raw_vec::RawVec$LT$T$C$A$GT$::reserve::h5e34cfad90a6ce21 (9 samples, 0.01%)</title><rect x="57.3" y="261" width="0.2" height="15.0" fill="rgb(246,184,10)" rx="2" ry="2" /> | |
<text x="60.32" y="271.5" ></text> | |
</g> | |
<g > | |
<title>core::ptr::real_drop_in_place::h767229c0557115cd (68 samples, 0.10%)</title><rect x="181.6" y="293" width="1.1" height="15.0" fill="rgb(207,56,28)" rx="2" ry="2" /> | |
<text x="184.56" y="303.5" ></text> | |
</g> | |
<g > | |
<title>cranelift_bforest::set::Set$LT$K$GT$::insert::h750422a26fd1bdc6 (6 samples, 0.01%)</title><rect x="121.5" y="165" width="0.1" height="15.0" fill="rgb(215,161,30)" rx="2" ry="2" /> | |
<text x="124.46" y="175.5" ></text> | |
</g> | |
<g > | |
<title>_int_free (7 samples, 0.01%)</title><rect x="254.6" y="293" width="0.1" height="15.0" fill="rgb(233,12,22)" rx="2" ry="2" /> | |
<text x="257.57" y="303.5" ></text> | |
</g> | |
<g > | |
<title>std::sys::unix::time::inner::now::ha10452f37b2930c5 (8 samples, 0.01%)</title><rect x="1158.7" y="245" width="0.2" height="15.0" fill="rgb(228,155,27)" rx="2" ry="2" /> | |
<text x="1161.74" y="255.5" ></text> | |
</g> | |
<g > | |
<title>alloc::raw_vec::RawVec$LT$T$C$A$GT$::reserve::h02503ac3a628c0ac (109 samples, 0.16%)</title><rect x="149.0" y="165" width="1.9" height="15.0" fill="rgb(229,182,40)" rx="2" ry="2" /> | |
<text x="152.02" y="175.5" ></text> | |
</g> | |
<g > | |
<title>__GI___libc_malloc (10 samples, 0.01%)</title><rect x="254.3" y="293" width="0.1" height="15.0" fill="rgb(235,70,12)" rx="2" ry="2" /> | |
<text x="257.26" y="303.5" ></text> | |
</g> | |
<g > | |
<title>cranelift_codegen::regalloc::context::Context::run::hacf4bbc8f4d0071a (1,299 samples, 1.85%)</title><rect x="38.9" y="309" width="21.9" height="15.0" fill="rgb(221,113,47)" rx="2" ry="2" /> | |
<text x="41.92" y="319.5" >c..</text> | |
</g> | |
<g > | |
<title>wasmer_runtime_core::sys::unix::memory::Memory::protect::hc4dfd0a2abe36912 (6 samples, 0.01%)</title><rect x="190.6" y="149" width="0.1" height="15.0" fill="rgb(247,1,28)" rx="2" ry="2" /> | |
<text x="193.56" y="159.5" ></text> | |
</g> | |
<g > | |
<title>cranelift_codegen::ir::dfg::DataFlowGraph::make_inst_results::hc774d04d1992dff6 (10 samples, 0.01%)</title><rect x="54.8" y="261" width="0.2" height="15.0" fill="rgb(235,138,24)" rx="2" ry="2" /> | |
<text x="57.82" y="271.5" ></text> | |
</g> | |
<g > | |
<title>parity_wasm::elements::func::FuncBody::new::h9993762f12bb7897 (21 samples, 0.03%)</title><rect x="1096.8" y="373" width="0.4" height="15.0" fill="rgb(206,181,45)" rx="2" ry="2" /> | |
<text x="1099.84" y="383.5" ></text> | |
</g> | |
<g > | |
<title>alloc::vec::Vec$LT$T$GT$::resize::h32a2d4ba425bc523 (21 samples, 0.03%)</title><rect x="14.4" y="277" width="0.3" height="15.0" fill="rgb(230,161,41)" rx="2" ry="2" /> | |
<text x="17.36" y="287.5" ></text> | |
</g> | |
<g > | |
<title>_$LT$cranelift_codegen..timing..details..TimingToken$u20$as$u20$core..ops..drop..Drop$GT$::drop::h1b19c2a93ee0a091 (17 samples, 0.02%)</title><rect x="80.8" y="197" width="0.3" height="15.0" fill="rgb(244,95,44)" rx="2" ry="2" /> | |
<text x="83.78" y="207.5" ></text> | |
</g> | |
<g > | |
<title>_ZN17cranelift_codegen9flowgraph16ControlFlowGraph11compute_ebb17he662711fe9d10399E.llvm.15195122248153170019 (97 samples, 0.14%)</title><rect x="117.6" y="213" width="1.6" height="15.0" fill="rgb(241,195,24)" rx="2" ry="2" /> | |
<text x="120.56" y="223.5" ></text> | |
</g> | |
<g > | |
<title>_int_free (15 samples, 0.02%)</title><rect x="221.7" y="357" width="0.3" height="15.0" fill="rgb(254,3,50)" rx="2" ry="2" /> | |
<text x="224.72" y="367.5" ></text> | |
</g> | |
<g > | |
<title>__GI___clock_gettime (7 samples, 0.01%)</title><rect x="112.9" y="165" width="0.1" height="15.0" fill="rgb(214,0,24)" rx="2" ry="2" /> | |
<text x="115.90" y="175.5" ></text> | |
</g> | |
<g > | |
<title>__sigjmp_save (540 samples, 0.77%)</title><rect x="1180.9" y="437" width="9.1" height="15.0" fill="rgb(245,52,2)" rx="2" ry="2" /> | |
<text x="1183.90" y="447.5" ></text> | |
</g> | |
<g > | |
<title>std::sys::unix::time::inner::now::ha10452f37b2930c5 (7 samples, 0.01%)</title><rect x="112.9" y="181" width="0.1" height="15.0" fill="rgb(208,56,40)" rx="2" ry="2" /> | |
<text x="115.90" y="191.5" ></text> | |
</g> | |
<g > | |
<title>core::slice::_$LT$impl$u20$$u5b$T$u5d$$GT$::copy_from_slice::hf2a016039d5668ca (22 samples, 0.03%)</title><rect x="1053.3" y="389" width="0.4" height="15.0" fill="rgb(246,85,18)" rx="2" ry="2" /> | |
<text x="1056.31" y="399.5" ></text> | |
</g> | |
<g > | |
<title>wasmparser::binary_reader::BinaryReader::read_section_header::h81c8f9a3c6efd252 (8 samples, 0.01%)</title><rect x="193.4" y="101" width="0.1" height="15.0" fill="rgb(235,107,0)" rx="2" ry="2" /> | |
<text x="196.35" y="111.5" ></text> | |
</g> | |
<g > | |
<title>std::sys::unix::time::inner::Instant::now::h23f1bea5949f1bbd (9 samples, 0.01%)</title><rect x="1161.8" y="229" width="0.2" height="15.0" fill="rgb(210,167,38)" rx="2" ry="2" /> | |
<text x="1164.85" y="239.5" ></text> | |
</g> | |
<g > | |
<title>__GI___libc_free (45 samples, 0.06%)</title><rect x="272.9" y="309" width="0.7" height="15.0" fill="rgb(228,42,48)" rx="2" ry="2" /> | |
<text x="275.88" y="319.5" ></text> | |
</g> | |
<g > | |
<title>_ZN77_$LT$cranelift_codegen..simple_gvn..HashKey$u20$as$u20$core..clone..Clone$GT$5clone17hdd8a04f286b7e1acE.llvm.9287824473182564923 (18 samples, 0.03%)</title><rect x="166.4" y="213" width="0.3" height="15.0" fill="rgb(253,133,25)" rx="2" ry="2" /> | |
<text x="169.45" y="223.5" ></text> | |
</g> | |
<g > | |
<title>std::sys::unix::alloc::_$LT$impl$u20$core..alloc..GlobalAlloc$u20$for$u20$std..alloc..System$GT$::realloc::h1ccdfac189eaabae (21 samples, 0.03%)</title><rect x="1095.9" y="341" width="0.3" height="15.0" fill="rgb(225,90,22)" rx="2" ry="2" /> | |
<text x="1098.89" y="351.5" ></text> | |
</g> | |
<g > | |
<title>__memcpy_avx_unaligned (15 samples, 0.02%)</title><rect x="823.2" y="325" width="0.2" height="15.0" fill="rgb(213,0,52)" rx="2" ry="2" /> | |
<text x="826.19" y="335.5" ></text> | |
</g> | |
<g > | |
<title>std::time::Instant::now::h33d2ba6042def2d2 (11 samples, 0.02%)</title><rect x="152.0" y="197" width="0.2" height="15.0" fill="rgb(211,161,22)" rx="2" ry="2" /> | |
<text x="155.02" y="207.5" ></text> | |
</g> | |
<g > | |
<title>__rdl_dealloc (13 samples, 0.02%)</title><rect x="520.2" y="277" width="0.2" height="15.0" fill="rgb(228,207,50)" rx="2" ry="2" /> | |
<text x="523.19" y="287.5" ></text> | |
</g> | |
<g > | |
<title>__GI___libc_malloc (13 samples, 0.02%)</title><rect x="810.3" y="261" width="0.2" height="15.0" fill="rgb(239,49,2)" rx="2" ry="2" /> | |
<text x="813.33" y="271.5" ></text> | |
</g> | |
<g > | |
<title>__GI___libc_free (6 samples, 0.01%)</title><rect x="239.4" y="373" width="0.1" height="15.0" fill="rgb(220,51,47)" rx="2" ry="2" /> | |
<text x="242.41" y="383.5" ></text> | |
</g> | |
<g > | |
<title>std::sys::unix::time::inner::Instant::now::h23f1bea5949f1bbd (16 samples, 0.02%)</title><rect x="172.6" y="197" width="0.3" height="15.0" fill="rgb(237,161,16)" rx="2" ry="2" /> | |
<text x="175.64" y="207.5" ></text> | |
</g> | |
<g > | |
<title>__GI___libc_malloc (19 samples, 0.03%)</title><rect x="114.5" y="197" width="0.3" height="15.0" fill="rgb(250,176,34)" rx="2" ry="2" /> | |
<text x="117.52" y="207.5" ></text> | |
</g> | |
<g > | |
<title>std::time::Instant::now::h33d2ba6042def2d2 (13 samples, 0.02%)</title><rect x="39.1" y="261" width="0.2" height="15.0" fill="rgb(235,186,35)" rx="2" ry="2" /> | |
<text x="42.11" y="271.5" ></text> | |
</g> | |
<g > | |
<title>_int_malloc (15 samples, 0.02%)</title><rect x="1179.1" y="197" width="0.2" height="15.0" fill="rgb(234,99,38)" rx="2" ry="2" /> | |
<text x="1182.07" y="207.5" ></text> | |
</g> | |
<g > | |
<title>_ZN16cranelift_entity4list17ListPool$LT$T$GT$5alloc17h7031e3fd97879e16E.llvm.776987249141506950 (35 samples, 0.05%)</title><rect x="84.0" y="165" width="0.6" height="15.0" fill="rgb(231,184,43)" rx="2" ry="2" /> | |
<text x="86.99" y="175.5" ></text> | |
</g> | |
<g > | |
<title>__GI___libc_malloc (20 samples, 0.03%)</title><rect x="79.1" y="181" width="0.4" height="15.0" fill="rgb(214,183,25)" rx="2" ry="2" /> | |
<text x="82.13" y="191.5" ></text> | |
</g> | |
<g > | |
<title>_$LT$$RF$mut$u20$cranelift_codegen..cursor..EncCursor$u20$as$u20$cranelift_codegen..ir..builder..InstInserterBase$GT$::insert_built_inst::hbf5c6b2278487fe8 (7 samples, 0.01%)</title><rect x="1168.7" y="197" width="0.2" height="15.0" fill="rgb(244,141,51)" rx="2" ry="2" /> | |
<text x="1171.74" y="207.5" ></text> | |
</g> | |
<g > | |
<title>_$LT$$RF$mut$u20$cranelift_codegen..cursor..EncCursor$u20$as$u20$cranelift_codegen..ir..builder..InstInserterBase$GT$::insert_built_inst::hbf5c6b2278487fe8 (7 samples, 0.01%)</title><rect x="56.1" y="245" width="0.1" height="15.0" fill="rgb(220,124,42)" rx="2" ry="2" /> | |
<text x="59.09" y="255.5" ></text> | |
</g> | |
<g > | |
<title>__GI___clock_gettime (7 samples, 0.01%)</title><rect x="1159.9" y="229" width="0.1" height="15.0" fill="rgb(211,40,2)" rx="2" ry="2" /> | |
<text x="1162.88" y="239.5" ></text> | |
</g> | |
<g > | |
<title>free_unref_page_list (7 samples, 0.01%)</title><rect x="235.0" y="149" width="0.1" height="15.0" fill="rgb(208,131,39)" rx="2" ry="2" /> | |
<text x="237.97" y="159.5" ></text> | |
</g> | |
<g > | |
<title>cranelift_codegen::regalloc::live_value_tracker::LiveValueTracker::process_inst::hcd4ba6fb549516b2 (18 samples, 0.03%)</title><rect x="1169.1" y="213" width="0.3" height="15.0" fill="rgb(249,137,45)" rx="2" ry="2" /> | |
<text x="1172.11" y="223.5" ></text> | |
</g> | |
<g > | |
<title>__rdl_alloc (17 samples, 0.02%)</title><rect x="624.5" y="293" width="0.3" height="15.0" fill="rgb(221,159,20)" rx="2" ry="2" /> | |
<text x="627.49" y="303.5" ></text> | |
</g> | |
<g > | |
<title>core::ptr::real_drop_in_place::h51630cd8049767c4 (13 samples, 0.02%)</title><rect x="252.9" y="325" width="0.2" height="15.0" fill="rgb(208,41,50)" rx="2" ry="2" /> | |
<text x="255.85" y="335.5" ></text> | |
</g> | |
<g > | |
<title>core::slice::_$LT$impl$u20$$u5b$T$u5d$$GT$::copy_from_slice::h741bc29efe0e57bc (11 samples, 0.02%)</title><rect x="625.6" y="309" width="0.2" height="15.0" fill="rgb(245,99,21)" rx="2" ry="2" /> | |
<text x="628.61" y="319.5" ></text> | |
</g> | |
<g > | |
<title>_int_free (26 samples, 0.04%)</title><rect x="273.2" y="293" width="0.4" height="15.0" fill="rgb(213,36,27)" rx="2" ry="2" /> | |
<text x="276.20" y="303.5" ></text> | |
</g> | |
<g > | |
<title>_int_malloc (6 samples, 0.01%)</title><rect x="114.7" y="181" width="0.1" height="15.0" fill="rgb(226,44,16)" rx="2" ry="2" /> | |
<text x="117.73" y="191.5" ></text> | |
</g> | |
<g > | |
<title>do_mmap (7 samples, 0.01%)</title><rect x="190.7" y="37" width="0.1" height="15.0" fill="rgb(228,52,17)" rx="2" ry="2" /> | |
<text x="193.70" y="47.5" ></text> | |
</g> | |
<g > | |
<title>_int_free (326 samples, 0.46%)</title><rect x="507.7" y="245" width="5.4" height="15.0" fill="rgb(245,164,27)" rx="2" ry="2" /> | |
<text x="510.66" y="255.5" ></text> | |
</g> | |
<g > | |
<title>std::sys::unix::time::inner::now::ha10452f37b2930c5 (8 samples, 0.01%)</title><rect x="121.0" y="133" width="0.1" height="15.0" fill="rgb(208,155,34)" rx="2" ry="2" /> | |
<text x="123.97" y="143.5" ></text> | |
</g> | |
<g > | |
<title>_int_malloc (213 samples, 0.30%)</title><rect x="1011.1" y="325" width="3.5" height="15.0" fill="rgb(230,92,42)" rx="2" ry="2" /> | |
<text x="1014.05" y="335.5" ></text> | |
</g> | |
<g > | |
<title>_int_malloc (7 samples, 0.01%)</title><rect x="799.5" y="277" width="0.1" height="15.0" fill="rgb(254,228,4)" rx="2" ry="2" /> | |
<text x="802.46" y="287.5" ></text> | |
</g> | |
<g > | |
<title>wasmer_runtime_core::parse::read_module::h3875b654eed5ef74 (38 samples, 0.05%)</title><rect x="196.9" y="181" width="0.6" height="15.0" fill="rgb(237,218,29)" rx="2" ry="2" /> | |
<text x="199.85" y="191.5" ></text> | |
</g> | |
<g > | |
<title>cranelift_codegen::ir::dfg::DataFlowGraph::make_inst::h5a8de03d56461c59 (46 samples, 0.07%)</title><rect x="324.7" y="309" width="0.8" height="15.0" fill="rgb(244,71,43)" rx="2" ry="2" /> | |
<text x="327.71" y="319.5" ></text> | |
</g> | |
<g > | |
<title>core::ptr::real_drop_in_place::hee16df317d8edeaf (595 samples, 0.85%)</title><rect x="222.1" y="357" width="10.0" height="15.0" fill="rgb(245,200,48)" rx="2" ry="2" /> | |
<text x="225.08" y="367.5" ></text> | |
</g> | |
<g > | |
<title>cranelift_entity::list::EntityList$LT$T$GT$::push::h3b7b875a11d2ba0c (40 samples, 0.06%)</title><rect x="322.1" y="293" width="0.6" height="15.0" fill="rgb(212,33,31)" rx="2" ry="2" /> | |
<text x="325.05" y="303.5" ></text> | |
</g> | |
<g > | |
<title>std::time::Instant::now::h33d2ba6042def2d2 (24 samples, 0.03%)</title><rect x="126.9" y="181" width="0.4" height="15.0" fill="rgb(243,226,13)" rx="2" ry="2" /> | |
<text x="129.86" y="191.5" ></text> | |
</g> | |
<g > | |
<title>force_sig_info (24 samples, 0.03%)</title><rect x="12.6" y="357" width="0.4" height="15.0" fill="rgb(249,69,0)" rx="2" ry="2" /> | |
<text x="15.57" y="367.5" ></text> | |
</g> | |
<g > | |
<title>__GI___libc_malloc (78 samples, 0.11%)</title><rect x="699.6" y="277" width="1.3" height="15.0" fill="rgb(244,8,40)" rx="2" ry="2" /> | |
<text x="702.57" y="287.5" ></text> | |
</g> | |
<g > | |
<title>std::rt::lang_start_internal::_$u7b$$u7b$closure$u7d$$u7d$::h6ea535ec5c50fc3e (736 samples, 1.05%)</title><rect x="189.1" y="309" width="12.3" height="15.0" fill="rgb(246,12,0)" rx="2" ry="2" /> | |
<text x="192.07" y="319.5" ></text> | |
</g> | |
<g > | |
<title>cranelift_codegen::redundant_reload_remover::RedundantReloadRemover::processing_stack_maybe_push::h68b38d091c29c7ca (30 samples, 0.04%)</title><rect x="1152.6" y="277" width="0.5" height="15.0" fill="rgb(221,47,43)" rx="2" ry="2" /> | |
<text x="1155.63" y="287.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.01%)</title><rect x="878.6" y="325" width="0.2" height="15.0" fill="rgb(228,1,36)" rx="2" ry="2" /> | |
<text x="881.62" y="335.5" ></text> | |
</g> | |
<g > | |
<title>__GI___libc_realloc (6 samples, 0.01%)</title><rect x="1177.7" y="245" width="0.1" height="15.0" fill="rgb(212,226,42)" rx="2" ry="2" /> | |
<text x="1180.67" y="255.5" ></text> | |
</g> | |
<g > | |
<title>_int_malloc (7 samples, 0.01%)</title><rect x="274.0" y="293" width="0.2" height="15.0" fill="rgb(233,67,5)" rx="2" ry="2" /> | |
<text x="277.04" y="303.5" ></text> | |
</g> | |
<g > | |
<title>alloc::borrow::Cow$LT$B$GT$::to_mut::hc816a9c98cae5186 (10 samples, 0.01%)</title><rect x="1169.7" y="261" width="0.2" height="15.0" fill="rgb(245,139,51)" rx="2" ry="2" /> | |
<text x="1172.69" y="271.5" ></text> | |
</g> | |
<g > | |
<title>_int_free (8 samples, 0.01%)</title><rect x="199.4" y="181" width="0.1" height="15.0" fill="rgb(233,163,48)" rx="2" ry="2" /> | |
<text x="202.37" y="191.5" ></text> | |
</g> | |
<g > | |
<title>sys_mprotect (6 samples, 0.01%)</title><rect x="190.2" y="85" width="0.1" height="15.0" fill="rgb(236,93,5)" rx="2" ry="2" /> | |
<text x="193.23" y="95.5" ></text> | |
</g> | |
<g > | |
<title>_int_malloc (241 samples, 0.34%)</title><rect x="620.4" y="277" width="4.1" height="15.0" fill="rgb(206,171,21)" rx="2" ry="2" /> | |
<text x="623.43" y="287.5" ></text> | |
</g> | |
<g > | |
<title>wasmer_runtime_core::codegen::MiddlewareChain::run::hcbfec81dbf94244f (64 samples, 0.09%)</title><rect x="853.0" y="325" width="1.1" height="15.0" fill="rgb(247,197,40)" rx="2" ry="2" /> | |
<text x="855.99" y="335.5" ></text> | |
</g> | |
<g > | |
<title>__split_vma (86 samples, 0.12%)</title><rect x="223.5" y="213" width="1.4" height="15.0" fill="rgb(236,22,39)" rx="2" ry="2" /> | |
<text x="226.46" 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 (15 samples, 0.02%)</title><rect x="46.0" y="261" width="0.3" height="15.0" fill="rgb(252,66,2)" rx="2" ry="2" /> | |
<text x="49.02" 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 (16 samples, 0.02%)</title><rect x="159.2" y="181" width="0.3" height="15.0" fill="rgb(224,155,49)" rx="2" ry="2" /> | |
<text x="162.25" y="191.5" ></text> | |
</g> | |
<g > | |
<title>_$LT$wasmer_runtime_core..sys..unix..memory..Memory$u20$as$u20$core..ops..drop..Drop$GT$::drop::h019b69b880433af9 (297 samples, 0.42%)</title><rect x="232.1" y="357" width="5.0" height="15.0" fill="rgb(216,151,15)" rx="2" ry="2" /> | |
<text x="235.08" y="367.5" ></text> | |
</g> | |
<g > | |
<title>_int_realloc (6 samples, 0.01%)</title><rect x="1172.7" y="245" width="0.1" height="15.0" fill="rgb(207,76,32)" rx="2" ry="2" /> | |
<text x="1175.73" y="255.5" ></text> | |
</g> | |
<g > | |
<title>__GI___libc_free (7 samples, 0.01%)</title><rect x="1148.1" y="229" width="0.1" height="15.0" fill="rgb(250,173,7)" rx="2" ry="2" /> | |
<text x="1151.08" y="239.5" ></text> | |
</g> | |
<g > | |
<title>cranelift_entity::list::EntityList$LT$T$GT$::push::h051541d55e7ee057 (6 samples, 0.01%)</title><rect x="54.9" y="229" width="0.1" height="15.0" fill="rgb(252,173,53)" rx="2" ry="2" /> | |
<text x="57.88" 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 (33 samples, 0.05%)</title><rect x="1171.1" y="277" width="0.6" height="15.0" fill="rgb(227,157,23)" rx="2" ry="2" /> | |
<text x="1174.13" y="287.5" ></text> | |
</g> | |
<g > | |
<title>__GI___libc_malloc (12 samples, 0.02%)</title><rect x="192.4" y="117" width="0.2" height="15.0" fill="rgb(249,89,16)" rx="2" ry="2" /> | |
<text x="195.38" y="127.5" ></text> | |
</g> | |
<g > | |
<title>_$LT$alloc..vec..Vec$LT$T$GT$$u20$as$u20$core..clone..Clone$GT$::clone::hb7d2cb3c90b56c0d (6 samples, 0.01%)</title><rect x="65.0" y="245" width="0.1" height="15.0" fill="rgb(252,203,22)" rx="2" ry="2" /> | |
<text x="67.99" y="255.5" ></text> | |
</g> | |
<g > | |
<title>alloc::raw_vec::RawVec$LT$T$C$A$GT$::reserve::hc8a0fc8526f8c69b (21 samples, 0.03%)</title><rect x="325.1" y="293" width="0.4" height="15.0" fill="rgb(221,64,44)" rx="2" ry="2" /> | |
<text x="328.13" 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 (19 samples, 0.03%)</title><rect x="320.8" y="293" width="0.3" height="15.0" fill="rgb(253,195,22)" rx="2" ry="2" /> | |
<text x="323.81" y="303.5" ></text> | |
</g> | |
<g > | |
<title>tlb_flush_mmu_tlbonly (66 samples, 0.09%)</title><rect x="235.5" y="197" width="1.1" height="15.0" fill="rgb(239,9,26)" rx="2" ry="2" /> | |
<text x="238.50" y="207.5" ></text> | |
</g> | |
<g > | |
<title>__GI___clock_gettime (9 samples, 0.01%)</title><rect x="153.5" y="117" width="0.2" height="15.0" fill="rgb(225,94,31)" rx="2" ry="2" /> | |
<text x="156.53" y="127.5" ></text> | |
</g> | |
<g > | |
<title>cranelift_codegen::ir::instructions::InstructionData::arguments_mut::hd68ce32862759160 (14 samples, 0.02%)</title><rect x="1164.9" y="261" width="0.2" height="15.0" fill="rgb(235,87,45)" rx="2" ry="2" /> | |
<text x="1167.91" 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 (55 samples, 0.08%)</title><rect x="29.8" y="261" width="1.0" height="15.0" fill="rgb(247,33,16)" rx="2" ry="2" /> | |
<text x="32.83" y="271.5" ></text> | |
</g> | |
<g > | |
<title>__GI___libc_free (340 samples, 0.48%)</title><rect x="1018.6" y="357" width="5.7" height="15.0" fill="rgb(213,107,31)" rx="2" ry="2" /> | |
<text x="1021.59" y="367.5" ></text> | |
</g> | |
<g > | |
<title>alloc::raw_vec::RawVec$LT$T$C$A$GT$::reserve::h156c4ca9e87e66cc (10 samples, 0.01%)</title><rect x="39.9" y="261" width="0.2" height="15.0" fill="rgb(216,102,47)" rx="2" ry="2" /> | |
<text x="42.90" y="271.5" ></text> | |
</g> | |
<g > | |
<title>__perf_event_header__init_id (12 samples, 0.02%)</title><rect x="294.8" y="101" width="0.2" height="15.0" fill="rgb(245,13,52)" rx="2" ry="2" /> | |
<text x="297.76" y="111.5" ></text> | |
</g> | |
<g > | |
<title>cranelift_codegen::isa::TargetIsa::encode::h3618ddf6ad568ce7 (41 samples, 0.06%)</title><rect x="17.4" y="245" width="0.7" height="15.0" fill="rgb(209,228,47)" rx="2" ry="2" /> | |
<text x="20.37" y="255.5" ></text> | |
</g> | |
<g > | |
<title>hashbrown::raw::RawTable$LT$T$GT$::insert_no_grow::he41501be23667ca7 (12 samples, 0.02%)</title><rect x="169.2" y="213" width="0.2" height="15.0" fill="rgb(223,185,12)" rx="2" ry="2" /> | |
<text x="172.24" y="223.5" ></text> | |
</g> | |
<g > | |
<title>__GI___libc_realloc (20 samples, 0.03%)</title><rect x="1174.4" y="245" width="0.3" height="15.0" fill="rgb(247,71,22)" rx="2" ry="2" /> | |
<text x="1177.38" y="255.5" ></text> | |
</g> | |
<g > | |
<title>__GI___libc_malloc (13 samples, 0.02%)</title><rect x="76.0" y="149" width="0.2" height="15.0" fill="rgb(238,71,53)" rx="2" ry="2" /> | |
<text x="79.02" y="159.5" ></text> | |
</g> | |
<g > | |
<title>perf_event_mmap (158 samples, 0.23%)</title><rect x="351.1" y="165" width="2.7" height="15.0" fill="rgb(248,107,37)" rx="2" ry="2" /> | |
<text x="354.09" y="175.5" ></text> | |
</g> | |
<g > | |
<title>perf_output_copy (7 samples, 0.01%)</title><rect x="268.7" y="133" width="0.1" height="15.0" fill="rgb(226,109,36)" rx="2" ry="2" /> | |
<text x="271.73" y="143.5" ></text> | |
</g> | |
<g > | |
<title>cranelift_codegen::dominator_tree::DominatorTree::compute::hb8295076ad170b26 (52 samples, 0.07%)</title><rect x="119.9" y="213" width="0.9" height="15.0" fill="rgb(206,178,45)" rx="2" ry="2" /> | |
<text x="122.88" y="223.5" ></text> | |
</g> | |
<g > | |
<title>alloc::raw_vec::RawVec$LT$T$C$A$GT$::reserve::hd6c8f26eb3c9fb4b (25 samples, 0.04%)</title><rect x="1175.2" y="277" width="0.4" height="15.0" fill="rgb(234,226,18)" rx="2" ry="2" /> | |
<text x="1178.15" y="287.5" ></text> | |
</g> | |
<g > | |
<title>core::ptr::real_drop_in_place::hb2e11882195b050b (61 samples, 0.09%)</title><rect x="238.3" y="373" width="1.1" height="15.0" fill="rgb(222,10,43)" rx="2" ry="2" /> | |
<text x="241.34" y="383.5" ></text> | |
</g> | |
<g > | |
<title>entry_SYSCALL_64_after_hwframe (372 samples, 0.53%)</title><rect x="290.2" y="277" width="6.3" height="15.0" fill="rgb(214,196,22)" rx="2" ry="2" /> | |
<text x="293.20" y="287.5" ></text> | |
</g> | |
<g > | |
<title>cranelift_codegen::isa::x86::enc_tables::size_plus_maybe_sib_for_in_reg_1::hf4d83c62d16b3d32 (11 samples, 0.02%)</title><rect x="32.4" y="261" width="0.2" height="15.0" fill="rgb(253,164,12)" rx="2" ry="2" /> | |
<text x="35.42" y="271.5" ></text> | |
</g> | |
<g > | |
<title>malloc_consolidate (64 samples, 0.09%)</title><rect x="251.3" y="277" width="1.1" height="15.0" fill="rgb(254,159,43)" rx="2" ry="2" /> | |
<text x="254.32" y="287.5" ></text> | |
</g> | |
<g > | |
<title>anon_vma_interval_tree_insert (8 samples, 0.01%)</title><rect x="224.4" y="197" width="0.2" height="15.0" fill="rgb(251,131,19)" rx="2" ry="2" /> | |
<text x="227.45" y="207.5" ></text> | |
</g> | |
<g > | |
<title>wasmer_clif_fork_frontend::frontend::FunctionBuilder::new::hf46f693a25212c73 (15 samples, 0.02%)</title><rect x="810.8" y="309" width="0.2" height="15.0" fill="rgb(241,70,18)" rx="2" ry="2" /> | |
<text x="813.76" y="319.5" ></text> | |
</g> | |
<g > | |
<title>cranelift_codegen::regalloc::live_value_tracker::LiveValueTracker::process_inst::hcd4ba6fb549516b2 (26 samples, 0.04%)</title><rect x="1175.6" y="293" width="0.4" height="15.0" fill="rgb(250,7,44)" rx="2" ry="2" /> | |
<text x="1178.57" y="303.5" ></text> | |
</g> | |
<g > | |
<title>entry_SYSCALL_64_after_hwframe (539 samples, 0.77%)</title><rect x="222.8" y="293" width="9.0" height="15.0" fill="rgb(206,43,25)" rx="2" ry="2" /> | |
<text x="225.78" y="303.5" ></text> | |
</g> | |
<g > | |
<title>hashbrown::map::HashMap$LT$K$C$V$C$S$GT$::insert::h7f71a0adc74f5535 (22 samples, 0.03%)</title><rect x="194.4" y="149" width="0.4" height="15.0" fill="rgb(228,159,15)" rx="2" ry="2" /> | |
<text x="197.40" y="159.5" ></text> | |
</g> | |
<g > | |
<title>sys_mmap_pgoff (326 samples, 0.46%)</title><rect x="291.0" y="229" width="5.4" height="15.0" fill="rgb(219,83,19)" rx="2" ry="2" /> | |
<text x="293.96" y="239.5" ></text> | |
</g> | |
<g > | |
<title>cranelift_entity::sparse::SparseMap$LT$K$C$V$GT$::insert::h7db38de7d591c38a (6 samples, 0.01%)</title><rect x="163.8" y="197" width="0.1" height="15.0" fill="rgb(207,91,16)" rx="2" ry="2" /> | |
<text x="166.84" y="207.5" ></text> | |
</g> | |
<g > | |
<title>_int_malloc (11 samples, 0.02%)</title><rect x="799.1" y="245" width="0.2" height="15.0" fill="rgb(230,40,15)" rx="2" ry="2" /> | |
<text x="802.09" y="255.5" ></text> | |
</g> | |
<g > | |
<title>setjmp (7 samples, 0.01%)</title><rect x="871.2" y="293" width="0.1" height="15.0" fill="rgb(241,172,12)" rx="2" ry="2" /> | |
<text x="874.17" y="303.5" ></text> | |
</g> | |
<g > | |
<title>_int_free (7 samples, 0.01%)</title><rect x="312.9" y="245" width="0.1" height="15.0" fill="rgb(209,192,22)" rx="2" ry="2" /> | |
<text x="315.92" y="255.5" ></text> | |
</g> | |
<g > | |
<title>__GI___libc_malloc (6 samples, 0.01%)</title><rect x="1161.0" y="261" width="0.1" height="15.0" fill="rgb(206,190,31)" rx="2" ry="2" /> | |
<text x="1164.02" y="271.5" ></text> | |
</g> | |
<g > | |
<title>alloc::raw_vec::RawVec$LT$T$C$A$GT$::reserve::hd6c8f26eb3c9fb4b (27 samples, 0.04%)</title><rect x="1179.5" y="293" width="0.5" height="15.0" fill="rgb(213,61,33)" rx="2" ry="2" /> | |
<text x="1182.52" y="303.5" ></text> | |
</g> | |
<g > | |
<title>std::sys::unix::time::inner::now::ha10452f37b2930c5 (12 samples, 0.02%)</title><rect x="110.9" y="165" width="0.2" height="15.0" fill="rgb(229,74,48)" rx="2" ry="2" /> | |
<text x="113.90" y="175.5" ></text> | |
</g> | |
<g > | |
<title>wasmparser::readers::module::ModuleReader::read::h9a86df7daf36f14d (28 samples, 0.04%)</title><rect x="817.1" y="277" width="0.5" height="15.0" fill="rgb(208,85,43)" rx="2" ry="2" /> | |
<text x="820.10" y="287.5" ></text> | |
</g> | |
<g > | |
<title>_int_malloc (433 samples, 0.62%)</title><rect x="475.9" y="261" width="7.3" height="15.0" fill="rgb(215,111,40)" rx="2" ry="2" /> | |
<text x="478.93" y="271.5" ></text> | |
</g> | |
<g > | |
<title>cranelift_entity::list::EntityList$LT$T$GT$::push::h051541d55e7ee057 (7 samples, 0.01%)</title><rect x="321.8" y="261" width="0.1" height="15.0" fill="rgb(223,197,42)" rx="2" ry="2" /> | |
<text x="324.80" y="271.5" ></text> | |
</g> | |
<g > | |
<title>cranelift_codegen::regalloc::liveness::Liveness::compute::h5fc2c46ff15ebd51 (180 samples, 0.26%)</title><rect x="49.8" y="293" width="3.0" height="15.0" fill="rgb(226,22,2)" rx="2" ry="2" /> | |
<text x="52.79" y="303.5" ></text> | |
</g> | |
<g > | |
<title>__memcpy_avx_unaligned (7 samples, 0.01%)</title><rect x="83.7" y="133" width="0.1" height="15.0" fill="rgb(249,201,1)" rx="2" ry="2" /> | |
<text x="86.72" y="143.5" ></text> | |
</g> | |
<g > | |
<title>__GI___clock_gettime (10 samples, 0.01%)</title><rect x="1166.3" y="197" width="0.1" height="15.0" fill="rgb(205,113,6)" rx="2" ry="2" /> | |
<text x="1169.25" y="207.5" ></text> | |
</g> | |
<g > | |
<title>core::fmt::Formatter::write_fmt::h8a3d5dce895eed65 (15 samples, 0.02%)</title><rect x="871.3" y="293" width="0.3" height="15.0" fill="rgb(243,200,30)" rx="2" ry="2" /> | |
<text x="874.31" y="303.5" ></text> | |
</g> | |
<g > | |
<title>alloc::raw_vec::RawVec$LT$T$C$A$GT$::reserve::hea3f43976955e3d2 (11 samples, 0.02%)</title><rect x="1172.6" y="277" width="0.2" height="15.0" fill="rgb(214,87,41)" rx="2" ry="2" /> | |
<text x="1175.65" y="287.5" ></text> | |
</g> | |
<g > | |
<title>__GI___libc_free (8 samples, 0.01%)</title><rect x="239.2" y="325" width="0.2" height="15.0" fill="rgb(254,95,43)" rx="2" ry="2" /> | |
<text x="242.23" y="335.5" ></text> | |
</g> | |
<g > | |
<title>_int_malloc (33 samples, 0.05%)</title><rect x="700.3" y="261" width="0.6" height="15.0" fill="rgb(207,154,9)" rx="2" ry="2" /> | |
<text x="703.33" y="271.5" ></text> | |
</g> | |
<g > | |
<title>__vdso_clock_gettime (6 samples, 0.01%)</title><rect x="38.1" y="181" width="0.1" height="15.0" fill="rgb(244,74,47)" rx="2" ry="2" /> | |
<text x="41.08" y="191.5" ></text> | |
</g> | |
<g > | |
<title>rayon_core::registry::global_registry::hc896ca4008b342a6 (7 samples, 0.01%)</title><rect x="281.2" y="229" width="0.2" height="15.0" fill="rgb(223,112,27)" rx="2" ry="2" /> | |
<text x="284.24" y="239.5" ></text> | |
</g> | |
<g > | |
<title>cranelift_bforest::set::Set$LT$K$GT$::insert::h750422a26fd1bdc6 (9 samples, 0.01%)</title><rect x="87.6" y="101" width="0.1" height="15.0" fill="rgb(230,155,21)" rx="2" ry="2" /> | |
<text x="90.58" y="111.5" ></text> | |
</g> | |
<g > | |
<title>page_counter_uncharge (7 samples, 0.01%)</title><rect x="228.5" y="85" width="0.1" height="15.0" fill="rgb(213,33,37)" rx="2" ry="2" /> | |
<text x="231.48" y="95.5" ></text> | |
</g> | |
<g > | |
<title>alloc::raw_vec::RawVec$LT$T$C$A$GT$::reserve::h500ef385b8747b29 (46 samples, 0.07%)</title><rect x="132.7" y="181" width="0.8" height="15.0" fill="rgb(246,27,12)" rx="2" ry="2" /> | |
<text x="135.68" y="191.5" ></text> | |
</g> | |
<g > | |
<title>cranelift_codegen::ir::layout::Layout::assign_inst_seq::h59be385ae82e3a19 (7 samples, 0.01%)</title><rect x="20.8" y="229" width="0.1" height="15.0" fill="rgb(213,53,50)" rx="2" ry="2" /> | |
<text x="23.81" y="239.5" ></text> | |
</g> | |
<g > | |
<title>cranelift_codegen::regalloc::live_value_tracker::LiveValueTracker::process_inst::hcd4ba6fb549516b2 (29 samples, 0.04%)</title><rect x="47.5" y="277" width="0.5" height="15.0" fill="rgb(213,215,36)" rx="2" ry="2" /> | |
<text x="50.50" y="287.5" ></text> | |
</g> | |
<g > | |
<title>perf_event_mmap_output (47 samples, 0.07%)</title><rect x="294.6" y="117" width="0.8" height="15.0" fill="rgb(222,0,9)" rx="2" ry="2" /> | |
<text x="297.62" y="127.5" ></text> | |
</g> | |
<g > | |
<title>wasmer_runtime_core::instance::call_func_with_index_inner::h484a2214ddaa0611 (614 samples, 0.88%)</title><rect x="861.2" y="357" width="10.4" height="15.0" fill="rgb(239,144,15)" rx="2" ry="2" /> | |
<text x="864.23" y="367.5" ></text> | |
</g> | |
<g > | |
<title>c2_chacha::guts::refill_wide::he4343866a1fa78ce (99 samples, 0.14%)</title><rect x="207.1" y="389" width="1.6" height="15.0" fill="rgb(220,75,28)" rx="2" ry="2" /> | |
<text x="210.08" y="399.5" ></text> | |
</g> | |
<g > | |
<title>_$LT$wasmer_clif_backend..code..CraneliftModuleCodeGenerator$u20$as$u20$wasmer_runtime_core..codegen..ModuleCodeGenerator$LT$wasmer_clif_backend..code..CraneliftFunctionCodeGenerator$C$wasmer_clif_backend..signal..Caller$C$wasmer_clif_backend..code..CodegenError$GT$$GT$::finalize::hbd8b1f6eb4859c5a (414 samples, 0.59%)</title><rect x="1169.5" y="389" width="6.9" height="15.0" fill="rgb(247,197,26)" rx="2" ry="2" /> | |
<text x="1172.47" y="399.5" ></text> | |
</g> | |
<g > | |
<title>_$LT$$RF$mut$u20$cranelift_codegen..cursor..FuncCursor$u20$as$u20$cranelift_codegen..ir..builder..InstInserterBase$GT$::insert_built_inst::h2dc32e2eaff27ce6 (48 samples, 0.07%)</title><rect x="297.5" y="309" width="0.8" height="15.0" fill="rgb(235,14,43)" rx="2" ry="2" /> | |
<text x="300.52" y="319.5" ></text> | |
</g> | |
<g > | |
<title>do_divide_error (68 samples, 0.10%)</title><rect x="11.9" y="421" width="1.1" height="15.0" fill="rgb(231,209,6)" rx="2" ry="2" /> | |
<text x="14.87" y="431.5" ></text> | |
</g> | |
<g > | |
<title>std::sys::unix::time::inner::Instant::now::h23f1bea5949f1bbd (7 samples, 0.01%)</title><rect x="117.4" y="165" width="0.2" height="15.0" fill="rgb(218,2,39)" rx="2" ry="2" /> | |
<text x="120.44" y="175.5" ></text> | |
</g> | |
<g > | |
<title>cranelift_codegen::legalizer::legalize_function::h9c05a7523015c4df (234 samples, 0.33%)</title><rect x="14.7" y="293" width="3.9" height="15.0" fill="rgb(222,99,47)" rx="2" ry="2" /> | |
<text x="17.71" y="303.5" ></text> | |
</g> | |
<g > | |
<title>_$LT$wasmer_clif_backend..code..CraneliftModuleCodeGenerator$u20$as$u20$wasmer_runtime_core..codegen..ModuleCodeGenerator$LT$wasmer_clif_backend..code..CraneliftFunctionCodeGenerator$C$wasmer_clif_backend..signal..Caller$C$wasmer_clif_backend..code..CodegenError$GT$$GT$::finalize::hbd8b1f6eb4859c5a (2,799 samples, 3.99%)</title><rect x="14.0" y="373" width="47.0" height="15.0" fill="rgb(251,196,15)" rx="2" ry="2" /> | |
<text x="16.95" y="383.5" >_$LT..</text> | |
</g> | |
<g > | |
<title>clear_page_erms (11 samples, 0.02%)</title><rect x="305.1" y="181" width="0.2" height="15.0" fill="rgb(251,218,26)" rx="2" ry="2" /> | |
<text x="308.07" y="191.5" ></text> | |
</g> | |
<g > | |
<title>anon_vma_interval_tree_insert (14 samples, 0.02%)</title><rect x="345.3" y="149" width="0.2" height="15.0" fill="rgb(234,17,48)" rx="2" ry="2" /> | |
<text x="348.29" y="159.5" ></text> | |
</g> | |
<g > | |
<title>hashbrown::map::HashMap$LT$K$C$V$C$S$GT$::insert::h7f71a0adc74f5535 (1,589 samples, 2.26%)</title><rect x="633.7" y="309" width="26.7" height="15.0" fill="rgb(238,144,49)" rx="2" ry="2" /> | |
<text x="636.70" y="319.5" >h..</text> | |
</g> | |
<g > | |
<title>_int_realloc (14 samples, 0.02%)</title><rect x="807.8" y="261" width="0.2" height="15.0" fill="rgb(221,10,36)" rx="2" ry="2" /> | |
<text x="810.75" y="271.5" ></text> | |
</g> | |
<g > | |
<title>__GI___libc_malloc (9 samples, 0.01%)</title><rect x="150.9" y="149" width="0.2" height="15.0" fill="rgb(207,24,43)" rx="2" ry="2" /> | |
<text x="153.91" y="159.5" ></text> | |
</g> | |
<g > | |
<title>prepare_exit_to_usermode (55 samples, 0.08%)</title><rect x="13.0" y="421" width="0.9" height="15.0" fill="rgb(222,40,35)" rx="2" ry="2" /> | |
<text x="16.01" y="431.5" ></text> | |
</g> | |
<g > | |
<title>alloc::raw_vec::RawVec$LT$T$C$A$GT$::reserve::hd6c8f26eb3c9fb4b (11 samples, 0.02%)</title><rect x="59.4" y="277" width="0.2" height="15.0" fill="rgb(219,155,32)" rx="2" ry="2" /> | |
<text x="62.39" y="287.5" ></text> | |
</g> | |
<g > | |
<title>cranelift_codegen::context::Context::compile::h9fe1ff28e88fe30f (97 samples, 0.14%)</title><rect x="318.7" y="293" width="1.6" height="15.0" fill="rgb(252,190,46)" rx="2" ry="2" /> | |
<text x="321.71" y="303.5" ></text> | |
</g> | |
<g > | |
<title>wasmer_runtime_core::compile_with_config::h2793fe8de72c0bc3 (1,137 samples, 1.62%)</title><rect x="1147.8" y="389" width="19.2" height="15.0" fill="rgb(248,127,45)" rx="2" ry="2" /> | |
<text x="1150.84" y="399.5" ></text> | |
</g> | |
<g > | |
<title>cranelift_codegen::licm::do_licm::hb96edf4ef4d89000 (7 samples, 0.01%)</title><rect x="1160.6" y="293" width="0.2" height="15.0" fill="rgb(228,64,22)" rx="2" ry="2" /> | |
<text x="1163.64" y="303.5" ></text> | |
</g> | |
<g > | |
<title>cranelift_codegen::flowgraph::ControlFlowGraph::compute::hdce42828fa3e59cb (60 samples, 0.09%)</title><rect x="120.8" y="213" width="1.0" height="15.0" fill="rgb(250,53,53)" rx="2" ry="2" /> | |
<text x="123.76" y="223.5" ></text> | |
</g> | |
<g > | |
<title>alloc::raw_vec::RawVec$LT$T$C$A$GT$::reserve::ha898170dd69782a8 (24 samples, 0.03%)</title><rect x="131.9" y="181" width="0.4" height="15.0" fill="rgb(245,163,17)" rx="2" ry="2" /> | |
<text x="134.87" y="191.5" ></text> | |
</g> | |
<g > | |
<title>_ZN9hashbrown3raw17RawTable$LT$T$GT$14reserve_rehash17h949d57d1e07c193dE.llvm.16938716460618634628 (15 samples, 0.02%)</title><rect x="71.8" y="181" width="0.3" height="15.0" fill="rgb(211,99,7)" rx="2" ry="2" /> | |
<text x="74.80" y="191.5" ></text> | |
</g> | |
<g > | |
<title>kmem_cache_alloc (16 samples, 0.02%)</title><rect x="350.7" y="165" width="0.2" height="15.0" fill="rgb(229,29,23)" rx="2" ry="2" /> | |
<text x="353.67" y="175.5" ></text> | |
</g> | |
<g > | |
<title>tlb_flush_mmu_free (54 samples, 0.08%)</title><rect x="234.6" y="197" width="0.9" height="15.0" fill="rgb(237,43,44)" rx="2" ry="2" /> | |
<text x="237.59" y="207.5" ></text> | |
</g> | |
<g > | |
<title>__rust_alloc (8 samples, 0.01%)</title><rect x="1043.5" y="341" width="0.1" height="15.0" fill="rgb(248,67,17)" rx="2" ry="2" /> | |
<text x="1046.48" y="351.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 (147 samples, 0.21%)</title><rect x="1167.0" y="325" width="2.5" height="15.0" fill="rgb(243,4,47)" rx="2" ry="2" /> | |
<text x="1169.99" y="335.5" ></text> | |
</g> | |
<g > | |
<title>cranelift_codegen::ir::dfg::DataFlowGraph::clear::h864e5fe24548dc9f (16 samples, 0.02%)</title><rect x="67.2" y="229" width="0.3" height="15.0" fill="rgb(235,188,21)" rx="2" ry="2" /> | |
<text x="70.24" y="239.5" ></text> | |
</g> | |
<g > | |
<title>__GI___libc_malloc (6 samples, 0.01%)</title><rect x="817.9" y="293" width="0.1" height="15.0" fill="rgb(213,104,29)" rx="2" ry="2" /> | |
<text x="820.95" y="303.5" ></text> | |
</g> | |
<g > | |
<title>_int_malloc (12 samples, 0.02%)</title><rect x="129.1" y="149" width="0.2" height="15.0" fill="rgb(217,169,1)" rx="2" ry="2" /> | |
<text x="132.06" y="159.5" ></text> | |
</g> | |
<g > | |
<title>__GI___libc_malloc (13 samples, 0.02%)</title><rect x="1170.0" y="229" width="0.2" height="15.0" fill="rgb(235,78,53)" rx="2" ry="2" /> | |
<text x="1172.99" y="239.5" ></text> | |
</g> | |
<g > | |
<title>std::sys::unix::time::inner::now::ha10452f37b2930c5 (14 samples, 0.02%)</title><rect x="158.2" y="133" width="0.3" height="15.0" fill="rgb(217,136,19)" rx="2" ry="2" /> | |
<text x="161.22" y="143.5" ></text> | |
</g> | |
<g > | |
<title>_int_malloc (6 samples, 0.01%)</title><rect x="194.0" y="117" width="0.1" height="15.0" fill="rgb(254,112,24)" rx="2" ry="2" /> | |
<text x="197.01" y="127.5" ></text> | |
</g> | |
<g > | |
<title>std::sys::unix::time::inner::Instant::now::h23f1bea5949f1bbd (8 samples, 0.01%)</title><rect x="1174.9" y="245" width="0.1" height="15.0" fill="rgb(213,55,18)" rx="2" ry="2" /> | |
<text x="1177.92" y="255.5" ></text> | |
</g> | |
<g > | |
<title>cranelift_codegen::isa::x86::abi::legalize_signature::hdcf9074841354b32 (134 samples, 0.19%)</title><rect x="81.6" y="181" width="2.3" height="15.0" fill="rgb(210,58,49)" rx="2" ry="2" /> | |
<text x="84.64" y="191.5" ></text> | |
</g> | |
<g > | |
<title>core::ptr::real_drop_in_place::hf895bb87fb92c73b (37 samples, 0.05%)</title><rect x="253.2" y="325" width="0.6" height="15.0" fill="rgb(220,204,45)" rx="2" ry="2" /> | |
<text x="256.17" y="335.5" ></text> | |
</g> | |
<g > | |
<title>cranelift_codegen::ir::function::Function::update_encoding::hf75ec520bc911a0c (121 samples, 0.17%)</title><rect x="84.9" y="181" width="2.0" height="15.0" fill="rgb(207,227,22)" rx="2" ry="2" /> | |
<text x="87.89" y="191.5" ></text> | |
</g> | |
<g > | |
<title>cranelift_codegen::ir::dfg::DataFlowGraph::append_ebb_param::h7014c3b1302a9186 (68 samples, 0.10%)</title><rect x="804.9" y="293" width="1.2" height="15.0" fill="rgb(221,10,24)" rx="2" ry="2" /> | |
<text x="807.93" y="303.5" ></text> | |
</g> | |
<g > | |
<title>start_thread (42 samples, 0.06%)</title><rect x="188.3" y="421" width="0.7" height="15.0" fill="rgb(211,86,34)" rx="2" ry="2" /> | |
<text x="191.34" y="431.5" ></text> | |
</g> | |
<g > | |
<title>_int_malloc (6 samples, 0.01%)</title><rect x="809.4" y="245" width="0.1" height="15.0" fill="rgb(235,81,7)" rx="2" ry="2" /> | |
<text x="812.35" y="255.5" ></text> | |
</g> | |
<g > | |
<title>alloc::raw_vec::RawVec$LT$T$C$A$GT$::reserve::hd6c8f26eb3c9fb4b (19 samples, 0.03%)</title><rect x="18.7" y="261" width="0.3" height="15.0" fill="rgb(251,100,12)" rx="2" ry="2" /> | |
<text x="21.69" y="271.5" ></text> | |
</g> | |
<g > | |
<title>std::collections::hash::map::RandomState::new::KEYS::__getit::hc919284a97fb9164 (6 samples, 0.01%)</title><rect x="824.2" y="325" width="0.1" height="15.0" fill="rgb(231,158,9)" rx="2" ry="2" /> | |
<text x="827.18" y="335.5" ></text> | |
</g> | |
<g > | |
<title>_ZN16cranelift_entity4list17ListPool$LT$T$GT$7realloc17h94c8a4e9c97c23a9E.llvm.776987249141506950 (36 samples, 0.05%)</title><rect x="16.7" y="245" width="0.6" height="15.0" fill="rgb(243,67,34)" rx="2" ry="2" /> | |
<text x="19.71" y="255.5" ></text> | |
</g> | |
<g > | |
<title>std::sys::unix::time::inner::Instant::now::h23f1bea5949f1bbd (7 samples, 0.01%)</title><rect x="112.1" y="165" width="0.1" height="15.0" fill="rgb(253,130,11)" rx="2" ry="2" /> | |
<text x="115.08" y="175.5" ></text> | |
</g> | |
<g > | |
<title>__GI___libc_malloc (8 samples, 0.01%)</title><rect x="122.5" y="197" width="0.1" height="15.0" fill="rgb(224,84,21)" rx="2" ry="2" /> | |
<text x="125.50" y="207.5" ></text> | |
</g> | |
<g > | |
<title>vm_munmap (227 samples, 0.32%)</title><rect x="233.2" y="277" width="3.8" height="15.0" fill="rgb(251,106,3)" rx="2" ry="2" /> | |
<text x="236.23" y="287.5" ></text> | |
</g> | |
<g > | |
<title>[[vdso]] (10 samples, 0.01%)</title><rect x="127.1" y="101" width="0.2" height="15.0" fill="rgb(239,104,40)" rx="2" ry="2" /> | |
<text x="130.10" y="111.5" ></text> | |
</g> | |
<g > | |
<title>cranelift_codegen::isa::x86::abi::prologue_epilogue::h9cb24b877f7c4837 (143 samples, 0.20%)</title><rect x="1155.1" y="261" width="2.4" height="15.0" fill="rgb(230,94,0)" rx="2" ry="2" /> | |
<text x="1158.05" y="271.5" ></text> | |
</g> | |
<g > | |
<title>__sigprocmask (540 samples, 0.77%)</title><rect x="1180.9" y="421" width="9.1" height="15.0" fill="rgb(218,57,6)" rx="2" ry="2" /> | |
<text x="1183.90" y="431.5" ></text> | |
</g> | |
<g > | |
<title>cranelift_codegen::regalloc::liverange::GenericLiveRange$LT$PO$GT$::extend_in_ebb::hbdb01049c0b9a2e0 (29 samples, 0.04%)</title><rect x="151.5" y="197" width="0.5" height="15.0" fill="rgb(205,140,12)" rx="2" ry="2" /> | |
<text x="154.53" y="207.5" ></text> | |
</g> | |
<g > | |
<title>_$LT$cranelift_codegen..ir..sourceloc..SourceLoc$u20$as$u20$core..default..Default$GT$::default::had3d9d3378f9c8f6 (6 samples, 0.01%)</title><rect x="810.9" y="293" width="0.1" height="15.0" fill="rgb(246,229,32)" rx="2" ry="2" /> | |
<text x="813.92" y="303.5" ></text> | |
</g> | |
<g > | |
<title>anon_vma_interval_tree_remove (10 samples, 0.01%)</title><rect x="269.6" y="165" width="0.2" height="15.0" fill="rgb(238,153,41)" rx="2" ry="2" /> | |
<text x="272.60" y="175.5" ></text> | |
</g> | |
<g > | |
<title>wasmparser::binary_reader::BinaryReader::read_var_u32::h9f3e844d80d20a5e (78 samples, 0.11%)</title><rect x="533.2" y="277" width="1.3" height="15.0" fill="rgb(238,3,22)" rx="2" ry="2" /> | |
<text x="536.20" y="287.5" ></text> | |
</g> | |
<g > | |
<title>alloc::sync::Arc$LT$T$GT$::drop_slow::h5f3b24d142b4e9b8 (11 samples, 0.02%)</title><rect x="189.5" y="181" width="0.2" height="15.0" fill="rgb(220,71,34)" rx="2" ry="2" /> | |
<text x="192.47" y="191.5" ></text> | |
</g> | |
<g > | |
<title>cranelift_codegen::regalloc::reload::Context::insert_spill::heb310b7f97e05ad2 (45 samples, 0.06%)</title><rect x="1174.1" y="293" width="0.7" height="15.0" fill="rgb(252,27,12)" rx="2" ry="2" /> | |
<text x="1177.07" y="303.5" ></text> | |
</g> | |
<g > | |
<title>_$LT$cranelift_codegen..settings..Builder$u20$as$u20$cranelift_codegen..settings..Configurable$GT$::set::h176f1ed6e0099d99 (55 samples, 0.08%)</title><rect x="354.9" y="309" width="0.9" height="15.0" fill="rgb(236,166,25)" rx="2" ry="2" /> | |
<text x="357.90" y="319.5" ></text> | |
</g> | |
<g > | |
<title>__GI___libc_malloc (6 samples, 0.01%)</title><rect x="1168.2" y="181" width="0.1" height="15.0" fill="rgb(244,114,17)" rx="2" ry="2" /> | |
<text x="1171.24" y="191.5" ></text> | |
</g> | |
<g > | |
<title>__vdso_clock_gettime (6 samples, 0.01%)</title><rect x="1160.1" y="181" width="0.1" height="15.0" fill="rgb(218,127,28)" rx="2" ry="2" /> | |
<text x="1163.08" y="191.5" ></text> | |
</g> | |
<g > | |
<title>cranelift_codegen::ir::instructions::InstructionData::typevar_operand::hbf9a7e821f2ceac3 (6 samples, 0.01%)</title><rect x="1154.5" y="213" width="0.1" height="15.0" fill="rgb(240,183,47)" rx="2" ry="2" /> | |
<text x="1157.48" y="223.5" ></text> | |
</g> | |
<g > | |
<title>alloc::raw_vec::RawVec$LT$T$C$A$GT$::reserve::hc8a0fc8526f8c69b (18 samples, 0.03%)</title><rect x="321.3" y="277" width="0.3" height="15.0" fill="rgb(219,32,49)" rx="2" ry="2" /> | |
<text x="324.35" y="287.5" ></text> | |
</g> | |
<g > | |
<title>wasmparser::validator::ValidatingParser::new::hf8cf84418abf20c9 (15 samples, 0.02%)</title><rect x="196.6" y="165" width="0.3" height="15.0" fill="rgb(224,194,8)" rx="2" ry="2" /> | |
<text x="199.60" y="175.5" ></text> | |
</g> | |
<g > | |
<title>__GI___exp (363 samples, 0.52%)</title><rect x="879.5" y="405" width="6.1" height="15.0" fill="rgb(222,104,48)" rx="2" ry="2" /> | |
<text x="882.55" y="415.5" ></text> | |
</g> | |
<g > | |
<title>std::sys::unix::time::inner::Instant::now::h23f1bea5949f1bbd (16 samples, 0.02%)</title><rect x="124.4" y="197" width="0.3" height="15.0" fill="rgb(216,51,7)" rx="2" ry="2" /> | |
<text x="127.42" y="207.5" ></text> | |
</g> | |
<g > | |
<title>alloc::raw_vec::RawVec$LT$T$C$A$GT$::reserve::h8388d76edb66302c (22 samples, 0.03%)</title><rect x="735.0" y="325" width="0.4" height="15.0" fill="rgb(237,100,18)" rx="2" ry="2" /> | |
<text x="737.99" y="335.5" ></text> | |
</g> | |
<g > | |
<title>cranelift_entity::sparse::SparseMap$LT$K$C$V$GT$::insert::h31013d437c52e258 (20 samples, 0.03%)</title><rect x="142.7" y="165" width="0.3" height="15.0" fill="rgb(236,126,2)" rx="2" ry="2" /> | |
<text x="145.70" y="175.5" ></text> | |
</g> | |
<g > | |
<title>std::time::Instant::elapsed::h8e307314b2acf9be (12 samples, 0.02%)</title><rect x="130.0" y="181" width="0.2" height="15.0" fill="rgb(241,119,6)" rx="2" ry="2" /> | |
<text x="133.00" y="191.5" ></text> | |
</g> | |
<g > | |
<title>std::time::Instant::elapsed::h8e307314b2acf9be (10 samples, 0.01%)</title><rect x="166.3" y="197" width="0.1" height="15.0" fill="rgb(250,1,49)" rx="2" ry="2" /> | |
<text x="169.28" y="207.5" ></text> | |
</g> | |
<g > | |
<title>wasmer_clif_fork_frontend::frontend::FunctionBuilder::append_ebb_params_for_function_params::h07f799cc3d985229 (86 samples, 0.12%)</title><rect x="804.6" y="309" width="1.5" height="15.0" fill="rgb(214,93,47)" rx="2" ry="2" /> | |
<text x="807.63" y="319.5" ></text> | |
</g> | |
<g > | |
<title>__GI___libc_malloc (8 samples, 0.01%)</title><rect x="140.8" y="181" width="0.1" height="15.0" fill="rgb(250,143,48)" rx="2" ry="2" /> | |
<text x="143.75" 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::h157f2592beb19670 (190 samples, 0.27%)</title><rect x="169.4" y="213" width="3.2" height="15.0" fill="rgb(239,218,9)" rx="2" ry="2" /> | |
<text x="172.44" y="223.5" ></text> | |
</g> | |
<g > | |
<title>wasmer_runtime::compile_with_config::h3146f6a9cd30dfc8 (460 samples, 0.66%)</title><rect x="189.8" y="229" width="7.8" height="15.0" fill="rgb(242,132,24)" rx="2" ry="2" /> | |
<text x="192.82" y="239.5" ></text> | |
</g> | |
<g > | |
<title>cranelift_codegen::ir::dfg::DataFlowGraph::make_inst_results_reusing::h668204b844797576 (7 samples, 0.01%)</title><rect x="89.6" y="133" width="0.1" height="15.0" fill="rgb(209,148,29)" rx="2" ry="2" /> | |
<text x="92.61" y="143.5" ></text> | |
</g> | |
<g > | |
<title>__GI___libc_realloc (23 samples, 0.03%)</title><rect x="1179.6" y="277" width="0.4" height="15.0" fill="rgb(205,164,9)" rx="2" ry="2" /> | |
<text x="1182.59" y="287.5" ></text> | |
</g> | |
<g > | |
<title>core::ptr::real_drop_in_place::h8e38f4c4f35fb102 (142 samples, 0.20%)</title><rect x="183.1" y="293" width="2.4" height="15.0" fill="rgb(221,136,50)" rx="2" ry="2" /> | |
<text x="186.13" y="303.5" ></text> | |
</g> | |
<g > | |
<title>__vdso_clock_gettime (7 samples, 0.01%)</title><rect x="1159.4" y="181" width="0.1" height="15.0" fill="rgb(234,166,31)" rx="2" ry="2" /> | |
<text x="1162.38" y="191.5" ></text> | |
</g> | |
<g > | |
<title>__GI___libc_malloc (16 samples, 0.02%)</title><rect x="102.0" y="181" width="0.2" height="15.0" fill="rgb(221,127,13)" rx="2" ry="2" /> | |
<text x="104.95" y="191.5" ></text> | |
</g> | |
<g > | |
<title>std::sys::unix::time::inner::now::ha10452f37b2930c5 (8 samples, 0.01%)</title><rect x="1161.2" y="245" width="0.1" height="15.0" fill="rgb(228,16,41)" rx="2" ry="2" /> | |
<text x="1164.19" y="255.5" ></text> | |
</g> | |
<g > | |
<title>std::time::Instant::elapsed::h8e307314b2acf9be (17 samples, 0.02%)</title><rect x="175.1" y="197" width="0.3" height="15.0" fill="rgb(220,67,12)" rx="2" ry="2" /> | |
<text x="178.12" y="207.5" ></text> | |
</g> | |
<g > | |
<title>do_error_trap (68 samples, 0.10%)</title><rect x="11.9" y="405" width="1.1" height="15.0" fill="rgb(230,183,25)" rx="2" ry="2" /> | |
<text x="14.87" y="415.5" ></text> | |
</g> | |
<g > | |
<title>_int_malloc (8 samples, 0.01%)</title><rect x="1176.6" y="229" width="0.1" height="15.0" fill="rgb(207,168,29)" rx="2" ry="2" /> | |
<text x="1179.60" y="239.5" ></text> | |
</g> | |
<g > | |
<title>alloc::raw_vec::RawVec$LT$T$C$A$GT$::reserve::h35e85fcd2e2f9b0d (23 samples, 0.03%)</title><rect x="200.6" y="213" width="0.4" height="15.0" fill="rgb(227,75,35)" rx="2" ry="2" /> | |
<text x="203.58" y="223.5" ></text> | |
</g> | |
<g > | |
<title>[[vdso]] (6 samples, 0.01%)</title><rect x="153.6" y="85" width="0.1" height="15.0" fill="rgb(249,206,44)" rx="2" ry="2" /> | |
<text x="156.58" y="95.5" ></text> | |
</g> | |
<g > | |
<title>__GI___libc_malloc (9 samples, 0.01%)</title><rect x="158.8" y="181" width="0.1" height="15.0" fill="rgb(244,75,11)" rx="2" ry="2" /> | |
<text x="161.76" y="191.5" ></text> | |
</g> | |
<g > | |
<title>do_mmap (267 samples, 0.38%)</title><rect x="349.7" y="197" width="4.5" height="15.0" fill="rgb(205,214,36)" rx="2" ry="2" /> | |
<text x="352.70" y="207.5" ></text> | |
</g> | |
<g > | |
<title>_$LT$cranelift_codegen..isa..enc_tables..Encodings$u20$as$u20$core..iter..traits..iterator..Iterator$GT$::next::he6ba202105922eb5 (31 samples, 0.04%)</title><rect x="105.5" y="181" width="0.5" height="15.0" fill="rgb(253,118,34)" rx="2" ry="2" /> | |
<text x="108.50" y="191.5" ></text> | |
</g> | |
<g > | |
<title>__GI___libc_malloc (18 samples, 0.03%)</title><rect x="817.6" y="309" width="0.3" height="15.0" fill="rgb(228,101,24)" rx="2" ry="2" /> | |
<text x="820.59" y="319.5" ></text> | |
</g> | |
<g > | |
<title>cranelift_codegen::context::Context::new::hb2c1be51d6979949 (15 samples, 0.02%)</title><rect x="60.8" y="341" width="0.2" height="15.0" fill="rgb(245,80,46)" rx="2" ry="2" /> | |
<text x="63.77" y="351.5" ></text> | |
</g> | |
<g > | |
<title>do_munmap (10 samples, 0.01%)</title><rect x="189.5" y="69" width="0.2" height="15.0" fill="rgb(218,166,4)" rx="2" ry="2" /> | |
<text x="192.49" y="79.5" ></text> | |
</g> | |
<g > | |
<title>std::time::Instant::now::h33d2ba6042def2d2 (7 samples, 0.01%)</title><rect x="38.6" y="245" width="0.1" height="15.0" fill="rgb(218,169,46)" rx="2" ry="2" /> | |
<text x="41.55" y="255.5" ></text> | |
</g> | |
<g > | |
<title>cranelift_codegen::regalloc::spilling::Spilling::run::hbc5ba3177617b881 (59 samples, 0.08%)</title><rect x="1179.4" y="325" width="1.0" height="15.0" fill="rgb(237,26,39)" rx="2" ry="2" /> | |
<text x="1182.39" y="335.5" ></text> | |
</g> | |
<g > | |
<title>rocinante::stoke::whitelist::get_equiv_instr::h0d13bcc03db4a9ca (204 samples, 0.29%)</title><rect x="1143.4" y="389" width="3.4" height="15.0" fill="rgb(245,53,27)" rx="2" ry="2" /> | |
<text x="1146.40" y="399.5" ></text> | |
</g> | |
<g > | |
<title>core::ptr::real_drop_in_place::hb35dbfa927a2ec4a (45 samples, 0.06%)</title><rect x="239.8" y="373" width="0.8" height="15.0" fill="rgb(254,27,22)" rx="2" ry="2" /> | |
<text x="242.83" y="383.5" ></text> | |
</g> | |
<g > | |
<title>cranelift_codegen::regalloc::solver::Solver::schedule_moves::h81b194ab48ac25d3 (16 samples, 0.02%)</title><rect x="1177.9" y="309" width="0.3" height="15.0" fill="rgb(239,102,11)" rx="2" ry="2" /> | |
<text x="1180.89" y="319.5" ></text> | |
</g> | |
<g > | |
<title>cranelift_codegen::flowgraph::ControlFlowGraph::compute::hdce42828fa3e59cb (25 samples, 0.04%)</title><rect x="38.4" y="293" width="0.4" height="15.0" fill="rgb(235,102,16)" rx="2" ry="2" /> | |
<text x="41.39" y="303.5" ></text> | |
</g> | |
<g > | |
<title>rayon::iter::plumbing::bridge_producer_consumer::helper::h864336325ddf8446 (486 samples, 0.69%)</title><rect x="178.6" y="325" width="8.1" height="15.0" fill="rgb(222,157,36)" rx="2" ry="2" /> | |
<text x="181.57" y="335.5" ></text> | |
</g> | |
<g > | |
<title>cranelift_bforest::path::Path$LT$F$GT$::next::h50188cd678c454ba (16 samples, 0.02%)</title><rect x="116.0" y="197" width="0.2" height="15.0" fill="rgb(232,38,44)" rx="2" ry="2" /> | |
<text x="118.96" y="207.5" ></text> | |
</g> | |
<g > | |
<title>__GI___libc_malloc (19 samples, 0.03%)</title><rect x="128.6" y="165" width="0.4" height="15.0" fill="rgb(238,41,10)" rx="2" ry="2" /> | |
<text x="131.64" y="175.5" ></text> | |
</g> | |
<g > | |
<title>cranelift_codegen::isa::x86::enc_tables::expand_sdivrem::h68f3c5d1142a2234 (17 samples, 0.02%)</title><rect x="1167.0" y="181" width="0.3" height="15.0" fill="rgb(215,94,47)" rx="2" ry="2" /> | |
<text x="1169.99" y="191.5" ></text> | |
</g> | |
<g > | |
<title>_int_realloc (6 samples, 0.01%)</title><rect x="1178.1" y="261" width="0.1" height="15.0" fill="rgb(244,53,18)" rx="2" ry="2" /> | |
<text x="1181.06" y="271.5" ></text> | |
</g> | |
<g > | |
<title>std::sys::unix::time::inner::now::ha10452f37b2930c5 (9 samples, 0.01%)</title><rect x="130.1" y="133" width="0.1" height="15.0" fill="rgb(212,45,39)" rx="2" ry="2" /> | |
<text x="133.06" y="143.5" ></text> | |
</g> | |
<g > | |
<title>_$LT$$RF$T$u20$as$u20$core..fmt..Display$GT$::fmt::h1604155e69b0be26 (15 samples, 0.02%)</title><rect x="871.3" y="309" width="0.3" height="15.0" fill="rgb(240,55,1)" rx="2" ry="2" /> | |
<text x="874.31" y="319.5" ></text> | |
</g> | |
<g > | |
<title>__perf_event__output_id_sample (8 samples, 0.01%)</title><rect x="268.0" y="133" width="0.2" height="15.0" fill="rgb(244,73,21)" rx="2" ry="2" /> | |
<text x="271.04" y="143.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.01%)</title><rect x="1177.9" y="293" width="0.2" height="15.0" fill="rgb(218,159,8)" rx="2" ry="2" /> | |
<text x="1180.89" y="303.5" ></text> | |
</g> | |
<g > | |
<title>cranelift_codegen::ir::layout::Layout::insert_inst::h352d76f498d27496 (8 samples, 0.01%)</title><rect x="95.3" y="133" width="0.1" height="15.0" fill="rgb(242,157,32)" rx="2" ry="2" /> | |
<text x="98.26" y="143.5" ></text> | |
</g> | |
<g > | |
<title>std::time::Instant::now::h33d2ba6042def2d2 (7 samples, 0.01%)</title><rect x="121.8" y="213" width="0.1" height="15.0" fill="rgb(232,18,31)" rx="2" ry="2" /> | |
<text x="124.76" y="223.5" ></text> | |
</g> | |
<g > | |
<title>core::ptr::real_drop_in_place::h2e9559b12c7fca43 (7 samples, 0.01%)</title><rect x="312.6" y="277" width="0.1" height="15.0" fill="rgb(251,29,31)" rx="2" ry="2" /> | |
<text x="315.58" y="287.5" ></text> | |
</g> | |
<g > | |
<title>_$LT$cranelift_codegen..isa..enc_tables..Encodings$u20$as$u20$core..iter..traits..iterator..Iterator$GT$::next::he6ba202105922eb5 (19 samples, 0.03%)</title><rect x="32.7" y="277" width="0.3" height="15.0" fill="rgb(234,170,49)" rx="2" ry="2" /> | |
<text x="35.65" y="287.5" ></text> | |
</g> | |
<g > | |
<title>std::time::Instant::now::h33d2ba6042def2d2 (11 samples, 0.02%)</title><rect x="1165.2" y="277" width="0.2" height="15.0" fill="rgb(215,208,21)" rx="2" ry="2" /> | |
<text x="1168.23" y="287.5" ></text> | |
</g> | |
<g > | |
<title>_ZN4core3ptr18real_drop_in_place17he728ca68fc8217d5E.llvm.1993498855596296840 (95 samples, 0.14%)</title><rect x="271.3" y="309" width="1.6" height="15.0" fill="rgb(245,178,0)" rx="2" ry="2" /> | |
<text x="274.28" y="319.5" ></text> | |
</g> | |
<g > | |
<title>cranelift_codegen::redundant_reload_remover::RedundantReloadRemover::processing_stack_maybe_push::h68b38d091c29c7ca (25 samples, 0.04%)</title><rect x="14.3" y="293" width="0.4" height="15.0" fill="rgb(245,22,10)" rx="2" ry="2" /> | |
<text x="17.29" y="303.5" ></text> | |
</g> | |
<g > | |
<title>std::time::Instant::now::h33d2ba6042def2d2 (8 samples, 0.01%)</title><rect x="1158.7" y="277" width="0.2" height="15.0" fill="rgb(216,0,28)" rx="2" ry="2" /> | |
<text x="1161.74" y="287.5" ></text> | |
</g> | |
<g > | |
<title>__GI___libc_malloc (633 samples, 0.90%)</title><rect x="1128.6" y="357" width="10.7" height="15.0" fill="rgb(213,145,7)" rx="2" ry="2" /> | |
<text x="1131.62" y="367.5" ></text> | |
</g> | |
<g > | |
<title>alloc::raw_vec::RawVec$LT$T$C$A$GT$::reserve::hde4c914cbb5df344 (113 samples, 0.16%)</title><rect x="699.4" y="293" width="1.9" height="15.0" fill="rgb(213,71,42)" rx="2" ry="2" /> | |
<text x="702.40" y="303.5" ></text> | |
</g> | |
<g > | |
<title>clear_page_erms (10 samples, 0.01%)</title><rect x="277.8" y="181" width="0.2" height="15.0" fill="rgb(240,200,50)" rx="2" ry="2" /> | |
<text x="280.82" y="191.5" ></text> | |
</g> | |
<g > | |
<title>sched_clock_cpu (9 samples, 0.01%)</title><rect x="268.2" y="101" width="0.2" height="15.0" fill="rgb(253,79,7)" rx="2" ry="2" /> | |
<text x="271.22" y="111.5" ></text> | |
</g> | |
<g > | |
<title>__alloc_pages_nodemask (39 samples, 0.06%)</title><rect x="304.9" y="197" width="0.6" height="15.0" fill="rgb(246,58,21)" rx="2" ry="2" /> | |
<text x="307.87" y="207.5" ></text> | |
</g> | |
<g > | |
<title>security_vm_enough_memory_mm (10 samples, 0.01%)</title><rect x="344.3" y="197" width="0.2" height="15.0" fill="rgb(215,85,7)" rx="2" ry="2" /> | |
<text x="347.33" y="207.5" ></text> | |
</g> | |
<g > | |
<title>cranelift_codegen::ir::dfg::DataFlowGraph::make_ebb::hb6736aafedf924cd (29 samples, 0.04%)</title><rect x="808.0" y="293" width="0.5" height="15.0" fill="rgb(218,147,2)" rx="2" ry="2" /> | |
<text x="811.01" y="303.5" ></text> | |
</g> | |
<g > | |
<title>_int_free (29 samples, 0.04%)</title><rect x="311.0" y="261" width="0.5" height="15.0" fill="rgb(235,96,39)" rx="2" ry="2" /> | |
<text x="314.00" 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 (565 samples, 0.81%)</title><rect x="222.3" y="325" width="9.5" height="15.0" fill="rgb(205,12,1)" rx="2" ry="2" /> | |
<text x="225.35" y="335.5" ></text> | |
</g> | |
<g > | |
<title>cranelift_codegen::regalloc::coalescing::DomForest::push_node::h7bf50934d429ea56 (41 samples, 0.06%)</title><rect x="131.6" y="197" width="0.7" height="15.0" fill="rgb(233,113,1)" rx="2" ry="2" /> | |
<text x="134.64" y="207.5" ></text> | |
</g> | |
<g > | |
<title>core::ptr::real_drop_in_place::h98f9fd73d14fd071 (1,246 samples, 1.78%)</title><rect x="756.1" y="325" width="20.9" height="15.0" fill="rgb(245,169,35)" rx="2" ry="2" /> | |
<text x="759.06" y="335.5" ></text> | |
</g> | |
<g > | |
<title>_int_free (675 samples, 0.96%)</title><rect x="713.2" y="309" width="11.3" height="15.0" fill="rgb(218,126,21)" rx="2" ry="2" /> | |
<text x="716.19" y="319.5" ></text> | |
</g> | |
<g > | |
<title>_ZN4core3ptr18real_drop_in_place17hbf1a2e7b1d7f1667E.llvm.2002196175208074555 (27 samples, 0.04%)</title><rect x="522.6" y="277" width="0.5" height="15.0" fill="rgb(241,43,7)" rx="2" ry="2" /> | |
<text x="525.64" y="287.5" ></text> | |
</g> | |
<g > | |
<title>cranelift_codegen::isa::encoding::base_size::he0d0831e71de2a0c (8 samples, 0.01%)</title><rect x="102.7" y="197" width="0.2" height="15.0" fill="rgb(228,22,10)" rx="2" ry="2" /> | |
<text x="105.74" y="207.5" ></text> | |
</g> | |
<g > | |
<title>_$LT$cranelift_codegen..isa..x86..Isa$u20$as$u20$cranelift_codegen..isa..TargetIsa$GT$::encoding_info::hb16d9ccef0913cd7 (6 samples, 0.01%)</title><rect x="107.4" y="197" width="0.1" height="15.0" fill="rgb(247,134,34)" rx="2" ry="2" /> | |
<text x="110.37" y="207.5" ></text> | |
</g> | |
<g > | |
<title>__mmap (406 samples, 0.58%)</title><rect x="289.6" y="293" width="6.9" height="15.0" fill="rgb(227,131,42)" rx="2" ry="2" /> | |
<text x="292.63" y="303.5" ></text> | |
</g> | |
<g > | |
<title>__perf_addr_filters_adjust (46 samples, 0.07%)</title><rect x="336.6" y="181" width="0.8" height="15.0" fill="rgb(237,149,49)" rx="2" ry="2" /> | |
<text x="339.62" y="191.5" ></text> | |
</g> | |
<g > | |
<title>mmap_region (224 samples, 0.32%)</title><rect x="292.2" y="181" width="3.7" height="15.0" fill="rgb(217,63,6)" rx="2" ry="2" /> | |
<text x="295.17" y="191.5" ></text> | |
</g> | |
<g > | |
<title>std::time::Instant::now::h33d2ba6042def2d2 (6 samples, 0.01%)</title><rect x="135.4" y="197" width="0.1" height="15.0" fill="rgb(245,102,18)" rx="2" ry="2" /> | |
<text x="138.37" y="207.5" ></text> | |
</g> | |
<g > | |
<title>do_syscall_64 (8 samples, 0.01%)</title><rect x="188.9" y="213" width="0.1" height="15.0" fill="rgb(245,17,28)" rx="2" ry="2" /> | |
<text x="191.90" y="223.5" ></text> | |
</g> | |
<g > | |
<title>std::sys::unix::time::inner::Instant::now::h23f1bea5949f1bbd (9 samples, 0.01%)</title><rect x="80.9" y="149" width="0.2" height="15.0" fill="rgb(248,211,6)" rx="2" ry="2" /> | |
<text x="83.92" y="159.5" ></text> | |
</g> | |
<g > | |
<title>__libc_calloc (9 samples, 0.01%)</title><rect x="1158.4" y="277" width="0.1" height="15.0" fill="rgb(248,225,26)" rx="2" ry="2" /> | |
<text x="1161.37" y="287.5" ></text> | |
</g> | |
<g > | |
<title>__split_vma (98 samples, 0.14%)</title><rect x="344.5" y="181" width="1.7" height="15.0" fill="rgb(213,64,22)" rx="2" ry="2" /> | |
<text x="347.52" y="191.5" ></text> | |
</g> | |
<g > | |
<title>__GI___clock_gettime (7 samples, 0.01%)</title><rect x="119.4" y="165" width="0.1" height="15.0" fill="rgb(241,221,52)" rx="2" ry="2" /> | |
<text x="122.38" y="175.5" ></text> | |
</g> | |
<g > | |
<title>std::time::Instant::now::h33d2ba6042def2d2 (6 samples, 0.01%)</title><rect x="1164.4" y="245" width="0.1" height="15.0" fill="rgb(232,101,52)" rx="2" ry="2" /> | |
<text x="1167.35" y="255.5" ></text> | |
</g> | |
<g > | |
<title>crossbeam_epoch::internal::Global::try_advance::hdfa3562e1e5e830a (8 samples, 0.01%)</title><rect x="188.7" y="181" width="0.1" height="15.0" fill="rgb(246,0,24)" rx="2" ry="2" /> | |
<text x="191.71" y="191.5" ></text> | |
</g> | |
<g > | |
<title>cranelift_codegen::regalloc::solver::Solver::add_kill::h253158fd0df01fa2 (8 samples, 0.01%)</title><rect x="143.6" y="197" width="0.1" height="15.0" fill="rgb(235,224,48)" rx="2" ry="2" /> | |
<text x="146.61" y="207.5" ></text> | |
</g> | |
<g > | |
<title>cranelift_codegen::ir::layout::Layout::first_inst::h725e0a525b001bd0 (12 samples, 0.02%)</title><rect x="326.9" y="309" width="0.2" height="15.0" fill="rgb(219,1,47)" rx="2" ry="2" /> | |
<text x="329.95" y="319.5" ></text> | |
</g> | |
<g > | |
<title>std::thread::local::fast::Key$LT$T$GT$::get::h1843b0ce52f9035a (17 samples, 0.02%)</title><rect x="796.6" y="293" width="0.2" height="15.0" fill="rgb(223,193,2)" rx="2" ry="2" /> | |
<text x="799.55" y="303.5" ></text> | |
</g> | |
<g > | |
<title>_int_realloc (11 samples, 0.02%)</title><rect x="1180.0" y="261" width="0.2" height="15.0" fill="rgb(226,55,50)" rx="2" ry="2" /> | |
<text x="1182.98" y="271.5" ></text> | |
</g> | |
<g > | |
<title>alloc::raw_vec::RawVec$LT$T$C$A$GT$::reserve::h5bb4661d248be310 (33 samples, 0.05%)</title><rect x="198.8" y="181" width="0.5" height="15.0" fill="rgb(248,228,29)" rx="2" ry="2" /> | |
<text x="201.77" y="191.5" ></text> | |
</g> | |
<g > | |
<title>_int_free (30 samples, 0.04%)</title><rect x="310.4" y="277" width="0.5" height="15.0" fill="rgb(253,203,19)" rx="2" ry="2" /> | |
<text x="313.40" y="287.5" ></text> | |
</g> | |
<g > | |
<title>std::sys::unix::time::inner::Instant::now::h23f1bea5949f1bbd (24 samples, 0.03%)</title><rect x="175.6" y="213" width="0.4" height="15.0" fill="rgb(234,87,54)" rx="2" ry="2" /> | |
<text x="178.59" y="223.5" ></text> | |
</g> | |
<g > | |
<title>cranelift_codegen::stack_layout::layout_stack::h292a1cd27b02b094 (8 samples, 0.01%)</title><rect x="98.5" y="181" width="0.2" height="15.0" fill="rgb(211,18,39)" rx="2" ry="2" /> | |
<text x="101.52" y="191.5" ></text> | |
</g> | |
<g > | |
<title>__GI___libc_malloc (14 samples, 0.02%)</title><rect x="805.7" y="229" width="0.3" height="15.0" fill="rgb(237,207,18)" rx="2" ry="2" /> | |
<text x="808.74" y="239.5" ></text> | |
</g> | |
<g > | |
<title>rocinante::stoke::transform::Transform::operate::hbf80625ac53e38d8 (2,923 samples, 4.17%)</title><rect x="1097.7" y="405" width="49.1" height="15.0" fill="rgb(205,10,24)" rx="2" ry="2" /> | |
<text x="1100.68" y="415.5" >roci..</text> | |
</g> | |
<g > | |
<title>core::ptr::real_drop_in_place::h7fa7a2046fdc054a (37 samples, 0.05%)</title><rect x="310.9" y="293" width="0.6" height="15.0" fill="rgb(246,36,26)" rx="2" ry="2" /> | |
<text x="313.90" y="303.5" ></text> | |
</g> | |
<g > | |
<title>alloc::vec::Vec$LT$T$GT$::resize::h4f8d39030b6aaee7 (26 samples, 0.04%)</title><rect x="812.0" y="293" width="0.5" height="15.0" fill="rgb(245,33,26)" rx="2" ry="2" /> | |
<text x="815.03" y="303.5" ></text> | |
</g> | |
<g > | |
<title>_int_malloc (44 samples, 0.06%)</title><rect x="176.8" y="261" width="0.7" height="15.0" fill="rgb(244,185,18)" rx="2" ry="2" /> | |
<text x="179.77" y="271.5" ></text> | |
</g> | |
<g > | |
<title>_int_malloc (6 samples, 0.01%)</title><rect x="17.2" y="165" width="0.1" height="15.0" fill="rgb(208,57,37)" rx="2" ry="2" /> | |
<text x="20.20" y="175.5" ></text> | |
</g> | |
<g > | |
<title>__rdl_dealloc (8 samples, 0.01%)</title><rect x="1123.0" y="373" width="0.1" height="15.0" fill="rgb(205,127,52)" rx="2" ry="2" /> | |
<text x="1125.95" y="383.5" ></text> | |
</g> | |
<g > | |
<title>__vma_rb_erase (8 samples, 0.01%)</title><rect x="346.6" y="165" width="0.1" height="15.0" fill="rgb(220,156,20)" rx="2" ry="2" /> | |
<text x="349.59" y="175.5" ></text> | |
</g> | |
<g > | |
<title>alloc::vec::Vec$LT$T$GT$::into_boxed_slice::h1ce3360cecae11fd (55 samples, 0.08%)</title><rect x="459.0" y="293" width="0.9" height="15.0" fill="rgb(210,66,30)" rx="2" ry="2" /> | |
<text x="462.02" y="303.5" ></text> | |
</g> | |
<g > | |
<title>cranelift_codegen::context::Context::compile::h9fe1ff28e88fe30f (235 samples, 0.33%)</title><rect x="1176.4" y="357" width="4.0" height="15.0" fill="rgb(230,100,10)" rx="2" ry="2" /> | |
<text x="1179.43" y="367.5" ></text> | |
</g> | |
<g > | |
<title>_int_malloc (8 samples, 0.01%)</title><rect x="329.5" y="245" width="0.2" height="15.0" fill="rgb(209,179,10)" rx="2" ry="2" /> | |
<text x="332.52" y="255.5" ></text> | |
</g> | |
<g > | |
<title>std::sys::unix::time::inner::Instant::now::h23f1bea5949f1bbd (19 samples, 0.03%)</title><rect x="164.2" y="197" width="0.3" height="15.0" fill="rgb(224,123,9)" rx="2" ry="2" /> | |
<text x="167.19" y="207.5" ></text> | |
</g> | |
<g > | |
<title>alloc::raw_vec::RawVec$LT$T$C$A$GT$::reserve::h500ef385b8747b29 (26 samples, 0.04%)</title><rect x="808.1" y="277" width="0.4" height="15.0" fill="rgb(239,182,1)" rx="2" ry="2" /> | |
<text x="811.06" y="287.5" ></text> | |
</g> | |
<g > | |
<title>unmap_region (347 samples, 0.49%)</title><rect x="225.5" y="213" width="5.9" height="15.0" fill="rgb(236,11,16)" rx="2" ry="2" /> | |
<text x="228.54" y="223.5" ></text> | |
</g> | |
<g > | |
<title>_ZN4core5slice4sort7recurse17hcfda5acadaf50c0aE.llvm.15195122248153170019 (33 samples, 0.05%)</title><rect x="1167.4" y="213" width="0.5" height="15.0" fill="rgb(240,43,2)" rx="2" ry="2" /> | |
<text x="1170.38" y="223.5" ></text> | |
</g> | |
<g > | |
<title>__rust_realloc (7 samples, 0.01%)</title><rect x="1043.6" y="341" width="0.1" height="15.0" fill="rgb(230,55,18)" rx="2" ry="2" /> | |
<text x="1046.61" y="351.5" ></text> | |
</g> | |
<g > | |
<title>__libc_calloc (259 samples, 0.37%)</title><rect x="255.6" y="293" width="4.4" height="15.0" fill="rgb(246,42,19)" rx="2" ry="2" /> | |
<text x="258.64" y="303.5" ></text> | |
</g> | |
<g > | |
<title>cranelift_entity::sparse::SparseMap$LT$K$C$V$GT$::insert::h31013d437c52e258 (38 samples, 0.05%)</title><rect x="143.9" y="181" width="0.6" height="15.0" fill="rgb(211,117,20)" rx="2" ry="2" /> | |
<text x="146.86" y="191.5" ></text> | |
</g> | |
<g > | |
<title>__perf_event__output_id_sample (12 samples, 0.02%)</title><rect x="343.0" y="133" width="0.2" height="15.0" fill="rgb(229,111,19)" rx="2" ry="2" /> | |
<text x="345.96" y="143.5" ></text> | |
</g> | |
<g > | |
<title>__GI___libc_realloc (6 samples, 0.01%)</title><rect x="200.0" y="181" width="0.1" height="15.0" fill="rgb(210,125,22)" rx="2" ry="2" /> | |
<text x="203.01" y="191.5" ></text> | |
</g> | |
<g > | |
<title>alloc::raw_vec::RawVec$LT$T$C$A$GT$::reserve::h500ef385b8747b29 (14 samples, 0.02%)</title><rect x="162.5" y="149" width="0.2" height="15.0" fill="rgb(224,197,16)" rx="2" ry="2" /> | |
<text x="165.49" y="159.5" ></text> | |
</g> | |
<g > | |
<title>_$LT$wasmer_runtime_core..codegen..StreamingCompiler$LT$MCG$C$FCG$C$RM$C$E$C$CGEN$GT$$u20$as$u20$wasmer_runtime_core..backend..Compiler$GT$::compile::h8e59f93f7f287bf9 (2,799 samples, 3.99%)</title><rect x="14.0" y="389" width="47.0" height="15.0" fill="rgb(247,31,16)" rx="2" ry="2" /> | |
<text x="16.95" y="399.5" >_$LT..</text> | |
</g> | |
<g > | |
<title>cranelift_codegen::ir::instructions::InstructionData::arguments::h70ecdef19e20b02a (16 samples, 0.02%)</title><rect x="110.4" y="181" width="0.2" height="15.0" fill="rgb(222,59,41)" rx="2" ry="2" /> | |
<text x="113.36" y="191.5" ></text> | |
</g> | |
<g > | |
<title>_int_free (17 samples, 0.02%)</title><rect x="150.0" y="117" width="0.3" height="15.0" fill="rgb(206,125,50)" rx="2" ry="2" /> | |
<text x="152.98" y="127.5" ></text> | |
</g> | |
<g > | |
<title>_$LT$cranelift_codegen..timing..details..TimingToken$u20$as$u20$core..ops..drop..Drop$GT$::drop::h1b19c2a93ee0a091 (18 samples, 0.03%)</title><rect x="1159.2" y="277" width="0.3" height="15.0" fill="rgb(241,29,11)" rx="2" ry="2" /> | |
<text x="1162.19" y="287.5" ></text> | |
</g> | |
<g > | |
<title>std::sys::unix::alloc::_$LT$impl$u20$core..alloc..GlobalAlloc$u20$for$u20$std..alloc..System$GT$::dealloc::h000dc0e1d3b4be28 (6 samples, 0.01%)</title><rect x="999.0" y="341" width="0.1" height="15.0" fill="rgb(228,144,53)" rx="2" ry="2" /> | |
<text x="1001.98" y="351.5" ></text> | |
</g> | |
<g > | |
<title>alloc::raw_vec::RawVec$LT$T$C$A$GT$::reserve::hc8a0fc8526f8c69b (6 samples, 0.01%)</title><rect x="159.5" y="181" width="0.1" height="15.0" fill="rgb(211,219,4)" rx="2" ry="2" /> | |
<text x="162.52" y="191.5" ></text> | |
</g> | |
<g > | |
<title>std::sys::unix::time::inner::Instant::now::h23f1bea5949f1bbd (14 samples, 0.02%)</title><rect x="158.2" y="149" width="0.3" height="15.0" fill="rgb(233,84,49)" rx="2" ry="2" /> | |
<text x="161.22" y="159.5" ></text> | |
</g> | |
<g > | |
<title>cranelift_codegen::isa::TargetIsa::frontend_config::hf96688022be04768 (6 samples, 0.01%)</title><rect x="804.5" y="309" width="0.1" height="15.0" fill="rgb(236,117,18)" rx="2" ry="2" /> | |
<text x="807.53" y="319.5" ></text> | |
</g> | |
<g > | |
<title>rayon_core::current_num_threads::hd153282d6ebc6706 (26 samples, 0.04%)</title><rect x="280.9" y="245" width="0.5" height="15.0" fill="rgb(243,53,0)" rx="2" ry="2" /> | |
<text x="283.92" y="255.5" ></text> | |
</g> | |
<g > | |
<title>std::sys::unix::time::inner::Instant::now::h23f1bea5949f1bbd (6 samples, 0.01%)</title><rect x="38.1" y="229" width="0.1" height="15.0" fill="rgb(227,85,32)" rx="2" ry="2" /> | |
<text x="41.08" y="239.5" ></text> | |
</g> | |
<g > | |
<title>alloc::raw_vec::RawVec$LT$T$C$A$GT$::reserve::h500ef385b8747b29 (24 samples, 0.03%)</title><rect x="806.8" y="245" width="0.4" height="15.0" fill="rgb(232,203,52)" rx="2" ry="2" /> | |
<text x="809.78" y="255.5" ></text> | |
</g> | |
<g > | |
<title>std::sys::unix::time::inner::now::ha10452f37b2930c5 (16 samples, 0.02%)</title><rect x="124.4" y="181" width="0.3" height="15.0" fill="rgb(240,1,25)" rx="2" ry="2" /> | |
<text x="127.42" y="191.5" ></text> | |
</g> | |
<g > | |
<title>alloc::sync::Arc$LT$T$GT$::drop_slow::h585962fb74e37fd1 (297 samples, 0.42%)</title><rect x="232.1" y="373" width="5.0" height="15.0" fill="rgb(237,14,47)" rx="2" ry="2" /> | |
<text x="235.08" y="383.5" ></text> | |
</g> | |
<g > | |
<title>_int_malloc (614 samples, 0.88%)</title><rect x="593.6" y="293" width="10.3" height="15.0" fill="rgb(240,212,3)" rx="2" ry="2" /> | |
<text x="596.61" y="303.5" ></text> | |
</g> | |
<g > | |
<title>cranelift_codegen::ir::layout::Layout::insert_inst::h352d76f498d27496 (12 samples, 0.02%)</title><rect x="1171.2" y="261" width="0.2" height="15.0" fill="rgb(216,93,51)" rx="2" ry="2" /> | |
<text x="1174.22" y="271.5" ></text> | |
</g> | |
<g > | |
<title>__GI___mprotect (7 samples, 0.01%)</title><rect x="190.2" y="133" width="0.1" height="15.0" fill="rgb(206,52,35)" rx="2" ry="2" /> | |
<text x="193.21" y="143.5" ></text> | |
</g> | |
<g > | |
<title>cranelift_codegen::regalloc::diversion::RegDiversions::apply::ha5ceacd048d67eac (10 samples, 0.01%)</title><rect x="102.9" y="197" width="0.1" height="15.0" fill="rgb(220,105,34)" rx="2" ry="2" /> | |
<text x="105.88" y="207.5" ></text> | |
</g> | |
<g > | |
<title>rayon_core::registry::WorkerThread::wait_until_cold::h7fe04d79d0f90279 (41 samples, 0.06%)</title><rect x="188.3" y="261" width="0.7" height="15.0" fill="rgb(241,71,9)" rx="2" ry="2" /> | |
<text x="191.34" y="271.5" ></text> | |
</g> | |
<g > | |
<title>_$LT$cranelift_codegen..timing..details..TimingToken$u20$as$u20$core..ops..drop..Drop$GT$::drop::h1b19c2a93ee0a091 (10 samples, 0.01%)</title><rect x="1164.3" y="277" width="0.2" height="15.0" fill="rgb(241,25,0)" rx="2" ry="2" /> | |
<text x="1167.29" y="287.5" ></text> | |
</g> | |
<g > | |
<title>_$LT$cranelift_codegen..timing..details..TimingToken$u20$as$u20$core..ops..drop..Drop$GT$::drop::h1b19c2a93ee0a091 (12 samples, 0.02%)</title><rect x="120.9" y="197" width="0.2" height="15.0" fill="rgb(241,121,45)" rx="2" ry="2" /> | |
<text x="123.91" y="207.5" ></text> | |
</g> | |
<g > | |
<title>hashbrown::raw::RawTable$LT$T$GT$::try_with_capacity::h7a6e6bae489d4fe9 (18 samples, 0.03%)</title><rect x="34.1" y="229" width="0.3" height="15.0" fill="rgb(238,143,52)" rx="2" ry="2" /> | |
<text x="37.06" y="239.5" ></text> | |
</g> | |
<g > | |
<title>_ZN4core3ptr18real_drop_in_place17hbf1a2e7b1d7f1667E.llvm.2002196175208074555 (113 samples, 0.16%)</title><rect x="549.0" y="277" width="1.9" height="15.0" fill="rgb(207,110,16)" rx="2" ry="2" /> | |
<text x="551.98" y="287.5" ></text> | |
</g> | |
<g > | |
<title>wasmer_clif_fork_wasm::state::func_state::FuncTranslationState::new::h6b2b81b0d4ac791a (29 samples, 0.04%)</title><rect x="813.0" y="293" width="0.5" height="15.0" fill="rgb(208,89,47)" rx="2" ry="2" /> | |
<text x="816.02" y="303.5" ></text> | |
</g> | |
<g > | |
<title>__GI___clock_gettime (7 samples, 0.01%)</title><rect x="1170.9" y="245" width="0.1" height="15.0" fill="rgb(252,188,35)" rx="2" ry="2" /> | |
<text x="1173.86" y="255.5" ></text> | |
</g> | |
<g > | |
<title>__x86_indirect_thunk_r14 (10 samples, 0.01%)</title><rect x="264.6" y="181" width="0.2" height="15.0" fill="rgb(234,42,4)" rx="2" ry="2" /> | |
<text x="267.59" y="191.5" ></text> | |
</g> | |
<g > | |
<title>_ZN3std4sync6rwlock15RwLock$LT$T$GT$4read17h11453e6976358159E.llvm.1752998059772103100 (136 samples, 0.19%)</title><rect x="799.8" y="309" width="2.3" height="15.0" fill="rgb(232,143,6)" rx="2" ry="2" /> | |
<text x="802.78" y="319.5" ></text> | |
</g> | |
<g > | |
<title>c2_chacha::guts::refill_wide::he4343866a1fa78ce (59 samples, 0.08%)</title><rect x="1140.1" y="357" width="0.9" height="15.0" fill="rgb(238,225,33)" rx="2" ry="2" /> | |
<text x="1143.05" y="367.5" ></text> | |
</g> | |
<g > | |
<title>wasmer_clif_fork_wasm::func_translator::FuncTranslator::new::hf4c7c586c59a333c (62 samples, 0.09%)</title><rect x="812.5" y="309" width="1.0" height="15.0" fill="rgb(247,86,9)" rx="2" ry="2" /> | |
<text x="815.46" y="319.5" ></text> | |
</g> | |
<g > | |
<title>_int_free (25 samples, 0.04%)</title><rect x="253.4" y="293" width="0.4" height="15.0" fill="rgb(245,13,35)" rx="2" ry="2" /> | |
<text x="256.36" y="303.5" ></text> | |
</g> | |
<g > | |
<title>cranelift_codegen::isa::x86::enc_tables::x86_expand::h65f50b7ad4fea636 (22 samples, 0.03%)</title><rect x="1167.0" y="197" width="0.4" height="15.0" fill="rgb(207,75,53)" rx="2" ry="2" /> | |
<text x="1169.99" y="207.5" ></text> | |
</g> | |
<g > | |
<title>memcpy_erms (10 samples, 0.01%)</title><rect x="353.0" y="101" width="0.2" height="15.0" fill="rgb(206,78,4)" rx="2" ry="2" /> | |
<text x="356.03" y="111.5" ></text> | |
</g> | |
<g > | |
<title>__GI___clock_gettime (22 samples, 0.03%)</title><rect x="175.6" y="181" width="0.4" height="15.0" fill="rgb(214,20,13)" rx="2" ry="2" /> | |
<text x="178.63" y="191.5" ></text> | |
</g> | |
<g > | |
<title>_$LT$core..iter..adapters..Map$LT$I$C$F$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$::fold::hb9f3d978c78fd9fa (9 samples, 0.01%)</title><rect x="878.6" y="341" width="0.2" height="15.0" fill="rgb(236,14,30)" rx="2" ry="2" /> | |
<text x="881.60" y="351.5" ></text> | |
</g> | |
<g > | |
<title>std::sys::unix::time::inner::Instant::now::h23f1bea5949f1bbd (8 samples, 0.01%)</title><rect x="1158.7" y="261" width="0.2" height="15.0" fill="rgb(249,145,15)" rx="2" ry="2" /> | |
<text x="1161.74" y="271.5" ></text> | |
</g> | |
<g > | |
<title>sys_mmap (8 samples, 0.01%)</title><rect x="190.7" y="85" width="0.1" height="15.0" fill="rgb(235,110,54)" rx="2" ry="2" /> | |
<text x="193.68" y="95.5" ></text> | |
</g> | |
<g > | |
<title>sys_mmap_pgoff (8 samples, 0.01%)</title><rect x="190.7" y="69" width="0.1" height="15.0" fill="rgb(251,131,35)" rx="2" ry="2" /> | |
<text x="193.68" y="79.5" ></text> | |
</g> | |
<g > | |
<title>wasmer_clif_backend::get_isa::he894f6446deff718 (203 samples, 0.29%)</title><rect x="327.9" y="309" width="3.4" height="15.0" fill="rgb(250,221,25)" rx="2" ry="2" /> | |
<text x="330.85" y="319.5" ></text> | |
</g> | |
<g > | |
<title>__vdso_clock_gettime (7 samples, 0.01%)</title><rect x="73.3" y="133" width="0.1" height="15.0" fill="rgb(213,206,35)" rx="2" ry="2" /> | |
<text x="76.28" y="143.5" ></text> | |
</g> | |
<g > | |
<title>_int_malloc (7 samples, 0.01%)</title><rect x="190.1" y="117" width="0.1" height="15.0" fill="rgb(251,155,38)" rx="2" ry="2" /> | |
<text x="193.09" y="127.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.01%)</title><rect x="513.1" y="245" width="0.2" height="15.0" fill="rgb(213,142,32)" rx="2" ry="2" /> | |
<text x="516.14" y="255.5" ></text> | |
</g> | |
<g > | |
<title>_$LT$cranelift_codegen..isa..x86..Isa$u20$as$u20$cranelift_codegen..isa..TargetIsa$GT$::prologue_epilogue::ha0b7830888e212f4 (268 samples, 0.38%)</title><rect x="18.6" y="293" width="4.6" height="15.0" fill="rgb(244,198,30)" rx="2" ry="2" /> | |
<text x="21.64" y="303.5" ></text> | |
</g> | |
<g > | |
<title>security_mmap_file (9 samples, 0.01%)</title><rect x="354.3" y="197" width="0.1" height="15.0" fill="rgb(245,85,44)" rx="2" ry="2" /> | |
<text x="357.29" y="207.5" ></text> | |
</g> | |
<g > | |
<title>cranelift_codegen::topo_order::TopoOrder::next::h3ea49efe09e3a2f0 (61 samples, 0.09%)</title><rect x="128.2" y="197" width="1.1" height="15.0" fill="rgb(214,71,47)" rx="2" ry="2" /> | |
<text x="131.24" y="207.5" ></text> | |
</g> | |
<g > | |
<title>_$LT$alloc..vec..Vec$LT$T$GT$$u20$as$u20$core..clone..Clone$GT$::clone::h0250ef7ba6539343 (10 samples, 0.01%)</title><rect x="811.5" y="293" width="0.2" height="15.0" fill="rgb(244,22,38)" rx="2" ry="2" /> | |
<text x="814.49" y="303.5" ></text> | |
</g> | |
<g > | |
<title>_$LT$alloc..vec..Vec$LT$T$GT$$u20$as$u20$core..clone..Clone$GT$::clone::h5fc94b05e4d4a2c3 (39 samples, 0.06%)</title><rect x="63.2" y="245" width="0.6" height="15.0" fill="rgb(222,125,17)" rx="2" ry="2" /> | |
<text x="66.17" y="255.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::h7597a798dc77e23c (6 samples, 0.01%)</title><rect x="67.4" y="213" width="0.1" height="15.0" fill="rgb(231,19,28)" rx="2" ry="2" /> | |
<text x="70.38" y="223.5" ></text> | |
</g> | |
<g > | |
<title>_ZN17cranelift_codegen8regalloc6solver6Solver12add_live_var17hb8d34feccdc3c3d4E.llvm.529824060399144151 (9 samples, 0.01%)</title><rect x="43.7" y="277" width="0.2" height="15.0" fill="rgb(245,191,2)" rx="2" ry="2" /> | |
<text x="46.70" y="287.5" ></text> | |
</g> | |
<g > | |
<title>core::ptr::real_drop_in_place::h767229c0557115cd (61 samples, 0.09%)</title><rect x="309.2" y="277" width="1.0" height="15.0" fill="rgb(240,27,43)" rx="2" ry="2" /> | |
<text x="312.15" y="287.5" ></text> | |
</g> | |
<g > | |
<title>cranelift_codegen::dominator_tree::DominatorTreePreorder::compute::hb821b7ecbf347c37 (56 samples, 0.08%)</title><rect x="130.7" y="197" width="0.9" height="15.0" fill="rgb(207,69,35)" rx="2" ry="2" /> | |
<text x="133.68" y="207.5" ></text> | |
</g> | |
<g > | |
<title>__GI___libc_malloc (6 samples, 0.01%)</title><rect x="40.1" y="245" width="0.1" height="15.0" fill="rgb(220,46,53)" rx="2" ry="2" /> | |
<text x="43.07" y="255.5" ></text> | |
</g> | |
<g > | |
<title>cranelift_codegen::isa::x86::enc_tables::size_plus_maybe_sib_or_offset_for_in_reg_0::h45f17ad339ad9f42 (20 samples, 0.03%)</title><rect x="36.7" y="277" width="0.4" height="15.0" fill="rgb(244,9,31)" rx="2" ry="2" /> | |
<text x="39.74" y="287.5" ></text> | |
</g> | |
<g > | |
<title>_int_free (6 samples, 0.01%)</title><rect x="25.7" y="261" width="0.1" height="15.0" fill="rgb(212,14,47)" rx="2" ry="2" /> | |
<text x="28.72" y="271.5" ></text> | |
</g> | |
<g > | |
<title>anon_vma_interval_tree_remove (8 samples, 0.01%)</title><rect x="288.0" y="165" width="0.2" height="15.0" fill="rgb(231,184,11)" rx="2" ry="2" /> | |
<text x="291.05" y="175.5" ></text> | |
</g> | |
<g > | |
<title>std::time::Instant::now::h33d2ba6042def2d2 (8 samples, 0.01%)</title><rect x="1157.5" y="261" width="0.1" height="15.0" fill="rgb(214,151,33)" rx="2" ry="2" /> | |
<text x="1160.46" y="271.5" ></text> | |
</g> | |
<g > | |
<title>__GI___pthread_rwlock_wrlock (213 samples, 0.30%)</title><rect x="819.6" y="325" width="3.6" height="15.0" fill="rgb(247,17,16)" rx="2" ry="2" /> | |
<text x="822.61" y="335.5" ></text> | |
</g> | |
<g > | |
<title>std::sys_common::thread::start_thread::h761ac6d57710d65d (42 samples, 0.06%)</title><rect x="188.3" y="389" width="0.7" height="15.0" fill="rgb(225,206,10)" rx="2" ry="2" /> | |
<text x="191.34" y="399.5" ></text> | |
</g> | |
<g > | |
<title>__vma_adjust (53 samples, 0.08%)</title><rect x="269.0" y="181" width="0.9" height="15.0" fill="rgb(209,66,41)" rx="2" ry="2" /> | |
<text x="272.01" y="191.5" ></text> | |
</g> | |
<g > | |
<title>_$LT$hashbrown..raw..RawTable$LT$T$GT$$u20$as$u20$core..ops..drop..Drop$GT$::drop::hef6aaa8d561267ad (497 samples, 0.71%)</title><rect x="366.5" y="325" width="8.3" height="15.0" fill="rgb(209,20,1)" rx="2" ry="2" /> | |
<text x="369.47" y="335.5" ></text> | |
</g> | |
<g > | |
<title>cranelift_codegen::regalloc::solver::Solver::add_kill::h253158fd0df01fa2 (10 samples, 0.01%)</title><rect x="48.0" y="277" width="0.2" height="15.0" fill="rgb(239,168,36)" rx="2" ry="2" /> | |
<text x="50.99" y="287.5" ></text> | |
</g> | |
<g > | |
<title>alloc::raw_vec::RawVec$LT$T$C$A$GT$::reserve::h5e34cfad90a6ce21 (45 samples, 0.06%)</title><rect x="322.8" y="293" width="0.7" height="15.0" fill="rgb(241,171,47)" rx="2" ry="2" /> | |
<text x="325.78" y="303.5" ></text> | |
</g> | |
<g > | |
<title>_ZN17cranelift_codegen8regalloc9diversion13RegDiversions6divert17h0dfdaeead6ef2c57E.llvm.6468024634034730254 (20 samples, 0.03%)</title><rect x="14.0" y="293" width="0.3" height="15.0" fill="rgb(253,157,12)" rx="2" ry="2" /> | |
<text x="16.95" y="303.5" ></text> | |
</g> | |
<g > | |
<title>exit_to_usermode_loop (55 samples, 0.08%)</title><rect x="13.0" y="405" width="0.9" height="15.0" fill="rgb(226,116,8)" rx="2" ry="2" /> | |
<text x="16.01" y="415.5" ></text> | |
</g> | |
<g > | |
<title>get_unmapped_area (31 samples, 0.04%)</title><rect x="349.8" y="181" width="0.6" height="15.0" fill="rgb(227,96,2)" rx="2" ry="2" /> | |
<text x="352.83" y="191.5" ></text> | |
</g> | |
<g > | |
<title>perf_event_mmap (302 samples, 0.43%)</title><rect x="263.8" y="197" width="5.1" height="15.0" fill="rgb(237,88,10)" rx="2" ry="2" /> | |
<text x="266.80" y="207.5" ></text> | |
</g> | |
<g > | |
<title>_ZN17cranelift_codegen3isa3x8615isa_constructor17h4c0ec78ad154a9afE.llvm.1715965870215341490 (37 samples, 0.05%)</title><rect x="329.4" y="277" width="0.6" height="15.0" fill="rgb(210,202,45)" rx="2" ry="2" /> | |
<text x="332.40" 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="133.7" y="149" width="0.1" height="15.0" fill="rgb(207,219,51)" rx="2" ry="2" /> | |
<text x="136.72" y="159.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 (7 samples, 0.01%)</title><rect x="1172.5" y="277" width="0.1" height="15.0" fill="rgb(250,28,3)" rx="2" ry="2" /> | |
<text x="1175.53" y="287.5" ></text> | |
</g> | |
<g > | |
<title>__GI___libc_realloc (1,684 samples, 2.40%)</title><rect x="958.1" y="325" width="28.3" height="15.0" fill="rgb(226,213,22)" rx="2" ry="2" /> | |
<text x="961.10" y="335.5" >_..</text> | |
</g> | |
<g > | |
<title>cranelift_codegen::context::Context::compile::h9fe1ff28e88fe30f (2,784 samples, 3.97%)</title><rect x="14.0" y="325" width="46.8" height="15.0" fill="rgb(232,105,20)" rx="2" ry="2" /> | |
<text x="16.95" y="335.5" >cran..</text> | |
</g> | |
<g > | |
<title>cranelift_bforest::map::Map$LT$K$C$V$GT$::insert::h73d5aa0753b93df7 (31 samples, 0.04%)</title><rect x="117.9" y="197" width="0.5" height="15.0" fill="rgb(230,69,50)" rx="2" ry="2" /> | |
<text x="120.90" y="207.5" ></text> | |
</g> | |
<g > | |
<title>_int_malloc (18 samples, 0.03%)</title><rect x="82.6" y="133" width="0.3" height="15.0" fill="rgb(240,119,14)" rx="2" ry="2" /> | |
<text x="85.58" y="143.5" ></text> | |
</g> | |
<g > | |
<title>cranelift_codegen::isa::x86::binemit::emit_inst::h4f026cde2beb5a85 (187 samples, 0.27%)</title><rect x="69.2" y="229" width="3.1" height="15.0" fill="rgb(220,102,25)" rx="2" ry="2" /> | |
<text x="72.18" y="239.5" ></text> | |
</g> | |
<g > | |
<title>std::time::Instant::elapsed::h8e307314b2acf9be (11 samples, 0.02%)</title><rect x="120.9" y="181" width="0.2" height="15.0" fill="rgb(251,25,35)" rx="2" ry="2" /> | |
<text x="123.92" y="191.5" ></text> | |
</g> | |
<g > | |
<title>__GI___libc_malloc (7 samples, 0.01%)</title><rect x="322.9" y="277" width="0.1" height="15.0" fill="rgb(243,30,4)" rx="2" ry="2" /> | |
<text x="325.89" y="287.5" ></text> | |
</g> | |
<g > | |
<title>_ZN16cranelift_entity4list17ListPool$LT$T$GT$4free17hccc32c4538eef572E.llvm.776987249141506950 (6 samples, 0.01%)</title><rect x="323.9" y="261" width="0.1" height="15.0" fill="rgb(228,196,47)" rx="2" ry="2" /> | |
<text x="326.89" y="271.5" ></text> | |
</g> | |
<g > | |
<title>cranelift_codegen::settings::builder::he3e45f2b2c57aae6 (27 samples, 0.04%)</title><rect x="330.8" y="293" width="0.5" height="15.0" fill="rgb(207,146,44)" rx="2" ry="2" /> | |
<text x="333.81" y="303.5" ></text> | |
</g> | |
<g > | |
<title>wasmparser::binary_reader::BinaryReader::read_section_header::h81c8f9a3c6efd252 (1,041 samples, 1.48%)</title><rect x="559.5" y="261" width="17.5" height="15.0" fill="rgb(205,212,25)" rx="2" ry="2" /> | |
<text x="562.51" y="271.5" ></text> | |
</g> | |
<g > | |
<title>find_vma (12 samples, 0.02%)</title><rect x="233.5" y="245" width="0.2" height="15.0" fill="rgb(246,108,41)" rx="2" ry="2" /> | |
<text x="236.46" y="255.5" ></text> | |
</g> | |
<g > | |
<title>_$LT$wasmparser..validator..ValidatingParser$u20$as$u20$wasmparser..parser..WasmDecoder$GT$::read::h573837335870e77b (273 samples, 0.39%)</title><rect x="191.0" y="165" width="4.6" height="15.0" fill="rgb(230,192,6)" rx="2" ry="2" /> | |
<text x="194.00" y="175.5" ></text> | |
</g> | |
<g > | |
<title>cranelift_codegen::redundant_reload_remover::RedundantReloadRemover::new::ha2ae7fc59b6f07f8 (52 samples, 0.07%)</title><rect x="187.1" y="357" width="0.9" height="15.0" fill="rgb(206,54,48)" rx="2" ry="2" /> | |
<text x="190.11" y="367.5" ></text> | |
</g> | |
<g > | |
<title>hashbrown::map::make_hash::h9e18b3170aa0c7c4 (10 samples, 0.01%)</title><rect x="818.2" y="293" width="0.2" height="15.0" fill="rgb(207,3,30)" rx="2" ry="2" /> | |
<text x="821.25" y="303.5" ></text> | |
</g> | |
<g > | |
<title>cranelift_codegen::flowgraph::ControlFlowGraph::add_edge::hf2c2f4cb34e85a4f (15 samples, 0.02%)</title><rect x="87.5" y="117" width="0.2" height="15.0" fill="rgb(217,55,2)" rx="2" ry="2" /> | |
<text x="90.47" y="127.5" ></text> | |
</g> | |
<g > | |
<title>_int_malloc (15 samples, 0.02%)</title><rect x="1174.5" y="213" width="0.2" height="15.0" fill="rgb(211,42,3)" rx="2" ry="2" /> | |
<text x="1177.46" y="223.5" ></text> | |
</g> | |
<g > | |
<title>alloc::vec::Vec$LT$T$GT$::into_boxed_slice::h4122676c740e9bd3 (69 samples, 0.10%)</title><rect x="483.7" y="277" width="1.1" height="15.0" fill="rgb(233,10,30)" rx="2" ry="2" /> | |
<text x="486.66" y="287.5" ></text> | |
</g> | |
<g > | |
<title>__GI___clock_gettime (8 samples, 0.01%)</title><rect x="130.1" y="117" width="0.1" height="15.0" fill="rgb(239,69,23)" rx="2" ry="2" /> | |
<text x="133.07" y="127.5" ></text> | |
</g> | |
<g > | |
<title>__GI___libc_malloc (13 samples, 0.02%)</title><rect x="195.0" y="117" width="0.3" height="15.0" fill="rgb(247,229,7)" rx="2" ry="2" /> | |
<text x="198.04" y="127.5" ></text> | |
</g> | |
<g > | |
<title>cranelift_codegen::ir::dfg::DataFlowGraph::ctrl_typevar::h001f83f02149e995 (15 samples, 0.02%)</title><rect x="167.6" y="213" width="0.3" height="15.0" fill="rgb(245,30,15)" rx="2" ry="2" /> | |
<text x="170.64" y="223.5" ></text> | |
</g> | |
<g > | |
<title>__GI___libc_malloc (7 samples, 0.01%)</title><rect x="1175.2" y="261" width="0.2" height="15.0" fill="rgb(241,191,48)" rx="2" ry="2" /> | |
<text x="1178.23" y="271.5" ></text> | |
</g> | |
<g > | |
<title>std::time::Instant::elapsed::h8e307314b2acf9be (8 samples, 0.01%)</title><rect x="1165.7" y="261" width="0.2" height="15.0" fill="rgb(223,114,32)" rx="2" ry="2" /> | |
<text x="1168.72" y="271.5" ></text> | |
</g> | |
<g > | |
<title>alloc::raw_vec::RawVec$LT$T$C$A$GT$::reserve::h500ef385b8747b29 (6 samples, 0.01%)</title><rect x="1172.3" y="245" width="0.1" height="15.0" fill="rgb(254,197,30)" rx="2" ry="2" /> | |
<text x="1175.28" 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 (44 samples, 0.06%)</title><rect x="140.0" y="181" width="0.7" height="15.0" fill="rgb(239,50,51)" rx="2" ry="2" /> | |
<text x="142.96" y="191.5" ></text> | |
</g> | |
<g > | |
<title>cranelift_codegen::ir::function::Function::with_name_signature::h3213a13dd838e646 (30 samples, 0.04%)</title><rect x="178.1" y="309" width="0.5" height="15.0" fill="rgb(244,190,25)" rx="2" ry="2" /> | |
<text x="181.07" y="319.5" ></text> | |
</g> | |
<g > | |
<title>cranelift_codegen::isa::x86::enc_tables::x86_expand::h65f50b7ad4fea636 (199 samples, 0.28%)</title><rect x="86.9" y="181" width="3.4" height="15.0" fill="rgb(250,85,2)" rx="2" ry="2" /> | |
<text x="89.92" y="191.5" ></text> | |
</g> | |
<g > | |
<title>alloc::raw_vec::RawVec$LT$T$C$A$GT$::reserve::h5e34cfad90a6ce21 (25 samples, 0.04%)</title><rect x="806.2" y="277" width="0.4" height="15.0" fill="rgb(240,15,43)" rx="2" ry="2" /> | |
<text x="809.21" y="287.5" ></text> | |
</g> | |
<g > | |
<title>cranelift_codegen::ir::layout::Layout::append_ebb::h4406a9dd59ad7fbd (11 samples, 0.02%)</title><rect x="326.7" y="309" width="0.1" height="15.0" fill="rgb(207,152,50)" rx="2" ry="2" /> | |
<text x="329.66" y="319.5" ></text> | |
</g> | |
<g > | |
<title>cranelift_codegen::context::Context::clear::h8fd0c2f2825a66ed (56 samples, 0.08%)</title><rect x="67.0" y="261" width="0.9" height="15.0" fill="rgb(237,161,46)" rx="2" ry="2" /> | |
<text x="69.96" y="271.5" ></text> | |
</g> | |
<g > | |
<title>_int_free (29 samples, 0.04%)</title><rect x="300.3" y="293" width="0.5" height="15.0" fill="rgb(212,76,50)" rx="2" ry="2" /> | |
<text x="303.27" y="303.5" ></text> | |
</g> | |
<g > | |
<title>std::time::Instant::now::h33d2ba6042def2d2 (20 samples, 0.03%)</title><rect x="320.0" y="277" width="0.3" height="15.0" fill="rgb(205,179,5)" rx="2" ry="2" /> | |
<text x="323.00" y="287.5" ></text> | |
</g> | |
<g > | |
<title>std::time::Instant::now::h33d2ba6042def2d2 (16 samples, 0.02%)</title><rect x="124.4" y="213" width="0.3" height="15.0" fill="rgb(225,89,21)" rx="2" ry="2" /> | |
<text x="127.42" y="223.5" ></text> | |
</g> | |
<g > | |
<title>hashbrown::raw::RawTable$LT$T$GT$::try_with_capacity::h7a6e6bae489d4fe9 (12 samples, 0.02%)</title><rect x="25.5" y="229" width="0.2" height="15.0" fill="rgb(249,135,33)" rx="2" ry="2" /> | |
<text x="28.49" y="239.5" ></text> | |
</g> | |
<g > | |
<title>cranelift_codegen::regalloc::liverange::GenericLiveRange$LT$PO$GT$::overlaps_def::h922ef41f94ddfc58 (8 samples, 0.01%)</title><rect x="132.3" y="197" width="0.2" height="15.0" fill="rgb(222,20,39)" rx="2" ry="2" /> | |
<text x="135.33" y="207.5" ></text> | |
</g> | |
<g > | |
<title>cranelift_codegen::ir::instructions::InstructionData::typevar_operand::hbf9a7e821f2ceac3 (13 samples, 0.02%)</title><rect x="34.9" y="261" width="0.3" height="15.0" fill="rgb(210,75,2)" rx="2" ry="2" /> | |
<text x="37.94" y="271.5" ></text> | |
</g> | |
<g > | |
<title>std::sys::unix::time::inner::now::ha10452f37b2930c5 (10 samples, 0.01%)</title><rect x="163.9" y="165" width="0.2" height="15.0" fill="rgb(237,81,22)" rx="2" ry="2" /> | |
<text x="166.94" y="175.5" ></text> | |
</g> | |
<g > | |
<title>__GI___libc_realloc (6 samples, 0.01%)</title><rect x="1174.1" y="229" width="0.1" height="15.0" fill="rgb(210,19,11)" rx="2" ry="2" /> | |
<text x="1177.07" y="239.5" ></text> | |
</g> | |
<g > | |
<title>core::ptr::real_drop_in_place::h7fa7a2046fdc054a (25 samples, 0.04%)</title><rect x="182.7" y="293" width="0.4" height="15.0" fill="rgb(205,83,52)" rx="2" ry="2" /> | |
<text x="185.71" y="303.5" ></text> | |
</g> | |
<g > | |
<title>cranelift_codegen::ir::builder::InstBuilder::iconst::h085df8078cba1853 (21 samples, 0.03%)</title><rect x="89.2" y="149" width="0.4" height="15.0" fill="rgb(247,202,30)" rx="2" ry="2" /> | |
<text x="92.22" y="159.5" ></text> | |
</g> | |
<g > | |
<title>_$LT$std..collections..hash..map..DefaultHasher$u20$as$u20$core..hash..Hasher$GT$::write::hce30e4f96ad2e64e (179 samples, 0.26%)</title><rect x="630.7" y="293" width="3.0" height="15.0" fill="rgb(206,123,15)" rx="2" ry="2" /> | |
<text x="633.69" y="303.5" ></text> | |
</g> | |
<g > | |
<title>cranelift_codegen::isa::x86::binemit::emit_inst::h4f026cde2beb5a85 (38 samples, 0.05%)</title><rect x="1147.8" y="293" width="0.7" height="15.0" fill="rgb(221,21,31)" rx="2" ry="2" /> | |
<text x="1150.84" y="303.5" ></text> | |
</g> | |
<g > | |
<title>std::sys::unix::alloc::_$LT$impl$u20$core..alloc..GlobalAlloc$u20$for$u20$std..alloc..System$GT$::realloc::h1ccdfac189eaabae (18 samples, 0.03%)</title><rect x="1043.2" y="325" width="0.3" height="15.0" fill="rgb(221,39,24)" rx="2" ry="2" /> | |
<text x="1046.17" y="335.5" ></text> | |
</g> | |
<g > | |
<title>__GI___libc_free (458 samples, 0.65%)</title><rect x="213.4" y="389" width="7.8" height="15.0" fill="rgb(227,74,45)" rx="2" ry="2" /> | |
<text x="216.45" y="399.5" ></text> | |
</g> | |
<g > | |
<title>std::sys::unix::time::inner::Instant::now::h23f1bea5949f1bbd (11 samples, 0.02%)</title><rect x="175.4" y="197" width="0.2" height="15.0" fill="rgb(221,50,30)" rx="2" ry="2" /> | |
<text x="178.41" y="207.5" ></text> | |
</g> | |
<g > | |
<title>alloc_pages_vma (48 samples, 0.07%)</title><rect x="277.7" y="213" width="0.8" height="15.0" fill="rgb(223,222,35)" rx="2" ry="2" /> | |
<text x="280.66" y="223.5" ></text> | |
</g> | |
<g > | |
<title>kmem_cache_alloc (12 samples, 0.02%)</title><rect x="345.6" y="149" width="0.2" height="15.0" fill="rgb(208,219,44)" rx="2" ry="2" /> | |
<text x="348.56" y="159.5" ></text> | |
</g> | |
<g > | |
<title>alloc::raw_vec::RawVec$LT$T$C$A$GT$::reserve::h02503ac3a628c0ac (28 samples, 0.04%)</title><rect x="1178.2" y="277" width="0.4" height="15.0" fill="rgb(230,29,44)" rx="2" ry="2" /> | |
<text x="1181.16" y="287.5" ></text> | |
</g> | |
<g > | |
<title>core::str::run_utf8_validation::hcab5686003e72b95 (154 samples, 0.22%)</title><rect x="528.2" y="229" width="2.6" height="15.0" fill="rgb(236,149,49)" rx="2" ry="2" /> | |
<text x="531.21" y="239.5" ></text> | |
</g> | |
<g > | |
<title>cranelift_codegen::regalloc::coloring::Context::visit_inst::h157ddbfc9a018b2b (110 samples, 0.16%)</title><rect x="1171.0" y="309" width="1.8" height="15.0" fill="rgb(240,22,19)" rx="2" ry="2" /> | |
<text x="1173.98" y="319.5" ></text> | |
</g> | |
<g > | |
<title>swapgs_restore_regs_and_return_to_usermode (55 samples, 0.08%)</title><rect x="13.0" y="437" width="0.9" height="15.0" fill="rgb(212,25,9)" rx="2" ry="2" /> | |
<text x="16.01" y="447.5" ></text> | |
</g> | |
<g > | |
<title>__GI___libc_malloc (10 samples, 0.01%)</title><rect x="1176.4" y="261" width="0.2" height="15.0" fill="rgb(229,116,18)" rx="2" ry="2" /> | |
<text x="1179.43" y="271.5" ></text> | |
</g> | |
<g > | |
<title>_int_free (9 samples, 0.01%)</title><rect x="1179.7" y="245" width="0.1" height="15.0" fill="rgb(245,88,35)" rx="2" ry="2" /> | |
<text x="1182.66" y="255.5" ></text> | |
</g> | |
<g > | |
<title>core::ptr::real_drop_in_place::hb4af2f77e0210fc8 (13 samples, 0.02%)</title><rect x="312.8" y="277" width="0.3" height="15.0" fill="rgb(249,0,51)" rx="2" ry="2" /> | |
<text x="315.84" y="287.5" ></text> | |
</g> | |
<g > | |
<title>cranelift_codegen::regalloc::live_value_tracker::LiveValueTracker::process_inst::hcd4ba6fb549516b2 (11 samples, 0.02%)</title><rect x="1180.0" y="309" width="0.2" height="15.0" fill="rgb(215,15,41)" rx="2" ry="2" /> | |
<text x="1182.98" y="319.5" ></text> | |
</g> | |
<g > | |
<title>security_mmap_file (11 samples, 0.02%)</title><rect x="296.3" y="197" width="0.1" height="15.0" fill="rgb(221,198,29)" rx="2" ry="2" /> | |
<text x="299.26" y="207.5" ></text> | |
</g> | |
<g > | |
<title>wasmer_runtime::compile_with_config::h3146f6a9cd30dfc8 (1,137 samples, 1.62%)</title><rect x="1147.8" y="405" width="19.2" height="15.0" fill="rgb(240,148,12)" rx="2" ry="2" /> | |
<text x="1150.84" y="415.5" ></text> | |
</g> | |
<g > | |
<title>__GI___libc_malloc (10 samples, 0.01%)</title><rect x="167.1" y="197" width="0.2" height="15.0" fill="rgb(250,104,11)" rx="2" ry="2" /> | |
<text x="170.14" y="207.5" ></text> | |
</g> | |
<g > | |
<title>core::ptr::real_drop_in_place::h149d1c3b3b583e51 (44 samples, 0.06%)</title><rect x="238.6" y="357" width="0.8" height="15.0" fill="rgb(244,197,13)" rx="2" ry="2" /> | |
<text x="241.62" y="367.5" ></text> | |
</g> | |
<g > | |
<title>__GI___libc_realloc (14 samples, 0.02%)</title><rect x="324.1" y="229" width="0.2" height="15.0" fill="rgb(210,63,28)" rx="2" ry="2" /> | |
<text x="327.07" y="239.5" ></text> | |
</g> | |
<g > | |
<title>cranelift_codegen::isa::x86::enc_tables::size_plus_maybe_sib_for_in_reg_0::h9614877b53180600 (12 samples, 0.02%)</title><rect x="32.2" y="261" width="0.2" height="15.0" fill="rgb(240,177,54)" rx="2" ry="2" /> | |
<text x="35.21" 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.02%)</title><rect x="38.5" y="277" width="0.2" height="15.0" fill="rgb(224,3,53)" rx="2" ry="2" /> | |
<text x="41.45" y="287.5" ></text> | |
</g> | |
<g > | |
<title>cranelift_codegen::ir::layout::Layout::append_inst::h4a2fb37740cc80ba (16 samples, 0.02%)</title><rect x="320.8" y="277" width="0.3" height="15.0" fill="rgb(238,153,9)" rx="2" ry="2" /> | |
<text x="323.82" y="287.5" ></text> | |
</g> | |
<g > | |
<title>cranelift_codegen::isa::x86::enc_tables::size_plus_maybe_sib_or_offset_for_in_reg_1::h655f2e9c6d128efc (16 samples, 0.02%)</title><rect x="26.9" y="277" width="0.3" height="15.0" fill="rgb(254,18,28)" rx="2" ry="2" /> | |
<text x="29.92" y="287.5" ></text> | |
</g> | |
<g > | |
<title>std::sys::unix::time::inner::now::ha10452f37b2930c5 (7 samples, 0.01%)</title><rect x="112.1" y="149" width="0.1" height="15.0" fill="rgb(221,115,13)" rx="2" ry="2" /> | |
<text x="115.08" y="159.5" ></text> | |
</g> | |
<g > | |
<title>__GI___mprotect (392 samples, 0.56%)</title><rect x="282.7" y="293" width="6.6" height="15.0" fill="rgb(229,183,0)" rx="2" ry="2" /> | |
<text x="285.70" y="303.5" ></text> | |
</g> | |
<g > | |
<title>_int_realloc (41 samples, 0.06%)</title><rect x="21.7" y="213" width="0.7" height="15.0" fill="rgb(235,185,3)" rx="2" ry="2" /> | |
<text x="24.69" y="223.5" ></text> | |
</g> | |
<g > | |
<title>wasmer_runtime_core::backing::ImportBacking::new::he38382ce97a0802d (67 samples, 0.10%)</title><rect x="875.4" y="357" width="1.2" height="15.0" fill="rgb(228,106,9)" rx="2" ry="2" /> | |
<text x="878.43" y="367.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 (147 samples, 0.21%)</title><rect x="1167.0" y="293" width="2.5" height="15.0" fill="rgb(249,164,38)" rx="2" ry="2" /> | |
<text x="1169.99" y="303.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.04%)</title><rect x="101.2" y="181" width="0.5" height="15.0" fill="rgb(234,30,46)" rx="2" ry="2" /> | |
<text x="104.21" y="191.5" ></text> | |
</g> | |
<g > | |
<title>std::collections::hash::map::RandomState::new::KEYS::__getit::hc919284a97fb9164 (12 samples, 0.02%)</title><rect x="813.3" y="277" width="0.2" height="15.0" fill="rgb(223,6,34)" rx="2" ry="2" /> | |
<text x="816.30" y="287.5" ></text> | |
</g> | |
<g > | |
<title>__GI___libc_realloc (8 samples, 0.01%)</title><rect x="1169.1" y="181" width="0.1" height="15.0" fill="rgb(215,43,21)" rx="2" ry="2" /> | |
<text x="1172.11" 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 (132 samples, 0.19%)</title><rect x="354.7" y="341" width="2.2" height="15.0" fill="rgb(234,34,51)" rx="2" ry="2" /> | |
<text x="357.69" 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 (33 samples, 0.05%)</title><rect x="25.1" y="261" width="0.6" height="15.0" fill="rgb(209,175,31)" rx="2" ry="2" /> | |
<text x="28.14" y="271.5" ></text> | |
</g> | |
<g > | |
<title>_ZN17cranelift_codegen8regalloc9diversion13RegDiversions6divert17h0dfdaeead6ef2c57E.llvm.6468024634034730254 (38 samples, 0.05%)</title><rect x="1147.8" y="277" width="0.7" height="15.0" fill="rgb(234,210,35)" rx="2" ry="2" /> | |
<text x="1150.84" y="287.5" ></text> | |
</g> | |
<g > | |
<title>alloc::raw_vec::RawVec$LT$T$C$A$GT$::reserve::h156c4ca9e87e66cc (19 samples, 0.03%)</title><rect x="78.7" y="197" width="0.3" height="15.0" fill="rgb(205,223,8)" rx="2" ry="2" /> | |
<text x="81.68" y="207.5" ></text> | |
</g> | |
<g > | |
<title>swapgs_restore_regs_and_return_to_usermode (14 samples, 0.02%)</title><rect x="10.8" y="405" width="0.3" height="15.0" fill="rgb(230,74,54)" rx="2" ry="2" /> | |
<text x="13.84" y="415.5" ></text> | |
</g> | |
<g > | |
<title>cranelift_bforest::pool::NodePool$LT$F$GT$::alloc_node::h962928eb17e6ebe3 (23 samples, 0.03%)</title><rect x="118.7" y="165" width="0.3" height="15.0" fill="rgb(247,119,20)" rx="2" ry="2" /> | |
<text x="121.65" y="175.5" ></text> | |
</g> | |
<g > | |
<title>[perf-23432.map] (234 samples, 0.33%)</title><rect x="10.0" y="453" width="3.9" height="15.0" fill="rgb(209,37,40)" rx="2" ry="2" /> | |
<text x="13.00" y="463.5" ></text> | |
</g> | |
<g > | |
<title>_int_malloc (6 samples, 0.01%)</title><rect x="1180.2" y="261" width="0.1" height="15.0" fill="rgb(205,135,37)" rx="2" ry="2" /> | |
<text x="1183.16" y="271.5" ></text> | |
</g> | |
<g > | |
<title>_ZN16cranelift_entity4list17ListPool$LT$T$GT$5alloc17h7031e3fd97879e16E.llvm.776987249141506950 (10 samples, 0.01%)</title><rect x="323.6" y="277" width="0.2" height="15.0" fill="rgb(245,81,48)" rx="2" ry="2" /> | |
<text x="326.63" y="287.5" ></text> | |
</g> | |
<g > | |
<title>__memset_avx2 (35 samples, 0.05%)</title><rect x="658.6" y="261" width="0.6" height="15.0" fill="rgb(225,219,38)" rx="2" ry="2" /> | |
<text x="661.61" y="271.5" ></text> | |
</g> | |
<g > | |
<title>__memset_avx2 (7 samples, 0.01%)</title><rect x="190.4" y="149" width="0.1" height="15.0" fill="rgb(209,150,30)" rx="2" ry="2" /> | |
<text x="193.39" y="159.5" ></text> | |
</g> | |
<g > | |
<title>__GI___libc_malloc (7 samples, 0.01%)</title><rect x="25.6" y="213" width="0.1" height="15.0" fill="rgb(253,99,14)" rx="2" ry="2" /> | |
<text x="28.57" y="223.5" ></text> | |
</g> | |
<g > | |
<title>__GI___clock_gettime (9 samples, 0.01%)</title><rect x="111.0" y="149" width="0.1" height="15.0" fill="rgb(205,125,11)" rx="2" ry="2" /> | |
<text x="113.95" y="159.5" ></text> | |
</g> | |
<g > | |
<title>__vma_adjust (36 samples, 0.05%)</title><rect x="223.5" y="197" width="0.6" height="15.0" fill="rgb(246,170,31)" rx="2" ry="2" /> | |
<text x="226.52" y="207.5" ></text> | |
</g> | |
<g > | |
<title>cranelift_codegen::regalloc::liveness::Liveness::compute::h5fc2c46ff15ebd51 (35 samples, 0.05%)</title><rect x="1178.2" y="325" width="0.5" height="15.0" fill="rgb(245,218,27)" rx="2" ry="2" /> | |
<text x="1181.16" y="335.5" ></text> | |
</g> | |
<g > | |
<title>__GI___libc_free (18 samples, 0.03%)</title><rect x="166.7" y="213" width="0.4" height="15.0" fill="rgb(236,71,14)" rx="2" ry="2" /> | |
<text x="169.75" y="223.5" ></text> | |
</g> | |
<g > | |
<title>perf_iterate_sb (127 samples, 0.18%)</title><rect x="266.7" y="181" width="2.2" height="15.0" fill="rgb(225,5,21)" rx="2" ry="2" /> | |
<text x="269.74" y="191.5" ></text> | |
</g> | |
<g > | |
<title>cranelift_codegen::isa::enc_tables::lookup_enclist::h59f3ade65a5e8b68 (10 samples, 0.01%)</title><rect x="107.7" y="181" width="0.2" height="15.0" fill="rgb(239,67,20)" rx="2" ry="2" /> | |
<text x="110.69" y="191.5" ></text> | |
</g> | |
<g > | |
<title>wasmer_runtime_core::module::Module::instantiate::h6d7aa260ea24db84 (415 samples, 0.59%)</title><rect x="872.5" y="389" width="7.0" height="15.0" fill="rgb(211,14,50)" rx="2" ry="2" /> | |
<text x="875.52" y="399.5" ></text> | |
</g> | |
<g > | |
<title>parity_wasm::elements::primitives::CountedWriter$LT$W$GT$::done::hd4981212fa202dc5 (1,744 samples, 2.49%)</title><rect x="1015.4" y="373" width="29.3" height="15.0" fill="rgb(216,31,6)" rx="2" ry="2" /> | |
<text x="1018.37" y="383.5" >pa..</text> | |
</g> | |
<g > | |
<title>__vdso_clock_gettime (6 samples, 0.01%)</title><rect x="119.4" y="149" width="0.1" height="15.0" fill="rgb(224,109,4)" rx="2" ry="2" /> | |
<text x="122.39" y="159.5" ></text> | |
</g> | |
<g > | |
<title>alloc::sync::Arc$LT$T$GT$::drop_slow::hb67cbcd9330fef4b (6 samples, 0.01%)</title><rect x="252.8" y="325" width="0.1" height="15.0" fill="rgb(218,122,4)" rx="2" ry="2" /> | |
<text x="255.75" y="335.5" ></text> | |
</g> | |
<g > | |
<title>cranelift_codegen::settings::Builder::lookup::hc6620799f46af882 (68 samples, 0.10%)</title><rect x="328.3" y="277" width="1.1" height="15.0" fill="rgb(236,161,42)" rx="2" ry="2" /> | |
<text x="331.26" y="287.5" ></text> | |
</g> | |
<g > | |
<title>handle_mm_fault (122 samples, 0.17%)</title><rect x="277.2" y="245" width="2.1" height="15.0" fill="rgb(241,5,28)" rx="2" ry="2" /> | |
<text x="280.24" y="255.5" ></text> | |
</g> | |
<g > | |
<title>cranelift_codegen::isa::enc_tables::lookup_enclist::h59f3ade65a5e8b68 (23 samples, 0.03%)</title><rect x="86.5" y="149" width="0.4" height="15.0" fill="rgb(251,228,49)" rx="2" ry="2" /> | |
<text x="89.53" y="159.5" ></text> | |
</g> | |
<g > | |
<title>std::time::Instant::now::h33d2ba6042def2d2 (7 samples, 0.01%)</title><rect x="1162.1" y="277" width="0.1" height="15.0" fill="rgb(236,52,27)" rx="2" ry="2" /> | |
<text x="1165.12" y="287.5" ></text> | |
</g> | |
<g > | |
<title>std::sys::unix::time::inner::now::ha10452f37b2930c5 (6 samples, 0.01%)</title><rect x="135.4" y="165" width="0.1" height="15.0" fill="rgb(208,124,15)" rx="2" ry="2" /> | |
<text x="138.37" y="175.5" ></text> | |
</g> | |
<g > | |
<title>flush_tlb_mm_range (65 samples, 0.09%)</title><rect x="235.5" y="181" width="1.1" height="15.0" fill="rgb(252,225,38)" rx="2" ry="2" /> | |
<text x="238.51" y="191.5" ></text> | |
</g> | |
<g > | |
<title>hashbrown::map::HashMap$LT$K$C$V$C$S$GT$::remove::hb674e5732ef2fe56 (6 samples, 0.01%)</title><rect x="145.5" y="197" width="0.1" height="15.0" fill="rgb(251,73,10)" rx="2" ry="2" /> | |
<text x="148.48" y="207.5" ></text> | |
</g> | |
<g > | |
<title>_$LT$rocinante..exec..wasmer..Wasmer$u20$as$u20$rocinante..exec..Interpreter$GT$::eval_test_cases::hf136840e36843cad (2,799 samples, 3.99%)</title><rect x="14.0" y="437" width="47.0" height="15.0" fill="rgb(229,80,22)" rx="2" ry="2" /> | |
<text x="16.95" y="447.5" >_$LT..</text> | |
</g> | |
<g > | |
<title>std::time::Instant::elapsed::h8e307314b2acf9be (8 samples, 0.01%)</title><rect x="112.1" y="197" width="0.1" height="15.0" fill="rgb(216,127,40)" rx="2" ry="2" /> | |
<text x="115.06" y="207.5" ></text> | |
</g> | |
<g > | |
<title>__GI___libc_malloc (14 samples, 0.02%)</title><rect x="254.7" y="309" width="0.2" height="15.0" fill="rgb(217,170,53)" rx="2" ry="2" /> | |
<text x="257.68" y="319.5" ></text> | |
</g> | |
<g > | |
<title>cranelift_codegen::regalloc::live_value_tracker::LiveValueTracker::ebb_top::hfe56a550654953ca (21 samples, 0.03%)</title><rect x="153.9" y="197" width="0.3" height="15.0" fill="rgb(223,123,26)" rx="2" ry="2" /> | |
<text x="156.87" y="207.5" ></text> | |
</g> | |
<g > | |
<title>alloc::raw_vec::RawVec$LT$T$C$A$GT$::reserve::h73c832352071193f (13 samples, 0.02%)</title><rect x="326.4" y="293" width="0.2" height="15.0" fill="rgb(221,104,1)" rx="2" ry="2" /> | |
<text x="329.41" y="303.5" ></text> | |
</g> | |
<g > | |
<title>__GI___clock_gettime (6 samples, 0.01%)</title><rect x="1160.1" y="197" width="0.1" height="15.0" fill="rgb(250,3,0)" rx="2" ry="2" /> | |
<text x="1163.08" y="207.5" ></text> | |
</g> | |
<g > | |
<title>sys_mmap (327 samples, 0.47%)</title><rect x="291.0" y="245" width="5.5" height="15.0" fill="rgb(220,138,8)" rx="2" ry="2" /> | |
<text x="293.96" y="255.5" ></text> | |
</g> | |
<g > | |
<title>cranelift_codegen::regalloc::context::Context::run::hacf4bbc8f4d0071a (2,368 samples, 3.37%)</title><rect x="124.7" y="229" width="39.8" height="15.0" fill="rgb(245,49,24)" rx="2" ry="2" /> | |
<text x="127.69" y="239.5" >cra..</text> | |
</g> | |
<g > | |
<title>wasmparser::operators_validator::OperatorValidator::new::hf45e218c5d7c8944 (2,175 samples, 3.10%)</title><rect x="660.4" y="309" width="36.6" height="15.0" fill="rgb(205,136,18)" rx="2" ry="2" /> | |
<text x="663.42" y="319.5" >was..</text> | |
</g> | |
<g > | |
<title>__GI___libc_free (22 samples, 0.03%)</title><rect x="76.3" y="213" width="0.3" height="15.0" fill="rgb(210,175,3)" rx="2" ry="2" /> | |
<text x="79.26" y="223.5" ></text> | |
</g> | |
<g > | |
<title>std::sys::unix::time::inner::now::ha10452f37b2930c5 (9 samples, 0.01%)</title><rect x="1170.8" y="261" width="0.2" height="15.0" fill="rgb(235,219,6)" rx="2" ry="2" /> | |
<text x="1173.83" y="271.5" ></text> | |
</g> | |
<g > | |
<title>std::time::Instant::now::h33d2ba6042def2d2 (11 samples, 0.02%)</title><rect x="50.4" y="245" width="0.2" height="15.0" fill="rgb(251,93,21)" rx="2" ry="2" /> | |
<text x="53.39" y="255.5" ></text> | |
</g> | |
<g > | |
<title>_$LT$T$u20$as$u20$alloc..borrow..ToOwned$GT$::to_owned::h243a230274a8a4d9 (300 samples, 0.43%)</title><rect x="61.6" y="261" width="5.1" height="15.0" fill="rgb(245,77,6)" rx="2" ry="2" /> | |
<text x="64.61" y="271.5" ></text> | |
</g> | |
<g > | |
<title>__GI___libc_realloc (14 samples, 0.02%)</title><rect x="320.9" y="245" width="0.2" height="15.0" fill="rgb(217,206,29)" rx="2" ry="2" /> | |
<text x="323.86" y="255.5" ></text> | |
</g> | |
<g > | |
<title>cranelift_codegen::ir::dfg::DataFlowGraph::append_result::h44f9432a950b5ad1 (10 samples, 0.01%)</title><rect x="20.2" y="213" width="0.2" height="15.0" fill="rgb(214,149,43)" rx="2" ry="2" /> | |
<text x="23.19" y="223.5" ></text> | |
</g> | |
<g > | |
<title>parity_wasm::elements::ops::Instructions::new::hd16213cb99346656 (29 samples, 0.04%)</title><rect x="1097.2" y="373" width="0.5" height="15.0" fill="rgb(213,165,24)" rx="2" ry="2" /> | |
<text x="1100.19" y="383.5" ></text> | |
</g> | |
<g > | |
<title>__GI___clock_gettime (14 samples, 0.02%)</title><rect x="314.1" y="213" width="0.2" height="15.0" fill="rgb(228,153,14)" rx="2" ry="2" /> | |
<text x="317.08" 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 (6 samples, 0.01%)</title><rect x="1174.0" y="277" width="0.1" height="15.0" fill="rgb(226,16,52)" rx="2" ry="2" /> | |
<text x="1176.97" y="287.5" ></text> | |
</g> | |
<g > | |
<title>cranelift_entity::list::EntityList$LT$T$GT$::push::h051541d55e7ee057 (35 samples, 0.05%)</title><rect x="805.5" y="277" width="0.6" height="15.0" fill="rgb(217,213,16)" rx="2" ry="2" /> | |
<text x="808.48" y="287.5" ></text> | |
</g> | |
<g > | |
<title>__GI___libc_realloc (9 samples, 0.01%)</title><rect x="321.2" y="261" width="0.1" height="15.0" fill="rgb(206,74,40)" rx="2" ry="2" /> | |
<text x="324.18" 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 (7 samples, 0.01%)</title><rect x="483.5" y="261" width="0.1" height="15.0" fill="rgb(227,3,19)" rx="2" ry="2" /> | |
<text x="486.49" y="271.5" ></text> | |
</g> | |
<g > | |
<title>_int_realloc (7 samples, 0.01%)</title><rect x="1178.6" y="245" width="0.1" height="15.0" fill="rgb(248,157,6)" rx="2" ry="2" /> | |
<text x="1181.63" y="255.5" ></text> | |
</g> | |
<g > | |
<title>alloc::raw_vec::RawVec$LT$T$C$A$GT$::reserve::hae39d8e15426d2f6 (8 samples, 0.01%)</title><rect x="1154.0" y="261" width="0.1" height="15.0" fill="rgb(205,172,4)" rx="2" ry="2" /> | |
<text x="1157.00" y="271.5" ></text> | |
</g> | |
<g > | |
<title>__GI___libc_malloc (15 samples, 0.02%)</title><rect x="118.1" y="149" width="0.3" height="15.0" fill="rgb(230,127,25)" rx="2" ry="2" /> | |
<text x="121.15" y="159.5" ></text> | |
</g> | |
<g > | |
<title>__GI___libc_malloc (9 samples, 0.01%)</title><rect x="162.5" y="133" width="0.2" height="15.0" fill="rgb(242,54,20)" rx="2" ry="2" /> | |
<text x="165.53" y="143.5" ></text> | |
</g> | |
<g > | |
<title>wasmer_clif_backend::resolver::FuncResolverBuilder::new::h17aa56962b53b260 (147 samples, 0.21%)</title><rect x="1167.0" y="437" width="2.5" height="15.0" fill="rgb(229,100,41)" rx="2" ry="2" /> | |
<text x="1169.99" y="447.5" ></text> | |
</g> | |
<g > | |
<title>cranelift_codegen::isa::constraints::RecipeConstraints::satisfied::h33556c8a9b1bba6e (83 samples, 0.12%)</title><rect x="35.2" y="277" width="1.4" height="15.0" fill="rgb(225,166,43)" rx="2" ry="2" /> | |
<text x="38.16" y="287.5" ></text> | |
</g> | |
<g > | |
<title>cranelift_codegen::binemit::emit_function::hcd450d74712a091f (38 samples, 0.05%)</title><rect x="1147.8" y="309" width="0.7" height="15.0" fill="rgb(207,73,29)" rx="2" ry="2" /> | |
<text x="1150.84" y="319.5" ></text> | |
</g> | |
<g > | |
<title>__GI___libc_free (31 samples, 0.04%)</title><rect x="253.3" y="309" width="0.5" height="15.0" fill="rgb(235,117,18)" rx="2" ry="2" /> | |
<text x="256.25" y="319.5" ></text> | |
</g> | |
<g > | |
<title>std::sys::unix::time::inner::Instant::now::h23f1bea5949f1bbd (11 samples, 0.02%)</title><rect x="174.1" y="165" width="0.2" height="15.0" fill="rgb(221,66,36)" rx="2" ry="2" /> | |
<text x="177.10" y="175.5" ></text> | |
</g> | |
<g > | |
<title>__memset_avx2 (10 samples, 0.01%)</title><rect x="878.8" y="341" width="0.1" height="15.0" fill="rgb(209,138,20)" rx="2" ry="2" /> | |
<text x="881.75" y="351.5" ></text> | |
</g> | |
<g > | |
<title>cranelift_codegen::isa::TargetIsa::encode::h3618ddf6ad568ce7 (7 samples, 0.01%)</title><rect x="96.6" y="149" width="0.1" height="15.0" fill="rgb(219,186,12)" rx="2" ry="2" /> | |
<text x="99.57" y="159.5" ></text> | |
</g> | |
<g > | |
<title>cranelift_codegen::regalloc::coloring::Context::program_input_abi::h34ced53bbc43d7b1 (23 samples, 0.03%)</title><rect x="47.1" y="277" width="0.4" height="15.0" fill="rgb(208,228,4)" rx="2" ry="2" /> | |
<text x="50.11" y="287.5" ></text> | |
</g> | |
<g > | |
<title>__memcpy_avx_unaligned (7 samples, 0.01%)</title><rect x="16.0" y="229" width="0.1" height="15.0" fill="rgb(216,197,33)" rx="2" ry="2" /> | |
<text x="18.99" y="239.5" ></text> | |
</g> | |
<g > | |
<title>std::sys::unix::time::inner::now::ha10452f37b2930c5 (9 samples, 0.01%)</title><rect x="1159.3" y="213" width="0.2" height="15.0" fill="rgb(240,105,16)" rx="2" ry="2" /> | |
<text x="1162.34" y="223.5" ></text> | |
</g> | |
<g > | |
<title>cranelift_codegen::redundant_reload_remover::RedundantReloadRemover::processing_stack_maybe_push::h68b38d091c29c7ca (108 samples, 0.15%)</title><rect x="77.8" y="213" width="1.8" height="15.0" fill="rgb(234,110,12)" rx="2" ry="2" /> | |
<text x="80.77" y="223.5" ></text> | |
</g> | |
<g > | |
<title>_ZN17cranelift_codegen8regalloc9diversion13RegDiversions6divert17h0dfdaeead6ef2c57E.llvm.6468024634034730254 (49 samples, 0.07%)</title><rect x="139.9" y="197" width="0.8" height="15.0" fill="rgb(210,113,45)" rx="2" ry="2" /> | |
<text x="142.88" y="207.5" ></text> | |
</g> | |
<g > | |
<title>rocinante::stoke::CandidateFunc::get_equiv_local_idx::h5887c3d4ccb5d2b4 (65 samples, 0.09%)</title><rect x="1107.0" y="389" width="1.1" height="15.0" fill="rgb(248,20,50)" rx="2" ry="2" /> | |
<text x="1110.03" y="399.5" ></text> | |
</g> | |
<g > | |
<title>local_clock (10 samples, 0.01%)</title><rect x="268.2" y="117" width="0.2" height="15.0" fill="rgb(213,127,26)" rx="2" ry="2" /> | |
<text x="271.20" y="127.5" ></text> | |
</g> | |
<g > | |
<title>__GI___libc_free (16 samples, 0.02%)</title><rect x="625.3" y="293" width="0.3" height="15.0" fill="rgb(210,92,16)" rx="2" ry="2" /> | |
<text x="628.29" y="303.5" ></text> | |
</g> | |
<g > | |
<title>__GI___pthread_rwlock_rdlock (127 samples, 0.18%)</title><rect x="799.9" y="293" width="2.2" height="15.0" fill="rgb(218,28,2)" rx="2" ry="2" /> | |
<text x="802.93" y="303.5" ></text> | |
</g> | |
<g > | |
<title>vm_mmap_pgoff (304 samples, 0.43%)</title><rect x="349.4" y="213" width="5.1" height="15.0" fill="rgb(210,164,52)" rx="2" ry="2" /> | |
<text x="352.38" y="223.5" ></text> | |
</g> | |
<g > | |
<title>std::sys::unix::time::inner::now::ha10452f37b2930c5 (8 samples, 0.01%)</title><rect x="121.6" y="165" width="0.2" height="15.0" fill="rgb(226,113,48)" rx="2" ry="2" /> | |
<text x="124.63" y="175.5" ></text> | |
</g> | |
<g > | |
<title>alloc::vec::Vec$LT$T$GT$::retain::h44e70c6a80d771f1 (11 samples, 0.02%)</title><rect x="159.0" y="197" width="0.1" height="15.0" fill="rgb(247,212,27)" rx="2" ry="2" /> | |
<text x="161.96" y="207.5" ></text> | |
</g> | |
<g > | |
<title>cranelift_codegen::context::Context::legalize::h3be573a3855dd690 (22 samples, 0.03%)</title><rect x="1167.0" y="245" width="0.4" height="15.0" fill="rgb(209,120,45)" rx="2" ry="2" /> | |
<text x="1169.99" y="255.5" ></text> | |
</g> | |
<g > | |
<title>__rust_dealloc (13 samples, 0.02%)</title><rect x="755.8" y="309" width="0.3" height="15.0" fill="rgb(215,62,27)" rx="2" ry="2" /> | |
<text x="758.84" y="319.5" ></text> | |
</g> | |
<g > | |
<title>native_sched_clock (8 samples, 0.01%)</title><rect x="343.2" y="69" width="0.2" height="15.0" fill="rgb(232,225,31)" rx="2" ry="2" /> | |
<text x="346.24" y="79.5" ></text> | |
</g> | |
<g > | |
<title>__rdl_realloc (33 samples, 0.05%)</title><rect x="1095.7" y="357" width="0.5" height="15.0" fill="rgb(230,56,6)" rx="2" ry="2" /> | |
<text x="1098.69" y="367.5" ></text> | |
</g> | |
<g > | |
<title>cranelift_codegen::ir::dfg::DataFlowGraph::new::h1636284a161b274f (7 samples, 0.01%)</title><rect x="1180.4" y="341" width="0.1" height="15.0" fill="rgb(246,91,37)" rx="2" ry="2" /> | |
<text x="1183.38" y="351.5" ></text> | |
</g> | |
<g > | |
<title>cranelift_codegen::dce::do_dce::h45d4354699d5d0cc (71 samples, 0.10%)</title><rect x="1157.7" y="293" width="1.2" height="15.0" fill="rgb(249,197,42)" rx="2" ry="2" /> | |
<text x="1160.68" y="303.5" ></text> | |
</g> | |
<g > | |
<title>__GI___libc_malloc (6 samples, 0.01%)</title><rect x="1176.8" y="277" width="0.1" height="15.0" fill="rgb(251,85,25)" rx="2" ry="2" /> | |
<text x="1179.82" y="287.5" ></text> | |
</g> | |
<g > | |
<title>cranelift_codegen::dominator_tree::DominatorTreePreorder::compute::hb821b7ecbf347c37 (22 samples, 0.03%)</title><rect x="1170.4" y="293" width="0.4" height="15.0" fill="rgb(226,221,38)" rx="2" ry="2" /> | |
<text x="1173.43" y="303.5" ></text> | |
</g> | |
<g > | |
<title>crossbeam_deque::Stealer$LT$T$GT$::steal::h6b48c94d436504c3 (29 samples, 0.04%)</title><rect x="188.4" y="229" width="0.4" height="15.0" fill="rgb(233,126,17)" rx="2" ry="2" /> | |
<text x="191.36" y="239.5" ></text> | |
</g> | |
<g > | |
<title>__memmove_avx_unaligned (9 samples, 0.01%)</title><rect x="250.0" y="325" width="0.1" height="15.0" fill="rgb(222,109,22)" rx="2" ry="2" /> | |
<text x="252.99" y="335.5" ></text> | |
</g> | |
<g > | |
<title>cranelift_bforest::pool::NodePool$LT$F$GT$::alloc_node::h8c4b85d6336313f8 (21 samples, 0.03%)</title><rect x="118.1" y="181" width="0.3" height="15.0" fill="rgb(246,220,27)" rx="2" ry="2" /> | |
<text x="121.06" y="191.5" ></text> | |
</g> | |
<g > | |
<title>std::sys::unix::time::inner::now::ha10452f37b2930c5 (10 samples, 0.01%)</title><rect x="1166.3" y="213" width="0.1" height="15.0" fill="rgb(252,24,3)" rx="2" ry="2" /> | |
<text x="1169.25" y="223.5" ></text> | |
</g> | |
<g > | |
<title>__GI___libc_free (28 samples, 0.04%)</title><rect x="238.7" y="341" width="0.5" height="15.0" fill="rgb(239,41,2)" rx="2" ry="2" /> | |
<text x="241.71" y="351.5" ></text> | |
</g> | |
<g > | |
<title>__memcpy_sse2 (9 samples, 0.01%)</title><rect x="17.0" y="165" width="0.1" height="15.0" fill="rgb(235,193,22)" rx="2" ry="2" /> | |
<text x="19.96" y="175.5" ></text> | |
</g> | |
<g > | |
<title>cranelift_bforest::path::Path$LT$F$GT$::next_node::h2a948811c5cf6f80 (7 samples, 0.01%)</title><rect x="77.0" y="197" width="0.1" height="15.0" fill="rgb(233,125,49)" rx="2" ry="2" /> | |
<text x="80.01" y="207.5" ></text> | |
</g> | |
<g > | |
<title>std::sys::unix::time::inner::Instant::now::h23f1bea5949f1bbd (7 samples, 0.01%)</title><rect x="1160.1" y="229" width="0.1" height="15.0" fill="rgb(223,176,47)" rx="2" ry="2" /> | |
<text x="1163.07" y="239.5" ></text> | |
</g> | |
<g > | |
<title>__vdso_clock_gettime (8 samples, 0.01%)</title><rect x="120.6" y="133" width="0.2" height="15.0" fill="rgb(215,60,5)" rx="2" ry="2" /> | |
<text x="123.62" y="143.5" ></text> | |
</g> | |
<g > | |
<title>__GI___pthread_rwlock_unlock (11 samples, 0.02%)</title><rect x="359.4" y="341" width="0.2" height="15.0" fill="rgb(210,163,16)" rx="2" ry="2" /> | |
<text x="362.40" y="351.5" ></text> | |
</g> | |
<g > | |
<title>cranelift_codegen::isa::TargetIsa::encode::h3618ddf6ad568ce7 (11 samples, 0.02%)</title><rect x="97.9" y="133" width="0.2" height="15.0" fill="rgb(231,194,46)" rx="2" ry="2" /> | |
<text x="100.88" y="143.5" ></text> | |
</g> | |
<g > | |
<title>__GI___libc_malloc (68 samples, 0.10%)</title><rect x="802.8" y="293" width="1.2" height="15.0" fill="rgb(219,144,13)" rx="2" ry="2" /> | |
<text x="805.81" y="303.5" ></text> | |
</g> | |
<g > | |
<title>cranelift_codegen::ir::builder::InstBuilder::spill::hddbf9a7f97d9d38b (38 samples, 0.05%)</title><rect x="1178.7" y="293" width="0.7" height="15.0" fill="rgb(208,67,50)" rx="2" ry="2" /> | |
<text x="1181.75" y="303.5" ></text> | |
</g> | |
<g > | |
<title>wasmer_runtime_core::instance::call_func_with_index_inner::_$u7b$$u7b$closure$u7d$$u7d$::h13770553ad121b04 (439 samples, 0.63%)</title><rect x="864.2" y="341" width="7.4" height="15.0" fill="rgb(244,189,11)" rx="2" ry="2" /> | |
<text x="867.17" y="351.5" ></text> | |
</g> | |
<g > | |
<title>__memcpy_avx_unaligned (12 samples, 0.02%)</title><rect x="176.3" y="293" width="0.2" height="15.0" fill="rgb(228,116,20)" rx="2" ry="2" /> | |
<text x="179.30" 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 (13 samples, 0.02%)</title><rect x="107.2" y="197" width="0.2" height="15.0" fill="rgb(233,157,53)" rx="2" ry="2" /> | |
<text x="110.15" y="207.5" ></text> | |
</g> | |
<g > | |
<title>_ZN9hashbrown3raw17RawTable$LT$T$GT$14reserve_rehash17h949d57d1e07c193dE.llvm.16938716460618634628 (29 samples, 0.04%)</title><rect x="33.9" y="245" width="0.5" height="15.0" fill="rgb(248,137,46)" rx="2" ry="2" /> | |
<text x="36.88" y="255.5" ></text> | |
</g> | |
<g > | |
<title>__rust_dealloc (6 samples, 0.01%)</title><rect x="1052.3" y="389" width="0.1" height="15.0" fill="rgb(240,91,49)" rx="2" ry="2" /> | |
<text x="1055.27" y="399.5" ></text> | |
</g> | |
<g > | |
<title>alloc::raw_vec::RawVec$LT$T$C$A$GT$::reserve::he459267326f26ce0 (17 samples, 0.02%)</title><rect x="118.1" y="165" width="0.3" height="15.0" fill="rgb(218,162,31)" rx="2" ry="2" /> | |
<text x="121.13" y="175.5" ></text> | |
</g> | |
<g > | |
<title>cranelift_codegen::isa::constraints::RecipeConstraints::satisfied::h33556c8a9b1bba6e (66 samples, 0.09%)</title><rect x="106.0" y="181" width="1.1" height="15.0" fill="rgb(221,123,4)" rx="2" ry="2" /> | |
<text x="109.02" y="191.5" ></text> | |
</g> | |
<g > | |
<title>__GI___libc_malloc (8 samples, 0.01%)</title><rect x="824.4" y="309" width="0.1" height="15.0" fill="rgb(223,123,37)" rx="2" ry="2" /> | |
<text x="827.37" 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.02%)</title><rect x="37.6" y="293" width="0.2" height="15.0" fill="rgb(238,105,10)" rx="2" ry="2" /> | |
<text x="40.58" y="303.5" ></text> | |
</g> | |
<g > | |
<title>cranelift_codegen::binemit::relaxation::relax_branches::hf8ed24268a55ae64 (280 samples, 0.40%)</title><rect x="23.2" y="293" width="4.7" height="15.0" fill="rgb(233,3,48)" rx="2" ry="2" /> | |
<text x="26.15" y="303.5" ></text> | |
</g> | |
<g > | |
<title>std::sys::unix::time::inner::Instant::now::h23f1bea5949f1bbd (12 samples, 0.02%)</title><rect x="24.8" y="229" width="0.2" height="15.0" fill="rgb(233,185,16)" rx="2" ry="2" /> | |
<text x="27.82" y="239.5" ></text> | |
</g> | |
<g > | |
<title>cranelift_codegen::context::Context::shrink_instructions::he0b1678d1727ad37 (578 samples, 0.82%)</title><rect x="27.9" y="309" width="9.7" height="15.0" fill="rgb(253,41,36)" rx="2" ry="2" /> | |
<text x="30.86" y="319.5" ></text> | |
</g> | |
<g > | |
<title>unmap_region (173 samples, 0.25%)</title><rect x="234.0" y="245" width="2.9" height="15.0" fill="rgb(233,194,26)" rx="2" ry="2" /> | |
<text x="237.02" y="255.5" ></text> | |
</g> | |
<g > | |
<title>__GI___libc_realloc (32 samples, 0.05%)</title><rect x="93.1" y="165" width="0.6" height="15.0" fill="rgb(240,214,53)" rx="2" ry="2" /> | |
<text x="96.13" y="175.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 (20 samples, 0.03%)</title><rect x="14.0" y="277" width="0.3" height="15.0" fill="rgb(225,116,16)" rx="2" ry="2" /> | |
<text x="16.95" y="287.5" ></text> | |
</g> | |
<g > | |
<title>std::sys::unix::time::inner::Instant::now::h23f1bea5949f1bbd (7 samples, 0.01%)</title><rect x="1159.9" y="261" width="0.1" height="15.0" fill="rgb(252,39,50)" rx="2" ry="2" /> | |
<text x="1162.88" y="271.5" ></text> | |
</g> | |
<g > | |
<title>std::time::Instant::now::h33d2ba6042def2d2 (11 samples, 0.02%)</title><rect x="175.4" y="213" width="0.2" height="15.0" fill="rgb(236,117,16)" rx="2" ry="2" /> | |
<text x="178.41" y="223.5" ></text> | |
</g> | |
<g > | |
<title>cranelift_codegen::ir::dfg::DataFlowGraph::ctrl_typevar::h001f83f02149e995 (10 samples, 0.01%)</title><rect x="174.6" y="213" width="0.1" height="15.0" fill="rgb(241,45,16)" rx="2" ry="2" /> | |
<text x="177.55" y="223.5" ></text> | |
</g> | |
<g > | |
<title>__GI___libc_malloc (6 samples, 0.01%)</title><rect x="61.3" y="261" width="0.1" height="15.0" fill="rgb(210,29,7)" rx="2" ry="2" /> | |
<text x="64.26" y="271.5" ></text> | |
</g> | |
<g > | |
<title>__GI___libc_free (47 samples, 0.07%)</title><rect x="300.0" y="309" width="0.8" height="15.0" fill="rgb(222,213,2)" rx="2" ry="2" /> | |
<text x="302.97" y="319.5" ></text> | |
</g> | |
<g > | |
<title>cranelift_codegen::ir::builder::InstBuilder::regmove::h2d2e8972aa228be7 (67 samples, 0.10%)</title><rect x="140.9" y="197" width="1.1" height="15.0" fill="rgb(240,159,34)" rx="2" ry="2" /> | |
<text x="143.90" y="207.5" ></text> | |
</g> | |
<g > | |
<title>std::sys::unix::time::inner::Instant::now::h23f1bea5949f1bbd (8 samples, 0.01%)</title><rect x="120.6" y="181" width="0.2" height="15.0" fill="rgb(229,192,3)" rx="2" ry="2" /> | |
<text x="123.62" y="191.5" ></text> | |
</g> | |
<g > | |
<title>_int_free (10 samples, 0.01%)</title><rect x="806.4" y="229" width="0.1" height="15.0" fill="rgb(229,139,28)" rx="2" ry="2" /> | |
<text x="809.38" y="239.5" ></text> | |
</g> | |
<g > | |
<title>std::sys::unix::time::inner::now::ha10452f37b2930c5 (7 samples, 0.01%)</title><rect x="147.1" y="133" width="0.1" height="15.0" fill="rgb(230,21,54)" rx="2" ry="2" /> | |
<text x="150.12" y="143.5" ></text> | |
</g> | |
<g > | |
<title>cranelift_codegen::scoped_hash_map::ScopedHashMap$LT$K$C$V$GT$::decrement_depth::hf6d6ab0429c2a14c (12 samples, 0.02%)</title><rect x="169.0" y="213" width="0.2" height="15.0" fill="rgb(250,46,33)" rx="2" ry="2" /> | |
<text x="172.04" y="223.5" ></text> | |
</g> | |
<g > | |
<title>_$LT$cranelift_codegen..timing..details..TimingToken$u20$as$u20$core..ops..drop..Drop$GT$::drop::h1b19c2a93ee0a091 (16 samples, 0.02%)</title><rect x="50.3" y="277" width="0.3" height="15.0" fill="rgb(222,83,19)" rx="2" ry="2" /> | |
<text x="53.31" y="287.5" ></text> | |
</g> | |
<g > | |
<title>__GI___libc_malloc (57 samples, 0.08%)</title><rect x="170.7" y="181" width="1.0" height="15.0" fill="rgb(250,229,32)" rx="2" ry="2" /> | |
<text x="173.70" y="191.5" ></text> | |
</g> | |
<g > | |
<title>cranelift_codegen::flowgraph::ControlFlowGraph::compute::hdce42828fa3e59cb (38 samples, 0.05%)</title><rect x="1160.0" y="293" width="0.6" height="15.0" fill="rgb(209,13,31)" rx="2" ry="2" /> | |
<text x="1163.00" y="303.5" ></text> | |
</g> | |
<g > | |
<title>[unknown] (69,369 samples, 98.86%)</title><rect x="13.9" y="453" width="1166.6" height="15.0" fill="rgb(247,182,42)" rx="2" ry="2" /> | |
<text x="16.94" y="463.5" >[unknown]</text> | |
</g> | |
<g > | |
<title>alloc::raw_vec::RawVec$LT$T$C$A$GT$::reserve::h0c445b41f7c28667 (31 samples, 0.04%)</title><rect x="1178.8" y="245" width="0.5" height="15.0" fill="rgb(212,129,1)" rx="2" ry="2" /> | |
<text x="1181.80" y="255.5" ></text> | |
</g> | |
<g > | |
<title>_$LT$alloc..vec..Vec$LT$T$GT$$u20$as$u20$core..clone..Clone$GT$::clone::h2c3f89686bde01ac (6 samples, 0.01%)</title><rect x="62.7" y="245" width="0.1" height="15.0" fill="rgb(239,132,32)" rx="2" ry="2" /> | |
<text x="65.67" y="255.5" ></text> | |
</g> | |
<g > | |
<title>__GI___libc_free (15 samples, 0.02%)</title><rect x="330.6" y="277" width="0.2" height="15.0" fill="rgb(234,142,19)" rx="2" ry="2" /> | |
<text x="333.56" y="287.5" ></text> | |
</g> | |
<g > | |
<title>__GI___libc_realloc (14 samples, 0.02%)</title><rect x="322.4" y="245" width="0.2" height="15.0" fill="rgb(245,52,28)" rx="2" ry="2" /> | |
<text x="325.37" y="255.5" ></text> | |
</g> | |
<g > | |
<title>_int_free (24 samples, 0.03%)</title><rect x="313.4" y="245" width="0.4" height="15.0" fill="rgb(239,156,37)" rx="2" ry="2" /> | |
<text x="316.36" y="255.5" ></text> | |
</g> | |
<g > | |
<title>cranelift_codegen::abi::legalize_args::he47515d3a3ad0ee6 (48 samples, 0.07%)</title><rect x="83.1" y="165" width="0.8" height="15.0" fill="rgb(254,70,7)" rx="2" ry="2" /> | |
<text x="86.07" y="175.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 (21 samples, 0.03%)</title><rect x="108.1" y="181" width="0.4" height="15.0" fill="rgb(226,16,3)" rx="2" ry="2" /> | |
<text x="111.11" y="191.5" ></text> | |
</g> | |
<g > | |
<title>_int_malloc (11 samples, 0.02%)</title><rect x="128.8" y="149" width="0.2" height="15.0" fill="rgb(250,164,46)" rx="2" ry="2" /> | |
<text x="131.78" y="159.5" ></text> | |
</g> | |
<g > | |
<title>_$LT$cranelift_codegen..isa..x86..abi..Args$u20$as$u20$cranelift_codegen..abi..ArgAssigner$GT$::assign::h1ef61b42453724d8 (9 samples, 0.01%)</title><rect x="83.2" y="149" width="0.1" height="15.0" fill="rgb(228,100,46)" rx="2" ry="2" /> | |
<text x="86.19" y="159.5" ></text> | |
</g> | |
<g > | |
<title>__GI___clock_gettime (10 samples, 0.01%)</title><rect x="98.8" y="149" width="0.2" height="15.0" fill="rgb(241,154,12)" rx="2" ry="2" /> | |
<text x="101.83" y="159.5" ></text> | |
</g> | |
<g > | |
<title>cranelift_codegen::isa::Builder::finish::h10c6dcad4391fb0e (30 samples, 0.04%)</title><rect x="355.8" y="309" width="0.5" height="15.0" fill="rgb(244,12,33)" rx="2" ry="2" /> | |
<text x="358.82" y="319.5" ></text> | |
</g> | |
<g > | |
<title>std::sys::unix::time::inner::Instant::now::h23f1bea5949f1bbd (18 samples, 0.03%)</title><rect x="116.7" y="197" width="0.3" height="15.0" fill="rgb(238,206,45)" rx="2" ry="2" /> | |
<text x="119.69" y="207.5" ></text> | |
</g> | |
<g > | |
<title>__vdso_clock_gettime (7 samples, 0.01%)</title><rect x="175.3" y="117" width="0.1" height="15.0" fill="rgb(222,45,13)" rx="2" ry="2" /> | |
<text x="178.29" y="127.5" ></text> | |
</g> | |
<g > | |
<title>alloc::raw_vec::RawVec$LT$T$C$A$GT$::reserve::h90000ec143ceb992 (618 samples, 0.88%)</title><rect x="614.5" y="309" width="10.4" height="15.0" fill="rgb(235,0,5)" rx="2" ry="2" /> | |
<text x="617.48" y="319.5" ></text> | |
</g> | |
<g > | |
<title>__GI___clock_gettime (6 samples, 0.01%)</title><rect x="1166.4" y="229" width="0.1" height="15.0" fill="rgb(241,204,48)" rx="2" ry="2" /> | |
<text x="1169.42" y="239.5" ></text> | |
</g> | |
<g > | |
<title>wasmer_runtime_core::instance::Instance::new::h767b5a62d9ac8288 (409 samples, 0.58%)</title><rect x="872.6" y="373" width="6.9" height="15.0" fill="rgb(246,76,50)" rx="2" ry="2" /> | |
<text x="875.62" y="383.5" ></text> | |
</g> | |
<g > | |
<title>std::sys::unix::time::inner::now::ha10452f37b2930c5 (24 samples, 0.03%)</title><rect x="175.6" y="197" width="0.4" height="15.0" fill="rgb(222,98,41)" rx="2" ry="2" /> | |
<text x="178.59" y="207.5" ></text> | |
</g> | |
<g > | |
<title>__GI___pthread_mutex_init (6 samples, 0.01%)</title><rect x="282.1" y="277" width="0.1" height="15.0" fill="rgb(234,17,31)" rx="2" ry="2" /> | |
<text x="285.10" y="287.5" ></text> | |
</g> | |
<g > | |
<title>__rust_dealloc (6 samples, 0.01%)</title><rect x="182.6" y="277" width="0.1" height="15.0" fill="rgb(228,210,18)" rx="2" ry="2" /> | |
<text x="185.61" y="287.5" ></text> | |
</g> | |
<g > | |
<title>__GI___libc_free (7 samples, 0.01%)</title><rect x="170.6" y="181" width="0.1" height="15.0" fill="rgb(243,113,37)" rx="2" ry="2" /> | |
<text x="173.58" y="191.5" ></text> | |
</g> | |
<g > | |
<title>__GI___libc_free (12 samples, 0.02%)</title><rect x="254.5" y="309" width="0.2" height="15.0" fill="rgb(218,10,31)" rx="2" ry="2" /> | |
<text x="257.48" y="319.5" ></text> | |
</g> | |
<g > | |
<title>cranelift_codegen::ir::dfg::DataFlowGraph::ctrl_typevar::h001f83f02149e995 (24 samples, 0.03%)</title><rect x="108.8" y="197" width="0.4" height="15.0" fill="rgb(231,97,43)" rx="2" ry="2" /> | |
<text x="111.80" y="207.5" ></text> | |
</g> | |
<g > | |
<title>std::sys::unix::time::inner::now::ha10452f37b2930c5 (10 samples, 0.01%)</title><rect x="73.2" y="165" width="0.2" height="15.0" fill="rgb(225,52,18)" rx="2" ry="2" /> | |
<text x="76.23" y="175.5" ></text> | |
</g> | |
<g > | |
<title>remove_vma (17 samples, 0.02%)</title><rect x="233.7" y="245" width="0.3" height="15.0" fill="rgb(219,46,18)" rx="2" ry="2" /> | |
<text x="236.73" y="255.5" ></text> | |
</g> | |
<g > | |
<title>_$LT$alloc..vec..Vec$LT$T$GT$$u20$as$u20$core..clone..Clone$GT$::clone::h514986f3b28de5ec (19 samples, 0.03%)</title><rect x="62.9" y="245" width="0.3" height="15.0" fill="rgb(214,107,25)" rx="2" ry="2" /> | |
<text x="65.86" y="255.5" ></text> | |
</g> | |
<g > | |
<title>__GI___libc_malloc (7 samples, 0.01%)</title><rect x="131.9" y="165" width="0.2" height="15.0" fill="rgb(251,45,39)" rx="2" ry="2" /> | |
<text x="134.94" y="175.5" ></text> | |
</g> | |
<g > | |
<title>_$LT$$RF$mut$u20$cranelift_codegen..cursor..EncCursor$u20$as$u20$cranelift_codegen..ir..builder..InstInserterBase$GT$::insert_built_inst::hbf5c6b2278487fe8 (6 samples, 0.01%)</title><rect x="54.7" y="261" width="0.1" height="15.0" fill="rgb(252,171,39)" rx="2" ry="2" /> | |
<text x="57.70" y="271.5" ></text> | |
</g> | |
<g > | |
<title>alloc::sync::Arc$LT$T$GT$::drop_slow::h56d8944c190ba4ca (12 samples, 0.02%)</title><rect x="189.5" y="213" width="0.2" height="15.0" fill="rgb(232,146,20)" rx="2" ry="2" /> | |
<text x="192.45" y="223.5" ></text> | |
</g> | |
<g > | |
<title>alloc::raw_vec::RawVec$LT$T$C$A$GT$::reserve::hde4c914cbb5df344 (14 samples, 0.02%)</title><rect x="195.0" y="133" width="0.3" height="15.0" fill="rgb(237,78,34)" rx="2" ry="2" /> | |
<text x="198.02" y="143.5" ></text> | |
</g> | |
<g > | |
<title>__sigjmp_save (317 samples, 0.45%)</title><rect x="865.8" y="293" width="5.4" height="15.0" fill="rgb(220,196,34)" rx="2" ry="2" /> | |
<text x="868.84" y="303.5" ></text> | |
</g> | |
<g > | |
<title>entry_SYSCALL_64_after_hwframe (8 samples, 0.01%)</title><rect x="188.9" y="229" width="0.1" height="15.0" fill="rgb(210,204,6)" rx="2" ry="2" /> | |
<text x="191.90" y="239.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 (16 samples, 0.02%)</title><rect x="179.0" y="309" width="0.3" height="15.0" fill="rgb(214,17,0)" rx="2" ry="2" /> | |
<text x="182.01" y="319.5" ></text> | |
</g> | |
<g > | |
<title>alloc::raw_vec::RawVec$LT$T$C$A$GT$::reserve::h500ef385b8747b29 (6 samples, 0.01%)</title><rect x="1168.2" y="197" width="0.1" height="15.0" fill="rgb(237,40,46)" rx="2" ry="2" /> | |
<text x="1171.24" y="207.5" ></text> | |
</g> | |
<g > | |
<title>c2_chacha::guts::refill_wide::impl_avx2::hcbb75f7591de3cb9 (80 samples, 0.11%)</title><rect x="885.7" y="389" width="1.3" height="15.0" fill="rgb(215,107,15)" rx="2" ry="2" /> | |
<text x="888.67" y="399.5" ></text> | |
</g> | |
<g > | |
<title>_int_free (37 samples, 0.05%)</title><rect x="311.9" y="261" width="0.7" height="15.0" fill="rgb(212,180,14)" rx="2" ry="2" /> | |
<text x="314.93" y="271.5" ></text> | |
</g> | |
<g > | |
<title>__GI___libc_free (13 samples, 0.02%)</title><rect x="252.5" y="309" width="0.3" height="15.0" fill="rgb(206,155,43)" rx="2" ry="2" /> | |
<text x="255.53" y="319.5" ></text> | |
</g> | |
<g > | |
<title>wasmer_clif_backend::trampoline::Trampolines::new::h8a78526849fe89b9 (2,799 samples, 3.99%)</title><rect x="14.0" y="357" width="47.0" height="15.0" fill="rgb(235,156,30)" rx="2" ry="2" /> | |
<text x="16.95" y="367.5" >wasm..</text> | |
</g> | |
<g > | |
<title>alloc::raw_vec::RawVec$LT$T$C$A$GT$::reserve::h500ef385b8747b29 (7 samples, 0.01%)</title><rect x="40.1" y="261" width="0.1" height="15.0" fill="rgb(244,135,1)" rx="2" ry="2" /> | |
<text x="43.07" y="271.5" ></text> | |
</g> | |
<g > | |
<title>cranelift_codegen::ir::function::Function::clear::h4a6ec45cff5ac809 (38 samples, 0.05%)</title><rect x="313.2" y="293" width="0.6" height="15.0" fill="rgb(254,205,12)" rx="2" ry="2" /> | |
<text x="316.17" y="303.5" ></text> | |
</g> | |
<g > | |
<title>do_munmap (487 samples, 0.69%)</title><rect x="223.3" y="229" width="8.2" height="15.0" fill="rgb(217,138,52)" rx="2" ry="2" /> | |
<text x="226.29" y="239.5" ></text> | |
</g> | |
<g > | |
<title>__rust_maybe_catch_panic (41 samples, 0.06%)</title><rect x="188.3" y="325" width="0.7" height="15.0" fill="rgb(208,142,16)" rx="2" ry="2" /> | |
<text x="191.34" y="335.5" ></text> | |
</g> | |
<g > | |
<title>wasmparser::readers::module::ModuleReader::read::h9a86df7daf36f14d (11 samples, 0.02%)</title><rect x="193.3" y="117" width="0.2" height="15.0" fill="rgb(219,120,36)" rx="2" ry="2" /> | |
<text x="196.30" y="127.5" ></text> | |
</g> | |
<g > | |
<title>perf_event_mmap_output (51 samples, 0.07%)</title><rect x="286.6" y="149" width="0.8" height="15.0" fill="rgb(208,119,50)" rx="2" ry="2" /> | |
<text x="289.59" y="159.5" ></text> | |
</g> | |
<g > | |
<title>cranelift_codegen::ir::dfg::DataFlowGraph::new::h1636284a161b274f (8 samples, 0.01%)</title><rect x="178.4" y="293" width="0.2" height="15.0" fill="rgb(242,61,7)" rx="2" ry="2" /> | |
<text x="181.44" y="303.5" ></text> | |
</g> | |
<g > | |
<title>wasmparser::operators_validator::OperatorValidator::process_operator::hf8ee49dfd4957437 (11 samples, 0.02%)</title><rect x="195.3" y="149" width="0.2" height="15.0" fill="rgb(244,41,6)" rx="2" ry="2" /> | |
<text x="198.27" y="159.5" ></text> | |
</g> | |
<g > | |
<title>__GI___libc_realloc (11 samples, 0.02%)</title><rect x="141.8" y="165" width="0.1" height="15.0" fill="rgb(253,157,51)" rx="2" ry="2" /> | |
<text x="144.76" y="175.5" ></text> | |
</g> | |
<g > | |
<title>core::option::Option$LT$T$GT$::as_ref::h350fc43ea7807372 (14 samples, 0.02%)</title><rect x="796.6" y="261" width="0.2" height="15.0" fill="rgb(249,203,6)" rx="2" ry="2" /> | |
<text x="799.61" y="271.5" ></text> | |
</g> | |
<g > | |
<title>cranelift_codegen::ir::function::Function::special_param::h6bb1e5d45c3f4180 (6 samples, 0.01%)</title><rect x="1157.1" y="229" width="0.1" height="15.0" fill="rgb(214,96,52)" rx="2" ry="2" /> | |
<text x="1160.11" y="239.5" ></text> | |
</g> | |
<g > | |
<title>__rdl_alloc (18 samples, 0.03%)</title><rect x="1014.6" y="341" width="0.3" height="15.0" fill="rgb(210,210,43)" rx="2" ry="2" /> | |
<text x="1017.63" y="351.5" ></text> | |
</g> | |
<g > | |
<title>_$LT$wasmer_clif_backend..code..CraneliftModuleCodeGenerator$u20$as$u20$wasmer_runtime_core..codegen..ModuleCodeGenerator$LT$wasmer_clif_backend..code..CraneliftFunctionCodeGenerator$C$wasmer_clif_backend..signal..Caller$C$wasmer_clif_backend..code..CodegenError$GT$$GT$::finalize::hbd8b1f6eb4859c5a (6,385 samples, 9.10%)</title><rect x="247.3" y="341" width="107.4" height="15.0" fill="rgb(214,183,35)" rx="2" ry="2" /> | |
<text x="250.32" y="351.5" >_$LT$wasmer_c..</text> | |
</g> | |
<g > | |
<title>wasmer_clif_fork_wasm::state::func_state::FuncTranslationState::initialize::h647245500dff39f8 (28 samples, 0.04%)</title><rect x="813.5" y="309" width="0.5" height="15.0" fill="rgb(214,39,35)" rx="2" ry="2" /> | |
<text x="816.51" y="319.5" ></text> | |
</g> | |
<g > | |
<title>entry_SYSCALL_64_after_hwframe (937 samples, 1.34%)</title><rect x="332.2" y="277" width="15.8" height="15.0" fill="rgb(242,186,30)" rx="2" ry="2" /> | |
<text x="335.19" y="287.5" ></text> | |
</g> | |
<g > | |
<title>__GI___libc_malloc (14 samples, 0.02%)</title><rect x="26.0" y="261" width="0.2" height="15.0" fill="rgb(208,90,21)" rx="2" ry="2" /> | |
<text x="29.01" y="271.5" ></text> | |
</g> | |
<g > | |
<title>cranelift_codegen::settings::Flags::new::h4f222e483e8872a2 (8 samples, 0.01%)</title><rect x="356.5" y="309" width="0.1" height="15.0" fill="rgb(230,83,28)" rx="2" ry="2" /> | |
<text x="359.51" y="319.5" ></text> | |
</g> | |
<g > | |
<title>target_lexicon::triple::Triple::pointer_width::h489c6f879c5fee66 (9 samples, 0.01%)</title><rect x="356.2" y="277" width="0.1" height="15.0" fill="rgb(238,32,38)" rx="2" ry="2" /> | |
<text x="359.17" y="287.5" ></text> | |
</g> | |
<g > | |
<title>_ZN16cranelift_entity4list17ListPool$LT$T$GT$4free17hccc32c4538eef572E.llvm.776987249141506950 (14 samples, 0.02%)</title><rect x="167.9" y="197" width="0.3" height="15.0" fill="rgb(233,187,21)" rx="2" ry="2" /> | |
<text x="170.94" y="207.5" ></text> | |
</g> | |
<g > | |
<title>_$LT$alloc..vec..Vec$LT$T$GT$$u20$as$u20$core..clone..Clone$GT$::clone::h9c68dd6a4f9475a9 (13 samples, 0.02%)</title><rect x="64.6" y="245" width="0.2" height="15.0" fill="rgb(230,134,49)" rx="2" ry="2" /> | |
<text x="67.59" y="255.5" ></text> | |
</g> | |
<g > | |
<title>__memcpy_avx_unaligned (7 samples, 0.01%)</title><rect x="66.0" y="229" width="0.1" height="15.0" fill="rgb(242,182,4)" rx="2" ry="2" /> | |
<text x="68.98" y="239.5" ></text> | |
</g> | |
<g > | |
<title>core::ptr::real_drop_in_place::h767229c0557115cd (12 samples, 0.02%)</title><rect x="66.8" y="261" width="0.2" height="15.0" fill="rgb(236,143,37)" rx="2" ry="2" /> | |
<text x="69.76" y="271.5" ></text> | |
</g> | |
<g > | |
<title>_int_realloc (7 samples, 0.01%)</title><rect x="1168.7" y="133" width="0.2" height="15.0" fill="rgb(251,40,17)" rx="2" ry="2" /> | |
<text x="1171.74" y="143.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 (24 samples, 0.03%)</title><rect x="22.5" y="229" width="0.4" height="15.0" fill="rgb(242,168,26)" rx="2" ry="2" /> | |
<text x="25.51" y="239.5" ></text> | |
</g> | |
<g > | |
<title>__GI___libc_malloc (16 samples, 0.02%)</title><rect x="799.3" y="293" width="0.3" height="15.0" fill="rgb(219,191,21)" rx="2" ry="2" /> | |
<text x="802.31" y="303.5" ></text> | |
</g> | |
<g > | |
<title>rocinante::stoke::Superoptimizer::synthesize::h4ba34d72c5765be9 (56,276 samples, 80.20%)</title><rect x="201.5" y="421" width="946.3" height="15.0" fill="rgb(233,137,13)" rx="2" ry="2" /> | |
<text x="204.46" y="431.5" >rocinante::stoke::Superoptimizer::synthesize::h4ba34d72c5765be9</text> | |
</g> | |
<g > | |
<title>change_protection (41 samples, 0.06%)</title><rect x="284.2" y="197" width="0.7" height="15.0" fill="rgb(237,209,36)" rx="2" ry="2" /> | |
<text x="287.16" y="207.5" ></text> | |
</g> | |
<g > | |
<title>_$LT$$RF$mut$u20$cranelift_codegen..cursor..EncCursor$u20$as$u20$cranelift_codegen..ir..builder..InstInserterBase$GT$::insert_built_inst::hbf5c6b2278487fe8 (36 samples, 0.05%)</title><rect x="1178.7" y="277" width="0.7" height="15.0" fill="rgb(219,23,42)" rx="2" ry="2" /> | |
<text x="1181.75" y="287.5" ></text> | |
</g> | |
<g > | |
<title>_int_malloc (6 samples, 0.01%)</title><rect x="805.2" y="245" width="0.1" height="15.0" fill="rgb(205,108,46)" rx="2" ry="2" /> | |
<text x="808.18" y="255.5" ></text> | |
</g> | |
<g > | |
<title>cranelift_codegen::context::Context::for_function::hea969f7415ee7749 (95 samples, 0.14%)</title><rect x="186.7" y="373" width="1.6" height="15.0" fill="rgb(245,3,52)" rx="2" ry="2" /> | |
<text x="189.74" y="383.5" ></text> | |
</g> | |
<g > | |
<title>std::time::Instant::now::h33d2ba6042def2d2 (12 samples, 0.02%)</title><rect x="1165.9" y="277" width="0.2" height="15.0" fill="rgb(240,12,47)" rx="2" ry="2" /> | |
<text x="1168.87" y="287.5" ></text> | |
</g> | |
<g > | |
<title>cranelift_codegen::regalloc::liveness::get_or_create::h5a0d21740424a6d5 (90 samples, 0.13%)</title><rect x="50.9" y="277" width="1.5" height="15.0" fill="rgb(248,176,49)" rx="2" ry="2" /> | |
<text x="53.92" y="287.5" ></text> | |
</g> | |
<g > | |
<title>__GI___libc_realloc (11 samples, 0.02%)</title><rect x="1180.0" y="277" width="0.2" height="15.0" fill="rgb(210,18,18)" rx="2" ry="2" /> | |
<text x="1182.98" y="287.5" ></text> | |
</g> | |
<g > | |
<title>sys_mprotect (337 samples, 0.48%)</title><rect x="283.6" y="245" width="5.6" height="15.0" fill="rgb(230,22,18)" rx="2" ry="2" /> | |
<text x="286.58" y="255.5" ></text> | |
</g> | |
<g > | |
<title>std::time::Instant::elapsed::h8e307314b2acf9be (13 samples, 0.02%)</title><rect x="80.8" y="181" width="0.3" height="15.0" fill="rgb(221,140,21)" rx="2" ry="2" /> | |
<text x="83.85" y="191.5" ></text> | |
</g> | |
<g > | |
<title>__memcpy_avx_unaligned (6 samples, 0.01%)</title><rect x="60.9" y="309" width="0.1" height="15.0" fill="rgb(235,51,34)" rx="2" ry="2" /> | |
<text x="63.90" y="319.5" ></text> | |
</g> | |
<g > | |
<title>__GI___libc_malloc (11 samples, 0.02%)</title><rect x="62.1" y="229" width="0.2" height="15.0" fill="rgb(240,55,17)" rx="2" ry="2" /> | |
<text x="65.12" y="239.5" ></text> | |
</g> | |
<g > | |
<title>__lock_text_start (36 samples, 0.05%)</title><rect x="226.4" y="149" width="0.6" height="15.0" fill="rgb(209,64,7)" rx="2" ry="2" /> | |
<text x="229.38" y="159.5" ></text> | |
</g> | |
<g > | |
<title>__vdso_clock_gettime (11 samples, 0.02%)</title><rect x="164.3" y="149" width="0.2" height="15.0" fill="rgb(244,76,3)" rx="2" ry="2" /> | |
<text x="167.33" y="159.5" ></text> | |
</g> | |
<g > | |
<title>cranelift_codegen::isa::x86::enc_tables::expand_sdivrem::h68f3c5d1142a2234 (126 samples, 0.18%)</title><rect x="87.0" y="165" width="2.1" height="15.0" fill="rgb(235,216,26)" rx="2" ry="2" /> | |
<text x="90.02" y="175.5" ></text> | |
</g> | |
<g > | |
<title>std::sys::unix::time::inner::now::ha10452f37b2930c5 (12 samples, 0.02%)</title><rect x="24.8" y="213" width="0.2" height="15.0" fill="rgb(208,211,48)" rx="2" ry="2" /> | |
<text x="27.82" y="223.5" ></text> | |
</g> | |
<g > | |
<title>_ZN3std9panicking3try7do_call17h7b956e322363fb07E.llvm.15827231380573383134 (41 samples, 0.06%)</title><rect x="188.3" y="309" width="0.7" height="15.0" fill="rgb(231,131,4)" rx="2" ry="2" /> | |
<text x="191.34" y="319.5" ></text> | |
</g> | |
<g > | |
<title>__rdl_alloc (24 samples, 0.03%)</title><rect x="483.2" y="277" width="0.4" height="15.0" fill="rgb(216,193,8)" rx="2" ry="2" /> | |
<text x="486.21" y="287.5" ></text> | |
</g> | |
<g > | |
<title>wasmparser::parser::Parser::read_function_body::hcb187222237f62c7 (182 samples, 0.26%)</title><rect x="531.5" y="293" width="3.0" height="15.0" fill="rgb(227,106,18)" rx="2" ry="2" /> | |
<text x="534.45" y="303.5" ></text> | |
</g> | |
<g > | |
<title>std::sys::unix::time::inner::now::ha10452f37b2930c5 (8 samples, 0.01%)</title><rect x="101.0" y="133" width="0.1" height="15.0" fill="rgb(219,52,49)" rx="2" ry="2" /> | |
<text x="103.98" y="143.5" ></text> | |
</g> | |
<g > | |
<title>_int_realloc (66 samples, 0.09%)</title><rect x="1041.7" y="325" width="1.2" height="15.0" fill="rgb(225,110,40)" rx="2" ry="2" /> | |
<text x="1044.74" y="335.5" ></text> | |
</g> | |
<g > | |
<title>__GI___clock_gettime (8 samples, 0.01%)</title><rect x="101.0" y="117" width="0.1" height="15.0" fill="rgb(253,102,28)" rx="2" ry="2" /> | |
<text x="103.98" y="127.5" ></text> | |
</g> | |
<g > | |
<title>arch_tlb_finish_mmu (120 samples, 0.17%)</title><rect x="234.6" y="213" width="2.0" height="15.0" fill="rgb(227,100,18)" rx="2" ry="2" /> | |
<text x="237.59" y="223.5" ></text> | |
</g> | |
<g > | |
<title>_int_free (17 samples, 0.02%)</title><rect x="185.2" y="245" width="0.3" height="15.0" fill="rgb(229,39,37)" rx="2" ry="2" /> | |
<text x="188.20" y="255.5" ></text> | |
</g> | |
<g > | |
<title>cranelift_codegen::redundant_reload_remover::RedundantReloadRemover::new::ha2ae7fc59b6f07f8 (66 samples, 0.09%)</title><rect x="176.5" y="293" width="1.1" height="15.0" fill="rgb(233,136,29)" rx="2" ry="2" /> | |
<text x="179.50" y="303.5" ></text> | |
</g> | |
<g > | |
<title>_int_malloc (7 samples, 0.01%)</title><rect x="807.0" y="197" width="0.2" height="15.0" fill="rgb(245,53,9)" rx="2" ry="2" /> | |
<text x="810.05" y="207.5" ></text> | |
</g> | |
<g > | |
<title>cranelift_codegen::isa::enc_tables::lookup_enclist::h59f3ade65a5e8b68 (10 samples, 0.01%)</title><rect x="17.9" y="229" width="0.2" height="15.0" fill="rgb(221,106,49)" rx="2" ry="2" /> | |
<text x="20.89" y="239.5" ></text> | |
</g> | |
<g > | |
<title>cranelift_codegen::regalloc::live_value_tracker::LiveValueTracker::process_inst::hcd4ba6fb549516b2 (123 samples, 0.18%)</title><rect x="161.3" y="197" width="2.1" height="15.0" fill="rgb(208,99,21)" rx="2" ry="2" /> | |
<text x="164.28" y="207.5" ></text> | |
</g> | |
<g > | |
<title>find_vma (9 samples, 0.01%)</title><rect x="262.1" y="213" width="0.2" height="15.0" fill="rgb(213,89,54)" rx="2" ry="2" /> | |
<text x="265.10" y="223.5" ></text> | |
</g> | |
<g > | |
<title>__GI___libc_malloc (121 samples, 0.17%)</title><rect x="250.4" y="309" width="2.0" height="15.0" fill="rgb(239,226,26)" rx="2" ry="2" /> | |
<text x="253.36" y="319.5" ></text> | |
</g> | |
<g > | |
<title>hashbrown::raw::bucket_mask_to_capacity::hff8682455bc98726 (6 samples, 0.01%)</title><rect x="67.8" y="229" width="0.1" height="15.0" fill="rgb(244,38,16)" rx="2" ry="2" /> | |
<text x="70.80" y="239.5" ></text> | |
</g> | |
<g > | |
<title>_int_malloc (11 samples, 0.02%)</title><rect x="78.3" y="165" width="0.1" height="15.0" fill="rgb(252,178,25)" rx="2" ry="2" /> | |
<text x="81.26" y="175.5" ></text> | |
</g> | |
<g > | |
<title>_ZN9hashbrown3raw17RawTable$LT$T$GT$14reserve_rehash17h949d57d1e07c193dE.llvm.16938716460618634628 (35 samples, 0.05%)</title><rect x="1147.9" y="245" width="0.6" height="15.0" fill="rgb(212,181,23)" rx="2" ry="2" /> | |
<text x="1150.89" y="255.5" ></text> | |
</g> | |
<g > | |
<title>cranelift_codegen::ir::layout::Layout::insert_inst::h352d76f498d27496 (8 samples, 0.01%)</title><rect x="20.9" y="229" width="0.2" height="15.0" fill="rgb(217,63,24)" rx="2" ry="2" /> | |
<text x="23.93" y="239.5" ></text> | |
</g> | |
<g > | |
<title>cranelift_codegen::legalizer::split::simplify_branch_arguments::hc015be84b07814bd (48 samples, 0.07%)</title><rect x="90.7" y="181" width="0.8" height="15.0" fill="rgb(219,198,50)" rx="2" ry="2" /> | |
<text x="93.65" y="191.5" ></text> | |
</g> | |
<g > | |
<title>__GI___libc_malloc (14 samples, 0.02%)</title><rect x="64.1" y="229" width="0.2" height="15.0" fill="rgb(215,131,7)" rx="2" ry="2" /> | |
<text x="67.10" y="239.5" ></text> | |
</g> | |
<g > | |
<title>wasmparser::validator::ValidatingParser::check_value_types::h852fc8c2d0e6778a (134 samples, 0.19%)</title><rect x="709.3" y="309" width="2.3" height="15.0" fill="rgb(217,18,39)" rx="2" ry="2" /> | |
<text x="712.31" y="319.5" ></text> | |
</g> | |
<g > | |
<title>cranelift_codegen::regalloc::liverange::GenericLiveRange$LT$PO$GT$::extend_in_ebb::hbdb01049c0b9a2e0 (6 samples, 0.01%)</title><rect x="55.7" y="277" width="0.1" height="15.0" fill="rgb(207,207,18)" rx="2" ry="2" /> | |
<text x="58.74" y="287.5" ></text> | |
</g> | |
<g > | |
<title>std::time::Instant::now::h33d2ba6042def2d2 (12 samples, 0.02%)</title><rect x="110.9" y="197" width="0.2" height="15.0" fill="rgb(219,60,35)" rx="2" ry="2" /> | |
<text x="113.90" y="207.5" ></text> | |
</g> | |
<g > | |
<title>_ZN4core3ptr18real_drop_in_place17hbf1a2e7b1d7f1667E.llvm.2002196175208074555 (11 samples, 0.02%)</title><rect x="816.4" y="277" width="0.2" height="15.0" fill="rgb(247,212,42)" rx="2" ry="2" /> | |
<text x="819.43" y="287.5" ></text> | |
</g> | |
<g > | |
<title>cranelift_codegen::ir::layout::Layout::insert_inst::h352d76f498d27496 (6 samples, 0.01%)</title><rect x="19.8" y="213" width="0.1" height="15.0" fill="rgb(215,10,29)" rx="2" ry="2" /> | |
<text x="22.82" y="223.5" ></text> | |
</g> | |
<g > | |
<title>vma_merge (66 samples, 0.09%)</title><rect x="346.3" y="197" width="1.1" height="15.0" fill="rgb(232,206,26)" rx="2" ry="2" /> | |
<text x="349.25" y="207.5" ></text> | |
</g> | |
<g > | |
<title>_int_realloc (20 samples, 0.03%)</title><rect x="1174.4" y="229" width="0.3" height="15.0" fill="rgb(231,216,45)" rx="2" ry="2" /> | |
<text x="1177.38" y="239.5" ></text> | |
</g> | |
<g > | |
<title>do_syscall_64 (8 samples, 0.01%)</title><rect x="190.7" y="101" width="0.1" height="15.0" fill="rgb(222,49,25)" rx="2" ry="2" /> | |
<text x="193.68" y="111.5" ></text> | |
</g> | |
<g > | |
<title>__rust_dealloc (6 samples, 0.01%)</title><rect x="221.3" y="389" width="0.1" height="15.0" fill="rgb(223,134,53)" rx="2" ry="2" /> | |
<text x="224.30" y="399.5" ></text> | |
</g> | |
<g > | |
<title>std::time::Instant::now::h33d2ba6042def2d2 (6 samples, 0.01%)</title><rect x="124.3" y="181" width="0.1" height="15.0" fill="rgb(212,112,36)" rx="2" ry="2" /> | |
<text x="127.32" y="191.5" ></text> | |
</g> | |
<g > | |
<title>cranelift_codegen::legalizer::legalize_function::h9c05a7523015c4df (50 samples, 0.07%)</title><rect x="1169.5" y="309" width="0.8" height="15.0" fill="rgb(241,201,46)" rx="2" ry="2" /> | |
<text x="1172.47" y="319.5" ></text> | |
</g> | |
<g > | |
<title>_int_malloc (19 samples, 0.03%)</title><rect x="1177.3" y="213" width="0.3" height="15.0" fill="rgb(209,58,39)" rx="2" ry="2" /> | |
<text x="1180.25" y="223.5" ></text> | |
</g> | |
<g > | |
<title>_$LT$alloc..vec..Vec$LT$T$GT$$u20$as$u20$core..clone..Clone$GT$::clone::h4ce7ee2a91eb51fd (39 samples, 0.06%)</title><rect x="78.0" y="197" width="0.7" height="15.0" fill="rgb(217,45,39)" rx="2" ry="2" /> | |
<text x="81.02" y="207.5" ></text> | |
</g> | |
<g > | |
<title>cranelift_codegen::ir::builder::InstBuilder::copy::h9316b7c9ced6bd9c (7 samples, 0.01%)</title><rect x="1169.0" y="213" width="0.1" height="15.0" fill="rgb(217,182,53)" rx="2" ry="2" /> | |
<text x="1172.00" y="223.5" ></text> | |
</g> | |
<g > | |
<title>cranelift_codegen::regalloc::spilling::Context::spill_reg::hfd9fc3b6557c8c97 (25 samples, 0.04%)</title><rect x="1176.0" y="293" width="0.4" height="15.0" fill="rgb(251,67,32)" rx="2" ry="2" /> | |
<text x="1179.01" y="303.5" ></text> | |
</g> | |
<g > | |
<title>__GI___libc_malloc (8 samples, 0.01%)</title><rect x="325.1" y="277" width="0.2" height="15.0" fill="rgb(219,228,31)" rx="2" ry="2" /> | |
<text x="328.13" y="287.5" ></text> | |
</g> | |
<g > | |
<title>__GI___libc_free (13 samples, 0.02%)</title><rect x="1169.5" y="261" width="0.2" height="15.0" fill="rgb(249,146,35)" rx="2" ry="2" /> | |
<text x="1172.47" y="271.5" ></text> | |
</g> | |
<g > | |
<title>cranelift_codegen::ir::instructions::InstructionData::arguments::h70ecdef19e20b02a (11 samples, 0.02%)</title><rect x="1158.5" y="277" width="0.2" height="15.0" fill="rgb(246,141,13)" rx="2" ry="2" /> | |
<text x="1161.52" y="287.5" ></text> | |
</g> | |
<g > | |
<title>entry_SYSCALL_64_after_hwframe (341 samples, 0.49%)</title><rect x="348.8" y="277" width="5.8" height="15.0" fill="rgb(227,149,7)" rx="2" ry="2" /> | |
<text x="351.82" y="287.5" ></text> | |
</g> | |
<g > | |
<title>_int_malloc (210 samples, 0.30%)</title><rect x="655.1" y="245" width="3.5" height="15.0" fill="rgb(224,102,12)" rx="2" ry="2" /> | |
<text x="658.07" y="255.5" ></text> | |
</g> | |
<g > | |
<title>cranelift_codegen::legalizer::legalize_inst::h3c0aa7980e624bbf (76 samples, 0.11%)</title><rect x="17.4" y="277" width="1.2" height="15.0" fill="rgb(210,1,33)" rx="2" ry="2" /> | |
<text x="20.37" y="287.5" ></text> | |
</g> | |
<g > | |
<title>memcpy_erms (10 samples, 0.01%)</title><rect x="268.5" y="133" width="0.2" height="15.0" fill="rgb(228,50,0)" rx="2" ry="2" /> | |
<text x="271.51" y="143.5" ></text> | |
</g> | |
<g > | |
<title>_ZN9hashbrown3raw17RawTable$LT$T$GT$14reserve_rehash17h949d57d1e07c193dE.llvm.16938716460618634628 (24 samples, 0.03%)</title><rect x="1151.4" y="245" width="0.4" height="15.0" fill="rgb(240,158,14)" rx="2" ry="2" /> | |
<text x="1154.42" y="255.5" ></text> | |
</g> | |
<g > | |
<title>cranelift_codegen::context::Context::compile_and_emit::h5499205207e7951f (385 samples, 0.55%)</title><rect x="313.9" y="309" width="6.5" height="15.0" fill="rgb(237,89,16)" rx="2" ry="2" /> | |
<text x="316.95" y="319.5" ></text> | |
</g> | |
<g > | |
<title>_int_free (14 samples, 0.02%)</title><rect x="239.9" y="341" width="0.3" height="15.0" fill="rgb(212,134,11)" rx="2" ry="2" /> | |
<text x="242.92" y="351.5" ></text> | |
</g> | |
<g > | |
<title>mmap_region (223 samples, 0.32%)</title><rect x="350.4" y="181" width="3.7" height="15.0" fill="rgb(251,40,0)" rx="2" ry="2" /> | |
<text x="353.37" y="191.5" ></text> | |
</g> | |
<g > | |
<title>__vdso_clock_gettime (8 samples, 0.01%)</title><rect x="152.1" y="133" width="0.1" height="15.0" fill="rgb(240,216,49)" rx="2" ry="2" /> | |
<text x="155.07" y="143.5" ></text> | |
</g> | |
<g > | |
<title>cranelift_codegen::legalizer::legalize_function::h9c05a7523015c4df (720 samples, 1.03%)</title><rect x="79.8" y="213" width="12.1" height="15.0" fill="rgb(210,68,31)" rx="2" ry="2" /> | |
<text x="82.79" y="223.5" ></text> | |
</g> | |
<g > | |
<title>sched_clock_cpu (8 samples, 0.01%)</title><rect x="294.8" y="69" width="0.1" height="15.0" fill="rgb(205,158,9)" rx="2" ry="2" /> | |
<text x="297.81" y="79.5" ></text> | |
</g> | |
<g > | |
<title>std::sys::unix::alloc::_$LT$impl$u20$core..alloc..GlobalAlloc$u20$for$u20$std..alloc..System$GT$::dealloc::h000dc0e1d3b4be28 (13 samples, 0.02%)</title><rect x="520.2" y="261" width="0.2" height="15.0" fill="rgb(227,150,5)" rx="2" ry="2" /> | |
<text x="523.19" y="271.5" ></text> | |
</g> | |
<g > | |
<title>wasmer_runtime_core::sig_registry::SigRegistry::lookup_signature_ref::hb64a156585a7c92a (26 samples, 0.04%)</title><rect x="872.1" y="373" width="0.4" height="15.0" fill="rgb(214,92,36)" rx="2" ry="2" /> | |
<text x="875.08" y="383.5" ></text> | |
</g> | |
<g > | |
<title>__GI___libc_malloc (7 samples, 0.01%)</title><rect x="144.3" y="149" width="0.1" height="15.0" fill="rgb(254,156,6)" rx="2" ry="2" /> | |
<text x="147.32" y="159.5" ></text> | |
</g> | |
<g > | |
<title>unmap_page_range (14 samples, 0.02%)</title><rect x="236.7" y="197" width="0.2" height="15.0" fill="rgb(208,17,3)" rx="2" ry="2" /> | |
<text x="239.69" y="207.5" ></text> | |
</g> | |
<g > | |
<title>alloc::raw_vec::RawVec$LT$T$C$A$GT$::reserve::h5e34cfad90a6ce21 (15 samples, 0.02%)</title><rect x="39.3" y="293" width="0.3" height="15.0" fill="rgb(252,80,51)" rx="2" ry="2" /> | |
<text x="42.33" y="303.5" ></text> | |
</g> | |
<g > | |
<title>wasmer_clif_backend::trampoline::Trampolines::new::h8a78526849fe89b9 (1,137 samples, 1.62%)</title><rect x="1147.8" y="341" width="19.2" height="15.0" fill="rgb(222,110,27)" rx="2" ry="2" /> | |
<text x="1150.84" y="351.5" ></text> | |
</g> | |
<g > | |
<title>alloc::sync::Arc$LT$T$GT$::drop_slow::h5338add9120ad023 (19 samples, 0.03%)</title><rect x="189.5" y="229" width="0.3" height="15.0" fill="rgb(224,169,52)" rx="2" ry="2" /> | |
<text x="192.45" y="239.5" ></text> | |
</g> | |
<g > | |
<title>_int_malloc (88 samples, 0.13%)</title><rect x="873.1" y="341" width="1.5" height="15.0" fill="rgb(231,5,46)" rx="2" ry="2" /> | |
<text x="876.12" y="351.5" ></text> | |
</g> | |
<g > | |
<title>__GI___clock_gettime (24 samples, 0.03%)</title><rect x="126.9" y="133" width="0.4" height="15.0" fill="rgb(230,181,38)" rx="2" ry="2" /> | |
<text x="129.86" y="143.5" ></text> | |
</g> | |
<g > | |
<title>wasmparser::binary_reader::BinaryReader::read_type::h8a44a0e8de646649 (224 samples, 0.32%)</title><rect x="484.8" y="277" width="3.8" height="15.0" fill="rgb(227,96,15)" rx="2" ry="2" /> | |
<text x="487.84" y="287.5" ></text> | |
</g> | |
<g > | |
<title>cranelift_codegen::regalloc::coloring::Context::visit_inst::h157ddbfc9a018b2b (526 samples, 0.75%)</title><rect x="40.8" y="293" width="8.8" height="15.0" fill="rgb(246,92,51)" rx="2" ry="2" /> | |
<text x="43.77" y="303.5" ></text> | |
</g> | |
<g > | |
<title>__GI___libc_malloc (1,448 samples, 2.06%)</title><rect x="579.6" y="309" width="24.3" height="15.0" fill="rgb(208,3,4)" rx="2" ry="2" /> | |
<text x="582.58" y="319.5" >_..</text> | |
</g> | |
<g > | |
<title>__rdl_alloc (8 samples, 0.01%)</title><rect x="1042.9" y="341" width="0.1" height="15.0" fill="rgb(251,45,18)" rx="2" ry="2" /> | |
<text x="1045.85" y="351.5" ></text> | |
</g> | |
<g > | |
<title>wasmer_clif_fork_frontend::frontend::FunctionBuilder::handle_ssa_side_effects::h073ebcf1d69a8b56 (8 samples, 0.01%)</title><rect x="811.2" y="293" width="0.1" height="15.0" fill="rgb(250,37,52)" rx="2" ry="2" /> | |
<text x="814.19" y="303.5" ></text> | |
</g> | |
<g > | |
<title>_int_malloc (9 samples, 0.01%)</title><rect x="807.5" y="261" width="0.1" height="15.0" fill="rgb(229,190,18)" rx="2" ry="2" /> | |
<text x="810.47" y="271.5" ></text> | |
</g> | |
<g > | |
<title>__vdso_clock_gettime (16 samples, 0.02%)</title><rect x="127.0" y="117" width="0.3" height="15.0" fill="rgb(242,65,51)" rx="2" ry="2" /> | |
<text x="129.99" y="127.5" ></text> | |
</g> | |
<g > | |
<title>cranelift_codegen::ir::dfg::DataFlowGraph::make_ebb::hb6736aafedf924cd (18 samples, 0.03%)</title><rect x="324.4" y="309" width="0.3" height="15.0" fill="rgb(236,36,32)" rx="2" ry="2" /> | |
<text x="327.41" y="319.5" ></text> | |
</g> | |
<g > | |
<title>_ZN9hashbrown3raw17RawTable$LT$T$GT$14reserve_rehash17h949d57d1e07c193dE.llvm.16938716460618634628 (20 samples, 0.03%)</title><rect x="14.0" y="261" width="0.3" height="15.0" fill="rgb(210,52,37)" rx="2" ry="2" /> | |
<text x="16.95" y="271.5" ></text> | |
</g> | |
<g > | |
<title>std::sys::unix::time::inner::Instant::now::h23f1bea5949f1bbd (24 samples, 0.03%)</title><rect x="126.9" y="165" width="0.4" height="15.0" fill="rgb(246,126,51)" rx="2" ry="2" /> | |
<text x="129.86" y="175.5" ></text> | |
</g> | |
<g > | |
<title>_ZN9hashbrown3raw17RawTable$LT$T$GT$14reserve_rehash17h949d57d1e07c193dE.llvm.16938716460618634628 (36 samples, 0.05%)</title><rect x="140.1" y="165" width="0.6" height="15.0" fill="rgb(208,89,13)" rx="2" ry="2" /> | |
<text x="143.09" y="175.5" ></text> | |
</g> | |
<g > | |
<title>__do_page_fault (228 samples, 0.32%)</title><rect x="275.5" y="261" width="3.8" height="15.0" fill="rgb(206,49,27)" rx="2" ry="2" /> | |
<text x="278.49" y="271.5" ></text> | |
</g> | |
<g > | |
<title>hashbrown::rustc_entry::_$LT$impl$u20$hashbrown..map..HashMap$LT$K$C$V$C$S$GT$$GT$::rustc_entry::h0c810357b190d293 (18 samples, 0.03%)</title><rect x="71.8" y="197" width="0.3" height="15.0" fill="rgb(218,95,20)" rx="2" ry="2" /> | |
<text x="74.75" y="207.5" ></text> | |
</g> | |
<g > | |
<title>core::ptr::real_drop_in_place::h73e5f742715a1243 (29 samples, 0.04%)</title><rect x="186.2" y="309" width="0.5" height="15.0" fill="rgb(206,30,49)" rx="2" ry="2" /> | |
<text x="189.21" y="319.5" ></text> | |
</g> | |
<g > | |
<title>_$LT$cranelift_codegen..timing..details..TimingToken$u20$as$u20$core..ops..drop..Drop$GT$::drop::h1b19c2a93ee0a091 (8 samples, 0.01%)</title><rect x="33.5" y="277" width="0.1" height="15.0" fill="rgb(214,144,54)" rx="2" ry="2" /> | |
<text x="36.49" y="287.5" ></text> | |
</g> | |
<g > | |
<title>__memcpy_avx_unaligned (12 samples, 0.02%)</title><rect x="108.6" y="197" width="0.2" height="15.0" fill="rgb(221,94,14)" rx="2" ry="2" /> | |
<text x="111.56" y="207.5" ></text> | |
</g> | |
<g > | |
<title>cranelift_entity::sparse::SparseMap$LT$K$C$V$GT$::insert::h31013d437c52e258 (18 samples, 0.03%)</title><rect x="1172.2" y="261" width="0.3" height="15.0" fill="rgb(245,45,27)" rx="2" ry="2" /> | |
<text x="1175.22" 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 (23 samples, 0.03%)</title><rect x="1139.6" y="341" width="0.4" height="15.0" fill="rgb(250,131,19)" rx="2" ry="2" /> | |
<text x="1142.57" y="351.5" ></text> | |
</g> | |
<g > | |
<title>unmap_single_vma (66 samples, 0.09%)</title><rect x="230.3" y="181" width="1.1" height="15.0" fill="rgb(232,41,48)" rx="2" ry="2" /> | |
<text x="233.27" y="191.5" ></text> | |
</g> | |
<g > | |
<title>_int_malloc (7 samples, 0.01%)</title><rect x="299.7" y="277" width="0.2" height="15.0" fill="rgb(226,176,5)" rx="2" ry="2" /> | |
<text x="302.74" y="287.5" ></text> | |
</g> | |
<g > | |
<title>std::sys::unix::time::inner::Instant::now::h23f1bea5949f1bbd (8 samples, 0.01%)</title><rect x="121.0" y="149" width="0.1" height="15.0" fill="rgb(205,188,4)" rx="2" ry="2" /> | |
<text x="123.97" y="159.5" ></text> | |
</g> | |
<g > | |
<title>cranelift_codegen::isa::x86::abi::prologue_epilogue::h9cb24b877f7c4837 (372 samples, 0.53%)</title><rect x="92.5" y="197" width="6.2" height="15.0" fill="rgb(236,84,51)" rx="2" ry="2" /> | |
<text x="95.49" y="207.5" ></text> | |
</g> | |
<g > | |
<title>__GI___libc_realloc (6 samples, 0.01%)</title><rect x="141.1" y="149" width="0.1" height="15.0" fill="rgb(228,116,26)" rx="2" ry="2" /> | |
<text x="144.09" y="159.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 (486 samples, 0.69%)</title><rect x="178.6" y="341" width="8.1" height="15.0" fill="rgb(252,102,22)" rx="2" ry="2" /> | |
<text x="181.57" y="351.5" ></text> | |
</g> | |
<g > | |
<title>change_protection_range (31 samples, 0.04%)</title><rect x="284.3" y="181" width="0.5" height="15.0" fill="rgb(205,15,3)" rx="2" ry="2" /> | |
<text x="287.32" y="191.5" ></text> | |
</g> | |
<g > | |
<title>std::collections::hash::map::RandomState::new::KEYS::__getit::hc919284a97fb9164 (35 samples, 0.05%)</title><rect x="796.3" y="309" width="0.5" height="15.0" fill="rgb(212,204,40)" rx="2" ry="2" /> | |
<text x="799.25" y="319.5" ></text> | |
</g> | |
<g > | |
<title>core::ptr::real_drop_in_place::h8867d7619d5a1899 (23 samples, 0.03%)</title><rect x="184.7" y="277" width="0.3" height="15.0" fill="rgb(207,89,44)" rx="2" ry="2" /> | |
<text x="187.66" y="287.5" ></text> | |
</g> | |
<g > | |
<title>_$LT$wasmer_clif_backend..signal..Caller$u20$as$u20$wasmer_runtime_core..backend..RunnableModule$GT$::get_trampoline::h81ec02567a29dd60 (92 samples, 0.13%)</title><rect x="859.7" y="357" width="1.5" height="15.0" fill="rgb(227,226,32)" rx="2" ry="2" /> | |
<text x="862.68" y="367.5" ></text> | |
</g> | |
<g > | |
<title>page_counter_cancel (11 samples, 0.02%)</title><rect x="235.3" y="101" width="0.2" height="15.0" fill="rgb(250,114,30)" rx="2" ry="2" /> | |
<text x="238.29" y="111.5" ></text> | |
</g> | |
<g > | |
<title>exit_to_usermode_loop (14 samples, 0.02%)</title><rect x="10.8" y="373" width="0.3" height="15.0" fill="rgb(251,128,23)" rx="2" ry="2" /> | |
<text x="13.84" y="383.5" ></text> | |
</g> | |
<g > | |
<title>_$LT$cranelift_codegen..timing..details..TimingToken$u20$as$u20$core..ops..drop..Drop$GT$::drop::h1b19c2a93ee0a091 (12 samples, 0.02%)</title><rect x="1161.8" y="277" width="0.2" height="15.0" fill="rgb(208,160,23)" rx="2" ry="2" /> | |
<text x="1164.80" y="287.5" ></text> | |
</g> | |
<g > | |
<title>alloc::raw_vec::RawVec$LT$T$C$A$GT$::reserve::h500ef385b8747b29 (41 samples, 0.06%)</title><rect x="114.4" y="213" width="0.7" height="15.0" fill="rgb(252,171,7)" rx="2" ry="2" /> | |
<text x="117.43" y="223.5" ></text> | |
</g> | |
<g > | |
<title>cranelift_codegen::regalloc::live_value_tracker::LiveValueTracker::ebb_top::hfe56a550654953ca (25 samples, 0.04%)</title><rect x="1175.2" y="293" width="0.4" height="15.0" fill="rgb(217,122,14)" rx="2" ry="2" /> | |
<text x="1178.15" y="303.5" ></text> | |
</g> | |
<g > | |
<title>__rust_dealloc (8 samples, 0.01%)</title><rect x="776.9" y="309" width="0.1" height="15.0" fill="rgb(236,148,16)" rx="2" ry="2" /> | |
<text x="779.88" y="319.5" ></text> | |
</g> | |
<g > | |
<title>wasmparser::parser::Parser::read_next_section::h4d9786321eb758cf (2,527 samples, 3.60%)</title><rect x="534.5" y="293" width="42.5" height="15.0" fill="rgb(217,108,4)" rx="2" ry="2" /> | |
<text x="537.52" y="303.5" >wasm..</text> | |
</g> | |
<g > | |
<title>cranelift_codegen::ir::dfg::DataFlowGraph::resolve_aliases_in_arguments::ha1a59fc1c5edab63 (13 samples, 0.02%)</title><rect x="50.6" y="277" width="0.2" height="15.0" fill="rgb(205,68,1)" rx="2" ry="2" /> | |
<text x="53.58" y="287.5" ></text> | |
</g> | |
<g > | |
<title>__GI___libc_free (9 samples, 0.01%)</title><rect x="579.4" y="309" width="0.2" height="15.0" fill="rgb(208,89,12)" rx="2" ry="2" /> | |
<text x="582.43" y="319.5" ></text> | |
</g> | |
<g > | |
<title>_ZN4core5slice4sort7recurse17h72b9e9096f9d194bE.llvm.15195122248153170019 (14 samples, 0.02%)</title><rect x="158.5" y="197" width="0.2" height="15.0" fill="rgb(243,81,31)" rx="2" ry="2" /> | |
<text x="161.51" y="207.5" ></text> | |
</g> | |
<g > | |
<title>mem_cgroup_try_charge (11 samples, 0.02%)</title><rect x="305.9" y="213" width="0.1" height="15.0" fill="rgb(254,63,36)" rx="2" ry="2" /> | |
<text x="308.86" y="223.5" ></text> | |
</g> | |
<g > | |
<title>__GI___libc_realloc (17 samples, 0.02%)</title><rect x="18.7" y="245" width="0.3" height="15.0" fill="rgb(250,224,15)" rx="2" ry="2" /> | |
<text x="21.73" y="255.5" ></text> | |
</g> | |
<g > | |
<title>_int_free (959 samples, 1.37%)</title><rect x="760.4" y="293" width="16.1" height="15.0" fill="rgb(211,141,47)" rx="2" ry="2" /> | |
<text x="763.36" y="303.5" ></text> | |
</g> | |
<g > | |
<title>try_charge (6 samples, 0.01%)</title><rect x="305.9" y="197" width="0.1" height="15.0" fill="rgb(234,186,43)" rx="2" ry="2" /> | |
<text x="308.94" y="207.5" ></text> | |
</g> | |
<g > | |
<title>cranelift_entity::list::EntityList$LT$T$GT$::push::h051541d55e7ee057 (48 samples, 0.07%)</title><rect x="16.6" y="261" width="0.8" height="15.0" fill="rgb(233,2,11)" rx="2" ry="2" /> | |
<text x="19.56" y="271.5" ></text> | |
</g> | |
<g > | |
<title>__GI___libc_free (12 samples, 0.02%)</title><rect x="231.8" y="325" width="0.2" height="15.0" fill="rgb(210,1,34)" rx="2" ry="2" /> | |
<text x="234.85" y="335.5" ></text> | |
</g> | |
<g > | |
<title>_$LT$std..collections..hash..map..DefaultHasher$u20$as$u20$core..hash..Hasher$GT$::write::hce30e4f96ad2e64e (6 samples, 0.01%)</title><rect x="818.3" y="277" width="0.1" height="15.0" fill="rgb(241,77,46)" rx="2" ry="2" /> | |
<text x="821.32" y="287.5" ></text> | |
</g> | |
<g > | |
<title>__GI___clock_gettime (6 samples, 0.01%)</title><rect x="155.1" y="149" width="0.1" height="15.0" fill="rgb(214,75,14)" rx="2" ry="2" /> | |
<text x="158.15" y="159.5" ></text> | |
</g> | |
<g > | |
<title>cranelift_codegen::ir::function::Function::with_name_signature::h3213a13dd838e646 (7 samples, 0.01%)</title><rect x="1180.4" y="357" width="0.1" height="15.0" fill="rgb(232,107,18)" rx="2" ry="2" /> | |
<text x="1183.38" y="367.5" ></text> | |
</g> | |
<g > | |
<title>_$LT$cranelift_codegen..timing..details..TimingToken$u20$as$u20$core..ops..drop..Drop$GT$::drop::h1b19c2a93ee0a091 (17 samples, 0.02%)</title><rect x="54.1" y="277" width="0.3" height="15.0" fill="rgb(217,77,25)" rx="2" ry="2" /> | |
<text x="57.14" y="287.5" ></text> | |
</g> | |
<g > | |
<title>wasmer_clif_backend::signal::unix::call_protected::h998ed36d6bf840fc (379 samples, 0.54%)</title><rect x="864.9" y="309" width="6.4" height="15.0" fill="rgb(239,41,7)" rx="2" ry="2" /> | |
<text x="867.91" 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 (30 samples, 0.04%)</title><rect x="188.3" y="245" width="0.5" height="15.0" fill="rgb(250,156,50)" rx="2" ry="2" /> | |
<text x="191.34" y="255.5" ></text> | |
</g> | |
<g > | |
<title>cranelift_codegen::simple_preopt::do_preopt::hc14889b432418503 (117 samples, 0.17%)</title><rect x="172.9" y="229" width="2.0" height="15.0" fill="rgb(213,84,54)" rx="2" ry="2" /> | |
<text x="175.90" y="239.5" ></text> | |
</g> | |
<g > | |
<title>__GI___libc_malloc (7 samples, 0.01%)</title><rect x="1176.1" y="261" width="0.1" height="15.0" fill="rgb(223,52,48)" rx="2" ry="2" /> | |
<text x="1179.09" y="271.5" ></text> | |
</g> | |
<g > | |
<title>alloc::raw_vec::RawVec$LT$T$C$A$GT$::reserve::h7d58c3dcd294aa1f (12 samples, 0.02%)</title><rect x="878.9" y="341" width="0.2" height="15.0" fill="rgb(208,190,44)" rx="2" ry="2" /> | |
<text x="881.92" y="351.5" ></text> | |
</g> | |
<g > | |
<title>std::sys::unix::time::inner::Instant::now::h23f1bea5949f1bbd (11 samples, 0.02%)</title><rect x="1153.8" y="213" width="0.2" height="15.0" fill="rgb(244,147,41)" rx="2" ry="2" /> | |
<text x="1156.81" y="223.5" ></text> | |
</g> | |
<g > | |
<title>kmem_cache_free (6 samples, 0.01%)</title><rect x="226.0" y="165" width="0.1" height="15.0" fill="rgb(248,171,20)" rx="2" ry="2" /> | |
<text x="228.99" y="175.5" ></text> | |
</g> | |
<g > | |
<title>kmem_cache_alloc (18 samples, 0.03%)</title><rect x="292.5" y="165" width="0.3" height="15.0" fill="rgb(237,99,31)" rx="2" ry="2" /> | |
<text x="295.49" y="175.5" ></text> | |
</g> | |
<g > | |
<title>alloc::borrow::Cow$LT$B$GT$::to_mut::h2ad6d2b639bc919b (27 samples, 0.04%)</title><rect x="1169.9" y="245" width="0.4" height="15.0" fill="rgb(217,188,40)" rx="2" ry="2" /> | |
<text x="1172.85" y="255.5" ></text> | |
</g> | |
<g > | |
<title>std::time::Instant::now::h33d2ba6042def2d2 (8 samples, 0.01%)</title><rect x="1161.2" y="277" width="0.1" height="15.0" fill="rgb(206,87,37)" rx="2" ry="2" /> | |
<text x="1164.19" y="287.5" ></text> | |
</g> | |
<g > | |
<title>cranelift_codegen::ir::builder::InstBuilder::regmove::h2d2e8972aa228be7 (65 samples, 0.09%)</title><rect x="1171.1" y="293" width="1.1" height="15.0" fill="rgb(229,68,39)" rx="2" ry="2" /> | |
<text x="1174.13" y="303.5" ></text> | |
</g> | |
<g > | |
<title>_$LT$cranelift_codegen..timing..details..TimingToken$u20$as$u20$core..ops..drop..Drop$GT$::drop::h1b19c2a93ee0a091 (28 samples, 0.04%)</title><rect x="92.0" y="197" width="0.5" height="15.0" fill="rgb(231,55,36)" rx="2" ry="2" /> | |
<text x="95.02" y="207.5" ></text> | |
</g> | |
<g > | |
<title>_$LT$parity_wasm..elements..ops..Instruction$u20$as$u20$parity_wasm..elements..Serialize$GT$::serialize::h0e7ca03145b3f942 (50 samples, 0.07%)</title><rect x="198.5" y="197" width="0.8" height="15.0" fill="rgb(249,73,5)" rx="2" ry="2" /> | |
<text x="201.50" y="207.5" ></text> | |
</g> | |
<g > | |
<title>__vdso_clock_gettime (6 samples, 0.01%)</title><rect x="112.9" y="149" width="0.1" height="15.0" fill="rgb(246,94,0)" rx="2" ry="2" /> | |
<text x="115.92" y="159.5" ></text> | |
</g> | |
<g > | |
<title>_$LT$cranelift_bforest..Node$u20$as$u20$cranelift_entity..packed_option..ReservedValue$GT$::reserved_value::h5835179d85b4948d (7 samples, 0.01%)</title><rect x="129.8" y="197" width="0.1" height="15.0" fill="rgb(208,209,31)" rx="2" ry="2" /> | |
<text x="132.80" y="207.5" ></text> | |
</g> | |
<g > | |
<title>cranelift_codegen::ir::instructions::InstructionData::arguments::h70ecdef19e20b02a (8 samples, 0.01%)</title><rect x="32.1" y="245" width="0.1" height="15.0" fill="rgb(206,66,48)" rx="2" ry="2" /> | |
<text x="35.06" y="255.5" ></text> | |
</g> | |
<g > | |
<title>std::sys::unix::time::inner::Instant::now::h23f1bea5949f1bbd (8 samples, 0.01%)</title><rect x="119.4" y="197" width="0.1" height="15.0" fill="rgb(246,52,10)" rx="2" ry="2" /> | |
<text x="122.36" y="207.5" ></text> | |
</g> | |
<g > | |
<title>__GI___libc_realloc (15 samples, 0.02%)</title><rect x="114.8" y="197" width="0.3" height="15.0" fill="rgb(215,129,42)" rx="2" ry="2" /> | |
<text x="117.84" y="207.5" ></text> | |
</g> | |
<g > | |
<title>uncharge_batch (10 samples, 0.01%)</title><rect x="228.4" y="101" width="0.2" height="15.0" fill="rgb(246,43,21)" rx="2" ry="2" /> | |
<text x="231.43" y="111.5" ></text> | |
</g> | |
<g > | |
<title>_int_realloc (27 samples, 0.04%)</title><rect x="96.8" y="133" width="0.5" height="15.0" fill="rgb(209,156,4)" rx="2" ry="2" /> | |
<text x="99.84" y="143.5" ></text> | |
</g> | |
<g > | |
<title>std::sys::unix::time::inner::now::ha10452f37b2930c5 (13 samples, 0.02%)</title><rect x="39.1" y="229" width="0.2" height="15.0" fill="rgb(248,208,25)" rx="2" ry="2" /> | |
<text x="42.11" y="239.5" ></text> | |
</g> | |
<g > | |
<title>cranelift_codegen::context::Context::prologue_epilogue::he7fad23bcfb5a3af (268 samples, 0.38%)</title><rect x="18.6" y="309" width="4.6" height="15.0" fill="rgb(225,144,40)" rx="2" ry="2" /> | |
<text x="21.64" y="319.5" ></text> | |
</g> | |
<g > | |
<title>wasmer_clif_fork_frontend::frontend::FunctionBuilder::declare_var::hea859e8fadbdd9f2 (18 samples, 0.03%)</title><rect x="809.7" y="309" width="0.3" height="15.0" fill="rgb(206,210,39)" rx="2" ry="2" /> | |
<text x="812.65" y="319.5" ></text> | |
</g> | |
<g > | |
<title>std::sys::unix::time::inner::Instant::now::h23f1bea5949f1bbd (10 samples, 0.01%)</title><rect x="1166.3" y="229" width="0.1" height="15.0" fill="rgb(242,181,24)" rx="2" ry="2" /> | |
<text x="1169.25" y="239.5" ></text> | |
</g> | |
<g > | |
<title>cranelift_codegen::regalloc::branch_splitting::run::hbbb4e417c98f8376 (36 samples, 0.05%)</title><rect x="39.6" y="293" width="0.6" height="15.0" fill="rgb(245,34,21)" rx="2" ry="2" /> | |
<text x="42.58" y="303.5" ></text> | |
</g> | |
<g > | |
<title>alloc::raw_vec::RawVec$LT$T$C$A$GT$::reserve::hd6c8f26eb3c9fb4b (15 samples, 0.02%)</title><rect x="162.0" y="181" width="0.3" height="15.0" fill="rgb(225,40,13)" rx="2" ry="2" /> | |
<text x="165.02" y="191.5" ></text> | |
</g> | |
<g > | |
<title>__GI___clock_gettime (12 samples, 0.02%)</title><rect x="37.6" y="213" width="0.2" height="15.0" fill="rgb(250,76,34)" rx="2" ry="2" /> | |
<text x="40.60" y="223.5" ></text> | |
</g> | |
<g > | |
<title>cranelift_codegen::context::Context::clear::h8fd0c2f2825a66ed (52 samples, 0.07%)</title><rect x="313.1" y="309" width="0.8" height="15.0" fill="rgb(218,15,1)" rx="2" ry="2" /> | |
<text x="316.07" y="319.5" ></text> | |
</g> | |
<g > | |
<title>_int_free (16 samples, 0.02%)</title><rect x="196.3" y="133" width="0.3" height="15.0" fill="rgb(221,142,44)" rx="2" ry="2" /> | |
<text x="199.33" y="143.5" ></text> | |
</g> | |
<g > | |
<title>__GI___libc_realloc (9 samples, 0.01%)</title><rect x="808.3" y="261" width="0.2" height="15.0" fill="rgb(219,101,46)" rx="2" ry="2" /> | |
<text x="811.31" y="271.5" ></text> | |
</g> | |
<g > | |
<title>alloc::raw_vec::RawVec$LT$T$C$A$GT$::reserve::h500ef385b8747b29 (19 samples, 0.03%)</title><rect x="1173.7" y="261" width="0.3" height="15.0" fill="rgb(209,75,36)" rx="2" ry="2" /> | |
<text x="1176.65" y="271.5" ></text> | |
</g> | |
<g > | |
<title>_ZN25wasmer_clif_fork_frontend3ssa10SSABuilder25seal_one_ebb_header_block17h26b4541b1eac3a67E.llvm.13732412221390219292 (8 samples, 0.01%)</title><rect x="811.1" y="293" width="0.1" height="15.0" fill="rgb(241,20,16)" rx="2" ry="2" /> | |
<text x="814.05" y="303.5" ></text> | |
</g> | |
<g > | |
<title>__GI___libc_malloc (23 samples, 0.03%)</title><rect x="78.1" y="181" width="0.3" height="15.0" fill="rgb(211,53,34)" rx="2" ry="2" /> | |
<text x="81.06" y="191.5" ></text> | |
</g> | |
<g > | |
<title>__GI___libc_free (17 samples, 0.02%)</title><rect x="1151.8" y="277" width="0.3" height="15.0" fill="rgb(232,150,18)" rx="2" ry="2" /> | |
<text x="1154.83" y="287.5" ></text> | |
</g> | |
<g > | |
<title>std::time::Instant::now::h33d2ba6042def2d2 (7 samples, 0.01%)</title><rect x="147.1" y="165" width="0.1" height="15.0" fill="rgb(227,34,3)" rx="2" ry="2" /> | |
<text x="150.12" y="175.5" ></text> | |
</g> | |
<g > | |
<title>unmap_vmas (17 samples, 0.02%)</title><rect x="236.6" y="229" width="0.3" height="15.0" fill="rgb(238,32,32)" rx="2" ry="2" /> | |
<text x="239.64" y="239.5" ></text> | |
</g> | |
<g > | |
<title>wasmer_runtime_core::parse::read_module::h3875b654eed5ef74 (3,421 samples, 4.88%)</title><rect x="796.8" y="341" width="57.6" height="15.0" fill="rgb(213,133,14)" rx="2" ry="2" /> | |
<text x="799.84" y="351.5" >wasmer..</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.01%)</title><rect x="221.2" y="373" width="0.1" height="15.0" fill="rgb(229,227,18)" rx="2" ry="2" /> | |
<text x="224.15" y="383.5" ></text> | |
</g> | |
<g > | |
<title>__memcmp_sse4_1 (11 samples, 0.02%)</title><rect x="328.7" y="245" width="0.2" height="15.0" fill="rgb(254,0,53)" rx="2" ry="2" /> | |
<text x="331.69" y="255.5" ></text> | |
</g> | |
<g > | |
<title>__GI___clock_gettime (6 samples, 0.01%)</title><rect x="122.9" y="165" width="0.1" height="15.0" fill="rgb(240,185,45)" rx="2" ry="2" /> | |
<text x="125.94" y="175.5" ></text> | |
</g> | |
<g > | |
<title>_int_malloc (9 samples, 0.01%)</title><rect x="817.7" y="293" width="0.2" height="15.0" fill="rgb(240,23,18)" rx="2" ry="2" /> | |
<text x="820.74" y="303.5" ></text> | |
</g> | |
<g > | |
<title>std::time::Instant::now::h33d2ba6042def2d2 (7 samples, 0.01%)</title><rect x="1165.7" y="245" width="0.2" height="15.0" fill="rgb(245,107,13)" rx="2" ry="2" /> | |
<text x="1168.73" y="255.5" ></text> | |
</g> | |
<g > | |
<title>__clone (42 samples, 0.06%)</title><rect x="188.3" y="437" width="0.7" height="15.0" fill="rgb(238,172,51)" rx="2" ry="2" /> | |
<text x="191.34" y="447.5" ></text> | |
</g> | |
<g > | |
<title>__GI___libc_realloc (10 samples, 0.01%)</title><rect x="1177.9" y="277" width="0.2" height="15.0" fill="rgb(232,177,2)" rx="2" ry="2" /> | |
<text x="1180.89" y="287.5" ></text> | |
</g> | |
<g > | |
<title>_$LT$cranelift_codegen..isa..enc_tables..Encodings$u20$as$u20$core..iter..traits..iterator..Iterator$GT$::next::he6ba202105922eb5 (31 samples, 0.04%)</title><rect x="86.0" y="149" width="0.5" height="15.0" fill="rgb(205,210,20)" rx="2" ry="2" /> | |
<text x="89.01" y="159.5" ></text> | |
</g> | |
<g > | |
<title>core::str::from_utf8::h5960e424c2aef74c (217 samples, 0.31%)</title><rect x="527.1" y="245" width="3.7" height="15.0" fill="rgb(242,207,0)" rx="2" ry="2" /> | |
<text x="530.15" y="255.5" ></text> | |
</g> | |
<g > | |
<title>std::time::Instant::now::h33d2ba6042def2d2 (16 samples, 0.02%)</title><rect x="172.6" y="213" width="0.3" height="15.0" fill="rgb(252,73,11)" rx="2" ry="2" /> | |
<text x="175.64" y="223.5" ></text> | |
</g> | |
<g > | |
<title>__GI___libc_free (123 samples, 0.18%)</title><rect x="179.4" y="293" width="2.1" height="15.0" fill="rgb(215,71,45)" rx="2" ry="2" /> | |
<text x="182.43" y="303.5" ></text> | |
</g> | |
<g > | |
<title>_$LT$cranelift_codegen..timing..details..TimingToken$u20$as$u20$core..ops..drop..Drop$GT$::drop::h1b19c2a93ee0a091 (10 samples, 0.01%)</title><rect x="107.9" y="197" width="0.1" height="15.0" fill="rgb(234,102,52)" rx="2" ry="2" /> | |
<text x="110.86" y="207.5" ></text> | |
</g> | |
<g > | |
<title>__libc_calloc (10 samples, 0.01%)</title><rect x="112.3" y="213" width="0.1" height="15.0" fill="rgb(217,92,10)" rx="2" ry="2" /> | |
<text x="115.28" y="223.5" ></text> | |
</g> | |
<g > | |
<title>free_pages_and_swap_cache (80 samples, 0.11%)</title><rect x="227.4" y="149" width="1.3" height="15.0" fill="rgb(235,61,27)" rx="2" ry="2" /> | |
<text x="230.36" y="159.5" ></text> | |
</g> | |
<g > | |
<title>cranelift_codegen::context::Context::shrink_instructions::he0b1678d1727ad37 (461 samples, 0.66%)</title><rect x="103.3" y="229" width="7.8" height="15.0" fill="rgb(231,189,7)" rx="2" ry="2" /> | |
<text x="106.35" y="239.5" ></text> | |
</g> | |
<g > | |
<title>_int_free (12 samples, 0.02%)</title><rect x="1151.9" y="261" width="0.2" height="15.0" fill="rgb(243,101,0)" rx="2" ry="2" /> | |
<text x="1154.91" y="271.5" ></text> | |
</g> | |
<g > | |
<title>_int_realloc (10 samples, 0.01%)</title><rect x="1177.9" y="261" width="0.2" height="15.0" fill="rgb(217,222,29)" rx="2" ry="2" /> | |
<text x="1180.89" y="271.5" ></text> | |
</g> | |
<g > | |
<title>alloc::raw_vec::RawVec$LT$T$C$A$GT$::reserve::hd6c8f26eb3c9fb4b (11 samples, 0.02%)</title><rect x="1180.0" y="293" width="0.2" height="15.0" fill="rgb(232,190,52)" rx="2" ry="2" /> | |
<text x="1182.98" y="303.5" ></text> | |
</g> | |
<g > | |
<title>__GI___libc_malloc (101 samples, 0.14%)</title><rect x="872.9" y="357" width="1.7" height="15.0" fill="rgb(238,48,4)" rx="2" ry="2" /> | |
<text x="875.90" y="367.5" ></text> | |
</g> | |
<g > | |
<title>alloc_perturb (10 samples, 0.01%)</title><rect x="1014.5" y="309" width="0.1" height="15.0" fill="rgb(223,46,16)" rx="2" ry="2" /> | |
<text x="1017.47" y="319.5" ></text> | |
</g> | |
<g > | |
<title>cranelift_bforest::path::Path$LT$F$GT$::next::h5ea6a430c3b76c71 (9 samples, 0.01%)</title><rect x="77.6" y="197" width="0.2" height="15.0" fill="rgb(232,111,42)" rx="2" ry="2" /> | |
<text x="80.62" y="207.5" ></text> | |
</g> | |
<g > | |
<title>sys_rt_sigprocmask (10 samples, 0.01%)</title><rect x="11.6" y="325" width="0.2" height="15.0" fill="rgb(248,143,42)" rx="2" ry="2" /> | |
<text x="14.65" y="335.5" ></text> | |
</g> | |
<g > | |
<title>std::sys::unix::time::inner::now::ha10452f37b2930c5 (6 samples, 0.01%)</title><rect x="1164.4" y="213" width="0.1" height="15.0" fill="rgb(230,220,5)" rx="2" ry="2" /> | |
<text x="1167.35" y="223.5" ></text> | |
</g> | |
<g > | |
<title>cranelift_codegen::ir::dfg::DataFlowGraph::new::h1636284a161b274f (12 samples, 0.02%)</title><rect x="804.3" y="293" width="0.2" height="15.0" fill="rgb(222,32,52)" rx="2" ry="2" /> | |
<text x="807.32" y="303.5" ></text> | |
</g> | |
<g > | |
<title>perf_output_copy (7 samples, 0.01%)</title><rect x="287.3" y="133" width="0.1" height="15.0" fill="rgb(234,37,50)" rx="2" ry="2" /> | |
<text x="290.31" y="143.5" ></text> | |
</g> | |
<g > | |
<title>__rdl_dealloc (8 samples, 0.01%)</title><rect x="513.1" y="261" width="0.2" height="15.0" fill="rgb(254,106,19)" rx="2" ry="2" /> | |
<text x="516.14" 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 (6,990 samples, 9.96%)</title><rect x="61.0" y="437" width="117.6" height="15.0" fill="rgb(207,42,33)" rx="2" ry="2" /> | |
<text x="64.02" y="447.5" >_$LT$wasmer_cl..</text> | |
</g> | |
<g > | |
<title>_ZN17cranelift_codegen8regalloc9diversion13RegDiversions6divert17h0dfdaeead6ef2c57E.llvm.6468024634034730254 (30 samples, 0.04%)</title><rect x="75.8" y="213" width="0.5" height="15.0" fill="rgb(228,95,12)" rx="2" ry="2" /> | |
<text x="78.75" y="223.5" ></text> | |
</g> | |
<g > | |
<title>std::panicking::panicking::h028506a43de2cb65 (6 samples, 0.01%)</title><rect x="281.8" y="293" width="0.1" height="15.0" fill="rgb(241,196,9)" rx="2" ry="2" /> | |
<text x="284.83" y="303.5" ></text> | |
</g> | |
<g > | |
<title>__GI___libc_malloc (90 samples, 0.13%)</title><rect x="862.6" y="325" width="1.5" height="15.0" fill="rgb(214,50,17)" rx="2" ry="2" /> | |
<text x="865.61" y="335.5" ></text> | |
</g> | |
<g > | |
<title>std::sys::unix::time::inner::now::ha10452f37b2930c5 (15 samples, 0.02%)</title><rect x="98.7" y="165" width="0.3" height="15.0" fill="rgb(205,109,37)" rx="2" ry="2" /> | |
<text x="101.74" y="175.5" ></text> | |
</g> | |
<g > | |
<title>__vdso_clock_gettime (9 samples, 0.01%)</title><rect x="1165.9" y="213" width="0.2" height="15.0" fill="rgb(213,132,7)" rx="2" ry="2" /> | |
<text x="1168.92" y="223.5" ></text> | |
</g> | |
<g > | |
<title>__GI___libc_malloc (9 samples, 0.01%)</title><rect x="39.9" y="245" width="0.2" height="15.0" fill="rgb(239,162,9)" rx="2" ry="2" /> | |
<text x="42.90" y="255.5" ></text> | |
</g> | |
<g > | |
<title>__GI___libc_free (16 samples, 0.02%)</title><rect x="356.9" y="341" width="0.3" height="15.0" fill="rgb(235,170,27)" rx="2" ry="2" /> | |
<text x="359.91" y="351.5" ></text> | |
</g> | |
<g > | |
<title>_$LT$cranelift_codegen..timing..details..TimingToken$u20$as$u20$core..ops..drop..Drop$GT$::drop::h1b19c2a93ee0a091 (17 samples, 0.02%)</title><rect x="158.2" y="197" width="0.3" height="15.0" fill="rgb(242,55,29)" rx="2" ry="2" /> | |
<text x="161.17" y="207.5" ></text> | |
</g> | |
<g > | |
<title>alloc::vec::Vec$LT$T$GT$::resize::h32a2d4ba425bc523 (34 samples, 0.05%)</title><rect x="79.0" y="197" width="0.6" height="15.0" fill="rgb(219,207,46)" rx="2" ry="2" /> | |
<text x="82.00" y="207.5" ></text> | |
</g> | |
<g > | |
<title>_int_realloc (14 samples, 0.02%)</title><rect x="806.9" y="213" width="0.3" height="15.0" fill="rgb(225,66,11)" rx="2" ry="2" /> | |
<text x="809.93" y="223.5" ></text> | |
</g> | |
<g > | |
<title>_$LT$cranelift_codegen..timing..details..TimingToken$u20$as$u20$core..ops..drop..Drop$GT$::drop::h1b19c2a93ee0a091 (14 samples, 0.02%)</title><rect x="1153.8" y="261" width="0.2" height="15.0" fill="rgb(220,181,7)" rx="2" ry="2" /> | |
<text x="1156.76" y="271.5" ></text> | |
</g> | |
<g > | |
<title>__memcpy_avx_unaligned (37 samples, 0.05%)</title><rect x="1024.3" y="357" width="0.6" height="15.0" fill="rgb(213,64,18)" rx="2" ry="2" /> | |
<text x="1027.30" y="367.5" ></text> | |
</g> | |
<g > | |
<title>__GI___libc_realloc (6 samples, 0.01%)</title><rect x="325.0" y="277" width="0.1" height="15.0" fill="rgb(232,149,26)" rx="2" ry="2" /> | |
<text x="328.03" y="287.5" ></text> | |
</g> | |
<g > | |
<title>_int_malloc (6 samples, 0.01%)</title><rect x="45.8" y="245" width="0.1" height="15.0" fill="rgb(243,100,7)" rx="2" ry="2" /> | |
<text x="48.75" y="255.5" ></text> | |
</g> | |
<g > | |
<title>__rdl_dealloc (9 samples, 0.01%)</title><rect x="221.2" y="389" width="0.1" height="15.0" fill="rgb(212,95,13)" rx="2" ry="2" /> | |
<text x="224.15" y="399.5" ></text> | |
</g> | |
<g > | |
<title>__GI___libc_malloc (16 samples, 0.02%)</title><rect x="330.9" y="277" width="0.3" height="15.0" fill="rgb(224,75,15)" rx="2" ry="2" /> | |
<text x="333.90" y="287.5" ></text> | |
</g> | |
<g > | |
<title>__GI___libc_realloc (6 samples, 0.01%)</title><rect x="97.6" y="117" width="0.1" height="15.0" fill="rgb(238,133,4)" rx="2" ry="2" /> | |
<text x="100.58" y="127.5" ></text> | |
</g> | |
<g > | |
<title>cranelift_codegen::ir::dfg::DataFlowGraph::value_def::h33b3e43a06ac9a1f (9 samples, 0.01%)</title><rect x="90.9" y="165" width="0.2" height="15.0" fill="rgb(221,104,37)" rx="2" ry="2" /> | |
<text x="93.94" y="175.5" ></text> | |
</g> | |
<g > | |
<title>cranelift_bforest::set::Set$LT$K$GT$::insert::h750422a26fd1bdc6 (11 samples, 0.02%)</title><rect x="1167.1" y="117" width="0.2" height="15.0" fill="rgb(213,58,51)" rx="2" ry="2" /> | |
<text x="1170.10" y="127.5" ></text> | |
</g> | |
<g > | |
<title>tlb_flush_mmu_tlbonly (71 samples, 0.10%)</title><rect x="228.8" y="165" width="1.1" height="15.0" fill="rgb(215,157,40)" rx="2" ry="2" /> | |
<text x="231.75" y="175.5" ></text> | |
</g> | |
<g > | |
<title>__GI___libc_free (16 samples, 0.02%)</title><rect x="239.9" y="357" width="0.3" height="15.0" fill="rgb(227,114,18)" rx="2" ry="2" /> | |
<text x="242.89" y="367.5" ></text> | |
</g> | |
<g > | |
<title>__GI___libc_realloc (83 samples, 0.12%)</title><rect x="945.1" y="309" width="1.4" height="15.0" fill="rgb(241,20,44)" rx="2" ry="2" /> | |
<text x="948.10" y="319.5" ></text> | |
</g> | |
<g > | |
<title>std::time::Instant::now::h33d2ba6042def2d2 (14 samples, 0.02%)</title><rect x="1158.1" y="245" width="0.3" height="15.0" fill="rgb(248,194,4)" rx="2" ry="2" /> | |
<text x="1161.12" y="255.5" ></text> | |
</g> | |
<g > | |
<title>_$LT$wasmparser..parser..Parser$u20$as$u20$wasmparser..parser..WasmDecoder$GT$::read::h34b06bb75da62f27 (175 samples, 0.25%)</title><rect x="814.6" y="309" width="3.0" height="15.0" fill="rgb(238,87,39)" rx="2" ry="2" /> | |
<text x="817.63" y="319.5" ></text> | |
</g> | |
<g > | |
<title>alloc::raw_vec::RawVec$LT$T$C$A$GT$::reserve::hd6c8f26eb3c9fb4b (27 samples, 0.04%)</title><rect x="160.8" y="181" width="0.5" height="15.0" fill="rgb(242,0,1)" rx="2" ry="2" /> | |
<text x="163.83" y="191.5" ></text> | |
</g> | |
<g > | |
<title>_int_malloc (11 samples, 0.02%)</title><rect x="134.5" y="149" width="0.2" height="15.0" fill="rgb(212,75,23)" rx="2" ry="2" /> | |
<text x="137.53" y="159.5" ></text> | |
</g> | |
<g > | |
<title>[[vdso]] (11 samples, 0.02%)</title><rect x="114.2" y="101" width="0.2" height="15.0" fill="rgb(239,217,40)" rx="2" ry="2" /> | |
<text x="117.25" y="111.5" ></text> | |
</g> | |
<g > | |
<title>alloc::raw_vec::RawVec$LT$T$C$A$GT$::reserve::h500ef385b8747b29 (10 samples, 0.01%)</title><rect x="321.2" y="277" width="0.1" height="15.0" fill="rgb(248,32,9)" rx="2" ry="2" /> | |
<text x="324.18" y="287.5" ></text> | |
</g> | |
<g > | |
<title>__GI___libc_realloc (10 samples, 0.01%)</title><rect x="1177.0" y="261" width="0.2" height="15.0" fill="rgb(221,141,15)" rx="2" ry="2" /> | |
<text x="1179.98" y="271.5" ></text> | |
</g> | |
<g > | |
<title>__vdso_clock_gettime (7 samples, 0.01%)</title><rect x="38.8" y="229" width="0.1" height="15.0" fill="rgb(218,174,34)" rx="2" ry="2" /> | |
<text x="41.81" y="239.5" ></text> | |
</g> | |
<g > | |
<title>cranelift_codegen::dominator_tree::DominatorTree::push_if_unseen::h8fc9e551ebc0c5e1 (20 samples, 0.03%)</title><rect x="116.3" y="213" width="0.3" height="15.0" fill="rgb(245,61,39)" rx="2" ry="2" /> | |
<text x="119.27" y="223.5" ></text> | |
</g> | |
<g > | |
<title>cranelift_codegen::ir::instructions::InstructionData::arguments::h70ecdef19e20b02a (6 samples, 0.01%)</title><rect x="153.8" y="197" width="0.1" height="15.0" fill="rgb(218,18,5)" rx="2" ry="2" /> | |
<text x="156.77" y="207.5" ></text> | |
</g> | |
<g > | |
<title>_ZN81_$LT$std..collections..hash..map..DefaultHasher$u20$as$u20$core..hash..Hasher$GT$5write17hce30e4f96ad2e64eE.llvm.689856235829814499 (9 samples, 0.01%)</title><rect x="327.6" y="293" width="0.1" height="15.0" fill="rgb(221,122,15)" rx="2" ry="2" /> | |
<text x="330.55" y="303.5" ></text> | |
</g> | |
<g > | |
<title>cranelift_codegen::unreachable_code::eliminate_unreachable_code::he5a7c427cf1b37ff (43 samples, 0.06%)</title><rect x="174.9" y="229" width="0.7" height="15.0" fill="rgb(230,125,31)" rx="2" ry="2" /> | |
<text x="177.87" y="239.5" ></text> | |
</g> | |
<g > | |
<title>_$LT$cranelift_codegen..timing..details..TimingToken$u20$as$u20$core..ops..drop..Drop$GT$::drop::h1b19c2a93ee0a091 (25 samples, 0.04%)</title><rect x="117.1" y="213" width="0.5" height="15.0" fill="rgb(248,143,28)" rx="2" ry="2" /> | |
<text x="120.14" y="223.5" ></text> | |
</g> | |
<g > | |
<title>do_trap (24 samples, 0.03%)</title><rect x="12.6" y="373" width="0.4" height="15.0" fill="rgb(232,0,5)" rx="2" ry="2" /> | |
<text x="15.57" y="383.5" ></text> | |
</g> | |
<g > | |
<title>__memset_avx2 (285 samples, 0.41%)</title><rect x="301.7" y="309" width="4.8" height="15.0" fill="rgb(248,229,10)" rx="2" ry="2" /> | |
<text x="304.67" y="319.5" ></text> | |
</g> | |
<g > | |
<title>std::time::Instant::now::h33d2ba6042def2d2 (11 samples, 0.02%)</title><rect x="68.0" y="213" width="0.2" height="15.0" fill="rgb(230,225,32)" rx="2" ry="2" /> | |
<text x="71.00" y="223.5" ></text> | |
</g> | |
<g > | |
<title>cranelift_codegen::ir::function::Function::with_name_signature::h3213a13dd838e646 (22 samples, 0.03%)</title><rect x="1166.6" y="325" width="0.4" height="15.0" fill="rgb(246,118,47)" rx="2" ry="2" /> | |
<text x="1169.59" y="335.5" ></text> | |
</g> | |
<g > | |
<title>_$LT$alloc..vec..Vec$LT$T$GT$$u20$as$u20$core..clone..Clone$GT$::clone::h4dff7b93bd7502e8 (15 samples, 0.02%)</title><rect x="254.0" y="309" width="0.2" height="15.0" fill="rgb(249,114,12)" rx="2" ry="2" /> | |
<text x="256.99" y="319.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 (147 samples, 0.21%)</title><rect x="1167.0" y="341" width="2.5" height="15.0" fill="rgb(227,125,10)" rx="2" ry="2" /> | |
<text x="1169.99" y="351.5" ></text> | |
</g> | |
<g > | |
<title>entry_SYSCALL_64_after_hwframe (6 samples, 0.01%)</title><rect x="190.2" y="117" width="0.1" height="15.0" fill="rgb(236,146,30)" rx="2" ry="2" /> | |
<text x="193.23" y="127.5" ></text> | |
</g> | |
<g > | |
<title>_int_realloc (14 samples, 0.02%)</title><rect x="200.7" y="181" width="0.3" height="15.0" fill="rgb(210,31,14)" rx="2" ry="2" /> | |
<text x="203.72" y="191.5" ></text> | |
</g> | |
<g > | |
<title>cranelift_codegen::regalloc::coloring::Context::program_input_abi::h34ced53bbc43d7b1 (19 samples, 0.03%)</title><rect x="1177.6" y="309" width="0.3" height="15.0" fill="rgb(243,89,48)" rx="2" ry="2" /> | |
<text x="1180.57" y="319.5" ></text> | |
</g> | |
<g > | |
<title>__vdso_clock_gettime (7 samples, 0.01%)</title><rect x="124.6" y="149" width="0.1" height="15.0" fill="rgb(211,131,11)" rx="2" ry="2" /> | |
<text x="127.57" y="159.5" ></text> | |
</g> | |
<g > | |
<title>tlb_flush_mmu_free (88 samples, 0.13%)</title><rect x="227.3" y="165" width="1.5" height="15.0" fill="rgb(207,117,1)" rx="2" ry="2" /> | |
<text x="230.27" y="175.5" ></text> | |
</g> | |
<g > | |
<title>__GI___libc_malloc (6 samples, 0.01%)</title><rect x="1176.3" y="261" width="0.1" height="15.0" fill="rgb(218,74,19)" rx="2" ry="2" /> | |
<text x="1179.33" y="271.5" ></text> | |
</g> | |
<g > | |
<title>_$LT$alloc..vec..Vec$LT$T$GT$$u20$as$u20$core..clone..Clone$GT$::clone::hd7b91bbd77a11ec1 (13 samples, 0.02%)</title><rect x="254.2" y="309" width="0.3" height="15.0" fill="rgb(244,43,7)" rx="2" ry="2" /> | |
<text x="257.25" y="319.5" ></text> | |
</g> | |
<g > | |
<title>wasmer_clif_fork_frontend::frontend::FunctionBuilder::create_ebb::hae9a6333ca79d10c (147 samples, 0.21%)</title><rect x="807.2" y="309" width="2.5" height="15.0" fill="rgb(247,14,13)" rx="2" ry="2" /> | |
<text x="810.18" y="319.5" ></text> | |
</g> | |
<g > | |
<title>__GI___libc_free (26 samples, 0.04%)</title><rect x="184.2" y="261" width="0.4" height="15.0" fill="rgb(249,105,19)" rx="2" ry="2" /> | |
<text x="187.21" y="271.5" ></text> | |
</g> | |
<g > | |
<title>do_page_fault (215 samples, 0.31%)</title><rect x="302.8" y="277" width="3.7" height="15.0" fill="rgb(244,62,34)" rx="2" ry="2" /> | |
<text x="305.85" y="287.5" ></text> | |
</g> | |
<g > | |
<title>cranelift_codegen::legalizer::legalize_inst::h3c0aa7980e624bbf (33 samples, 0.05%)</title><rect x="1154.1" y="261" width="0.6" height="15.0" fill="rgb(209,107,45)" rx="2" ry="2" /> | |
<text x="1157.13" y="271.5" ></text> | |
</g> | |
<g > | |
<title>_$LT$alloc..vec..Vec$LT$T$GT$$u20$as$u20$alloc..vec..SpecExtend$LT$T$C$I$GT$$GT$::from_iter::haf5b82d74d141c18 (11 samples, 0.02%)</title><rect x="298.3" y="309" width="0.2" height="15.0" fill="rgb(238,220,9)" rx="2" ry="2" /> | |
<text x="301.32" y="319.5" ></text> | |
</g> | |
<g > | |
<title>wasmer_runtime_core::instance::Instance::dyn_func::h22490eb4f9ed4dfd (57 samples, 0.08%)</title><rect x="871.6" y="389" width="0.9" height="15.0" fill="rgb(251,226,30)" rx="2" ry="2" /> | |
<text x="874.56" y="399.5" ></text> | |
</g> | |
<g > | |
<title>std::sys::unix::time::inner::Instant::now::h23f1bea5949f1bbd (7 samples, 0.01%)</title><rect x="38.6" y="229" width="0.1" height="15.0" fill="rgb(237,120,44)" rx="2" ry="2" /> | |
<text x="41.55" y="239.5" ></text> | |
</g> | |
<g > | |
<title>std::time::Instant::elapsed::h8e307314b2acf9be (13 samples, 0.02%)</title><rect x="1174.8" y="277" width="0.2" height="15.0" fill="rgb(240,145,7)" rx="2" ry="2" /> | |
<text x="1177.83" y="287.5" ></text> | |
</g> | |
<g > | |
<title>cranelift_codegen::ir::layout::Layout::insert_inst::h352d76f498d27496 (9 samples, 0.01%)</title><rect x="141.3" y="165" width="0.1" height="15.0" fill="rgb(229,80,0)" rx="2" ry="2" /> | |
<text x="144.27" y="175.5" ></text> | |
</g> | |
<g > | |
<title>alloc::raw_vec::RawVec$LT$T$C$A$GT$::reserve::hae39d8e15426d2f6 (10 samples, 0.01%)</title><rect x="1177.0" y="277" width="0.2" height="15.0" fill="rgb(243,60,21)" rx="2" ry="2" /> | |
<text x="1179.98" y="287.5" ></text> | |
</g> | |
<g > | |
<title>cranelift_codegen::flowgraph::ControlFlowGraph::add_edge::hf2c2f4cb34e85a4f (13 samples, 0.02%)</title><rect x="1167.1" y="133" width="0.2" height="15.0" fill="rgb(210,82,3)" rx="2" ry="2" /> | |
<text x="1170.06" y="143.5" ></text> | |
</g> | |
<g > | |
<title>wasmparser::binary_reader::BinaryReader::read_var_u32::h9f3e844d80d20a5e (82 samples, 0.12%)</title><rect x="578.1" y="277" width="1.3" height="15.0" fill="rgb(217,23,45)" rx="2" ry="2" /> | |
<text x="581.05" y="287.5" ></text> | |
</g> | |
<g > | |
<title>alloc::raw_vec::RawVec$LT$T$C$A$GT$::reserve::hcd647565ba58b57f (38 samples, 0.05%)</title><rect x="71.0" y="197" width="0.7" height="15.0" fill="rgb(244,89,32)" rx="2" ry="2" /> | |
<text x="74.01" y="207.5" ></text> | |
</g> | |
<g > | |
<title>wasmparser::binary_reader::BinaryReader::read_var_u32::h9f3e844d80d20a5e (590 samples, 0.84%)</title><rect x="491.2" y="293" width="9.9" height="15.0" fill="rgb(239,52,34)" rx="2" ry="2" /> | |
<text x="494.21" y="303.5" ></text> | |
</g> | |
<g > | |
<title>rocinante::main::h69eb7648725adb6f (56,276 samples, 80.20%)</title><rect x="201.5" y="437" width="946.3" height="15.0" fill="rgb(243,147,49)" rx="2" ry="2" /> | |
<text x="204.46" y="447.5" >rocinante::main::h69eb7648725adb6f</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="871.9" y="357" width="0.1" height="15.0" fill="rgb(245,207,9)" rx="2" ry="2" /> | |
<text x="874.89" y="367.5" ></text> | |
</g> | |
<g > | |
<title>std::time::Instant::elapsed::h8e307314b2acf9be (12 samples, 0.02%)</title><rect x="1154.9" y="245" width="0.2" height="15.0" fill="rgb(222,68,36)" rx="2" ry="2" /> | |
<text x="1157.85" y="255.5" ></text> | |
</g> | |
<g > | |
<title>cranelift_codegen::ir::builder::InstBuilder::regmove::h2d2e8972aa228be7 (54 samples, 0.08%)</title><rect x="45.9" y="277" width="0.9" height="15.0" fill="rgb(227,28,41)" rx="2" ry="2" /> | |
<text x="48.87" y="287.5" ></text> | |
</g> | |
<g > | |
<title>alloc::raw_vec::RawVec$LT$T$C$A$GT$::reserve::hd6c8f26eb3c9fb4b (8 samples, 0.01%)</title><rect x="1169.1" y="197" width="0.1" height="15.0" fill="rgb(240,159,37)" rx="2" ry="2" /> | |
<text x="1172.11" y="207.5" ></text> | |
</g> | |
<g > | |
<title>_$LT$wasmer_runtime_core..types..MemoryIndex$u20$as$u20$wasmer_runtime_core..structures..TypedIndex$GT$::new::h0926d06c50d9fd00 (8 samples, 0.01%)</title><rect x="271.1" y="309" width="0.2" height="15.0" fill="rgb(213,65,35)" rx="2" ry="2" /> | |
<text x="274.15" y="319.5" ></text> | |
</g> | |
<g > | |
<title>wasmparser::validator::ValidatingParser::new::hf8cf84418abf20c9 (7 samples, 0.01%)</title><rect x="854.3" y="325" width="0.1" height="15.0" fill="rgb(251,130,51)" rx="2" ry="2" /> | |
<text x="857.25" 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 (8 samples, 0.01%)</title><rect x="528.1" y="229" width="0.1" height="15.0" fill="rgb(239,1,34)" rx="2" ry="2" /> | |
<text x="531.07" y="239.5" ></text> | |
</g> | |
<g > | |
<title>__GI___libc_malloc (58 samples, 0.08%)</title><rect x="176.5" y="277" width="1.0" height="15.0" fill="rgb(220,44,16)" rx="2" ry="2" /> | |
<text x="179.54" y="287.5" ></text> | |
</g> | |
<g > | |
<title>alloc::sync::Arc$LT$T$GT$::drop_slow::hc5a1fad3ed79882c (11 samples, 0.02%)</title><rect x="239.4" y="389" width="0.1" height="15.0" fill="rgb(217,29,12)" rx="2" ry="2" /> | |
<text x="242.36" y="399.5" ></text> | |
</g> | |
<g > | |
<title>_$LT$cranelift_codegen..timing..details..TimingToken$u20$as$u20$core..ops..drop..Drop$GT$::drop::h1b19c2a93ee0a091 (22 samples, 0.03%)</title><rect x="175.0" y="213" width="0.4" height="15.0" fill="rgb(239,142,40)" rx="2" ry="2" /> | |
<text x="178.04" y="223.5" ></text> | |
</g> | |
<g > | |
<title>find_vma (12 samples, 0.02%)</title><rect x="333.4" y="213" width="0.2" height="15.0" fill="rgb(244,100,22)" rx="2" ry="2" /> | |
<text x="336.39" y="223.5" ></text> | |
</g> | |
<g > | |
<title>__GI___clock_gettime (8 samples, 0.01%)</title><rect x="175.3" y="133" width="0.1" height="15.0" fill="rgb(227,106,9)" rx="2" ry="2" /> | |
<text x="178.28" y="143.5" ></text> | |
</g> | |
<g > | |
<title>__GI___libc_malloc (503 samples, 0.72%)</title><rect x="1026.8" y="341" width="8.4" height="15.0" fill="rgb(222,218,47)" rx="2" ry="2" /> | |
<text x="1029.76" y="351.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 (6,990 samples, 9.96%)</title><rect x="61.0" y="405" width="117.6" height="15.0" fill="rgb(229,24,3)" rx="2" ry="2" /> | |
<text x="64.02" y="415.5" >rayon::result:..</text> | |
</g> | |
<g > | |
<title>_$LT$rayon..iter..while_some..WhileSome$LT$I$GT$$u20$as$u20$rayon..iter..ParallelIterator$GT$::drive_unindexed::h5bb97cb6437a1950 (486 samples, 0.69%)</title><rect x="178.6" y="357" width="8.1" height="15.0" fill="rgb(249,131,27)" rx="2" ry="2" /> | |
<text x="181.57" y="367.5" ></text> | |
</g> | |
<g > | |
<title>std::sys::unix::time::inner::Instant::now::h23f1bea5949f1bbd (11 samples, 0.02%)</title><rect x="152.0" y="181" width="0.2" height="15.0" fill="rgb(227,8,33)" rx="2" ry="2" /> | |
<text x="155.02" y="191.5" ></text> | |
</g> | |
<g > | |
<title>alloc::raw_vec::RawVec$LT$T$C$A$GT$::reserve::h500ef385b8747b29 (10 samples, 0.01%)</title><rect x="1164.6" y="277" width="0.1" height="15.0" fill="rgb(251,149,46)" rx="2" ry="2" /> | |
<text x="1167.56" y="287.5" ></text> | |
</g> | |
<g > | |
<title>std::sys::unix::time::inner::Instant::now::h23f1bea5949f1bbd (7 samples, 0.01%)</title><rect x="1162.1" y="261" width="0.1" height="15.0" fill="rgb(218,97,17)" rx="2" ry="2" /> | |
<text x="1165.12" y="271.5" ></text> | |
</g> | |
<g > | |
<title>__GI___clock_gettime (6 samples, 0.01%)</title><rect x="52.7" y="229" width="0.1" height="15.0" fill="rgb(226,126,42)" rx="2" ry="2" /> | |
<text x="55.71" y="239.5" ></text> | |
</g> | |
<g > | |
<title>cranelift_codegen::dominator_tree::DominatorTree::compute_idom::haefe97f2edc1fd51 (16 samples, 0.02%)</title><rect x="120.3" y="197" width="0.3" height="15.0" fill="rgb(212,36,9)" rx="2" ry="2" /> | |
<text x="123.30" y="207.5" ></text> | |
</g> | |
<g > | |
<title>cranelift_codegen::topo_order::TopoOrder::next::h3ea49efe09e3a2f0 (18 samples, 0.03%)</title><rect x="163.5" y="197" width="0.3" height="15.0" fill="rgb(250,173,8)" rx="2" ry="2" /> | |
<text x="166.54" y="207.5" ></text> | |
</g> | |
<g > | |
<title>_int_malloc (23 samples, 0.03%)</title><rect x="22.0" y="197" width="0.4" height="15.0" fill="rgb(230,111,40)" rx="2" ry="2" /> | |
<text x="24.99" y="207.5" ></text> | |
</g> | |
<g > | |
<title>_$LT$wasmparser..parser..Parser$u20$as$u20$wasmparser..parser..WasmDecoder$GT$::read::h34b06bb75da62f27 (10,152 samples, 14.47%)</title><rect x="408.7" y="309" width="170.7" height="15.0" fill="rgb(213,53,41)" rx="2" ry="2" /> | |
<text x="411.71" y="319.5" >_$LT$wasmparser..parse..</text> | |
</g> | |
<g > | |
<title>__vma_rb_erase (7 samples, 0.01%)</title><rect x="287.9" y="165" width="0.1" height="15.0" fill="rgb(222,101,46)" rx="2" ry="2" /> | |
<text x="290.88" y="175.5" ></text> | |
</g> | |
<g > | |
<title>std::time::Instant::now::h33d2ba6042def2d2 (14 samples, 0.02%)</title><rect x="158.2" y="165" width="0.3" height="15.0" fill="rgb(252,4,15)" rx="2" ry="2" /> | |
<text x="161.22" y="175.5" ></text> | |
</g> | |
<g > | |
<title>_int_realloc (25 samples, 0.04%)</title><rect x="1177.2" y="229" width="0.4" height="15.0" fill="rgb(222,48,50)" rx="2" ry="2" /> | |
<text x="1180.15" y="239.5" ></text> | |
</g> | |
<g > | |
<title>cranelift_codegen::ir::builder::InstBuilder::x86_sdivmodx::h56afcb83b5ddb323 (6 samples, 0.01%)</title><rect x="88.8" y="149" width="0.1" height="15.0" fill="rgb(221,102,40)" rx="2" ry="2" /> | |
<text x="91.77" y="159.5" ></text> | |
</g> | |
<g > | |
<title>__GI___libc_free (1,115 samples, 1.59%)</title><rect x="736.9" y="309" width="18.8" height="15.0" fill="rgb(216,136,15)" rx="2" ry="2" /> | |
<text x="739.91" y="319.5" ></text> | |
</g> | |
<g > | |
<title>alloc::raw_vec::RawVec$LT$T$C$A$GT$::reserve::h02503ac3a628c0ac (17 samples, 0.02%)</title><rect x="52.0" y="245" width="0.3" height="15.0" fill="rgb(211,179,17)" rx="2" ry="2" /> | |
<text x="54.97" y="255.5" ></text> | |
</g> | |
<g > | |
<title>__GI___clock_gettime (8 samples, 0.01%)</title><rect x="175.5" y="165" width="0.1" height="15.0" fill="rgb(220,89,5)" rx="2" ry="2" /> | |
<text x="178.46" y="175.5" ></text> | |
</g> | |
<g > | |
<title>_int_free (358 samples, 0.51%)</title><rect x="514.2" y="261" width="6.0" height="15.0" fill="rgb(241,178,1)" rx="2" ry="2" /> | |
<text x="517.17" y="271.5" ></text> | |
</g> | |
<g > | |
<title>cranelift_codegen::isa::constraints::RecipeConstraints::satisfied::h33556c8a9b1bba6e (86 samples, 0.12%)</title><rect x="30.8" y="261" width="1.4" height="15.0" fill="rgb(247,89,4)" rx="2" ry="2" /> | |
<text x="33.75" y="271.5" ></text> | |
</g> | |
<g > | |
<title>__vdso_clock_gettime (6 samples, 0.01%)</title><rect x="1161.9" y="181" width="0.1" height="15.0" fill="rgb(247,187,27)" rx="2" ry="2" /> | |
<text x="1164.90" y="191.5" ></text> | |
</g> | |
<g > | |
<title>alloc::raw_vec::RawVec$LT$T$C$A$GT$::reserve::h86648d6f1470c78b (6 samples, 0.01%)</title><rect x="817.9" y="309" width="0.1" height="15.0" fill="rgb(251,183,26)" rx="2" ry="2" /> | |
<text x="820.95" y="319.5" ></text> | |
</g> | |
<g > | |
<title>cranelift_codegen::regalloc::virtregs::VirtRegs::finish_union_find::hfb24c09a580ec121 (10 samples, 0.01%)</title><rect x="1168.5" y="213" width="0.2" height="15.0" fill="rgb(248,148,43)" rx="2" ry="2" /> | |
<text x="1171.51" y="223.5" ></text> | |
</g> | |
<g > | |
<title>std::time::Instant::elapsed::h8e307314b2acf9be (14 samples, 0.02%)</title><rect x="119.6" y="197" width="0.3" height="15.0" fill="rgb(217,181,32)" rx="2" ry="2" /> | |
<text x="122.65" y="207.5" ></text> | |
</g> | |
<g > | |
<title>get_mem_cgroup_from_mm (10 samples, 0.01%)</title><rect x="278.7" y="197" width="0.1" height="15.0" fill="rgb(229,181,27)" rx="2" ry="2" /> | |
<text x="281.66" y="207.5" ></text> | |
</g> | |
<g > | |
<title>__GI___libc_free (68 samples, 0.10%)</title><rect x="247.8" y="325" width="1.1" height="15.0" fill="rgb(235,191,20)" rx="2" ry="2" /> | |
<text x="250.76" y="335.5" ></text> | |
</g> | |
<g > | |
<title>_$LT$parity_wasm..elements..func..FuncBody$u20$as$u20$parity_wasm..elements..Serialize$GT$::serialize::h6e9e4c32eabcc851 (9,121 samples, 13.00%)</title><rect x="891.3" y="389" width="153.4" height="15.0" fill="rgb(238,84,12)" rx="2" ry="2" /> | |
<text x="894.32" y="399.5" >_$LT$parity_wasm..e..</text> | |
</g> | |
<g > | |
<title>c2_chacha::guts::refill_wide::impl_avx2::hcbb75f7591de3cb9 (13 samples, 0.02%)</title><rect x="1146.6" y="357" width="0.2" height="15.0" fill="rgb(219,147,25)" rx="2" ry="2" /> | |
<text x="1149.56" y="367.5" ></text> | |
</g> | |
<g > | |
<title>__lock_text_start (14 samples, 0.02%)</title><rect x="227.7" y="117" width="0.3" height="15.0" fill="rgb(212,153,22)" rx="2" ry="2" /> | |
<text x="230.74" y="127.5" ></text> | |
</g> | |
<g > | |
<title>do_mprotect_pkey (336 samples, 0.48%)</title><rect x="283.6" y="229" width="5.6" height="15.0" fill="rgb(241,146,10)" rx="2" ry="2" /> | |
<text x="286.58" y="239.5" ></text> | |
</g> | |
<g > | |
<title>_int_realloc (23 samples, 0.03%)</title><rect x="1179.6" y="261" width="0.4" height="15.0" fill="rgb(245,87,45)" rx="2" ry="2" /> | |
<text x="1182.59" y="271.5" ></text> | |
</g> | |
<g > | |
<title>__GI___clock_gettime (7 samples, 0.01%)</title><rect x="147.1" y="117" width="0.1" height="15.0" fill="rgb(253,182,44)" rx="2" ry="2" /> | |
<text x="150.12" y="127.5" ></text> | |
</g> | |
<g > | |
<title>__GI___libc_free (57 samples, 0.08%)</title><rect x="271.8" y="293" width="0.9" height="15.0" fill="rgb(211,89,17)" rx="2" ry="2" /> | |
<text x="274.75" y="303.5" ></text> | |
</g> | |
<g > | |
<title>std::time::Instant::now::h33d2ba6042def2d2 (10 samples, 0.01%)</title><rect x="73.2" y="197" width="0.2" height="15.0" fill="rgb(231,136,9)" rx="2" ry="2" /> | |
<text x="76.23" y="207.5" ></text> | |
</g> | |
<g > | |
<title>cranelift_codegen::dominator_tree::DominatorTree::compute::hb8295076ad170b26 (7 samples, 0.01%)</title><rect x="102.6" y="197" width="0.1" height="15.0" fill="rgb(208,222,30)" rx="2" ry="2" /> | |
<text x="105.63" y="207.5" ></text> | |
</g> | |
<g > | |
<title>std::panic::catch_unwind::hd5e0a26424bd7f34 (736 samples, 1.05%)</title><rect x="189.1" y="373" width="12.3" height="15.0" fill="rgb(247,96,26)" rx="2" ry="2" /> | |
<text x="192.07" 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 (25 samples, 0.04%)</title><rect x="95.1" y="149" width="0.4" height="15.0" fill="rgb(228,96,44)" rx="2" ry="2" /> | |
<text x="98.06" y="159.5" ></text> | |
</g> | |
<g > | |
<title>_int_malloc (41 samples, 0.06%)</title><rect x="863.4" y="309" width="0.7" height="15.0" fill="rgb(244,120,40)" rx="2" ry="2" /> | |
<text x="866.43" y="319.5" ></text> | |
</g> | |
<g > | |
<title>sys_mprotect (492 samples, 0.70%)</title><rect x="262.0" y="245" width="8.3" height="15.0" fill="rgb(252,48,22)" rx="2" ry="2" /> | |
<text x="265.00" y="255.5" ></text> | |
</g> | |
<g > | |
<title>_int_malloc (15 samples, 0.02%)</title><rect x="79.2" y="165" width="0.3" height="15.0" fill="rgb(218,35,13)" rx="2" ry="2" /> | |
<text x="82.22" y="175.5" ></text> | |
</g> | |
<g > | |
<title>std::time::Instant::now::h33d2ba6042def2d2 (9 samples, 0.01%)</title><rect x="175.3" y="181" width="0.1" height="15.0" fill="rgb(229,110,23)" rx="2" ry="2" /> | |
<text x="178.26" y="191.5" ></text> | |
</g> | |
<g > | |
<title>arch_get_unmapped_area_topdown (23 samples, 0.03%)</title><rect x="349.8" y="165" width="0.4" height="15.0" fill="rgb(211,31,49)" rx="2" ry="2" /> | |
<text x="352.83" y="175.5" ></text> | |
</g> | |
<g > | |
<title>_int_malloc (212 samples, 0.30%)</title><rect x="672.9" y="261" width="3.6" height="15.0" fill="rgb(228,54,32)" rx="2" ry="2" /> | |
<text x="675.90" y="271.5" ></text> | |
</g> | |
<g > | |
<title>memcpy_erms (16 samples, 0.02%)</title><rect x="343.5" y="133" width="0.3" height="15.0" fill="rgb(209,146,0)" rx="2" ry="2" /> | |
<text x="346.49" y="143.5" ></text> | |
</g> | |
<g > | |
<title>do_syscall_64 (10 samples, 0.01%)</title><rect x="189.5" y="117" width="0.2" height="15.0" fill="rgb(245,33,5)" rx="2" ry="2" /> | |
<text x="192.49" y="127.5" ></text> | |
</g> | |
<g > | |
<title>cranelift_codegen::ir::builder::InstBuilder::regmove::h2d2e8972aa228be7 (7 samples, 0.01%)</title><rect x="1168.7" y="213" width="0.2" height="15.0" fill="rgb(217,177,1)" rx="2" ry="2" /> | |
<text x="1171.74" y="223.5" ></text> | |
</g> | |
<g > | |
<title>alloc::raw_vec::RawVec$LT$T$C$A$GT$::reserve::h46d48c74cb3cbfdc (28 samples, 0.04%)</title><rect x="1096.4" y="373" width="0.4" height="15.0" fill="rgb(249,26,28)" rx="2" ry="2" /> | |
<text x="1099.36" y="383.5" ></text> | |
</g> | |
<g > | |
<title>_$LT$cranelift_codegen..timing..details..TimingToken$u20$as$u20$core..ops..drop..Drop$GT$::drop::h1b19c2a93ee0a091 (8 samples, 0.01%)</title><rect x="112.1" y="213" width="0.1" height="15.0" fill="rgb(209,132,27)" rx="2" ry="2" /> | |
<text x="115.06" y="223.5" ></text> | |
</g> | |
<g > | |
<title>std::sys::unix::time::inner::now::ha10452f37b2930c5 (7 samples, 0.01%)</title><rect x="1159.9" y="245" width="0.1" height="15.0" fill="rgb(249,152,24)" rx="2" ry="2" /> | |
<text x="1162.88" y="255.5" ></text> | |
</g> | |
<g > | |
<title>_ZN4core3ptr18real_drop_in_place17hbf1a2e7b1d7f1667E.llvm.2002196175208074555 (6 samples, 0.01%)</title><rect x="192.7" y="117" width="0.1" height="15.0" fill="rgb(247,149,23)" rx="2" ry="2" /> | |
<text x="195.73" y="127.5" ></text> | |
</g> | |
<g > | |
<title>__memcpy_sse2 (136 samples, 0.19%)</title><rect x="1084.9" y="325" width="2.2" height="15.0" fill="rgb(225,23,3)" rx="2" ry="2" /> | |
<text x="1087.86" y="335.5" ></text> | |
</g> | |
<g > | |
<title>__GI___clock_gettime (14 samples, 0.02%)</title><rect x="164.3" y="165" width="0.2" height="15.0" fill="rgb(253,62,13)" rx="2" ry="2" /> | |
<text x="167.28" y="175.5" ></text> | |
</g> | |
<g > | |
<title>std::sys::unix::time::inner::Instant::now::h23f1bea5949f1bbd (15 samples, 0.02%)</title><rect x="314.1" y="245" width="0.2" height="15.0" fill="rgb(219,133,39)" rx="2" ry="2" /> | |
<text x="317.06" y="255.5" ></text> | |
</g> | |
<g > | |
<title>memcpy_erms (17 samples, 0.02%)</title><rect x="286.9" y="133" width="0.3" height="15.0" fill="rgb(248,171,51)" rx="2" ry="2" /> | |
<text x="289.94" y="143.5" ></text> | |
</g> | |
<g > | |
<title>cranelift_codegen::ir::builder::InstBuilder::sshr_imm::h62de6656fe758ee0 (21 samples, 0.03%)</title><rect x="88.4" y="149" width="0.3" height="15.0" fill="rgb(217,20,6)" rx="2" ry="2" /> | |
<text x="91.38" y="159.5" ></text> | |
</g> | |
<g > | |
<title>std::time::Instant::elapsed::h8e307314b2acf9be (14 samples, 0.02%)</title><rect x="1153.8" y="245" width="0.2" height="15.0" fill="rgb(253,74,17)" rx="2" ry="2" /> | |
<text x="1156.76" y="255.5" ></text> | |
</g> | |
<g > | |
<title>cranelift_codegen::ir::instructions::InstructionData::arguments_mut::hd68ce32862759160 (13 samples, 0.02%)</title><rect x="91.2" y="165" width="0.3" height="15.0" fill="rgb(223,147,35)" rx="2" ry="2" /> | |
<text x="94.24" y="175.5" ></text> | |
</g> | |
<g > | |
<title>__GI___libc_malloc (6 samples, 0.01%)</title><rect x="314.3" y="277" width="0.1" height="15.0" fill="rgb(207,118,11)" rx="2" ry="2" /> | |
<text x="317.33" y="287.5" ></text> | |
</g> | |
<g > | |
<title>alloc::raw_vec::RawVec$LT$T$C$A$GT$::reserve::hae39d8e15426d2f6 (10 samples, 0.01%)</title><rect x="97.6" y="133" width="0.1" height="15.0" fill="rgb(206,13,37)" rx="2" ry="2" /> | |
<text x="100.58" y="143.5" ></text> | |
</g> | |
<g > | |
<title>__GI___libc_malloc (13 samples, 0.02%)</title><rect x="1172.8" y="245" width="0.2" height="15.0" fill="rgb(239,83,28)" rx="2" ry="2" /> | |
<text x="1175.83" y="255.5" ></text> | |
</g> | |
<g > | |
<title>wasmparser::binary_reader::BinaryReader::read_section_code::h3130ec4f2be00e86 (7 samples, 0.01%)</title><rect x="817.5" y="245" width="0.1" height="15.0" fill="rgb(237,211,20)" rx="2" ry="2" /> | |
<text x="820.46" y="255.5" ></text> | |
</g> | |
<g > | |
<title>alloc::raw_vec::RawVec$LT$T$C$A$GT$::reserve::ha898170dd69782a8 (7 samples, 0.01%)</title><rect x="326.7" y="293" width="0.1" height="15.0" fill="rgb(238,200,16)" rx="2" ry="2" /> | |
<text x="329.73" y="303.5" ></text> | |
</g> | |
<g > | |
<title>cranelift_codegen::isa::x86::abi::legalize_signature::hdcf9074841354b32 (18 samples, 0.03%)</title><rect x="1176.4" y="293" width="0.3" height="15.0" fill="rgb(243,42,39)" rx="2" ry="2" /> | |
<text x="1179.43" y="303.5" ></text> | |
</g> | |
<g > | |
<title>wasmer_clif_fork_wasm::code_translator::translate_operator::hf206f87e46803014 (57 samples, 0.08%)</title><rect x="853.1" y="293" width="1.0" height="15.0" fill="rgb(227,128,7)" rx="2" ry="2" /> | |
<text x="856.09" y="303.5" ></text> | |
</g> | |
<g > | |
<title>cranelift_codegen::abi::legalize_args::he47515d3a3ad0ee6 (8 samples, 0.01%)</title><rect x="1176.6" y="277" width="0.1" height="15.0" fill="rgb(226,111,8)" rx="2" ry="2" /> | |
<text x="1179.60" y="287.5" ></text> | |
</g> | |
<g > | |
<title>cranelift_codegen::isa::encoding::base_size::he0d0831e71de2a0c (11 samples, 0.02%)</title><rect x="36.6" y="277" width="0.1" height="15.0" fill="rgb(205,55,26)" rx="2" ry="2" /> | |
<text x="39.55" y="287.5" ></text> | |
</g> | |
<g > | |
<title>_int_free (11 samples, 0.02%)</title><rect x="189.3" y="213" width="0.2" height="15.0" fill="rgb(231,110,53)" rx="2" ry="2" /> | |
<text x="192.27" y="223.5" ></text> | |
</g> | |
<g > | |
<title>_int_realloc (8 samples, 0.01%)</title><rect x="46.4" y="229" width="0.1" height="15.0" fill="rgb(242,141,46)" rx="2" ry="2" /> | |
<text x="49.37" y="239.5" ></text> | |
</g> | |
<g > | |
<title>cranelift_codegen::regalloc::solver::Solver::schedule_moves::h81b194ab48ac25d3 (67 samples, 0.10%)</title><rect x="48.2" y="277" width="1.1" height="15.0" fill="rgb(208,29,42)" rx="2" ry="2" /> | |
<text x="51.16" y="287.5" ></text> | |
</g> | |
<g > | |
<title>cranelift_codegen::ir::instructions::InstructionData::arguments::h70ecdef19e20b02a (9 samples, 0.01%)</title><rect x="55.1" y="277" width="0.2" height="15.0" fill="rgb(205,57,38)" rx="2" ry="2" /> | |
<text x="58.14" y="287.5" ></text> | |
</g> | |
<g > | |
<title>_$LT$parity_wasm..elements..ops..Instruction$u20$as$u20$core..cmp..PartialEq$GT$::ne::he4ad3ed04bed2102 (33 samples, 0.05%)</title><rect x="1103.6" y="389" width="0.5" height="15.0" fill="rgb(254,173,43)" rx="2" ry="2" /> | |
<text x="1106.58" y="399.5" ></text> | |
</g> | |
<g > | |
<title>_int_realloc (752 samples, 1.07%)</title><rect x="1083.0" y="341" width="12.7" height="15.0" fill="rgb(254,144,5)" rx="2" ry="2" /> | |
<text x="1086.05" y="351.5" ></text> | |
</g> | |
<g > | |
<title>cranelift_codegen::ir::instructions::InstructionData::analyze_branch::h1af3091a9a9e30c3 (8 samples, 0.01%)</title><rect x="1160.3" y="261" width="0.1" height="15.0" fill="rgb(218,67,17)" rx="2" ry="2" /> | |
<text x="1163.30" y="271.5" ></text> | |
</g> | |
<g > | |
<title>cranelift_codegen::regalloc::coloring::Context::visit_inst::h157ddbfc9a018b2b (70 samples, 0.10%)</title><rect x="1177.0" y="325" width="1.2" height="15.0" fill="rgb(240,181,10)" rx="2" ry="2" /> | |
<text x="1179.98" y="335.5" ></text> | |
</g> | |
<g > | |
<title>vma_link (21 samples, 0.03%)</title><rect x="295.5" y="165" width="0.4" height="15.0" fill="rgb(247,227,22)" rx="2" ry="2" /> | |
<text x="298.53" y="175.5" ></text> | |
</g> | |
<g > | |
<title>std::time::Instant::elapsed::h8e307314b2acf9be (13 samples, 0.02%)</title><rect x="153.5" y="181" width="0.2" height="15.0" fill="rgb(220,196,12)" rx="2" ry="2" /> | |
<text x="156.46" y="191.5" ></text> | |
</g> | |
<g > | |
<title>cranelift_codegen::ir::instructions::InstructionData::analyze_branch::h1af3091a9a9e30c3 (9 samples, 0.01%)</title><rect x="119.0" y="197" width="0.2" height="15.0" fill="rgb(253,169,25)" rx="2" ry="2" /> | |
<text x="122.04" y="207.5" ></text> | |
</g> | |
<g > | |
<title>alloc::raw_vec::RawVec$LT$T$C$A$GT$::reserve::h5e34cfad90a6ce21 (11 samples, 0.02%)</title><rect x="1159.7" y="277" width="0.1" height="15.0" fill="rgb(213,99,13)" rx="2" ry="2" /> | |
<text x="1162.66" y="287.5" ></text> | |
</g> | |
<g > | |
<title>cranelift_codegen::legalizer::boundary::handle_call_abi::hfe91bd1ce81b1bda (33 samples, 0.05%)</title><rect x="18.1" y="261" width="0.5" height="15.0" fill="rgb(253,117,52)" rx="2" ry="2" /> | |
<text x="21.06" y="271.5" ></text> | |
</g> | |
<g > | |
<title>cranelift_codegen::dominator_tree::DominatorTree::compute::hb8295076ad170b26 (236 samples, 0.34%)</title><rect x="113.0" y="229" width="4.0" height="15.0" fill="rgb(218,96,48)" rx="2" ry="2" /> | |
<text x="116.02" y="239.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.01%)</title><rect x="1123.0" y="357" width="0.1" height="15.0" fill="rgb(211,36,12)" rx="2" ry="2" /> | |
<text x="1125.95" y="367.5" ></text> | |
</g> | |
<g > | |
<title>__GI___clock_gettime (19 samples, 0.03%)</title><rect x="320.0" y="229" width="0.3" height="15.0" fill="rgb(223,8,44)" rx="2" ry="2" /> | |
<text x="323.02" y="239.5" ></text> | |
</g> | |
<g > | |
<title>do_mprotect_pkey (873 samples, 1.24%)</title><rect x="333.1" y="229" width="14.6" height="15.0" fill="rgb(218,11,42)" rx="2" ry="2" /> | |
<text x="336.05" y="239.5" ></text> | |
</g> | |
<g > | |
<title>alloc::raw_vec::RawVec$LT$T$C$A$GT$::reserve::h5bb4661d248be310 (56 samples, 0.08%)</title><rect x="1052.4" y="389" width="0.9" height="15.0" fill="rgb(218,20,10)" rx="2" ry="2" /> | |
<text x="1055.37" y="399.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.03%)</title><rect x="19.7" y="229" width="0.4" height="15.0" fill="rgb(235,181,37)" rx="2" ry="2" /> | |
<text x="22.67" y="239.5" ></text> | |
</g> | |
<g > | |
<title>_int_malloc (26 samples, 0.04%)</title><rect x="187.5" y="325" width="0.4" height="15.0" fill="rgb(209,20,37)" rx="2" ry="2" /> | |
<text x="190.47" y="335.5" ></text> | |
</g> | |
<g > | |
<title>cranelift_codegen::ir::dfg::DataFlowGraph::resolve_aliases_in_arguments::ha1a59fc1c5edab63 (34 samples, 0.05%)</title><rect x="168.2" y="213" width="0.6" height="15.0" fill="rgb(238,209,39)" rx="2" ry="2" /> | |
<text x="171.18" y="223.5" ></text> | |
</g> | |
<g > | |
<title>alloc_perturb (15 samples, 0.02%)</title><rect x="695.7" y="245" width="0.2" height="15.0" fill="rgb(215,122,11)" rx="2" ry="2" /> | |
<text x="698.65" y="255.5" ></text> | |
</g> | |
<g > | |
<title>cranelift_codegen::stack_layout::layout_stack::h292a1cd27b02b094 (9 samples, 0.01%)</title><rect x="1157.3" y="245" width="0.1" height="15.0" fill="rgb(220,104,38)" rx="2" ry="2" /> | |
<text x="1160.26" y="255.5" ></text> | |
</g> | |
<g > | |
<title>__GI___pthread_rwlock_rdlock (1,671 samples, 2.38%)</title><rect x="824.9" y="309" width="28.1" height="15.0" fill="rgb(218,75,45)" rx="2" ry="2" /> | |
<text x="827.89" y="319.5" >_..</text> | |
</g> | |
<g > | |
<title>_$LT$wasmer_clif_backend..signal..Caller$u20$as$u20$wasmer_runtime_core..backend..RunnableModule$GT$::get_trampoline::invoke::hf0f11602db5710f7 (393 samples, 0.56%)</title><rect x="864.7" y="325" width="6.6" height="15.0" fill="rgb(231,182,34)" rx="2" ry="2" /> | |
<text x="867.68" y="335.5" ></text> | |
</g> | |
<g > | |
<title>alloc::raw_vec::RawVec$LT$T$C$A$GT$::reserve::hae39d8e15426d2f6 (6 samples, 0.01%)</title><rect x="141.1" y="165" width="0.1" height="15.0" fill="rgb(247,152,49)" rx="2" ry="2" /> | |
<text x="144.09" y="175.5" ></text> | |
</g> | |
<g > | |
<title>core::ptr::real_drop_in_place::h81fdc17dfe3ce6d5 (12 samples, 0.02%)</title><rect x="240.2" y="357" width="0.2" height="15.0" fill="rgb(209,182,34)" rx="2" ry="2" /> | |
<text x="243.17" y="367.5" ></text> | |
</g> | |
<g > | |
<title>_ZN17cranelift_codegen8regalloc6solver6Solver13find_solution17h23fb3e5d74fee50cE.llvm.529824060399144151 (51 samples, 0.07%)</title><rect x="43.9" y="277" width="0.8" height="15.0" fill="rgb(248,204,0)" rx="2" ry="2" /> | |
<text x="46.85" y="287.5" ></text> | |
</g> | |
<g > | |
<title>cranelift_codegen::regalloc::live_value_tracker::LiveValueTracker::process_inst::hcd4ba6fb549516b2 (16 samples, 0.02%)</title><rect x="55.5" y="277" width="0.2" height="15.0" fill="rgb(237,3,30)" rx="2" ry="2" /> | |
<text x="58.47" y="287.5" ></text> | |
</g> | |
<g > | |
<title>cranelift_codegen::ir::builder::InstBuilder::x86_pop::h5a280d9badba4b5b (61 samples, 0.09%)</title><rect x="95.0" y="165" width="1.0" height="15.0" fill="rgb(228,197,47)" rx="2" ry="2" /> | |
<text x="97.96" y="175.5" ></text> | |
</g> | |
<g > | |
<title>__vdso_clock_gettime (8 samples, 0.01%)</title><rect x="54.3" y="181" width="0.1" height="15.0" fill="rgb(219,42,5)" rx="2" ry="2" /> | |
<text x="57.30" 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 (28 samples, 0.04%)</title><rect x="75.8" y="197" width="0.5" height="15.0" fill="rgb(236,214,37)" rx="2" ry="2" /> | |
<text x="78.79" y="207.5" ></text> | |
</g> | |
<g > | |
<title>cranelift_codegen::regalloc::spilling::Context::spill_reg::hfd9fc3b6557c8c97 (13 samples, 0.02%)</title><rect x="1180.2" y="309" width="0.2" height="15.0" fill="rgb(232,219,36)" rx="2" ry="2" /> | |
<text x="1183.16" y="319.5" ></text> | |
</g> | |
<g > | |
<title>__munmap (10 samples, 0.01%)</title><rect x="189.5" y="149" width="0.2" height="15.0" fill="rgb(226,58,16)" rx="2" ry="2" /> | |
<text x="192.49" y="159.5" ></text> | |
</g> | |
<g > | |
<title>__memcpy_avx_unaligned (8 samples, 0.01%)</title><rect x="824.5" y="309" width="0.1" height="15.0" fill="rgb(213,161,27)" rx="2" ry="2" /> | |
<text x="827.50" y="319.5" ></text> | |
</g> | |
<g > | |
<title>_int_malloc (110 samples, 0.16%)</title><rect x="250.5" y="293" width="1.9" height="15.0" fill="rgb(217,85,25)" rx="2" ry="2" /> | |
<text x="253.55" y="303.5" ></text> | |
</g> | |
<g > | |
<title>__GI___libc_free (7 samples, 0.01%)</title><rect x="14.0" y="245" width="0.1" height="15.0" fill="rgb(232,186,43)" rx="2" ry="2" /> | |
<text x="16.95" y="255.5" ></text> | |
</g> | |
<g > | |
<title>cranelift_codegen::isa::TargetIsa::encode::h3618ddf6ad568ce7 (72 samples, 0.10%)</title><rect x="85.7" y="165" width="1.2" height="15.0" fill="rgb(244,75,5)" rx="2" ry="2" /> | |
<text x="88.71" y="175.5" ></text> | |
</g> | |
<g > | |
<title>__mmap (9 samples, 0.01%)</title><rect x="190.7" y="133" width="0.1" height="15.0" fill="rgb(225,176,27)" rx="2" ry="2" /> | |
<text x="193.66" y="143.5" ></text> | |
</g> | |
<g > | |
<title>std::sys::unix::time::inner::now::ha10452f37b2930c5 (9 samples, 0.01%)</title><rect x="175.3" y="149" width="0.1" height="15.0" fill="rgb(208,171,41)" rx="2" ry="2" /> | |
<text x="178.26" y="159.5" ></text> | |
</g> | |
<g > | |
<title>cranelift_entity::sparse::SparseMap$LT$K$C$V$GT$::insert::h7db38de7d591c38a (35 samples, 0.05%)</title><rect x="1178.2" y="293" width="0.5" height="15.0" fill="rgb(206,166,0)" rx="2" ry="2" /> | |
<text x="1181.16" y="303.5" ></text> | |
</g> | |
<g > | |
<title>alloc::raw_vec::RawVec$LT$T$C$A$GT$::reserve::h500ef385b8747b29 (10 samples, 0.01%)</title><rect x="122.5" y="213" width="0.1" height="15.0" fill="rgb(252,218,41)" rx="2" ry="2" /> | |
<text x="125.47" y="223.5" ></text> | |
</g> | |
<g > | |
<title>_ZN17cranelift_codegen3isa3x8615isa_constructor17h4c0ec78ad154a9afE.llvm.1715965870215341490 (28 samples, 0.04%)</title><rect x="355.9" y="293" width="0.4" height="15.0" fill="rgb(211,137,5)" rx="2" ry="2" /> | |
<text x="358.85" y="303.5" ></text> | |
</g> | |
<g > | |
<title>_int_free (6 samples, 0.01%)</title><rect x="798.2" y="293" width="0.1" height="15.0" fill="rgb(219,61,5)" rx="2" ry="2" /> | |
<text x="801.17" y="303.5" ></text> | |
</g> | |
<g > | |
<title>cranelift_codegen::regalloc::spilling::Spilling::run::hbc5ba3177617b881 (95 samples, 0.14%)</title><rect x="1174.8" y="309" width="1.6" height="15.0" fill="rgb(238,155,5)" rx="2" ry="2" /> | |
<text x="1177.83" y="319.5" ></text> | |
</g> | |
<g > | |
<title>alloc::raw_vec::RawVec$LT$T$C$A$GT$::reserve::hbfb989f525a2d15c (101 samples, 0.14%)</title><rect x="862.5" y="341" width="1.7" height="15.0" fill="rgb(208,63,1)" rx="2" ry="2" /> | |
<text x="865.48" y="351.5" ></text> | |
</g> | |
<g > | |
<title>unmap_vmas (71 samples, 0.10%)</title><rect x="230.2" y="197" width="1.2" height="15.0" fill="rgb(229,161,16)" rx="2" ry="2" /> | |
<text x="233.18" y="207.5" ></text> | |
</g> | |
<g > | |
<title>std::sys::unix::time::inner::now::ha10452f37b2930c5 (25 samples, 0.04%)</title><rect x="60.3" y="261" width="0.5" height="15.0" fill="rgb(236,123,41)" rx="2" ry="2" /> | |
<text x="63.35" y="271.5" ></text> | |
</g> | |
<g > | |
<title>std::time::Instant::now::h33d2ba6042def2d2 (15 samples, 0.02%)</title><rect x="314.1" y="261" width="0.2" height="15.0" fill="rgb(220,17,32)" rx="2" ry="2" /> | |
<text x="317.06" y="271.5" ></text> | |
</g> | |
<g > | |
<title>_int_free (7 samples, 0.01%)</title><rect x="1148.1" y="213" width="0.1" height="15.0" fill="rgb(211,100,0)" rx="2" ry="2" /> | |
<text x="1151.08" y="223.5" ></text> | |
</g> | |
<g > | |
<title>__GI___clock_gettime (13 samples, 0.02%)</title><rect x="158.2" y="117" width="0.3" height="15.0" fill="rgb(213,65,4)" rx="2" ry="2" /> | |
<text x="161.24" y="127.5" ></text> | |
</g> | |
<g > | |
<title>cranelift_codegen::context::Context::new::hb2c1be51d6979949 (7 samples, 0.01%)</title><rect x="1180.4" y="373" width="0.1" height="15.0" fill="rgb(213,94,54)" rx="2" ry="2" /> | |
<text x="1183.38" y="383.5" ></text> | |
</g> | |
<g > | |
<title>cranelift_entity::sparse::SparseMap$LT$K$C$V$GT$::insert::h7db38de7d591c38a (42 samples, 0.06%)</title><rect x="51.7" y="261" width="0.7" height="15.0" fill="rgb(214,85,49)" rx="2" ry="2" /> | |
<text x="54.72" y="271.5" ></text> | |
</g> | |
<g > | |
<title>std::sys::unix::time::inner::Instant::now::h23f1bea5949f1bbd (7 samples, 0.01%)</title><rect x="38.8" y="277" width="0.1" height="15.0" fill="rgb(209,137,9)" rx="2" ry="2" /> | |
<text x="41.81" y="287.5" ></text> | |
</g> | |
<g > | |
<title>cranelift_codegen::licm::do_licm::hb96edf4ef4d89000 (142 samples, 0.20%)</title><rect x="119.5" y="229" width="2.4" height="15.0" fill="rgb(212,181,27)" rx="2" ry="2" /> | |
<text x="122.49" y="239.5" ></text> | |
</g> | |
<g > | |
<title>sys_mprotect (6 samples, 0.01%)</title><rect x="347.8" y="261" width="0.2" height="15.0" fill="rgb(239,185,48)" rx="2" ry="2" /> | |
<text x="350.85" y="271.5" ></text> | |
</g> | |
<g > | |
<title>std::time::Instant::now::h33d2ba6042def2d2 (24 samples, 0.03%)</title><rect x="175.6" y="229" width="0.4" height="15.0" fill="rgb(227,217,54)" rx="2" ry="2" /> | |
<text x="178.59" y="239.5" ></text> | |
</g> | |
<g > | |
<title>std::rt::lang_start_internal::h3bdc4c7d98181bf9 (736 samples, 1.05%)</title><rect x="189.1" y="389" width="12.3" height="15.0" fill="rgb(222,165,49)" rx="2" ry="2" /> | |
<text x="192.07" y="399.5" ></text> | |
</g> | |
<g > | |
<title>alloc::raw_vec::RawVec$LT$T$C$A$GT$::reserve::h500ef385b8747b29 (17 samples, 0.02%)</title><rect x="129.0" y="181" width="0.3" height="15.0" fill="rgb(240,35,25)" rx="2" ry="2" /> | |
<text x="131.98" y="191.5" ></text> | |
</g> | |
<g > | |
<title>__GI___libc_realloc (11 samples, 0.02%)</title><rect x="116.4" y="181" width="0.2" height="15.0" fill="rgb(246,60,15)" rx="2" ry="2" /> | |
<text x="119.42" y="191.5" ></text> | |
</g> | |
<g > | |
<title>_int_free (18 samples, 0.03%)</title><rect x="184.3" y="245" width="0.3" height="15.0" fill="rgb(249,122,24)" rx="2" ry="2" /> | |
<text x="187.34" y="255.5" ></text> | |
</g> | |
<g > | |
<title>_int_free (443 samples, 0.63%)</title><rect x="1115.5" y="357" width="7.5" height="15.0" fill="rgb(228,75,42)" rx="2" ry="2" /> | |
<text x="1118.50" y="367.5" ></text> | |
</g> | |
<g > | |
<title>cranelift_codegen::ir::instructions::InstructionData::arguments::h70ecdef19e20b02a (7 samples, 0.01%)</title><rect x="26.7" y="261" width="0.1" height="15.0" fill="rgb(222,204,41)" rx="2" ry="2" /> | |
<text x="29.72" y="271.5" ></text> | |
</g> | |
<g > | |
<title>__GI___libc_free (17 samples, 0.02%)</title><rect x="196.3" y="149" width="0.3" height="15.0" fill="rgb(250,95,30)" rx="2" ry="2" /> | |
<text x="199.31" y="159.5" ></text> | |
</g> | |
<g > | |
<title>core::ptr::real_drop_in_place::h98f9fd73d14fd071 (19 samples, 0.03%)</title><rect x="196.3" y="165" width="0.3" height="15.0" fill="rgb(209,109,34)" rx="2" ry="2" /> | |
<text x="199.28" y="175.5" ></text> | |
</g> | |
<g > | |
<title>do_syscall_64 (29 samples, 0.04%)</title><rect x="11.3" y="341" width="0.5" height="15.0" fill="rgb(241,15,19)" rx="2" ry="2" /> | |
<text x="14.33" y="351.5" ></text> | |
</g> | |
<g > | |
<title>cranelift_codegen::dce::do_dce::h45d4354699d5d0cc (114 samples, 0.16%)</title><rect x="111.1" y="229" width="1.9" height="15.0" fill="rgb(243,153,26)" rx="2" ry="2" /> | |
<text x="114.10" y="239.5" ></text> | |
</g> | |
<g > | |
<title>__GI___libc_malloc (18 samples, 0.03%)</title><rect x="812.1" y="277" width="0.3" height="15.0" fill="rgb(205,202,26)" rx="2" ry="2" /> | |
<text x="815.14" y="287.5" ></text> | |
</g> | |
<g > | |
<title>cranelift_codegen::ir::builder::InstBuilder::jump::h219168e40a02b957 (8 samples, 0.01%)</title><rect x="88.2" y="149" width="0.2" height="15.0" fill="rgb(240,80,31)" rx="2" ry="2" /> | |
<text x="91.25" y="159.5" ></text> | |
</g> | |
<g > | |
<title>_int_malloc (9 samples, 0.01%)</title><rect x="26.1" y="245" width="0.1" height="15.0" fill="rgb(214,154,21)" rx="2" ry="2" /> | |
<text x="29.09" y="255.5" ></text> | |
</g> | |
<g > | |
<title>alloc::raw_vec::RawVec$LT$T$C$A$GT$::reserve::h0c445b41f7c28667 (7 samples, 0.01%)</title><rect x="1171.3" y="245" width="0.1" height="15.0" fill="rgb(208,226,11)" rx="2" ry="2" /> | |
<text x="1174.30" y="255.5" ></text> | |
</g> | |
<g > | |
<title>_int_free (373 samples, 0.53%)</title><rect x="992.7" y="341" width="6.3" height="15.0" fill="rgb(231,34,19)" rx="2" ry="2" /> | |
<text x="995.71" y="351.5" ></text> | |
</g> | |
<g > | |
<title>_int_malloc (6 samples, 0.01%)</title><rect x="119.3" y="181" width="0.1" height="15.0" fill="rgb(221,17,43)" rx="2" ry="2" /> | |
<text x="122.26" y="191.5" ></text> | |
</g> | |
<g > | |
<title>__GI___libc_realloc (36 samples, 0.05%)</title><rect x="1173.0" y="245" width="0.7" height="15.0" fill="rgb(226,10,8)" rx="2" ry="2" /> | |
<text x="1176.05" y="255.5" ></text> | |
</g> | |
<g > | |
<title>__rb_insert_augmented (7 samples, 0.01%)</title><rect x="345.4" y="133" width="0.1" height="15.0" fill="rgb(234,66,35)" rx="2" ry="2" /> | |
<text x="348.39" y="143.5" ></text> | |
</g> | |
<g > | |
<title>perf_iterate_ctx (144 samples, 0.21%)</title><rect x="285.0" y="165" width="2.5" height="15.0" fill="rgb(207,84,30)" rx="2" ry="2" /> | |
<text x="288.04" y="175.5" ></text> | |
</g> | |
<g > | |
<title>__GI___libc_malloc (9 samples, 0.01%)</title><rect x="1159.5" y="261" width="0.1" height="15.0" fill="rgb(226,147,28)" rx="2" ry="2" /> | |
<text x="1162.49" y="271.5" ></text> | |
</g> | |
<g > | |
<title>_$LT$core..iter..adapters..Cloned$LT$I$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$::fold::h694f7df7412590c2 (22 samples, 0.03%)</title><rect x="63.2" y="229" width="0.4" height="15.0" fill="rgb(238,145,24)" rx="2" ry="2" /> | |
<text x="66.21" y="239.5" ></text> | |
</g> | |
<g > | |
<title>__GI___libc_free (12 samples, 0.02%)</title><rect x="189.3" y="229" width="0.2" height="15.0" fill="rgb(228,24,5)" rx="2" ry="2" /> | |
<text x="192.25" y="239.5" ></text> | |
</g> | |
<g > | |
<title>_int_free (13 samples, 0.02%)</title><rect x="195.6" y="149" width="0.2" height="15.0" fill="rgb(230,166,42)" rx="2" ry="2" /> | |
<text x="198.59" y="159.5" ></text> | |
</g> | |
<g > | |
<title>alloc::raw_vec::RawVec$LT$T$C$A$GT$::reserve::he459267326f26ce0 (13 samples, 0.02%)</title><rect x="118.8" y="149" width="0.2" height="15.0" fill="rgb(233,7,0)" rx="2" ry="2" /> | |
<text x="121.82" y="159.5" ></text> | |
</g> | |
<g > | |
<title>wasmer_clif_backend::trampoline::Trampolines::to_trampoline_cache::h749748cb93becce9 (7 samples, 0.01%)</title><rect x="190.1" y="149" width="0.1" height="15.0" fill="rgb(230,114,0)" rx="2" ry="2" /> | |
<text x="193.09" y="159.5" ></text> | |
</g> | |
<g > | |
<title>change_protection (128 samples, 0.18%)</title><rect x="334.0" y="197" width="2.1" height="15.0" fill="rgb(234,52,30)" rx="2" ry="2" /> | |
<text x="336.99" y="207.5" ></text> | |
</g> | |
<g > | |
<title>cranelift_codegen::regalloc::context::Context::run::hacf4bbc8f4d0071a (217 samples, 0.31%)</title><rect x="1176.7" y="341" width="3.7" height="15.0" fill="rgb(205,150,35)" rx="2" ry="2" /> | |
<text x="1179.73" y="351.5" ></text> | |
</g> | |
<g > | |
<title>__memcpy_avx_unaligned (13 samples, 0.02%)</title><rect x="78.4" y="181" width="0.3" height="15.0" fill="rgb(232,23,36)" rx="2" ry="2" /> | |
<text x="81.44" y="191.5" ></text> | |
</g> | |
<g > | |
<title>__GI___libc_free (45 samples, 0.06%)</title><rect x="181.8" y="277" width="0.8" height="15.0" fill="rgb(250,113,17)" rx="2" ry="2" /> | |
<text x="184.80" y="287.5" ></text> | |
</g> | |
<g > | |
<title>alloc::raw_vec::RawVec$LT$T$C$A$GT$::reserve::h500ef385b8747b29 (18 samples, 0.03%)</title><rect x="101.9" y="197" width="0.3" height="15.0" fill="rgb(243,169,4)" rx="2" ry="2" /> | |
<text x="104.92" y="207.5" ></text> | |
</g> | |
<g > | |
<title>std::sys::unix::time::inner::now::ha10452f37b2930c5 (6 samples, 0.01%)</title><rect x="122.9" y="181" width="0.1" height="15.0" fill="rgb(237,153,37)" rx="2" ry="2" /> | |
<text x="125.94" y="191.5" ></text> | |
</g> | |
<g > | |
<title>__rdl_dealloc (11 samples, 0.02%)</title><rect x="755.7" y="309" width="0.1" height="15.0" fill="rgb(244,171,34)" rx="2" ry="2" /> | |
<text x="758.66" y="319.5" ></text> | |
</g> | |
<g > | |
<title>cranelift_codegen::ir::layout::Layout::split_ebb::h465627b364d2697d (8 samples, 0.01%)</title><rect x="88.9" y="149" width="0.2" height="15.0" fill="rgb(231,39,48)" rx="2" ry="2" /> | |
<text x="91.94" y="159.5" ></text> | |
</g> | |
<g > | |
<title>__GI___libc_malloc (26 samples, 0.04%)</title><rect x="300.8" y="309" width="0.4" height="15.0" fill="rgb(219,64,37)" rx="2" ry="2" /> | |
<text x="303.76" y="319.5" ></text> | |
</g> | |
<g > | |
<title>perf_iterate_sb (139 samples, 0.20%)</title><rect x="351.4" y="149" width="2.3" height="15.0" fill="rgb(240,225,32)" rx="2" ry="2" /> | |
<text x="354.36" y="159.5" ></text> | |
</g> | |
<g > | |
<title>cranelift_codegen::ir::instructions::InstructionData::arguments::h70ecdef19e20b02a (18 samples, 0.03%)</title><rect x="142.1" y="197" width="0.3" height="15.0" fill="rgb(254,21,38)" rx="2" ry="2" /> | |
<text x="145.08" y="207.5" ></text> | |
</g> | |
<g > | |
<title>_int_free (303 samples, 0.43%)</title><rect x="1019.2" y="341" width="5.1" height="15.0" fill="rgb(233,48,39)" rx="2" ry="2" /> | |
<text x="1022.21" y="351.5" ></text> | |
</g> | |
<g > | |
<title>alloc::raw_vec::RawVec$LT$T$C$A$GT$::reserve::h500ef385b8747b29 (10 samples, 0.01%)</title><rect x="1159.5" y="277" width="0.2" height="15.0" fill="rgb(233,161,17)" rx="2" ry="2" /> | |
<text x="1162.49" y="287.5" ></text> | |
</g> | |
<g > | |
<title>_int_free (7 samples, 0.01%)</title><rect x="200.8" y="165" width="0.1" height="15.0" fill="rgb(218,87,52)" rx="2" ry="2" /> | |
<text x="203.75" y="175.5" ></text> | |
</g> | |
<g > | |
<title>__do_page_fault (6 samples, 0.01%)</title><rect x="190.4" y="101" width="0.1" height="15.0" fill="rgb(244,149,44)" rx="2" ry="2" /> | |
<text x="193.41" y="111.5" ></text> | |
</g> | |
<g > | |
<title>__GI___clock_gettime (7 samples, 0.01%)</title><rect x="1161.2" y="229" width="0.1" height="15.0" fill="rgb(234,64,4)" rx="2" ry="2" /> | |
<text x="1164.21" y="239.5" ></text> | |
</g> | |
<g > | |
<title>std::time::Instant::elapsed::h8e307314b2acf9be (20 samples, 0.03%)</title><rect x="1158.0" y="261" width="0.4" height="15.0" fill="rgb(206,207,50)" rx="2" ry="2" /> | |
<text x="1161.01" y="271.5" ></text> | |
</g> | |
<g > | |
<title>__GI___libc_malloc (15 samples, 0.02%)</title><rect x="324.4" y="277" width="0.3" height="15.0" fill="rgb(217,107,35)" rx="2" ry="2" /> | |
<text x="327.44" y="287.5" ></text> | |
</g> | |
<g > | |
<title>malloc_consolidate (53 samples, 0.08%)</title><rect x="873.7" y="325" width="0.9" height="15.0" fill="rgb(213,163,29)" rx="2" ry="2" /> | |
<text x="876.71" y="335.5" ></text> | |
</g> | |
<g > | |
<title>cranelift_codegen::context::Context::for_function::hea969f7415ee7749 (110 samples, 0.16%)</title><rect x="176.2" y="309" width="1.9" height="15.0" fill="rgb(227,134,36)" rx="2" ry="2" /> | |
<text x="179.22" y="319.5" ></text> | |
</g> | |
<g > | |
<title>_int_malloc (6 samples, 0.01%)</title><rect x="323.4" y="245" width="0.1" height="15.0" fill="rgb(221,222,1)" rx="2" ry="2" /> | |
<text x="326.41" y="255.5" ></text> | |
</g> | |
<g > | |
<title>cranelift_codegen::ir::layout::Layout::insert_inst::h352d76f498d27496 (7 samples, 0.01%)</title><rect x="1168.7" y="181" width="0.2" height="15.0" fill="rgb(214,150,3)" rx="2" ry="2" /> | |
<text x="1171.74" y="191.5" ></text> | |
</g> | |
<g > | |
<title>hashbrown::raw::RawTable$LT$T$GT$::try_with_capacity::h7a6e6bae489d4fe9 (22 samples, 0.03%)</title><rect x="140.3" y="149" width="0.4" height="15.0" fill="rgb(246,38,8)" rx="2" ry="2" /> | |
<text x="143.33" y="159.5" ></text> | |
</g> | |
<g > | |
<title>std::sys::unix::time::inner::Instant::now::h23f1bea5949f1bbd (12 samples, 0.02%)</title><rect x="37.6" y="245" width="0.2" height="15.0" fill="rgb(253,208,34)" rx="2" ry="2" /> | |
<text x="40.60" y="255.5" ></text> | |
</g> | |
<g > | |
<title>__GI___libc_malloc (12 samples, 0.02%)</title><rect x="356.7" y="293" width="0.2" height="15.0" fill="rgb(236,37,30)" rx="2" ry="2" /> | |
<text x="359.68" y="303.5" ></text> | |
</g> | |
<g > | |
<title>_$LT$wasmer_runtime_core..types..FuncSig$u20$as$u20$core..hash..Hash$GT$::hash::h1e327e01a11a280a (6 samples, 0.01%)</title><rect x="872.4" y="341" width="0.1" height="15.0" fill="rgb(228,158,38)" rx="2" ry="2" /> | |
<text x="875.42" y="351.5" ></text> | |
</g> | |
<g > | |
<title>cranelift_codegen_shared::constant_hash::simple_hash::h522b288b2afb6d20 (7 samples, 0.01%)</title><rect x="355.7" y="277" width="0.1" height="15.0" fill="rgb(224,116,21)" rx="2" ry="2" /> | |
<text x="358.70" y="287.5" ></text> | |
</g> | |
<g > | |
<title>__GI___libc_malloc (8 samples, 0.01%)</title><rect x="805.1" y="261" width="0.2" height="15.0" fill="rgb(208,116,50)" rx="2" ry="2" /> | |
<text x="808.15" y="271.5" ></text> | |
</g> | |
<g > | |
<title>__GI___clock_gettime (24 samples, 0.03%)</title><rect x="60.4" y="245" width="0.4" height="15.0" fill="rgb(251,140,37)" rx="2" ry="2" /> | |
<text x="63.37" y="255.5" ></text> | |
</g> | |
<g > | |
<title>_ZN9hashbrown3raw17RawTable$LT$T$GT$14reserve_rehash17h949d57d1e07c193dE.llvm.16938716460618634628 (24 samples, 0.03%)</title><rect x="25.3" y="245" width="0.4" height="15.0" fill="rgb(223,187,42)" rx="2" ry="2" /> | |
<text x="28.29" y="255.5" ></text> | |
</g> | |
<g > | |
<title>alloc::borrow::Cow$LT$B$GT$::to_mut::hc816a9c98cae5186 (47 samples, 0.07%)</title><rect x="82.3" y="165" width="0.8" height="15.0" fill="rgb(222,190,48)" rx="2" ry="2" /> | |
<text x="85.28" y="175.5" ></text> | |
</g> | |
<g > | |
<title>_int_free (10 samples, 0.01%)</title><rect x="314.8" y="261" width="0.2" height="15.0" fill="rgb(208,106,46)" rx="2" ry="2" /> | |
<text x="317.82" y="271.5" ></text> | |
</g> | |
<g > | |
<title>_$LT$hashbrown..raw..RawTable$LT$T$GT$$u20$as$u20$core..ops..drop..Drop$GT$::drop::h698d2ed12909e0bd (14 samples, 0.02%)</title><rect x="798.0" y="325" width="0.3" height="15.0" fill="rgb(225,86,54)" rx="2" ry="2" /> | |
<text x="801.03" y="335.5" ></text> | |
</g> | |
<g > | |
<title>__vdso_clock_gettime (9 samples, 0.01%)</title><rect x="38.2" y="213" width="0.2" height="15.0" fill="rgb(223,150,36)" rx="2" ry="2" /> | |
<text x="41.24" y="223.5" ></text> | |
</g> | |
<g > | |
<title>cranelift_codegen::ir::function::Function::with_name_signature::h3213a13dd838e646 (15 samples, 0.02%)</title><rect x="60.8" y="325" width="0.2" height="15.0" fill="rgb(231,112,44)" rx="2" ry="2" /> | |
<text x="63.77" y="335.5" ></text> | |
</g> | |
<g > | |
<title>std::sys::unix::time::inner::Instant::now::h23f1bea5949f1bbd (11 samples, 0.02%)</title><rect x="68.0" y="197" width="0.2" height="15.0" fill="rgb(224,33,50)" rx="2" ry="2" /> | |
<text x="71.00" y="207.5" ></text> | |
</g> | |
<g > | |
<title>cranelift_codegen::ir::dfg::DataFlowGraph::ctrl_typevar::h001f83f02149e995 (22 samples, 0.03%)</title><rect x="34.8" y="277" width="0.4" height="15.0" fill="rgb(212,21,31)" rx="2" ry="2" /> | |
<text x="37.79" y="287.5" ></text> | |
</g> | |
<g > | |
<title>cranelift_codegen::flowgraph::ControlFlowGraph::compute::hdce42828fa3e59cb (15 samples, 0.02%)</title><rect x="319.5" y="277" width="0.2" height="15.0" fill="rgb(212,27,3)" rx="2" ry="2" /> | |
<text x="322.46" y="287.5" ></text> | |
</g> | |
<g > | |
<title>wasmer_clif_backend::signal::unix::do_unwind::h30a2256d0dd1db30 (47 samples, 0.07%)</title><rect x="11.1" y="405" width="0.8" height="15.0" fill="rgb(227,36,53)" rx="2" ry="2" /> | |
<text x="14.08" y="415.5" ></text> | |
</g> | |
<g > | |
<title>cranelift_codegen::regalloc::solver::Solver::schedule_moves::h81b194ab48ac25d3 (58 samples, 0.08%)</title><rect x="144.5" y="197" width="1.0" height="15.0" fill="rgb(210,152,27)" rx="2" ry="2" /> | |
<text x="147.50" y="207.5" ></text> | |
</g> | |
<g > | |
<title>_$LT$wasmer_runtime_core..types..FuncSig$u20$as$u20$core..hash..Hash$GT$::hash::h1e327e01a11a280a (6 samples, 0.01%)</title><rect x="877.5" y="293" width="0.1" height="15.0" fill="rgb(208,70,2)" rx="2" ry="2" /> | |
<text x="880.46" y="303.5" ></text> | |
</g> | |
<g > | |
<title>alloc::raw_vec::RawVec$LT$T$C$A$GT$::reserve::h90000ec143ceb992 (11 samples, 0.02%)</title><rect x="194.1" y="149" width="0.2" height="15.0" fill="rgb(253,16,52)" rx="2" ry="2" /> | |
<text x="197.13" y="159.5" ></text> | |
</g> | |
<g > | |
<title>_int_malloc (9 samples, 0.01%)</title><rect x="805.8" y="213" width="0.2" height="15.0" fill="rgb(245,141,0)" rx="2" ry="2" /> | |
<text x="808.82" y="223.5" ></text> | |
</g> | |
<g > | |
<title>do_syscall_64 (6 samples, 0.01%)</title><rect x="190.6" y="101" width="0.1" height="15.0" fill="rgb(239,11,28)" rx="2" ry="2" /> | |
<text x="193.56" y="111.5" ></text> | |
</g> | |
<g > | |
<title>alloc::raw_vec::RawVec$LT$T$C$A$GT$::reserve::h500ef385b8747b29 (10 samples, 0.01%)</title><rect x="325.0" y="293" width="0.1" height="15.0" fill="rgb(212,51,39)" rx="2" ry="2" /> | |
<text x="327.96" y="303.5" ></text> | |
</g> | |
<g > | |
<title>[libpthread-2.23.so] (85 samples, 0.12%)</title><rect x="10.4" y="437" width="1.5" height="15.0" fill="rgb(206,212,18)" rx="2" ry="2" /> | |
<text x="13.44" y="447.5" ></text> | |
</g> | |
<g > | |
<title>anon_vma_interval_tree_insert (13 samples, 0.02%)</title><rect x="269.9" y="181" width="0.2" height="15.0" fill="rgb(249,112,19)" rx="2" ry="2" /> | |
<text x="272.90" y="191.5" ></text> | |
</g> | |
<g > | |
<title>cranelift_codegen::legalizer::boundary::handle_return_abi::h764f90cd82edb83f (11 samples, 0.02%)</title><rect x="90.3" y="181" width="0.2" height="15.0" fill="rgb(253,92,34)" rx="2" ry="2" /> | |
<text x="93.27" y="191.5" ></text> | |
</g> | |
<g > | |
<title>alloc::vec::Vec$LT$T$GT$::resize::h9160379633033fa6 (6 samples, 0.01%)</title><rect x="90.1" y="117" width="0.1" height="15.0" fill="rgb(211,65,42)" rx="2" ry="2" /> | |
<text x="93.12" y="127.5" ></text> | |
</g> | |
<g > | |
<title>__vdso_clock_gettime (9 samples, 0.01%)</title><rect x="1154.9" y="165" width="0.2" height="15.0" fill="rgb(223,116,27)" rx="2" ry="2" /> | |
<text x="1157.90" y="175.5" ></text> | |
</g> | |
<g > | |
<title>change_protection (89 samples, 0.13%)</title><rect x="262.3" y="197" width="1.5" height="15.0" fill="rgb(229,38,1)" rx="2" ry="2" /> | |
<text x="265.29" y="207.5" ></text> | |
</g> | |
<g > | |
<title>cranelift_codegen::regalloc::virtregs::VirtRegs::finish_union_find::hfb24c09a580ec121 (83 samples, 0.12%)</title><rect x="132.5" y="197" width="1.4" height="15.0" fill="rgb(248,79,46)" rx="2" ry="2" /> | |
<text x="135.46" y="207.5" ></text> | |
</g> | |
<g > | |
<title>std::sys::unix::time::inner::Instant::now::h23f1bea5949f1bbd (6 samples, 0.01%)</title><rect x="1166.4" y="261" width="0.1" height="15.0" fill="rgb(215,113,4)" rx="2" ry="2" /> | |
<text x="1169.42" y="271.5" ></text> | |
</g> | |
<g > | |
<title>cranelift_codegen::context::Context::new::hb2c1be51d6979949 (141 samples, 0.20%)</title><rect x="176.2" y="325" width="2.4" height="15.0" fill="rgb(240,182,8)" rx="2" ry="2" /> | |
<text x="179.20" y="335.5" ></text> | |
</g> | |
<g > | |
<title>cranelift_codegen::settings::Builder::lookup::hc6620799f46af882 (33 samples, 0.05%)</title><rect x="355.3" y="293" width="0.5" height="15.0" fill="rgb(239,34,42)" rx="2" ry="2" /> | |
<text x="358.27" y="303.5" ></text> | |
</g> | |
<g > | |
<title>entry_SYSCALL_64_after_hwframe (8 samples, 0.01%)</title><rect x="190.7" y="117" width="0.1" height="15.0" fill="rgb(248,8,51)" rx="2" ry="2" /> | |
<text x="193.68" y="127.5" ></text> | |
</g> | |
<g > | |
<title>_int_malloc (253 samples, 0.36%)</title><rect x="255.7" y="277" width="4.3" height="15.0" fill="rgb(250,38,15)" rx="2" ry="2" /> | |
<text x="258.74" y="287.5" ></text> | |
</g> | |
<g > | |
<title>__GI___libc_realloc (7 samples, 0.01%)</title><rect x="1178.6" y="261" width="0.1" height="15.0" fill="rgb(227,185,14)" rx="2" ry="2" /> | |
<text x="1181.63" y="271.5" ></text> | |
</g> | |
<g > | |
<title>cranelift_codegen::binemit::shrink::shrink_instructions::h2efbaf74a574d406 (578 samples, 0.82%)</title><rect x="27.9" y="293" width="9.7" height="15.0" fill="rgb(231,214,44)" rx="2" ry="2" /> | |
<text x="30.86" y="303.5" ></text> | |
</g> | |
<g > | |
<title>_$LT$rayon..iter..plumbing..bridge..Callback$LT$C$GT$$u20$as$u20$rayon..iter..plumbing..ProducerCallback$LT$I$GT$$GT$::callback::hf4ac68f147f82ab3 (39 samples, 0.06%)</title><rect x="280.7" y="261" width="0.7" height="15.0" fill="rgb(244,11,41)" rx="2" ry="2" /> | |
<text x="283.70" y="271.5" ></text> | |
</g> | |
<g > | |
<title>__GI___libc_realloc (28 samples, 0.04%)</title><rect x="1178.2" y="261" width="0.4" height="15.0" fill="rgb(222,52,13)" rx="2" ry="2" /> | |
<text x="1181.16" y="271.5" ></text> | |
</g> | |
<g > | |
<title>_int_malloc (9 samples, 0.01%)</title><rect x="254.8" y="293" width="0.1" height="15.0" fill="rgb(246,204,12)" rx="2" ry="2" /> | |
<text x="257.77" y="303.5" ></text> | |
</g> | |
<g > | |
<title>std::sys::unix::time::inner::Instant::now::h23f1bea5949f1bbd (6 samples, 0.01%)</title><rect x="135.4" y="181" width="0.1" height="15.0" fill="rgb(205,83,4)" rx="2" ry="2" /> | |
<text x="138.37" y="191.5" ></text> | |
</g> | |
<g > | |
<title>cranelift_bforest::pool::NodePool$LT$F$GT$::alloc_node::h962928eb17e6ebe3 (6 samples, 0.01%)</title><rect x="1167.2" y="101" width="0.1" height="15.0" fill="rgb(224,12,19)" rx="2" ry="2" /> | |
<text x="1170.18" y="111.5" ></text> | |
</g> | |
<g > | |
<title>_$LT$cranelift_codegen..isa..x86..Isa$u20$as$u20$cranelift_codegen..isa..TargetIsa$GT$::flags::h3b25073bf3bf83e7 (9 samples, 0.01%)</title><rect x="126.5" y="213" width="0.2" height="15.0" fill="rgb(246,3,31)" rx="2" ry="2" /> | |
<text x="129.51" y="223.5" ></text> | |
</g> | |
<g > | |
<title>__GI___libc_realloc (10 samples, 0.01%)</title><rect x="1172.7" y="261" width="0.1" height="15.0" fill="rgb(230,4,27)" rx="2" ry="2" /> | |
<text x="1175.66" y="271.5" ></text> | |
</g> | |
<g > | |
<title>cranelift_codegen::ir::dfg::DataFlowGraph::value_type::h7aa315f533b2ea15 (6 samples, 0.01%)</title><rect x="322.0" y="293" width="0.1" height="15.0" fill="rgb(240,63,26)" rx="2" ry="2" /> | |
<text x="324.95" y="303.5" ></text> | |
</g> | |
<g > | |
<title>cranelift_codegen::legalizer::boundary::legalize_signatures::h52a202846af65f87 (50 samples, 0.07%)</title><rect x="1169.5" y="293" width="0.8" height="15.0" fill="rgb(227,90,37)" rx="2" ry="2" /> | |
<text x="1172.47" y="303.5" ></text> | |
</g> | |
<g > | |
<title>__GI___clock_gettime (6 samples, 0.01%)</title><rect x="1162.1" y="229" width="0.1" height="15.0" fill="rgb(218,154,16)" rx="2" ry="2" /> | |
<text x="1165.13" y="239.5" ></text> | |
</g> | |
<g > | |
<title>std::time::Instant::now::h33d2ba6042def2d2 (9 samples, 0.01%)</title><rect x="1159.3" y="245" width="0.2" height="15.0" fill="rgb(233,170,6)" rx="2" ry="2" /> | |
<text x="1162.34" y="255.5" ></text> | |
</g> | |
<g > | |
<title>unmap_page_range (48 samples, 0.07%)</title><rect x="230.6" y="165" width="0.8" height="15.0" fill="rgb(226,228,14)" rx="2" ry="2" /> | |
<text x="233.57" y="175.5" ></text> | |
</g> | |
<g > | |
<title>rocinante::stoke::CandidateFunc::to_func_body::h165b92686588e7a9 (40 samples, 0.06%)</title><rect x="200.3" y="229" width="0.7" height="15.0" fill="rgb(226,198,26)" rx="2" ry="2" /> | |
<text x="203.32" y="239.5" ></text> | |
</g> | |
<g > | |
<title>vm_munmap (10 samples, 0.01%)</title><rect x="189.5" y="85" width="0.2" height="15.0" fill="rgb(225,66,29)" rx="2" ry="2" /> | |
<text x="192.49" y="95.5" ></text> | |
</g> | |
<g > | |
<title>std::sys::unix::time::inner::Instant::now::h23f1bea5949f1bbd (8 samples, 0.01%)</title><rect x="101.0" y="149" width="0.1" height="15.0" fill="rgb(231,201,31)" rx="2" ry="2" /> | |
<text x="103.98" y="159.5" ></text> | |
</g> | |
<g > | |
<title>_int_malloc (13 samples, 0.02%)</title><rect x="1172.8" y="229" width="0.2" height="15.0" fill="rgb(210,126,2)" rx="2" ry="2" /> | |
<text x="1175.83" y="239.5" ></text> | |
</g> | |
<g > | |
<title>cranelift_codegen::regalloc::context::Context::clear::h0291bd2ef9522314 (8 samples, 0.01%)</title><rect x="313.8" y="293" width="0.1" height="15.0" fill="rgb(232,132,20)" rx="2" ry="2" /> | |
<text x="316.81" y="303.5" ></text> | |
</g> | |
<g > | |
<title>alloc::raw_vec::RawVec$LT$T$C$A$GT$::reserve::hd6c8f26eb3c9fb4b (13 samples, 0.02%)</title><rect x="158.7" y="197" width="0.3" height="15.0" fill="rgb(220,64,18)" rx="2" ry="2" /> | |
<text x="161.74" y="207.5" ></text> | |
</g> | |
<g > | |
<title>do_syscall_64 (372 samples, 0.53%)</title><rect x="290.2" y="261" width="6.3" height="15.0" fill="rgb(231,197,44)" rx="2" ry="2" /> | |
<text x="293.20" y="271.5" ></text> | |
</g> | |
<g > | |
<title>alloc::raw_vec::RawVec$LT$T$C$A$GT$::reserve::h5e34cfad90a6ce21 (9 samples, 0.01%)</title><rect x="115.1" y="213" width="0.2" height="15.0" fill="rgb(208,71,44)" rx="2" ry="2" /> | |
<text x="118.12" y="223.5" ></text> | |
</g> | |
<g > | |
<title>cranelift_codegen::ir::builder::InstBuilder::ifcmp_imm::h300e825ec84d98ef (11 samples, 0.02%)</title><rect x="88.1" y="149" width="0.1" height="15.0" fill="rgb(250,196,6)" rx="2" ry="2" /> | |
<text x="91.06" y="159.5" ></text> | |
</g> | |
<g > | |
<title>cranelift_codegen::legalizer::expand::hc4ef15636e9956ca (28 samples, 0.04%)</title><rect x="89.8" y="149" width="0.5" height="15.0" fill="rgb(239,182,2)" rx="2" ry="2" /> | |
<text x="92.80" y="159.5" ></text> | |
</g> | |
<g > | |
<title>std::time::Instant::now::h33d2ba6042def2d2 (11 samples, 0.02%)</title><rect x="1153.8" y="229" width="0.2" height="15.0" fill="rgb(207,33,23)" rx="2" ry="2" /> | |
<text x="1156.81" y="239.5" ></text> | |
</g> | |
<g > | |
<title>_int_malloc (25 samples, 0.04%)</title><rect x="1171.7" y="229" width="0.4" height="15.0" fill="rgb(216,112,8)" rx="2" ry="2" /> | |
<text x="1174.72" y="239.5" ></text> | |
</g> | |
<g > | |
<title>perf_iterate_sb (257 samples, 0.37%)</title><rect x="340.0" y="181" width="4.3" height="15.0" fill="rgb(222,227,10)" rx="2" ry="2" /> | |
<text x="343.00" y="191.5" ></text> | |
</g> | |
<g > | |
<title>_int_malloc (12 samples, 0.02%)</title><rect x="819.2" y="309" width="0.2" height="15.0" fill="rgb(227,176,32)" rx="2" ry="2" /> | |
<text x="822.21" 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 (14 samples, 0.02%)</title><rect x="199.5" y="213" width="0.2" height="15.0" fill="rgb(226,153,36)" rx="2" ry="2" /> | |
<text x="202.51" y="223.5" ></text> | |
</g> | |
<g > | |
<title>alloc::borrow::Cow$LT$B$GT$::to_mut::h2ad6d2b639bc919b (32 samples, 0.05%)</title><rect x="83.3" y="149" width="0.6" height="15.0" fill="rgb(249,171,9)" rx="2" ry="2" /> | |
<text x="86.34" y="159.5" ></text> | |
</g> | |
<g > | |
<title>kmem_cache_alloc (15 samples, 0.02%)</title><rect x="224.6" y="197" width="0.2" height="15.0" fill="rgb(212,2,46)" rx="2" ry="2" /> | |
<text x="227.58" y="207.5" ></text> | |
</g> | |
<g > | |
<title>cranelift_codegen::ir::instructions::InstructionData::arguments::h70ecdef19e20b02a (9 samples, 0.01%)</title><rect x="112.5" y="213" width="0.1" height="15.0" fill="rgb(224,225,13)" rx="2" ry="2" /> | |
<text x="115.50" y="223.5" ></text> | |
</g> | |
<g > | |
<title>__memcpy_avx_unaligned (64 samples, 0.09%)</title><rect x="665.6" y="293" width="1.1" height="15.0" fill="rgb(219,27,10)" rx="2" ry="2" /> | |
<text x="668.59" y="303.5" ></text> | |
</g> | |
<g > | |
<title>__GI___libc_realloc (15 samples, 0.02%)</title><rect x="1173.7" y="245" width="0.3" height="15.0" fill="rgb(226,119,20)" rx="2" ry="2" /> | |
<text x="1176.72" y="255.5" ></text> | |
</g> | |
<g > | |
<title>_int_realloc (8 samples, 0.01%)</title><rect x="298.2" y="245" width="0.1" height="15.0" fill="rgb(226,12,6)" rx="2" ry="2" /> | |
<text x="301.16" y="255.5" ></text> | |
</g> | |
<g > | |
<title>_int_malloc (12 samples, 0.02%)</title><rect x="193.7" y="133" width="0.2" height="15.0" fill="rgb(244,182,25)" rx="2" ry="2" /> | |
<text x="196.69" y="143.5" ></text> | |
</g> | |
<g > | |
<title>perf_event_mmap_output (46 samples, 0.07%)</title><rect x="352.8" y="117" width="0.8" height="15.0" fill="rgb(244,164,14)" rx="2" ry="2" /> | |
<text x="355.79" y="127.5" ></text> | |
</g> | |
<g > | |
<title>__GI___libc_malloc (13 samples, 0.02%)</title><rect x="1167.9" y="181" width="0.3" height="15.0" fill="rgb(219,79,39)" rx="2" ry="2" /> | |
<text x="1170.94" y="191.5" ></text> | |
</g> | |
<g > | |
<title>alloc::raw_vec::RawVec$LT$T$C$A$GT$::reserve::hea3f43976955e3d2 (15 samples, 0.02%)</title><rect x="45.6" y="277" width="0.3" height="15.0" fill="rgb(212,139,20)" rx="2" ry="2" /> | |
<text x="48.60" y="287.5" ></text> | |
</g> | |
<g > | |
<title>alloc::collections::btree::map::BTreeMap$LT$K$C$V$GT$::iter::h6fa8e4f84b7a5cc2 (7 samples, 0.01%)</title><rect x="315.0" y="277" width="0.1" height="15.0" fill="rgb(249,16,47)" rx="2" ry="2" /> | |
<text x="318.02" y="287.5" ></text> | |
</g> | |
<g > | |
<title>rocinante::stoke::CandidateFunc::get_binary::h08e8585b39f70dc8 (12,509 samples, 17.83%)</title><rect x="887.3" y="405" width="210.4" height="15.0" fill="rgb(231,176,21)" rx="2" ry="2" /> | |
<text x="890.31" y="415.5" >rocinante::stoke::Candidate..</text> | |
</g> | |
<g > | |
<title>std::time::Instant::elapsed::h8e307314b2acf9be (14 samples, 0.02%)</title><rect x="158.2" y="181" width="0.3" height="15.0" fill="rgb(210,224,32)" rx="2" ry="2" /> | |
<text x="161.22" y="191.5" ></text> | |
</g> | |
<g > | |
<title>cranelift_codegen::regalloc::liveness::get_or_create::h5a0d21740424a6d5 (35 samples, 0.05%)</title><rect x="1178.2" y="309" width="0.5" height="15.0" fill="rgb(248,42,20)" rx="2" ry="2" /> | |
<text x="1181.16" y="319.5" ></text> | |
</g> | |
<g > | |
<title>libc_feholdsetround_sse_ctx (24 samples, 0.03%)</title><rect x="885.2" y="373" width="0.4" height="15.0" fill="rgb(228,43,42)" rx="2" ry="2" /> | |
<text x="888.25" y="383.5" ></text> | |
</g> | |
<g > | |
<title>malloc_consolidate (214 samples, 0.30%)</title><rect x="256.4" y="261" width="3.6" height="15.0" fill="rgb(251,67,25)" rx="2" ry="2" /> | |
<text x="259.38" y="271.5" ></text> | |
</g> | |
<g > | |
<title>hashbrown::raw::capacity_to_buckets::hf5c44c5afd412277 (38 samples, 0.05%)</title><rect x="659.8" y="261" width="0.6" height="15.0" fill="rgb(205,156,43)" rx="2" ry="2" /> | |
<text x="662.78" y="271.5" ></text> | |
</g> | |
<g > | |
<title>__GI___libc_malloc (6 samples, 0.01%)</title><rect x="1168.3" y="181" width="0.1" height="15.0" fill="rgb(245,108,15)" rx="2" ry="2" /> | |
<text x="1171.34" y="191.5" ></text> | |
</g> | |
<g > | |
<title>_ZN17cranelift_codegen9flowgraph16ControlFlowGraph11compute_ebb17he662711fe9d10399E.llvm.15195122248153170019 (17 samples, 0.02%)</title><rect x="1167.0" y="149" width="0.3" height="15.0" fill="rgb(254,57,22)" rx="2" ry="2" /> | |
<text x="1169.99" y="159.5" ></text> | |
</g> | |
<g > | |
<title>alloc::raw_vec::RawVec$LT$T$C$A$GT$::reserve::h0c445b41f7c28667 (7 samples, 0.01%)</title><rect x="1168.7" y="165" width="0.2" height="15.0" fill="rgb(211,123,13)" rx="2" ry="2" /> | |
<text x="1171.74" y="175.5" ></text> | |
</g> | |
<g > | |
<title>__memcpy_avx_unaligned (41 samples, 0.06%)</title><rect x="249.3" y="325" width="0.7" height="15.0" fill="rgb(240,118,29)" rx="2" ry="2" /> | |
<text x="252.30" y="335.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="51.5" y="261" width="0.1" height="15.0" fill="rgb(249,53,3)" rx="2" ry="2" /> | |
<text x="54.47" y="271.5" ></text> | |
</g> | |
<g > | |
<title>cranelift_codegen::regalloc::solver::Solver::reassign_in::h4635b38f4d433603 (25 samples, 0.04%)</title><rect x="142.6" y="181" width="0.4" height="15.0" fill="rgb(214,38,47)" rx="2" ry="2" /> | |
<text x="145.62" y="191.5" ></text> | |
</g> | |
<g > | |
<title>_ZN4core5slice4sort7recurse17h72b9e9096f9d194bE.llvm.15195122248153170019 (8 samples, 0.01%)</title><rect x="1179.4" y="309" width="0.1" height="15.0" fill="rgb(211,98,35)" rx="2" ry="2" /> | |
<text x="1182.39" y="319.5" ></text> | |
</g> | |
<g > | |
<title>alloc::raw_vec::RawVec$LT$T$C$A$GT$::reserve::h156c4ca9e87e66cc (10 samples, 0.01%)</title><rect x="76.6" y="213" width="0.2" height="15.0" fill="rgb(208,71,46)" rx="2" ry="2" /> | |
<text x="79.63" y="223.5" ></text> | |
</g> | |
<g > | |
<title>cranelift_codegen::regalloc::context::Context::new::h18b3346fa2ea1088 (21 samples, 0.03%)</title><rect x="188.0" y="357" width="0.3" height="15.0" fill="rgb(208,215,28)" rx="2" ry="2" /> | |
<text x="190.99" y="367.5" ></text> | |
</g> | |
<g > | |
<title>wasmer_runtime_core::codegen::validate_with_features::hca6a4340e6d214c2 (25,919 samples, 36.94%)</title><rect x="361.0" y="341" width="435.8" height="15.0" fill="rgb(230,115,9)" rx="2" ry="2" /> | |
<text x="363.97" y="351.5" >wasmer_runtime_core::codegen::validate_with_features::hca6a..</text> | |
</g> | |
<g > | |
<title>__GI___libc_free (16 samples, 0.02%)</title><rect x="196.0" y="149" width="0.3" height="15.0" fill="rgb(229,220,42)" rx="2" ry="2" /> | |
<text x="199.01" y="159.5" ></text> | |
</g> | |
<g > | |
<title>__rdl_alloc (14 samples, 0.02%)</title><rect x="614.2" y="293" width="0.2" height="15.0" fill="rgb(244,9,6)" rx="2" ry="2" /> | |
<text x="617.16" 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 (8 samples, 0.01%)</title><rect x="188.7" y="165" width="0.1" height="15.0" fill="rgb(231,172,2)" rx="2" ry="2" /> | |
<text x="191.71" y="175.5" ></text> | |
</g> | |
<g > | |
<title>std::sys::unix::time::inner::now::ha10452f37b2930c5 (9 samples, 0.01%)</title><rect x="1161.8" y="213" width="0.2" height="15.0" fill="rgb(219,98,43)" rx="2" ry="2" /> | |
<text x="1164.85" y="223.5" ></text> | |
</g> | |
<g > | |
<title>_$LT$cranelift_codegen..timing..details..TimingToken$u20$as$u20$core..ops..drop..Drop$GT$::drop::h1b19c2a93ee0a091 (8 samples, 0.01%)</title><rect x="120.2" y="197" width="0.1" height="15.0" fill="rgb(246,80,3)" rx="2" ry="2" /> | |
<text x="123.17" y="207.5" ></text> | |
</g> | |
<g > | |
<title>_raw_spin_lock (6 samples, 0.01%)</title><rect x="279.0" y="229" width="0.1" height="15.0" fill="rgb(252,40,3)" rx="2" ry="2" /> | |
<text x="281.98" y="239.5" ></text> | |
</g> | |
<g > | |
<title>cranelift_codegen::ir::builder::InstBuilder::x86_push::h21ec220088e6ffaa (37 samples, 0.05%)</title><rect x="22.4" y="245" width="0.7" height="15.0" fill="rgb(254,110,4)" rx="2" ry="2" /> | |
<text x="25.44" y="255.5" ></text> | |
</g> | |
<g > | |
<title>_$LT$alloc..vec..Vec$LT$T$GT$$u20$as$u20$core..clone..Clone$GT$::clone::hc479d58701aa8fb7 (9 samples, 0.01%)</title><rect x="65.1" y="245" width="0.1" height="15.0" fill="rgb(228,205,3)" rx="2" ry="2" /> | |
<text x="68.09" y="255.5" ></text> | |
</g> | |
<g > | |
<title>cranelift_codegen::context::Context::compile_and_emit::h5499205207e7951f (235 samples, 0.33%)</title><rect x="1176.4" y="373" width="4.0" height="15.0" fill="rgb(209,226,36)" rx="2" ry="2" /> | |
<text x="1179.43" y="383.5" ></text> | |
</g> | |
<g > | |
<title>cranelift_codegen::unreachable_code::eliminate_unreachable_code::he5a7c427cf1b37ff (27 samples, 0.04%)</title><rect x="1166.1" y="293" width="0.4" height="15.0" fill="rgb(240,129,48)" rx="2" ry="2" /> | |
<text x="1169.07" y="303.5" ></text> | |
</g> | |
<g > | |
<title>wasmer_runtime_core::sig_registry::SigRegistry::lookup_sig_index::hb06a5506c3dd534f (18 samples, 0.03%)</title><rect x="877.3" y="325" width="0.3" height="15.0" fill="rgb(211,205,11)" rx="2" ry="2" /> | |
<text x="880.26" y="335.5" ></text> | |
</g> | |
<g > | |
<title>cranelift_codegen::ir::instructions::InstructionData::arguments::h70ecdef19e20b02a (9 samples, 0.01%)</title><rect x="91.1" y="165" width="0.1" height="15.0" fill="rgb(247,57,31)" rx="2" ry="2" /> | |
<text x="94.09" y="175.5" ></text> | |
</g> | |
<g > | |
<title>wasmer_clif_backend::trampoline::Trampolines::to_trampoline_cache::h749748cb93becce9 (361 samples, 0.51%)</title><rect x="255.0" y="309" width="6.0" height="15.0" fill="rgb(245,161,24)" rx="2" ry="2" /> | |
<text x="257.97" y="319.5" ></text> | |
</g> | |
<g > | |
<title>cranelift_codegen::regalloc::branch_splitting::run::hbbb4e417c98f8376 (89 samples, 0.13%)</title><rect x="127.8" y="213" width="1.5" height="15.0" fill="rgb(229,96,31)" rx="2" ry="2" /> | |
<text x="130.77" y="223.5" ></text> | |
</g> | |
<g > | |
<title>std::sys::unix::time::inner::now::ha10452f37b2930c5 (10 samples, 0.01%)</title><rect x="54.3" y="213" width="0.1" height="15.0" fill="rgb(225,70,22)" rx="2" ry="2" /> | |
<text x="57.26" y="223.5" ></text> | |
</g> | |
<g > | |
<title>__GI___libc_realloc (36 samples, 0.05%)</title><rect x="96.7" y="149" width="0.6" height="15.0" fill="rgb(233,205,36)" rx="2" ry="2" /> | |
<text x="99.69" y="159.5" ></text> | |
</g> | |
<g > | |
<title>_int_malloc (8 samples, 0.01%)</title><rect x="97.2" y="117" width="0.1" height="15.0" fill="rgb(207,81,52)" rx="2" ry="2" /> | |
<text x="100.16" y="127.5" ></text> | |
</g> | |
<g > | |
<title>_ZN16cranelift_entity4list17ListPool$LT$T$GT$5alloc17h7031e3fd97879e16E.llvm.776987249141506950 (24 samples, 0.03%)</title><rect x="805.6" y="261" width="0.4" height="15.0" fill="rgb(252,122,33)" rx="2" ry="2" /> | |
<text x="808.57" y="271.5" ></text> | |
</g> | |
<g > | |
<title>_int_malloc (8 samples, 0.01%)</title><rect x="1108.0" y="341" width="0.1" height="15.0" fill="rgb(228,142,44)" rx="2" ry="2" /> | |
<text x="1110.95" y="351.5" ></text> | |
</g> | |
<g > | |
<title>cranelift_codegen::regalloc::live_value_tracker::LiveValueTracker::ebb_top::hfe56a550654953ca (7 samples, 0.01%)</title><rect x="55.4" y="277" width="0.1" height="15.0" fill="rgb(242,75,11)" rx="2" ry="2" /> | |
<text x="58.35" y="287.5" ></text> | |
</g> | |
<g > | |
<title>wasmer_runtime_core::codegen::validate_with_features::hca6a4340e6d214c2 (356 samples, 0.51%)</title><rect x="190.9" y="181" width="6.0" height="15.0" fill="rgb(248,25,19)" rx="2" ry="2" /> | |
<text x="193.86" y="191.5" ></text> | |
</g> | |
<g > | |
<title>_ZN17cranelift_codegen9flowgraph16ControlFlowGraph11compute_ebb17he662711fe9d10399E.llvm.15195122248153170019 (15 samples, 0.02%)</title><rect x="1160.2" y="277" width="0.2" height="15.0" fill="rgb(247,67,45)" rx="2" ry="2" /> | |
<text x="1163.18" y="287.5" ></text> | |
</g> | |
<g > | |
<title>cranelift_codegen::simple_preopt::do_preopt::hc14889b432418503 (39 samples, 0.06%)</title><rect x="1165.4" y="293" width="0.7" height="15.0" fill="rgb(235,151,25)" rx="2" ry="2" /> | |
<text x="1168.41" y="303.5" ></text> | |
</g> | |
<g > | |
<title>__vdso_clock_gettime (11 samples, 0.02%)</title><rect x="1158.2" y="181" width="0.2" height="15.0" fill="rgb(234,191,2)" rx="2" ry="2" /> | |
<text x="1161.17" y="191.5" ></text> | |
</g> | |
<g > | |
<title>_$LT$wasmer_runtime_core..types..FuncSig$u20$as$u20$core..hash..Hash$GT$::hash::h1e327e01a11a280a (13 samples, 0.02%)</title><rect x="878.3" y="293" width="0.2" height="15.0" fill="rgb(216,44,2)" rx="2" ry="2" /> | |
<text x="881.25" y="303.5" ></text> | |
</g> | |
<g > | |
<title>cranelift_codegen::context::Context::compile::h9fe1ff28e88fe30f (6,161 samples, 8.78%)</title><rect x="72.4" y="245" width="103.6" height="15.0" fill="rgb(244,23,53)" rx="2" ry="2" /> | |
<text x="75.39" y="255.5" >cranelift_co..</text> | |
</g> | |
<g > | |
<title>find_vma (6 samples, 0.01%)</title><rect x="283.8" y="213" width="0.1" height="15.0" fill="rgb(237,202,46)" rx="2" ry="2" /> | |
<text x="286.83" y="223.5" ></text> | |
</g> | |
<g > | |
<title>alloc::raw_vec::RawVec$LT$T$C$A$GT$::reserve::he459267326f26ce0 (6 samples, 0.01%)</title><rect x="1167.2" y="85" width="0.1" height="15.0" fill="rgb(235,199,9)" rx="2" ry="2" /> | |
<text x="1170.18" y="95.5" ></text> | |
</g> | |
<g > | |
<title>std::panicking::try::do_call::h631c6408dfccc6f5 (736 samples, 1.05%)</title><rect x="189.1" y="325" width="12.3" height="15.0" fill="rgb(233,208,34)" rx="2" ry="2" /> | |
<text x="192.07" y="335.5" ></text> | |
</g> | |
<g > | |
<title>std::time::Instant::now::h33d2ba6042def2d2 (11 samples, 0.02%)</title><rect x="91.7" y="197" width="0.2" height="15.0" fill="rgb(217,30,45)" rx="2" ry="2" /> | |
<text x="94.71" y="207.5" ></text> | |
</g> | |
<g > | |
<title>std::time::Instant::now::h33d2ba6042def2d2 (8 samples, 0.01%)</title><rect x="121.0" y="165" width="0.1" height="15.0" fill="rgb(216,147,39)" rx="2" ry="2" /> | |
<text x="123.97" y="175.5" ></text> | |
</g> | |
<g > | |
<title>cranelift_codegen::isa::lookup::h7750611a3eef7478 (31 samples, 0.04%)</title><rect x="330.0" y="293" width="0.5" height="15.0" fill="rgb(253,8,36)" rx="2" ry="2" /> | |
<text x="333.02" y="303.5" ></text> | |
</g> | |
<g > | |
<title>_$LT$hashbrown..raw..RawTable$LT$T$GT$$u20$as$u20$core..ops..drop..Drop$GT$::drop::hb5680bfddf985f53 (7 samples, 0.01%)</title><rect x="181.7" y="277" width="0.1" height="15.0" fill="rgb(242,146,2)" rx="2" ry="2" /> | |
<text x="184.68" y="287.5" ></text> | |
</g> | |
<g > | |
<title>hashbrown::raw::RawTable$LT$T$GT$::try_with_capacity::h7a6e6bae489d4fe9 (12 samples, 0.02%)</title><rect x="1151.6" y="229" width="0.2" height="15.0" fill="rgb(211,205,47)" rx="2" ry="2" /> | |
<text x="1154.62" y="239.5" ></text> | |
</g> | |
<g > | |
<title>copy_user_enhanced_fast_string (15 samples, 0.02%)</title><rect x="1188.9" y="357" width="0.2" height="15.0" fill="rgb(218,1,3)" rx="2" ry="2" /> | |
<text x="1191.87" y="367.5" ></text> | |
</g> | |
<g > | |
<title>alloc::raw_vec::RawVec$LT$T$C$A$GT$::reserve::h0c445b41f7c28667 (25 samples, 0.04%)</title><rect x="1177.2" y="261" width="0.4" height="15.0" fill="rgb(205,108,2)" rx="2" ry="2" /> | |
<text x="1180.15" y="271.5" ></text> | |
</g> | |
<g > | |
<title>__GI___clock_gettime (12 samples, 0.02%)</title><rect x="24.8" y="197" width="0.2" height="15.0" fill="rgb(239,125,42)" rx="2" ry="2" /> | |
<text x="27.82" y="207.5" ></text> | |
</g> | |
<g > | |
<title>__GI___libc_free (373 samples, 0.53%)</title><rect x="1044.7" y="389" width="6.3" height="15.0" fill="rgb(212,28,6)" rx="2" ry="2" /> | |
<text x="1047.70" y="399.5" ></text> | |
</g> | |
<g > | |
<title>__GI___libc_free (24 samples, 0.03%)</title><rect x="182.7" y="277" width="0.4" height="15.0" fill="rgb(239,110,40)" rx="2" ry="2" /> | |
<text x="185.73" y="287.5" ></text> | |
</g> | |
<g > | |
<title>__GI___sigsetjmp (8 samples, 0.01%)</title><rect x="865.7" y="293" width="0.1" height="15.0" fill="rgb(230,16,33)" rx="2" ry="2" /> | |
<text x="868.71" y="303.5" ></text> | |
</g> | |
<g > | |
<title>cranelift_codegen::ir::dfg::DataFlowGraph::replace_with_aliases::hf72d80b187eea82e (17 samples, 0.02%)</title><rect x="167.9" y="213" width="0.3" height="15.0" fill="rgb(236,72,26)" rx="2" ry="2" /> | |
<text x="170.89" y="223.5" ></text> | |
</g> | |
<g > | |
<title>__memcpy_avx_unaligned (28 samples, 0.04%)</title><rect x="301.2" y="309" width="0.5" height="15.0" fill="rgb(214,168,30)" rx="2" ry="2" /> | |
<text x="304.20" y="319.5" ></text> | |
</g> | |
<g > | |
<title>std::time::Instant::elapsed::h8e307314b2acf9be (8 samples, 0.01%)</title><rect x="1160.9" y="261" width="0.1" height="15.0" fill="rgb(235,77,30)" rx="2" ry="2" /> | |
<text x="1163.87" y="271.5" ></text> | |
</g> | |
<g > | |
<title>wasmer_runtime_core::module::Module::instantiate::h6d7aa260ea24db84 (7 samples, 0.01%)</title><rect x="197.8" y="229" width="0.1" height="15.0" fill="rgb(209,157,52)" rx="2" ry="2" /> | |
<text x="200.76" y="239.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 (6,990 samples, 9.96%)</title><rect x="61.0" y="389" width="117.6" height="15.0" fill="rgb(234,118,20)" rx="2" ry="2" /> | |
<text x="64.02" y="399.5" >rayon::iter::c..</text> | |
</g> | |
<g > | |
<title>cranelift_codegen::regalloc::reload::Reload::run::h05729139e9b4ae44 (181 samples, 0.26%)</title><rect x="152.2" y="213" width="3.0" height="15.0" fill="rgb(253,23,11)" rx="2" ry="2" /> | |
<text x="155.20" y="223.5" ></text> | |
</g> | |
<g > | |
<title>cranelift_entity::sparse::SparseMap$LT$K$C$V$GT$::insert::h7db38de7d591c38a (6 samples, 0.01%)</title><rect x="57.1" y="277" width="0.1" height="15.0" fill="rgb(239,224,15)" rx="2" ry="2" /> | |
<text x="60.09" y="287.5" ></text> | |
</g> | |
<g > | |
<title>__rdl_alloc (8 samples, 0.01%)</title><rect x="676.5" y="277" width="0.1" height="15.0" fill="rgb(223,53,51)" rx="2" ry="2" /> | |
<text x="679.47" y="287.5" ></text> | |
</g> | |
<g > | |
<title>std::time::Instant::elapsed::h8e307314b2acf9be (8 samples, 0.01%)</title><rect x="107.9" y="181" width="0.1" height="15.0" fill="rgb(230,102,1)" rx="2" ry="2" /> | |
<text x="110.89" y="191.5" ></text> | |
</g> | |
<g > | |
<title>std::sys::unix::time::inner::now::ha10452f37b2930c5 (7 samples, 0.01%)</title><rect x="1160.1" y="213" width="0.1" height="15.0" fill="rgb(220,174,14)" rx="2" ry="2" /> | |
<text x="1163.07" y="223.5" ></text> | |
</g> | |
<g > | |
<title>std::sys::unix::time::inner::now::ha10452f37b2930c5 (12 samples, 0.02%)</title><rect x="1165.9" y="245" width="0.2" height="15.0" fill="rgb(209,50,3)" rx="2" ry="2" /> | |
<text x="1168.87" y="255.5" ></text> | |
</g> | |
<g > | |
<title>malloc_consolidate (6 samples, 0.01%)</title><rect x="190.1" y="101" width="0.1" height="15.0" fill="rgb(220,80,29)" rx="2" ry="2" /> | |
<text x="193.11" y="111.5" ></text> | |
</g> | |
<g > | |
<title>std::time::Instant::elapsed::h8e307314b2acf9be (14 samples, 0.02%)</title><rect x="1166.2" y="261" width="0.2" height="15.0" fill="rgb(210,98,12)" rx="2" ry="2" /> | |
<text x="1169.19" y="271.5" ></text> | |
</g> | |
<g > | |
<title>cranelift_codegen::regalloc::coalescing::Coalescing::conventional_ssa::h25e21334b716fc0d (81 samples, 0.12%)</title><rect x="1167.4" y="229" width="1.3" height="15.0" fill="rgb(220,64,24)" rx="2" ry="2" /> | |
<text x="1170.38" y="239.5" ></text> | |
</g> | |
<g > | |
<title>__vdso_clock_gettime (9 samples, 0.01%)</title><rect x="153.5" y="101" width="0.2" height="15.0" fill="rgb(219,122,50)" rx="2" ry="2" /> | |
<text x="156.53" y="111.5" ></text> | |
</g> | |
<g > | |
<title>__GI___libc_malloc (7 samples, 0.01%)</title><rect x="815.9" y="277" width="0.1" height="15.0" fill="rgb(226,220,26)" rx="2" ry="2" /> | |
<text x="818.86" y="287.5" ></text> | |
</g> | |
<g > | |
<title>perf_iterate_sb (137 samples, 0.20%)</title><rect x="293.1" y="149" width="2.3" height="15.0" fill="rgb(253,76,3)" rx="2" ry="2" /> | |
<text x="296.14" y="159.5" ></text> | |
</g> | |
<g > | |
<title>get_sigframe.isra.13.constprop.14 (20 samples, 0.03%)</title><rect x="13.3" y="373" width="0.3" height="15.0" fill="rgb(254,62,34)" rx="2" ry="2" /> | |
<text x="16.31" y="383.5" ></text> | |
</g> | |
<g > | |
<title>std::time::Instant::elapsed::h8e307314b2acf9be (7 samples, 0.01%)</title><rect x="1160.1" y="261" width="0.1" height="15.0" fill="rgb(219,28,3)" rx="2" ry="2" /> | |
<text x="1163.07" y="271.5" ></text> | |
</g> | |
<g > | |
<title>__perf_addr_filters_adjust (136 samples, 0.19%)</title><rect x="337.7" y="165" width="2.3" height="15.0" fill="rgb(214,178,3)" rx="2" ry="2" /> | |
<text x="340.71" y="175.5" ></text> | |
</g> | |
<g > | |
<title>alloc::raw_vec::RawVec$LT$T$C$A$GT$::reserve::hbea2e111e8f00580 (22 samples, 0.03%)</title><rect x="811.7" y="293" width="0.3" height="15.0" fill="rgb(249,128,32)" rx="2" ry="2" /> | |
<text x="814.66" y="303.5" ></text> | |
</g> | |
<g > | |
<title>__vdso_clock_gettime (6 samples, 0.01%)</title><rect x="52.7" y="213" width="0.1" height="15.0" fill="rgb(253,19,45)" rx="2" ry="2" /> | |
<text x="55.71" y="223.5" ></text> | |
</g> | |
<g > | |
<title>c2_chacha::guts::refill_wide::he4343866a1fa78ce (13 samples, 0.02%)</title><rect x="1146.6" y="373" width="0.2" height="15.0" fill="rgb(219,187,41)" rx="2" ry="2" /> | |
<text x="1149.56" y="383.5" ></text> | |
</g> | |
<g > | |
<title>__vdso_clock_gettime (6 samples, 0.01%)</title><rect x="91.8" y="133" width="0.1" height="15.0" fill="rgb(235,214,39)" rx="2" ry="2" /> | |
<text x="94.80" y="143.5" ></text> | |
</g> | |
<g > | |
<title>cranelift_codegen::regalloc::context::Context::run::hacf4bbc8f4d0071a (124 samples, 0.18%)</title><rect x="1167.4" y="245" width="2.1" height="15.0" fill="rgb(232,61,4)" rx="2" ry="2" /> | |
<text x="1170.38" y="255.5" ></text> | |
</g> | |
<g > | |
<title>_ZN78_$LT$parity_wasm..elements..ops..Instruction$u20$as$u20$core..clone..Clone$GT$5clone17hb3781841ab52f338E.llvm.9975108650000548608 (102 samples, 0.15%)</title><rect x="1105.3" y="389" width="1.7" height="15.0" fill="rgb(216,108,11)" rx="2" ry="2" /> | |
<text x="1108.31" y="399.5" ></text> | |
</g> | |
<g > | |
<title>vm_munmap (512 samples, 0.73%)</title><rect x="223.1" y="245" width="8.6" height="15.0" fill="rgb(242,70,13)" rx="2" ry="2" /> | |
<text x="226.14" y="255.5" ></text> | |
</g> | |
<g > | |
<title>__GI___libc_realloc (27 samples, 0.04%)</title><rect x="16.8" y="197" width="0.5" height="15.0" fill="rgb(233,115,31)" rx="2" ry="2" /> | |
<text x="19.84" y="207.5" ></text> | |
</g> | |
<g > | |
<title>__GI___libc_free (11 samples, 0.02%)</title><rect x="798.1" y="309" width="0.2" height="15.0" fill="rgb(213,7,33)" rx="2" ry="2" /> | |
<text x="801.08" y="319.5" ></text> | |
</g> | |
<g > | |
<title>cranelift_codegen::ir::dfg::DataFlowGraph::append_result::h44f9432a950b5ad1 (26 samples, 0.04%)</title><rect x="325.7" y="293" width="0.5" height="15.0" fill="rgb(243,19,22)" rx="2" ry="2" /> | |
<text x="328.74" y="303.5" ></text> | |
</g> | |
<g > | |
<title>cranelift_codegen::regalloc::coalescing::Coalescing::new::ha20f15d9372bd83a (6 samples, 0.01%)</title><rect x="178.0" y="277" width="0.1" height="15.0" fill="rgb(223,89,23)" rx="2" ry="2" /> | |
<text x="180.97" y="287.5" ></text> | |
</g> | |
<g > | |
<title>sched_clock (9 samples, 0.01%)</title><rect x="343.2" y="85" width="0.2" height="15.0" fill="rgb(235,120,18)" rx="2" ry="2" /> | |
<text x="346.22" y="95.5" ></text> | |
</g> | |
<g > | |
<title>std::sys::unix::time::inner::now::ha10452f37b2930c5 (11 samples, 0.02%)</title><rect x="1165.2" y="245" width="0.2" height="15.0" fill="rgb(245,23,49)" rx="2" ry="2" /> | |
<text x="1168.23" y="255.5" ></text> | |
</g> | |
<g > | |
<title>core::num::_$LT$impl$u20$usize$GT$::next_power_of_two::h599a73e6ec7026f3 (21 samples, 0.03%)</title><rect x="660.1" y="245" width="0.3" height="15.0" fill="rgb(233,27,11)" rx="2" ry="2" /> | |
<text x="663.07" y="255.5" ></text> | |
</g> | |
<g > | |
<title>get_unmapped_area (36 samples, 0.05%)</title><rect x="291.5" y="181" width="0.6" height="15.0" fill="rgb(220,188,0)" rx="2" ry="2" /> | |
<text x="294.46" y="191.5" ></text> | |
</g> | |
<g > | |
<title>__munmap (297 samples, 0.42%)</title><rect x="232.1" y="341" width="5.0" height="15.0" fill="rgb(232,140,41)" rx="2" ry="2" /> | |
<text x="235.08" y="351.5" ></text> | |
</g> | |
<g > | |
<title>__memcpy_avx_unaligned (22 samples, 0.03%)</title><rect x="359.6" y="341" width="0.4" height="15.0" fill="rgb(206,177,10)" rx="2" ry="2" /> | |
<text x="362.59" y="351.5" ></text> | |
</g> | |
<g > | |
<title>__GI___libc_realloc (10 samples, 0.01%)</title><rect x="167.3" y="197" width="0.2" height="15.0" fill="rgb(229,26,23)" rx="2" ry="2" /> | |
<text x="170.30" y="207.5" ></text> | |
</g> | |
<g > | |
<title>cranelift_codegen::ir::function::Function::with_name_signature::h3213a13dd838e646 (26 samples, 0.04%)</title><rect x="804.1" y="309" width="0.4" height="15.0" fill="rgb(221,225,26)" rx="2" ry="2" /> | |
<text x="807.09" y="319.5" ></text> | |
</g> | |
<g > | |
<title>alloc::raw_vec::RawVec$LT$T$C$A$GT$::reserve::h5bb4661d248be310 (603 samples, 0.86%)</title><rect x="1004.9" y="357" width="10.1" height="15.0" fill="rgb(245,198,25)" rx="2" ry="2" /> | |
<text x="1007.90" y="367.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 (486 samples, 0.69%)</title><rect x="178.6" y="373" width="8.1" height="15.0" fill="rgb(243,14,46)" rx="2" ry="2" /> | |
<text x="181.57" y="383.5" ></text> | |
</g> | |
<g > | |
<title>fpu__clear (10 samples, 0.01%)</title><rect x="10.9" y="341" width="0.2" height="15.0" fill="rgb(212,6,30)" rx="2" ry="2" /> | |
<text x="13.89" y="351.5" ></text> | |
</g> | |
<g > | |
<title>alloc::raw_vec::RawVec$LT$T$C$A$GT$::reserve::h5e34cfad90a6ce21 (25 samples, 0.04%)</title><rect x="805.1" y="277" width="0.4" height="15.0" fill="rgb(214,8,12)" rx="2" ry="2" /> | |
<text x="808.06" y="287.5" ></text> | |
</g> | |
<g > | |
<title>alloc::raw_vec::RawVec$LT$T$C$A$GT$::reserve::h500ef385b8747b29 (21 samples, 0.03%)</title><rect x="167.1" y="213" width="0.4" height="15.0" fill="rgb(208,195,8)" rx="2" ry="2" /> | |
<text x="170.14" y="223.5" ></text> | |
</g> | |
<g > | |
<title>_ZN17cranelift_codegen8regalloc9diversion13RegDiversions6divert17h0dfdaeead6ef2c57E.llvm.6468024634034730254 (53 samples, 0.08%)</title><rect x="44.7" y="277" width="0.9" height="15.0" fill="rgb(249,60,8)" rx="2" ry="2" /> | |
<text x="47.71" y="287.5" ></text> | |
</g> | |
<g > | |
<title>memcpy_erms (7 samples, 0.01%)</title><rect x="343.0" y="117" width="0.1" height="15.0" fill="rgb(223,79,6)" rx="2" ry="2" /> | |
<text x="345.96" y="127.5" ></text> | |
</g> | |
<g > | |
<title>cranelift_codegen::regalloc::solver::Solver::reassign_in::h4635b38f4d433603 (18 samples, 0.03%)</title><rect x="1172.2" y="277" width="0.3" height="15.0" fill="rgb(214,6,38)" rx="2" ry="2" /> | |
<text x="1175.22" y="287.5" ></text> | |
</g> | |
<g > | |
<title>_$LT$parity_wasm..elements..primitives..CountedListWriter$LT$I$C$T$GT$$u20$as$u20$parity_wasm..elements..Serialize$GT$::serialize::h48f6ec9f48077172 (964 samples, 1.37%)</title><rect x="999.2" y="373" width="16.2" height="15.0" fill="rgb(213,20,51)" rx="2" ry="2" /> | |
<text x="1002.16" y="383.5" ></text> | |
</g> | |
<g > | |
<title>cranelift_codegen::abi::legalize_args::he47515d3a3ad0ee6 (19 samples, 0.03%)</title><rect x="16.2" y="245" width="0.3" height="15.0" fill="rgb(245,197,21)" rx="2" ry="2" /> | |
<text x="19.17" y="255.5" ></text> | |
</g> | |
<g > | |
<title>cranelift_codegen::ir::dfg::DataFlowGraph::append_inst_arg::h0a85602c512eb008 (11 samples, 0.02%)</title><rect x="20.4" y="245" width="0.1" height="15.0" fill="rgb(231,215,17)" rx="2" ry="2" /> | |
<text x="23.36" y="255.5" ></text> | |
</g> | |
<g > | |
<title>std::time::Instant::elapsed::h8e307314b2acf9be (9 samples, 0.01%)</title><rect x="1161.8" y="261" width="0.2" height="15.0" fill="rgb(210,196,25)" rx="2" ry="2" /> | |
<text x="1164.85" y="271.5" ></text> | |
</g> | |
<g > | |
<title>hashbrown::raw::RawTable$LT$T$GT$::reserve_rehash::h145328e315fce2fd (13 samples, 0.02%)</title><rect x="194.5" y="117" width="0.3" height="15.0" fill="rgb(208,90,54)" rx="2" ry="2" /> | |
<text x="197.55" y="127.5" ></text> | |
</g> | |
<g > | |
<title>_int_free (238 samples, 0.34%)</title><rect x="1087.1" y="325" width="4.1" height="15.0" fill="rgb(251,109,41)" rx="2" ry="2" /> | |
<text x="1090.15" y="335.5" ></text> | |
</g> | |
<g > | |
<title>cranelift_codegen::isa::TargetIsa::encode::h3618ddf6ad568ce7 (17 samples, 0.02%)</title><rect x="21.1" y="229" width="0.3" height="15.0" fill="rgb(242,86,37)" rx="2" ry="2" /> | |
<text x="24.07" y="239.5" ></text> | |
</g> | |
<g > | |
<title>__memcpy_avx_unaligned (6 samples, 0.01%)</title><rect x="64.7" y="229" width="0.1" height="15.0" fill="rgb(222,44,9)" rx="2" ry="2" /> | |
<text x="67.70" y="239.5" ></text> | |
</g> | |
<g > | |
<title>wasmparser::parser::Parser::check_section_end::h80796459380c08b2 (34 samples, 0.05%)</title><rect x="816.2" y="293" width="0.6" height="15.0" fill="rgb(232,99,12)" rx="2" ry="2" /> | |
<text x="819.18" y="303.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 (49 samples, 0.07%)</title><rect x="44.8" y="261" width="0.8" height="15.0" fill="rgb(251,160,8)" rx="2" ry="2" /> | |
<text x="47.78" y="271.5" ></text> | |
</g> | |
<g > | |
<title>_ZN17cranelift_codegen8regalloc9diversion13RegDiversions6divert17h0dfdaeead6ef2c57E.llvm.6468024634034730254 (24 samples, 0.03%)</title><rect x="71.7" y="213" width="0.4" height="15.0" fill="rgb(226,40,5)" rx="2" ry="2" /> | |
<text x="74.65" y="223.5" ></text> | |
</g> | |
<g > | |
<title>cranelift_codegen::regalloc::virtregs::VirtRegs::find::h8895455c5ba49bed (6 samples, 0.01%)</title><rect x="133.5" y="181" width="0.1" height="15.0" fill="rgb(239,204,14)" rx="2" ry="2" /> | |
<text x="136.45" y="191.5" ></text> | |
</g> | |
<g > | |
<title>__GI___clock_gettime (7 samples, 0.01%)</title><rect x="112.1" y="133" width="0.1" height="15.0" fill="rgb(246,191,12)" rx="2" ry="2" /> | |
<text x="115.08" y="143.5" ></text> | |
</g> | |
<g > | |
<title>_int_realloc (7 samples, 0.01%)</title><rect x="199.2" y="149" width="0.1" height="15.0" fill="rgb(247,73,9)" rx="2" ry="2" /> | |
<text x="202.17" y="159.5" ></text> | |
</g> | |
<g > | |
<title>alloc::raw_vec::RawVec$LT$T$C$A$GT$::reserve::h5bb4661d248be310 (97 samples, 0.14%)</title><rect x="944.9" y="325" width="1.7" height="15.0" fill="rgb(240,166,17)" rx="2" ry="2" /> | |
<text x="947.93" y="335.5" ></text> | |
</g> | |
<g > | |
<title>alloc::raw_vec::RawVec$LT$T$C$A$GT$::reserve::h362292f8e76d2258 (25 samples, 0.04%)</title><rect x="1107.7" y="373" width="0.4" height="15.0" fill="rgb(211,34,29)" rx="2" ry="2" /> | |
<text x="1110.68" y="383.5" ></text> | |
</g> | |
<g > | |
<title>handle_mm_fault (114 samples, 0.16%)</title><rect x="304.5" y="245" width="1.9" height="15.0" fill="rgb(250,108,19)" rx="2" ry="2" /> | |
<text x="307.46" 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 (581 samples, 0.83%)</title><rect x="178.6" y="421" width="9.7" height="15.0" fill="rgb(244,90,35)" rx="2" ry="2" /> | |
<text x="181.57" y="431.5" ></text> | |
</g> | |
<g > | |
<title>alloc::raw_vec::RawVec$LT$T$C$A$GT$::reserve::h86648d6f1470c78b (562 samples, 0.80%)</title><rect x="605.0" y="309" width="9.5" height="15.0" fill="rgb(211,46,52)" rx="2" ry="2" /> | |
<text x="608.03" y="319.5" ></text> | |
</g> | |
<g > | |
<title>rand::seq::index::sample::h38bee490f9049f66 (1,057 samples, 1.51%)</title><rect x="1123.3" y="373" width="17.8" height="15.0" fill="rgb(211,134,53)" rx="2" ry="2" /> | |
<text x="1126.29" y="383.5" ></text> | |
</g> | |
<g > | |
<title>std::sys::unix::alloc::_$LT$impl$u20$core..alloc..GlobalAlloc$u20$for$u20$std..alloc..System$GT$::alloc::h33585d4e6aad0166 (15 samples, 0.02%)</title><rect x="696.1" y="261" width="0.2" height="15.0" fill="rgb(238,218,51)" rx="2" ry="2" /> | |
<text x="699.06" y="271.5" ></text> | |
</g> | |
<g > | |
<title>_int_malloc (13 samples, 0.02%)</title><rect x="14.1" y="213" width="0.2" height="15.0" fill="rgb(216,89,37)" rx="2" ry="2" /> | |
<text x="17.07" y="223.5" ></text> | |
</g> | |
<g > | |
<title>cranelift_codegen::legalizer::boundary::legalize_signatures::h52a202846af65f87 (158 samples, 0.23%)</title><rect x="14.7" y="277" width="2.7" height="15.0" fill="rgb(207,107,7)" rx="2" ry="2" /> | |
<text x="17.71" y="287.5" ></text> | |
</g> | |
<g > | |
<title>core::ptr::real_drop_in_place::h91ab9e9284da52ab (22 samples, 0.03%)</title><rect x="625.2" y="309" width="0.4" height="15.0" fill="rgb(235,167,40)" rx="2" ry="2" /> | |
<text x="628.24" y="319.5" ></text> | |
</g> | |
<g > | |
<title>std::thread::local::fast::Key$LT$T$GT$::get::h1843b0ce52f9035a (9 samples, 0.01%)</title><rect x="813.4" y="261" width="0.1" height="15.0" fill="rgb(231,96,33)" rx="2" ry="2" /> | |
<text x="816.35" y="271.5" ></text> | |
</g> | |
<g > | |
<title>_$LT$cranelift_codegen..timing..details..TimingToken$u20$as$u20$core..ops..drop..Drop$GT$::drop::h1b19c2a93ee0a091 (19 samples, 0.03%)</title><rect x="119.6" y="213" width="0.3" height="15.0" fill="rgb(223,115,8)" rx="2" ry="2" /> | |
<text x="122.56" y="223.5" ></text> | |
</g> | |
<g > | |
<title>_int_free (7 samples, 0.01%)</title><rect x="321.5" y="229" width="0.1" height="15.0" fill="rgb(252,176,39)" rx="2" ry="2" /> | |
<text x="324.48" y="239.5" ></text> | |
</g> | |
<g > | |
<title>cranelift_codegen::isa::lookup::h7750611a3eef7478 (11 samples, 0.02%)</title><rect x="356.3" y="309" width="0.2" height="15.0" fill="rgb(217,229,7)" rx="2" ry="2" /> | |
<text x="359.32" y="319.5" ></text> | |
</g> | |
<g > | |
<title>__vdso_clock_gettime (8 samples, 0.01%)</title><rect x="24.9" y="181" width="0.1" height="15.0" fill="rgb(239,29,13)" rx="2" ry="2" /> | |
<text x="27.88" y="191.5" ></text> | |
</g> | |
<g > | |
<title>std::time::Instant::now::h33d2ba6042def2d2 (6 samples, 0.01%)</title><rect x="1160.5" y="277" width="0.1" height="15.0" fill="rgb(241,60,46)" rx="2" ry="2" /> | |
<text x="1163.54" y="287.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 (8 samples, 0.01%)</title><rect x="297.4" y="309" width="0.1" height="15.0" fill="rgb(253,29,10)" rx="2" ry="2" /> | |
<text x="300.37" y="319.5" ></text> | |
</g> | |
<g > | |
<title>wasmparser::operators_validator::OperatorValidator::new::hf45e218c5d7c8944 (30 samples, 0.04%)</title><rect x="194.8" y="149" width="0.5" height="15.0" fill="rgb(228,185,45)" rx="2" ry="2" /> | |
<text x="197.77" y="159.5" ></text> | |
</g> | |
<g > | |
<title>std::sys::unix::time::inner::Instant::now::h23f1bea5949f1bbd (8 samples, 0.01%)</title><rect x="1157.5" y="245" width="0.1" height="15.0" fill="rgb(221,109,49)" rx="2" ry="2" /> | |
<text x="1160.46" y="255.5" ></text> | |
</g> | |
<g > | |
<title>__GI___libc_realloc (22 samples, 0.03%)</title><rect x="806.8" y="229" width="0.4" height="15.0" fill="rgb(216,77,50)" rx="2" ry="2" /> | |
<text x="809.80" y="239.5" ></text> | |
</g> | |
<g > | |
<title>free_pgtables (28 samples, 0.04%)</title><rect x="225.7" y="197" width="0.4" height="15.0" fill="rgb(213,38,22)" rx="2" ry="2" /> | |
<text x="228.66" y="207.5" ></text> | |
</g> | |
<g > | |
<title>alloc::raw_vec::RawVec$LT$T$C$A$GT$::reserve::hde4c914cbb5df344 (1,181 samples, 1.68%)</title><rect x="676.8" y="293" width="19.8" height="15.0" fill="rgb(238,93,11)" rx="2" ry="2" /> | |
<text x="679.75" y="303.5" ></text> | |
</g> | |
<g > | |
<title>std::time::Instant::now::h33d2ba6042def2d2 (7 samples, 0.01%)</title><rect x="166.3" y="181" width="0.1" height="15.0" fill="rgb(251,122,51)" rx="2" ry="2" /> | |
<text x="169.33" y="191.5" ></text> | |
</g> | |
<g > | |
<title>split_vma (100 samples, 0.14%)</title><rect x="344.5" y="197" width="1.7" height="15.0" fill="rgb(220,190,27)" rx="2" ry="2" /> | |
<text x="347.50" y="207.5" ></text> | |
</g> | |
<g > | |
<title>std::time::Instant::now::h33d2ba6042def2d2 (7 samples, 0.01%)</title><rect x="38.8" y="293" width="0.1" height="15.0" fill="rgb(230,3,20)" rx="2" ry="2" /> | |
<text x="41.81" y="303.5" ></text> | |
</g> | |
<g > | |
<title>cranelift_codegen::context::Context::compile_and_emit::h5499205207e7951f (2,784 samples, 3.97%)</title><rect x="14.0" y="341" width="46.8" height="15.0" fill="rgb(214,170,30)" rx="2" ry="2" /> | |
<text x="16.95" y="351.5" >cran..</text> | |
</g> | |
<g > | |
<title>_ZN16cranelift_entity4list17ListPool$LT$T$GT$5alloc17h7031e3fd97879e16E.llvm.776987249141506950 (8 samples, 0.01%)</title><rect x="133.7" y="165" width="0.1" height="15.0" fill="rgb(251,42,41)" rx="2" ry="2" /> | |
<text x="136.69" y="175.5" ></text> | |
</g> | |
<g > | |
<title>__GI___libc_free (11 samples, 0.02%)</title><rect x="281.4" y="277" width="0.1" height="15.0" fill="rgb(229,96,4)" rx="2" ry="2" /> | |
<text x="284.36" y="287.5" ></text> | |
</g> | |
<g > | |
<title>std::time::Instant::now::h33d2ba6042def2d2 (6 samples, 0.01%)</title><rect x="122.9" y="213" width="0.1" height="15.0" fill="rgb(225,134,36)" rx="2" ry="2" /> | |
<text x="125.94" y="223.5" ></text> | |
</g> | |
<g > | |
<title>cranelift_codegen::binemit::emit_function::hcd450d74712a091f (254 samples, 0.36%)</title><rect x="314.4" y="293" width="4.3" height="15.0" fill="rgb(226,60,34)" rx="2" ry="2" /> | |
<text x="317.43" y="303.5" ></text> | |
</g> | |
<g > | |
<title>__GI___libc_malloc (9 samples, 0.01%)</title><rect x="326.5" y="277" width="0.1" height="15.0" fill="rgb(209,1,49)" rx="2" ry="2" /> | |
<text x="329.46" y="287.5" ></text> | |
</g> | |
<g > | |
<title>core::ptr::real_drop_in_place::ha9979247d500aa5e (6 samples, 0.01%)</title><rect x="253.1" y="325" width="0.1" height="15.0" fill="rgb(241,17,10)" rx="2" ry="2" /> | |
<text x="256.07" y="335.5" ></text> | |
</g> | |
<g > | |
<title>sched_clock (8 samples, 0.01%)</title><rect x="268.2" y="85" width="0.2" height="15.0" fill="rgb(220,151,6)" rx="2" ry="2" /> | |
<text x="271.24" y="95.5" ></text> | |
</g> | |
<g > | |
<title>_int_realloc (10 samples, 0.01%)</title><rect x="320.9" y="229" width="0.2" height="15.0" fill="rgb(210,45,30)" rx="2" ry="2" /> | |
<text x="323.93" y="239.5" ></text> | |
</g> | |
<g > | |
<title>__rust_alloc (6 samples, 0.01%)</title><rect x="1014.9" y="341" width="0.1" height="15.0" fill="rgb(254,98,47)" rx="2" ry="2" /> | |
<text x="1017.94" y="351.5" ></text> | |
</g> | |
<g > | |
<title>__memcpy_avx_unaligned (31 samples, 0.04%)</title><rect x="185.7" y="309" width="0.5" height="15.0" fill="rgb(237,41,27)" rx="2" ry="2" /> | |
<text x="188.68" y="319.5" ></text> | |
</g> | |
<g > | |
<title>alloc::raw_vec::RawVec$LT$T$C$A$GT$::reserve::h500ef385b8747b29 (14 samples, 0.02%)</title><rect x="131.4" y="181" width="0.2" height="15.0" fill="rgb(234,44,49)" rx="2" ry="2" /> | |
<text x="134.38" y="191.5" ></text> | |
</g> | |
<g > | |
<title>std::sys::unix::time::inner::now::ha10452f37b2930c5 (7 samples, 0.01%)</title><rect x="166.3" y="149" width="0.1" height="15.0" fill="rgb(212,54,21)" rx="2" ry="2" /> | |
<text x="169.33" y="159.5" ></text> | |
</g> | |
<g > | |
<title>std::time::Instant::now::h33d2ba6042def2d2 (18 samples, 0.03%)</title><rect x="116.7" y="213" width="0.3" height="15.0" fill="rgb(221,73,16)" rx="2" ry="2" /> | |
<text x="119.69" y="223.5" ></text> | |
</g> | |
<g > | |
<title>std::sys::unix::time::inner::now::ha10452f37b2930c5 (6 samples, 0.01%)</title><rect x="124.3" y="149" width="0.1" height="15.0" fill="rgb(208,20,25)" rx="2" ry="2" /> | |
<text x="127.32" y="159.5" ></text> | |
</g> | |
<g > | |
<title>__GI___libc_malloc (19 samples, 0.03%)</title><rect x="279.8" y="293" width="0.3" height="15.0" fill="rgb(225,216,34)" rx="2" ry="2" /> | |
<text x="282.77" 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 (414 samples, 0.59%)</title><rect x="1169.5" y="405" width="6.9" height="15.0" fill="rgb(205,61,3)" rx="2" ry="2" /> | |
<text x="1172.47" y="415.5" ></text> | |
</g> | |
<g > | |
<title>entry_SYSCALL_64_after_hwframe (530 samples, 0.76%)</title><rect x="261.4" y="277" width="9.0" height="15.0" fill="rgb(208,201,43)" rx="2" ry="2" /> | |
<text x="264.44" y="287.5" ></text> | |
</g> | |
<g > | |
<title>__GI___libc_malloc (14 samples, 0.02%)</title><rect x="1152.1" y="261" width="0.3" height="15.0" fill="rgb(205,141,54)" rx="2" ry="2" /> | |
<text x="1155.13" y="271.5" ></text> | |
</g> | |
<g > | |
<title>do_syscall_64 (537 samples, 0.77%)</title><rect x="222.8" y="277" width="9.0" height="15.0" fill="rgb(249,46,27)" rx="2" ry="2" /> | |
<text x="225.78" y="287.5" ></text> | |
</g> | |
<g > | |
<title>cranelift_codegen::settings::builder::he3e45f2b2c57aae6 (14 samples, 0.02%)</title><rect x="356.6" y="309" width="0.3" height="15.0" fill="rgb(235,16,51)" rx="2" ry="2" /> | |
<text x="359.64" y="319.5" ></text> | |
</g> | |
<g > | |
<title>_int_malloc (11 samples, 0.02%)</title><rect x="83.5" y="117" width="0.2" height="15.0" fill="rgb(218,154,28)" rx="2" ry="2" /> | |
<text x="86.54" y="127.5" ></text> | |
</g> | |
<g > | |
<title>alloc::raw_vec::RawVec$LT$T$C$A$GT$::reserve::ha898170dd69782a8 (17 samples, 0.02%)</title><rect x="810.3" y="277" width="0.3" height="15.0" fill="rgb(213,19,19)" rx="2" ry="2" /> | |
<text x="813.28" y="287.5" ></text> | |
</g> | |
<g > | |
<title>wasmparser::binary_reader::BinaryReader::read_section_header::h81c8f9a3c6efd252 (18 samples, 0.03%)</title><rect x="817.3" y="261" width="0.3" height="15.0" fill="rgb(251,227,1)" rx="2" ry="2" /> | |
<text x="820.27" y="271.5" ></text> | |
</g> | |
<g > | |
<title>wasmer_runtime_core::sys::unix::memory::Memory::protect::hc4dfd0a2abe36912 (1,002 samples, 1.43%)</title><rect x="331.4" y="309" width="16.8" height="15.0" fill="rgb(234,135,40)" rx="2" ry="2" /> | |
<text x="334.35" y="319.5" ></text> | |
</g> | |
<g > | |
<title>c2_chacha::guts::refill_wide::he4343866a1fa78ce (81 samples, 0.12%)</title><rect x="885.6" y="405" width="1.4" height="15.0" fill="rgb(232,2,8)" rx="2" ry="2" /> | |
<text x="888.65" y="415.5" ></text> | |
</g> | |
<g > | |
<title>wasmer_clif_backend::resolver::FuncResolverBuilder::new::h17aa56962b53b260 (486 samples, 0.69%)</title><rect x="178.6" y="405" width="8.1" height="15.0" fill="rgb(254,219,33)" rx="2" ry="2" /> | |
<text x="181.57" y="415.5" ></text> | |
</g> | |
<g > | |
<title>page_fault (231 samples, 0.33%)</title><rect x="275.5" y="293" width="3.9" height="15.0" fill="rgb(213,131,31)" rx="2" ry="2" /> | |
<text x="278.49" y="303.5" ></text> | |
</g> | |
<g > | |
<title>cranelift_codegen::regalloc::live_value_tracker::LiveValueTracker::process_inst::hcd4ba6fb549516b2 (34 samples, 0.05%)</title><rect x="143.0" y="197" width="0.6" height="15.0" fill="rgb(220,205,30)" rx="2" ry="2" /> | |
<text x="146.04" y="207.5" ></text> | |
</g> | |
<g > | |
<title>__memcpy_avx_unaligned (295 samples, 0.42%)</title><rect x="946.7" y="341" width="5.0" height="15.0" fill="rgb(253,108,48)" rx="2" ry="2" /> | |
<text x="949.71" y="351.5" ></text> | |
</g> | |
<g > | |
<title>wasmparser::binary_reader::BinaryReader::read_var_u32::h9f3e844d80d20a5e (7 samples, 0.01%)</title><rect x="816.1" y="293" width="0.1" height="15.0" fill="rgb(252,216,46)" rx="2" ry="2" /> | |
<text x="819.06" y="303.5" ></text> | |
</g> | |
<g > | |
<title>hashbrown::raw::bucket_mask_to_capacity::hff8682455bc98726 (20 samples, 0.03%)</title><rect x="659.4" y="261" width="0.4" height="15.0" fill="rgb(229,162,24)" rx="2" ry="2" /> | |
<text x="662.45" y="271.5" ></text> | |
</g> | |
<g > | |
<title>cranelift_entity::list::EntityList$LT$T$GT$::push::h051541d55e7ee057 (50 samples, 0.07%)</title><rect x="323.5" y="293" width="0.9" height="15.0" fill="rgb(247,199,9)" rx="2" ry="2" /> | |
<text x="326.53" y="303.5" ></text> | |
</g> | |
<g > | |
<title>std::sys::unix::time::inner::Instant::now::h23f1bea5949f1bbd (7 samples, 0.01%)</title><rect x="112.9" y="197" width="0.1" height="15.0" fill="rgb(214,94,45)" rx="2" ry="2" /> | |
<text x="115.90" y="207.5" ></text> | |
</g> | |
<g > | |
<title>__GI___clock_gettime (7 samples, 0.01%)</title><rect x="1165.7" y="197" width="0.2" height="15.0" fill="rgb(235,128,22)" rx="2" ry="2" /> | |
<text x="1168.73" y="207.5" ></text> | |
</g> | |
<g > | |
<title>cranelift_codegen::ir::instructions::InstructionData::arguments::h70ecdef19e20b02a (12 samples, 0.02%)</title><rect x="46.8" y="277" width="0.2" height="15.0" fill="rgb(218,145,8)" rx="2" ry="2" /> | |
<text x="49.81" y="287.5" ></text> | |
</g> | |
<g > | |
<title>_int_realloc (283 samples, 0.40%)</title><rect x="981.6" y="309" width="4.8" height="15.0" fill="rgb(206,73,11)" rx="2" ry="2" /> | |
<text x="984.64" y="319.5" ></text> | |
</g> | |
<g > | |
<title>__vma_adjust (30 samples, 0.04%)</title><rect x="344.6" y="165" width="0.5" height="15.0" fill="rgb(208,24,2)" rx="2" ry="2" /> | |
<text x="347.62" y="175.5" ></text> | |
</g> | |
<g > | |
<title>sys_rt_sigprocmask (83 samples, 0.12%)</title><rect x="1188.2" y="373" width="1.4" height="15.0" fill="rgb(253,191,37)" rx="2" ry="2" /> | |
<text x="1191.17" y="383.5" ></text> | |
</g> | |
<g > | |
<title>alloc_pages_vma (46 samples, 0.07%)</title><rect x="304.8" y="213" width="0.8" height="15.0" fill="rgb(222,50,54)" rx="2" ry="2" /> | |
<text x="307.82" y="223.5" ></text> | |
</g> | |
<g > | |
<title>cranelift_codegen::ir::builder::InstBuilder::copy::h9316b7c9ced6bd9c (39 samples, 0.06%)</title><rect x="159.1" y="197" width="0.7" height="15.0" fill="rgb(243,142,19)" rx="2" ry="2" /> | |
<text x="162.15" y="207.5" ></text> | |
</g> | |
<g > | |
<title>cranelift_codegen::ir::instructions::InstructionData::typevar_operand::hbf9a7e821f2ceac3 (7 samples, 0.01%)</title><rect x="109.1" y="181" width="0.1" height="15.0" fill="rgb(242,147,15)" rx="2" ry="2" /> | |
<text x="112.08" y="191.5" ></text> | |
</g> | |
<g > | |
<title>copy_user_generic_unrolled (26 samples, 0.04%)</title><rect x="1189.1" y="357" width="0.5" height="15.0" fill="rgb(240,178,1)" rx="2" ry="2" /> | |
<text x="1192.13" y="367.5" ></text> | |
</g> | |
<g > | |
<title>[[vdso]] (6 samples, 0.01%)</title><rect x="116.9" y="133" width="0.1" height="15.0" fill="rgb(215,63,17)" rx="2" ry="2" /> | |
<text x="119.89" y="143.5" ></text> | |
</g> | |
<g > | |
<title>wasmer_clif_backend::resolver::FuncResolverBuilder::new::h17aa56962b53b260 (1,554 samples, 2.21%)</title><rect x="270.4" y="325" width="26.1" height="15.0" fill="rgb(253,56,44)" rx="2" ry="2" /> | |
<text x="273.37" y="335.5" >w..</text> | |
</g> | |
<g > | |
<title>wasmer_runtime_core::instance::Instance::new::h767b5a62d9ac8288 (7 samples, 0.01%)</title><rect x="197.8" y="213" width="0.1" height="15.0" fill="rgb(226,224,1)" rx="2" ry="2" /> | |
<text x="200.76" y="223.5" ></text> | |
</g> | |
<g > | |
<title>alloc::raw_vec::RawVec$LT$T$C$A$GT$::reserve::h02503ac3a628c0ac (49 samples, 0.07%)</title><rect x="1172.8" y="261" width="0.9" height="15.0" fill="rgb(249,108,33)" rx="2" ry="2" /> | |
<text x="1175.83" y="271.5" ></text> | |
</g> | |
<g > | |
<title>cranelift_codegen::context::Context::prologue_epilogue::he7fad23bcfb5a3af (166 samples, 0.24%)</title><rect x="1154.8" y="293" width="2.8" height="15.0" fill="rgb(207,85,29)" rx="2" ry="2" /> | |
<text x="1157.80" y="303.5" ></text> | |
</g> | |
<g > | |
<title>_$LT$parity_wasm..elements..func..FuncBody$u20$as$u20$parity_wasm..elements..Serialize$GT$::serialize::h6e9e4c32eabcc851 (127 samples, 0.18%)</title><rect x="198.0" y="229" width="2.2" height="15.0" fill="rgb(224,111,5)" rx="2" ry="2" /> | |
<text x="201.05" y="239.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$::backend_id::h6f67541285ab999f (9 samples, 0.01%)</title><rect x="247.2" y="341" width="0.1" height="15.0" fill="rgb(227,48,4)" rx="2" ry="2" /> | |
<text x="250.17" y="351.5" ></text> | |
</g> | |
<g > | |
<title>target_lexicon::triple::Triple::default_calling_convention::h46ded6bffc2cd386 (8 samples, 0.01%)</title><rect x="327.2" y="293" width="0.1" height="15.0" fill="rgb(246,196,18)" rx="2" ry="2" /> | |
<text x="330.21" y="303.5" ></text> | |
</g> | |
<g > | |
<title>release_pages (10 samples, 0.01%)</title><rect x="227.0" y="149" width="0.2" height="15.0" fill="rgb(234,193,21)" rx="2" ry="2" /> | |
<text x="230.00" y="159.5" ></text> | |
</g> | |
<g > | |
<title>vma_merge (73 samples, 0.10%)</title><rect x="287.6" y="197" width="1.3" height="15.0" fill="rgb(226,160,23)" rx="2" ry="2" /> | |
<text x="290.63" y="207.5" ></text> | |
</g> | |
<g > | |
<title>cranelift_codegen::redundant_reload_remover::RedundantReloadRemover::discovery_stack_push_successors_of::h1d35cd4c4d8172b7 (27 samples, 0.04%)</title><rect x="77.3" y="213" width="0.5" height="15.0" fill="rgb(237,54,47)" rx="2" ry="2" /> | |
<text x="80.32" y="223.5" ></text> | |
</g> | |
<g > | |
<title>__memcpy_avx_unaligned (146 samples, 0.21%)</title><rect x="854.7" y="357" width="2.4" height="15.0" fill="rgb(244,177,25)" rx="2" ry="2" /> | |
<text x="857.66" y="367.5" ></text> | |
</g> | |
<g > | |
<title>do_syscall_64 (266 samples, 0.38%)</title><rect x="232.6" y="309" width="4.5" height="15.0" fill="rgb(219,137,12)" rx="2" ry="2" /> | |
<text x="235.59" y="319.5" ></text> | |
</g> | |
<g > | |
<title>__GI___libc_realloc (12 samples, 0.02%)</title><rect x="1175.4" y="261" width="0.2" height="15.0" fill="rgb(251,119,27)" rx="2" ry="2" /> | |
<text x="1178.35" y="271.5" ></text> | |
</g> | |
<g > | |
<title>hashbrown::raw::RawTable$LT$T$GT$::insert::h1ba60dad4ebe9e0f (17 samples, 0.02%)</title><rect x="194.5" y="133" width="0.3" height="15.0" fill="rgb(211,25,26)" rx="2" ry="2" /> | |
<text x="197.48" y="143.5" ></text> | |
</g> | |
<g > | |
<title>__GI___libc_realloc (17 samples, 0.02%)</title><rect x="321.4" y="261" width="0.2" height="15.0" fill="rgb(234,145,33)" rx="2" ry="2" /> | |
<text x="324.36" y="271.5" ></text> | |
</g> | |
<g > | |
<title>hashbrown::rustc_entry::_$LT$impl$u20$hashbrown..map..HashMap$LT$K$C$V$C$S$GT$$GT$::rustc_entry::h0c810357b190d293 (38 samples, 0.05%)</title><rect x="1147.8" y="261" width="0.7" height="15.0" fill="rgb(209,60,45)" rx="2" ry="2" /> | |
<text x="1150.84" y="271.5" ></text> | |
</g> | |
<g > | |
<title>__perf_event__output_id_sample (7 samples, 0.01%)</title><rect x="352.8" y="101" width="0.1" height="15.0" fill="rgb(240,45,21)" rx="2" ry="2" /> | |
<text x="355.81" y="111.5" ></text> | |
</g> | |
<g > | |
<title>hashbrown::map::make_hash::h9e18b3170aa0c7c4 (367 samples, 0.52%)</title><rect x="635.6" y="293" width="6.1" height="15.0" fill="rgb(247,148,40)" rx="2" ry="2" /> | |
<text x="638.55" 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 (78 samples, 0.11%)</title><rect x="877.2" y="341" width="1.3" height="15.0" fill="rgb(215,180,8)" rx="2" ry="2" /> | |
<text x="880.16" y="351.5" ></text> | |
</g> | |
<g > | |
<title>_ZN81_$LT$std..collections..hash..map..DefaultHasher$u20$as$u20$core..hash..Hasher$GT$5write17hce30e4f96ad2e64eE.llvm.689856235829814499 (12 samples, 0.02%)</title><rect x="860.9" y="325" width="0.2" height="15.0" fill="rgb(208,87,41)" rx="2" ry="2" /> | |
<text x="863.91" y="335.5" ></text> | |
</g> | |
<g > | |
<title>_ZN4core5slice4sort7recurse17h72b9e9096f9d194bE.llvm.15195122248153170019 (6 samples, 0.01%)</title><rect x="59.3" y="277" width="0.1" height="15.0" fill="rgb(237,225,38)" rx="2" ry="2" /> | |
<text x="62.29" y="287.5" ></text> | |
</g> | |
<g > | |
<title>__GI___libc_free (24 samples, 0.03%)</title><rect x="823.6" y="309" width="0.4" height="15.0" fill="rgb(230,218,10)" rx="2" ry="2" /> | |
<text x="826.65" y="319.5" ></text> | |
</g> | |
<g > | |
<title>__memcpy_avx_unaligned (43 samples, 0.06%)</title><rect x="874.6" y="357" width="0.7" height="15.0" fill="rgb(205,93,23)" rx="2" ry="2" /> | |
<text x="877.60" y="367.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 (6,822 samples, 9.72%)</title><rect x="61.4" y="277" width="114.7" height="15.0" fill="rgb(205,72,38)" rx="2" ry="2" /> | |
<text x="64.36" y="287.5" >core::ops::fun..</text> | |
</g> | |
<g > | |
<title>__GI___libc_malloc (10 samples, 0.01%)</title><rect x="809.8" y="277" width="0.1" height="15.0" fill="rgb(213,104,33)" rx="2" ry="2" /> | |
<text x="812.77" y="287.5" ></text> | |
</g> | |
<g > | |
<title>cranelift_codegen::isa::x86::abi::insert_common_epilogues::h86f7f3e925a821fa (106 samples, 0.15%)</title><rect x="19.0" y="261" width="1.8" height="15.0" fill="rgb(211,113,39)" rx="2" ry="2" /> | |
<text x="22.01" y="271.5" ></text> | |
</g> | |
<g > | |
<title>perf_event_mmap (154 samples, 0.22%)</title><rect x="292.9" y="165" width="2.6" height="15.0" fill="rgb(241,89,11)" rx="2" ry="2" /> | |
<text x="295.89" y="175.5" ></text> | |
</g> | |
<g > | |
<title>_$LT$cranelift_codegen..timing..details..TimingToken$u20$as$u20$core..ops..drop..Drop$GT$::drop::h1b19c2a93ee0a091 (12 samples, 0.02%)</title><rect x="38.0" y="277" width="0.2" height="15.0" fill="rgb(225,152,41)" rx="2" ry="2" /> | |
<text x="40.98" y="287.5" ></text> | |
</g> | |
<g > | |
<title>std::time::Instant::now::h33d2ba6042def2d2 (8 samples, 0.01%)</title><rect x="119.7" y="181" width="0.2" height="15.0" fill="rgb(220,4,23)" rx="2" ry="2" /> | |
<text x="122.75" y="191.5" ></text> | |
</g> | |
<g > | |
<title>memcg_kmem_get_cache (7 samples, 0.01%)</title><rect x="350.8" y="149" width="0.1" height="15.0" fill="rgb(231,70,41)" rx="2" ry="2" /> | |
<text x="353.83" y="159.5" ></text> | |
</g> | |
<g > | |
<title>cranelift_codegen::isa::x86::enc_tables::inst_predicate_1::ha7cf0e9b571eae5d (7 samples, 0.01%)</title><rect x="105.9" y="165" width="0.1" height="15.0" fill="rgb(221,21,50)" rx="2" ry="2" /> | |
<text x="108.89" y="175.5" ></text> | |
</g> | |
<g > | |
<title>std::sys::unix::time::inner::Instant::now::h23f1bea5949f1bbd (9 samples, 0.01%)</title><rect x="175.3" y="165" width="0.1" height="15.0" fill="rgb(209,55,51)" rx="2" ry="2" /> | |
<text x="178.26" y="175.5" ></text> | |
</g> | |
<g > | |
<title>cranelift_codegen::regalloc::live_value_tracker::LiveValueTracker::ebb_top::hfe56a550654953ca (10 samples, 0.01%)</title><rect x="49.6" y="293" width="0.2" height="15.0" fill="rgb(210,186,15)" rx="2" ry="2" /> | |
<text x="52.62" y="303.5" ></text> | |
</g> | |
<g > | |
<title>std::time::Instant::now::h33d2ba6042def2d2 (7 samples, 0.01%)</title><rect x="112.1" y="181" width="0.1" height="15.0" fill="rgb(223,14,4)" rx="2" ry="2" /> | |
<text x="115.08" 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 (27 samples, 0.04%)</title><rect x="1151.4" y="261" width="0.4" height="15.0" fill="rgb(233,60,25)" rx="2" ry="2" /> | |
<text x="1154.37" y="271.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 (67 samples, 0.10%)</title><rect x="1104.2" y="389" width="1.1" height="15.0" fill="rgb(208,61,44)" rx="2" ry="2" /> | |
<text x="1107.18" y="399.5" ></text> | |
</g> | |
<g > | |
<title>__rdl_dealloc (13 samples, 0.02%)</title><rect x="1024.9" y="357" width="0.2" height="15.0" fill="rgb(221,90,3)" rx="2" ry="2" /> | |
<text x="1027.93" y="367.5" ></text> | |
</g> | |
<g > | |
<title>_$LT$cranelift_codegen..isa..x86..abi..Args$u20$as$u20$cranelift_codegen..abi..ArgAssigner$GT$::assign::h1ef61b42453724d8 (7 samples, 0.01%)</title><rect x="16.4" y="229" width="0.1" height="15.0" fill="rgb(223,176,23)" rx="2" ry="2" /> | |
<text x="19.36" y="239.5" ></text> | |
</g> | |
<g > | |
<title>__vdso_clock_gettime (10 samples, 0.01%)</title><rect x="1153.8" y="165" width="0.2" height="15.0" fill="rgb(246,154,10)" rx="2" ry="2" /> | |
<text x="1156.83" y="175.5" ></text> | |
</g> | |
<g > | |
<title>alloc::raw_vec::RawVec$LT$T$C$A$GT$::reserve::hea3f43976955e3d2 (13 samples, 0.02%)</title><rect x="49.1" y="261" width="0.2" height="15.0" fill="rgb(221,68,9)" rx="2" ry="2" /> | |
<text x="52.07" y="271.5" ></text> | |
</g> | |
<g > | |
<title>cranelift_codegen::context::Context::compile_and_emit::h5499205207e7951f (1,111 samples, 1.58%)</title><rect x="1147.8" y="325" width="18.7" height="15.0" fill="rgb(248,4,11)" rx="2" ry="2" /> | |
<text x="1150.84" y="335.5" ></text> | |
</g> | |
<g > | |
<title>cranelift_codegen::dominator_tree::DominatorTree::compute::hb8295076ad170b26 (35 samples, 0.05%)</title><rect x="37.8" y="293" width="0.6" height="15.0" fill="rgb(227,13,17)" rx="2" ry="2" /> | |
<text x="40.80" y="303.5" ></text> | |
</g> | |
<g > | |
<title>__GI___libc_malloc (9 samples, 0.01%)</title><rect x="297.9" y="261" width="0.1" height="15.0" fill="rgb(220,140,42)" rx="2" ry="2" /> | |
<text x="300.89" y="271.5" ></text> | |
</g> | |
<g > | |
<title>alloc::sync::Arc$LT$T$GT$::drop_slow::h5338add9120ad023 (1,068 samples, 1.52%)</title><rect x="221.4" y="389" width="18.0" height="15.0" fill="rgb(210,150,15)" rx="2" ry="2" /> | |
<text x="224.40" y="399.5" ></text> | |
</g> | |
<g > | |
<title>wasmer_runtime_core::instance::DynFunc::call::hd3653a4c23d70200 (12 samples, 0.02%)</title><rect x="197.6" y="229" width="0.2" height="15.0" fill="rgb(213,214,48)" rx="2" ry="2" /> | |
<text x="200.56" y="239.5" ></text> | |
</g> | |
<g > | |
<title>wasmparser::validator::ValidatingParser::new::hf8cf84418abf20c9 (1,103 samples, 1.57%)</title><rect x="778.3" y="325" width="18.5" height="15.0" fill="rgb(226,32,14)" rx="2" ry="2" /> | |
<text x="781.29" y="335.5" ></text> | |
</g> | |
<g > | |
<title>alloc::raw_vec::RawVec$LT$T$C$A$GT$::reserve::h5e34cfad90a6ce21 (18 samples, 0.03%)</title><rect x="325.8" y="277" width="0.3" height="15.0" fill="rgb(214,200,35)" rx="2" ry="2" /> | |
<text x="328.80" y="287.5" ></text> | |
</g> | |
<g > | |
<title>__GI___libc_free (23 samples, 0.03%)</title><rect x="185.1" y="261" width="0.4" height="15.0" fill="rgb(239,9,15)" rx="2" ry="2" /> | |
<text x="188.10" y="271.5" ></text> | |
</g> | |
<g > | |
<title>alloc::raw_vec::RawVec$LT$T$C$A$GT$::reserve::h156c4ca9e87e66cc (15 samples, 0.02%)</title><rect x="1152.1" y="277" width="0.3" height="15.0" fill="rgb(223,33,15)" rx="2" ry="2" /> | |
<text x="1155.11" y="287.5" ></text> | |
</g> | |
<g > | |
<title>__GI___clock_gettime (11 samples, 0.02%)</title><rect x="1154.9" y="181" width="0.2" height="15.0" fill="rgb(238,65,45)" rx="2" ry="2" /> | |
<text x="1157.87" y="191.5" ></text> | |
</g> | |
<g > | |
<title>arch_get_unmapped_area_topdown (14 samples, 0.02%)</title><rect x="291.5" y="165" width="0.3" height="15.0" fill="rgb(226,81,43)" rx="2" ry="2" /> | |
<text x="294.55" y="175.5" ></text> | |
</g> | |
<g > | |
<title>std::time::Instant::now::h33d2ba6042def2d2 (10 samples, 0.01%)</title><rect x="163.9" y="197" width="0.2" height="15.0" fill="rgb(228,185,14)" rx="2" ry="2" /> | |
<text x="166.94" y="207.5" ></text> | |
</g> | |
<g > | |
<title>__GI___libc_free (8 samples, 0.01%)</title><rect x="239.7" y="373" width="0.1" height="15.0" fill="rgb(215,207,18)" rx="2" ry="2" /> | |
<text x="242.68" y="383.5" ></text> | |
</g> | |
<g > | |
<title>wasmer_runtime_core::compile_with_config::h2793fe8de72c0bc3 (36,490 samples, 52.00%)</title><rect x="243.5" y="373" width="613.6" height="15.0" fill="rgb(253,176,27)" rx="2" ry="2" /> | |
<text x="246.50" y="383.5" >wasmer_runtime_core::compile_with_config::h2793fe8de72c0bc3</text> | |
</g> | |
<g > | |
<title>_$LT$cranelift_codegen..isa..x86..Isa$u20$as$u20$cranelift_codegen..isa..TargetIsa$GT$::prologue_epilogue::ha0b7830888e212f4 (166 samples, 0.24%)</title><rect x="1154.8" y="277" width="2.8" height="15.0" fill="rgb(229,11,18)" rx="2" ry="2" /> | |
<text x="1157.80" y="287.5" ></text> | |
</g> | |
<g > | |
<title>cranelift_codegen::regalloc::reload::Context::insert_spill::heb310b7f97e05ad2 (38 samples, 0.05%)</title><rect x="1178.7" y="309" width="0.7" height="15.0" fill="rgb(214,98,6)" rx="2" ry="2" /> | |
<text x="1181.75" y="319.5" ></text> | |
</g> | |
<g > | |
<title>page_counter_uncharge (12 samples, 0.02%)</title><rect x="235.3" y="117" width="0.2" height="15.0" fill="rgb(214,64,43)" rx="2" ry="2" /> | |
<text x="238.28" y="127.5" ></text> | |
</g> | |
<g > | |
<title>_int_malloc (265 samples, 0.38%)</title><rect x="1071.0" y="341" width="4.4" height="15.0" fill="rgb(216,84,44)" rx="2" ry="2" /> | |
<text x="1073.95" y="351.5" ></text> | |
</g> | |
<g > | |
<title>_int_malloc (18 samples, 0.03%)</title><rect x="133.0" y="149" width="0.3" height="15.0" fill="rgb(243,124,45)" rx="2" ry="2" /> | |
<text x="135.96" y="159.5" ></text> | |
</g> | |
<g > | |
<title>__GI___clock_gettime (6 samples, 0.01%)</title><rect x="1158.8" y="229" width="0.1" height="15.0" fill="rgb(223,73,0)" rx="2" ry="2" /> | |
<text x="1161.77" y="239.5" ></text> | |
</g> | |
<g > | |
<title>_int_free (8 samples, 0.01%)</title><rect x="21.9" y="197" width="0.1" height="15.0" fill="rgb(215,149,21)" rx="2" ry="2" /> | |
<text x="24.86" y="207.5" ></text> | |
</g> | |
<g > | |
<title>cranelift_codegen::regalloc::solver::Solver::reassign_in::h4635b38f4d433603 (42 samples, 0.06%)</title><rect x="143.8" y="197" width="0.7" height="15.0" fill="rgb(242,21,18)" rx="2" ry="2" /> | |
<text x="146.79" y="207.5" ></text> | |
</g> | |
<g > | |
<title>cranelift_codegen::postopt::do_postopt::hd4075babc8e08dd8 (54 samples, 0.08%)</title><rect x="1161.3" y="293" width="0.9" height="15.0" fill="rgb(228,88,23)" rx="2" ry="2" /> | |
<text x="1164.33" y="303.5" ></text> | |
</g> | |
<g > | |
<title>__libc_start_main (736 samples, 1.05%)</title><rect x="189.1" y="421" width="12.3" height="15.0" fill="rgb(229,7,33)" rx="2" ry="2" /> | |
<text x="192.07" y="431.5" ></text> | |
</g> | |
<g > | |
<title>__GI___libc_malloc (10 samples, 0.01%)</title><rect x="144.0" y="149" width="0.2" height="15.0" fill="rgb(205,154,21)" rx="2" ry="2" /> | |
<text x="147.05" y="159.5" ></text> | |
</g> | |
<g > | |
<title>hashbrown::raw::RawTable$LT$T$GT$::try_with_capacity::h7a6e6bae489d4fe9 (17 samples, 0.02%)</title><rect x="1148.2" y="229" width="0.3" height="15.0" fill="rgb(213,132,15)" rx="2" ry="2" /> | |
<text x="1151.19" y="239.5" ></text> | |
</g> | |
<g > | |
<title>cranelift_codegen::legalizer::legalize_function::h9c05a7523015c4df (90 samples, 0.13%)</title><rect x="1153.3" y="277" width="1.5" height="15.0" fill="rgb(243,42,49)" rx="2" ry="2" /> | |
<text x="1156.29" y="287.5" ></text> | |
</g> | |
<g > | |
<title>core::ptr::real_drop_in_place::h8867d7619d5a1899 (8 samples, 0.01%)</title><rect x="312.7" y="277" width="0.1" height="15.0" fill="rgb(223,59,35)" rx="2" ry="2" /> | |
<text x="315.70" y="287.5" ></text> | |
</g> | |
<g > | |
<title>std::sync::rwlock::RwLock$LT$T$GT$::read::h77a932a23fb2e9de (23 samples, 0.03%)</title><rect x="197.1" y="165" width="0.4" height="15.0" fill="rgb(215,6,43)" rx="2" ry="2" /> | |
<text x="200.09" y="175.5" ></text> | |
</g> | |
<g > | |
<title>__GI___libc_malloc (22 samples, 0.03%)</title><rect x="134.3" y="165" width="0.4" height="15.0" fill="rgb(214,171,9)" rx="2" ry="2" /> | |
<text x="137.34" y="175.5" ></text> | |
</g> | |
<g > | |
<title>std::sys::unix::time::inner::Instant::now::h23f1bea5949f1bbd (9 samples, 0.01%)</title><rect x="1170.8" y="277" width="0.2" height="15.0" fill="rgb(207,167,47)" rx="2" ry="2" /> | |
<text x="1173.83" y="287.5" ></text> | |
</g> | |
<g > | |
<title>_int_realloc (11 samples, 0.02%)</title><rect x="71.4" y="165" width="0.2" height="15.0" fill="rgb(206,187,19)" rx="2" ry="2" /> | |
<text x="74.43" y="175.5" ></text> | |
</g> | |
<g > | |
<title>__GI___libc_malloc (9 samples, 0.01%)</title><rect x="857.2" y="373" width="0.2" height="15.0" fill="rgb(219,87,43)" rx="2" ry="2" /> | |
<text x="860.25" y="383.5" ></text> | |
</g> | |
<g > | |
<title>_$LT$cranelift_codegen..timing..details..TimingToken$u20$as$u20$core..ops..drop..Drop$GT$::drop::h1b19c2a93ee0a091 (35 samples, 0.05%)</title><rect x="126.7" y="213" width="0.6" height="15.0" fill="rgb(234,154,45)" rx="2" ry="2" /> | |
<text x="129.67" y="223.5" ></text> | |
</g> | |
<g > | |
<title>cranelift_codegen::dominator_tree::DominatorTree::compute_idom::haefe97f2edc1fd51 (59 samples, 0.08%)</title><rect x="115.3" y="213" width="1.0" height="15.0" fill="rgb(208,7,19)" rx="2" ry="2" /> | |
<text x="118.27" y="223.5" ></text> | |
</g> | |
<g > | |
<title>hashbrown::map::HashMap$LT$K$C$V$C$S$GT$::contains_key::hc2d70e289ae6b120 (470 samples, 0.67%)</title><rect x="625.8" y="309" width="7.9" height="15.0" fill="rgb(249,83,29)" rx="2" ry="2" /> | |
<text x="628.80" y="319.5" ></text> | |
</g> | |
<g > | |
<title>cranelift_codegen::ir::builder::InstBuilder::spill::hddbf9a7f97d9d38b (63 samples, 0.09%)</title><rect x="55.9" y="261" width="1.1" height="15.0" fill="rgb(233,34,4)" rx="2" ry="2" /> | |
<text x="58.94" y="271.5" ></text> | |
</g> | |
<g > | |
<title>__GI___libc_malloc (6 samples, 0.01%)</title><rect x="1180.2" y="277" width="0.1" height="15.0" fill="rgb(235,210,42)" rx="2" ry="2" /> | |
<text x="1183.16" y="287.5" ></text> | |
</g> | |
<g > | |
<title>rocinante::solver::z3::Z3Solver::verify::ha247dd2077cd2fca (15 samples, 0.02%)</title><rect x="887.1" y="405" width="0.2" height="15.0" fill="rgb(241,173,21)" rx="2" ry="2" /> | |
<text x="890.06" y="415.5" ></text> | |
</g> | |
<g > | |
<title>__rust_probestack (9 samples, 0.01%)</title><rect x="1180.6" y="453" width="0.1" height="15.0" fill="rgb(224,38,12)" rx="2" ry="2" /> | |
<text x="1183.58" y="463.5" ></text> | |
</g> | |
<g > | |
<title>cranelift_codegen::context::Context::compile::h9fe1ff28e88fe30f (147 samples, 0.21%)</title><rect x="1167.0" y="261" width="2.5" height="15.0" fill="rgb(231,65,20)" rx="2" ry="2" /> | |
<text x="1169.99" y="271.5" ></text> | |
</g> | |
<g > | |
<title>unmapped_area_topdown (11 samples, 0.02%)</title><rect x="291.6" y="149" width="0.2" height="15.0" fill="rgb(209,131,32)" rx="2" ry="2" /> | |
<text x="294.60" y="159.5" ></text> | |
</g> | |
<g > | |
<title>release_pages (61 samples, 0.09%)</title><rect x="227.7" y="133" width="1.0" height="15.0" fill="rgb(210,88,2)" rx="2" ry="2" /> | |
<text x="230.68" y="143.5" ></text> | |
</g> | |
<g > | |
<title>_int_malloc (6 samples, 0.01%)</title><rect x="68.3" y="213" width="0.1" height="15.0" fill="rgb(223,171,12)" rx="2" ry="2" /> | |
<text x="71.34" y="223.5" ></text> | |
</g> | |
<g > | |
<title>cranelift_codegen::context::Context::legalize::h3be573a3855dd690 (727 samples, 1.04%)</title><rect x="79.7" y="229" width="12.2" height="15.0" fill="rgb(207,138,37)" rx="2" ry="2" /> | |
<text x="82.67" y="239.5" ></text> | |
</g> | |
<g > | |
<title>__rb_erase_color (8 samples, 0.01%)</title><rect x="234.2" y="181" width="0.1" height="15.0" fill="rgb(250,86,47)" rx="2" ry="2" /> | |
<text x="237.20" y="191.5" ></text> | |
</g> | |
<g > | |
<title>cranelift_codegen::ir::dfg::DataFlowGraph::ctrl_typevar::h001f83f02149e995 (10 samples, 0.01%)</title><rect x="1154.4" y="229" width="0.2" height="15.0" fill="rgb(252,117,16)" rx="2" ry="2" /> | |
<text x="1157.42" y="239.5" ></text> | |
</g> | |
<g > | |
<title>__GI___libc_free (1,092 samples, 1.56%)</title><rect x="758.1" y="309" width="18.4" height="15.0" fill="rgb(209,189,21)" rx="2" ry="2" /> | |
<text x="761.13" y="319.5" ></text> | |
</g> | |
<g > | |
<title>cranelift_codegen::dominator_tree::DominatorTree::compute::hb8295076ad170b26 (67 samples, 0.10%)</title><rect x="1158.9" y="293" width="1.1" height="15.0" fill="rgb(247,70,34)" rx="2" ry="2" /> | |
<text x="1161.87" y="303.5" ></text> | |
</g> | |
<g > | |
<title>__GI___libc_realloc (29 samples, 0.04%)</title><rect x="84.1" y="133" width="0.5" height="15.0" fill="rgb(246,165,46)" rx="2" ry="2" /> | |
<text x="87.08" y="143.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 (147 samples, 0.21%)</title><rect x="1167.0" y="405" width="2.5" height="15.0" fill="rgb(210,113,13)" rx="2" ry="2" /> | |
<text x="1169.99" y="415.5" ></text> | |
</g> | |
<g > | |
<title>cranelift_codegen::flowgraph::ControlFlowGraph::recompute_ebb::h44e6fe3205f2df2b (37 samples, 0.05%)</title><rect x="87.3" y="149" width="0.6" height="15.0" fill="rgb(209,55,3)" rx="2" ry="2" /> | |
<text x="90.26" y="159.5" ></text> | |
</g> | |
<g > | |
<title>__GI___libc_malloc (6 samples, 0.01%)</title><rect x="45.3" y="213" width="0.1" height="15.0" fill="rgb(247,43,9)" rx="2" ry="2" /> | |
<text x="48.35" y="223.5" ></text> | |
</g> | |
<g > | |
<title>page_counter_cancel (7 samples, 0.01%)</title><rect x="228.5" y="69" width="0.1" height="15.0" fill="rgb(230,107,33)" rx="2" ry="2" /> | |
<text x="231.48" y="79.5" ></text> | |
</g> | |
<g > | |
<title>__GI___libc_realloc (6 samples, 0.01%)</title><rect x="1167.2" y="69" width="0.1" height="15.0" fill="rgb(241,209,24)" rx="2" ry="2" /> | |
<text x="1170.18" y="79.5" ></text> | |
</g> | |
<g > | |
<title>__GI___libc_malloc (23 samples, 0.03%)</title><rect x="193.5" y="149" width="0.4" height="15.0" fill="rgb(232,150,52)" rx="2" ry="2" /> | |
<text x="196.50" y="159.5" ></text> | |
</g> | |
<g > | |
<title>memcg_kmem_get_cache (8 samples, 0.01%)</title><rect x="292.6" y="149" width="0.1" height="15.0" fill="rgb(254,67,2)" rx="2" ry="2" /> | |
<text x="295.61" y="159.5" ></text> | |
</g> | |
<g > | |
<title>_int_realloc (14 samples, 0.02%)</title><rect x="151.2" y="133" width="0.3" height="15.0" fill="rgb(231,125,2)" rx="2" ry="2" /> | |
<text x="154.24" y="143.5" ></text> | |
</g> | |
<g > | |
<title>std::sys::unix::time::inner::Instant::now::h23f1bea5949f1bbd (10 samples, 0.01%)</title><rect x="103.2" y="181" width="0.1" height="15.0" fill="rgb(237,216,39)" rx="2" ry="2" /> | |
<text x="106.18" y="191.5" ></text> | |
</g> | |
<g > | |
<title>__GI___clock_gettime (7 samples, 0.01%)</title><rect x="38.6" y="197" width="0.1" height="15.0" fill="rgb(237,204,18)" rx="2" ry="2" /> | |
<text x="41.55" y="207.5" ></text> | |
</g> | |
<g > | |
<title>cranelift_codegen::isa::TargetIsa::encode::h3618ddf6ad568ce7 (16 samples, 0.02%)</title><rect x="1171.4" y="261" width="0.3" height="15.0" fill="rgb(235,100,23)" rx="2" ry="2" /> | |
<text x="1174.42" y="271.5" ></text> | |
</g> | |
<g > | |
<title>_ZN81_$LT$std..collections..hash..map..DefaultHasher$u20$as$u20$core..hash..Hasher$GT$5write17hce30e4f96ad2e64eE.llvm.10396957835513704427 (13 samples, 0.02%)</title><rect x="878.3" y="277" width="0.2" height="15.0" fill="rgb(231,97,2)" rx="2" ry="2" /> | |
<text x="881.25" y="287.5" ></text> | |
</g> | |
<g > | |
<title>std::sys::unix::time::inner::Instant::now::h23f1bea5949f1bbd (11 samples, 0.02%)</title><rect x="91.7" y="181" width="0.2" height="15.0" fill="rgb(253,92,26)" rx="2" ry="2" /> | |
<text x="94.71" y="191.5" ></text> | |
</g> | |
<g > | |
<title>get_signal (13 samples, 0.02%)</title><rect x="13.6" y="373" width="0.3" height="15.0" fill="rgb(225,24,2)" rx="2" ry="2" /> | |
<text x="16.65" y="383.5" ></text> | |
</g> | |
<g > | |
<title>cranelift_codegen::loop_analysis::LoopAnalysis::compute::h2ae6e7af869a79fa (69 samples, 0.10%)</title><rect x="121.9" y="229" width="1.1" height="15.0" fill="rgb(253,145,23)" rx="2" ry="2" /> | |
<text x="124.88" y="239.5" ></text> | |
</g> | |
<g > | |
<title>core::ptr::real_drop_in_place::h096927e62fedec5f (17 samples, 0.02%)</title><rect x="196.0" y="165" width="0.3" height="15.0" fill="rgb(238,194,20)" rx="2" ry="2" /> | |
<text x="198.99" y="175.5" ></text> | |
</g> | |
<g > | |
<title>_int_free (13 samples, 0.02%)</title><rect x="1169.5" y="245" width="0.2" height="15.0" fill="rgb(215,227,14)" rx="2" ry="2" /> | |
<text x="1172.47" y="255.5" ></text> | |
</g> | |
<g > | |
<title>cranelift_codegen::ir::builder::InstBuilder::iconst::h085df8078cba1853 (8 samples, 0.01%)</title><rect x="87.9" y="149" width="0.2" height="15.0" fill="rgb(220,17,26)" rx="2" ry="2" /> | |
<text x="90.93" y="159.5" ></text> | |
</g> | |
<g > | |
<title>std::sys::unix::time::inner::Instant::now::h23f1bea5949f1bbd (6 samples, 0.01%)</title><rect x="122.9" y="197" width="0.1" height="15.0" fill="rgb(210,165,17)" rx="2" ry="2" /> | |
<text x="125.94" y="207.5" ></text> | |
</g> | |
<g > | |
<title>perf_event_mmap (479 samples, 0.68%)</title><rect x="336.3" y="197" width="8.0" height="15.0" fill="rgb(215,164,16)" rx="2" ry="2" /> | |
<text x="339.28" y="207.5" ></text> | |
</g> | |
<g > | |
<title>std::sys::unix::alloc::_$LT$impl$u20$core..alloc..GlobalAlloc$u20$for$u20$std..alloc..System$GT$::realloc::h1ccdfac189eaabae (77 samples, 0.11%)</title><rect x="987.4" y="309" width="1.3" height="15.0" fill="rgb(237,154,7)" rx="2" ry="2" /> | |
<text x="990.37" y="319.5" ></text> | |
</g> | |
<g > | |
<title>sys_munmap (229 samples, 0.33%)</title><rect x="233.2" y="293" width="3.8" height="15.0" fill="rgb(216,68,44)" rx="2" ry="2" /> | |
<text x="236.19" y="303.5" ></text> | |
</g> | |
<g > | |
<title>cranelift_codegen::regalloc::coloring::Context::visit_inst::h157ddbfc9a018b2b (601 samples, 0.86%)</title><rect x="135.5" y="213" width="10.1" height="15.0" fill="rgb(240,204,47)" rx="2" ry="2" /> | |
<text x="138.47" y="223.5" ></text> | |
</g> | |
<g > | |
<title>_$LT$cranelift_codegen..timing..details..TimingToken$u20$as$u20$core..ops..drop..Drop$GT$::drop::h1b19c2a93ee0a091 (14 samples, 0.02%)</title><rect x="130.0" y="197" width="0.2" height="15.0" fill="rgb(216,174,5)" rx="2" ry="2" /> | |
<text x="132.97" y="207.5" ></text> | |
</g> | |
<g > | |
<title>core::ptr::real_drop_in_place::hecc58545c2033bf4 (56 samples, 0.08%)</title><rect x="239.6" y="389" width="1.0" height="15.0" fill="rgb(233,227,37)" rx="2" ry="2" /> | |
<text x="242.65" y="399.5" ></text> | |
</g> | |
<g > | |
<title>__GI___libc_malloc (9 samples, 0.01%)</title><rect x="1171.0" y="229" width="0.1" height="15.0" fill="rgb(218,55,19)" rx="2" ry="2" /> | |
<text x="1173.98" y="239.5" ></text> | |
</g> | |
<g > | |
<title>alloc::sync::Arc$LT$T$GT$::drop_slow::h7c0b96f23ce547fa (17 samples, 0.02%)</title><rect x="252.5" y="325" width="0.3" height="15.0" fill="rgb(212,187,6)" rx="2" ry="2" /> | |
<text x="255.46" y="335.5" ></text> | |
</g> | |
<g > | |
<title>__GI___libc_malloc (13 samples, 0.02%)</title><rect x="71.1" y="181" width="0.2" height="15.0" fill="rgb(251,152,45)" rx="2" ry="2" /> | |
<text x="74.11" y="191.5" ></text> | |
</g> | |
<g > | |
<title>__GI___libc_malloc (6 samples, 0.01%)</title><rect x="142.9" y="133" width="0.1" height="15.0" fill="rgb(227,5,26)" rx="2" ry="2" /> | |
<text x="145.94" y="143.5" ></text> | |
</g> | |
<g > | |
<title>__GI___libc_malloc (8 samples, 0.01%)</title><rect x="871.4" y="229" width="0.1" height="15.0" fill="rgb(252,151,9)" rx="2" ry="2" /> | |
<text x="874.39" y="239.5" ></text> | |
</g> | |
<g > | |
<title>__GI___clock_gettime (9 samples, 0.01%)</title><rect x="80.9" y="117" width="0.2" height="15.0" fill="rgb(217,48,37)" rx="2" ry="2" /> | |
<text x="83.92" y="127.5" ></text> | |
</g> | |
<g > | |
<title>_int_free (6 samples, 0.01%)</title><rect x="1177.9" y="245" width="0.1" height="15.0" fill="rgb(232,23,43)" rx="2" ry="2" /> | |
<text x="1180.91" y="255.5" ></text> | |
</g> | |
<g > | |
<title>__GI___libc_malloc (13 samples, 0.02%)</title><rect x="127.4" y="197" width="0.2" height="15.0" fill="rgb(225,133,37)" rx="2" ry="2" /> | |
<text x="130.41" y="207.5" ></text> | |
</g> | |
<g > | |
<title>do_mmap (284 samples, 0.40%)</title><rect x="291.3" y="197" width="4.8" height="15.0" fill="rgb(233,176,5)" rx="2" ry="2" /> | |
<text x="294.33" y="207.5" ></text> | |
</g> | |
<g > | |
<title>__GI___libc_malloc (21 samples, 0.03%)</title><rect x="14.4" y="261" width="0.3" height="15.0" fill="rgb(223,189,28)" rx="2" ry="2" /> | |
<text x="17.36" y="271.5" ></text> | |
</g> | |
<g > | |
<title>__memcpy_avx_unaligned (33 samples, 0.05%)</title><rect x="733.7" y="325" width="0.6" height="15.0" fill="rgb(205,72,50)" rx="2" ry="2" /> | |
<text x="736.73" y="335.5" ></text> | |
</g> | |
<g > | |
<title>_int_free (12 samples, 0.02%)</title><rect x="330.6" y="261" width="0.2" height="15.0" fill="rgb(206,15,35)" rx="2" ry="2" /> | |
<text x="333.61" y="271.5" ></text> | |
</g> | |
<g > | |
<title>_$LT$core..iter..adapters..Cloned$LT$I$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$::fold::hd92c812f09fe4460 (34 samples, 0.05%)</title><rect x="798.7" y="293" width="0.6" height="15.0" fill="rgb(252,2,39)" rx="2" ry="2" /> | |
<text x="801.74" y="303.5" ></text> | |
</g> | |
<g > | |
<title>cranelift_codegen::ir::instructions::Opcode::other_side_effects::h21504290cdf50634 (10 samples, 0.01%)</title><rect x="168.8" y="213" width="0.2" height="15.0" fill="rgb(249,2,23)" rx="2" ry="2" /> | |
<text x="171.80" y="223.5" ></text> | |
</g> | |
<g > | |
<title>_int_free (6 samples, 0.01%)</title><rect x="322.5" y="213" width="0.1" height="15.0" fill="rgb(228,228,0)" rx="2" ry="2" /> | |
<text x="325.49" y="223.5" ></text> | |
</g> | |
<g > | |
<title>cranelift_codegen::legalizer::legalize_inst::h3c0aa7980e624bbf (22 samples, 0.03%)</title><rect x="1167.0" y="213" width="0.4" height="15.0" fill="rgb(234,192,28)" rx="2" ry="2" /> | |
<text x="1169.99" y="223.5" ></text> | |
</g> | |
<g > | |
<title>std::time::Instant::now::h33d2ba6042def2d2 (17 samples, 0.02%)</title><rect x="92.2" y="165" width="0.3" height="15.0" fill="rgb(249,50,1)" rx="2" ry="2" /> | |
<text x="95.20" y="175.5" ></text> | |
</g> | |
<g > | |
<title>hashbrown::raw::RawTable$LT$T$GT$::reserve_rehash::h145328e315fce2fd (881 samples, 1.26%)</title><rect x="645.6" y="277" width="14.8" height="15.0" fill="rgb(224,55,21)" rx="2" ry="2" /> | |
<text x="648.61" y="287.5" ></text> | |
</g> | |
<g > | |
<title>std::time::Instant::elapsed::h8e307314b2acf9be (11 samples, 0.02%)</title><rect x="38.5" y="261" width="0.2" height="15.0" fill="rgb(238,118,24)" rx="2" ry="2" /> | |
<text x="41.49" y="271.5" ></text> | |
</g> | |
<g > | |
<title>rayon::iter::plumbing::bridge_producer_consumer::helper::h864336325ddf8446 (147 samples, 0.21%)</title><rect x="1167.0" y="357" width="2.5" height="15.0" fill="rgb(238,32,37)" rx="2" ry="2" /> | |
<text x="1169.99" y="367.5" ></text> | |
</g> | |
<g > | |
<title>__GI___libc_free (64 samples, 0.09%)</title><rect x="237.2" y="357" width="1.1" height="15.0" fill="rgb(213,212,31)" rx="2" ry="2" /> | |
<text x="240.25" y="367.5" ></text> | |
</g> | |
<g > | |
<title>_$LT$hashbrown..raw..RawTable$LT$T$GT$$u20$as$u20$core..clone..Clone$GT$::clone::hbbe73e1f74833d54 (30 samples, 0.04%)</title><rect x="255.1" y="293" width="0.5" height="15.0" fill="rgb(239,159,44)" rx="2" ry="2" /> | |
<text x="258.14" y="303.5" ></text> | |
</g> | |
<g > | |
<title>alloc::raw_vec::RawVec$LT$T$C$A$GT$::reserve::hc8a0fc8526f8c69b (8 samples, 0.01%)</title><rect x="56.2" y="245" width="0.1" height="15.0" fill="rgb(244,26,3)" rx="2" ry="2" /> | |
<text x="59.21" y="255.5" ></text> | |
</g> | |
<g > | |
<title>alloc_perturb (6 samples, 0.01%)</title><rect x="1035.1" y="309" width="0.1" height="15.0" fill="rgb(234,79,32)" rx="2" ry="2" /> | |
<text x="1038.12" y="319.5" ></text> | |
</g> | |
<g > | |
<title>alloc::raw_vec::RawVec$LT$T$C$A$GT$::reserve::h0c445b41f7c28667 (12 samples, 0.02%)</title><rect x="92.8" y="181" width="0.2" height="15.0" fill="rgb(233,160,9)" rx="2" ry="2" /> | |
<text x="95.84" y="191.5" ></text> | |
</g> | |
<g > | |
<title>sys_mmap_pgoff (306 samples, 0.44%)</title><rect x="349.3" y="229" width="5.2" height="15.0" fill="rgb(232,146,8)" rx="2" ry="2" /> | |
<text x="352.35" y="239.5" ></text> | |
</g> | |
<g > | |
<title>std::rt::lang_start::_$u7b$$u7b$closure$u7d$$u7d$::h387b585bfd0524d1 (736 samples, 1.05%)</title><rect x="189.1" y="293" width="12.3" height="15.0" fill="rgb(252,89,0)" rx="2" ry="2" /> | |
<text x="192.07" y="303.5" ></text> | |
</g> | |
<g > | |
<title>cranelift_codegen::ir::function::Function::clear::h4a6ec45cff5ac809 (25 samples, 0.04%)</title><rect x="67.1" y="245" width="0.4" height="15.0" fill="rgb(235,46,16)" rx="2" ry="2" /> | |
<text x="70.09" y="255.5" ></text> | |
</g> | |
<g > | |
<title>__GI___libc_free (57 samples, 0.08%)</title><rect x="183.2" y="277" width="1.0" height="15.0" fill="rgb(209,17,8)" rx="2" ry="2" /> | |
<text x="186.20" y="287.5" ></text> | |
</g> | |
<g > | |
<title>alloc::raw_vec::RawVec$LT$T$C$A$GT$::reserve::h5e34cfad90a6ce21 (7 samples, 0.01%)</title><rect x="1176.3" y="277" width="0.1" height="15.0" fill="rgb(238,133,21)" rx="2" ry="2" /> | |
<text x="1179.31" y="287.5" ></text> | |
</g> | |
<g > | |
<title>cranelift_codegen::legalizer::split::split_ebb_params::he3edb3e49d817505 (15 samples, 0.02%)</title><rect x="91.5" y="197" width="0.2" height="15.0" fill="rgb(244,185,40)" rx="2" ry="2" /> | |
<text x="94.46" y="207.5" ></text> | |
</g> | |
<g > | |
<title>_$LT$alloc..vec..Vec$LT$T$GT$$u20$as$u20$core..clone..Clone$GT$::clone::h5b9e6f3d06cc15e0 (12 samples, 0.02%)</title><rect x="200.4" y="213" width="0.2" height="15.0" fill="rgb(216,148,6)" rx="2" ry="2" /> | |
<text x="203.38" 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 (38 samples, 0.05%)</title><rect x="97.4" y="149" width="0.7" height="15.0" fill="rgb(247,103,19)" rx="2" ry="2" /> | |
<text x="100.43" y="159.5" ></text> | |
</g> | |
<g > | |
<title>cranelift_codegen::ir::dfg::DataFlowGraph::make_inst::h5a8de03d56461c59 (31 samples, 0.04%)</title><rect x="321.1" y="293" width="0.5" height="15.0" fill="rgb(250,224,8)" rx="2" ry="2" /> | |
<text x="324.13" y="303.5" ></text> | |
</g> | |
<g > | |
<title>lru_add_drain_cpu (62 samples, 0.09%)</title><rect x="226.1" y="181" width="1.1" height="15.0" fill="rgb(219,157,13)" rx="2" ry="2" /> | |
<text x="229.13" y="191.5" ></text> | |
</g> | |
<g > | |
<title>native_sched_clock (8 samples, 0.01%)</title><rect x="268.2" y="69" width="0.2" height="15.0" fill="rgb(245,190,7)" rx="2" ry="2" /> | |
<text x="271.24" y="79.5" ></text> | |
</g> | |
<g > | |
<title>wasmparser::readers::code_section::FunctionBody::get_operators_reader::h331a49773c095d89 (144 samples, 0.21%)</title><rect x="577.0" y="293" width="2.4" height="15.0" fill="rgb(240,47,4)" rx="2" ry="2" /> | |
<text x="580.01" y="303.5" ></text> | |
</g> | |
<g > | |
<title>__GI___libc_malloc (8 samples, 0.01%)</title><rect x="118.9" y="133" width="0.1" height="15.0" fill="rgb(229,24,52)" rx="2" ry="2" /> | |
<text x="121.89" y="143.5" ></text> | |
</g> | |
<g > | |
<title>cranelift_codegen::cursor::FuncCursor::new::h08f8b9a52d389313 (10 samples, 0.01%)</title><rect x="320.5" y="309" width="0.2" height="15.0" fill="rgb(207,192,35)" rx="2" ry="2" /> | |
<text x="323.49" y="319.5" ></text> | |
</g> | |
<g > | |
<title>pagevec_lru_move_fn (54 samples, 0.08%)</title><rect x="226.3" y="165" width="0.9" height="15.0" fill="rgb(226,159,40)" rx="2" ry="2" /> | |
<text x="229.26" y="175.5" ></text> | |
</g> | |
<g > | |
<title>cranelift_codegen::dominator_tree::DominatorTreePreorder::compute::hb821b7ecbf347c37 (24 samples, 0.03%)</title><rect x="1167.9" y="213" width="0.4" height="15.0" fill="rgb(206,130,15)" rx="2" ry="2" /> | |
<text x="1170.94" y="223.5" ></text> | |
</g> | |
<g > | |
<title>core::ptr::real_drop_in_place::h096927e62fedec5f (1,231 samples, 1.75%)</title><rect x="735.4" y="325" width="20.7" height="15.0" fill="rgb(227,2,15)" rx="2" ry="2" /> | |
<text x="738.36" y="335.5" ></text> | |
</g> | |
<g > | |
<title>__GI___libc_malloc (10 samples, 0.01%)</title><rect x="195.8" y="165" width="0.2" height="15.0" fill="rgb(247,82,2)" rx="2" ry="2" /> | |
<text x="198.81" y="175.5" ></text> | |
</g> | |
<g > | |
<title>std::sys::unix::time::inner::Instant::now::h23f1bea5949f1bbd (12 samples, 0.02%)</title><rect x="1165.9" y="261" width="0.2" height="15.0" fill="rgb(249,100,18)" rx="2" ry="2" /> | |
<text x="1168.87" y="271.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 (87 samples, 0.12%)</title><rect x="280.4" y="293" width="1.4" height="15.0" fill="rgb(254,25,50)" rx="2" ry="2" /> | |
<text x="283.36" y="303.5" ></text> | |
</g> | |
<g > | |
<title>cranelift_codegen::isa::TargetIsa::encode::h3618ddf6ad568ce7 (7 samples, 0.01%)</title><rect x="22.8" y="213" width="0.1" height="15.0" fill="rgb(243,122,36)" rx="2" ry="2" /> | |
<text x="25.80" y="223.5" ></text> | |
</g> | |
<g > | |
<title>__GI___libc_realloc (9 samples, 0.01%)</title><rect x="46.6" y="245" width="0.1" height="15.0" fill="rgb(250,21,8)" rx="2" ry="2" /> | |
<text x="49.56" y="255.5" ></text> | |
</g> | |
<g > | |
<title>__GI___libc_malloc (12 samples, 0.02%)</title><rect x="68.2" y="229" width="0.2" height="15.0" fill="rgb(233,123,36)" rx="2" ry="2" /> | |
<text x="71.24" y="239.5" ></text> | |
</g> | |
<g > | |
<title>__vdso_clock_gettime (10 samples, 0.01%)</title><rect x="50.4" y="181" width="0.2" height="15.0" fill="rgb(236,184,28)" rx="2" ry="2" /> | |
<text x="53.41" y="191.5" ></text> | |
</g> | |
<g > | |
<title>_int_free (10 samples, 0.01%)</title><rect x="625.4" y="277" width="0.2" height="15.0" fill="rgb(210,83,44)" rx="2" ry="2" /> | |
<text x="628.39" y="287.5" ></text> | |
</g> | |
<g > | |
<title>__rdl_dealloc (7 samples, 0.01%)</title><rect x="1052.2" y="389" width="0.1" height="15.0" fill="rgb(237,51,21)" rx="2" ry="2" /> | |
<text x="1055.15" y="399.5" ></text> | |
</g> | |
<g > | |
<title>std::time::Instant::now::h33d2ba6042def2d2 (9 samples, 0.01%)</title><rect x="153.5" y="165" width="0.2" height="15.0" fill="rgb(209,22,39)" rx="2" ry="2" /> | |
<text x="156.53" y="175.5" ></text> | |
</g> | |
<g > | |
<title>__rdl_realloc (134 samples, 0.19%)</title><rect x="986.4" y="325" width="2.3" height="15.0" fill="rgb(215,218,37)" rx="2" ry="2" /> | |
<text x="989.42" y="335.5" ></text> | |
</g> | |
<g > | |
<title>cranelift_codegen::ir::layout::Layout::insert_inst::h352d76f498d27496 (6 samples, 0.01%)</title><rect x="1174.2" y="245" width="0.1" height="15.0" fill="rgb(242,214,28)" rx="2" ry="2" /> | |
<text x="1177.21" y="255.5" ></text> | |
</g> | |
<g > | |
<title>alloc::vec::Vec$LT$T$GT$::retain::h44e70c6a80d771f1 (7 samples, 0.01%)</title><rect x="127.6" y="213" width="0.2" height="15.0" fill="rgb(214,104,21)" rx="2" ry="2" /> | |
<text x="130.63" y="223.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,137 samples, 1.62%)</title><rect x="1147.8" y="373" width="19.2" height="15.0" fill="rgb(223,174,10)" rx="2" ry="2" /> | |
<text x="1150.84" 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 (33 samples, 0.05%)</title><rect x="20.8" y="245" width="0.6" height="15.0" fill="rgb(217,52,20)" rx="2" ry="2" /> | |
<text x="23.80" y="255.5" ></text> | |
</g> | |
<g > | |
<title>__GI___libc_free (6 samples, 0.01%)</title><rect x="108.5" y="197" width="0.1" height="15.0" fill="rgb(222,6,29)" rx="2" ry="2" /> | |
<text x="111.46" y="207.5" ></text> | |
</g> | |
<g > | |
<title>__GI___libc_malloc (14 samples, 0.02%)</title><rect x="149.1" y="149" width="0.3" height="15.0" fill="rgb(235,224,39)" rx="2" ry="2" /> | |
<text x="152.14" y="159.5" ></text> | |
</g> | |
<g > | |
<title>core::slice::_$LT$impl$u20$$u5b$T$u5d$$GT$::copy_from_slice::h5befb2ef74ba1584 (23 samples, 0.03%)</title><rect x="696.6" y="293" width="0.4" height="15.0" fill="rgb(252,165,19)" rx="2" ry="2" /> | |
<text x="699.61" y="303.5" ></text> | |
</g> | |
<g > | |
<title>std::sys::unix::time::inner::now::ha10452f37b2930c5 (11 samples, 0.02%)</title><rect x="50.4" y="213" width="0.2" height="15.0" fill="rgb(226,196,6)" rx="2" ry="2" /> | |
<text x="53.39" y="223.5" ></text> | |
</g> | |
<g > | |
<title>__vma_adjust (56 samples, 0.08%)</title><rect x="287.7" y="181" width="0.9" height="15.0" fill="rgb(212,28,48)" rx="2" ry="2" /> | |
<text x="290.70" y="191.5" ></text> | |
</g> | |
<g > | |
<title>_int_free (30 samples, 0.04%)</title><rect x="309.6" y="245" width="0.5" height="15.0" fill="rgb(214,223,35)" rx="2" ry="2" /> | |
<text x="312.59" y="255.5" ></text> | |
</g> | |
<g > | |
<title>__memcpy_avx_unaligned (25 samples, 0.04%)</title><rect x="260.0" y="293" width="0.4" height="15.0" fill="rgb(218,19,2)" rx="2" ry="2" /> | |
<text x="263.00" y="303.5" ></text> | |
</g> | |
<g > | |
<title>memcpy_erms (9 samples, 0.01%)</title><rect x="295.0" y="101" width="0.1" height="15.0" fill="rgb(206,129,23)" rx="2" ry="2" /> | |
<text x="297.98" y="111.5" ></text> | |
</g> | |
<g > | |
<title>_ZN17cranelift_codegen8regalloc6solver6Solver13find_solution17h23fb3e5d74fee50cE.llvm.529824060399144151 (33 samples, 0.05%)</title><rect x="139.3" y="197" width="0.6" height="15.0" fill="rgb(220,3,49)" rx="2" ry="2" /> | |
<text x="142.32" y="207.5" ></text> | |
</g> | |
<g > | |
<title>wasmer_runtime::compile_with_config::h3146f6a9cd30dfc8 (2,799 samples, 3.99%)</title><rect x="14.0" y="421" width="47.0" height="15.0" fill="rgb(245,195,34)" rx="2" ry="2" /> | |
<text x="16.95" y="431.5" >wasm..</text> | |
</g> | |
<g > | |
<title>std::sys::unix::time::inner::now::ha10452f37b2930c5 (8 samples, 0.01%)</title><rect x="119.4" y="181" width="0.1" height="15.0" fill="rgb(211,6,36)" rx="2" ry="2" /> | |
<text x="122.36" y="191.5" ></text> | |
</g> | |
<g > | |
<title>std::sys::unix::time::inner::now::ha10452f37b2930c5 (8 samples, 0.01%)</title><rect x="119.7" y="149" width="0.2" height="15.0" fill="rgb(248,149,54)" rx="2" ry="2" /> | |
<text x="122.75" y="159.5" ></text> | |
</g> | |
<g > | |
<title>__GI___libc_free (34 samples, 0.05%)</title><rect x="310.9" y="277" width="0.6" height="15.0" fill="rgb(230,86,46)" rx="2" ry="2" /> | |
<text x="313.92" y="287.5" ></text> | |
</g> | |
<g > | |
<title>__rdl_alloc (43 samples, 0.06%)</title><rect x="604.2" y="309" width="0.8" height="15.0" fill="rgb(224,1,53)" rx="2" ry="2" /> | |
<text x="607.24" y="319.5" ></text> | |
</g> | |
<g > | |
<title>perf_output_copy (10 samples, 0.01%)</title><rect x="295.2" y="101" width="0.2" height="15.0" fill="rgb(222,6,9)" rx="2" ry="2" /> | |
<text x="298.21" y="111.5" ></text> | |
</g> | |
<g > | |
<title>__GI___libc_malloc (10 samples, 0.01%)</title><rect x="1169.7" y="245" width="0.2" height="15.0" fill="rgb(233,143,5)" rx="2" ry="2" /> | |
<text x="1172.69" y="255.5" ></text> | |
</g> | |
<g > | |
<title>_$LT$alloc..vec..Vec$LT$T$GT$$u20$as$u20$core..clone..Clone$GT$::clone::hed7bc371c65279af (21 samples, 0.03%)</title><rect x="65.7" y="245" width="0.4" height="15.0" fill="rgb(232,104,53)" rx="2" ry="2" /> | |
<text x="68.75" y="255.5" ></text> | |
</g> | |
<g > | |
<title>alloc::raw_vec::RawVec$LT$T$C$A$GT$::reserve::h156c4ca9e87e66cc (23 samples, 0.03%)</title><rect x="128.6" y="181" width="0.4" height="15.0" fill="rgb(205,206,28)" rx="2" ry="2" /> | |
<text x="131.59" y="191.5" ></text> | |
</g> | |
<g > | |
<title>do_munmap (221 samples, 0.31%)</title><rect x="233.3" y="261" width="3.7" height="15.0" fill="rgb(217,68,14)" rx="2" ry="2" /> | |
<text x="236.28" y="271.5" ></text> | |
</g> | |
<g > | |
<title>alloc::raw_vec::RawVec$LT$T$C$A$GT$::reserve::hbea2e111e8f00580 (27 samples, 0.04%)</title><rect x="809.2" y="277" width="0.5" height="15.0" fill="rgb(236,42,30)" rx="2" ry="2" /> | |
<text x="812.20" y="287.5" ></text> | |
</g> | |
<g > | |
<title>cranelift_codegen::isa::x86::abi::callee_saved_gprs_used::h307ec5944daa4165 (34 samples, 0.05%)</title><rect x="1155.8" y="245" width="0.5" height="15.0" fill="rgb(205,90,38)" rx="2" ry="2" /> | |
<text x="1158.78" y="255.5" ></text> | |
</g> | |
<g > | |
<title>hashbrown::raw::sse2::Group::static_empty::h80f52363fc69c9bd (6 samples, 0.01%)</title><rect x="796.2" y="309" width="0.1" height="15.0" fill="rgb(248,23,48)" rx="2" ry="2" /> | |
<text x="799.15" y="319.5" ></text> | |
</g> | |
<g > | |
<title>free_pgd_range (7 samples, 0.01%)</title><rect x="225.7" y="181" width="0.2" height="15.0" fill="rgb(223,101,42)" rx="2" ry="2" /> | |
<text x="228.74" y="191.5" ></text> | |
</g> | |
<g > | |
<title>hashbrown::raw::RawTable$LT$T$GT$::try_with_capacity::h7a6e6bae489d4fe9 (13 samples, 0.02%)</title><rect x="14.1" y="245" width="0.2" height="15.0" fill="rgb(234,99,48)" rx="2" ry="2" /> | |
<text x="17.07" y="255.5" ></text> | |
</g> | |
<g > | |
<title>wasmer_runtime_core::compile_with_config::h2793fe8de72c0bc3 (242 samples, 0.34%)</title><rect x="1176.4" y="437" width="4.1" height="15.0" fill="rgb(210,60,9)" rx="2" ry="2" /> | |
<text x="1179.43" y="447.5" ></text> | |
</g> | |
<g > | |
<title>cranelift_codegen::regalloc::coloring::Context::program_input_abi::h34ced53bbc43d7b1 (18 samples, 0.03%)</title><rect x="1172.2" y="293" width="0.3" height="15.0" fill="rgb(250,103,30)" rx="2" ry="2" /> | |
<text x="1175.22" y="303.5" ></text> | |
</g> | |
<g > | |
<title>alloc::raw_vec::RawVec$LT$T$C$A$GT$::reserve::h500ef385b8747b29 (6 samples, 0.01%)</title><rect x="323.7" y="261" width="0.1" height="15.0" fill="rgb(211,142,28)" rx="2" ry="2" /> | |
<text x="326.67" y="271.5" ></text> | |
</g> | |
<g > | |
<title>cranelift_codegen::regalloc::virtregs::VirtRegs::find::h8895455c5ba49bed (22 samples, 0.03%)</title><rect x="135.0" y="181" width="0.4" height="15.0" fill="rgb(250,92,21)" rx="2" ry="2" /> | |
<text x="138.00" y="191.5" ></text> | |
</g> | |
<g > | |
<title>sys_mprotect (880 samples, 1.25%)</title><rect x="333.1" y="245" width="14.7" height="15.0" fill="rgb(252,185,28)" rx="2" ry="2" /> | |
<text x="336.05" y="255.5" ></text> | |
</g> | |
<g > | |
<title>memcg_kmem_get_cache (6 samples, 0.01%)</title><rect x="224.7" y="181" width="0.1" height="15.0" fill="rgb(221,124,26)" rx="2" ry="2" /> | |
<text x="227.72" y="191.5" ></text> | |
</g> | |
<g > | |
<title>cranelift_entity::sparse::SparseMap$LT$K$C$V$GT$::insert::h7db38de7d591c38a (68 samples, 0.10%)</title><rect x="1172.8" y="277" width="1.2" height="15.0" fill="rgb(209,135,7)" rx="2" ry="2" /> | |
<text x="1175.83" y="287.5" ></text> | |
</g> | |
<g > | |
<title>cranelift_codegen::context::Context::compile::h9fe1ff28e88fe30f (414 samples, 0.59%)</title><rect x="1169.5" y="341" width="6.9" height="15.0" fill="rgb(226,18,29)" rx="2" ry="2" /> | |
<text x="1172.47" y="351.5" ></text> | |
</g> | |
<g > | |
<title>core::num::_$LT$impl$u20$usize$GT$::one_less_than_next_power_of_two::h3c7982a12f0106e5 (21 samples, 0.03%)</title><rect x="660.1" y="229" width="0.3" height="15.0" fill="rgb(230,191,43)" rx="2" ry="2" /> | |
<text x="663.07" y="239.5" ></text> | |
</g> | |
<g > | |
<title>__GI___libc_malloc (1,035 samples, 1.48%)</title><rect x="465.8" y="277" width="17.4" height="15.0" fill="rgb(252,96,11)" rx="2" ry="2" /> | |
<text x="468.80" y="287.5" ></text> | |
</g> | |
<g > | |
<title>_$LT$cranelift_codegen..timing..details..TimingToken$u20$as$u20$core..ops..drop..Drop$GT$::drop::h1b19c2a93ee0a091 (22 samples, 0.03%)</title><rect x="1158.0" y="277" width="0.4" height="15.0" fill="rgb(208,41,35)" rx="2" ry="2" /> | |
<text x="1160.98" y="287.5" ></text> | |
</g> | |
<g > | |
<title>__memcpy_avx_unaligned (10 samples, 0.01%)</title><rect x="944.8" y="325" width="0.1" height="15.0" fill="rgb(231,12,18)" rx="2" ry="2" /> | |
<text x="947.76" y="335.5" ></text> | |
</g> | |
<g > | |
<title>_ZN16cranelift_entity4list17ListPool$LT$T$GT$5alloc17h7031e3fd97879e16E.llvm.776987249141506950 (29 samples, 0.04%)</title><rect x="806.7" y="261" width="0.5" height="15.0" fill="rgb(205,201,15)" rx="2" ry="2" /> | |
<text x="809.70" y="271.5" ></text> | |
</g> | |
<g > | |
<title>_int_realloc (26 samples, 0.04%)</title><rect x="84.1" y="117" width="0.5" height="15.0" fill="rgb(231,213,17)" rx="2" ry="2" /> | |
<text x="87.13" y="127.5" ></text> | |
</g> | |
<g > | |
<title>cranelift_codegen::ir::instructions::InstructionData::arguments_mut::hd68ce32862759160 (9 samples, 0.01%)</title><rect x="50.6" y="261" width="0.2" height="15.0" fill="rgb(252,124,36)" rx="2" ry="2" /> | |
<text x="53.65" y="271.5" ></text> | |
</g> | |
<g > | |
<title>alloc::raw_vec::RawVec$LT$T$C$A$GT$::reserve::hc8a0fc8526f8c69b (15 samples, 0.02%)</title><rect x="144.2" y="165" width="0.3" height="15.0" fill="rgb(210,78,18)" rx="2" ry="2" /> | |
<text x="147.25" y="175.5" ></text> | |
</g> | |
<g > | |
<title>core::ptr::real_drop_in_place::hac17000b73420afe (13 samples, 0.02%)</title><rect x="240.4" y="357" width="0.2" height="15.0" fill="rgb(226,116,40)" rx="2" ry="2" /> | |
<text x="243.37" y="367.5" ></text> | |
</g> | |
<g > | |
<title>wasmparser::readers::export_section::ExportSectionReader::read::h3ee6d1ee74ae2753 (497 samples, 0.71%)</title><rect x="523.1" y="277" width="8.4" height="15.0" fill="rgb(206,10,17)" rx="2" ry="2" /> | |
<text x="526.10" y="287.5" ></text> | |
</g> | |
<g > | |
<title>__GI___libc_malloc (6 samples, 0.01%)</title><rect x="194.6" y="101" width="0.1" height="15.0" fill="rgb(240,13,31)" rx="2" ry="2" /> | |
<text x="197.65" y="111.5" ></text> | |
</g> | |
<g > | |
<title>_int_free (42 samples, 0.06%)</title><rect x="272.0" y="277" width="0.7" height="15.0" fill="rgb(244,96,52)" rx="2" ry="2" /> | |
<text x="275.01" y="287.5" ></text> | |
</g> | |
<g > | |
<title>__GI___libc_free (43 samples, 0.06%)</title><rect x="310.2" y="293" width="0.7" height="15.0" fill="rgb(230,118,52)" rx="2" ry="2" /> | |
<text x="313.18" y="303.5" ></text> | |
</g> | |
<g > | |
<title>cranelift_codegen::regalloc::liveness::get_or_create::h5a0d21740424a6d5 (229 samples, 0.33%)</title><rect x="147.7" y="197" width="3.8" height="15.0" fill="rgb(236,196,2)" rx="2" ry="2" /> | |
<text x="150.68" y="207.5" ></text> | |
</g> | |
<g > | |
<title>alloc::raw_vec::RawVec$LT$T$C$A$GT$::reserve::h5bb4661d248be310 (2,222 samples, 3.17%)</title><rect x="951.7" y="341" width="37.3" height="15.0" fill="rgb(252,116,38)" rx="2" ry="2" /> | |
<text x="954.67" y="351.5" >all..</text> | |
</g> | |
<g > | |
<title>hashbrown::raw::RawTable$LT$T$GT$::try_with_capacity::h7a6e6bae489d4fe9 (15 samples, 0.02%)</title><rect x="108.2" y="149" width="0.3" height="15.0" fill="rgb(239,161,29)" rx="2" ry="2" /> | |
<text x="111.21" y="159.5" ></text> | |
</g> | |
<g > | |
<title>alloc::raw_vec::RawVec$LT$T$C$A$GT$::reserve::h156c4ca9e87e66cc (9 samples, 0.01%)</title><rect x="1152.8" y="261" width="0.2" height="15.0" fill="rgb(248,189,54)" rx="2" ry="2" /> | |
<text x="1155.80" y="271.5" ></text> | |
</g> | |
<g > | |
<title>vm_mmap_pgoff (316 samples, 0.45%)</title><rect x="291.1" y="213" width="5.3" height="15.0" fill="rgb(247,72,18)" rx="2" ry="2" /> | |
<text x="294.13" y="223.5" ></text> | |
</g> | |
<g > | |
<title>__GI___libc_free (8 samples, 0.01%)</title><rect x="816.6" y="277" width="0.2" height="15.0" fill="rgb(206,12,12)" rx="2" ry="2" /> | |
<text x="819.62" y="287.5" ></text> | |
</g> | |
<g > | |
<title>__GI___clock_gettime (13 samples, 0.02%)</title><rect x="27.6" y="229" width="0.3" height="15.0" fill="rgb(247,40,21)" rx="2" ry="2" /> | |
<text x="30.64" y="239.5" ></text> | |
</g> | |
<g > | |
<title>cranelift_codegen::ir::builder::InstBuilder::fill::h8891fd072647990a (6 samples, 0.01%)</title><rect x="1174.0" y="293" width="0.1" height="15.0" fill="rgb(244,182,52)" rx="2" ry="2" /> | |
<text x="1176.97" y="303.5" ></text> | |
</g> | |
<g > | |
<title>anon_vma_interval_tree_remove (14 samples, 0.02%)</title><rect x="346.7" y="165" width="0.3" height="15.0" fill="rgb(234,115,34)" rx="2" ry="2" /> | |
<text x="349.74" y="175.5" ></text> | |
</g> | |
<g > | |
<title>__memcpy_avx_unaligned (6 samples, 0.01%)</title><rect x="66.7" y="261" width="0.1" height="15.0" fill="rgb(234,42,14)" rx="2" ry="2" /> | |
<text x="69.66" y="271.5" ></text> | |
</g> | |
<g > | |
<title>wasmer_clif_backend::resolver::FuncResolverBuilder::finalize::h91eab78c48207186 (986 samples, 1.41%)</title><rect x="253.8" y="325" width="16.6" height="15.0" fill="rgb(215,65,7)" rx="2" ry="2" /> | |
<text x="256.79" y="335.5" ></text> | |
</g> | |
<g > | |
<title>cranelift_codegen::isa::x86::settings::Flags::new::hb176e87743e4d4a7 (17 samples, 0.02%)</title><rect x="329.7" y="261" width="0.3" height="15.0" fill="rgb(248,80,37)" rx="2" ry="2" /> | |
<text x="332.67" y="271.5" ></text> | |
</g> | |
<g > | |
<title>__GI___libc_malloc (8 samples, 0.01%)</title><rect x="145.2" y="165" width="0.1" height="15.0" fill="rgb(251,162,50)" rx="2" ry="2" /> | |
<text x="148.19" y="175.5" ></text> | |
</g> | |
<g > | |
<title>cranelift_codegen::ir::dfg::DataFlowGraph::make_inst_results::hc774d04d1992dff6 (7 samples, 0.01%)</title><rect x="22.9" y="229" width="0.2" height="15.0" fill="rgb(253,4,18)" rx="2" ry="2" /> | |
<text x="25.95" y="239.5" ></text> | |
</g> | |
<g > | |
<title>std::time::Instant::elapsed::h8e307314b2acf9be (16 samples, 0.02%)</title><rect x="50.3" y="261" width="0.3" height="15.0" fill="rgb(232,219,23)" rx="2" ry="2" /> | |
<text x="53.31" y="271.5" ></text> | |
</g> | |
<g > | |
<title>cranelift_codegen::isa::TargetIsa::pointer_bytes::h9e2dadd981cd4ea3 (6 samples, 0.01%)</title><rect x="96.0" y="165" width="0.1" height="15.0" fill="rgb(207,68,12)" rx="2" ry="2" /> | |
<text x="99.03" y="175.5" ></text> | |
</g> | |
<g > | |
<title>std::sys::unix::time::inner::now::ha10452f37b2930c5 (7 samples, 0.01%)</title><rect x="38.8" y="261" width="0.1" height="15.0" fill="rgb(249,31,32)" rx="2" ry="2" /> | |
<text x="41.81" y="271.5" ></text> | |
</g> | |
<g > | |
<title>std::sys::unix::time::inner::now::ha10452f37b2930c5 (11 samples, 0.02%)</title><rect x="1154.9" y="197" width="0.2" height="15.0" fill="rgb(238,67,50)" rx="2" ry="2" /> | |
<text x="1157.87" y="207.5" ></text> | |
</g> | |
<g > | |
<title>_$LT$parity_wasm..elements..primitives..VarInt32$u20$as$u20$parity_wasm..elements..Serialize$GT$::serialize::he0ef9fcaefd59e6e (152 samples, 0.22%)</title><rect x="944.2" y="341" width="2.5" height="15.0" fill="rgb(239,125,25)" rx="2" ry="2" /> | |
<text x="947.16" y="351.5" ></text> | |
</g> | |
<g > | |
<title>__vdso_clock_gettime (6 samples, 0.01%)</title><rect x="147.1" y="101" width="0.1" height="15.0" fill="rgb(210,212,3)" rx="2" ry="2" /> | |
<text x="150.14" y="111.5" ></text> | |
</g> | |
<g > | |
<title>__GI___libc_malloc (7 samples, 0.01%)</title><rect x="254.0" y="293" width="0.1" height="15.0" fill="rgb(239,179,37)" rx="2" ry="2" /> | |
<text x="257.03" y="303.5" ></text> | |
</g> | |
<g > | |
<title>entry_SYSCALL_64_after_hwframe (375 samples, 0.53%)</title><rect x="283.0" y="277" width="6.3" height="15.0" fill="rgb(236,131,23)" rx="2" ry="2" /> | |
<text x="285.99" y="287.5" ></text> | |
</g> | |
<g > | |
<title>perf_iterate_ctx (135 samples, 0.19%)</title><rect x="351.4" y="133" width="2.3" height="15.0" fill="rgb(253,160,2)" rx="2" ry="2" /> | |
<text x="354.43" y="143.5" ></text> | |
</g> | |
<g > | |
<title>std::sys::unix::time::inner::now::ha10452f37b2930c5 (13 samples, 0.02%)</title><rect x="27.6" y="245" width="0.3" height="15.0" fill="rgb(207,96,52)" rx="2" ry="2" /> | |
<text x="30.64" y="255.5" ></text> | |
</g> | |
<g > | |
<title>std::time::Instant::now::h33d2ba6042def2d2 (9 samples, 0.01%)</title><rect x="1161.8" y="245" width="0.2" height="15.0" fill="rgb(246,189,0)" rx="2" ry="2" /> | |
<text x="1164.85" y="255.5" ></text> | |
</g> | |
<g > | |
<title>alloc::raw_vec::RawVec$LT$T$C$A$GT$::reserve::h5bb4661d248be310 (13 samples, 0.02%)</title><rect x="199.5" y="197" width="0.2" height="15.0" fill="rgb(227,204,23)" rx="2" ry="2" /> | |
<text x="202.51" y="207.5" ></text> | |
</g> | |
<g > | |
<title>_ZN9hashbrown3raw17RawTable$LT$T$GT$14reserve_rehash17h949d57d1e07c193dE.llvm.16938716460618634628 (19 samples, 0.03%)</title><rect x="108.1" y="165" width="0.4" height="15.0" fill="rgb(229,154,10)" rx="2" ry="2" /> | |
<text x="111.14" y="175.5" ></text> | |
</g> | |
<g > | |
<title>c2_chacha::guts::refill_wide::impl_avx2::hcbb75f7591de3cb9 (56 samples, 0.08%)</title><rect x="1140.1" y="341" width="0.9" height="15.0" fill="rgb(206,152,13)" rx="2" ry="2" /> | |
<text x="1143.10" y="351.5" ></text> | |
</g> | |
<g > | |
<title>__rust_realloc (7 samples, 0.01%)</title><rect x="1096.2" y="357" width="0.2" height="15.0" fill="rgb(215,41,6)" rx="2" ry="2" /> | |
<text x="1099.25" y="367.5" ></text> | |
</g> | |
<g > | |
<title>_ZN17cranelift_codegen8regalloc9diversion13RegDiversions6divert17h0dfdaeead6ef2c57E.llvm.6468024634034730254 (40 samples, 0.06%)</title><rect x="25.0" y="277" width="0.7" height="15.0" fill="rgb(208,41,34)" rx="2" ry="2" /> | |
<text x="28.02" y="287.5" ></text> | |
</g> | |
<g > | |
<title>rayon::result::_$LT$impl$u20$rayon..iter..FromParallelIterator$LT$core..result..Result$LT$T$C$E$GT$$GT$$u20$for$u20$core..result..Result$LT$C$C$E$GT$$GT$::from_par_iter::h1e10d100eaa83031 (146 samples, 0.21%)</title><rect x="280.1" y="309" width="2.5" height="15.0" fill="rgb(214,121,21)" rx="2" ry="2" /> | |
<text x="283.11" y="319.5" ></text> | |
</g> | |
<g > | |
<title>std::time::Instant::now::h33d2ba6042def2d2 (7 samples, 0.01%)</title><rect x="1160.1" y="245" width="0.1" height="15.0" fill="rgb(242,119,20)" rx="2" ry="2" /> | |
<text x="1163.07" y="255.5" ></text> | |
</g> | |
<g > | |
<title>wasmer_runtime_core::import::ImportObject::new::hbf222489b0e5ea45 (61 samples, 0.09%)</title><rect x="857.1" y="389" width="1.1" height="15.0" fill="rgb(209,12,10)" rx="2" ry="2" /> | |
<text x="860.15" y="399.5" ></text> | |
</g> | |
<g > | |
<title>__GI___libc_malloc (7 samples, 0.01%)</title><rect x="194.2" y="133" width="0.1" height="15.0" fill="rgb(240,115,24)" rx="2" ry="2" /> | |
<text x="197.16" y="143.5" ></text> | |
</g> | |
<g > | |
<title>__GI___libc_malloc (576 samples, 0.82%)</title><rect x="1065.7" y="357" width="9.7" height="15.0" fill="rgb(224,174,33)" rx="2" ry="2" /> | |
<text x="1068.72" y="367.5" ></text> | |
</g> | |
<g > | |
<title>cranelift_entity::sparse::SparseMap$LT$K$C$V$GT$::insert::hd3cdf3966e0187a9 (17 samples, 0.02%)</title><rect x="57.2" y="277" width="0.3" height="15.0" fill="rgb(247,162,18)" rx="2" ry="2" /> | |
<text x="60.19" y="287.5" ></text> | |
</g> | |
<g > | |
<title>std::time::Instant::now::h33d2ba6042def2d2 (9 samples, 0.01%)</title><rect x="130.1" y="165" width="0.1" height="15.0" fill="rgb(244,215,24)" rx="2" ry="2" /> | |
<text x="133.06" y="175.5" ></text> | |
</g> | |
<g > | |
<title>core::fmt::write::h1f444f4312eb6c27 (16 samples, 0.02%)</title><rect x="871.3" y="325" width="0.3" height="15.0" fill="rgb(208,28,32)" rx="2" ry="2" /> | |
<text x="874.29" y="335.5" ></text> | |
</g> | |
<g > | |
<title>__GI___libc_malloc (24 samples, 0.03%)</title><rect x="248.9" y="325" width="0.4" height="15.0" fill="rgb(207,37,8)" rx="2" ry="2" /> | |
<text x="251.90" y="335.5" ></text> | |
</g> | |
<g > | |
<title>std::sys::unix::time::inner::now::ha10452f37b2930c5 (11 samples, 0.02%)</title><rect x="174.1" y="149" width="0.2" height="15.0" fill="rgb(244,80,0)" rx="2" ry="2" /> | |
<text x="177.10" y="159.5" ></text> | |
</g> | |
<g > | |
<title>perf_iterate_sb (146 samples, 0.21%)</title><rect x="285.0" y="181" width="2.5" height="15.0" fill="rgb(219,206,15)" rx="2" ry="2" /> | |
<text x="288.00" y="191.5" ></text> | |
</g> | |
<g > | |
<title>__GI___libc_malloc (10 samples, 0.01%)</title><rect x="281.5" y="277" width="0.2" height="15.0" fill="rgb(224,183,28)" rx="2" ry="2" /> | |
<text x="284.54" y="287.5" ></text> | |
</g> | |
<g > | |
<title>__GI___libc_free (7 samples, 0.01%)</title><rect x="280.2" y="293" width="0.1" height="15.0" fill="rgb(229,192,40)" rx="2" ry="2" /> | |
<text x="283.21" y="303.5" ></text> | |
</g> | |
<g > | |
<title>_int_malloc (30 samples, 0.04%)</title><rect x="150.3" y="117" width="0.5" height="15.0" fill="rgb(216,217,35)" rx="2" ry="2" /> | |
<text x="153.27" y="127.5" ></text> | |
</g> | |
<g > | |
<title>cranelift_codegen::ir::builder::InstBuilder::spill::hddbf9a7f97d9d38b (45 samples, 0.06%)</title><rect x="1174.1" y="277" width="0.7" height="15.0" fill="rgb(219,42,45)" rx="2" ry="2" /> | |
<text x="1177.07" y="287.5" ></text> | |
</g> | |
<g > | |
<title>cranelift_codegen::flowgraph::ControlFlowGraph::add_edge::hf2c2f4cb34e85a4f (7 samples, 0.01%)</title><rect x="121.4" y="181" width="0.2" height="15.0" fill="rgb(209,41,16)" rx="2" ry="2" /> | |
<text x="124.44" y="191.5" ></text> | |
</g> | |
<g > | |
<title>alloc::raw_vec::RawVec$LT$T$C$A$GT$::reserve::h500ef385b8747b29 (17 samples, 0.02%)</title><rect x="324.4" y="293" width="0.3" height="15.0" fill="rgb(232,87,18)" rx="2" ry="2" /> | |
<text x="327.42" y="303.5" ></text> | |
</g> | |
<g > | |
<title>_int_realloc (27 samples, 0.04%)</title><rect x="1171.7" y="245" width="0.4" height="15.0" fill="rgb(208,144,35)" rx="2" ry="2" /> | |
<text x="1174.69" y="255.5" ></text> | |
</g> | |
<g > | |
<title>_int_realloc (12 samples, 0.02%)</title><rect x="321.4" y="245" width="0.2" height="15.0" fill="rgb(210,24,29)" rx="2" ry="2" /> | |
<text x="324.45" y="255.5" ></text> | |
</g> | |
<g > | |
<title>__vma_link_rb (8 samples, 0.01%)</title><rect x="353.9" y="149" width="0.1" height="15.0" fill="rgb(245,191,3)" rx="2" ry="2" /> | |
<text x="356.89" y="159.5" ></text> | |
</g> | |
<g > | |
<title>std::time::Instant::elapsed::h8e307314b2acf9be (13 samples, 0.02%)</title><rect x="37.6" y="277" width="0.2" height="15.0" fill="rgb(212,2,3)" rx="2" ry="2" /> | |
<text x="40.58" y="287.5" ></text> | |
</g> | |
<g > | |
<title>__vdso_clock_gettime (12 samples, 0.02%)</title><rect x="320.1" y="213" width="0.2" height="15.0" fill="rgb(207,53,50)" rx="2" ry="2" /> | |
<text x="323.14" y="223.5" ></text> | |
</g> | |
<g > | |
<title>cranelift_codegen::ir::instructions::InstructionData::arguments_mut::hd68ce32862759160 (19 samples, 0.03%)</title><rect x="168.4" y="197" width="0.4" height="15.0" fill="rgb(237,121,31)" rx="2" ry="2" /> | |
<text x="171.43" y="207.5" ></text> | |
</g> | |
<g > | |
<title>cranelift_entity::list::ListPool$LT$T$GT$::alloc::hf8b79c8ce8fc5d1f (21 samples, 0.03%)</title><rect x="322.3" y="277" width="0.3" height="15.0" fill="rgb(234,139,52)" rx="2" ry="2" /> | |
<text x="325.29" y="287.5" ></text> | |
</g> | |
<g > | |
<title>_int_realloc (18 samples, 0.03%)</title><rect x="323.2" y="261" width="0.3" height="15.0" fill="rgb(239,126,5)" rx="2" ry="2" /> | |
<text x="326.21" y="271.5" ></text> | |
</g> | |
<g > | |
<title>_ZN17cranelift_codegen8regalloc9diversion13RegDiversions6divert17h0dfdaeead6ef2c57E.llvm.6468024634034730254 (9 samples, 0.01%)</title><rect x="1171.0" y="293" width="0.1" height="15.0" fill="rgb(219,185,39)" rx="2" ry="2" /> | |
<text x="1173.98" y="303.5" ></text> | |
</g> | |
<g > | |
<title>_$LT$wasmer_clif_backend..relocation..LocalTrapSink$u20$as$u20$cranelift_codegen..binemit..memorysink..TrapSink$GT$::trap::h3a8b24a0da581ead (44 samples, 0.06%)</title><rect x="70.9" y="213" width="0.8" height="15.0" fill="rgb(209,203,12)" rx="2" ry="2" /> | |
<text x="73.91" 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$::finalize::hbd8b1f6eb4859c5a (1,137 samples, 1.62%)</title><rect x="1147.8" y="357" width="19.2" height="15.0" fill="rgb(216,33,22)" rx="2" ry="2" /> | |
<text x="1150.84" y="367.5" ></text> | |
</g> | |
<g > | |
<title>_ZN4core3ptr18real_drop_in_place17h8f5edcc205986b39E.llvm.4989837014162833530 (371 samples, 0.53%)</title><rect x="179.3" y="309" width="6.2" height="15.0" fill="rgb(236,175,44)" rx="2" ry="2" /> | |
<text x="182.28" y="319.5" ></text> | |
</g> | |
<g > | |
<title>alloc::raw_vec::RawVec$LT$T$C$A$GT$::reserve::h500ef385b8747b29 (40 samples, 0.06%)</title><rect x="150.9" y="165" width="0.6" height="15.0" fill="rgb(235,150,51)" rx="2" ry="2" /> | |
<text x="153.86" y="175.5" ></text> | |
</g> | |
<g > | |
<title>cranelift_codegen::licm::do_licm::hb96edf4ef4d89000 (80 samples, 0.11%)</title><rect x="37.6" y="309" width="1.3" height="15.0" fill="rgb(219,154,43)" rx="2" ry="2" /> | |
<text x="40.58" y="319.5" ></text> | |
</g> | |
<g > | |
<title>rocinante::stoke::transform::Transform::operate::hbf80625ac53e38d8 (26 samples, 0.04%)</title><rect x="201.0" y="245" width="0.4" height="15.0" fill="rgb(223,126,38)" rx="2" ry="2" /> | |
<text x="203.99" y="255.5" ></text> | |
</g> | |
<g > | |
<title>cranelift_codegen::isa::TargetIsa::default_call_conv::hfa8efbeaadab4902 (10 samples, 0.01%)</title><rect x="327.2" y="309" width="0.1" height="15.0" fill="rgb(209,106,42)" rx="2" ry="2" /> | |
<text x="330.18" y="319.5" ></text> | |
</g> | |
<g > | |
<title>alloc::raw_vec::RawVec$LT$T$C$A$GT$::reserve::h0c445b41f7c28667 (7 samples, 0.01%)</title><rect x="1176.1" y="277" width="0.1" height="15.0" fill="rgb(250,72,26)" rx="2" ry="2" /> | |
<text x="1179.09" y="287.5" ></text> | |
</g> | |
<g > | |
<title>cranelift_codegen::ir::dfg::DataFlowGraph::ctrl_typevar::h001f83f02149e995 (17 samples, 0.02%)</title><rect x="85.4" y="165" width="0.3" height="15.0" fill="rgb(239,71,33)" rx="2" ry="2" /> | |
<text x="88.42" y="175.5" ></text> | |
</g> | |
<g > | |
<title>_int_malloc (12 samples, 0.02%)</title><rect x="249.1" y="309" width="0.2" height="15.0" fill="rgb(253,74,42)" rx="2" ry="2" /> | |
<text x="252.10" 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 (6,849 samples, 9.76%)</title><rect x="61.0" y="309" width="115.2" height="15.0" fill="rgb(218,179,33)" rx="2" ry="2" /> | |
<text x="64.02" y="319.5" >_$LT$rayon..it..</text> | |
</g> | |
<g > | |
<title>_ZN9hashbrown3raw17RawTable$LT$T$GT$14reserve_rehash17h949d57d1e07c193dE.llvm.16938716460618634628 (21 samples, 0.03%)</title><rect x="101.3" y="165" width="0.4" height="15.0" fill="rgb(227,56,47)" rx="2" ry="2" /> | |
<text x="104.30" y="175.5" ></text> | |
</g> | |
<g > | |
<title>_$LT$wasmer_runtime_core..types..FuncSig$u20$as$u20$core..hash..Hash$GT$::hash::h1e327e01a11a280a (7 samples, 0.01%)</title><rect x="877.9" y="309" width="0.1" height="15.0" fill="rgb(252,140,22)" rx="2" ry="2" /> | |
<text x="880.90" y="319.5" ></text> | |
</g> | |
<g > | |
<title>__GI___clock_gettime (9 samples, 0.01%)</title><rect x="1161.8" y="197" width="0.2" height="15.0" fill="rgb(252,176,36)" rx="2" ry="2" /> | |
<text x="1164.85" y="207.5" ></text> | |
</g> | |
<g > | |
<title>prepare_exit_to_usermode (14 samples, 0.02%)</title><rect x="10.8" y="389" width="0.3" height="15.0" fill="rgb(247,30,44)" rx="2" ry="2" /> | |
<text x="13.84" y="399.5" ></text> | |
</g> | |
<g > | |
<title>_int_free (26 samples, 0.04%)</title><rect x="182.1" y="261" width="0.5" height="15.0" fill="rgb(215,63,11)" rx="2" ry="2" /> | |
<text x="185.12" y="271.5" ></text> | |
</g> | |
<g > | |
<title>alloc::raw_vec::RawVec$LT$T$C$A$GT$::reserve::h5bb4661d248be310 (1,099 samples, 1.57%)</title><rect x="1025.2" y="357" width="18.5" height="15.0" fill="rgb(244,32,20)" rx="2" ry="2" /> | |
<text x="1028.25" y="367.5" ></text> | |
</g> | |
<g > | |
<title>cranelift_codegen::binemit::relaxation::relax_branches::hf8ed24268a55ae64 (254 samples, 0.36%)</title><rect x="99.1" y="213" width="4.2" height="15.0" fill="rgb(210,216,54)" rx="2" ry="2" /> | |
<text x="102.08" y="223.5" ></text> | |
</g> | |
<g > | |
<title>__memcpy_avx_unaligned (70 samples, 0.10%)</title><rect x="1051.0" y="389" width="1.2" height="15.0" fill="rgb(245,37,9)" rx="2" ry="2" /> | |
<text x="1053.98" y="399.5" ></text> | |
</g> | |
<g > | |
<title>std::sys::unix::time::inner::now::ha10452f37b2930c5 (10 samples, 0.01%)</title><rect x="103.2" y="165" width="0.1" height="15.0" fill="rgb(238,79,32)" rx="2" ry="2" /> | |
<text x="106.18" y="175.5" ></text> | |
</g> | |
<g > | |
<title>std::sys::unix::time::inner::now::ha10452f37b2930c5 (11 samples, 0.02%)</title><rect x="1153.8" y="197" width="0.2" height="15.0" fill="rgb(236,116,19)" rx="2" ry="2" /> | |
<text x="1156.81" y="207.5" ></text> | |
</g> | |
<g > | |
<title>cranelift_codegen::isa::encoding::base_size::he0d0831e71de2a0c (15 samples, 0.02%)</title><rect x="26.3" y="277" width="0.3" height="15.0" fill="rgb(224,110,23)" rx="2" ry="2" /> | |
<text x="29.31" y="287.5" ></text> | |
</g> | |
<g > | |
<title>std::sys::unix::time::inner::now::ha10452f37b2930c5 (8 samples, 0.01%)</title><rect x="120.6" y="165" width="0.2" height="15.0" fill="rgb(205,121,12)" rx="2" ry="2" /> | |
<text x="123.62" y="175.5" ></text> | |
</g> | |
<g > | |
<title>__GI___clock_gettime (16 samples, 0.02%)</title><rect x="116.7" y="165" width="0.3" height="15.0" fill="rgb(211,176,2)" rx="2" ry="2" /> | |
<text x="119.72" y="175.5" ></text> | |
</g> | |
<g > | |
<title>_int_realloc (8 samples, 0.01%)</title><rect x="85.2" y="133" width="0.2" height="15.0" fill="rgb(208,115,20)" rx="2" ry="2" /> | |
<text x="88.24" y="143.5" ></text> | |
</g> | |
<g > | |
<title>_int_malloc (9 samples, 0.01%)</title><rect x="149.2" y="133" width="0.2" height="15.0" fill="rgb(217,130,42)" rx="2" ry="2" /> | |
<text x="152.23" y="143.5" ></text> | |
</g> | |
<g > | |
<title>std::time::Instant::elapsed::h8e307314b2acf9be (7 samples, 0.01%)</title><rect x="33.5" y="261" width="0.1" height="15.0" fill="rgb(225,81,36)" rx="2" ry="2" /> | |
<text x="36.51" y="271.5" ></text> | |
</g> | |
<g > | |
<title>alloc::raw_vec::RawVec$LT$T$C$A$GT$::reserve::h0c445b41f7c28667 (26 samples, 0.04%)</title><rect x="297.9" y="277" width="0.4" height="15.0" fill="rgb(219,72,18)" rx="2" ry="2" /> | |
<text x="300.85" y="287.5" ></text> | |
</g> | |
<g > | |
<title>__anon_vma_interval_tree_augment_rotate (7 samples, 0.01%)</title><rect x="269.4" y="149" width="0.1" height="15.0" fill="rgb(249,93,32)" rx="2" ry="2" /> | |
<text x="272.42" y="159.5" ></text> | |
</g> | |
<g > | |
<title>__GI___libc_free (58 samples, 0.08%)</title><rect x="311.6" y="277" width="1.0" height="15.0" fill="rgb(211,17,40)" rx="2" ry="2" /> | |
<text x="314.58" y="287.5" ></text> | |
</g> | |
<g > | |
<title>_ZN17cranelift_codegen24redundant_reload_remover22RedundantReloadRemover37do_redundant_fill_removal_on_function17h0915e7840d7db9a4E.llvm.15195122248153170019 (373 samples, 0.53%)</title><rect x="73.4" y="229" width="6.3" height="15.0" fill="rgb(222,102,40)" rx="2" ry="2" /> | |
<text x="76.40" y="239.5" ></text> | |
</g> | |
<g > | |
<title>__mmap (374 samples, 0.53%)</title><rect x="348.3" y="293" width="6.3" height="15.0" fill="rgb(248,7,35)" rx="2" ry="2" /> | |
<text x="351.27" y="303.5" ></text> | |
</g> | |
<g > | |
<title>std::sys::unix::thread::Thread::new::thread_start::h61c012ef60f933c0 (42 samples, 0.06%)</title><rect x="188.3" y="405" width="0.7" height="15.0" fill="rgb(228,218,11)" rx="2" ry="2" /> | |
<text x="191.34" y="415.5" ></text> | |
</g> | |
<g > | |
<title>cranelift_codegen::ir::dfg::DataFlowGraph::append_ebb_param::h7014c3b1302a9186 (62 samples, 0.09%)</title><rect x="806.1" y="293" width="1.1" height="15.0" fill="rgb(247,205,7)" rx="2" ry="2" /> | |
<text x="809.14" y="303.5" ></text> | |
</g> | |
<g > | |
<title>cranelift_codegen::isa::x86::settings::Flags::new::hb176e87743e4d4a7 (13 samples, 0.02%)</title><rect x="356.0" y="277" width="0.2" height="15.0" fill="rgb(226,93,6)" rx="2" ry="2" /> | |
<text x="358.95" y="287.5" ></text> | |
</g> | |
<g > | |
<title>__GI___libc_malloc (494 samples, 0.70%)</title><rect x="605.9" y="293" width="8.3" height="15.0" fill="rgb(231,186,33)" rx="2" ry="2" /> | |
<text x="608.85" y="303.5" ></text> | |
</g> | |
<g > | |
<title>cranelift_entity::list::EntityList$LT$T$GT$::push::h051541d55e7ee057 (18 samples, 0.03%)</title><rect x="133.6" y="181" width="0.3" height="15.0" fill="rgb(248,77,3)" rx="2" ry="2" /> | |
<text x="136.55" y="191.5" ></text> | |
</g> | |
<g > | |
<title>cranelift_codegen::ir::instructions::InstructionData::arguments::h70ecdef19e20b02a (6 samples, 0.01%)</title><rect x="107.0" y="165" width="0.1" height="15.0" fill="rgb(244,84,50)" rx="2" ry="2" /> | |
<text x="110.03" y="175.5" ></text> | |
</g> | |
<g > | |
<title>cranelift_codegen::context::Context::compile_and_emit::h5499205207e7951f (6,433 samples, 9.17%)</title><rect x="67.9" y="261" width="108.2" height="15.0" fill="rgb(247,9,24)" rx="2" ry="2" /> | |
<text x="70.90" y="271.5" >cranelift_cod..</text> | |
</g> | |
<g > | |
<title>perf_iterate_ctx (255 samples, 0.36%)</title><rect x="340.0" y="165" width="4.3" height="15.0" fill="rgb(239,165,28)" rx="2" ry="2" /> | |
<text x="343.03" y="175.5" ></text> | |
</g> | |
<g > | |
<title>wasmparser::binary_reader::BinaryReader::read_file_header::h1f914f45bc503d90 (96 samples, 0.14%)</title><rect x="459.9" y="293" width="1.7" height="15.0" fill="rgb(205,192,19)" rx="2" ry="2" /> | |
<text x="462.95" y="303.5" ></text> | |
</g> | |
<g > | |
<title>std::sys::unix::time::inner::now::ha10452f37b2930c5 (7 samples, 0.01%)</title><rect x="37.5" y="245" width="0.1" height="15.0" fill="rgb(240,211,29)" rx="2" ry="2" /> | |
<text x="40.46" y="255.5" ></text> | |
</g> | |
<g > | |
<title>wasmer_clif_backend::trampoline::Trampolines::new::h8a78526849fe89b9 (414 samples, 0.59%)</title><rect x="1169.5" y="373" width="6.9" height="15.0" fill="rgb(211,146,45)" rx="2" ry="2" /> | |
<text x="1172.47" y="383.5" ></text> | |
</g> | |
<g > | |
<title>_int_malloc (8 samples, 0.01%)</title><rect x="118.3" y="133" width="0.1" height="15.0" fill="rgb(246,8,48)" rx="2" ry="2" /> | |
<text x="121.27" y="143.5" ></text> | |
</g> | |
<g > | |
<title>wasmer_clif_fork_frontend::ssa::SSABuilder::def_var::h67475927161b24eb (64 samples, 0.09%)</title><rect x="811.4" y="309" width="1.1" height="15.0" fill="rgb(228,157,54)" rx="2" ry="2" /> | |
<text x="814.39" y="319.5" ></text> | |
</g> | |
<g > | |
<title>__GI___libc_free (21 samples, 0.03%)</title><rect x="221.6" y="373" width="0.4" height="15.0" fill="rgb(209,78,52)" rx="2" ry="2" /> | |
<text x="224.62" y="383.5" ></text> | |
</g> | |
<g > | |
<title>__GI___libc_realloc (7 samples, 0.01%)</title><rect x="133.3" y="165" width="0.1" height="15.0" fill="rgb(242,156,13)" rx="2" ry="2" /> | |
<text x="136.27" y="175.5" ></text> | |
</g> | |
<g > | |
<title>alloc::raw_vec::RawVec$LT$T$C$A$GT$::reserve::hae39d8e15426d2f6 (6 samples, 0.01%)</title><rect x="1174.1" y="245" width="0.1" height="15.0" fill="rgb(216,104,18)" rx="2" ry="2" /> | |
<text x="1177.07" 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 (38 samples, 0.05%)</title><rect x="141.0" y="181" width="0.6" height="15.0" fill="rgb(243,48,46)" rx="2" ry="2" /> | |
<text x="143.99" y="191.5" ></text> | |
</g> | |
<g > | |
<title>cranelift_codegen::regalloc::virtregs::VirtRegs::union::ha7e897024c5fb158 (90 samples, 0.13%)</title><rect x="133.9" y="197" width="1.5" height="15.0" fill="rgb(231,190,50)" rx="2" ry="2" /> | |
<text x="136.86" y="207.5" ></text> | |
</g> | |
<g > | |
<title>_$LT$wasmer_runtime_core..codegen..StreamingCompiler$LT$MCG$C$FCG$C$RM$C$E$C$CGEN$GT$$u20$as$u20$wasmer_runtime_core..backend..Compiler$GT$::compile::h8e59f93f7f287bf9 (36,196 samples, 51.58%)</title><rect x="245.7" y="357" width="608.7" height="15.0" fill="rgb(249,8,16)" rx="2" ry="2" /> | |
<text x="248.67" y="367.5" >_$LT$wasmer_runtime_core..codegen..StreamingCompiler$LT$MCG$C$FCG$C$RM$C$E$C$CGEN$G..</text> | |
</g> | |
<g > | |
<title>__rdl_alloc (10 samples, 0.01%)</title><rect x="659.2" y="261" width="0.2" height="15.0" fill="rgb(233,120,27)" rx="2" ry="2" /> | |
<text x="662.20" y="271.5" ></text> | |
</g> | |
<g > | |
<title>rand::seq::index::sample::h38bee490f9049f66 (9 samples, 0.01%)</title><rect x="201.2" y="213" width="0.2" height="15.0" fill="rgb(217,148,9)" rx="2" ry="2" /> | |
<text x="204.24" y="223.5" ></text> | |
</g> | |
<g > | |
<title>__GI___clock_gettime (14 samples, 0.02%)</title><rect x="172.7" y="165" width="0.2" height="15.0" fill="rgb(219,121,44)" rx="2" ry="2" /> | |
<text x="175.67" y="175.5" ></text> | |
</g> | |
<g > | |
<title>__vma_adjust (51 samples, 0.07%)</title><rect x="346.3" y="181" width="0.9" height="15.0" fill="rgb(213,228,5)" rx="2" ry="2" /> | |
<text x="349.34" y="191.5" ></text> | |
</g> | |
<g > | |
<title>cranelift_codegen::ir::instructions::InstructionData::hash::h6390f709ac90b71c (25 samples, 0.04%)</title><rect x="172.2" y="197" width="0.4" height="15.0" fill="rgb(217,53,47)" rx="2" ry="2" /> | |
<text x="175.21" y="207.5" ></text> | |
</g> | |
<g > | |
<title>_int_free (37 samples, 0.05%)</title><rect x="183.5" y="261" width="0.7" height="15.0" fill="rgb(218,68,4)" rx="2" ry="2" /> | |
<text x="186.53" y="271.5" ></text> | |
</g> | |
<g > | |
<title>std::time::Instant::elapsed::h8e307314b2acf9be (12 samples, 0.02%)</title><rect x="100.9" y="181" width="0.2" height="15.0" fill="rgb(232,44,53)" rx="2" ry="2" /> | |
<text x="103.91" y="191.5" ></text> | |
</g> | |
<g > | |
<title>alloc::raw_vec::RawVec$LT$T$C$A$GT$::reserve::hea3f43976955e3d2 (12 samples, 0.02%)</title><rect x="54.4" y="277" width="0.2" height="15.0" fill="rgb(236,17,13)" rx="2" ry="2" /> | |
<text x="57.43" y="287.5" ></text> | |
</g> | |
<g > | |
<title>core::ptr::real_drop_in_place::hcdd9925b441325fd (76 samples, 0.11%)</title><rect x="777.0" y="325" width="1.3" height="15.0" fill="rgb(224,213,44)" rx="2" ry="2" /> | |
<text x="780.01" y="335.5" ></text> | |
</g> | |
<g > | |
<title>_$LT$core..iter..adapters..Cloned$LT$I$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$::fold::h70a7f85ebaece8d1 (341 samples, 0.49%)</title><rect x="1060.0" y="357" width="5.7" height="15.0" fill="rgb(207,68,6)" rx="2" ry="2" /> | |
<text x="1062.99" y="367.5" ></text> | |
</g> | |
<g > | |
<title>__GI___clock_gettime (6 samples, 0.01%)</title><rect x="37.5" y="229" width="0.1" height="15.0" fill="rgb(224,87,47)" rx="2" ry="2" /> | |
<text x="40.48" y="239.5" ></text> | |
</g> | |
<g > | |
<title>__rdl_dealloc (6 samples, 0.01%)</title><rect x="999.0" y="357" width="0.1" height="15.0" fill="rgb(224,46,42)" rx="2" ry="2" /> | |
<text x="1001.98" y="367.5" ></text> | |
</g> | |
<g > | |
<title>release_pages (50 samples, 0.07%)</title><rect x="234.7" y="165" width="0.8" height="15.0" fill="rgb(232,21,35)" rx="2" ry="2" /> | |
<text x="237.66" y="175.5" ></text> | |
</g> | |
<g > | |
<title>_$LT$rocinante..exec..wasmer..Wasmer$u20$as$u20$rocinante..exec..Interpreter$GT$::eval_test_cases::hf136840e36843cad (1,137 samples, 1.62%)</title><rect x="1147.8" y="421" width="19.2" height="15.0" fill="rgb(228,122,14)" rx="2" ry="2" /> | |
<text x="1150.84" y="431.5" ></text> | |
</g> | |
<g > | |
<title>__perf_event_header__init_id (16 samples, 0.02%)</title><rect x="268.2" y="133" width="0.2" height="15.0" fill="rgb(230,4,53)" rx="2" ry="2" /> | |
<text x="271.17" y="143.5" ></text> | |
</g> | |
<g > | |
<title>cranelift_codegen::regalloc::reload::Reload::run::h05729139e9b4ae44 (38 samples, 0.05%)</title><rect x="1178.7" y="325" width="0.7" height="15.0" fill="rgb(249,182,38)" rx="2" ry="2" /> | |
<text x="1181.75" y="335.5" ></text> | |
</g> | |
<g > | |
<title>std::sys::unix::time::inner::Instant::now::h23f1bea5949f1bbd (6 samples, 0.01%)</title><rect x="1164.4" y="229" width="0.1" height="15.0" fill="rgb(228,33,18)" rx="2" ry="2" /> | |
<text x="1167.35" y="239.5" ></text> | |
</g> | |
<g > | |
<title>std::time::Instant::now::h33d2ba6042def2d2 (13 samples, 0.02%)</title><rect x="27.6" y="277" width="0.3" height="15.0" fill="rgb(206,50,24)" rx="2" ry="2" /> | |
<text x="30.64" y="287.5" ></text> | |
</g> | |
<g > | |
<title>__GI___libc_malloc (13 samples, 0.02%)</title><rect x="14.1" y="229" width="0.2" height="15.0" fill="rgb(229,130,27)" rx="2" ry="2" /> | |
<text x="17.07" y="239.5" ></text> | |
</g> | |
<g > | |
<title>cranelift_bforest::path::Path$LT$F$GT$::next::h50188cd678c454ba (17 samples, 0.02%)</title><rect x="76.8" y="213" width="0.3" height="15.0" fill="rgb(240,192,5)" rx="2" ry="2" /> | |
<text x="79.85" y="223.5" ></text> | |
</g> | |
<g > | |
<title>cranelift_codegen::constant_hash::probe::hd04e9b03fd50ee53 (26 samples, 0.04%)</title><rect x="328.4" y="261" width="0.5" height="15.0" fill="rgb(208,99,28)" rx="2" ry="2" /> | |
<text x="331.44" y="271.5" ></text> | |
</g> | |
<g > | |
<title>_int_malloc (15 samples, 0.02%)</title><rect x="84.3" y="101" width="0.3" height="15.0" fill="rgb(224,51,54)" rx="2" ry="2" /> | |
<text x="87.31" y="111.5" ></text> | |
</g> | |
<g > | |
<title>rocinante::stoke::Superoptimizer::synthesize::h4ba34d72c5765be9 (1,137 samples, 1.62%)</title><rect x="1147.8" y="437" width="19.2" height="15.0" fill="rgb(230,82,34)" rx="2" ry="2" /> | |
<text x="1150.84" y="447.5" ></text> | |
</g> | |
<g > | |
<title>_$LT$alloc..vec..Vec$LT$T$GT$$u20$as$u20$core..clone..Clone$GT$::clone::h514986f3b28de5ec (28 samples, 0.04%)</title><rect x="798.8" y="277" width="0.5" height="15.0" fill="rgb(222,80,49)" rx="2" ry="2" /> | |
<text x="801.84" y="287.5" ></text> | |
</g> | |
<g > | |
<title>cranelift_codegen::regalloc::coalescing::Coalescing::conventional_ssa::h25e21334b716fc0d (369 samples, 0.53%)</title><rect x="129.3" y="213" width="6.2" height="15.0" fill="rgb(251,164,35)" rx="2" ry="2" /> | |
<text x="132.26" y="223.5" ></text> | |
</g> | |
<g > | |
<title>vma_link (16 samples, 0.02%)</title><rect x="353.8" y="165" width="0.3" height="15.0" fill="rgb(247,162,54)" rx="2" ry="2" /> | |
<text x="356.82" y="175.5" ></text> | |
</g> | |
<g > | |
<title>__rust_alloc (18 samples, 0.03%)</title><rect x="696.3" y="277" width="0.3" height="15.0" fill="rgb(241,120,7)" rx="2" ry="2" /> | |
<text x="699.31" y="287.5" ></text> | |
</g> | |
<g > | |
<title>perf_event_mmap_output (81 samples, 0.12%)</title><rect x="342.9" y="149" width="1.3" height="15.0" fill="rgb(220,18,5)" rx="2" ry="2" /> | |
<text x="345.87" y="159.5" ></text> | |
</g> | |
<g > | |
<title>cranelift_codegen::context::Context::legalize::h3be573a3855dd690 (6 samples, 0.01%)</title><rect x="319.2" y="277" width="0.1" height="15.0" fill="rgb(234,211,1)" rx="2" ry="2" /> | |
<text x="322.19" y="287.5" ></text> | |
</g> | |
<g > | |
<title>cranelift_codegen::regalloc::context::Context::new::h18b3346fa2ea1088 (27 samples, 0.04%)</title><rect x="177.6" y="293" width="0.5" height="15.0" fill="rgb(209,71,40)" rx="2" ry="2" /> | |
<text x="180.61" y="303.5" ></text> | |
</g> | |
<g > | |
<title>cranelift_entity::list::EntityList$LT$T$GT$::push::h051541d55e7ee057 (7 samples, 0.01%)</title><rect x="56.8" y="213" width="0.1" height="15.0" fill="rgb(207,53,4)" rx="2" ry="2" /> | |
<text x="59.82" y="223.5" ></text> | |
</g> | |
<g > | |
<title>__GI___clock_gettime (8 samples, 0.01%)</title><rect x="121.6" y="149" width="0.2" height="15.0" fill="rgb(251,86,47)" rx="2" ry="2" /> | |
<text x="124.63" y="159.5" ></text> | |
</g> | |
<g > | |
<title>cranelift_codegen::isa::x86::abi::insert_common_prologue::hd2cca9ef0991829f (142 samples, 0.20%)</title><rect x="96.1" y="181" width="2.4" height="15.0" fill="rgb(227,198,36)" rx="2" ry="2" /> | |
<text x="99.14" y="191.5" ></text> | |
</g> | |
<g > | |
<title>_ZN4core5slice4sort7recurse17hcfda5acadaf50c0aE.llvm.15195122248153170019 (6 samples, 0.01%)</title><rect x="130.3" y="197" width="0.1" height="15.0" fill="rgb(223,122,43)" rx="2" ry="2" /> | |
<text x="133.29" y="207.5" ></text> | |
</g> | |
<g > | |
<title>__GI___pthread_rwlock_unlock (12 samples, 0.02%)</title><rect x="819.4" y="325" width="0.2" height="15.0" fill="rgb(246,48,0)" rx="2" ry="2" /> | |
<text x="822.41" y="335.5" ></text> | |
</g> | |
<g > | |
<title>__GI___clock_gettime (17 samples, 0.02%)</title><rect x="92.2" y="117" width="0.3" height="15.0" fill="rgb(252,28,46)" rx="2" ry="2" /> | |
<text x="95.20" y="127.5" ></text> | |
</g> | |
<g > | |
<title>free_unref_page_list (17 samples, 0.02%)</title><rect x="228.0" y="117" width="0.3" height="15.0" fill="rgb(225,146,1)" rx="2" ry="2" /> | |
<text x="231.03" y="127.5" ></text> | |
</g> | |
<g > | |
<title>_$LT$rayon..iter..while_some..WhileSome$LT$I$GT$$u20$as$u20$rayon..iter..ParallelIterator$GT$::drive_unindexed::h5bb97cb6437a1950 (46 samples, 0.07%)</title><rect x="280.6" y="277" width="0.8" height="15.0" fill="rgb(220,56,20)" rx="2" ry="2" /> | |
<text x="283.58" y="287.5" ></text> | |
</g> | |
<g > | |
<title>_int_free (1,013 samples, 1.44%)</title><rect x="738.6" y="293" width="17.1" height="15.0" fill="rgb(237,30,7)" rx="2" ry="2" /> | |
<text x="741.62" y="303.5" ></text> | |
</g> | |
<g > | |
<title>__GI___libc_free (488 samples, 0.70%)</title><rect x="1114.7" y="373" width="8.3" height="15.0" fill="rgb(226,136,25)" rx="2" ry="2" /> | |
<text x="1117.74" y="383.5" ></text> | |
</g> | |
<g > | |
<title>alloc::borrow::Cow$LT$B$GT$::to_mut::h2ad6d2b639bc919b (8 samples, 0.01%)</title><rect x="1176.6" y="261" width="0.1" height="15.0" fill="rgb(226,7,51)" rx="2" ry="2" /> | |
<text x="1179.60" y="271.5" ></text> | |
</g> | |
<g > | |
<title>cranelift_codegen::ir::function::Function::import_signature::h2f01a817446550a5 (18 samples, 0.03%)</title><rect x="326.3" y="309" width="0.3" height="15.0" fill="rgb(234,155,44)" rx="2" ry="2" /> | |
<text x="329.32" y="319.5" ></text> | |
</g> | |
<g > | |
<title>alloc::vec::Vec$LT$T$GT$::resize::h9160379633033fa6 (11 samples, 0.02%)</title><rect x="46.5" y="261" width="0.2" height="15.0" fill="rgb(205,181,31)" rx="2" ry="2" /> | |
<text x="49.53" y="271.5" ></text> | |
</g> | |
<g > | |
<title>std::sys::unix::time::inner::now::ha10452f37b2930c5 (7 samples, 0.01%)</title><rect x="1162.1" y="245" width="0.1" height="15.0" fill="rgb(205,172,14)" rx="2" ry="2" /> | |
<text x="1165.12" y="255.5" ></text> | |
</g> | |
<g > | |
<title>__vdso_clock_gettime (9 samples, 0.01%)</title><rect x="164.0" y="133" width="0.1" height="15.0" fill="rgb(243,60,31)" rx="2" ry="2" /> | |
<text x="166.96" y="143.5" ></text> | |
</g> | |
<g > | |
<title>cranelift_codegen::legalizer::legalize_function::h9c05a7523015c4df (18 samples, 0.03%)</title><rect x="1176.4" y="325" width="0.3" height="15.0" fill="rgb(208,198,8)" rx="2" ry="2" /> | |
<text x="1179.43" y="335.5" ></text> | |
</g> | |
<g > | |
<title>alloc_perturb (8 samples, 0.01%)</title><rect x="1075.2" y="325" width="0.1" height="15.0" fill="rgb(250,89,12)" rx="2" ry="2" /> | |
<text x="1078.21" y="335.5" ></text> | |
</g> | |
<g > | |
<title>std::sys::unix::time::inner::now::ha10452f37b2930c5 (16 samples, 0.02%)</title><rect x="172.6" y="181" width="0.3" height="15.0" fill="rgb(218,101,33)" rx="2" ry="2" /> | |
<text x="175.64" y="191.5" ></text> | |
</g> | |
<g > | |
<title>perf_iterate_ctx (150 samples, 0.21%)</title><rect x="337.5" y="181" width="2.5" height="15.0" fill="rgb(214,172,4)" rx="2" ry="2" /> | |
<text x="340.47" y="191.5" ></text> | |
</g> | |
<g > | |
<title>std::time::Instant::now::h33d2ba6042def2d2 (6 samples, 0.01%)</title><rect x="38.1" y="245" width="0.1" height="15.0" fill="rgb(218,191,25)" rx="2" ry="2" /> | |
<text x="41.08" y="255.5" ></text> | |
</g> | |
<g > | |
<title>cranelift_codegen::dominator_tree::DominatorTree::last_dominator::hbcfde909e28ac84e (9 samples, 0.01%)</title><rect x="167.5" y="213" width="0.1" height="15.0" fill="rgb(221,142,50)" rx="2" ry="2" /> | |
<text x="170.49" y="223.5" ></text> | |
</g> | |
<g > | |
<title>_$LT$wasmer_runtime_core..backing..ImportBacking$u20$as$u20$core..ops..drop..Drop$GT$::drop::h2429c72d88307f99 (9 samples, 0.01%)</title><rect x="240.4" y="341" width="0.2" height="15.0" fill="rgb(225,137,26)" rx="2" ry="2" /> | |
<text x="243.42" y="351.5" ></text> | |
</g> | |
<g > | |
<title>std::sys::unix::time::inner::now::ha10452f37b2930c5 (8 samples, 0.01%)</title><rect x="1157.5" y="229" width="0.1" height="15.0" fill="rgb(244,129,53)" rx="2" ry="2" /> | |
<text x="1160.46" y="239.5" ></text> | |
</g> | |
<g > | |
<title>cranelift_entity::list::EntityList$LT$T$GT$::push::h051541d55e7ee057 (42 samples, 0.06%)</title><rect x="83.9" y="181" width="0.7" height="15.0" fill="rgb(243,26,5)" rx="2" ry="2" /> | |
<text x="86.89" y="191.5" ></text> | |
</g> | |
<g > | |
<title>cranelift_codegen::regalloc::live_value_tracker::LiveValueTracker::process_inst::hcd4ba6fb549516b2 (39 samples, 0.06%)</title><rect x="154.2" y="197" width="0.7" height="15.0" fill="rgb(220,129,16)" rx="2" ry="2" /> | |
<text x="157.22" y="207.5" ></text> | |
</g> | |
<g > | |
<title>__GI___libc_realloc (7 samples, 0.01%)</title><rect x="90.0" y="101" width="0.1" height="15.0" fill="rgb(210,74,34)" rx="2" ry="2" /> | |
<text x="92.98" y="111.5" ></text> | |
</g> | |
<g > | |
<title>__GI___libc_malloc (15 samples, 0.02%)</title><rect x="1148.2" y="213" width="0.3" height="15.0" fill="rgb(223,185,50)" rx="2" ry="2" /> | |
<text x="1151.23" y="223.5" ></text> | |
</g> | |
<g > | |
<title>alloc::sync::Arc$LT$T$GT$::drop_slow::hec646e7b3cef8b33 (8 samples, 0.01%)</title><rect x="239.2" y="341" width="0.2" height="15.0" fill="rgb(251,104,40)" rx="2" ry="2" /> | |
<text x="242.23" y="351.5" ></text> | |
</g> | |
<g > | |
<title>flush_tlb_mm_range (67 samples, 0.10%)</title><rect x="262.7" y="165" width="1.1" height="15.0" fill="rgb(218,217,10)" rx="2" ry="2" /> | |
<text x="265.66" y="175.5" ></text> | |
</g> | |
<g > | |
<title>alloc::raw_vec::RawVec$LT$T$C$A$GT$::reserve::ha898170dd69782a8 (10 samples, 0.01%)</title><rect x="1168.3" y="197" width="0.2" height="15.0" fill="rgb(214,65,52)" rx="2" ry="2" /> | |
<text x="1171.34" y="207.5" ></text> | |
</g> | |
<g > | |
<title>wasmer_runtime_core::sys::unix::memory::Memory::with_size::h99a15e322ed7dfca (415 samples, 0.59%)</title><rect x="289.5" y="309" width="7.0" height="15.0" fill="rgb(240,61,21)" rx="2" ry="2" /> | |
<text x="292.53" y="319.5" ></text> | |
</g> | |
<g > | |
<title>std::time::Instant::now::h33d2ba6042def2d2 (20 samples, 0.03%)</title><rect x="114.1" y="181" width="0.3" height="15.0" fill="rgb(224,162,19)" rx="2" ry="2" /> | |
<text x="117.10" y="191.5" ></text> | |
</g> | |
<g > | |
<title>_$LT$cranelift_codegen..timing..details..TimingToken$u20$as$u20$core..ops..drop..Drop$GT$::drop::h1b19c2a93ee0a091 (21 samples, 0.03%)</title><rect x="39.0" y="293" width="0.3" height="15.0" fill="rgb(237,35,6)" rx="2" ry="2" /> | |
<text x="41.98" y="303.5" ></text> | |
</g> | |
<g > | |
<title>cranelift_codegen::isa::TargetIsa::pointer_bytes::h9e2dadd981cd4ea3 (7 samples, 0.01%)</title><rect x="98.3" y="165" width="0.2" height="15.0" fill="rgb(244,114,34)" rx="2" ry="2" /> | |
<text x="101.34" y="175.5" ></text> | |
</g> | |
<g > | |
<title>__GI___clock_gettime (10 samples, 0.01%)</title><rect x="73.2" y="149" width="0.2" height="15.0" fill="rgb(218,127,41)" rx="2" ry="2" /> | |
<text x="76.23" y="159.5" ></text> | |
</g> | |
<g > | |
<title>__GI___libc_free (30 samples, 0.04%)</title><rect x="313.3" y="261" width="0.5" height="15.0" fill="rgb(214,191,8)" rx="2" ry="2" /> | |
<text x="316.26" y="271.5" ></text> | |
</g> | |
<g > | |
<title>cranelift_codegen::ir::dfg::DataFlowGraph::make_inst_results::hc774d04d1992dff6 (14 samples, 0.02%)</title><rect x="20.1" y="229" width="0.3" height="15.0" fill="rgb(234,128,35)" rx="2" ry="2" /> | |
<text x="23.12" y="239.5" ></text> | |
</g> | |
<g > | |
<title>__GI___libc_realloc (6 samples, 0.01%)</title><rect x="809.5" y="261" width="0.1" height="15.0" fill="rgb(231,173,47)" rx="2" ry="2" /> | |
<text x="812.45" y="271.5" ></text> | |
</g> | |
<g > | |
<title>__GI___clock_gettime (7 samples, 0.01%)</title><rect x="117.4" y="133" width="0.2" height="15.0" fill="rgb(246,132,26)" rx="2" ry="2" /> | |
<text x="120.44" y="143.5" ></text> | |
</g> | |
<g > | |
<title>__GI___libc_malloc (6 samples, 0.01%)</title><rect x="1153.0" y="245" width="0.1" height="15.0" fill="rgb(241,67,29)" rx="2" ry="2" /> | |
<text x="1156.02" y="255.5" ></text> | |
</g> | |
<g > | |
<title>flush_tlb_mm_range (60 samples, 0.09%)</title><rect x="228.9" y="149" width="1.0" height="15.0" fill="rgb(252,222,44)" rx="2" ry="2" /> | |
<text x="231.94" y="159.5" ></text> | |
</g> | |
<g > | |
<title>cranelift_codegen::binemit::emit_function::hcd450d74712a091f (235 samples, 0.33%)</title><rect x="68.4" y="245" width="4.0" height="15.0" fill="rgb(250,68,34)" rx="2" ry="2" /> | |
<text x="71.44" y="255.5" ></text> | |
</g> | |
<g > | |
<title>__GI___libc_malloc (14 samples, 0.02%)</title><rect x="65.7" y="229" width="0.3" height="15.0" fill="rgb(222,189,52)" rx="2" ry="2" /> | |
<text x="68.75" y="239.5" ></text> | |
</g> | |
<g > | |
<title>_$LT$alloc..vec..Vec$LT$T$GT$$u20$as$u20$core..clone..Clone$GT$::clone::h95539acf8836d879 (9 samples, 0.01%)</title><rect x="64.4" y="245" width="0.2" height="15.0" fill="rgb(218,22,30)" rx="2" ry="2" /> | |
<text x="67.44" y="255.5" ></text> | |
</g> | |
<g > | |
<title>std::time::Instant::elapsed::h8e307314b2acf9be (13 samples, 0.02%)</title><rect x="1159.3" y="261" width="0.2" height="15.0" fill="rgb(238,197,35)" rx="2" ry="2" /> | |
<text x="1162.28" y="271.5" ></text> | |
</g> | |
<g > | |
<title>_int_free (23 samples, 0.03%)</title><rect x="307.4" y="277" width="0.4" height="15.0" fill="rgb(214,194,35)" rx="2" ry="2" /> | |
<text x="310.42" y="287.5" ></text> | |
</g> | |
<g > | |
<title>_int_malloc (10 samples, 0.01%)</title><rect x="1176.4" y="245" width="0.2" height="15.0" fill="rgb(211,0,12)" rx="2" ry="2" /> | |
<text x="1179.43" y="255.5" ></text> | |
</g> | |
<g > | |
<title>__GI___libc_free (14 samples, 0.02%)</title><rect x="314.8" y="277" width="0.2" height="15.0" fill="rgb(209,95,28)" rx="2" ry="2" /> | |
<text x="317.75" y="287.5" ></text> | |
</g> | |
<g > | |
<title>_int_malloc (6 samples, 0.01%)</title><rect x="167.2" y="181" width="0.1" height="15.0" fill="rgb(244,199,27)" rx="2" ry="2" /> | |
<text x="170.20" 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 (25 samples, 0.04%)</title><rect x="17.5" y="229" width="0.4" height="15.0" fill="rgb(229,161,22)" rx="2" ry="2" /> | |
<text x="20.47" y="239.5" ></text> | |
</g> | |
<g > | |
<title>mpx_notify_unmap (6 samples, 0.01%)</title><rect x="231.5" y="229" width="0.1" height="15.0" fill="rgb(228,115,4)" rx="2" ry="2" /> | |
<text x="234.51" y="239.5" ></text> | |
</g> | |
<g > | |
<title>cranelift_bforest::path::Path$LT$F$GT$::first::h9b45f6bc4766aeed (19 samples, 0.03%)</title><rect x="115.6" y="197" width="0.4" height="15.0" fill="rgb(215,82,48)" rx="2" ry="2" /> | |
<text x="118.64" y="207.5" ></text> | |
</g> | |
<g > | |
<title>cranelift_codegen::loop_analysis::LoopAnalysis::compute::h2ae6e7af869a79fa (34 samples, 0.05%)</title><rect x="1160.8" y="293" width="0.5" height="15.0" fill="rgb(222,192,35)" rx="2" ry="2" /> | |
<text x="1163.76" y="303.5" ></text> | |
</g> | |
<g > | |
<title>alloc::raw_vec::RawVec$LT$T$C$A$GT$::reserve::hdbdff368c481960d (40 samples, 0.06%)</title><rect x="807.3" y="293" width="0.7" height="15.0" fill="rgb(228,44,29)" rx="2" ry="2" /> | |
<text x="810.33" y="303.5" ></text> | |
</g> | |
<g > | |
<title>std::sys::unix::time::inner::Instant::now::h23f1bea5949f1bbd (7 samples, 0.01%)</title><rect x="155.1" y="181" width="0.1" height="15.0" fill="rgb(231,44,5)" rx="2" ry="2" /> | |
<text x="158.13" y="191.5" ></text> | |
</g> | |
<g > | |
<title>std::sys::unix::time::inner::Instant::now::h23f1bea5949f1bbd (7 samples, 0.01%)</title><rect x="1165.7" y="229" width="0.2" height="15.0" fill="rgb(239,69,38)" rx="2" ry="2" /> | |
<text x="1168.73" y="239.5" ></text> | |
</g> | |
<g > | |
<title>_$LT$alloc..vec..Vec$LT$T$GT$$u20$as$u20$core..clone..Clone$GT$::clone::hd0c3d21be1c02339 (18 samples, 0.03%)</title><rect x="65.3" y="245" width="0.3" height="15.0" fill="rgb(208,183,22)" rx="2" ry="2" /> | |
<text x="68.28" y="255.5" ></text> | |
</g> | |
<g > | |
<title>std::sys::unix::time::inner::now::ha10452f37b2930c5 (14 samples, 0.02%)</title><rect x="1158.1" y="213" width="0.3" height="15.0" fill="rgb(220,10,32)" rx="2" ry="2" /> | |
<text x="1161.12" y="223.5" ></text> | |
</g> | |
<g > | |
<title>cranelift_codegen::ir::builder::InstBuilder::iconst::h085df8078cba1853 (22 samples, 0.03%)</title><rect x="89.9" y="133" width="0.3" height="15.0" fill="rgb(224,59,26)" rx="2" ry="2" /> | |
<text x="92.88" y="143.5" ></text> | |
</g> | |
<g > | |
<title>__memcpy_avx_unaligned (11 samples, 0.02%)</title><rect x="812.6" y="293" width="0.1" height="15.0" fill="rgb(249,180,5)" rx="2" ry="2" /> | |
<text x="815.56" y="303.5" ></text> | |
</g> | |
<g > | |
<title>std::time::Instant::elapsed::h8e307314b2acf9be (11 samples, 0.02%)</title><rect x="54.2" y="261" width="0.2" height="15.0" fill="rgb(227,181,3)" rx="2" ry="2" /> | |
<text x="57.24" y="271.5" ></text> | |
</g> | |
<g > | |
<title>__vma_link_rb (9 samples, 0.01%)</title><rect x="223.8" y="181" width="0.2" height="15.0" fill="rgb(236,63,32)" rx="2" ry="2" /> | |
<text x="226.84" y="191.5" ></text> | |
</g> | |
<g > | |
<title>c2_chacha::guts::refill_wide::impl_avx2::hcbb75f7591de3cb9 (7 samples, 0.01%)</title><rect x="1107.3" y="341" width="0.1" height="15.0" fill="rgb(248,103,19)" rx="2" ry="2" /> | |
<text x="1110.33" y="351.5" ></text> | |
</g> | |
<g > | |
<title>__GI___libc_free (48 samples, 0.07%)</title><rect x="309.3" y="261" width="0.8" height="15.0" fill="rgb(207,189,24)" rx="2" ry="2" /> | |
<text x="312.29" y="271.5" ></text> | |
</g> | |
<g > | |
<title>_int_malloc (424 samples, 0.60%)</title><rect x="688.8" y="261" width="7.1" height="15.0" fill="rgb(230,134,50)" rx="2" ry="2" /> | |
<text x="691.78" y="271.5" ></text> | |
</g> | |
<g > | |
<title>alloc::sync::Arc$LT$T$GT$::drop_slow::h5f3b24d142b4e9b8 (582 samples, 0.83%)</title><rect x="222.3" y="341" width="9.8" height="15.0" fill="rgb(216,173,47)" rx="2" ry="2" /> | |
<text x="225.30" y="351.5" ></text> | |
</g> | |
<g > | |
<title>unmap_region (8 samples, 0.01%)</title><rect x="189.5" y="53" width="0.2" height="15.0" fill="rgb(241,10,23)" rx="2" ry="2" /> | |
<text x="192.52" y="63.5" ></text> | |
</g> | |
<g > | |
<title>std::time::Instant::now::h33d2ba6042def2d2 (7 samples, 0.01%)</title><rect x="117.4" y="181" width="0.2" height="15.0" fill="rgb(235,89,44)" rx="2" ry="2" /> | |
<text x="120.44" y="191.5" ></text> | |
</g> | |
<g > | |
<title>core::slice::_$LT$impl$u20$$u5b$T$u5d$$GT$::copy_from_slice::hf2a016039d5668ca (20 samples, 0.03%)</title><rect x="1015.0" y="357" width="0.4" height="15.0" fill="rgb(243,215,26)" rx="2" ry="2" /> | |
<text x="1018.04" y="367.5" ></text> | |
</g> | |
<g > | |
<title>__memcpy_avx_unaligned (38 samples, 0.05%)</title><rect x="1004.3" y="357" width="0.6" height="15.0" fill="rgb(205,53,13)" rx="2" ry="2" /> | |
<text x="1007.26" y="367.5" ></text> | |
</g> | |
<g > | |
<title>_$LT$$RF$mut$u20$cranelift_codegen..cursor..EncCursor$u20$as$u20$cranelift_codegen..ir..builder..InstInserterBase$GT$::insert_built_inst::hbf5c6b2278487fe8 (14 samples, 0.02%)</title><rect x="19.3" y="245" width="0.3" height="15.0" fill="rgb(223,59,8)" rx="2" ry="2" /> | |
<text x="22.33" y="255.5" ></text> | |
</g> | |
<g > | |
<title>cranelift_bforest::set::Set$LT$K$GT$::insert::h750422a26fd1bdc6 (33 samples, 0.05%)</title><rect x="118.5" y="181" width="0.5" height="15.0" fill="rgb(246,42,32)" rx="2" ry="2" /> | |
<text x="121.49" y="191.5" ></text> | |
</g> | |
<g > | |
<title>_int_malloc (8 samples, 0.01%)</title><rect x="65.8" y="213" width="0.2" height="15.0" fill="rgb(217,81,42)" rx="2" ry="2" /> | |
<text x="68.85" y="223.5" ></text> | |
</g> | |
<g > | |
<title>std::sys::unix::time::inner::Instant::now::h23f1bea5949f1bbd (7 samples, 0.01%)</title><rect x="37.5" y="261" width="0.1" height="15.0" fill="rgb(230,175,8)" rx="2" ry="2" /> | |
<text x="40.46" y="271.5" ></text> | |
</g> | |
<g > | |
<title>alloc::raw_vec::RawVec$LT$T$C$A$GT$::reserve::h500ef385b8747b29 (12 samples, 0.02%)</title><rect x="144.0" y="165" width="0.2" height="15.0" fill="rgb(239,40,0)" rx="2" ry="2" /> | |
<text x="147.05" y="175.5" ></text> | |
</g> | |
<g > | |
<title>std::sys::unix::time::inner::now::ha10452f37b2930c5 (7 samples, 0.01%)</title><rect x="117.4" y="149" width="0.2" height="15.0" fill="rgb(238,58,36)" rx="2" ry="2" /> | |
<text x="120.44" y="159.5" ></text> | |
</g> | |
<g > | |
<title>__GI___libc_free (60 samples, 0.09%)</title><rect x="308.0" y="277" width="1.1" height="15.0" fill="rgb(220,130,12)" rx="2" ry="2" /> | |
<text x="311.04" y="287.5" ></text> | |
</g> | |
<g > | |
<title>mem_cgroup_commit_charge (8 samples, 0.01%)</title><rect x="305.7" y="213" width="0.2" height="15.0" fill="rgb(232,220,29)" rx="2" ry="2" /> | |
<text x="308.72" y="223.5" ></text> | |
</g> | |
<g > | |
<title>alloc::raw_vec::RawVec$LT$T$C$A$GT$::reserve::h500ef385b8747b29 (30 samples, 0.04%)</title><rect x="16.8" y="213" width="0.5" height="15.0" fill="rgb(239,9,46)" rx="2" ry="2" /> | |
<text x="19.79" y="223.5" ></text> | |
</g> | |
<g > | |
<title>std::sys::unix::time::inner::Instant::now::h23f1bea5949f1bbd (9 samples, 0.01%)</title><rect x="38.2" y="261" width="0.2" height="15.0" fill="rgb(215,93,4)" rx="2" ry="2" /> | |
<text x="41.24" y="271.5" ></text> | |
</g> | |
<g > | |
<title>do_syscall_64 (525 samples, 0.75%)</title><rect x="261.4" y="261" width="8.9" height="15.0" fill="rgb(254,49,49)" rx="2" ry="2" /> | |
<text x="264.44" y="271.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 (11 samples, 0.02%)</title><rect x="88.4" y="133" width="0.2" height="15.0" fill="rgb(254,80,14)" rx="2" ry="2" /> | |
<text x="91.43" y="143.5" ></text> | |
</g> | |
<g > | |
<title>alloc::vec::Vec$LT$T$GT$::resize::h9160379633033fa6 (14 samples, 0.02%)</title><rect x="141.7" y="181" width="0.2" height="15.0" fill="rgb(219,151,31)" rx="2" ry="2" /> | |
<text x="144.71" y="191.5" ></text> | |
</g> | |
<g > | |
<title>Z3_solver_check (12 samples, 0.02%)</title><rect x="887.1" y="373" width="0.2" height="15.0" fill="rgb(227,53,13)" rx="2" ry="2" /> | |
<text x="890.11" y="383.5" ></text> | |
</g> | |
<g > | |
<title>_int_free (6 samples, 0.01%)</title><rect x="240.3" y="325" width="0.1" height="15.0" fill="rgb(251,183,15)" rx="2" ry="2" /> | |
<text x="243.27" y="335.5" ></text> | |
</g> | |
<g > | |
<title>cranelift_codegen::ir::dfg::DataFlowGraph::resolve_aliases_in_arguments::ha1a59fc1c5edab63 (15 samples, 0.02%)</title><rect x="147.4" y="197" width="0.2" height="15.0" fill="rgb(218,136,41)" rx="2" ry="2" /> | |
<text x="150.36" y="207.5" ></text> | |
</g> | |
<g > | |
<title>wasmparser::parser::Parser::current_position::h11734210ed9d92b6 (464 samples, 0.66%)</title><rect x="701.5" y="309" width="7.8" height="15.0" fill="rgb(216,113,25)" rx="2" ry="2" /> | |
<text x="704.51" y="319.5" ></text> | |
</g> | |
<g > | |
<title>_ZN9hashbrown3raw17RawTable$LT$T$GT$17try_with_capacity17h973883eb89d53af0E.llvm.15158078102622578017 (34 samples, 0.05%)</title><rect x="299.4" y="309" width="0.6" height="15.0" fill="rgb(245,147,27)" rx="2" ry="2" /> | |
<text x="302.40" y="319.5" ></text> | |
</g> | |
<g > | |
<title>cranelift_codegen::regalloc::spilling::Spilling::run::hbc5ba3177617b881 (167 samples, 0.24%)</title><rect x="57.5" y="293" width="2.8" height="15.0" fill="rgb(221,88,34)" rx="2" ry="2" /> | |
<text x="60.54" y="303.5" ></text> | |
</g> | |
<g > | |
<title>__GI___libc_malloc (12 samples, 0.02%)</title><rect x="808.1" y="261" width="0.2" height="15.0" fill="rgb(210,170,52)" rx="2" ry="2" /> | |
<text x="811.11" y="271.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 (42 samples, 0.06%)</title><rect x="188.3" y="373" width="0.7" height="15.0" fill="rgb(248,50,38)" rx="2" ry="2" /> | |
<text x="191.34" 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 (11 samples, 0.02%)</title><rect x="755.7" y="293" width="0.1" height="15.0" fill="rgb(248,171,2)" rx="2" ry="2" /> | |
<text x="758.66" y="303.5" ></text> | |
</g> | |
<g > | |
<title>alloc_perturb (7 samples, 0.01%)</title><rect x="1139.1" y="325" width="0.2" height="15.0" fill="rgb(249,187,24)" rx="2" ry="2" /> | |
<text x="1142.15" y="335.5" ></text> | |
</g> | |
<g > | |
<title>wasmer_runtime_core::instance::DynFunc::call::hd3653a4c23d70200 (796 samples, 1.13%)</title><rect x="858.2" y="389" width="13.4" height="15.0" fill="rgb(248,78,43)" rx="2" ry="2" /> | |
<text x="861.17" y="399.5" ></text> | |
</g> | |
<g > | |
<title>_ZN17cranelift_codegen9flowgraph16ControlFlowGraph11compute_ebb17he662711fe9d10399E.llvm.15195122248153170019 (24 samples, 0.03%)</title><rect x="87.3" y="133" width="0.4" height="15.0" fill="rgb(205,114,11)" rx="2" ry="2" /> | |
<text x="90.34" y="143.5" ></text> | |
</g> | |
<g > | |
<title>entry_SYSCALL_64_after_hwframe (540 samples, 0.77%)</title><rect x="1180.9" y="405" width="9.1" height="15.0" fill="rgb(224,16,43)" rx="2" ry="2" /> | |
<text x="1183.90" y="415.5" ></text> | |
</g> | |
<g > | |
<title>std::time::Instant::elapsed::h8e307314b2acf9be (17 samples, 0.02%)</title><rect x="39.0" y="277" width="0.3" height="15.0" fill="rgb(232,214,24)" rx="2" ry="2" /> | |
<text x="42.04" y="287.5" ></text> | |
</g> | |
<g > | |
<title>std::time::Instant::elapsed::h8e307314b2acf9be (27 samples, 0.04%)</title><rect x="114.0" y="197" width="0.4" height="15.0" fill="rgb(230,216,22)" rx="2" ry="2" /> | |
<text x="116.98" y="207.5" ></text> | |
</g> | |
<g > | |
<title>cranelift_codegen::regalloc::live_value_tracker::LiveValueTracker::ebb_top::hfe56a550654953ca (27 samples, 0.04%)</title><rect x="1179.5" y="309" width="0.5" height="15.0" fill="rgb(229,23,10)" rx="2" ry="2" /> | |
<text x="1182.52" y="319.5" ></text> | |
</g> | |
<g > | |
<title>wasmparser::parser::Parser::read_export_entry::hf5e381312c2f0c73 (6 samples, 0.01%)</title><rect x="192.9" y="133" width="0.1" height="15.0" fill="rgb(235,200,16)" rx="2" ry="2" /> | |
<text x="195.90" y="143.5" ></text> | |
</g> | |
<g > | |
<title>std::sys::unix::time::inner::now::ha10452f37b2930c5 (6 samples, 0.01%)</title><rect x="1160.5" y="245" width="0.1" height="15.0" fill="rgb(212,11,18)" rx="2" ry="2" /> | |
<text x="1163.54" y="255.5" ></text> | |
</g> | |
<g > | |
<title>wasmparser::operators_validator::OperatorValidator::process_operator::hf8ee49dfd4957437 (268 samples, 0.38%)</title><rect x="697.0" y="309" width="4.5" height="15.0" fill="rgb(206,44,41)" rx="2" ry="2" /> | |
<text x="700.00" y="319.5" ></text> | |
</g> | |
<g > | |
<title>__rdl_dealloc (23 samples, 0.03%)</title><rect x="776.5" y="309" width="0.4" height="15.0" fill="rgb(216,99,12)" rx="2" ry="2" /> | |
<text x="779.49" y="319.5" ></text> | |
</g> | |
<g > | |
<title>cranelift_codegen::ir::layout::Layout::insert_inst::h352d76f498d27496 (31 samples, 0.04%)</title><rect x="1178.8" y="261" width="0.5" height="15.0" fill="rgb(205,139,12)" rx="2" ry="2" /> | |
<text x="1181.80" y="271.5" ></text> | |
</g> | |
<g > | |
<title>entry_SYSCALL_64_after_hwframe (6 samples, 0.01%)</title><rect x="190.6" y="117" width="0.1" height="15.0" fill="rgb(208,221,46)" rx="2" ry="2" /> | |
<text x="193.56" y="127.5" ></text> | |
</g> | |
<g > | |
<title>std::time::Instant::now::h33d2ba6042def2d2 (7 samples, 0.01%)</title><rect x="1159.9" y="277" width="0.1" height="15.0" fill="rgb(211,160,16)" rx="2" ry="2" /> | |
<text x="1162.88" y="287.5" ></text> | |
</g> | |
<g > | |
<title>cranelift_codegen::regalloc::reload::Context::insert_spill::heb310b7f97e05ad2 (69 samples, 0.10%)</title><rect x="55.8" y="277" width="1.2" height="15.0" fill="rgb(233,23,6)" rx="2" ry="2" /> | |
<text x="58.84" y="287.5" ></text> | |
</g> | |
<g > | |
<title>cranelift_entity::list::EntityList$LT$T$GT$::push::h051541d55e7ee057 (30 samples, 0.04%)</title><rect x="162.3" y="181" width="0.5" height="15.0" fill="rgb(241,11,24)" rx="2" ry="2" /> | |
<text x="165.28" y="191.5" ></text> | |
</g> | |
<g > | |
<title>__lock_text_start (23 samples, 0.03%)</title><rect x="12.6" y="341" width="0.4" height="15.0" fill="rgb(218,143,32)" rx="2" ry="2" /> | |
<text x="15.57" y="351.5" ></text> | |
</g> | |
<g > | |
<title>__GI___clock_gettime (10 samples, 0.01%)</title><rect x="54.3" y="197" width="0.1" height="15.0" fill="rgb(212,183,47)" rx="2" ry="2" /> | |
<text x="57.26" y="207.5" ></text> | |
</g> | |
<g > | |
<title>__vdso_clock_gettime (6 samples, 0.01%)</title><rect x="68.1" y="149" width="0.1" height="15.0" fill="rgb(236,22,34)" rx="2" ry="2" /> | |
<text x="71.09" y="159.5" ></text> | |
</g> | |
<g > | |
<title>std::sys::unix::time::inner::now::ha10452f37b2930c5 (7 samples, 0.01%)</title><rect x="121.8" y="181" width="0.1" height="15.0" fill="rgb(225,187,3)" rx="2" ry="2" /> | |
<text x="124.76" y="191.5" ></text> | |
</g> | |
<g > | |
<title>free_pages_and_swap_cache (54 samples, 0.08%)</title><rect x="234.6" y="181" width="0.9" height="15.0" fill="rgb(252,93,29)" rx="2" ry="2" /> | |
<text x="237.59" y="191.5" ></text> | |
</g> | |
<g > | |
<title>cranelift_codegen::ir::layout::Layout::insert_inst::h352d76f498d27496 (6 samples, 0.01%)</title><rect x="97.8" y="133" width="0.1" height="15.0" fill="rgb(245,165,19)" rx="2" ry="2" /> | |
<text x="100.78" y="143.5" ></text> | |
</g> | |
<g > | |
<title>_int_free (408 samples, 0.58%)</title><rect x="214.3" y="373" width="6.9" height="15.0" fill="rgb(222,175,34)" rx="2" ry="2" /> | |
<text x="217.29" y="383.5" ></text> | |
</g> | |
<g > | |
<title>__GI___libc_malloc (10 samples, 0.01%)</title><rect x="15.2" y="245" width="0.2" height="15.0" fill="rgb(216,157,21)" rx="2" ry="2" /> | |
<text x="18.20" y="255.5" ></text> | |
</g> | |
<g > | |
<title>__GI___libc_malloc (9 samples, 0.01%)</title><rect x="71.9" y="149" width="0.1" height="15.0" fill="rgb(236,72,20)" rx="2" ry="2" /> | |
<text x="74.85" y="159.5" ></text> | |
</g> | |
<g > | |
<title>__GI___clock_gettime (7 samples, 0.01%)</title><rect x="103.2" y="149" width="0.1" height="15.0" fill="rgb(251,72,15)" rx="2" ry="2" /> | |
<text x="106.23" y="159.5" ></text> | |
</g> | |
<g > | |
<title>_int_malloc (12 samples, 0.02%)</title><rect x="812.2" y="261" width="0.2" height="15.0" fill="rgb(213,192,29)" rx="2" ry="2" /> | |
<text x="815.24" y="271.5" ></text> | |
</g> | |
<g > | |
<title>cranelift_codegen::ir::dfg::DataFlowGraph::clear::h864e5fe24548dc9f (36 samples, 0.05%)</title><rect x="313.2" y="277" width="0.6" height="15.0" fill="rgb(238,83,51)" rx="2" ry="2" /> | |
<text x="316.21" y="287.5" ></text> | |
</g> | |
<g > | |
<title>_int_free (44 samples, 0.06%)</title><rect x="237.6" y="341" width="0.7" height="15.0" fill="rgb(244,54,31)" rx="2" ry="2" /> | |
<text x="240.58" y="351.5" ></text> | |
</g> | |
<g > | |
<title>wasmparser::binary_reader::BinaryReader::read_operator::h66dd186d320fc797 (155 samples, 0.22%)</title><rect x="488.6" y="293" width="2.6" height="15.0" fill="rgb(226,109,12)" rx="2" ry="2" /> | |
<text x="491.61" y="303.5" ></text> | |
</g> | |
<g > | |
<title>__GI___libc_malloc (11 samples, 0.02%)</title><rect x="809.3" y="261" width="0.2" height="15.0" fill="rgb(233,122,10)" rx="2" ry="2" /> | |
<text x="812.27" y="271.5" ></text> | |
</g> | |
<g > | |
<title>cranelift_codegen::ir::layout::Layout::insert_inst::h352d76f498d27496 (7 samples, 0.01%)</title><rect x="159.4" y="165" width="0.1" height="15.0" fill="rgb(237,120,38)" rx="2" ry="2" /> | |
<text x="162.38" y="175.5" ></text> | |
</g> | |
<g > | |
<title>__GI___libc_malloc (42 samples, 0.06%)</title><rect x="187.2" y="341" width="0.7" height="15.0" fill="rgb(227,79,14)" rx="2" ry="2" /> | |
<text x="190.20" y="351.5" ></text> | |
</g> | |
<g > | |
<title>alloc::raw_vec::RawVec$LT$T$C$A$GT$::reserve::hd6c8f26eb3c9fb4b (40 samples, 0.06%)</title><rect x="93.0" y="181" width="0.7" height="15.0" fill="rgb(254,167,3)" rx="2" ry="2" /> | |
<text x="96.04" y="191.5" ></text> | |
</g> | |
<g > | |
<title>[[vdso]] (8 samples, 0.01%)</title><rect x="60.6" y="213" width="0.2" height="15.0" fill="rgb(229,150,46)" rx="2" ry="2" /> | |
<text x="63.64" y="223.5" ></text> | |
</g> | |
<g > | |
<title>alloc::raw_vec::RawVec$LT$T$C$A$GT$::reserve::h156c4ca9e87e66cc (12 samples, 0.02%)</title><rect x="68.2" y="245" width="0.2" height="15.0" fill="rgb(205,202,44)" rx="2" ry="2" /> | |
<text x="71.24" y="255.5" ></text> | |
</g> | |
<g > | |
<title>alloc::collections::btree::map::BTreeMap$LT$K$C$V$GT$::values_mut::hbbdcdfaeabb91827 (7 samples, 0.01%)</title><rect x="101.8" y="197" width="0.1" height="15.0" fill="rgb(236,127,44)" rx="2" ry="2" /> | |
<text x="104.80" y="207.5" ></text> | |
</g> | |
<g > | |
<title>__vdso_clock_gettime (7 samples, 0.01%)</title><rect x="1165.7" y="181" width="0.2" height="15.0" fill="rgb(243,18,47)" rx="2" ry="2" /> | |
<text x="1168.73" y="191.5" ></text> | |
</g> | |
<g > | |
<title>crossbeam_epoch::internal::Global::collect::h1f2b29105d9f9b2d (8 samples, 0.01%)</title><rect x="188.7" y="197" width="0.1" height="15.0" fill="rgb(231,223,45)" rx="2" ry="2" /> | |
<text x="191.71" y="207.5" ></text> | |
</g> | |
<g > | |
<title>alloc::raw_vec::RawVec$LT$T$C$A$GT$::reserve::h35e85fcd2e2f9b0d (1,238 samples, 1.76%)</title><rect x="1075.5" y="373" width="20.9" height="15.0" fill="rgb(228,14,5)" rx="2" ry="2" /> | |
<text x="1078.54" y="383.5" ></text> | |
</g> | |
<g > | |
<title>cranelift_codegen::ir::dfg::DataFlowGraph::make_inst::h5a8de03d56461c59 (13 samples, 0.02%)</title><rect x="853.3" y="261" width="0.2" height="15.0" fill="rgb(206,57,32)" rx="2" ry="2" /> | |
<text x="856.26" y="271.5" ></text> | |
</g> | |
<g > | |
<title>__vma_link_rb (9 samples, 0.01%)</title><rect x="295.7" y="149" width="0.1" height="15.0" fill="rgb(238,145,9)" rx="2" ry="2" /> | |
<text x="298.68" y="159.5" ></text> | |
</g> | |
<g > | |
<title>wasmparser::binary_reader::BinaryReader::read_var_u32::h9f3e844d80d20a5e (39 samples, 0.06%)</title><rect x="530.8" y="261" width="0.7" height="15.0" fill="rgb(243,28,39)" rx="2" ry="2" /> | |
<text x="533.80" y="271.5" ></text> | |
</g> | |
<g > | |
<title>_ZN4core3ptr18real_drop_in_place17hbf1a2e7b1d7f1667E.llvm.2002196175208074555 (161 samples, 0.23%)</title><rect x="456.3" y="293" width="2.7" height="15.0" fill="rgb(245,114,3)" rx="2" ry="2" /> | |
<text x="459.32" y="303.5" ></text> | |
</g> | |
<g > | |
<title>std::sys::unix::time::inner::now::ha10452f37b2930c5 (8 samples, 0.01%)</title><rect x="52.7" y="245" width="0.1" height="15.0" fill="rgb(253,207,27)" rx="2" ry="2" /> | |
<text x="55.68" y="255.5" ></text> | |
</g> | |
<g > | |
<title>rocinante::stoke::Superoptimizer::synthesize::h4ba34d72c5765be9 (736 samples, 1.05%)</title><rect x="189.1" y="261" width="12.3" height="15.0" fill="rgb(246,24,16)" rx="2" ry="2" /> | |
<text x="192.07" y="271.5" ></text> | |
</g> | |
<g > | |
<title>_ZN17cranelift_codegen24redundant_reload_remover22RedundantReloadRemover37do_redundant_fill_removal_on_function17h0915e7840d7db9a4E.llvm.15195122248153170019 (281 samples, 0.40%)</title><rect x="1148.6" y="293" width="4.7" height="15.0" fill="rgb(218,157,53)" rx="2" ry="2" /> | |
<text x="1151.56" y="303.5" ></text> | |
</g> | |
<g > | |
<title>__GI___libc_free (11 samples, 0.02%)</title><rect x="312.9" y="261" width="0.1" height="15.0" fill="rgb(228,58,43)" rx="2" ry="2" /> | |
<text x="315.85" y="271.5" ></text> | |
</g> | |
<g > | |
<title>__GI___libc_malloc (13 samples, 0.02%)</title><rect x="329.4" y="261" width="0.3" height="15.0" fill="rgb(220,107,2)" rx="2" ry="2" /> | |
<text x="332.43" y="271.5" ></text> | |
</g> | |
<g > | |
<title>_ZN19wasmer_clif_backend6signal4unix19signal_trap_handler17ha55e59a207213c20E.llvm.3171045979873438245 (85 samples, 0.12%)</title><rect x="10.4" y="421" width="1.5" height="15.0" fill="rgb(220,229,32)" rx="2" ry="2" /> | |
<text x="13.44" y="431.5" ></text> | |
</g> | |
<g > | |
<title>cranelift_codegen::regalloc::reload::Reload::run::h05729139e9b4ae44 (51 samples, 0.07%)</title><rect x="1174.0" y="309" width="0.8" height="15.0" fill="rgb(232,183,33)" rx="2" ry="2" /> | |
<text x="1176.97" y="319.5" ></text> | |
</g> | |
<g > | |
<title>_ZN9hashbrown3raw17RawTable$LT$T$GT$14reserve_rehash17ha8dc20cee05f0e84E.llvm.16938716460618634628 (30 samples, 0.04%)</title><rect x="162.8" y="165" width="0.6" height="15.0" fill="rgb(208,85,19)" rx="2" ry="2" /> | |
<text x="165.85" y="175.5" ></text> | |
</g> | |
<g > | |
<title>unmap_single_vma (17 samples, 0.02%)</title><rect x="236.6" y="213" width="0.3" height="15.0" fill="rgb(246,177,46)" rx="2" ry="2" /> | |
<text x="239.64" y="223.5" ></text> | |
</g> | |
<g > | |
<title>_int_free (6 samples, 0.01%)</title><rect x="222.2" y="325" width="0.1" height="15.0" fill="rgb(216,228,23)" rx="2" ry="2" /> | |
<text x="225.18" y="335.5" ></text> | |
</g> | |
<g > | |
<title>__GI___libc_malloc (7 samples, 0.01%)</title><rect x="127.9" y="181" width="0.1" height="15.0" fill="rgb(241,100,4)" rx="2" ry="2" /> | |
<text x="130.92" y="191.5" ></text> | |
</g> | |
<g > | |
<title>cranelift_codegen::regalloc::spilling::Spilling::run::hbc5ba3177617b881 (527 samples, 0.75%)</title><rect x="155.2" y="213" width="8.9" height="15.0" fill="rgb(209,155,18)" rx="2" ry="2" /> | |
<text x="158.25" y="223.5" ></text> | |
</g> | |
<g > | |
<title>__GI___libc_free (27 samples, 0.04%)</title><rect x="307.4" y="293" width="0.4" height="15.0" fill="rgb(253,109,24)" rx="2" ry="2" /> | |
<text x="310.35" y="303.5" ></text> | |
</g> | |
<g > | |
<title>alloc::raw_vec::RawVec$LT$T$C$A$GT$::reserve::hc8a0fc8526f8c69b (27 samples, 0.04%)</title><rect x="1171.7" y="277" width="0.4" height="15.0" fill="rgb(210,223,53)" rx="2" ry="2" /> | |
<text x="1174.69" y="287.5" ></text> | |
</g> | |
<g > | |
<title>_int_free (6 samples, 0.01%)</title><rect x="185.6" y="293" width="0.1" height="15.0" fill="rgb(213,111,26)" rx="2" ry="2" /> | |
<text x="188.58" y="303.5" ></text> | |
</g> | |
<g > | |
<title>cranelift_codegen::ir::layout::Layout::assign_ebb_seq::hcbb4313358ff056c (8 samples, 0.01%)</title><rect x="810.6" y="293" width="0.1" height="15.0" fill="rgb(211,52,10)" rx="2" ry="2" /> | |
<text x="813.56" y="303.5" ></text> | |
</g> | |
<g > | |
<title>cranelift_codegen::flowgraph::ControlFlowGraph::add_edge::hf2c2f4cb34e85a4f (37 samples, 0.05%)</title><rect x="118.4" y="197" width="0.6" height="15.0" fill="rgb(235,127,46)" rx="2" ry="2" /> | |
<text x="121.42" y="207.5" ></text> | |
</g> | |
<g > | |
<title>__GI___clock_gettime (12 samples, 0.02%)</title><rect x="1165.9" y="229" width="0.2" height="15.0" fill="rgb(251,48,18)" rx="2" ry="2" /> | |
<text x="1168.87" y="239.5" ></text> | |
</g> | |
<g > | |
<title>wasmer_runtime_core::compile_with_config::h2793fe8de72c0bc3 (458 samples, 0.65%)</title><rect x="189.9" y="213" width="7.7" height="15.0" fill="rgb(230,103,18)" rx="2" ry="2" /> | |
<text x="192.86" y="223.5" ></text> | |
</g> | |
<g > | |
<title>cranelift_codegen::isa::x86::enc_tables::size_plus_maybe_sib_or_offset_for_in_reg_1::h655f2e9c6d128efc (19 samples, 0.03%)</title><rect x="37.1" y="277" width="0.3" height="15.0" fill="rgb(254,152,54)" rx="2" ry="2" /> | |
<text x="40.08" y="287.5" ></text> | |
</g> | |
<g > | |
<title>__GI___clock_gettime (14 samples, 0.02%)</title><rect x="1158.1" y="197" width="0.3" height="15.0" fill="rgb(249,152,7)" rx="2" ry="2" /> | |
<text x="1161.12" y="207.5" ></text> | |
</g> | |
<g > | |
<title>_int_realloc (8 samples, 0.01%)</title><rect x="1169.1" y="165" width="0.1" height="15.0" fill="rgb(238,49,51)" rx="2" ry="2" /> | |
<text x="1172.11" y="175.5" ></text> | |
</g> | |
<g > | |
<title>_ZN17cranelift_codegen8regalloc9diversion13RegDiversions6divert17h0dfdaeead6ef2c57E.llvm.6468024634034730254 (30 samples, 0.04%)</title><rect x="1151.3" y="277" width="0.5" height="15.0" fill="rgb(232,92,11)" rx="2" ry="2" /> | |
<text x="1154.32" y="287.5" ></text> | |
</g> | |
<g > | |
<title>alloc::raw_vec::RawVec$LT$T$C$A$GT$::reserve::h500ef385b8747b29 (16 samples, 0.02%)</title><rect x="324.0" y="245" width="0.3" height="15.0" fill="rgb(239,121,36)" rx="2" ry="2" /> | |
<text x="327.04" y="255.5" ></text> | |
</g> | |
<g > | |
<title>__GI___libc_malloc (12 samples, 0.02%)</title><rect x="813.7" y="277" width="0.2" height="15.0" fill="rgb(242,213,37)" rx="2" ry="2" /> | |
<text x="816.72" y="287.5" ></text> | |
</g> | |
<g > | |
<title>wasmer_runtime_core::compile_with_config::h2793fe8de72c0bc3 (2,799 samples, 3.99%)</title><rect x="14.0" y="405" width="47.0" height="15.0" fill="rgb(244,6,37)" rx="2" ry="2" /> | |
<text x="16.95" y="415.5" >wasm..</text> | |
</g> | |
<g > | |
<title>__perf_event_header__init_id (15 samples, 0.02%)</title><rect x="343.2" y="133" width="0.2" height="15.0" fill="rgb(222,35,54)" rx="2" ry="2" /> | |
<text x="346.16" y="143.5" ></text> | |
</g> | |
<g > | |
<title>_$LT$hashbrown..raw..RawTable$LT$T$GT$$u20$as$u20$core..clone..Clone$GT$::clone::h14a766a870f45af2 (10 samples, 0.01%)</title><rect x="66.4" y="245" width="0.1" height="15.0" fill="rgb(228,78,45)" rx="2" ry="2" /> | |
<text x="69.37" y="255.5" ></text> | |
</g> | |
<g > | |
<title>cranelift_codegen::context::Context::relax_branches::hbf7d0399633288d4 (259 samples, 0.37%)</title><rect x="99.0" y="229" width="4.3" height="15.0" fill="rgb(208,152,41)" rx="2" ry="2" /> | |
<text x="101.99" y="239.5" ></text> | |
</g> | |
<g > | |
<title>__lock_text_start (15 samples, 0.02%)</title><rect x="234.7" y="149" width="0.3" height="15.0" fill="rgb(205,165,34)" rx="2" ry="2" /> | |
<text x="237.71" y="159.5" ></text> | |
</g> | |
<g > | |
<title>core::ptr::real_drop_in_place::h4e692177cbad22c9 (27 samples, 0.04%)</title><rect x="823.6" y="325" width="0.5" height="15.0" fill="rgb(224,139,22)" rx="2" ry="2" /> | |
<text x="826.63" y="335.5" ></text> | |
</g> | |
<g > | |
<title>alloc::raw_vec::RawVec$LT$T$C$A$GT$::reserve::h500ef385b8747b29 (7 samples, 0.01%)</title><rect x="1178.6" y="277" width="0.1" height="15.0" fill="rgb(226,219,53)" rx="2" ry="2" /> | |
<text x="1181.63" y="287.5" ></text> | |
</g> | |
<g > | |
<title>cranelift_codegen::isa::x86::abi::callee_saved_gprs_used::h307ec5944daa4165 (43 samples, 0.06%)</title><rect x="93.7" y="181" width="0.7" height="15.0" fill="rgb(211,34,49)" rx="2" ry="2" /> | |
<text x="96.71" y="191.5" ></text> | |
</g> | |
<g > | |
<title>perf_output_copy (17 samples, 0.02%)</title><rect x="343.9" y="133" width="0.3" height="15.0" fill="rgb(253,28,33)" rx="2" ry="2" /> | |
<text x="346.91" y="143.5" ></text> | |
</g> | |
<g > | |
<title>_ZN4core3ptr18real_drop_in_place17he728ca68fc8217d5E.llvm.689856235829814499 (137 samples, 0.20%)</title><rect x="307.9" y="293" width="2.3" height="15.0" fill="rgb(252,216,31)" rx="2" ry="2" /> | |
<text x="310.88" y="303.5" ></text> | |
</g> | |
<g > | |
<title>cranelift_codegen::isa::constraints::RecipeConstraints::satisfied::h33556c8a9b1bba6e (85 samples, 0.12%)</title><rect x="109.2" y="197" width="1.4" height="15.0" fill="rgb(243,49,29)" rx="2" ry="2" /> | |
<text x="112.20" y="207.5" ></text> | |
</g> | |
<g > | |
<title>cranelift_codegen::legalizer::expand_flags::hf22fb7652a0ec5c8 (10 samples, 0.01%)</title><rect x="90.5" y="181" width="0.1" height="15.0" fill="rgb(225,111,52)" rx="2" ry="2" /> | |
<text x="93.45" y="191.5" ></text> | |
</g> | |
<g > | |
<title>cranelift_codegen::ir::builder::InstBuilder::call_indirect::h1d38d2281f406238 (123 samples, 0.18%)</title><rect x="320.7" y="309" width="2.0" height="15.0" fill="rgb(211,93,47)" rx="2" ry="2" /> | |
<text x="323.66" y="319.5" ></text> | |
</g> | |
<g > | |
<title>__GI___libc_malloc (12 samples, 0.02%)</title><rect x="131.4" y="165" width="0.2" height="15.0" fill="rgb(222,47,26)" rx="2" ry="2" /> | |
<text x="134.42" y="175.5" ></text> | |
</g> | |
<g > | |
<title>std::sys::unix::time::inner::now::ha10452f37b2930c5 (24 samples, 0.03%)</title><rect x="126.9" y="149" width="0.4" height="15.0" fill="rgb(229,7,44)" rx="2" ry="2" /> | |
<text x="129.86" y="159.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="59.1" y="277" width="0.1" height="15.0" fill="rgb(217,126,9)" rx="2" ry="2" /> | |
<text x="62.09" y="287.5" ></text> | |
</g> | |
<g > | |
<title>std::time::Instant::now::h33d2ba6042def2d2 (8 samples, 0.01%)</title><rect x="120.6" y="197" width="0.2" height="15.0" fill="rgb(235,228,30)" rx="2" ry="2" /> | |
<text x="123.62" y="207.5" ></text> | |
</g> | |
<g > | |
<title>_int_realloc (15 samples, 0.02%)</title><rect x="946.2" y="293" width="0.3" height="15.0" fill="rgb(254,111,37)" rx="2" ry="2" /> | |
<text x="949.24" y="303.5" ></text> | |
</g> | |
<g > | |
<title>_int_malloc (9 samples, 0.01%)</title><rect x="854.5" y="341" width="0.2" height="15.0" fill="rgb(235,184,6)" rx="2" ry="2" /> | |
<text x="857.51" y="351.5" ></text> | |
</g> | |
<g > | |
<title>std::sys::unix::time::inner::Instant::now::h23f1bea5949f1bbd (8 samples, 0.01%)</title><rect x="121.6" y="181" width="0.2" height="15.0" fill="rgb(230,56,43)" rx="2" ry="2" /> | |
<text x="124.63" y="191.5" ></text> | |
</g> | |
<g > | |
<title>std::sys::unix::alloc::_$LT$impl$u20$core..alloc..GlobalAlloc$u20$for$u20$std..alloc..System$GT$::alloc::h33585d4e6aad0166 (13 samples, 0.02%)</title><rect x="624.6" y="277" width="0.2" height="15.0" fill="rgb(224,60,5)" rx="2" ry="2" /> | |
<text x="627.55" y="287.5" ></text> | |
</g> | |
<g > | |
<title>_int_free (314 samples, 0.45%)</title><rect x="369.4" y="293" width="5.3" height="15.0" fill="rgb(231,63,43)" rx="2" ry="2" /> | |
<text x="372.44" y="303.5" ></text> | |
</g> | |
<g > | |
<title>__GI___clock_gettime (13 samples, 0.02%)</title><rect x="39.1" y="213" width="0.2" height="15.0" fill="rgb(246,11,45)" rx="2" ry="2" /> | |
<text x="42.11" y="223.5" ></text> | |
</g> | |
<g > | |
<title>_$LT$alloc..vec..Vec$LT$T$GT$$u20$as$u20$alloc..vec..SpecExtend$LT$T$C$I$GT$$GT$::spec_extend::hc9c2ffc4fa991304 (6 samples, 0.01%)</title><rect x="49.0" y="261" width="0.1" height="15.0" fill="rgb(245,82,53)" rx="2" ry="2" /> | |
<text x="51.96" y="271.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 (62 samples, 0.09%)</title><rect x="1145.0" y="373" width="1.0" height="15.0" fill="rgb(254,78,19)" rx="2" ry="2" /> | |
<text x="1147.98" y="383.5" ></text> | |
</g> | |
<g > | |
<title>cranelift_codegen::ir::dfg::DataFlowGraph::make_inst_results::hc774d04d1992dff6 (22 samples, 0.03%)</title><rect x="95.6" y="149" width="0.4" height="15.0" fill="rgb(223,18,51)" rx="2" ry="2" /> | |
<text x="98.61" y="159.5" ></text> | |
</g> | |
<g > | |
<title>_$LT$cranelift_codegen..timing..details..TimingToken$u20$as$u20$core..ops..drop..Drop$GT$::drop::h1b19c2a93ee0a091 (13 samples, 0.02%)</title><rect x="73.2" y="229" width="0.2" height="15.0" fill="rgb(247,26,39)" rx="2" ry="2" /> | |
<text x="76.18" y="239.5" ></text> | |
</g> | |
<g > | |
<title>_int_malloc (6 samples, 0.01%)</title><rect x="65.4" y="213" width="0.1" height="15.0" fill="rgb(234,86,31)" rx="2" ry="2" /> | |
<text x="68.44" y="223.5" ></text> | |
</g> | |
<g > | |
<title>page_add_new_anon_rmap (8 samples, 0.01%)</title><rect x="306.0" y="213" width="0.2" height="15.0" fill="rgb(224,9,9)" rx="2" ry="2" /> | |
<text x="309.04" y="223.5" ></text> | |
</g> | |
<g > | |
<title>divide_error (68 samples, 0.10%)</title><rect x="11.9" y="437" width="1.1" height="15.0" fill="rgb(243,214,23)" rx="2" ry="2" /> | |
<text x="14.87" y="447.5" ></text> | |
</g> | |
<g > | |
<title>std::time::Instant::now::h33d2ba6042def2d2 (6 samples, 0.01%)</title><rect x="60.2" y="277" width="0.1" height="15.0" fill="rgb(212,33,12)" rx="2" ry="2" /> | |
<text x="63.25" y="287.5" ></text> | |
</g> | |
<g > | |
<title>std::time::Instant::elapsed::h8e307314b2acf9be (9 samples, 0.01%)</title><rect x="38.0" y="261" width="0.2" height="15.0" fill="rgb(241,218,49)" rx="2" ry="2" /> | |
<text x="41.03" y="271.5" ></text> | |
</g> | |
<g > | |
<title>std::sys::unix::time::inner::Instant::now::h23f1bea5949f1bbd (11 samples, 0.02%)</title><rect x="1165.2" y="261" width="0.2" height="15.0" fill="rgb(239,88,13)" rx="2" ry="2" /> | |
<text x="1168.23" y="271.5" ></text> | |
</g> | |
<g > | |
<title>main (736 samples, 1.05%)</title><rect x="189.1" y="405" width="12.3" height="15.0" fill="rgb(222,52,26)" rx="2" ry="2" /> | |
<text x="192.07" y="415.5" ></text> | |
</g> | |
<g > | |
<title>__GI___libc_malloc (19 samples, 0.03%)</title><rect x="330.2" y="277" width="0.3" height="15.0" fill="rgb(237,195,2)" rx="2" ry="2" /> | |
<text x="333.16" y="287.5" ></text> | |
</g> | |
<g > | |
<title>__GI___libc_malloc (8 samples, 0.01%)</title><rect x="307.1" y="293" width="0.1" height="15.0" fill="rgb(223,154,17)" rx="2" ry="2" /> | |
<text x="310.05" y="303.5" ></text> | |
</g> | |
<g > | |
<title>wasmer_clif_backend::resolver::FuncResolverBuilder::finalize::h91eab78c48207186 (16 samples, 0.02%)</title><rect x="190.1" y="165" width="0.2" height="15.0" fill="rgb(215,205,7)" rx="2" ry="2" /> | |
<text x="193.06" y="175.5" ></text> | |
</g> | |
<g > | |
<title>sys_rt_sigprocmask (25 samples, 0.04%)</title><rect x="1189.6" y="389" width="0.4" height="15.0" fill="rgb(205,46,7)" rx="2" ry="2" /> | |
<text x="1192.56" y="399.5" ></text> | |
</g> | |
<g > | |
<title>wasmer_clif_backend::trampoline::Trampolines::new::h8a78526849fe89b9 (95 samples, 0.14%)</title><rect x="186.7" y="405" width="1.6" height="15.0" fill="rgb(215,54,25)" rx="2" ry="2" /> | |
<text x="189.74" y="415.5" ></text> | |
</g> | |
<g > | |
<title>wasmer_clif_fork_frontend::frontend::FunctionBuilder::ensure_inserted_ebb::h850b064f3ceb72aa (45 samples, 0.06%)</title><rect x="810.0" y="309" width="0.8" height="15.0" fill="rgb(209,113,54)" rx="2" ry="2" /> | |
<text x="813.01" y="319.5" ></text> | |
</g> | |
<g > | |
<title>_$LT$cranelift_codegen..isa..x86..Isa$u20$as$u20$cranelift_codegen..isa..TargetIsa$GT$::legal_encodings::hf067c4c0987c0b93 (28 samples, 0.04%)</title><rect x="33.0" y="277" width="0.5" height="15.0" fill="rgb(253,21,37)" rx="2" ry="2" /> | |
<text x="36.02" y="287.5" ></text> | |
</g> | |
<g > | |
<title>_int_free (11 samples, 0.02%)</title><rect x="818.9" y="309" width="0.2" height="15.0" fill="rgb(253,47,22)" rx="2" ry="2" /> | |
<text x="821.92" y="319.5" ></text> | |
</g> | |
<g > | |
<title>flush_tlb_mm_range (73 samples, 0.10%)</title><rect x="334.9" y="165" width="1.2" height="15.0" fill="rgb(206,16,29)" rx="2" ry="2" /> | |
<text x="337.88" y="175.5" ></text> | |
</g> | |
<g > | |
<title>_int_malloc (65 samples, 0.09%)</title><rect x="802.9" y="277" width="1.1" height="15.0" fill="rgb(227,200,50)" rx="2" ry="2" /> | |
<text x="805.86" y="287.5" ></text> | |
</g> | |
<g > | |
<title>local_clock (10 samples, 0.01%)</title><rect x="343.2" y="117" width="0.2" height="15.0" fill="rgb(217,128,47)" rx="2" ry="2" /> | |
<text x="346.21" y="127.5" ></text> | |
</g> | |
<g > | |
<title>__GI___libc_realloc (22 samples, 0.03%)</title><rect x="807.6" y="277" width="0.4" height="15.0" fill="rgb(237,129,1)" rx="2" ry="2" /> | |
<text x="810.62" y="287.5" ></text> | |
</g> | |
<g > | |
<title>_ZN17cranelift_codegen8regalloc9diversion13RegDiversions6divert17h0dfdaeead6ef2c57E.llvm.6468024634034730254 (26 samples, 0.04%)</title><rect x="108.0" y="197" width="0.5" height="15.0" fill="rgb(251,103,25)" rx="2" ry="2" /> | |
<text x="111.03" y="207.5" ></text> | |
</g> | |
<g > | |
<title>_int_malloc (9 samples, 0.01%)</title><rect x="18.9" y="213" width="0.1" height="15.0" fill="rgb(218,70,9)" rx="2" ry="2" /> | |
<text x="21.86" y="223.5" ></text> | |
</g> | |
<g > | |
<title>_int_free (15 samples, 0.02%)</title><rect x="76.4" y="197" width="0.2" height="15.0" fill="rgb(238,27,1)" rx="2" ry="2" /> | |
<text x="79.38" y="207.5" ></text> | |
</g> | |
<g > | |
<title>do_error_trap.part.9 (67 samples, 0.10%)</title><rect x="11.9" y="389" width="1.1" height="15.0" fill="rgb(217,198,17)" rx="2" ry="2" /> | |
<text x="14.87" y="399.5" ></text> | |
</g> | |
<g > | |
<title>std::sys::unix::alloc::_$LT$impl$u20$core..alloc..GlobalAlloc$u20$for$u20$std..alloc..System$GT$::dealloc::h000dc0e1d3b4be28 (13 samples, 0.02%)</title><rect x="734.4" y="309" width="0.2" height="15.0" fill="rgb(246,134,53)" rx="2" ry="2" /> | |
<text x="737.42" y="319.5" ></text> | |
</g> | |
<g > | |
<title>std::sys::unix::time::inner::Instant::now::h23f1bea5949f1bbd (20 samples, 0.03%)</title><rect x="320.0" y="261" width="0.3" height="15.0" fill="rgb(216,30,28)" rx="2" ry="2" /> | |
<text x="323.00" y="271.5" ></text> | |
</g> | |
<g > | |
<title>__GI___libc_realloc (17 samples, 0.02%)</title><rect x="71.3" y="181" width="0.3" height="15.0" fill="rgb(238,7,18)" rx="2" ry="2" /> | |
<text x="74.33" y="191.5" ></text> | |
</g> | |
<g > | |
<title>get_page_from_freelist (16 samples, 0.02%)</title><rect x="305.3" y="181" width="0.2" height="15.0" fill="rgb(215,204,18)" rx="2" ry="2" /> | |
<text x="308.25" y="191.5" ></text> | |
</g> | |
<g > | |
<title>_$LT$cranelift_codegen..timing..details..TimingToken$u20$as$u20$core..ops..drop..Drop$GT$::drop::h1b19c2a93ee0a091 (11 samples, 0.02%)</title><rect x="1160.0" y="277" width="0.2" height="15.0" fill="rgb(225,18,34)" rx="2" ry="2" /> | |
<text x="1163.00" y="287.5" ></text> | |
</g> | |
<g > | |
<title>do_signal (54 samples, 0.08%)</title><rect x="13.0" y="389" width="0.9" height="15.0" fill="rgb(227,54,20)" rx="2" ry="2" /> | |
<text x="16.01" y="399.5" ></text> | |
</g> | |
<g > | |
<title>rocinante::stoke::CandidateFunc::get_binary::h08e8585b39f70dc8 (179 samples, 0.26%)</title><rect x="198.0" y="245" width="3.0" height="15.0" fill="rgb(212,40,44)" rx="2" ry="2" /> | |
<text x="200.98" y="255.5" ></text> | |
</g> | |
<g > | |
<title>std::sync::mutex::Mutex$LT$T$GT$::new::hf2c0b119dbf955ad (38 samples, 0.05%)</title><rect x="281.9" y="293" width="0.7" height="15.0" fill="rgb(210,10,54)" rx="2" ry="2" /> | |
<text x="284.93" y="303.5" ></text> | |
</g> | |
<g > | |
<title>c2_chacha::guts::refill_wide::he4343866a1fa78ce (17 samples, 0.02%)</title><rect x="1143.1" y="373" width="0.3" height="15.0" fill="rgb(229,126,20)" rx="2" ry="2" /> | |
<text x="1146.11" y="383.5" ></text> | |
</g> | |
<g > | |
<title>alloc::raw_vec::RawVec$LT$T$C$A$GT$::reserve::h393bb52f79c5d475 (6 samples, 0.01%)</title><rect x="61.3" y="277" width="0.1" height="15.0" fill="rgb(219,48,10)" rx="2" ry="2" /> | |
<text x="64.26" y="287.5" ></text> | |
</g> | |
<g > | |
<title>_$LT$rand..distributions..uniform..UniformInt$LT$u32$GT$$u20$as$u20$rand..distributions..uniform..UniformSampler$GT$::sample_single::hcb5014fd1d09a151 (15 samples, 0.02%)</title><rect x="1107.2" y="373" width="0.2" height="15.0" fill="rgb(231,176,35)" rx="2" ry="2" /> | |
<text x="1110.19" y="383.5" ></text> | |
</g> | |
<g > | |
<title>__GI___libc_malloc (16 samples, 0.02%)</title><rect x="255.3" y="277" width="0.2" height="15.0" fill="rgb(206,110,14)" rx="2" ry="2" /> | |
<text x="258.26" y="287.5" ></text> | |
</g> | |
<g > | |
<title>alloc::vec::Vec$LT$T$GT$::into_boxed_slice::hc41bff54736771a8 (9 samples, 0.01%)</title><rect x="876.3" y="341" width="0.2" height="15.0" fill="rgb(233,121,36)" rx="2" ry="2" /> | |
<text x="879.30" y="351.5" ></text> | |
</g> | |
<g > | |
<title>cranelift_codegen::ir::instructions::InstructionData::hash::h6390f709ac90b71c (9 samples, 0.01%)</title><rect x="171.8" y="181" width="0.2" height="15.0" fill="rgb(252,197,34)" rx="2" ry="2" /> | |
<text x="174.84" y="191.5" ></text> | |
</g> | |
<g > | |
<title>cranelift_codegen::isa::x86::enc_tables::expand_udivrem::hb314bb4ccef9e2c5 (37 samples, 0.05%)</title><rect x="89.1" y="165" width="0.7" height="15.0" fill="rgb(248,65,38)" rx="2" ry="2" /> | |
<text x="92.14" y="175.5" ></text> | |
</g> | |
<g > | |
<title>wasmer_clif_backend::trampoline::Trampolines::new::h8a78526849fe89b9 (3,460 samples, 4.93%)</title><rect x="296.5" y="325" width="58.2" height="15.0" fill="rgb(207,75,33)" rx="2" ry="2" /> | |
<text x="299.51" y="335.5" >wasmer..</text> | |
</g> | |
<g > | |
<title>__GI___libc_malloc (6 samples, 0.01%)</title><rect x="1176.2" y="261" width="0.1" height="15.0" fill="rgb(246,185,18)" rx="2" ry="2" /> | |
<text x="1179.21" y="271.5" ></text> | |
</g> | |
<g > | |
<title>cranelift_codegen::regalloc::coalescing::Coalescing::conventional_ssa::h25e21334b716fc0d (40 samples, 0.06%)</title><rect x="1170.3" y="309" width="0.7" height="15.0" fill="rgb(209,32,44)" rx="2" ry="2" /> | |
<text x="1173.31" y="319.5" ></text> | |
</g> | |
<g > | |
<title>__GI___clock_gettime (6 samples, 0.01%)</title><rect x="1160.5" y="229" width="0.1" height="15.0" fill="rgb(215,170,8)" rx="2" ry="2" /> | |
<text x="1163.54" y="239.5" ></text> | |
</g> | |
<g > | |
<title>_int_malloc (207 samples, 0.30%)</title><rect x="610.7" y="277" width="3.5" height="15.0" fill="rgb(215,82,16)" rx="2" ry="2" /> | |
<text x="613.68" y="287.5" ></text> | |
</g> | |
<g > | |
<title>core::ptr::real_drop_in_place::h2e9559b12c7fca43 (29 samples, 0.04%)</title><rect x="184.2" y="277" width="0.5" height="15.0" fill="rgb(222,94,3)" rx="2" ry="2" /> | |
<text x="187.17" y="287.5" ></text> | |
</g> | |
<g > | |
<title>__GI___libc_malloc (21 samples, 0.03%)</title><rect x="798.9" y="261" width="0.4" height="15.0" fill="rgb(233,110,45)" rx="2" ry="2" /> | |
<text x="801.93" y="271.5" ></text> | |
</g> | |
<g > | |
<title>__rdl_alloc (7 samples, 0.01%)</title><rect x="1075.4" y="357" width="0.1" height="15.0" fill="rgb(219,76,51)" rx="2" ry="2" /> | |
<text x="1078.41" y="367.5" ></text> | |
</g> | |
<g > | |
<title>_$LT$alloc..vec..Vec$LT$T$GT$$u20$as$u20$core..clone..Clone$GT$::clone::h5b9e6f3d06cc15e0 (1,007 samples, 1.44%)</title><rect x="1058.6" y="373" width="16.9" height="15.0" fill="rgb(223,107,41)" rx="2" ry="2" /> | |
<text x="1061.61" y="383.5" ></text> | |
</g> | |
<g > | |
<title>cranelift_codegen::ir::dfg::DataFlowGraph::make_inst_results::hc774d04d1992dff6 (43 samples, 0.06%)</title><rect x="325.5" y="309" width="0.7" height="15.0" fill="rgb(223,18,27)" rx="2" ry="2" /> | |
<text x="328.48" y="319.5" ></text> | |
</g> | |
<g > | |
<title>std::time::Instant::now::h33d2ba6042def2d2 (19 samples, 0.03%)</title><rect x="164.2" y="213" width="0.3" height="15.0" fill="rgb(242,168,52)" rx="2" ry="2" /> | |
<text x="167.19" y="223.5" ></text> | |
</g> | |
<g > | |
<title>__GI___libc_free (26 samples, 0.04%)</title><rect x="186.2" y="293" width="0.5" height="15.0" fill="rgb(212,182,46)" rx="2" ry="2" /> | |
<text x="189.22" y="303.5" ></text> | |
</g> | |
<g > | |
<title>alloc::raw_vec::RawVec$LT$T$C$A$GT$::reserve::hd6c8f26eb3c9fb4b (18 samples, 0.03%)</title><rect x="1155.5" y="245" width="0.3" height="15.0" fill="rgb(246,149,15)" rx="2" ry="2" /> | |
<text x="1158.48" y="255.5" ></text> | |
</g> | |
<g > | |
<title>_int_malloc (44 samples, 0.06%)</title><rect x="170.9" y="165" width="0.8" height="15.0" fill="rgb(213,213,38)" rx="2" ry="2" /> | |
<text x="173.92" y="175.5" ></text> | |
</g> | |
<g > | |
<title>__GI___libc_free (8 samples, 0.01%)</title><rect x="25.7" y="277" width="0.1" height="15.0" fill="rgb(218,173,28)" rx="2" ry="2" /> | |
<text x="28.69" y="287.5" ></text> | |
</g> | |
<g > | |
<title>std::sys::unix::time::inner::now::ha10452f37b2930c5 (7 samples, 0.01%)</title><rect x="155.1" y="165" width="0.1" height="15.0" fill="rgb(211,191,33)" rx="2" ry="2" /> | |
<text x="158.13" y="175.5" ></text> | |
</g> | |
<g > | |
<title>__rust_alloc (6 samples, 0.01%)</title><rect x="1140.0" y="357" width="0.1" height="15.0" fill="rgb(245,228,23)" rx="2" ry="2" /> | |
<text x="1142.95" y="367.5" ></text> | |
</g> | |
<g > | |
<title>wasmer_runtime_core::compile_with_config::h2793fe8de72c0bc3 (414 samples, 0.59%)</title><rect x="1169.5" y="421" width="6.9" height="15.0" fill="rgb(254,164,28)" rx="2" ry="2" /> | |
<text x="1172.47" y="431.5" ></text> | |
</g> | |
<g > | |
<title>cranelift_codegen::ir::dfg::DataFlowGraph::make_inst_results_reusing::h668204b844797576 (28 samples, 0.04%)</title><rect x="56.5" y="245" width="0.5" height="15.0" fill="rgb(205,99,18)" rx="2" ry="2" /> | |
<text x="59.53" y="255.5" ></text> | |
</g> | |
<g > | |
<title>std::sys::unix::time::inner::now::ha10452f37b2930c5 (7 samples, 0.01%)</title><rect x="1165.7" y="213" width="0.2" height="15.0" fill="rgb(215,191,12)" rx="2" ry="2" /> | |
<text x="1168.73" y="223.5" ></text> | |
</g> | |
<g > | |
<title>std::time::Instant::elapsed::h8e307314b2acf9be (14 samples, 0.02%)</title><rect x="174.0" y="197" width="0.3" height="15.0" fill="rgb(231,22,7)" rx="2" ry="2" /> | |
<text x="177.05" y="207.5" ></text> | |
</g> | |
<g > | |
<title>mprotect_fixup (820 samples, 1.17%)</title><rect x="333.6" y="213" width="13.8" height="15.0" fill="rgb(244,175,46)" rx="2" ry="2" /> | |
<text x="336.61" y="223.5" ></text> | |
</g> | |
<g > | |
<title>__GI___libc_realloc (6 samples, 0.01%)</title><rect x="1177.8" y="245" width="0.1" height="15.0" fill="rgb(246,195,6)" rx="2" ry="2" /> | |
<text x="1180.79" y="255.5" ></text> | |
</g> | |
<g > | |
<title>_int_realloc (7 samples, 0.01%)</title><rect x="90.0" y="85" width="0.1" height="15.0" fill="rgb(236,195,29)" rx="2" ry="2" /> | |
<text x="92.98" y="95.5" ></text> | |
</g> | |
<g > | |
<title>do_mprotect_pkey (6 samples, 0.01%)</title><rect x="190.2" y="69" width="0.1" height="15.0" fill="rgb(237,200,7)" rx="2" ry="2" /> | |
<text x="193.23" y="79.5" ></text> | |
</g> | |
<g > | |
<title>cpumask_any_but (6 samples, 0.01%)</title><rect x="236.5" y="165" width="0.1" height="15.0" fill="rgb(224,121,9)" rx="2" ry="2" /> | |
<text x="239.47" y="175.5" ></text> | |
</g> | |
<g > | |
<title>__GI___libc_malloc (1,046 samples, 1.49%)</title><rect x="678.3" y="277" width="17.6" height="15.0" fill="rgb(253,174,37)" rx="2" ry="2" /> | |
<text x="681.32" y="287.5" ></text> | |
</g> | |
<g > | |
<title>__GI___libc_realloc (10 samples, 0.01%)</title><rect x="56.4" y="229" width="0.1" height="15.0" fill="rgb(249,115,1)" rx="2" ry="2" /> | |
<text x="59.36" y="239.5" ></text> | |
</g> | |
<g > | |
<title>__memset_avx2 (301 samples, 0.43%)</title><rect x="274.3" y="309" width="5.1" height="15.0" fill="rgb(238,23,5)" rx="2" ry="2" /> | |
<text x="277.31" y="319.5" ></text> | |
</g> | |
<g > | |
<title>_int_realloc (28 samples, 0.04%)</title><rect x="1178.2" y="245" width="0.4" height="15.0" fill="rgb(245,27,46)" rx="2" ry="2" /> | |
<text x="1181.16" y="255.5" ></text> | |
</g> | |
<g > | |
<title>__memmove_avx_unaligned (14 samples, 0.02%)</title><rect x="802.6" y="309" width="0.2" height="15.0" fill="rgb(240,65,23)" rx="2" ry="2" /> | |
<text x="805.56" y="319.5" ></text> | |
</g> | |
<g > | |
<title>alloc::raw_vec::RawVec$LT$T$C$A$GT$::reserve::hec416ca773dba9b8 (18 samples, 0.03%)</title><rect x="307.0" y="309" width="0.3" height="15.0" fill="rgb(252,109,5)" rx="2" ry="2" /> | |
<text x="310.00" y="319.5" ></text> | |
</g> | |
<g > | |
<title>_int_malloc (6 samples, 0.01%)</title><rect x="357.4" y="325" width="0.1" height="15.0" fill="rgb(229,157,12)" rx="2" ry="2" /> | |
<text x="360.40" 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 (18 samples, 0.03%)</title><rect x="1174.1" y="261" width="0.3" height="15.0" fill="rgb(245,121,45)" rx="2" ry="2" /> | |
<text x="1177.07" y="271.5" ></text> | |
</g> | |
<g > | |
<title>perf_output_copy (10 samples, 0.01%)</title><rect x="353.4" y="101" width="0.2" height="15.0" fill="rgb(229,7,10)" rx="2" ry="2" /> | |
<text x="356.38" y="111.5" ></text> | |
</g> | |
<g > | |
<title>_int_free (6 samples, 0.01%)</title><rect x="1180.0" y="245" width="0.1" height="15.0" fill="rgb(246,26,26)" rx="2" ry="2" /> | |
<text x="1183.04" y="255.5" ></text> | |
</g> | |
<g > | |
<title>__GI___libc_realloc (12 samples, 0.02%)</title><rect x="162.0" y="165" width="0.2" height="15.0" fill="rgb(254,112,47)" rx="2" ry="2" /> | |
<text x="165.04" y="175.5" ></text> | |
</g> | |
<g > | |
<title>__rdl_alloc (24 samples, 0.03%)</title><rect x="695.9" y="277" width="0.4" height="15.0" fill="rgb(238,19,6)" rx="2" ry="2" /> | |
<text x="698.91" y="287.5" ></text> | |
</g> | |
<g > | |
<title>perf_iterate_ctx (132 samples, 0.19%)</title><rect x="293.2" y="133" width="2.2" height="15.0" fill="rgb(231,197,53)" rx="2" ry="2" /> | |
<text x="296.23" y="143.5" ></text> | |
</g> | |
<g > | |
<title>_$LT$alloc..vec..Vec$LT$T$GT$$u20$as$u20$core..clone..Clone$GT$::clone::hf9e0e83093952de9 (12 samples, 0.02%)</title><rect x="66.1" y="245" width="0.2" height="15.0" fill="rgb(215,24,7)" rx="2" ry="2" /> | |
<text x="69.10" y="255.5" ></text> | |
</g> | |
<g > | |
<title>__libc_siglongjmp (41 samples, 0.06%)</title><rect x="11.1" y="389" width="0.7" height="15.0" fill="rgb(253,36,16)" rx="2" ry="2" /> | |
<text x="14.14" y="399.5" ></text> | |
</g> | |
<g > | |
<title>cranelift_codegen::ir::dfg::DataFlowGraph::make_inst_results::hc774d04d1992dff6 (7 samples, 0.01%)</title><rect x="159.7" y="181" width="0.1" height="15.0" fill="rgb(223,104,42)" rx="2" ry="2" /> | |
<text x="162.69" y="191.5" ></text> | |
</g> | |
<g > | |
<title>wasmer_runtime_core::backing::LocalBacking::new::h9729591e2bf3454e (162 samples, 0.23%)</title><rect x="876.6" y="357" width="2.7" height="15.0" fill="rgb(226,196,53)" rx="2" ry="2" /> | |
<text x="879.55" y="367.5" ></text> | |
</g> | |
<g > | |
<title>__GI___libc_malloc (6 samples, 0.01%)</title><rect x="1160.4" y="261" width="0.1" height="15.0" fill="rgb(248,111,0)" rx="2" ry="2" /> | |
<text x="1163.44" y="271.5" ></text> | |
</g> | |
<g > | |
<title>std::sys::unix::time::inner::now::ha10452f37b2930c5 (9 samples, 0.01%)</title><rect x="153.5" y="133" width="0.2" height="15.0" fill="rgb(230,75,21)" rx="2" ry="2" /> | |
<text x="156.53" y="143.5" ></text> | |
</g> | |
<g > | |
<title>alloc::raw_vec::RawVec$LT$T$C$A$GT$::reserve::h156c4ca9e87e66cc (6 samples, 0.01%)</title><rect x="314.3" y="293" width="0.1" height="15.0" fill="rgb(239,85,21)" rx="2" ry="2" /> | |
<text x="317.33" y="303.5" ></text> | |
</g> | |
<g > | |
<title>__GI___libc_malloc (12 samples, 0.02%)</title><rect x="160.9" y="165" width="0.2" height="15.0" fill="rgb(209,95,19)" rx="2" ry="2" /> | |
<text x="163.90" y="175.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 (10 samples, 0.01%)</title><rect x="991.7" y="341" width="0.2" height="15.0" fill="rgb(239,51,37)" rx="2" ry="2" /> | |
<text x="994.70" y="351.5" ></text> | |
</g> | |
<g > | |
<title>hashbrown::map::HashMap$LT$K$C$V$C$S$GT$::insert::h9f8df50b4f63ad32 (25 samples, 0.04%)</title><rect x="327.3" y="309" width="0.5" height="15.0" fill="rgb(241,214,29)" rx="2" ry="2" /> | |
<text x="330.35" y="319.5" ></text> | |
</g> | |
<g > | |
<title>_$LT$alloc..vec..Vec$LT$T$GT$$u20$as$u20$core..clone..Clone$GT$::clone::h0ac68de189cf22d9 (14 samples, 0.02%)</title><rect x="62.1" y="245" width="0.2" height="15.0" fill="rgb(247,157,12)" rx="2" ry="2" /> | |
<text x="65.06" y="255.5" ></text> | |
</g> | |
<g > | |
<title>std::sys::unix::time::inner::Instant::now::h23f1bea5949f1bbd (6 samples, 0.01%)</title><rect x="1160.5" y="261" width="0.1" height="15.0" fill="rgb(224,121,24)" rx="2" ry="2" /> | |
<text x="1163.54" y="271.5" ></text> | |
</g> | |
<g > | |
<title>std::sys::unix::time::inner::Instant::now::h23f1bea5949f1bbd (11 samples, 0.02%)</title><rect x="1154.9" y="213" width="0.2" height="15.0" fill="rgb(235,114,42)" rx="2" ry="2" /> | |
<text x="1157.87" y="223.5" ></text> | |
</g> | |
<g > | |
<title>cranelift_codegen::ir::dfg::DataFlowGraph::make_inst_results::hc774d04d1992dff6 (9 samples, 0.01%)</title><rect x="20.5" y="245" width="0.2" height="15.0" fill="rgb(216,137,29)" rx="2" ry="2" /> | |
<text x="23.54" y="255.5" ></text> | |
</g> | |
<g > | |
<title>__rust_maybe_catch_panic (736 samples, 1.05%)</title><rect x="189.1" y="341" width="12.3" height="15.0" fill="rgb(213,79,39)" rx="2" ry="2" /> | |
<text x="192.07" y="351.5" ></text> | |
</g> | |
<g > | |
<title>__GI___clock_gettime (10 samples, 0.01%)</title><rect x="152.0" y="149" width="0.2" height="15.0" fill="rgb(226,158,38)" rx="2" ry="2" /> | |
<text x="155.03" y="159.5" ></text> | |
</g> | |
<g > | |
<title>free_pgtables (26 samples, 0.04%)</title><rect x="234.0" y="229" width="0.5" height="15.0" fill="rgb(215,57,0)" rx="2" ry="2" /> | |
<text x="237.03" y="239.5" ></text> | |
</g> | |
<g > | |
<title>_$LT$wasmparser..validator..ValidatingParser$u20$as$u20$wasmparser..parser..WasmDecoder$GT$::read::h573837335870e77b (285 samples, 0.41%)</title><rect x="814.1" y="325" width="4.8" height="15.0" fill="rgb(246,135,30)" rx="2" ry="2" /> | |
<text x="817.06" 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::h3534c64212330b0c (42 samples, 0.06%)</title><rect x="188.3" y="357" width="0.7" height="15.0" fill="rgb(246,207,2)" rx="2" ry="2" /> | |
<text x="191.34" y="367.5" ></text> | |
</g> | |
<g > | |
<title>std::sys::unix::time::inner::Instant::now::h23f1bea5949f1bbd (7 samples, 0.01%)</title><rect x="147.1" y="149" width="0.1" height="15.0" fill="rgb(251,148,35)" rx="2" ry="2" /> | |
<text x="150.12" y="159.5" ></text> | |
</g> | |
<g > | |
<title>__memcpy_sse2 (6 samples, 0.01%)</title><rect x="84.1" y="101" width="0.1" height="15.0" fill="rgb(215,12,4)" rx="2" ry="2" /> | |
<text x="87.15" y="111.5" ></text> | |
</g> | |
<g > | |
<title>__memcpy_avx_unaligned (14 samples, 0.02%)</title><rect x="186.9" y="357" width="0.2" height="15.0" fill="rgb(210,83,16)" rx="2" ry="2" /> | |
<text x="189.88" y="367.5" ></text> | |
</g> | |
<g > | |
<title>cranelift_codegen::isa::x86::abi::insert_common_epilogues::h86f7f3e925a821fa (101 samples, 0.14%)</title><rect x="94.4" y="181" width="1.7" height="15.0" fill="rgb(231,175,22)" rx="2" ry="2" /> | |
<text x="97.44" y="191.5" ></text> | |
</g> | |
<g > | |
<title>std::time::Instant::now::h33d2ba6042def2d2 (9 samples, 0.01%)</title><rect x="38.2" y="277" width="0.2" height="15.0" fill="rgb(226,218,2)" rx="2" ry="2" /> | |
<text x="41.24" y="287.5" ></text> | |
</g> | |
<g > | |
<title>cranelift_codegen::regalloc::coalescing::Coalescing::conventional_ssa::h25e21334b716fc0d (15 samples, 0.02%)</title><rect x="1176.7" y="325" width="0.3" height="15.0" fill="rgb(252,60,0)" rx="2" ry="2" /> | |
<text x="1179.73" y="335.5" ></text> | |
</g> | |
<g > | |
<title>_$LT$cranelift_codegen..timing..details..TimingToken$u20$as$u20$core..ops..drop..Drop$GT$::drop::h1b19c2a93ee0a091 (19 samples, 0.03%)</title><rect x="314.0" y="293" width="0.3" height="15.0" fill="rgb(224,179,53)" rx="2" ry="2" /> | |
<text x="317.00" y="303.5" ></text> | |
</g> | |
<g > | |
<title>__GI___libc_free (399 samples, 0.57%)</title><rect x="513.5" y="277" width="6.7" height="15.0" fill="rgb(244,142,4)" rx="2" ry="2" /> | |
<text x="516.48" y="287.5" ></text> | |
</g> | |
<g > | |
<title>__GI___clock_gettime (9 samples, 0.01%)</title><rect x="91.7" y="149" width="0.2" height="15.0" fill="rgb(236,181,17)" rx="2" ry="2" /> | |
<text x="94.75" y="159.5" ></text> | |
</g> | |
<g > | |
<title>[[vdso]] (6 samples, 0.01%)</title><rect x="172.8" y="133" width="0.1" height="15.0" fill="rgb(236,11,54)" rx="2" ry="2" /> | |
<text x="175.80" y="143.5" ></text> | |
</g> | |
<g > | |
<title>_int_malloc (6 samples, 0.01%)</title><rect x="330.4" y="261" width="0.1" height="15.0" fill="rgb(227,29,33)" rx="2" ry="2" /> | |
<text x="333.38" y="271.5" ></text> | |
</g> | |
<g > | |
<title>hashbrown::rustc_entry::_$LT$impl$u20$hashbrown..map..HashMap$LT$K$C$V$C$S$GT$$GT$::rustc_entry::h157f2592beb19670 (10 samples, 0.01%)</title><rect x="169.1" y="197" width="0.1" height="15.0" fill="rgb(242,177,13)" rx="2" ry="2" /> | |
<text x="172.07" y="207.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 (9 samples, 0.01%)</title><rect x="89.2" y="133" width="0.2" height="15.0" fill="rgb(222,7,14)" rx="2" ry="2" /> | |
<text x="92.22" y="143.5" ></text> | |
</g> | |
<g > | |
<title>c2_chacha::guts::refill_wide::he4343866a1fa78ce (12 samples, 0.02%)</title><rect x="1142.9" y="357" width="0.2" height="15.0" fill="rgb(247,71,52)" rx="2" ry="2" /> | |
<text x="1145.91" y="367.5" ></text> | |
</g> | |
<g > | |
<title>std::sys::unix::time::inner::Instant::now::h23f1bea5949f1bbd (8 samples, 0.01%)</title><rect x="52.7" y="261" width="0.1" height="15.0" fill="rgb(234,223,2)" rx="2" ry="2" /> | |
<text x="55.68" y="271.5" ></text> | |
</g> | |
<g > | |
<title>rocinante (70,168 samples, 100.00%)</title><rect x="10.0" y="469" width="1180.0" height="15.0" fill="rgb(221,59,37)" rx="2" ry="2" /> | |
<text x="13.00" y="479.5" >rocinante</text> | |
</g> | |
<g > | |
<title>__ieee754_exp_avx (326 samples, 0.46%)</title><rect x="880.2" y="389" width="5.4" height="15.0" fill="rgb(239,147,8)" rx="2" ry="2" /> | |
<text x="883.17" y="399.5" ></text> | |
</g> | |
<g > | |
<title>rocinante::stoke::CandidateFunc::to_func_body::h165b92686588e7a9 (2,616 samples, 3.73%)</title><rect x="1053.7" y="389" width="44.0" height="15.0" fill="rgb(208,214,31)" rx="2" ry="2" /> | |
<text x="1056.68" y="399.5" >roci..</text> | |
</g> | |
<g > | |
<title>cranelift_codegen::regalloc::solver::Solver::schedule_moves::h81b194ab48ac25d3 (18 samples, 0.03%)</title><rect x="1172.5" y="293" width="0.3" height="15.0" fill="rgb(241,167,12)" rx="2" ry="2" /> | |
<text x="1175.53" y="303.5" ></text> | |
</g> | |
<g > | |
<title>__GI___libc_realloc (8 samples, 0.01%)</title><rect x="805.3" y="261" width="0.1" height="15.0" fill="rgb(215,162,4)" rx="2" ry="2" /> | |
<text x="808.28" y="271.5" ></text> | |
</g> | |
<g > | |
<title>__memcpy_avx_unaligned (9 samples, 0.01%)</title><rect x="274.2" y="309" width="0.1" height="15.0" fill="rgb(250,161,11)" rx="2" ry="2" /> | |
<text x="277.16" y="319.5" ></text> | |
</g> | |
<g > | |
<title>entry_SYSCALL_64_after_hwframe (267 samples, 0.38%)</title><rect x="232.6" y="325" width="4.5" height="15.0" fill="rgb(223,43,50)" rx="2" ry="2" /> | |
<text x="235.59" y="335.5" ></text> | |
</g> | |
<g > | |
<title>__vdso_clock_gettime (11 samples, 0.02%)</title><rect x="172.7" y="149" width="0.2" height="15.0" fill="rgb(208,200,53)" rx="2" ry="2" /> | |
<text x="175.72" y="159.5" ></text> | |
</g> | |
<g > | |
<title>__GI___libc_malloc (32 samples, 0.05%)</title><rect x="82.3" y="149" width="0.6" height="15.0" fill="rgb(220,95,52)" rx="2" ry="2" /> | |
<text x="85.35" y="159.5" ></text> | |
</g> | |
<g > | |
<title>std::sys::unix::time::inner::Instant::now::h23f1bea5949f1bbd (9 samples, 0.01%)</title><rect x="153.5" y="149" width="0.2" height="15.0" fill="rgb(233,175,25)" rx="2" ry="2" /> | |
<text x="156.53" y="159.5" ></text> | |
</g> | |
<g > | |
<title>alloc::raw_vec::RawVec$LT$T$C$A$GT$::reserve::h500ef385b8747b29 (18 samples, 0.03%)</title><rect x="26.0" y="277" width="0.3" height="15.0" fill="rgb(226,56,44)" rx="2" ry="2" /> | |
<text x="28.96" y="287.5" ></text> | |
</g> | |
<g > | |
<title>vma_merge (73 samples, 0.10%)</title><rect x="268.9" y="197" width="1.2" height="15.0" fill="rgb(215,194,8)" rx="2" ry="2" /> | |
<text x="271.91" y="207.5" ></text> | |
</g> | |
<g > | |
<title>__GI___clock_gettime (9 samples, 0.01%)</title><rect x="1159.3" y="197" width="0.2" height="15.0" fill="rgb(212,197,27)" rx="2" ry="2" /> | |
<text x="1162.34" y="207.5" ></text> | |
</g> | |
<g > | |
<title>cranelift_codegen::regalloc::diversion::RegDiversions::diversion::h0a2605efbb6eb85b (14 samples, 0.02%)</title><rect x="72.1" y="213" width="0.2" height="15.0" fill="rgb(205,135,41)" rx="2" ry="2" /> | |
<text x="75.09" y="223.5" ></text> | |
</g> | |
<g > | |
<title>core::ptr::real_drop_in_place::h17583eaabbe41c72 (6 samples, 0.01%)</title><rect x="239.5" y="389" width="0.1" height="15.0" fill="rgb(211,77,27)" rx="2" ry="2" /> | |
<text x="242.55" y="399.5" ></text> | |
</g> | |
<g > | |
<title>_ZN9hashbrown3raw17RawTable$LT$T$GT$14reserve_rehash17h949d57d1e07c193dE.llvm.16938716460618634628 (9 samples, 0.01%)</title><rect x="1171.0" y="261" width="0.1" height="15.0" fill="rgb(215,16,27)" rx="2" ry="2" /> | |
<text x="1173.98" y="271.5" ></text> | |
</g> | |
<g > | |
<title>__GI___libc_realloc (7 samples, 0.01%)</title><rect x="161.1" y="165" width="0.1" height="15.0" fill="rgb(239,14,36)" rx="2" ry="2" /> | |
<text x="164.10" y="175.5" ></text> | |
</g> | |
<g > | |
<title>__GI___clock_gettime (9 samples, 0.01%)</title><rect x="38.2" y="229" width="0.2" height="15.0" fill="rgb(240,151,18)" rx="2" ry="2" /> | |
<text x="41.24" y="239.5" ></text> | |
</g> | |
<g > | |
<title>alloc::raw_vec::RawVec$LT$T$C$A$GT$::reserve::hb1e32baa791fa7ba (71 samples, 0.10%)</title><rect x="802.8" y="309" width="1.2" height="15.0" fill="rgb(206,100,0)" rx="2" ry="2" /> | |
<text x="805.79" y="319.5" ></text> | |
</g> | |
<g > | |
<title>_$LT$rand..distributions..uniform..UniformInt$LT$i32$GT$$u20$as$u20$rand..distributions..uniform..UniformSampler$GT$::sample_single::h414accef804fe040 (281 samples, 0.40%)</title><rect x="204.0" y="405" width="4.8" height="15.0" fill="rgb(234,95,5)" rx="2" ry="2" /> | |
<text x="207.03" y="415.5" ></text> | |
</g> | |
<g > | |
<title>cranelift_entity::list::EntityList$LT$T$GT$::push::h051541d55e7ee057 (33 samples, 0.05%)</title><rect x="806.6" y="277" width="0.6" height="15.0" fill="rgb(254,164,32)" rx="2" ry="2" /> | |
<text x="809.63" y="287.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 (6,990 samples, 9.96%)</title><rect x="61.0" y="357" width="117.6" height="15.0" fill="rgb(237,109,7)" rx="2" ry="2" /> | |
<text x="64.02" y="367.5" >_$LT$rayon..it..</text> | |
</g> | |
<g > | |
<title>unmapped_area_topdown (16 samples, 0.02%)</title><rect x="350.0" y="149" width="0.2" height="15.0" fill="rgb(226,174,30)" rx="2" ry="2" /> | |
<text x="352.95" y="159.5" ></text> | |
</g> | |
<g > | |
<title>std::sys::unix::time::inner::Instant::now::h23f1bea5949f1bbd (9 samples, 0.01%)</title><rect x="1159.3" y="229" width="0.2" height="15.0" fill="rgb(235,135,52)" rx="2" ry="2" /> | |
<text x="1162.34" y="239.5" ></text> | |
</g> | |
<g > | |
<title>__GI___pthread_rwlock_rdlock (23 samples, 0.03%)</title><rect x="197.1" y="149" width="0.4" height="15.0" fill="rgb(205,184,29)" rx="2" ry="2" /> | |
<text x="200.09" y="159.5" ></text> | |
</g> | |
<g > | |
<title>cranelift_codegen::ir::extfunc::Signature::new::he2bd1efc0289ccf7 (6 samples, 0.01%)</title><rect x="326.2" y="309" width="0.1" height="15.0" fill="rgb(212,12,48)" rx="2" ry="2" /> | |
<text x="329.22" y="319.5" ></text> | |
</g> | |
<g > | |
<title>__GI___libc_realloc (19 samples, 0.03%)</title><rect x="200.6" y="197" width="0.4" height="15.0" fill="rgb(208,214,44)" rx="2" ry="2" /> | |
<text x="203.64" y="207.5" ></text> | |
</g> | |
<g > | |
<title>core::slice::_$LT$impl$u20$$u5b$T$u5d$$GT$::copy_from_slice::hf2a016039d5668ca (58 samples, 0.08%)</title><rect x="1043.7" y="357" width="1.0" height="15.0" fill="rgb(247,194,38)" rx="2" ry="2" /> | |
<text x="1046.73" y="367.5" ></text> | |
</g> | |
<g > | |
<title>tlb_finish_mmu (123 samples, 0.18%)</title><rect x="234.6" y="229" width="2.0" height="15.0" fill="rgb(245,82,17)" rx="2" ry="2" /> | |
<text x="237.55" y="239.5" ></text> | |
</g> | |
<g > | |
<title>rocinante::stoke::whitelist::WhitelistedInstruction::sample::hbdfdd11e1dde0ca4 (139 samples, 0.20%)</title><rect x="1141.1" y="389" width="2.3" height="15.0" fill="rgb(214,2,28)" rx="2" ry="2" /> | |
<text x="1144.06" y="399.5" ></text> | |
</g> | |
<g > | |
<title>[[vdso]] (7 samples, 0.01%)</title><rect x="152.1" y="117" width="0.1" height="15.0" fill="rgb(249,87,0)" rx="2" ry="2" /> | |
<text x="155.08" y="127.5" ></text> | |
</g> | |
<g > | |
<title>alloc::raw_vec::RawVec$LT$T$C$A$GT$::reserve::hcf362473d68b86cf (9 samples, 0.01%)</title><rect x="194.9" y="133" width="0.1" height="15.0" fill="rgb(251,19,24)" rx="2" ry="2" /> | |
<text x="197.87" y="143.5" ></text> | |
</g> | |
<g > | |
<title>_ZN16cranelift_entity4list17ListPool$LT$T$GT$7realloc17h94c8a4e9c97c23a9E.llvm.776987249141506950 (30 samples, 0.04%)</title><rect x="323.8" y="277" width="0.5" height="15.0" fill="rgb(219,197,49)" rx="2" ry="2" /> | |
<text x="326.80" y="287.5" ></text> | |
</g> | |
<g > | |
<title>alloc::raw_vec::RawVec$LT$T$C$A$GT$::reserve::hc8a0fc8526f8c69b (15 samples, 0.02%)</title><rect x="46.3" y="261" width="0.2" height="15.0" fill="rgb(242,187,31)" rx="2" ry="2" /> | |
<text x="49.27" y="271.5" ></text> | |
</g> | |
<g > | |
<title>std::time::Instant::now::h33d2ba6042def2d2 (8 samples, 0.01%)</title><rect x="1174.9" y="261" width="0.1" height="15.0" fill="rgb(236,96,37)" rx="2" ry="2" /> | |
<text x="1177.92" y="271.5" ></text> | |
</g> | |
<g > | |
<title>cranelift_codegen::ir::dfg::DataFlowGraph::make_inst_results::hc774d04d1992dff6 (18 samples, 0.03%)</title><rect x="321.6" y="293" width="0.4" height="15.0" fill="rgb(239,144,29)" rx="2" ry="2" /> | |
<text x="324.65" y="303.5" ></text> | |
</g> | |
<g > | |
<title>std::sys::unix::time::inner::now::ha10452f37b2930c5 (17 samples, 0.02%)</title><rect x="92.2" y="133" width="0.3" height="15.0" fill="rgb(247,73,0)" rx="2" ry="2" /> | |
<text x="95.20" y="143.5" ></text> | |
</g> | |
<g > | |
<title>mem_cgroup_try_charge (17 samples, 0.02%)</title><rect x="278.6" y="213" width="0.3" height="15.0" fill="rgb(224,190,27)" rx="2" ry="2" /> | |
<text x="281.61" y="223.5" ></text> | |
</g> | |
<g > | |
<title>std::sys::unix::time::inner::Instant::now::h23f1bea5949f1bbd (13 samples, 0.02%)</title><rect x="39.1" y="245" width="0.2" height="15.0" fill="rgb(216,149,48)" rx="2" ry="2" /> | |
<text x="42.11" y="255.5" ></text> | |
</g> | |
<g > | |
<title>__vdso_clock_gettime (12 samples, 0.02%)</title><rect x="158.3" y="101" width="0.2" height="15.0" fill="rgb(246,115,36)" rx="2" ry="2" /> | |
<text x="161.26" y="111.5" ></text> | |
</g> | |
<g > | |
<title>__GI___libc_realloc (12 samples, 0.02%)</title><rect x="132.1" y="165" width="0.2" height="15.0" fill="rgb(240,51,42)" rx="2" ry="2" /> | |
<text x="135.06" y="175.5" ></text> | |
</g> | |
<g > | |
<title>kmem_cache_free (14 samples, 0.02%)</title><rect x="288.2" y="165" width="0.3" height="15.0" fill="rgb(234,87,12)" rx="2" ry="2" /> | |
<text x="291.22" y="175.5" ></text> | |
</g> | |
<g > | |
<title>core::iter::traits::iterator::Iterator::unzip::h894cb0151c0f7fd8 (34 samples, 0.05%)</title><rect x="279.5" y="309" width="0.6" height="15.0" fill="rgb(245,186,17)" rx="2" ry="2" /> | |
<text x="282.54" y="319.5" ></text> | |
</g> | |
<g > | |
<title>hashbrown::map::HashMap$LT$K$C$V$C$S$GT$::contains_key::h6a246e820911d2be (10 samples, 0.01%)</title><rect x="872.3" y="357" width="0.2" height="15.0" fill="rgb(221,98,12)" rx="2" ry="2" /> | |
<text x="875.35" y="367.5" ></text> | |
</g> | |
<g > | |
<title>std::time::Instant::elapsed::h8e307314b2acf9be (11 samples, 0.02%)</title><rect x="73.2" y="213" width="0.2" height="15.0" fill="rgb(225,217,30)" rx="2" ry="2" /> | |
<text x="76.21" y="223.5" ></text> | |
</g> | |
<g > | |
<title>cranelift_codegen::ir::layout::Layout::append_ebb::h4406a9dd59ad7fbd (23 samples, 0.03%)</title><rect x="810.2" y="293" width="0.4" height="15.0" fill="rgb(220,116,30)" rx="2" ry="2" /> | |
<text x="813.18" 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 (35 samples, 0.05%)</title><rect x="1177.0" y="293" width="0.6" height="15.0" fill="rgb(235,108,24)" rx="2" ry="2" /> | |
<text x="1179.98" y="303.5" ></text> | |
</g> | |
<g > | |
<title>__GI___clock_gettime (11 samples, 0.02%)</title><rect x="68.0" y="165" width="0.2" height="15.0" fill="rgb(223,135,11)" rx="2" ry="2" /> | |
<text x="71.00" y="175.5" ></text> | |
</g> | |
<g > | |
<title>cranelift_bforest::path::Path$LT$F$GT$::next_node::h2a948811c5cf6f80 (7 samples, 0.01%)</title><rect x="116.1" y="181" width="0.1" height="15.0" fill="rgb(236,112,27)" rx="2" ry="2" /> | |
<text x="119.11" y="191.5" ></text> | |
</g> | |
<g > | |
<title>std::sys::unix::time::inner::now::ha10452f37b2930c5 (19 samples, 0.03%)</title><rect x="164.2" y="181" width="0.3" height="15.0" fill="rgb(230,69,16)" rx="2" ry="2" /> | |
<text x="167.19" y="191.5" ></text> | |
</g> | |
<g > | |
<title>do_syscall_64 (513 samples, 0.73%)</title><rect x="1180.9" y="389" width="8.7" height="15.0" fill="rgb(230,70,10)" rx="2" ry="2" /> | |
<text x="1183.94" y="399.5" ></text> | |
</g> | |
<g > | |
<title>cranelift_codegen::isa::x86::abi::legalize_signature::hdcf9074841354b32 (50 samples, 0.07%)</title><rect x="1169.5" y="277" width="0.8" height="15.0" fill="rgb(227,0,48)" rx="2" ry="2" /> | |
<text x="1172.47" y="287.5" ></text> | |
</g> | |
<g > | |
<title>cranelift_codegen::regalloc::live_value_tracker::LiveValueTracker::ebb_top::hfe56a550654953ca (27 samples, 0.04%)</title><rect x="145.6" y="213" width="0.5" height="15.0" fill="rgb(233,80,35)" rx="2" ry="2" /> | |
<text x="148.63" y="223.5" ></text> | |
</g> | |
<g > | |
<title>__memcpy_avx_unaligned (20 samples, 0.03%)</title><rect x="34.4" y="277" width="0.4" height="15.0" fill="rgb(246,185,34)" rx="2" ry="2" /> | |
<text x="37.43" y="287.5" ></text> | |
</g> | |
<g > | |
<title>__GI___libc_malloc (9 samples, 0.01%)</title><rect x="119.2" y="197" width="0.2" height="15.0" fill="rgb(250,223,49)" rx="2" ry="2" /> | |
<text x="122.21" y="207.5" ></text> | |
</g> | |
<g > | |
<title>__vdso_clock_gettime (6 samples, 0.01%)</title><rect x="112.1" y="117" width="0.1" height="15.0" fill="rgb(220,95,48)" rx="2" ry="2" /> | |
<text x="115.09" y="127.5" ></text> | |
</g> | |
<g > | |
<title>cranelift_bforest::path::Path$LT$F$GT$::next::h50188cd678c454ba (10 samples, 0.01%)</title><rect x="122.7" y="213" width="0.1" height="15.0" fill="rgb(234,227,9)" rx="2" ry="2" /> | |
<text x="125.67" y="223.5" ></text> | |
</g> | |
<g > | |
<title>alloc::raw_vec::RawVec$LT$T$C$A$GT$::reserve::h500ef385b8747b29 (6 samples, 0.01%)</title><rect x="1176.2" y="277" width="0.1" height="15.0" fill="rgb(209,45,13)" rx="2" ry="2" /> | |
<text x="1179.21" y="287.5" ></text> | |
</g> | |
<g > | |
<title>std::panicking::panicking::h028506a43de2cb65 (6 samples, 0.01%)</title><rect x="360.8" y="341" width="0.1" height="15.0" fill="rgb(229,102,18)" rx="2" ry="2" /> | |
<text x="363.83" y="351.5" ></text> | |
</g> | |
<g > | |
<title>cranelift_codegen::ir::builder::InstBuilder::regmove::h2d2e8972aa228be7 (35 samples, 0.05%)</title><rect x="1177.0" y="309" width="0.6" height="15.0" fill="rgb(241,106,29)" rx="2" ry="2" /> | |
<text x="1179.98" y="319.5" ></text> | |
</g> | |
<g > | |
<title>__GI___libc_malloc (9 samples, 0.01%)</title><rect x="1159.7" y="261" width="0.1" height="15.0" fill="rgb(214,44,10)" rx="2" ry="2" /> | |
<text x="1162.70" y="271.5" ></text> | |
</g> | |
<g > | |
<title>alloc::raw_vec::RawVec$LT$T$C$A$GT$::reserve::h5e34cfad90a6ce21 (21 samples, 0.03%)</title><rect x="127.3" y="213" width="0.3" height="15.0" fill="rgb(230,83,35)" rx="2" ry="2" /> | |
<text x="130.28" y="223.5" ></text> | |
</g> | |
<g > | |
<title>cranelift_codegen::regalloc::liveness::get_or_create::h5a0d21740424a6d5 (68 samples, 0.10%)</title><rect x="1172.8" y="293" width="1.2" height="15.0" fill="rgb(231,198,1)" rx="2" ry="2" /> | |
<text x="1175.83" y="303.5" ></text> | |
</g> | |
<g > | |
<title>std::time::Instant::now::h33d2ba6042def2d2 (6 samples, 0.01%)</title><rect x="1166.4" y="277" width="0.1" height="15.0" fill="rgb(232,91,44)" rx="2" ry="2" /> | |
<text x="1169.42" y="287.5" ></text> | |
</g> | |
<g > | |
<title>[[vdso]] (6 samples, 0.01%)</title><rect x="92.4" y="85" width="0.1" height="15.0" fill="rgb(226,99,19)" rx="2" ry="2" /> | |
<text x="95.39" y="95.5" ></text> | |
</g> | |
<g > | |
<title>__GI___libc_realloc (29 samples, 0.04%)</title><rect x="198.8" y="165" width="0.5" height="15.0" fill="rgb(253,50,51)" rx="2" ry="2" /> | |
<text x="201.80" y="175.5" ></text> | |
</g> | |
<g > | |
<title>_int_realloc (9 samples, 0.01%)</title><rect x="324.2" y="213" width="0.1" height="15.0" fill="rgb(233,203,24)" rx="2" ry="2" /> | |
<text x="327.15" y="223.5" ></text> | |
</g> | |
<g > | |
<title>__rdl_alloc (6 samples, 0.01%)</title><rect x="250.1" y="325" width="0.1" height="15.0" fill="rgb(250,102,6)" rx="2" ry="2" /> | |
<text x="253.14" y="335.5" ></text> | |
</g> | |
<g > | |
<title>cranelift_bforest::map::Map$LT$K$C$V$GT$::insert::h73d5aa0753b93df7 (8 samples, 0.01%)</title><rect x="121.3" y="181" width="0.1" height="15.0" fill="rgb(245,220,18)" rx="2" ry="2" /> | |
<text x="124.31" y="191.5" ></text> | |
</g> | |
<g > | |
<title>wasmparser::binary_reader::BinaryReader::read_func_type::h0cd44550c784004e (16 samples, 0.02%)</title><rect x="192.3" y="133" width="0.3" height="15.0" fill="rgb(240,38,25)" rx="2" ry="2" /> | |
<text x="195.31" y="143.5" ></text> | |
</g> | |
<g > | |
<title>_int_malloc (7 samples, 0.01%)</title><rect x="81.2" y="165" width="0.1" height="15.0" fill="rgb(228,90,2)" rx="2" ry="2" /> | |
<text x="84.19" y="175.5" ></text> | |
</g> | |
<g > | |
<title>std::sys::unix::time::inner::Instant::now::h23f1bea5949f1bbd (14 samples, 0.02%)</title><rect x="1158.1" y="229" width="0.3" height="15.0" fill="rgb(243,163,5)" rx="2" ry="2" /> | |
<text x="1161.12" y="239.5" ></text> | |
</g> | |
<g > | |
<title>cranelift_codegen_shared::constant_hash::simple_hash::h522b288b2afb6d20 (31 samples, 0.04%)</title><rect x="328.9" y="261" width="0.5" height="15.0" fill="rgb(217,179,39)" rx="2" ry="2" /> | |
<text x="331.88" y="271.5" ></text> | |
</g> | |
<g > | |
<title>_int_free (20 samples, 0.03%)</title><rect x="238.8" y="325" width="0.4" height="15.0" fill="rgb(247,3,36)" rx="2" ry="2" /> | |
<text x="241.84" y="335.5" ></text> | |
</g> | |
<g > | |
<title>std::sys::unix::time::inner::now::ha10452f37b2930c5 (12 samples, 0.02%)</title><rect x="37.6" y="229" width="0.2" height="15.0" fill="rgb(235,17,26)" rx="2" ry="2" /> | |
<text x="40.60" y="239.5" ></text> | |
</g> | |
</g> | |
</svg> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment