diff options
Diffstat (limited to 'traces/20240312-1138.svg')
| -rw-r--r-- | traces/20240312-1138.svg | 22788 |
1 files changed, 22788 insertions, 0 deletions
diff --git a/traces/20240312-1138.svg b/traces/20240312-1138.svg new file mode 100644 index 0000000..6364616 --- /dev/null +++ b/traces/20240312-1138.svg @@ -0,0 +1,22788 @@ +<?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="11318" onload="init(evt)" viewBox="0 0 1200 11318" 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="11318.0" fill="url(#background)" /> +<text id="title" x="600.00" y="24" >Flame Graph</text> +<text id="details" x="10.00" y="11301" > </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="11301" > </text> +<g id="frames"> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (2 samples, 0.07%)</title><rect x="241.9" y="10645" width="0.9" height="15.0" fill="rgb(227,145,48)" rx="2" ry="2" /> +<text x="244.93" y="10655.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (1 samples, 0.04%)</title><rect x="491.6" y="10485" width="0.5" height="15.0" fill="rgb(249,148,45)" rx="2" ry="2" /> +<text x="494.62" y="10495.5" ></text> +</g> +<g > +<title><unknown> (1 samples, 0.04%)</title><rect x="1021.8" y="4725" width="0.4" height="15.0" fill="rgb(241,13,30)" rx="2" ry="2" /> +<text x="1024.80" y="4735.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (9 samples, 0.33%)</title><rect x="395.0" y="9589" width="3.9" height="15.0" fill="rgb(240,83,53)" rx="2" ry="2" /> +<text x="397.95" y="9599.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="446.1" y="9653" width="0.4" height="15.0" fill="rgb(207,123,9)" rx="2" ry="2" /> +<text x="449.11" y="9663.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="739.6" y="10373" width="0.4" height="15.0" fill="rgb(209,72,13)" rx="2" ry="2" /> +<text x="742.59" y="10383.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (1 samples, 0.04%)</title><rect x="268.8" y="9509" width="0.4" height="15.0" fill="rgb(236,219,19)" rx="2" ry="2" /> +<text x="271.80" y="9519.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (4 samples, 0.15%)</title><rect x="869.2" y="10325" width="1.7" height="15.0" fill="rgb(215,114,52)" rx="2" ry="2" /> +<text x="872.21" y="10335.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (296 samples, 10.87%)</title><rect x="742.6" y="11125" width="128.3" height="15.0" fill="rgb(229,162,31)" rx="2" ry="2" /> +<text x="745.62" y="11135.5" >Nsfisis\Waddiwas..</text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (42 samples, 1.54%)</title><rect x="299.1" y="9701" width="18.3" height="15.0" fill="rgb(248,151,28)" rx="2" ry="2" /> +<text x="302.15" y="9711.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="365.0" y="9749" width="0.5" height="15.0" fill="rgb(218,36,4)" rx="2" ry="2" /> +<text x="368.04" y="9759.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="867.9" y="10773" width="0.4" height="15.0" fill="rgb(220,14,34)" rx="2" ry="2" /> +<text x="870.91" y="10783.5" ></text> +</g> +<g > +<title><unknown> (2 samples, 0.07%)</title><rect x="1021.4" y="7317" width="0.8" height="15.0" fill="rgb(238,153,5)" rx="2" ry="2" /> +<text x="1024.37" y="7327.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (1 samples, 0.04%)</title><rect x="739.2" y="10485" width="0.4" height="15.0" fill="rgb(249,74,45)" rx="2" ry="2" /> +<text x="742.16" y="10495.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="844.1" y="10133" width="0.4" height="15.0" fill="rgb(236,133,38)" rx="2" ry="2" /> +<text x="847.06" y="10143.5" ></text> +</g> +<g > +<title><unknown> (1 samples, 0.04%)</title><rect x="1021.8" y="4357" width="0.4" height="15.0" fill="rgb(240,102,32)" rx="2" ry="2" /> +<text x="1024.80" y="4367.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (5 samples, 0.18%)</title><rect x="742.6" y="10661" width="2.2" height="15.0" fill="rgb(223,167,49)" rx="2" ry="2" /> +<text x="745.62" y="10671.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (4 samples, 0.15%)</title><rect x="732.2" y="10581" width="1.8" height="15.0" fill="rgb(242,190,6)" rx="2" ry="2" /> +<text x="735.22" y="10591.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (9 samples, 0.33%)</title><rect x="254.5" y="9893" width="3.9" height="15.0" fill="rgb(237,97,40)" rx="2" ry="2" /> +<text x="257.50" y="9903.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (55 samples, 2.02%)</title><rect x="254.5" y="9925" width="23.8" height="15.0" fill="rgb(209,140,44)" rx="2" ry="2" /> +<text x="257.50" y="9935.5" >N..</text> +</g> +<g > +<title><unknown> (2 samples, 0.07%)</title><rect x="1021.4" y="6565" width="0.8" height="15.0" fill="rgb(238,8,44)" rx="2" ry="2" /> +<text x="1024.37" y="6575.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="1063.0" y="10949" width="0.4" height="15.0" fill="rgb(251,99,19)" rx="2" ry="2" /> +<text x="1065.98" y="10959.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (1 samples, 0.04%)</title><rect x="483.4" y="9925" width="0.4" height="15.0" fill="rgb(210,1,33)" rx="2" ry="2" /> +<text x="486.39" y="9935.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (4 samples, 0.15%)</title><rect x="351.6" y="9429" width="1.7" height="15.0" fill="rgb(239,10,5)" rx="2" ry="2" /> +<text x="354.60" y="9439.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (562 samples, 20.65%)</title><rect x="246.7" y="10245" width="243.6" height="15.0" fill="rgb(226,47,2)" rx="2" ry="2" /> +<text x="249.69" y="10255.5" >Nsfisis\Waddiwasi\Execution\Runt..</text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="734.0" y="9941" width="0.4" height="15.0" fill="rgb(229,224,16)" rx="2" ry="2" /> +<text x="736.95" y="9951.5" ></text> +</g> +<g > +<title><unknown> (2 samples, 0.07%)</title><rect x="1021.4" y="6773" width="0.8" height="15.0" fill="rgb(224,223,41)" rx="2" ry="2" /> +<text x="1024.37" y="6783.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="862.3" y="10165" width="0.4" height="15.0" fill="rgb(208,156,53)" rx="2" ry="2" /> +<text x="865.27" y="10175.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="870.1" y="9365" width="0.4" height="15.0" fill="rgb(243,63,44)" rx="2" ry="2" /> +<text x="873.07" y="9375.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (9 samples, 0.33%)</title><rect x="498.6" y="10245" width="3.9" height="15.0" fill="rgb(209,147,47)" rx="2" ry="2" /> +<text x="501.56" y="10255.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (29 samples, 1.07%)</title><rect x="759.1" y="9989" width="12.6" height="15.0" fill="rgb(253,144,50)" rx="2" ry="2" /> +<text x="762.10" y="9999.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doStoreI32 (2 samples, 0.07%)</title><rect x="515.5" y="10101" width="0.8" height="15.0" fill="rgb(207,217,8)" rx="2" ry="2" /> +<text x="518.47" y="10111.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="1071.7" y="11093" width="0.4" height="15.0" fill="rgb(205,27,26)" rx="2" ry="2" /> +<text x="1074.65" y="11103.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (1 samples, 0.04%)</title><rect x="269.2" y="9557" width="0.5" height="15.0" fill="rgb(207,125,6)" rx="2" ry="2" /> +<text x="272.24" y="9567.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="340.8" y="9861" width="0.4" height="15.0" fill="rgb(248,157,27)" rx="2" ry="2" /> +<text x="343.76" y="9871.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (289 samples, 10.62%)</title><rect x="742.6" y="10725" width="125.3" height="15.0" fill="rgb(242,69,34)" rx="2" ry="2" /> +<text x="745.62" y="10735.5" >Nsfisis\Waddiwa..</text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::deactivateLabel (1 samples, 0.04%)</title><rect x="708.8" y="9909" width="0.4" height="15.0" fill="rgb(246,20,42)" rx="2" ry="2" /> +<text x="711.81" y="9919.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\ControlFlowResult::Br (1 samples, 0.04%)</title><rect x="502.5" y="10357" width="0.4" height="15.0" fill="rgb(223,78,43)" rx="2" ry="2" /> +<text x="505.46" y="10367.5" ></text> +</g> +<g > +<title><unknown> (1 samples, 0.04%)</title><rect x="636.0" y="9861" width="0.4" height="15.0" fill="rgb(252,221,9)" rx="2" ry="2" /> +<text x="638.98" y="9871.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (7 samples, 0.26%)</title><rect x="524.6" y="10213" width="3.0" height="15.0" fill="rgb(208,163,31)" rx="2" ry="2" /> +<text x="527.57" y="10223.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="443.1" y="8629" width="0.4" height="15.0" fill="rgb(226,151,43)" rx="2" ry="2" /> +<text x="446.07" y="8639.5" ></text> +</g> +<g > +<title><unknown> (1 samples, 0.04%)</title><rect x="377.2" y="9605" width="0.4" height="15.0" fill="rgb(242,217,18)" rx="2" ry="2" /> +<text x="380.18" y="9615.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (12 samples, 0.44%)</title><rect x="440.5" y="9781" width="5.2" height="15.0" fill="rgb(248,155,53)" rx="2" ry="2" /> +<text x="443.47" y="9791.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="1129.7" y="11189" width="0.5" height="15.0" fill="rgb(232,50,52)" rx="2" ry="2" /> +<text x="1132.74" y="11199.5" ></text> +</g> +<g > +<title><unknown> (2 samples, 0.07%)</title><rect x="1021.4" y="7029" width="0.8" height="15.0" fill="rgb(206,142,17)" rx="2" ry="2" /> +<text x="1024.37" y="7039.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (4 samples, 0.15%)</title><rect x="869.2" y="10165" width="1.7" height="15.0" fill="rgb(220,196,51)" rx="2" ry="2" /> +<text x="872.21" y="10175.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="781.6" y="10293" width="0.5" height="15.0" fill="rgb(234,167,38)" rx="2" ry="2" /> +<text x="784.64" y="10303.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="739.2" y="10405" width="0.4" height="15.0" fill="rgb(241,213,29)" rx="2" ry="2" /> +<text x="742.16" y="10415.5" ></text> +</g> +<g > +<title><unknown> (2 samples, 0.07%)</title><rect x="1021.4" y="10165" width="0.8" height="15.0" fill="rgb(218,143,12)" rx="2" ry="2" /> +<text x="1024.37" y="10175.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (85 samples, 3.12%)</title><rect x="815.9" y="10277" width="36.8" height="15.0" fill="rgb(239,111,36)" rx="2" ry="2" /> +<text x="818.89" y="10287.5" >Nsf..</text> +</g> +<g > +<title><unknown> (2 samples, 0.07%)</title><rect x="1021.4" y="8885" width="0.8" height="15.0" fill="rgb(242,125,40)" rx="2" ry="2" /> +<text x="1024.37" y="8895.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="502.9" y="10277" width="0.4" height="15.0" fill="rgb(205,69,36)" rx="2" ry="2" /> +<text x="505.89" y="10287.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (1 samples, 0.04%)</title><rect x="443.1" y="8741" width="0.4" height="15.0" fill="rgb(227,4,45)" rx="2" ry="2" /> +<text x="446.07" y="8751.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (3 samples, 0.11%)</title><rect x="440.5" y="9701" width="1.3" height="15.0" fill="rgb(218,123,49)" rx="2" ry="2" /> +<text x="443.47" y="9711.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (3 samples, 0.11%)</title><rect x="442.2" y="9061" width="1.3" height="15.0" fill="rgb(233,149,23)" rx="2" ry="2" /> +<text x="445.20" y="9071.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\StackEntry::Value (1 samples, 0.04%)</title><rect x="212.9" y="11157" width="0.4" height="15.0" fill="rgb(249,54,29)" rx="2" ry="2" /> +<text x="215.88" y="11167.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="484.3" y="9781" width="0.4" height="15.0" fill="rgb(250,36,11)" rx="2" ry="2" /> +<text x="487.25" y="9791.5" ></text> +</g> +<g > +<title><unknown> (1 samples, 0.04%)</title><rect x="1021.8" y="901" width="0.4" height="15.0" fill="rgb(237,120,10)" rx="2" ry="2" /> +<text x="1024.80" y="911.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (12 samples, 0.44%)</title><rect x="498.1" y="10485" width="5.2" height="15.0" fill="rgb(211,135,0)" rx="2" ry="2" /> +<text x="501.13" y="10495.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="1115.9" y="11109" width="0.4" height="15.0" fill="rgb(217,106,12)" rx="2" ry="2" /> +<text x="1118.87" y="11119.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (126 samples, 4.63%)</title><rect x="373.7" y="9845" width="54.6" height="15.0" fill="rgb(208,215,24)" rx="2" ry="2" /> +<text x="376.71" y="9855.5" >Nsfis..</text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="337.3" y="9989" width="0.4" height="15.0" fill="rgb(207,20,15)" rx="2" ry="2" /> +<text x="340.30" y="9999.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (54 samples, 1.98%)</title><rect x="753.0" y="10277" width="23.4" height="15.0" fill="rgb(235,119,11)" rx="2" ry="2" /> +<text x="756.03" y="10287.5" >N..</text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="320.8" y="9477" width="0.5" height="15.0" fill="rgb(213,43,37)" rx="2" ry="2" /> +<text x="323.82" y="9487.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="497.3" y="10021" width="0.4" height="15.0" fill="rgb(242,50,24)" rx="2" ry="2" /> +<text x="500.26" y="10031.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="484.3" y="9669" width="0.4" height="15.0" fill="rgb(239,160,10)" rx="2" ry="2" /> +<text x="487.25" y="9679.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (5 samples, 0.18%)</title><rect x="868.8" y="10709" width="2.1" height="15.0" fill="rgb(245,139,20)" rx="2" ry="2" /> +<text x="871.77" y="10719.5" ></text> +</g> +<g > +<title><unknown> (1 samples, 0.04%)</title><rect x="542.8" y="10165" width="0.4" height="15.0" fill="rgb(246,186,40)" rx="2" ry="2" /> +<text x="545.78" y="10175.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (8 samples, 0.29%)</title><rect x="862.7" y="10261" width="3.5" height="15.0" fill="rgb(224,145,31)" rx="2" ry="2" /> +<text x="865.70" y="10271.5" ></text> +</g> +<g > +<title><unknown> (1 samples, 0.04%)</title><rect x="1021.8" y="677" width="0.4" height="15.0" fill="rgb(243,107,38)" rx="2" ry="2" /> +<text x="1024.80" y="687.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="733.5" y="9461" width="0.5" height="15.0" fill="rgb(250,70,35)" rx="2" ry="2" /> +<text x="736.52" y="9471.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="244.5" y="10341" width="0.5" height="15.0" fill="rgb(230,114,33)" rx="2" ry="2" /> +<text x="247.53" y="10351.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::invoke (1,458 samples, 53.56%)</title><rect x="238.9" y="11237" width="632.0" height="15.0" fill="rgb(217,59,42)" rx="2" ry="2" /> +<text x="241.89" y="11247.5" >Nsfisis\Waddiwasi\Execution\Runtime::invoke</text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\ControlFlowResult::Br (110 samples, 4.04%)</title><rect x="1023.1" y="11221" width="47.7" height="15.0" fill="rgb(209,185,5)" rx="2" ry="2" /> +<text x="1026.10" y="11231.5" >Nsfi..</text> +</g> +<g > +<title><unknown> (2 samples, 0.07%)</title><rect x="1021.4" y="7429" width="0.8" height="15.0" fill="rgb(228,178,28)" rx="2" ry="2" /> +<text x="1024.37" y="7439.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (3 samples, 0.11%)</title><rect x="859.2" y="10197" width="1.3" height="15.0" fill="rgb(239,141,24)" rx="2" ry="2" /> +<text x="862.24" y="10207.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::invokeByFuncAddr (1 samples, 0.04%)</title><rect x="868.3" y="11013" width="0.5" height="15.0" fill="rgb(249,174,39)" rx="2" ry="2" /> +<text x="871.34" y="11023.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="543.2" y="10085" width="0.4" height="15.0" fill="rgb(217,173,27)" rx="2" ry="2" /> +<text x="546.21" y="10095.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (21 samples, 0.77%)</title><rect x="351.2" y="9733" width="9.1" height="15.0" fill="rgb(233,198,5)" rx="2" ry="2" /> +<text x="354.17" y="9743.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1,458 samples, 53.56%)</title><rect x="238.9" y="11173" width="632.0" height="15.0" fill="rgb(230,210,36)" rx="2" ry="2" /> +<text x="241.89" y="11183.5" >Nsfisis\Waddiwasi\Execution\Runtime::execInstr</text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="372.0" y="9605" width="0.4" height="15.0" fill="rgb(223,198,38)" rx="2" ry="2" /> +<text x="374.98" y="9615.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="365.0" y="9733" width="0.5" height="15.0" fill="rgb(224,21,51)" rx="2" ry="2" /> +<text x="368.04" y="9743.5" ></text> +</g> +<g > +<title><unknown> (1 samples, 0.04%)</title><rect x="1021.8" y="5925" width="0.4" height="15.0" fill="rgb(222,90,6)" rx="2" ry="2" /> +<text x="1024.80" y="5935.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (12 samples, 0.44%)</title><rect x="511.6" y="10181" width="5.2" height="15.0" fill="rgb(210,145,38)" rx="2" ry="2" /> +<text x="514.57" y="10191.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="1128.9" y="11109" width="0.4" height="15.0" fill="rgb(236,51,20)" rx="2" ry="2" /> +<text x="1131.88" y="11119.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (1 samples, 0.04%)</title><rect x="1152.7" y="11253" width="0.5" height="15.0" fill="rgb(207,42,41)" rx="2" ry="2" /> +<text x="1155.72" y="11263.5" ></text> +</g> +<g > +<title><unknown> (1 samples, 0.04%)</title><rect x="1021.8" y="3221" width="0.4" height="15.0" fill="rgb(224,205,49)" rx="2" ry="2" /> +<text x="1024.80" y="3231.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="319.1" y="9621" width="0.4" height="15.0" fill="rgb(247,52,8)" rx="2" ry="2" /> +<text x="322.09" y="9631.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (7 samples, 0.26%)</title><rect x="460.8" y="9509" width="3.1" height="15.0" fill="rgb(205,86,40)" rx="2" ry="2" /> +<text x="463.84" y="9519.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Stack::popI32 (1 samples, 0.04%)</title><rect x="1115.0" y="11221" width="0.4" height="15.0" fill="rgb(252,183,3)" rx="2" ry="2" /> +<text x="1118.00" y="11231.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="1067.8" y="10549" width="0.4" height="15.0" fill="rgb(222,16,28)" rx="2" ry="2" /> +<text x="1070.75" y="10559.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (1 samples, 0.04%)</title><rect x="870.1" y="9765" width="0.4" height="15.0" fill="rgb(245,11,52)" rx="2" ry="2" /> +<text x="873.07" y="9775.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (2 samples, 0.07%)</title><rect x="260.6" y="9653" width="0.8" height="15.0" fill="rgb(213,70,52)" rx="2" ry="2" /> +<text x="263.57" y="9663.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="502.9" y="10229" width="0.4" height="15.0" fill="rgb(237,182,6)" rx="2" ry="2" /> +<text x="505.89" y="10239.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (12 samples, 0.44%)</title><rect x="498.1" y="10421" width="5.2" height="15.0" fill="rgb(232,129,13)" rx="2" ry="2" /> +<text x="501.13" y="10431.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (3 samples, 0.11%)</title><rect x="741.3" y="10645" width="1.3" height="15.0" fill="rgb(247,82,15)" rx="2" ry="2" /> +<text x="744.32" y="10655.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (3 samples, 0.11%)</title><rect x="676.7" y="9797" width="1.3" height="15.0" fill="rgb(210,118,54)" rx="2" ry="2" /> +<text x="679.73" y="9807.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (1 samples, 0.04%)</title><rect x="270.5" y="9701" width="0.5" height="15.0" fill="rgb(205,26,29)" rx="2" ry="2" /> +<text x="273.54" y="9711.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (4 samples, 0.15%)</title><rect x="531.9" y="10245" width="1.8" height="15.0" fill="rgb(216,63,8)" rx="2" ry="2" /> +<text x="534.94" y="10255.5" ></text> +</g> +<g > +<title><unknown> (1 samples, 0.04%)</title><rect x="1021.8" y="3061" width="0.4" height="15.0" fill="rgb(242,180,1)" rx="2" ry="2" /> +<text x="1024.80" y="3071.5" ></text> +</g> +<g > +<title>{closure}(/home/ken/src/php-waddiwasi/examples/php-on-wasm/php-wasm.php:284-295) (1 samples, 0.04%)</title><rect x="868.3" y="11029" width="0.5" height="15.0" fill="rgb(240,27,13)" rx="2" ry="2" /> +<text x="871.34" y="11039.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="1115.9" y="11013" width="0.4" height="15.0" fill="rgb(249,26,41)" rx="2" ry="2" /> +<text x="1118.87" y="11023.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (1 samples, 0.04%)</title><rect x="724.8" y="9957" width="0.5" height="15.0" fill="rgb(207,51,36)" rx="2" ry="2" /> +<text x="727.85" y="9967.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="453.5" y="9573" width="0.4" height="15.0" fill="rgb(234,62,4)" rx="2" ry="2" /> +<text x="456.48" y="9583.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (3 samples, 0.11%)</title><rect x="717.5" y="9701" width="1.3" height="15.0" fill="rgb(244,127,42)" rx="2" ry="2" /> +<text x="720.48" y="9711.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (1 samples, 0.04%)</title><rect x="319.1" y="9637" width="0.4" height="15.0" fill="rgb(226,214,7)" rx="2" ry="2" /> +<text x="322.09" y="9647.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (2 samples, 0.07%)</title><rect x="468.6" y="9813" width="0.9" height="15.0" fill="rgb(227,171,54)" rx="2" ry="2" /> +<text x="471.65" y="9823.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\ControlFlowResults\Br::__construct (3 samples, 0.11%)</title><rect x="1032.2" y="11205" width="1.3" height="15.0" fill="rgb(250,69,23)" rx="2" ry="2" /> +<text x="1035.20" y="11215.5" ></text> +</g> +<g > +<title><unknown> (1 samples, 0.04%)</title><rect x="712.7" y="9845" width="0.4" height="15.0" fill="rgb(248,117,44)" rx="2" ry="2" /> +<text x="715.71" y="9855.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Stack::currentFrame (3 samples, 0.11%)</title><rect x="164.8" y="11157" width="1.3" height="15.0" fill="rgb(223,167,51)" rx="2" ry="2" /> +<text x="167.76" y="11167.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="849.7" y="10197" width="0.4" height="15.0" fill="rgb(207,67,30)" rx="2" ry="2" /> +<text x="852.70" y="10207.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="344.7" y="9909" width="0.4" height="15.0" fill="rgb(234,183,40)" rx="2" ry="2" /> +<text x="347.67" y="9919.5" ></text> +</g> +<g > +<title><unknown> (1 samples, 0.04%)</title><rect x="1021.8" y="5109" width="0.4" height="15.0" fill="rgb(244,228,39)" rx="2" ry="2" /> +<text x="1024.80" y="5119.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::invokeByFuncAddr (5 samples, 0.18%)</title><rect x="868.8" y="10501" width="2.1" height="15.0" fill="rgb(251,79,42)" rx="2" ry="2" /> +<text x="871.77" y="10511.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="733.5" y="8725" width="0.5" height="15.0" fill="rgb(215,140,24)" rx="2" ry="2" /> +<text x="736.52" y="8735.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (1 samples, 0.04%)</title><rect x="482.5" y="9797" width="0.5" height="15.0" fill="rgb(252,87,34)" rx="2" ry="2" /> +<text x="485.52" y="9807.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="867.0" y="10373" width="0.5" height="15.0" fill="rgb(209,34,0)" rx="2" ry="2" /> +<text x="870.04" y="10383.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (3 samples, 0.11%)</title><rect x="408.4" y="9525" width="1.3" height="15.0" fill="rgb(219,191,26)" rx="2" ry="2" /> +<text x="411.39" y="9535.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="336.9" y="10005" width="0.4" height="15.0" fill="rgb(231,106,46)" rx="2" ry="2" /> +<text x="339.86" y="10015.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (1 samples, 0.04%)</title><rect x="536.3" y="9957" width="0.4" height="15.0" fill="rgb(237,190,53)" rx="2" ry="2" /> +<text x="539.27" y="9967.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="866.6" y="10293" width="0.4" height="15.0" fill="rgb(208,206,37)" rx="2" ry="2" /> +<text x="869.61" y="10303.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (24 samples, 0.88%)</title><rect x="473.0" y="9973" width="10.4" height="15.0" fill="rgb(250,53,51)" rx="2" ry="2" /> +<text x="475.98" y="9983.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeHostFunc (4 samples, 0.15%)</title><rect x="739.2" y="10789" width="1.7" height="15.0" fill="rgb(233,157,30)" rx="2" ry="2" /> +<text x="742.16" y="10799.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="469.5" y="9685" width="0.4" height="15.0" fill="rgb(244,72,14)" rx="2" ry="2" /> +<text x="472.52" y="9695.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="758.2" y="9957" width="0.5" height="15.0" fill="rgb(239,149,47)" rx="2" ry="2" /> +<text x="761.23" y="9967.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="489.0" y="9941" width="0.5" height="15.0" fill="rgb(223,81,22)" rx="2" ry="2" /> +<text x="492.02" y="9951.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="1139.7" y="11141" width="0.4" height="15.0" fill="rgb(252,194,46)" rx="2" ry="2" /> +<text x="1142.71" y="11151.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (1 samples, 0.04%)</title><rect x="867.0" y="10357" width="0.5" height="15.0" fill="rgb(208,61,41)" rx="2" ry="2" /> +<text x="870.04" y="10367.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (3 samples, 0.11%)</title><rect x="442.2" y="9237" width="1.3" height="15.0" fill="rgb(244,134,32)" rx="2" ry="2" /> +<text x="445.20" y="9247.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="1161.4" y="11173" width="0.4" height="15.0" fill="rgb(208,229,53)" rx="2" ry="2" /> +<text x="1164.39" y="11183.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="1067.8" y="10629" width="0.4" height="15.0" fill="rgb(243,108,9)" rx="2" ry="2" /> +<text x="1070.75" y="10639.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="740.5" y="10293" width="0.4" height="15.0" fill="rgb(206,199,13)" rx="2" ry="2" /> +<text x="743.46" y="10303.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (3 samples, 0.11%)</title><rect x="333.0" y="9829" width="1.3" height="15.0" fill="rgb(216,198,54)" rx="2" ry="2" /> +<text x="335.96" y="9839.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (3 samples, 0.11%)</title><rect x="741.3" y="11045" width="1.3" height="15.0" fill="rgb(236,175,35)" rx="2" ry="2" /> +<text x="744.32" y="11055.5" ></text> +</g> +<g > +<title><unknown> (1 samples, 0.04%)</title><rect x="288.7" y="9605" width="0.5" height="15.0" fill="rgb(228,168,49)" rx="2" ry="2" /> +<text x="291.74" y="9615.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="1050.0" y="10869" width="0.4" height="15.0" fill="rgb(240,98,48)" rx="2" ry="2" /> +<text x="1052.98" y="10879.5" ></text> +</g> +<g > +<title><unknown> (1 samples, 0.04%)</title><rect x="1021.8" y="3717" width="0.4" height="15.0" fill="rgb(242,49,32)" rx="2" ry="2" /> +<text x="1024.80" y="3727.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (9 samples, 0.33%)</title><rect x="466.0" y="9957" width="3.9" height="15.0" fill="rgb(217,43,54)" rx="2" ry="2" /> +<text x="469.05" y="9967.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="537.1" y="10053" width="0.5" height="15.0" fill="rgb(249,33,45)" rx="2" ry="2" /> +<text x="540.14" y="10063.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (4 samples, 0.15%)</title><rect x="423.1" y="9301" width="1.8" height="15.0" fill="rgb(217,64,47)" rx="2" ry="2" /> +<text x="426.13" y="9311.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (1 samples, 0.04%)</title><rect x="271.4" y="9829" width="0.4" height="15.0" fill="rgb(225,20,12)" rx="2" ry="2" /> +<text x="274.40" y="9839.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (4 samples, 0.15%)</title><rect x="739.2" y="10693" width="1.7" height="15.0" fill="rgb(216,71,9)" rx="2" ry="2" /> +<text x="742.16" y="10703.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="738.3" y="10453" width="0.4" height="15.0" fill="rgb(223,25,16)" rx="2" ry="2" /> +<text x="741.29" y="10463.5" ></text> +</g> +<g > +<title><unknown> (1 samples, 0.04%)</title><rect x="1021.8" y="5493" width="0.4" height="15.0" fill="rgb(220,222,23)" rx="2" ry="2" /> +<text x="1024.80" y="5503.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (1 samples, 0.04%)</title><rect x="466.5" y="9749" width="0.4" height="15.0" fill="rgb(247,159,17)" rx="2" ry="2" /> +<text x="469.48" y="9759.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (1 samples, 0.04%)</title><rect x="1115.9" y="11061" width="0.4" height="15.0" fill="rgb(214,118,36)" rx="2" ry="2" /> +<text x="1118.87" y="11071.5" ></text> +</g> +<g > +<title><unknown> (1 samples, 0.04%)</title><rect x="1021.8" y="5285" width="0.4" height="15.0" fill="rgb(227,172,12)" rx="2" ry="2" /> +<text x="1024.80" y="5295.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="537.6" y="10069" width="0.4" height="15.0" fill="rgb(206,3,12)" rx="2" ry="2" /> +<text x="540.58" y="10079.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (1 samples, 0.04%)</title><rect x="790.7" y="10277" width="0.5" height="15.0" fill="rgb(223,95,38)" rx="2" ry="2" /> +<text x="793.74" y="10287.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (3 samples, 0.11%)</title><rect x="442.2" y="8933" width="1.3" height="15.0" fill="rgb(253,44,30)" rx="2" ry="2" /> +<text x="445.20" y="8943.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="470.8" y="9989" width="0.4" height="15.0" fill="rgb(248,205,45)" rx="2" ry="2" /> +<text x="473.82" y="9999.5" ></text> +</g> +<g > +<title><unknown> (1 samples, 0.04%)</title><rect x="301.3" y="9637" width="0.4" height="15.0" fill="rgb(215,121,8)" rx="2" ry="2" /> +<text x="304.32" y="9647.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (3 samples, 0.11%)</title><rect x="741.3" y="10869" width="1.3" height="15.0" fill="rgb(225,160,24)" rx="2" ry="2" /> +<text x="744.32" y="10879.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="1129.7" y="11221" width="0.5" height="15.0" fill="rgb(245,166,30)" rx="2" ry="2" /> +<text x="1132.74" y="11231.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (12 samples, 0.44%)</title><rect x="330.4" y="9909" width="5.2" height="15.0" fill="rgb(214,97,45)" rx="2" ry="2" /> +<text x="333.36" y="9919.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="781.6" y="10309" width="0.5" height="15.0" fill="rgb(244,111,52)" rx="2" ry="2" /> +<text x="784.64" y="10319.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (3 samples, 0.11%)</title><rect x="385.0" y="9333" width="1.3" height="15.0" fill="rgb(215,157,48)" rx="2" ry="2" /> +<text x="387.98" y="9343.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (2 samples, 0.07%)</title><rect x="496.0" y="10181" width="0.8" height="15.0" fill="rgb(213,213,22)" rx="2" ry="2" /> +<text x="498.96" y="10191.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (185 samples, 6.80%)</title><rect x="652.0" y="10613" width="80.2" height="15.0" fill="rgb(225,107,2)" rx="2" ry="2" /> +<text x="655.02" y="10623.5" >Nsfisis\W..</text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="740.9" y="10613" width="0.4" height="15.0" fill="rgb(216,86,19)" rx="2" ry="2" /> +<text x="743.89" y="10623.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (2 samples, 0.07%)</title><rect x="496.0" y="10373" width="0.8" height="15.0" fill="rgb(248,188,13)" rx="2" ry="2" /> +<text x="498.96" y="10383.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (3 samples, 0.11%)</title><rect x="542.3" y="10357" width="1.3" height="15.0" fill="rgb(249,180,25)" rx="2" ry="2" /> +<text x="545.34" y="10367.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (8 samples, 0.29%)</title><rect x="664.6" y="9957" width="3.5" height="15.0" fill="rgb(252,126,50)" rx="2" ry="2" /> +<text x="667.59" y="9967.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="398.9" y="9605" width="0.4" height="15.0" fill="rgb(226,79,23)" rx="2" ry="2" /> +<text x="401.85" y="9615.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="733.5" y="9029" width="0.5" height="15.0" fill="rgb(240,100,29)" rx="2" ry="2" /> +<text x="736.52" y="9039.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (1 samples, 0.04%)</title><rect x="319.1" y="9653" width="0.4" height="15.0" fill="rgb(252,31,44)" rx="2" ry="2" /> +<text x="322.09" y="9663.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="546.2" y="10229" width="0.5" height="15.0" fill="rgb(208,169,34)" rx="2" ry="2" /> +<text x="549.25" y="10239.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="546.2" y="10197" width="0.5" height="15.0" fill="rgb(244,222,10)" rx="2" ry="2" /> +<text x="549.25" y="10207.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="546.2" y="10181" width="0.5" height="15.0" fill="rgb(206,159,17)" rx="2" ry="2" /> +<text x="549.25" y="10191.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (3 samples, 0.11%)</title><rect x="442.2" y="9125" width="1.3" height="15.0" fill="rgb(251,192,4)" rx="2" ry="2" /> +<text x="445.20" y="9135.5" ></text> +</g> +<g > +<title><unknown> (2 samples, 0.07%)</title><rect x="1021.4" y="10501" width="0.8" height="15.0" fill="rgb(205,10,26)" rx="2" ry="2" /> +<text x="1024.37" y="10511.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (32 samples, 1.18%)</title><rect x="471.7" y="10069" width="13.9" height="15.0" fill="rgb(231,224,23)" rx="2" ry="2" /> +<text x="474.68" y="10079.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (2 samples, 0.07%)</title><rect x="438.3" y="9781" width="0.9" height="15.0" fill="rgb(239,170,9)" rx="2" ry="2" /> +<text x="441.30" y="9791.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (54 samples, 1.98%)</title><rect x="753.0" y="10229" width="23.4" height="15.0" fill="rgb(236,3,46)" rx="2" ry="2" /> +<text x="756.03" y="10239.5" >N..</text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (5 samples, 0.18%)</title><rect x="474.3" y="9877" width="2.2" height="15.0" fill="rgb(253,101,31)" rx="2" ry="2" /> +<text x="477.28" y="9887.5" ></text> +</g> +<g > +<title><unknown> (1 samples, 0.04%)</title><rect x="1021.8" y="4565" width="0.4" height="15.0" fill="rgb(251,90,40)" rx="2" ry="2" /> +<text x="1024.80" y="4575.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (2 samples, 0.07%)</title><rect x="453.9" y="9589" width="0.9" height="15.0" fill="rgb(253,154,40)" rx="2" ry="2" /> +<text x="456.91" y="9599.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (70 samples, 2.57%)</title><rect x="1084.2" y="11205" width="30.4" height="15.0" fill="rgb(235,160,54)" rx="2" ry="2" /> +<text x="1087.22" y="11215.5" >Ns..</text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (2 samples, 0.07%)</title><rect x="325.2" y="9397" width="0.8" height="15.0" fill="rgb(241,31,24)" rx="2" ry="2" /> +<text x="328.16" y="9407.5" ></text> +</g> +<g > +<title><unknown> (7 samples, 0.26%)</title><rect x="209.8" y="11141" width="3.1" height="15.0" fill="rgb(248,187,22)" rx="2" ry="2" /> +<text x="212.85" y="11151.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (241 samples, 8.85%)</title><rect x="547.1" y="10117" width="104.5" height="15.0" fill="rgb(253,84,20)" rx="2" ry="2" /> +<text x="550.11" y="10127.5" >Nsfisis\Wadd..</text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="740.9" y="10357" width="0.4" height="15.0" fill="rgb(254,173,34)" rx="2" ry="2" /> +<text x="743.89" y="10367.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="1067.8" y="10453" width="0.4" height="15.0" fill="rgb(220,37,17)" rx="2" ry="2" /> +<text x="1070.75" y="10463.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (6 samples, 0.22%)</title><rect x="773.8" y="10053" width="2.6" height="15.0" fill="rgb(229,164,44)" rx="2" ry="2" /> +<text x="776.84" y="10063.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="870.1" y="7957" width="0.4" height="15.0" fill="rgb(213,193,5)" rx="2" ry="2" /> +<text x="873.07" y="7967.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (3 samples, 0.11%)</title><rect x="440.5" y="9685" width="1.3" height="15.0" fill="rgb(228,183,19)" rx="2" ry="2" /> +<text x="443.47" y="9695.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="727.0" y="9765" width="0.5" height="15.0" fill="rgb(207,65,45)" rx="2" ry="2" /> +<text x="730.02" y="9775.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="733.5" y="9669" width="0.5" height="15.0" fill="rgb(225,15,45)" rx="2" ry="2" /> +<text x="736.52" y="9679.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Stack::push (1 samples, 0.04%)</title><rect x="632.5" y="9877" width="0.4" height="15.0" fill="rgb(250,138,5)" rx="2" ry="2" /> +<text x="635.51" y="9887.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (241 samples, 8.85%)</title><rect x="547.1" y="9957" width="104.5" height="15.0" fill="rgb(224,109,21)" rx="2" ry="2" /> +<text x="550.11" y="9967.5" >Nsfisis\Wadd..</text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (24 samples, 0.88%)</title><rect x="453.5" y="9941" width="10.4" height="15.0" fill="rgb(215,188,29)" rx="2" ry="2" /> +<text x="456.48" y="9951.5" ></text> +</g> +<g > +<title><unknown> (2 samples, 0.07%)</title><rect x="1021.4" y="6853" width="0.8" height="15.0" fill="rgb(242,30,52)" rx="2" ry="2" /> +<text x="1024.37" y="6863.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="740.5" y="10341" width="0.4" height="15.0" fill="rgb(227,64,36)" rx="2" ry="2" /> +<text x="743.46" y="10351.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\MemInst::storeByte (1 samples, 0.04%)</title><rect x="632.1" y="9877" width="0.4" height="15.0" fill="rgb(205,0,41)" rx="2" ry="2" /> +<text x="635.08" y="9887.5" ></text> +</g> +<g > +<title><unknown> (2 samples, 0.07%)</title><rect x="1021.4" y="10997" width="0.8" height="15.0" fill="rgb(237,186,33)" rx="2" ry="2" /> +<text x="1024.37" y="11007.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Stack::pushValue (1 samples, 0.04%)</title><rect x="1114.1" y="11157" width="0.5" height="15.0" fill="rgb(209,210,31)" rx="2" ry="2" /> +<text x="1117.14" y="11167.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="733.5" y="9941" width="0.5" height="15.0" fill="rgb(251,217,26)" rx="2" ry="2" /> +<text x="736.52" y="9951.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (3 samples, 0.11%)</title><rect x="442.2" y="8965" width="1.3" height="15.0" fill="rgb(237,111,7)" rx="2" ry="2" /> +<text x="445.20" y="8975.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="329.9" y="9797" width="0.5" height="15.0" fill="rgb(235,21,29)" rx="2" ry="2" /> +<text x="332.93" y="9807.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="254.9" y="9765" width="0.5" height="15.0" fill="rgb(245,142,33)" rx="2" ry="2" /> +<text x="257.93" y="9775.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (4 samples, 0.15%)</title><rect x="732.2" y="10325" width="1.8" height="15.0" fill="rgb(240,50,28)" rx="2" ry="2" /> +<text x="735.22" y="10335.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (36 samples, 1.32%)</title><rect x="301.7" y="9653" width="15.7" height="15.0" fill="rgb(236,228,52)" rx="2" ry="2" /> +<text x="304.75" y="9663.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="245.4" y="10277" width="0.4" height="15.0" fill="rgb(252,37,41)" rx="2" ry="2" /> +<text x="248.39" y="10287.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (1 samples, 0.04%)</title><rect x="1151.0" y="11157" width="0.4" height="15.0" fill="rgb(230,210,45)" rx="2" ry="2" /> +<text x="1153.98" y="11167.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Stack::pushBool (1 samples, 0.04%)</title><rect x="445.2" y="9525" width="0.5" height="15.0" fill="rgb(251,79,32)" rx="2" ry="2" /> +<text x="448.24" y="9535.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="740.5" y="10581" width="0.4" height="15.0" fill="rgb(222,0,40)" rx="2" ry="2" /> +<text x="743.46" y="10591.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (1 samples, 0.04%)</title><rect x="734.4" y="10069" width="0.4" height="15.0" fill="rgb(227,138,32)" rx="2" ry="2" /> +<text x="737.39" y="10079.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="546.2" y="10261" width="0.5" height="15.0" fill="rgb(214,28,23)" rx="2" ry="2" /> +<text x="549.25" y="10271.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeHostFunc (1,142 samples, 41.95%)</title><rect x="243.2" y="10725" width="495.1" height="15.0" fill="rgb(213,70,24)" rx="2" ry="2" /> +<text x="246.23" y="10735.5" >Nsfisis\Waddiwasi\Execution\Runtime::doInvokeHostFunc</text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="1081.6" y="11205" width="0.5" height="15.0" fill="rgb(237,164,47)" rx="2" ry="2" /> +<text x="1084.62" y="11215.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1,150 samples, 42.25%)</title><rect x="242.8" y="11013" width="498.5" height="15.0" fill="rgb(252,132,43)" rx="2" ry="2" /> +<text x="245.79" y="11023.5" >Nsfisis\Waddiwasi\Execution\Runtime::execInstr</text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="870.5" y="9845" width="0.4" height="15.0" fill="rgb(205,142,22)" rx="2" ry="2" /> +<text x="873.51" y="9855.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="469.5" y="9669" width="0.4" height="15.0" fill="rgb(216,214,24)" rx="2" ry="2" /> +<text x="472.52" y="9679.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (5 samples, 0.18%)</title><rect x="742.6" y="10709" width="2.2" height="15.0" fill="rgb(252,27,50)" rx="2" ry="2" /> +<text x="745.62" y="10719.5" ></text> +</g> +<g > +<title>print_r (1 samples, 0.04%)</title><rect x="164.3" y="11125" width="0.5" height="15.0" fill="rgb(251,27,33)" rx="2" ry="2" /> +<text x="167.33" y="11135.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::deactivateLabel (1 samples, 0.04%)</title><rect x="327.3" y="9925" width="0.5" height="15.0" fill="rgb(238,24,50)" rx="2" ry="2" /> +<text x="330.33" y="9935.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="439.2" y="9653" width="0.4" height="15.0" fill="rgb(223,47,29)" rx="2" ry="2" /> +<text x="442.17" y="9663.5" ></text> +</g> +<g > +<title><unknown> (1 samples, 0.04%)</title><rect x="1137.1" y="11189" width="0.4" height="15.0" fill="rgb(224,174,44)" rx="2" ry="2" /> +<text x="1140.11" y="11199.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="412.7" y="9253" width="0.5" height="15.0" fill="rgb(227,42,16)" rx="2" ry="2" /> +<text x="415.73" y="9263.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (1 samples, 0.04%)</title><rect x="244.5" y="10453" width="0.5" height="15.0" fill="rgb(236,159,51)" rx="2" ry="2" /> +<text x="247.53" y="10463.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="397.6" y="9445" width="0.4" height="15.0" fill="rgb(230,17,32)" rx="2" ry="2" /> +<text x="400.55" y="9455.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="777.3" y="10181" width="0.4" height="15.0" fill="rgb(232,36,26)" rx="2" ry="2" /> +<text x="780.30" y="10191.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (2 samples, 0.07%)</title><rect x="372.8" y="9509" width="0.9" height="15.0" fill="rgb(215,108,34)" rx="2" ry="2" /> +<text x="375.84" y="9519.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="1098.5" y="11029" width="0.5" height="15.0" fill="rgb(205,7,49)" rx="2" ry="2" /> +<text x="1101.53" y="11039.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="497.3" y="10261" width="0.4" height="15.0" fill="rgb(241,1,30)" rx="2" ry="2" /> +<text x="500.26" y="10271.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Stack::pushI32 (1 samples, 0.04%)</title><rect x="1181.3" y="11237" width="0.5" height="15.0" fill="rgb(232,126,17)" rx="2" ry="2" /> +<text x="1184.33" y="11247.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (3 samples, 0.11%)</title><rect x="442.2" y="8981" width="1.3" height="15.0" fill="rgb(241,89,18)" rx="2" ry="2" /> +<text x="445.20" y="8991.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (4 samples, 0.15%)</title><rect x="411.4" y="9429" width="1.8" height="15.0" fill="rgb(228,170,16)" rx="2" ry="2" /> +<text x="414.43" y="9439.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="409.3" y="9029" width="0.4" height="15.0" fill="rgb(232,61,31)" rx="2" ry="2" /> +<text x="412.26" y="9039.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (4 samples, 0.15%)</title><rect x="241.1" y="10789" width="1.7" height="15.0" fill="rgb(225,84,40)" rx="2" ry="2" /> +<text x="244.06" y="10799.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (2 samples, 0.07%)</title><rect x="426.6" y="9301" width="0.9" height="15.0" fill="rgb(231,57,9)" rx="2" ry="2" /> +<text x="429.60" y="9311.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="1067.8" y="10613" width="0.4" height="15.0" fill="rgb(249,2,39)" rx="2" ry="2" /> +<text x="1070.75" y="10623.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="546.2" y="10293" width="0.5" height="15.0" fill="rgb(212,40,40)" rx="2" ry="2" /> +<text x="549.25" y="10303.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (13 samples, 0.48%)</title><rect x="497.7" y="10517" width="5.6" height="15.0" fill="rgb(208,194,36)" rx="2" ry="2" /> +<text x="500.69" y="10527.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (1 samples, 0.04%)</title><rect x="862.3" y="10245" width="0.4" height="15.0" fill="rgb(236,111,44)" rx="2" ry="2" /> +<text x="865.27" y="10255.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (8 samples, 0.29%)</title><rect x="293.9" y="9781" width="3.5" height="15.0" fill="rgb(250,30,48)" rx="2" ry="2" /> +<text x="296.95" y="9791.5" ></text> +</g> +<g > +<title><unknown> (2 samples, 0.07%)</title><rect x="1021.4" y="8357" width="0.8" height="15.0" fill="rgb(248,181,41)" rx="2" ry="2" /> +<text x="1024.37" y="8367.5" ></text> +</g> +<g > +<title><unknown> (1 samples, 0.04%)</title><rect x="1021.8" y="1461" width="0.4" height="15.0" fill="rgb(234,145,38)" rx="2" ry="2" /> +<text x="1024.80" y="1471.5" ></text> +</g> +<g > +<title><unknown> (2 samples, 0.07%)</title><rect x="1021.4" y="9701" width="0.8" height="15.0" fill="rgb(212,146,32)" rx="2" ry="2" /> +<text x="1024.37" y="9711.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (2 samples, 0.07%)</title><rect x="408.4" y="9381" width="0.9" height="15.0" fill="rgb(254,52,20)" rx="2" ry="2" /> +<text x="411.39" y="9391.5" ></text> +</g> +<g > +<title><unknown> (2 samples, 0.07%)</title><rect x="1021.4" y="7701" width="0.8" height="15.0" fill="rgb(226,118,8)" rx="2" ry="2" /> +<text x="1024.37" y="7711.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Stack::push (1 samples, 0.04%)</title><rect x="649.9" y="9893" width="0.4" height="15.0" fill="rgb(213,27,3)" rx="2" ry="2" /> +<text x="652.85" y="9903.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (2 samples, 0.07%)</title><rect x="453.9" y="9685" width="0.9" height="15.0" fill="rgb(236,84,49)" rx="2" ry="2" /> +<text x="456.91" y="9695.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (3 samples, 0.11%)</title><rect x="442.2" y="9077" width="1.3" height="15.0" fill="rgb(208,146,33)" rx="2" ry="2" /> +<text x="445.20" y="9087.5" ></text> +</g> +<g > +<title><unknown> (1 samples, 0.04%)</title><rect x="362.9" y="9717" width="0.4" height="15.0" fill="rgb(208,27,13)" rx="2" ry="2" /> +<text x="365.87" y="9727.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (3 samples, 0.11%)</title><rect x="442.2" y="9349" width="1.3" height="15.0" fill="rgb(214,163,1)" rx="2" ry="2" /> +<text x="445.20" y="9359.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (5 samples, 0.18%)</title><rect x="792.0" y="10325" width="2.2" height="15.0" fill="rgb(214,37,10)" rx="2" ry="2" /> +<text x="795.04" y="10335.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (5 samples, 0.18%)</title><rect x="435.3" y="9797" width="2.1" height="15.0" fill="rgb(234,6,44)" rx="2" ry="2" /> +<text x="438.27" y="9807.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="238.9" y="10693" width="0.4" height="15.0" fill="rgb(249,82,50)" rx="2" ry="2" /> +<text x="241.89" y="10703.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (1 samples, 0.04%)</title><rect x="397.6" y="9541" width="0.4" height="15.0" fill="rgb(247,77,48)" rx="2" ry="2" /> +<text x="400.55" y="9551.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Stack::pushI32 (1 samples, 0.04%)</title><rect x="360.3" y="9621" width="0.4" height="15.0" fill="rgb(235,33,19)" rx="2" ry="2" /> +<text x="363.27" y="9631.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (7 samples, 0.26%)</title><rect x="735.3" y="10629" width="3.0" height="15.0" fill="rgb(246,100,23)" rx="2" ry="2" /> +<text x="738.25" y="10639.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="424.4" y="8917" width="0.5" height="15.0" fill="rgb(208,201,9)" rx="2" ry="2" /> +<text x="427.43" y="8927.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (22 samples, 0.81%)</title><rect x="317.4" y="9701" width="9.5" height="15.0" fill="rgb(205,105,41)" rx="2" ry="2" /> +<text x="320.35" y="9711.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (2 samples, 0.07%)</title><rect x="419.7" y="9493" width="0.8" height="15.0" fill="rgb(245,57,35)" rx="2" ry="2" /> +<text x="422.66" y="9503.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (6 samples, 0.22%)</title><rect x="727.9" y="9909" width="2.6" height="15.0" fill="rgb(214,177,26)" rx="2" ry="2" /> +<text x="730.88" y="9919.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="238.9" y="10181" width="0.4" height="15.0" fill="rgb(241,80,38)" rx="2" ry="2" /> +<text x="241.89" y="10191.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (5 samples, 0.18%)</title><rect x="479.9" y="9813" width="2.2" height="15.0" fill="rgb(251,192,7)" rx="2" ry="2" /> +<text x="482.92" y="9823.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Stack::pushValue (1 samples, 0.04%)</title><rect x="678.9" y="10037" width="0.4" height="15.0" fill="rgb(219,65,4)" rx="2" ry="2" /> +<text x="681.90" y="10047.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (3 samples, 0.11%)</title><rect x="483.8" y="9861" width="1.3" height="15.0" fill="rgb(210,91,39)" rx="2" ry="2" /> +<text x="486.82" y="9871.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="404.9" y="9589" width="0.5" height="15.0" fill="rgb(235,160,21)" rx="2" ry="2" /> +<text x="407.92" y="9599.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (162 samples, 5.95%)</title><rect x="797.2" y="10533" width="70.3" height="15.0" fill="rgb(207,134,41)" rx="2" ry="2" /> +<text x="800.24" y="10543.5" >Nsfisis..</text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="261.4" y="9669" width="0.5" height="15.0" fill="rgb(236,201,32)" rx="2" ry="2" /> +<text x="264.43" y="9679.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (2 samples, 0.07%)</title><rect x="535.8" y="10037" width="0.9" height="15.0" fill="rgb(238,93,15)" rx="2" ry="2" /> +<text x="538.84" y="10047.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="867.9" y="10037" width="0.4" height="15.0" fill="rgb(245,74,15)" rx="2" ry="2" /> +<text x="870.91" y="10047.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="847.5" y="10101" width="0.5" height="15.0" fill="rgb(217,29,53)" rx="2" ry="2" /> +<text x="850.53" y="10111.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (11 samples, 0.40%)</title><rect x="459.1" y="9637" width="4.8" height="15.0" fill="rgb(254,194,30)" rx="2" ry="2" /> +<text x="462.11" y="9647.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="537.1" y="10005" width="0.5" height="15.0" fill="rgb(249,185,50)" rx="2" ry="2" /> +<text x="540.14" y="10015.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="443.1" y="8853" width="0.4" height="15.0" fill="rgb(245,147,23)" rx="2" ry="2" /> +<text x="446.07" y="8863.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="1115.9" y="10917" width="0.4" height="15.0" fill="rgb(253,114,47)" rx="2" ry="2" /> +<text x="1118.87" y="10927.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (57 samples, 2.09%)</title><rect x="503.8" y="10421" width="24.7" height="15.0" fill="rgb(232,175,16)" rx="2" ry="2" /> +<text x="506.76" y="10431.5" >N..</text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="870.1" y="8629" width="0.4" height="15.0" fill="rgb(240,140,51)" rx="2" ry="2" /> +<text x="873.07" y="8639.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="345.1" y="9621" width="0.4" height="15.0" fill="rgb(244,91,15)" rx="2" ry="2" /> +<text x="348.10" y="9631.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (1 samples, 0.04%)</title><rect x="254.9" y="9813" width="0.5" height="15.0" fill="rgb(229,193,28)" rx="2" ry="2" /> +<text x="257.93" y="9823.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="483.8" y="9733" width="0.5" height="15.0" fill="rgb(249,38,34)" rx="2" ry="2" /> +<text x="486.82" y="9743.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="484.3" y="9765" width="0.4" height="15.0" fill="rgb(235,198,27)" rx="2" ry="2" /> +<text x="487.25" y="9775.5" ></text> +</g> +<g > +<title><unknown> (1 samples, 0.04%)</title><rect x="1021.8" y="2277" width="0.4" height="15.0" fill="rgb(213,153,23)" rx="2" ry="2" /> +<text x="1024.80" y="2287.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="516.8" y="10149" width="0.4" height="15.0" fill="rgb(226,50,36)" rx="2" ry="2" /> +<text x="519.77" y="10159.5" ></text> +</g> +<g > +<title><unknown> (2 samples, 0.07%)</title><rect x="1021.4" y="10325" width="0.8" height="15.0" fill="rgb(211,165,0)" rx="2" ry="2" /> +<text x="1024.37" y="10335.5" ></text> +</g> +<g > +<title><unknown> (2 samples, 0.07%)</title><rect x="1021.4" y="7221" width="0.8" height="15.0" fill="rgb(222,218,41)" rx="2" ry="2" /> +<text x="1024.37" y="7231.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (9 samples, 0.33%)</title><rect x="786.8" y="10309" width="3.9" height="15.0" fill="rgb(249,6,0)" rx="2" ry="2" /> +<text x="789.84" y="10319.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (3 samples, 0.11%)</title><rect x="475.2" y="9797" width="1.3" height="15.0" fill="rgb(218,83,37)" rx="2" ry="2" /> +<text x="478.15" y="9807.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="486.4" y="9829" width="0.5" height="15.0" fill="rgb(240,31,23)" rx="2" ry="2" /> +<text x="489.42" y="9839.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::invokeByFuncAddr (29 samples, 1.07%)</title><rect x="490.8" y="10693" width="12.5" height="15.0" fill="rgb(206,33,17)" rx="2" ry="2" /> +<text x="493.76" y="10703.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="866.2" y="10261" width="0.4" height="15.0" fill="rgb(213,114,32)" rx="2" ry="2" /> +<text x="869.17" y="10271.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="1035.2" y="11045" width="0.5" height="15.0" fill="rgb(229,109,6)" rx="2" ry="2" /> +<text x="1038.24" y="11055.5" ></text> +</g> +<g > +<title><unknown> (1 samples, 0.04%)</title><rect x="1021.8" y="2501" width="0.4" height="15.0" fill="rgb(246,210,46)" rx="2" ry="2" /> +<text x="1024.80" y="2511.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (20 samples, 0.73%)</title><rect x="455.2" y="9717" width="8.7" height="15.0" fill="rgb(220,25,16)" rx="2" ry="2" /> +<text x="458.21" y="9727.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (183 samples, 6.72%)</title><rect x="652.9" y="10245" width="79.3" height="15.0" fill="rgb(223,171,14)" rx="2" ry="2" /> +<text x="655.89" y="10255.5" >Nsfisis\W..</text> +</g> +<g > +<title><unknown> (1 samples, 0.04%)</title><rect x="1021.8" y="1621" width="0.4" height="15.0" fill="rgb(253,69,36)" rx="2" ry="2" /> +<text x="1024.80" y="1631.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="427.5" y="9445" width="0.4" height="15.0" fill="rgb(253,213,10)" rx="2" ry="2" /> +<text x="430.47" y="9455.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (15 samples, 0.55%)</title><rect x="271.8" y="9845" width="6.5" height="15.0" fill="rgb(252,37,17)" rx="2" ry="2" /> +<text x="274.84" y="9855.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (4 samples, 0.15%)</title><rect x="391.5" y="9621" width="1.7" height="15.0" fill="rgb(222,122,54)" rx="2" ry="2" /> +<text x="394.48" y="9631.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="744.4" y="10453" width="0.4" height="15.0" fill="rgb(212,137,54)" rx="2" ry="2" /> +<text x="747.36" y="10463.5" ></text> +</g> +<g > +<title><unknown> (2 samples, 0.07%)</title><rect x="1021.4" y="7493" width="0.8" height="15.0" fill="rgb(228,4,29)" rx="2" ry="2" /> +<text x="1024.37" y="7503.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="329.1" y="9749" width="0.4" height="15.0" fill="rgb(221,94,8)" rx="2" ry="2" /> +<text x="332.06" y="9759.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (563 samples, 20.68%)</title><rect x="246.3" y="10517" width="244.0" height="15.0" fill="rgb(211,88,32)" rx="2" ry="2" /> +<text x="249.26" y="10527.5" >Nsfisis\Waddiwasi\Execution\Runt..</text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (3 samples, 0.11%)</title><rect x="741.3" y="10917" width="1.3" height="15.0" fill="rgb(207,80,30)" rx="2" ry="2" /> +<text x="744.32" y="10927.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (1 samples, 0.04%)</title><rect x="475.6" y="9781" width="0.4" height="15.0" fill="rgb(225,217,48)" rx="2" ry="2" /> +<text x="478.58" y="9791.5" ></text> +</g> +<g > +<title><unknown> (2 samples, 0.07%)</title><rect x="1021.4" y="11061" width="0.8" height="15.0" fill="rgb(221,142,49)" rx="2" ry="2" /> +<text x="1024.37" y="11071.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="733.5" y="9397" width="0.5" height="15.0" fill="rgb(237,145,25)" rx="2" ry="2" /> +<text x="736.52" y="9407.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (11 samples, 0.40%)</title><rect x="273.6" y="9813" width="4.7" height="15.0" fill="rgb(211,82,12)" rx="2" ry="2" /> +<text x="276.57" y="9823.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Val::Num (4 samples, 0.15%)</title><rect x="141.8" y="11141" width="1.7" height="15.0" fill="rgb(215,44,20)" rx="2" ry="2" /> +<text x="144.79" y="11151.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::invokeByFuncAddr (571 samples, 20.98%)</title><rect x="243.2" y="10693" width="247.6" height="15.0" fill="rgb(223,52,12)" rx="2" ry="2" /> +<text x="246.23" y="10703.5" >Nsfisis\Waddiwasi\Execution\Runt..</text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (1 samples, 0.04%)</title><rect x="733.5" y="8341" width="0.5" height="15.0" fill="rgb(215,15,23)" rx="2" ry="2" /> +<text x="736.52" y="8351.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="465.2" y="9973" width="0.4" height="15.0" fill="rgb(216,222,40)" rx="2" ry="2" /> +<text x="468.18" y="9983.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="867.0" y="10261" width="0.5" height="15.0" fill="rgb(207,43,4)" rx="2" ry="2" /> +<text x="870.04" y="10271.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (4 samples, 0.15%)</title><rect x="423.1" y="9365" width="1.8" height="15.0" fill="rgb(224,140,20)" rx="2" ry="2" /> +<text x="426.13" y="9375.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="866.2" y="10197" width="0.4" height="15.0" fill="rgb(216,97,1)" rx="2" ry="2" /> +<text x="869.17" y="10207.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Stack::pushI32 (1 samples, 0.04%)</title><rect x="437.0" y="9781" width="0.4" height="15.0" fill="rgb(240,98,4)" rx="2" ry="2" /> +<text x="440.00" y="9791.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (8 samples, 0.29%)</title><rect x="491.6" y="10517" width="3.5" height="15.0" fill="rgb(237,217,1)" rx="2" ry="2" /> +<text x="494.62" y="10527.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (6 samples, 0.22%)</title><rect x="275.7" y="9781" width="2.6" height="15.0" fill="rgb(213,184,1)" rx="2" ry="2" /> +<text x="278.74" y="9791.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="1035.2" y="11093" width="0.5" height="15.0" fill="rgb(213,159,49)" rx="2" ry="2" /> +<text x="1038.24" y="11103.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (9 samples, 0.33%)</title><rect x="460.0" y="9589" width="3.9" height="15.0" fill="rgb(239,213,13)" rx="2" ry="2" /> +<text x="462.98" y="9599.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (3 samples, 0.11%)</title><rect x="329.1" y="9909" width="1.3" height="15.0" fill="rgb(222,36,6)" rx="2" ry="2" /> +<text x="332.06" y="9919.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="1067.8" y="10789" width="0.4" height="15.0" fill="rgb(240,46,43)" rx="2" ry="2" /> +<text x="1070.75" y="10799.5" ></text> +</g> +<g > +<title><unknown> (1 samples, 0.04%)</title><rect x="642.5" y="9893" width="0.4" height="15.0" fill="rgb(248,82,42)" rx="2" ry="2" /> +<text x="645.48" y="9903.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (2 samples, 0.07%)</title><rect x="404.5" y="9685" width="0.9" height="15.0" fill="rgb(223,208,42)" rx="2" ry="2" /> +<text x="407.49" y="9695.5" ></text> +</g> +<g > +<title><unknown> (1 samples, 0.04%)</title><rect x="1021.8" y="4933" width="0.4" height="15.0" fill="rgb(220,2,49)" rx="2" ry="2" /> +<text x="1024.80" y="4943.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (1 samples, 0.04%)</title><rect x="409.3" y="9445" width="0.4" height="15.0" fill="rgb(210,199,5)" rx="2" ry="2" /> +<text x="412.26" y="9455.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (51 samples, 1.87%)</title><rect x="377.6" y="9669" width="22.1" height="15.0" fill="rgb(220,119,39)" rx="2" ry="2" /> +<text x="380.61" y="9679.5" >N..</text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="866.2" y="10213" width="0.4" height="15.0" fill="rgb(236,188,44)" rx="2" ry="2" /> +<text x="869.17" y="10223.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="744.4" y="10165" width="0.4" height="15.0" fill="rgb(252,201,42)" rx="2" ry="2" /> +<text x="747.36" y="10175.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (2 samples, 0.07%)</title><rect x="1141.0" y="11157" width="0.9" height="15.0" fill="rgb(242,32,16)" rx="2" ry="2" /> +<text x="1144.01" y="11167.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (1 samples, 0.04%)</title><rect x="1090.3" y="11173" width="0.4" height="15.0" fill="rgb(236,13,48)" rx="2" ry="2" /> +<text x="1093.29" y="11183.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="412.7" y="9157" width="0.5" height="15.0" fill="rgb(238,18,41)" rx="2" ry="2" /> +<text x="415.73" y="9167.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (1 samples, 0.04%)</title><rect x="734.8" y="10613" width="0.5" height="15.0" fill="rgb(239,65,45)" rx="2" ry="2" /> +<text x="737.82" y="10623.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="331.2" y="9637" width="0.5" height="15.0" fill="rgb(244,64,24)" rx="2" ry="2" /> +<text x="334.23" y="9647.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (4 samples, 0.15%)</title><rect x="411.4" y="9413" width="1.8" height="15.0" fill="rgb(208,119,27)" rx="2" ry="2" /> +<text x="414.43" y="9423.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="319.1" y="9445" width="0.4" height="15.0" fill="rgb(237,62,4)" rx="2" ry="2" /> +<text x="322.09" y="9455.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="448.7" y="9797" width="0.4" height="15.0" fill="rgb(222,80,5)" rx="2" ry="2" /> +<text x="451.71" y="9807.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="476.0" y="9765" width="0.5" height="15.0" fill="rgb(232,74,46)" rx="2" ry="2" /> +<text x="479.02" y="9775.5" ></text> +</g> +<g > +<title><unknown> (1 samples, 0.04%)</title><rect x="1094.6" y="11157" width="0.5" height="15.0" fill="rgb(238,99,11)" rx="2" ry="2" /> +<text x="1097.63" y="11167.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="730.1" y="9861" width="0.4" height="15.0" fill="rgb(250,130,31)" rx="2" ry="2" /> +<text x="733.05" y="9871.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (11 samples, 0.40%)</title><rect x="368.9" y="9813" width="4.8" height="15.0" fill="rgb(233,202,29)" rx="2" ry="2" /> +<text x="371.94" y="9823.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Stack::pushI32 (1 samples, 0.04%)</title><rect x="530.6" y="10069" width="0.5" height="15.0" fill="rgb(239,65,23)" rx="2" ry="2" /> +<text x="533.64" y="10079.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (1 samples, 0.04%)</title><rect x="446.1" y="9749" width="0.4" height="15.0" fill="rgb(215,62,14)" rx="2" ry="2" /> +<text x="449.11" y="9759.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="497.3" y="10053" width="0.4" height="15.0" fill="rgb(210,33,53)" rx="2" ry="2" /> +<text x="500.26" y="10063.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="483.8" y="9653" width="0.5" height="15.0" fill="rgb(244,46,43)" rx="2" ry="2" /> +<text x="486.82" y="9663.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="427.5" y="9285" width="0.4" height="15.0" fill="rgb(210,143,3)" rx="2" ry="2" /> +<text x="430.47" y="9295.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (1 samples, 0.04%)</title><rect x="365.0" y="9781" width="0.5" height="15.0" fill="rgb(233,197,45)" rx="2" ry="2" /> +<text x="368.04" y="9791.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (13 samples, 0.48%)</title><rect x="421.8" y="9525" width="5.7" height="15.0" fill="rgb(209,191,10)" rx="2" ry="2" /> +<text x="424.83" y="9535.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (515 samples, 18.92%)</title><rect x="248.0" y="10149" width="223.2" height="15.0" fill="rgb(248,58,39)" rx="2" ry="2" /> +<text x="250.99" y="10159.5" >Nsfisis\Waddiwasi\Execution\R..</text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="733.5" y="8453" width="0.5" height="15.0" fill="rgb(220,135,8)" rx="2" ry="2" /> +<text x="736.52" y="8463.5" ></text> +</g> +<g > +<title><unknown> (1 samples, 0.04%)</title><rect x="249.7" y="10101" width="0.5" height="15.0" fill="rgb(244,179,27)" rx="2" ry="2" /> +<text x="252.73" y="10111.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="373.3" y="9445" width="0.4" height="15.0" fill="rgb(229,130,34)" rx="2" ry="2" /> +<text x="376.28" y="9455.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (1 samples, 0.04%)</title><rect x="439.2" y="9589" width="0.4" height="15.0" fill="rgb(227,3,40)" rx="2" ry="2" /> +<text x="442.17" y="9599.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (5 samples, 0.18%)</title><rect x="868.8" y="10693" width="2.1" height="15.0" fill="rgb(239,65,37)" rx="2" ry="2" /> +<text x="871.77" y="10703.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="870.1" y="7829" width="0.4" height="15.0" fill="rgb(252,8,39)" rx="2" ry="2" /> +<text x="873.07" y="7839.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (3 samples, 0.11%)</title><rect x="426.2" y="9333" width="1.3" height="15.0" fill="rgb(252,55,17)" rx="2" ry="2" /> +<text x="429.16" y="9343.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\MemInst::storeI32 (1 samples, 0.04%)</title><rect x="457.8" y="9669" width="0.4" height="15.0" fill="rgb(209,83,43)" rx="2" ry="2" /> +<text x="460.81" y="9679.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Val::NumI32 (3 samples, 0.11%)</title><rect x="174.3" y="11173" width="1.3" height="15.0" fill="rgb(222,137,31)" rx="2" ry="2" /> +<text x="177.30" y="11183.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="870.1" y="8485" width="0.4" height="15.0" fill="rgb(253,38,9)" rx="2" ry="2" /> +<text x="873.07" y="8495.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (291 samples, 10.69%)</title><rect x="742.6" y="11061" width="126.2" height="15.0" fill="rgb(220,108,49)" rx="2" ry="2" /> +<text x="745.62" y="11071.5" >Nsfisis\Waddiwa..</text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (2 samples, 0.07%)</title><rect x="496.0" y="10069" width="0.8" height="15.0" fill="rgb(205,10,34)" rx="2" ry="2" /> +<text x="498.96" y="10079.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (162 samples, 5.95%)</title><rect x="797.2" y="10501" width="70.3" height="15.0" fill="rgb(246,171,37)" rx="2" ry="2" /> +<text x="800.24" y="10511.5" >Nsfisis..</text> +</g> +<g > +<title><unknown> (2 samples, 0.07%)</title><rect x="1021.4" y="9989" width="0.8" height="15.0" fill="rgb(238,111,51)" rx="2" ry="2" /> +<text x="1024.37" y="9999.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="867.9" y="10341" width="0.4" height="15.0" fill="rgb(250,225,25)" rx="2" ry="2" /> +<text x="870.91" y="10351.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (3 samples, 0.11%)</title><rect x="722.2" y="9877" width="1.3" height="15.0" fill="rgb(205,120,21)" rx="2" ry="2" /> +<text x="725.25" y="9887.5" ></text> +</g> +<g > +<title><unknown> (1 samples, 0.04%)</title><rect x="1021.8" y="3653" width="0.4" height="15.0" fill="rgb(237,51,35)" rx="2" ry="2" /> +<text x="1024.80" y="3663.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (1 samples, 0.04%)</title><rect x="271.4" y="9765" width="0.4" height="15.0" fill="rgb(249,31,22)" rx="2" ry="2" /> +<text x="274.40" y="9775.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="1115.9" y="11093" width="0.4" height="15.0" fill="rgb(213,32,13)" rx="2" ry="2" /> +<text x="1118.87" y="11103.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (3 samples, 0.11%)</title><rect x="536.7" y="10197" width="1.3" height="15.0" fill="rgb(214,210,18)" rx="2" ry="2" /> +<text x="539.71" y="10207.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="744.4" y="10149" width="0.4" height="15.0" fill="rgb(248,11,54)" rx="2" ry="2" /> +<text x="747.36" y="10159.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (2 samples, 0.07%)</title><rect x="468.6" y="9797" width="0.9" height="15.0" fill="rgb(222,54,4)" rx="2" ry="2" /> +<text x="471.65" y="9807.5" ></text> +</g> +<g > +<title><unknown> (1 samples, 0.04%)</title><rect x="1021.8" y="2069" width="0.4" height="15.0" fill="rgb(219,89,48)" rx="2" ry="2" /> +<text x="1024.80" y="2079.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="870.1" y="8821" width="0.4" height="15.0" fill="rgb(213,141,24)" rx="2" ry="2" /> +<text x="873.07" y="8831.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (2 samples, 0.07%)</title><rect x="325.2" y="9509" width="0.8" height="15.0" fill="rgb(250,170,46)" rx="2" ry="2" /> +<text x="328.16" y="9519.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="867.9" y="10389" width="0.4" height="15.0" fill="rgb(221,44,27)" rx="2" ry="2" /> +<text x="870.91" y="10399.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="739.2" y="10293" width="0.4" height="15.0" fill="rgb(215,23,12)" rx="2" ry="2" /> +<text x="742.16" y="10303.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="777.3" y="10229" width="0.4" height="15.0" fill="rgb(206,211,36)" rx="2" ry="2" /> +<text x="780.30" y="10239.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (241 samples, 8.85%)</title><rect x="547.1" y="10453" width="104.5" height="15.0" fill="rgb(240,66,18)" rx="2" ry="2" /> +<text x="550.11" y="10463.5" >Nsfisis\Wadd..</text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (2 samples, 0.07%)</title><rect x="440.9" y="9541" width="0.9" height="15.0" fill="rgb(240,61,13)" rx="2" ry="2" /> +<text x="443.90" y="9551.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (26 samples, 0.96%)</title><rect x="452.6" y="9973" width="11.3" height="15.0" fill="rgb(226,127,24)" rx="2" ry="2" /> +<text x="455.61" y="9983.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (3 samples, 0.11%)</title><rect x="741.3" y="10965" width="1.3" height="15.0" fill="rgb(234,13,53)" rx="2" ry="2" /> +<text x="744.32" y="10975.5" ></text> +</g> +<g > +<title><unknown> (1 samples, 0.04%)</title><rect x="1143.2" y="11173" width="0.4" height="15.0" fill="rgb(225,181,44)" rx="2" ry="2" /> +<text x="1146.18" y="11183.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="781.6" y="10277" width="0.5" height="15.0" fill="rgb(237,225,24)" rx="2" ry="2" /> +<text x="784.64" y="10287.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (3 samples, 0.11%)</title><rect x="542.3" y="10341" width="1.3" height="15.0" fill="rgb(210,207,49)" rx="2" ry="2" /> +<text x="545.34" y="10351.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="739.6" y="10165" width="0.4" height="15.0" fill="rgb(246,69,42)" rx="2" ry="2" /> +<text x="742.59" y="10175.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (37 samples, 1.36%)</title><rect x="704.5" y="9941" width="16.0" height="15.0" fill="rgb(245,132,11)" rx="2" ry="2" /> +<text x="707.47" y="9951.5" ></text> +</g> +<g > +<title><unknown> (1 samples, 0.04%)</title><rect x="1021.8" y="6037" width="0.4" height="15.0" fill="rgb(211,17,10)" rx="2" ry="2" /> +<text x="1024.80" y="6047.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="482.5" y="9621" width="0.5" height="15.0" fill="rgb(221,144,22)" rx="2" ry="2" /> +<text x="485.52" y="9631.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (1 samples, 0.04%)</title><rect x="739.6" y="10421" width="0.4" height="15.0" fill="rgb(240,160,17)" rx="2" ry="2" /> +<text x="742.59" y="10431.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="244.5" y="10389" width="0.5" height="15.0" fill="rgb(244,92,33)" rx="2" ry="2" /> +<text x="247.53" y="10399.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (20 samples, 0.73%)</title><rect x="1074.3" y="11221" width="8.6" height="15.0" fill="rgb(227,139,13)" rx="2" ry="2" /> +<text x="1077.25" y="11231.5" ></text> +</g> +<g > +<title><unknown> (1 samples, 0.04%)</title><rect x="1021.8" y="2805" width="0.4" height="15.0" fill="rgb(230,50,44)" rx="2" ry="2" /> +<text x="1024.80" y="2815.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="1036.5" y="11157" width="0.5" height="15.0" fill="rgb(216,9,53)" rx="2" ry="2" /> +<text x="1039.54" y="11167.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (4 samples, 0.15%)</title><rect x="259.7" y="9685" width="1.7" height="15.0" fill="rgb(253,3,45)" rx="2" ry="2" /> +<text x="262.70" y="9695.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (9 samples, 0.33%)</title><rect x="466.0" y="9989" width="3.9" height="15.0" fill="rgb(225,68,40)" rx="2" ry="2" /> +<text x="469.05" y="9999.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doLoadI32 (1 samples, 0.04%)</title><rect x="704.0" y="9941" width="0.5" height="15.0" fill="rgb(239,162,22)" rx="2" ry="2" /> +<text x="707.04" y="9951.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="331.2" y="9749" width="0.5" height="15.0" fill="rgb(210,124,15)" rx="2" ry="2" /> +<text x="334.23" y="9759.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="734.0" y="10069" width="0.4" height="15.0" fill="rgb(218,59,3)" rx="2" ry="2" /> +<text x="736.95" y="10079.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="318.7" y="9429" width="0.4" height="15.0" fill="rgb(223,133,19)" rx="2" ry="2" /> +<text x="321.66" y="9439.5" ></text> +</g> +<g > +<title><unknown> (1 samples, 0.04%)</title><rect x="1021.8" y="1813" width="0.4" height="15.0" fill="rgb(243,40,36)" rx="2" ry="2" /> +<text x="1024.80" y="1823.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="307.8" y="9221" width="0.5" height="15.0" fill="rgb(232,48,8)" rx="2" ry="2" /> +<text x="310.82" y="9231.5" ></text> +</g> +<g > +<title><unknown> (1 samples, 0.04%)</title><rect x="1021.8" y="4501" width="0.4" height="15.0" fill="rgb(231,188,13)" rx="2" ry="2" /> +<text x="1024.80" y="4511.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="668.1" y="9781" width="0.4" height="15.0" fill="rgb(231,149,54)" rx="2" ry="2" /> +<text x="671.06" y="9791.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (1 samples, 0.04%)</title><rect x="244.5" y="10437" width="0.5" height="15.0" fill="rgb(232,180,48)" rx="2" ry="2" /> +<text x="247.53" y="10447.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="776.0" y="10021" width="0.4" height="15.0" fill="rgb(244,15,14)" rx="2" ry="2" /> +<text x="779.00" y="10031.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="1035.2" y="10933" width="0.5" height="15.0" fill="rgb(220,187,15)" rx="2" ry="2" /> +<text x="1038.24" y="10943.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="870.1" y="8133" width="0.4" height="15.0" fill="rgb(215,11,11)" rx="2" ry="2" /> +<text x="873.07" y="8143.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="345.1" y="9765" width="0.4" height="15.0" fill="rgb(226,188,54)" rx="2" ry="2" /> +<text x="348.10" y="9775.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (3 samples, 0.11%)</title><rect x="741.3" y="10997" width="1.3" height="15.0" fill="rgb(221,34,51)" rx="2" ry="2" /> +<text x="744.32" y="11007.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="465.2" y="9957" width="0.4" height="15.0" fill="rgb(214,103,26)" rx="2" ry="2" /> +<text x="468.18" y="9967.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (1 samples, 0.04%)</title><rect x="239.8" y="10869" width="0.4" height="15.0" fill="rgb(227,36,25)" rx="2" ry="2" /> +<text x="242.76" y="10879.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (8 samples, 0.29%)</title><rect x="778.6" y="10389" width="3.5" height="15.0" fill="rgb(211,25,30)" rx="2" ry="2" /> +<text x="781.60" y="10399.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (1 samples, 0.04%)</title><rect x="742.6" y="10133" width="0.5" height="15.0" fill="rgb(232,75,42)" rx="2" ry="2" /> +<text x="745.62" y="10143.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Stack::pushValue (1 samples, 0.04%)</title><rect x="381.9" y="9509" width="0.5" height="15.0" fill="rgb(238,7,32)" rx="2" ry="2" /> +<text x="384.95" y="9519.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="350.7" y="9765" width="0.5" height="15.0" fill="rgb(232,42,42)" rx="2" ry="2" /> +<text x="353.73" y="9775.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (5 samples, 0.18%)</title><rect x="495.5" y="10501" width="2.2" height="15.0" fill="rgb(213,79,38)" rx="2" ry="2" /> +<text x="498.53" y="10511.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (4 samples, 0.15%)</title><rect x="739.2" y="10725" width="1.7" height="15.0" fill="rgb(205,21,8)" rx="2" ry="2" /> +<text x="742.16" y="10735.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="351.2" y="9477" width="0.4" height="15.0" fill="rgb(230,225,52)" rx="2" ry="2" /> +<text x="354.17" y="9487.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (1 samples, 0.04%)</title><rect x="412.3" y="9173" width="0.4" height="15.0" fill="rgb(227,186,15)" rx="2" ry="2" /> +<text x="415.29" y="9183.5" ></text> +</g> +<g > +<title><unknown> (2 samples, 0.07%)</title><rect x="1021.4" y="6149" width="0.8" height="15.0" fill="rgb(232,218,3)" rx="2" ry="2" /> +<text x="1024.37" y="6159.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (2 samples, 0.07%)</title><rect x="1035.7" y="11109" width="0.8" height="15.0" fill="rgb(237,210,51)" rx="2" ry="2" /> +<text x="1038.67" y="11119.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="318.2" y="9381" width="0.5" height="15.0" fill="rgb(234,98,23)" rx="2" ry="2" /> +<text x="321.22" y="9391.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Stack::pushValue (1 samples, 0.04%)</title><rect x="257.5" y="9717" width="0.5" height="15.0" fill="rgb(237,215,13)" rx="2" ry="2" /> +<text x="260.53" y="9727.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (6 samples, 0.22%)</title><rect x="721.4" y="9941" width="2.6" height="15.0" fill="rgb(219,213,4)" rx="2" ry="2" /> +<text x="724.38" y="9951.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="315.6" y="9381" width="0.5" height="15.0" fill="rgb(241,20,39)" rx="2" ry="2" /> +<text x="318.62" y="9391.5" ></text> +</g> +<g > +<title><unknown> (2 samples, 0.07%)</title><rect x="1021.4" y="9173" width="0.8" height="15.0" fill="rgb(240,68,52)" rx="2" ry="2" /> +<text x="1024.37" y="9183.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (3 samples, 0.11%)</title><rect x="423.6" y="9221" width="1.3" height="15.0" fill="rgb(209,126,46)" rx="2" ry="2" /> +<text x="426.56" y="9231.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="1036.5" y="11141" width="0.5" height="15.0" fill="rgb(247,188,23)" rx="2" ry="2" /> +<text x="1039.54" y="11151.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (85 samples, 3.12%)</title><rect x="503.3" y="10517" width="36.9" height="15.0" fill="rgb(216,81,27)" rx="2" ry="2" /> +<text x="506.33" y="10527.5" >Nsf..</text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="1036.1" y="11013" width="0.4" height="15.0" fill="rgb(234,19,2)" rx="2" ry="2" /> +<text x="1039.11" y="11023.5" ></text> +</g> +<g > +<title><unknown> (1 samples, 0.04%)</title><rect x="1021.8" y="1925" width="0.4" height="15.0" fill="rgb(226,39,34)" rx="2" ry="2" /> +<text x="1024.80" y="1935.5" ></text> +</g> +<g > +<title><unknown> (2 samples, 0.07%)</title><rect x="1021.4" y="6181" width="0.8" height="15.0" fill="rgb(208,187,44)" rx="2" ry="2" /> +<text x="1024.37" y="6191.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (258 samples, 9.48%)</title><rect x="540.2" y="10549" width="111.8" height="15.0" fill="rgb(226,85,1)" rx="2" ry="2" /> +<text x="543.18" y="10559.5" >Nsfisis\Waddi..</text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (5 samples, 0.18%)</title><rect x="486.9" y="9861" width="2.1" height="15.0" fill="rgb(235,183,22)" rx="2" ry="2" /> +<text x="489.86" y="9871.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="870.5" y="9797" width="0.4" height="15.0" fill="rgb(210,80,3)" rx="2" ry="2" /> +<text x="873.51" y="9807.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (343 samples, 12.60%)</title><rect x="503.3" y="10645" width="148.7" height="15.0" fill="rgb(232,33,14)" rx="2" ry="2" /> +<text x="506.33" y="10655.5" >Nsfisis\Waddiwasi\E..</text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="533.2" y="10021" width="0.5" height="15.0" fill="rgb(210,42,10)" rx="2" ry="2" /> +<text x="536.24" y="10031.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (6 samples, 0.22%)</title><rect x="857.9" y="10261" width="2.6" height="15.0" fill="rgb(247,194,53)" rx="2" ry="2" /> +<text x="860.94" y="10271.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Stack::pushI32 (1 samples, 0.04%)</title><rect x="527.6" y="10325" width="0.4" height="15.0" fill="rgb(236,206,7)" rx="2" ry="2" /> +<text x="530.60" y="10335.5" ></text> +</g> +<g > +<title><unknown> (1 samples, 0.04%)</title><rect x="1021.8" y="4021" width="0.4" height="15.0" fill="rgb(219,188,49)" rx="2" ry="2" /> +<text x="1024.80" y="4031.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="404.9" y="9541" width="0.5" height="15.0" fill="rgb(250,80,8)" rx="2" ry="2" /> +<text x="407.92" y="9551.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (3 samples, 0.11%)</title><rect x="717.5" y="9765" width="1.3" height="15.0" fill="rgb(244,72,29)" rx="2" ry="2" /> +<text x="720.48" y="9775.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (12 samples, 0.44%)</title><rect x="440.5" y="9733" width="5.2" height="15.0" fill="rgb(249,69,7)" rx="2" ry="2" /> +<text x="443.47" y="9743.5" ></text> +</g> +<g > +<title><unknown> (2 samples, 0.07%)</title><rect x="1021.4" y="8149" width="0.8" height="15.0" fill="rgb(242,109,42)" rx="2" ry="2" /> +<text x="1024.37" y="8159.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (3 samples, 0.11%)</title><rect x="676.7" y="9813" width="1.3" height="15.0" fill="rgb(212,87,21)" rx="2" ry="2" /> +<text x="679.73" y="9823.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (1 samples, 0.04%)</title><rect x="734.0" y="10133" width="0.4" height="15.0" fill="rgb(239,126,26)" rx="2" ry="2" /> +<text x="736.95" y="10143.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (2 samples, 0.07%)</title><rect x="726.6" y="9797" width="0.9" height="15.0" fill="rgb(253,117,2)" rx="2" ry="2" /> +<text x="729.58" y="9807.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="811.1" y="10181" width="0.5" height="15.0" fill="rgb(226,62,31)" rx="2" ry="2" /> +<text x="814.12" y="10191.5" ></text> +</g> +<g > +<title><unknown> (2 samples, 0.07%)</title><rect x="1021.4" y="6341" width="0.8" height="15.0" fill="rgb(246,193,13)" rx="2" ry="2" /> +<text x="1024.37" y="6351.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (3 samples, 0.11%)</title><rect x="372.4" y="9669" width="1.3" height="15.0" fill="rgb(219,178,14)" rx="2" ry="2" /> +<text x="375.41" y="9679.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doStoreI64 (1 samples, 0.04%)</title><rect x="305.7" y="9301" width="0.4" height="15.0" fill="rgb(236,179,35)" rx="2" ry="2" /> +<text x="308.65" y="9311.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (296 samples, 10.87%)</title><rect x="742.6" y="11093" width="128.3" height="15.0" fill="rgb(208,127,30)" rx="2" ry="2" /> +<text x="745.62" y="11103.5" >Nsfisis\Waddiwas..</text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (1 samples, 0.04%)</title><rect x="409.3" y="9269" width="0.4" height="15.0" fill="rgb(211,120,20)" rx="2" ry="2" /> +<text x="412.26" y="9279.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (1 samples, 0.04%)</title><rect x="485.1" y="9781" width="0.5" height="15.0" fill="rgb(227,116,21)" rx="2" ry="2" /> +<text x="488.12" y="9791.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (518 samples, 19.03%)</title><rect x="13.9" y="11205" width="224.6" height="15.0" fill="rgb(212,41,4)" rx="2" ry="2" /> +<text x="16.90" y="11215.5" >Nsfisis\Waddiwasi\Execution\R..</text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (2 samples, 0.07%)</title><rect x="372.8" y="9621" width="0.9" height="15.0" fill="rgb(252,65,2)" rx="2" ry="2" /> +<text x="375.84" y="9631.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="1067.8" y="10581" width="0.4" height="15.0" fill="rgb(212,6,35)" rx="2" ry="2" /> +<text x="1070.75" y="10591.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (54 samples, 1.98%)</title><rect x="697.1" y="10021" width="23.4" height="15.0" fill="rgb(242,178,50)" rx="2" ry="2" /> +<text x="700.11" y="10031.5" >N..</text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (3 samples, 0.11%)</title><rect x="245.0" y="10437" width="1.3" height="15.0" fill="rgb(233,124,21)" rx="2" ry="2" /> +<text x="247.96" y="10447.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="271.4" y="9605" width="0.4" height="15.0" fill="rgb(239,193,31)" rx="2" ry="2" /> +<text x="274.40" y="9615.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="739.2" y="10421" width="0.4" height="15.0" fill="rgb(242,99,47)" rx="2" ry="2" /> +<text x="742.16" y="10431.5" ></text> +</g> +<g > +<title><unknown> (2 samples, 0.07%)</title><rect x="1021.4" y="8645" width="0.8" height="15.0" fill="rgb(210,119,29)" rx="2" ry="2" /> +<text x="1024.37" y="8655.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="734.8" y="10565" width="0.5" height="15.0" fill="rgb(213,29,41)" rx="2" ry="2" /> +<text x="737.82" y="10575.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="724.8" y="9813" width="0.5" height="15.0" fill="rgb(216,48,42)" rx="2" ry="2" /> +<text x="727.85" y="9823.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (3 samples, 0.11%)</title><rect x="812.0" y="10181" width="1.3" height="15.0" fill="rgb(253,206,5)" rx="2" ry="2" /> +<text x="814.98" y="10191.5" ></text> +</g> +<g > +<title><unknown> (1 samples, 0.04%)</title><rect x="1021.8" y="5669" width="0.4" height="15.0" fill="rgb(212,176,36)" rx="2" ry="2" /> +<text x="1024.80" y="5679.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="453.5" y="9365" width="0.4" height="15.0" fill="rgb(249,23,5)" rx="2" ry="2" /> +<text x="456.48" y="9375.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="849.7" y="10117" width="0.4" height="15.0" fill="rgb(206,102,50)" rx="2" ry="2" /> +<text x="852.70" y="10127.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (1 samples, 0.04%)</title><rect x="245.4" y="10341" width="0.4" height="15.0" fill="rgb(211,113,25)" rx="2" ry="2" /> +<text x="248.39" y="10351.5" ></text> +</g> +<g > +<title><unknown> (1 samples, 0.04%)</title><rect x="1021.8" y="2709" width="0.4" height="15.0" fill="rgb(218,18,42)" rx="2" ry="2" /> +<text x="1024.80" y="2719.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="1067.8" y="10661" width="0.4" height="15.0" fill="rgb(215,38,33)" rx="2" ry="2" /> +<text x="1070.75" y="10671.5" ></text> +</g> +<g > +<title><unknown> (1 samples, 0.04%)</title><rect x="1021.8" y="4293" width="0.4" height="15.0" fill="rgb(249,18,3)" rx="2" ry="2" /> +<text x="1024.80" y="4303.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (7 samples, 0.26%)</title><rect x="735.3" y="10661" width="3.0" height="15.0" fill="rgb(220,218,50)" rx="2" ry="2" /> +<text x="738.25" y="10671.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Stack::popValue (1 samples, 0.04%)</title><rect x="497.3" y="9957" width="0.4" height="15.0" fill="rgb(250,223,30)" rx="2" ry="2" /> +<text x="500.26" y="9967.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="870.1" y="9381" width="0.4" height="15.0" fill="rgb(247,219,22)" rx="2" ry="2" /> +<text x="873.07" y="9391.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="244.5" y="10357" width="0.5" height="15.0" fill="rgb(244,223,2)" rx="2" ry="2" /> +<text x="247.53" y="10367.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (1 samples, 0.04%)</title><rect x="318.7" y="9589" width="0.4" height="15.0" fill="rgb(242,105,19)" rx="2" ry="2" /> +<text x="321.66" y="9599.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (6 samples, 0.22%)</title><rect x="461.3" y="9413" width="2.6" height="15.0" fill="rgb(251,219,30)" rx="2" ry="2" /> +<text x="464.28" y="9423.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (571 samples, 20.98%)</title><rect x="243.2" y="10629" width="247.6" height="15.0" fill="rgb(225,222,12)" rx="2" ry="2" /> +<text x="246.23" y="10639.5" >Nsfisis\Waddiwasi\Execution\Runt..</text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="307.8" y="9269" width="0.5" height="15.0" fill="rgb(217,48,44)" rx="2" ry="2" /> +<text x="310.82" y="9279.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (7 samples, 0.26%)</title><rect x="460.8" y="9477" width="3.1" height="15.0" fill="rgb(212,229,42)" rx="2" ry="2" /> +<text x="463.84" y="9487.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (27 samples, 0.99%)</title><rect x="452.2" y="10037" width="11.7" height="15.0" fill="rgb(208,60,34)" rx="2" ry="2" /> +<text x="455.17" y="10047.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (3 samples, 0.11%)</title><rect x="402.8" y="9477" width="1.3" height="15.0" fill="rgb(238,37,29)" rx="2" ry="2" /> +<text x="405.76" y="9487.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="870.1" y="9493" width="0.4" height="15.0" fill="rgb(231,53,53)" rx="2" ry="2" /> +<text x="873.07" y="9503.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (5 samples, 0.18%)</title><rect x="742.6" y="10629" width="2.2" height="15.0" fill="rgb(215,161,20)" rx="2" ry="2" /> +<text x="745.62" y="10639.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="469.5" y="9653" width="0.4" height="15.0" fill="rgb(210,105,25)" rx="2" ry="2" /> +<text x="472.52" y="9663.5" ></text> +</g> +<g > +<title><unknown> (2 samples, 0.07%)</title><rect x="1021.4" y="8533" width="0.8" height="15.0" fill="rgb(222,116,21)" rx="2" ry="2" /> +<text x="1024.37" y="8543.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::deactivateLabel (1 samples, 0.04%)</title><rect x="703.6" y="9941" width="0.4" height="15.0" fill="rgb(237,25,6)" rx="2" ry="2" /> +<text x="706.61" y="9951.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (4 samples, 0.15%)</title><rect x="732.2" y="10501" width="1.8" height="15.0" fill="rgb(213,201,1)" rx="2" ry="2" /> +<text x="735.22" y="10511.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (6 samples, 0.22%)</title><rect x="461.3" y="9429" width="2.6" height="15.0" fill="rgb(244,72,53)" rx="2" ry="2" /> +<text x="464.28" y="9439.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (1 samples, 0.04%)</title><rect x="453.5" y="9701" width="0.4" height="15.0" fill="rgb(247,108,39)" rx="2" ry="2" /> +<text x="456.48" y="9711.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (10 samples, 0.37%)</title><rect x="360.7" y="9781" width="4.3" height="15.0" fill="rgb(250,136,43)" rx="2" ry="2" /> +<text x="363.71" y="9791.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (2 samples, 0.07%)</title><rect x="307.0" y="9365" width="0.8" height="15.0" fill="rgb(217,104,26)" rx="2" ry="2" /> +<text x="309.95" y="9375.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (3 samples, 0.11%)</title><rect x="717.5" y="9653" width="1.3" height="15.0" fill="rgb(232,218,25)" rx="2" ry="2" /> +<text x="720.48" y="9663.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (4 samples, 0.15%)</title><rect x="732.2" y="10149" width="1.8" height="15.0" fill="rgb(215,188,39)" rx="2" ry="2" /> +<text x="735.22" y="10159.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\ControlFlowResult::Br (1 samples, 0.04%)</title><rect x="277.9" y="9733" width="0.4" height="15.0" fill="rgb(206,107,0)" rx="2" ry="2" /> +<text x="280.91" y="9743.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="733.5" y="8949" width="0.5" height="15.0" fill="rgb(219,216,41)" rx="2" ry="2" /> +<text x="736.52" y="8959.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="398.9" y="9637" width="0.4" height="15.0" fill="rgb(219,68,43)" rx="2" ry="2" /> +<text x="401.85" y="9647.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="1168.8" y="10997" width="0.4" height="15.0" fill="rgb(242,117,21)" rx="2" ry="2" /> +<text x="1171.76" y="11007.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (8 samples, 0.29%)</title><rect x="442.2" y="9573" width="3.5" height="15.0" fill="rgb(208,80,45)" rx="2" ry="2" /> +<text x="445.20" y="9583.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (13 samples, 0.48%)</title><rect x="421.8" y="9445" width="5.7" height="15.0" fill="rgb(214,186,17)" rx="2" ry="2" /> +<text x="424.83" y="9455.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (63 samples, 2.31%)</title><rect x="749.1" y="10453" width="27.3" height="15.0" fill="rgb(219,203,6)" rx="2" ry="2" /> +<text x="752.13" y="10463.5" >N..</text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (6 samples, 0.22%)</title><rect x="424.9" y="9365" width="2.6" height="15.0" fill="rgb(247,105,14)" rx="2" ry="2" /> +<text x="427.86" y="9375.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (4 samples, 0.15%)</title><rect x="483.8" y="9925" width="1.8" height="15.0" fill="rgb(225,18,16)" rx="2" ry="2" /> +<text x="486.82" y="9935.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="409.3" y="9429" width="0.4" height="15.0" fill="rgb(242,11,41)" rx="2" ry="2" /> +<text x="412.26" y="9439.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (4 samples, 0.15%)</title><rect x="1035.2" y="11205" width="1.8" height="15.0" fill="rgb(217,226,40)" rx="2" ry="2" /> +<text x="1038.24" y="11215.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doStoreI64 (1 samples, 0.04%)</title><rect x="1153.2" y="11253" width="0.4" height="15.0" fill="rgb(223,178,21)" rx="2" ry="2" /> +<text x="1156.15" y="11263.5" ></text> +</g> +<g > +<title><unknown> (1 samples, 0.04%)</title><rect x="1021.8" y="2325" width="0.4" height="15.0" fill="rgb(216,103,43)" rx="2" ry="2" /> +<text x="1024.80" y="2335.5" ></text> +</g> +<g > +<title><unknown> (1 samples, 0.04%)</title><rect x="1021.8" y="613" width="0.4" height="15.0" fill="rgb(229,136,44)" rx="2" ry="2" /> +<text x="1024.80" y="623.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (23 samples, 0.84%)</title><rect x="453.9" y="9829" width="10.0" height="15.0" fill="rgb(253,173,51)" rx="2" ry="2" /> +<text x="456.91" y="9839.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (4 samples, 0.15%)</title><rect x="732.2" y="10405" width="1.8" height="15.0" fill="rgb(232,49,0)" rx="2" ry="2" /> +<text x="735.22" y="10415.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (2 samples, 0.07%)</title><rect x="483.8" y="9813" width="0.9" height="15.0" fill="rgb(253,118,10)" rx="2" ry="2" /> +<text x="486.82" y="9823.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (3 samples, 0.11%)</title><rect x="741.3" y="10821" width="1.3" height="15.0" fill="rgb(224,183,25)" rx="2" ry="2" /> +<text x="744.32" y="10831.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (3 samples, 0.11%)</title><rect x="411.4" y="9333" width="1.3" height="15.0" fill="rgb(220,200,40)" rx="2" ry="2" /> +<text x="414.43" y="9343.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (5 samples, 0.18%)</title><rect x="868.8" y="10933" width="2.1" height="15.0" fill="rgb(221,180,41)" rx="2" ry="2" /> +<text x="871.77" y="10943.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (2 samples, 0.07%)</title><rect x="453.9" y="9701" width="0.9" height="15.0" fill="rgb(207,190,19)" rx="2" ry="2" /> +<text x="456.91" y="9711.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="870.1" y="9909" width="0.4" height="15.0" fill="rgb(227,114,21)" rx="2" ry="2" /> +<text x="873.07" y="9919.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="291.3" y="9605" width="0.5" height="15.0" fill="rgb(236,130,21)" rx="2" ry="2" /> +<text x="294.34" y="9615.5" ></text> +</g> +<g > +<title><unknown> (1 samples, 0.04%)</title><rect x="1021.8" y="5557" width="0.4" height="15.0" fill="rgb(227,107,19)" rx="2" ry="2" /> +<text x="1024.80" y="5567.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (183 samples, 6.72%)</title><rect x="652.9" y="10341" width="79.3" height="15.0" fill="rgb(210,117,1)" rx="2" ry="2" /> +<text x="655.89" y="10351.5" >Nsfisis\W..</text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (1 samples, 0.04%)</title><rect x="263.6" y="9557" width="0.4" height="15.0" fill="rgb(235,117,12)" rx="2" ry="2" /> +<text x="266.60" y="9567.5" ></text> +</g> +<g > +<title><unknown> (2 samples, 0.07%)</title><rect x="1021.4" y="9973" width="0.8" height="15.0" fill="rgb(222,47,50)" rx="2" ry="2" /> +<text x="1024.37" y="9983.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (290 samples, 10.65%)</title><rect x="742.6" y="10965" width="125.7" height="15.0" fill="rgb(216,110,13)" rx="2" ry="2" /> +<text x="745.62" y="10975.5" >Nsfisis\Waddiwa..</text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (4 samples, 0.15%)</title><rect x="380.2" y="9541" width="1.7" height="15.0" fill="rgb(239,147,31)" rx="2" ry="2" /> +<text x="383.21" y="9551.5" ></text> +</g> +<g > +<title><unknown> (2 samples, 0.07%)</title><rect x="1021.4" y="7557" width="0.8" height="15.0" fill="rgb(245,31,22)" rx="2" ry="2" /> +<text x="1024.37" y="7567.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (6 samples, 0.22%)</title><rect x="371.1" y="9701" width="2.6" height="15.0" fill="rgb(240,70,30)" rx="2" ry="2" /> +<text x="374.11" y="9711.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="539.7" y="10453" width="0.5" height="15.0" fill="rgb(235,214,34)" rx="2" ry="2" /> +<text x="542.74" y="10463.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\MemInst::storeByte (1 samples, 0.04%)</title><rect x="637.7" y="9877" width="0.4" height="15.0" fill="rgb(246,37,49)" rx="2" ry="2" /> +<text x="640.71" y="9887.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="796.8" y="10405" width="0.4" height="15.0" fill="rgb(232,123,34)" rx="2" ry="2" /> +<text x="799.81" y="10415.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (2 samples, 0.07%)</title><rect x="496.0" y="10117" width="0.8" height="15.0" fill="rgb(238,43,41)" rx="2" ry="2" /> +<text x="498.96" y="10127.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (3 samples, 0.11%)</title><rect x="741.3" y="11109" width="1.3" height="15.0" fill="rgb(220,28,13)" rx="2" ry="2" /> +<text x="744.32" y="11119.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="870.1" y="8213" width="0.4" height="15.0" fill="rgb(240,176,6)" rx="2" ry="2" /> +<text x="873.07" y="8223.5" ></text> +</g> +<g > +<title><unknown> (1 samples, 0.04%)</title><rect x="1021.8" y="3365" width="0.4" height="15.0" fill="rgb(245,191,34)" rx="2" ry="2" /> +<text x="1024.80" y="3375.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (1 samples, 0.04%)</title><rect x="740.9" y="10421" width="0.4" height="15.0" fill="rgb(225,192,8)" rx="2" ry="2" /> +<text x="743.89" y="10431.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (241 samples, 8.85%)</title><rect x="547.1" y="10309" width="104.5" height="15.0" fill="rgb(206,16,17)" rx="2" ry="2" /> +<text x="550.11" y="10319.5" >Nsfisis\Wadd..</text> +</g> +<g > +<title><unknown> (2 samples, 0.07%)</title><rect x="1021.4" y="9669" width="0.8" height="15.0" fill="rgb(235,111,3)" rx="2" ry="2" /> +<text x="1024.37" y="9679.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="351.2" y="9621" width="0.4" height="15.0" fill="rgb(248,214,40)" rx="2" ry="2" /> +<text x="354.17" y="9631.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (1 samples, 0.04%)</title><rect x="1050.0" y="11061" width="0.4" height="15.0" fill="rgb(245,138,22)" rx="2" ry="2" /> +<text x="1052.98" y="11071.5" ></text> +</g> +<g > +<title><unknown> (2 samples, 0.07%)</title><rect x="1021.4" y="7925" width="0.8" height="15.0" fill="rgb(228,205,50)" rx="2" ry="2" /> +<text x="1024.37" y="7935.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="751.7" y="10197" width="0.5" height="15.0" fill="rgb(212,75,36)" rx="2" ry="2" /> +<text x="754.73" y="10207.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="362.9" y="9749" width="0.4" height="15.0" fill="rgb(243,44,44)" rx="2" ry="2" /> +<text x="365.87" y="9759.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="270.5" y="9621" width="0.5" height="15.0" fill="rgb(227,39,5)" rx="2" ry="2" /> +<text x="273.54" y="9631.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (4 samples, 0.15%)</title><rect x="811.6" y="10325" width="1.7" height="15.0" fill="rgb(242,221,46)" rx="2" ry="2" /> +<text x="814.55" y="10335.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Stack::popI32 (1 samples, 0.04%)</title><rect x="719.2" y="9909" width="0.4" height="15.0" fill="rgb(233,19,8)" rx="2" ry="2" /> +<text x="722.21" y="9919.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="318.2" y="9509" width="0.5" height="15.0" fill="rgb(226,184,35)" rx="2" ry="2" /> +<text x="321.22" y="9519.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (5 samples, 0.18%)</title><rect x="742.6" y="10613" width="2.2" height="15.0" fill="rgb(219,59,20)" rx="2" ry="2" /> +<text x="745.62" y="10623.5" ></text> +</g> +<g > +<title><unknown> (1 samples, 0.04%)</title><rect x="291.8" y="9685" width="0.4" height="15.0" fill="rgb(248,32,9)" rx="2" ry="2" /> +<text x="294.78" y="9695.5" ></text> +</g> +<g > +<title><unknown> (1 samples, 0.04%)</title><rect x="1021.8" y="4117" width="0.4" height="15.0" fill="rgb(239,22,24)" rx="2" ry="2" /> +<text x="1024.80" y="4127.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (2 samples, 0.07%)</title><rect x="408.4" y="9413" width="0.9" height="15.0" fill="rgb(250,159,19)" rx="2" ry="2" /> +<text x="411.39" y="9423.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (12 samples, 0.44%)</title><rect x="440.5" y="9797" width="5.2" height="15.0" fill="rgb(208,160,37)" rx="2" ry="2" /> +<text x="443.47" y="9807.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (1 samples, 0.04%)</title><rect x="489.0" y="10005" width="0.5" height="15.0" fill="rgb(237,154,42)" rx="2" ry="2" /> +<text x="492.02" y="10015.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Stack::pushValue (10 samples, 0.37%)</title><rect x="170.0" y="11173" width="4.3" height="15.0" fill="rgb(213,102,9)" rx="2" ry="2" /> +<text x="172.96" y="11183.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (1 samples, 0.04%)</title><rect x="1139.7" y="11173" width="0.4" height="15.0" fill="rgb(239,207,35)" rx="2" ry="2" /> +<text x="1142.71" y="11183.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (3 samples, 0.11%)</title><rect x="411.4" y="9189" width="1.3" height="15.0" fill="rgb(212,47,5)" rx="2" ry="2" /> +<text x="414.43" y="9199.5" ></text> +</g> +<g > +<title><unknown> (1 samples, 0.04%)</title><rect x="1021.8" y="2213" width="0.4" height="15.0" fill="rgb(246,148,26)" rx="2" ry="2" /> +<text x="1024.80" y="2223.5" ></text> +</g> +<g > +<title><unknown> (1 samples, 0.04%)</title><rect x="1021.8" y="725" width="0.4" height="15.0" fill="rgb(252,58,31)" rx="2" ry="2" /> +<text x="1024.80" y="735.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="497.3" y="10005" width="0.4" height="15.0" fill="rgb(233,118,50)" rx="2" ry="2" /> +<text x="500.26" y="10015.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="320.8" y="9509" width="0.5" height="15.0" fill="rgb(209,27,46)" rx="2" ry="2" /> +<text x="323.82" y="9519.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doStoreI32 (1 samples, 0.04%)</title><rect x="313.9" y="9525" width="0.4" height="15.0" fill="rgb(248,218,37)" rx="2" ry="2" /> +<text x="316.89" y="9535.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (2 samples, 0.07%)</title><rect x="404.5" y="9653" width="0.9" height="15.0" fill="rgb(231,137,28)" rx="2" ry="2" /> +<text x="407.49" y="9663.5" ></text> +</g> +<g > +<title><unknown> (1 samples, 0.04%)</title><rect x="1021.8" y="3829" width="0.4" height="15.0" fill="rgb(215,63,10)" rx="2" ry="2" /> +<text x="1024.80" y="3839.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (1 samples, 0.04%)</title><rect x="870.1" y="9653" width="0.4" height="15.0" fill="rgb(248,130,54)" rx="2" ry="2" /> +<text x="873.07" y="9663.5" ></text> +</g> +<g > +<title><unknown> (2 samples, 0.07%)</title><rect x="1021.4" y="8741" width="0.8" height="15.0" fill="rgb(241,73,46)" rx="2" ry="2" /> +<text x="1024.37" y="8751.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="1098.5" y="11061" width="0.5" height="15.0" fill="rgb(224,77,34)" rx="2" ry="2" /> +<text x="1101.53" y="11071.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (3 samples, 0.11%)</title><rect x="402.8" y="9589" width="1.3" height="15.0" fill="rgb(251,28,19)" rx="2" ry="2" /> +<text x="405.76" y="9599.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (3 samples, 0.11%)</title><rect x="1035.7" y="11189" width="1.3" height="15.0" fill="rgb(242,61,27)" rx="2" ry="2" /> +<text x="1038.67" y="11199.5" ></text> +</g> +<g > +<title><unknown> (1 samples, 0.04%)</title><rect x="1021.8" y="3573" width="0.4" height="15.0" fill="rgb(248,172,43)" rx="2" ry="2" /> +<text x="1024.80" y="3583.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (10 samples, 0.37%)</title><rect x="533.7" y="10245" width="4.3" height="15.0" fill="rgb(245,216,17)" rx="2" ry="2" /> +<text x="536.67" y="10255.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="409.3" y="8997" width="0.4" height="15.0" fill="rgb(221,209,14)" rx="2" ry="2" /> +<text x="412.26" y="9007.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (5 samples, 0.18%)</title><rect x="411.0" y="9557" width="2.2" height="15.0" fill="rgb(253,12,53)" rx="2" ry="2" /> +<text x="413.99" y="9567.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (3 samples, 0.11%)</title><rect x="385.0" y="9493" width="1.3" height="15.0" fill="rgb(211,158,1)" rx="2" ry="2" /> +<text x="387.98" y="9503.5" ></text> +</g> +<g > +<title><unknown> (2 samples, 0.07%)</title><rect x="699.7" y="9973" width="0.9" height="15.0" fill="rgb(226,212,34)" rx="2" ry="2" /> +<text x="702.71" y="9983.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (13 samples, 0.48%)</title><rect x="421.8" y="9557" width="5.7" height="15.0" fill="rgb(205,219,53)" rx="2" ry="2" /> +<text x="424.83" y="9567.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (3 samples, 0.11%)</title><rect x="408.4" y="9557" width="1.3" height="15.0" fill="rgb(232,176,37)" rx="2" ry="2" /> +<text x="411.39" y="9567.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (3 samples, 0.11%)</title><rect x="536.7" y="10133" width="1.3" height="15.0" fill="rgb(232,102,27)" rx="2" ry="2" /> +<text x="539.71" y="10143.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (6 samples, 0.22%)</title><rect x="738.7" y="10933" width="2.6" height="15.0" fill="rgb(224,123,52)" rx="2" ry="2" /> +<text x="741.72" y="10943.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="763.9" y="9941" width="0.4" height="15.0" fill="rgb(251,141,24)" rx="2" ry="2" /> +<text x="766.86" y="9951.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (12 samples, 0.44%)</title><rect x="465.6" y="10037" width="5.2" height="15.0" fill="rgb(248,197,48)" rx="2" ry="2" /> +<text x="468.61" y="10047.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (40 samples, 1.47%)</title><rect x="754.8" y="10117" width="17.3" height="15.0" fill="rgb(243,8,17)" rx="2" ry="2" /> +<text x="757.76" y="10127.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="777.3" y="10309" width="0.4" height="15.0" fill="rgb(219,47,1)" rx="2" ry="2" /> +<text x="780.30" y="10319.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (9 samples, 0.33%)</title><rect x="498.6" y="10309" width="3.9" height="15.0" fill="rgb(230,184,15)" rx="2" ry="2" /> +<text x="501.56" y="10319.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (17 samples, 0.62%)</title><rect x="351.6" y="9605" width="7.4" height="15.0" fill="rgb(249,135,8)" rx="2" ry="2" /> +<text x="354.60" y="9615.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (3 samples, 0.11%)</title><rect x="380.6" y="9477" width="1.3" height="15.0" fill="rgb(210,120,43)" rx="2" ry="2" /> +<text x="383.65" y="9487.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="268.8" y="9381" width="0.4" height="15.0" fill="rgb(242,35,52)" rx="2" ry="2" /> +<text x="271.80" y="9391.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (47 samples, 1.73%)</title><rect x="450.4" y="10085" width="20.4" height="15.0" fill="rgb(251,102,40)" rx="2" ry="2" /> +<text x="453.44" y="10095.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (5 samples, 0.18%)</title><rect x="742.6" y="10565" width="2.2" height="15.0" fill="rgb(230,108,43)" rx="2" ry="2" /> +<text x="745.62" y="10575.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (2 samples, 0.07%)</title><rect x="526.7" y="10069" width="0.9" height="15.0" fill="rgb(233,88,10)" rx="2" ry="2" /> +<text x="529.74" y="10079.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (46 samples, 1.69%)</title><rect x="258.4" y="9893" width="19.9" height="15.0" fill="rgb(245,110,16)" rx="2" ry="2" /> +<text x="261.40" y="9903.5" ></text> +</g> +<g > +<title><unknown> (1 samples, 0.04%)</title><rect x="1021.8" y="4229" width="0.4" height="15.0" fill="rgb(239,67,46)" rx="2" ry="2" /> +<text x="1024.80" y="4239.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (4 samples, 0.15%)</title><rect x="259.7" y="9701" width="1.7" height="15.0" fill="rgb(234,10,30)" rx="2" ry="2" /> +<text x="262.70" y="9711.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="325.2" y="9205" width="0.4" height="15.0" fill="rgb(241,119,24)" rx="2" ry="2" /> +<text x="328.16" y="9215.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (1,159 samples, 42.58%)</title><rect x="238.9" y="11077" width="502.4" height="15.0" fill="rgb(217,68,47)" rx="2" ry="2" /> +<text x="241.89" y="11087.5" >Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc</text> +</g> +<g > +<title><unknown> (2 samples, 0.07%)</title><rect x="1021.4" y="9557" width="0.8" height="15.0" fill="rgb(244,219,51)" rx="2" ry="2" /> +<text x="1024.37" y="9567.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (20 samples, 0.73%)</title><rect x="785.5" y="10373" width="8.7" height="15.0" fill="rgb(210,64,48)" rx="2" ry="2" /> +<text x="788.54" y="10383.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (35 samples, 1.29%)</title><rect x="302.2" y="9605" width="15.2" height="15.0" fill="rgb(208,110,49)" rx="2" ry="2" /> +<text x="305.18" y="9615.5" ></text> +</g> +<g > +<title><unknown> (1 samples, 0.04%)</title><rect x="1021.8" y="5781" width="0.4" height="15.0" fill="rgb(253,79,39)" rx="2" ry="2" /> +<text x="1024.80" y="5791.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (15 samples, 0.55%)</title><rect x="271.8" y="9829" width="6.5" height="15.0" fill="rgb(215,229,30)" rx="2" ry="2" /> +<text x="274.84" y="9839.5" ></text> +</g> +<g > +<title><unknown> (2 samples, 0.07%)</title><rect x="1021.4" y="10693" width="0.8" height="15.0" fill="rgb(228,151,16)" rx="2" ry="2" /> +<text x="1024.37" y="10703.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="473.4" y="9893" width="0.5" height="15.0" fill="rgb(244,48,13)" rx="2" ry="2" /> +<text x="476.42" y="9903.5" ></text> +</g> +<g > +<title><unknown> (1 samples, 0.04%)</title><rect x="1021.8" y="1109" width="0.4" height="15.0" fill="rgb(205,121,0)" rx="2" ry="2" /> +<text x="1024.80" y="1119.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (2 samples, 0.07%)</title><rect x="311.3" y="9493" width="0.9" height="15.0" fill="rgb(247,229,31)" rx="2" ry="2" /> +<text x="314.29" y="9503.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="409.3" y="9237" width="0.4" height="15.0" fill="rgb(227,104,36)" rx="2" ry="2" /> +<text x="412.26" y="9247.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="1141.4" y="11109" width="0.5" height="15.0" fill="rgb(230,161,23)" rx="2" ry="2" /> +<text x="1144.45" y="11119.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="737.9" y="10485" width="0.4" height="15.0" fill="rgb(211,132,11)" rx="2" ry="2" /> +<text x="740.85" y="10495.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\BinaryFormat\Decoder::decodeVec (7 samples, 0.26%)</title><rect x="10.4" y="11189" width="3.1" height="15.0" fill="rgb(224,114,52)" rx="2" ry="2" /> +<text x="13.43" y="11199.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="469.1" y="9701" width="0.4" height="15.0" fill="rgb(225,72,15)" rx="2" ry="2" /> +<text x="472.08" y="9711.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="870.1" y="9973" width="0.4" height="15.0" fill="rgb(233,123,16)" rx="2" ry="2" /> +<text x="873.07" y="9983.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (13 samples, 0.48%)</title><rect x="685.8" y="10005" width="5.7" height="15.0" fill="rgb(211,96,3)" rx="2" ry="2" /> +<text x="688.83" y="10015.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="1067.8" y="10421" width="0.4" height="15.0" fill="rgb(216,76,1)" rx="2" ry="2" /> +<text x="1070.75" y="10431.5" ></text> +</g> +<g > +<title><unknown> (1 samples, 0.04%)</title><rect x="296.5" y="9605" width="0.5" height="15.0" fill="rgb(230,97,42)" rx="2" ry="2" /> +<text x="299.55" y="9615.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\StackEntries\Value::__construct (1 samples, 0.04%)</title><rect x="630.8" y="9845" width="0.4" height="15.0" fill="rgb(234,44,19)" rx="2" ry="2" /> +<text x="633.78" y="9855.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="869.2" y="9941" width="0.4" height="15.0" fill="rgb(243,104,54)" rx="2" ry="2" /> +<text x="872.21" y="9951.5" ></text> +</g> +<g > +<title><unknown> (1 samples, 0.04%)</title><rect x="1021.8" y="4997" width="0.4" height="15.0" fill="rgb(206,162,7)" rx="2" ry="2" /> +<text x="1024.80" y="5007.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (2 samples, 0.07%)</title><rect x="359.4" y="9685" width="0.9" height="15.0" fill="rgb(241,180,18)" rx="2" ry="2" /> +<text x="362.40" y="9695.5" ></text> +</g> +<g > +<title><unknown> (1 samples, 0.04%)</title><rect x="320.0" y="9525" width="0.4" height="15.0" fill="rgb(214,82,2)" rx="2" ry="2" /> +<text x="322.96" y="9535.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (2 samples, 0.07%)</title><rect x="307.0" y="9285" width="0.8" height="15.0" fill="rgb(229,222,15)" rx="2" ry="2" /> +<text x="309.95" y="9295.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="870.1" y="8325" width="0.4" height="15.0" fill="rgb(209,195,17)" rx="2" ry="2" /> +<text x="873.07" y="8335.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="380.2" y="9445" width="0.4" height="15.0" fill="rgb(214,183,34)" rx="2" ry="2" /> +<text x="383.21" y="9455.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="744.4" y="10357" width="0.4" height="15.0" fill="rgb(240,177,37)" rx="2" ry="2" /> +<text x="747.36" y="10367.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="340.8" y="9941" width="0.4" height="15.0" fill="rgb(225,172,33)" rx="2" ry="2" /> +<text x="343.76" y="9951.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="862.3" y="10213" width="0.4" height="15.0" fill="rgb(234,157,37)" rx="2" ry="2" /> +<text x="865.27" y="10223.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doStoreI32 (1 samples, 0.04%)</title><rect x="486.4" y="9749" width="0.5" height="15.0" fill="rgb(251,112,49)" rx="2" ry="2" /> +<text x="489.42" y="9759.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (3 samples, 0.11%)</title><rect x="438.3" y="9813" width="1.3" height="15.0" fill="rgb(205,40,35)" rx="2" ry="2" /> +<text x="441.30" y="9823.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="438.7" y="9685" width="0.5" height="15.0" fill="rgb(214,68,30)" rx="2" ry="2" /> +<text x="441.74" y="9695.5" ></text> +</g> +<g > +<title><unknown> (1 samples, 0.04%)</title><rect x="225.9" y="11173" width="0.4" height="15.0" fill="rgb(227,157,8)" rx="2" ry="2" /> +<text x="228.89" y="11183.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (5 samples, 0.18%)</title><rect x="1140.6" y="11173" width="2.1" height="15.0" fill="rgb(244,222,13)" rx="2" ry="2" /> +<text x="1143.58" y="11183.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeHostFunc (1 samples, 0.04%)</title><rect x="740.9" y="10757" width="0.4" height="15.0" fill="rgb(239,226,25)" rx="2" ry="2" /> +<text x="743.89" y="10767.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="1067.8" y="10533" width="0.4" height="15.0" fill="rgb(217,142,31)" rx="2" ry="2" /> +<text x="1070.75" y="10543.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="733.5" y="8885" width="0.5" height="15.0" fill="rgb(235,186,28)" rx="2" ry="2" /> +<text x="736.52" y="8895.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1,144 samples, 42.03%)</title><rect x="242.8" y="10821" width="495.9" height="15.0" fill="rgb(216,117,54)" rx="2" ry="2" /> +<text x="245.79" y="10831.5" >Nsfisis\Waddiwasi\Execution\Runtime::execInstr</text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (4 samples, 0.15%)</title><rect x="423.1" y="9333" width="1.8" height="15.0" fill="rgb(219,197,25)" rx="2" ry="2" /> +<text x="426.13" y="9343.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::deactivateLabel (1 samples, 0.04%)</title><rect x="789.4" y="10261" width="0.5" height="15.0" fill="rgb(231,67,33)" rx="2" ry="2" /> +<text x="792.44" y="10271.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (1 samples, 0.04%)</title><rect x="734.8" y="10661" width="0.5" height="15.0" fill="rgb(207,214,20)" rx="2" ry="2" /> +<text x="737.82" y="10671.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (3 samples, 0.11%)</title><rect x="529.8" y="10165" width="1.3" height="15.0" fill="rgb(231,183,15)" rx="2" ry="2" /> +<text x="532.77" y="10175.5" ></text> +</g> +<g > +<title><unknown> (1 samples, 0.04%)</title><rect x="1021.8" y="213" width="0.4" height="15.0" fill="rgb(213,58,41)" rx="2" ry="2" /> +<text x="1024.80" y="223.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (1 samples, 0.04%)</title><rect x="263.6" y="9541" width="0.4" height="15.0" fill="rgb(213,34,10)" rx="2" ry="2" /> +<text x="266.60" y="9551.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (4 samples, 0.15%)</title><rect x="732.2" y="10277" width="1.8" height="15.0" fill="rgb(238,67,19)" rx="2" ry="2" /> +<text x="735.22" y="10287.5" ></text> +</g> +<g > +<title>chr (2 samples, 0.07%)</title><rect x="1151.9" y="11237" width="0.8" height="15.0" fill="rgb(252,110,2)" rx="2" ry="2" /> +<text x="1154.85" y="11247.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="713.6" y="9877" width="0.4" height="15.0" fill="rgb(211,222,42)" rx="2" ry="2" /> +<text x="716.58" y="9887.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (1 samples, 0.04%)</title><rect x="441.3" y="9509" width="0.5" height="15.0" fill="rgb(251,210,40)" rx="2" ry="2" /> +<text x="444.34" y="9519.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (5 samples, 0.18%)</title><rect x="411.0" y="9589" width="2.2" height="15.0" fill="rgb(243,37,28)" rx="2" ry="2" /> +<text x="413.99" y="9599.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="870.1" y="8405" width="0.4" height="15.0" fill="rgb(246,4,39)" rx="2" ry="2" /> +<text x="873.07" y="8415.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Stack::pushBool (1 samples, 0.04%)</title><rect x="1068.2" y="11093" width="0.4" height="15.0" fill="rgb(244,108,17)" rx="2" ry="2" /> +<text x="1071.19" y="11103.5" ></text> +</g> +<g > +<title><unknown> (2 samples, 0.07%)</title><rect x="1021.4" y="6917" width="0.8" height="15.0" fill="rgb(237,155,42)" rx="2" ry="2" /> +<text x="1024.37" y="6927.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (11 samples, 0.40%)</title><rect x="422.7" y="9429" width="4.8" height="15.0" fill="rgb(218,106,23)" rx="2" ry="2" /> +<text x="425.70" y="9439.5" ></text> +</g> +<g > +<title><unknown> (1 samples, 0.04%)</title><rect x="1021.8" y="325" width="0.4" height="15.0" fill="rgb(249,178,18)" rx="2" ry="2" /> +<text x="1024.80" y="335.5" ></text> +</g> +<g > +<title><unknown> (2 samples, 0.07%)</title><rect x="1021.4" y="9397" width="0.8" height="15.0" fill="rgb(228,150,11)" rx="2" ry="2" /> +<text x="1024.37" y="9407.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="351.2" y="9525" width="0.4" height="15.0" fill="rgb(235,229,51)" rx="2" ry="2" /> +<text x="354.17" y="9535.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="734.0" y="10053" width="0.4" height="15.0" fill="rgb(244,36,1)" rx="2" ry="2" /> +<text x="736.95" y="10063.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="870.1" y="7989" width="0.4" height="15.0" fill="rgb(216,170,8)" rx="2" ry="2" /> +<text x="873.07" y="7999.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="307.8" y="9205" width="0.5" height="15.0" fill="rgb(238,75,20)" rx="2" ry="2" /> +<text x="310.82" y="9215.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (16 samples, 0.59%)</title><rect x="271.4" y="9861" width="6.9" height="15.0" fill="rgb(245,134,28)" rx="2" ry="2" /> +<text x="274.40" y="9871.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="1071.7" y="11029" width="0.4" height="15.0" fill="rgb(221,66,36)" rx="2" ry="2" /> +<text x="1074.65" y="11039.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (3 samples, 0.11%)</title><rect x="363.7" y="9621" width="1.3" height="15.0" fill="rgb(224,167,5)" rx="2" ry="2" /> +<text x="366.74" y="9631.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (3 samples, 0.11%)</title><rect x="1035.7" y="11173" width="1.3" height="15.0" fill="rgb(209,217,3)" rx="2" ry="2" /> +<text x="1038.67" y="11183.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Stack::popValue (1 samples, 0.04%)</title><rect x="1169.2" y="11093" width="0.4" height="15.0" fill="rgb(208,148,53)" rx="2" ry="2" /> +<text x="1172.19" y="11103.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (29 samples, 1.07%)</title><rect x="490.8" y="10597" width="12.5" height="15.0" fill="rgb(214,214,5)" rx="2" ry="2" /> +<text x="493.76" y="10607.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Stack::pushBool (1 samples, 0.04%)</title><rect x="770.4" y="9941" width="0.4" height="15.0" fill="rgb(232,78,42)" rx="2" ry="2" /> +<text x="773.37" y="9951.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="453.5" y="9221" width="0.4" height="15.0" fill="rgb(219,114,42)" rx="2" ry="2" /> +<text x="456.48" y="9231.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (5 samples, 0.18%)</title><rect x="742.6" y="10693" width="2.2" height="15.0" fill="rgb(214,188,33)" rx="2" ry="2" /> +<text x="745.62" y="10703.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (5 samples, 0.18%)</title><rect x="868.8" y="10421" width="2.1" height="15.0" fill="rgb(205,24,13)" rx="2" ry="2" /> +<text x="871.77" y="10431.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (2 samples, 0.07%)</title><rect x="731.4" y="9957" width="0.8" height="15.0" fill="rgb(214,17,11)" rx="2" ry="2" /> +<text x="734.35" y="9967.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (10 samples, 0.37%)</title><rect x="498.1" y="10373" width="4.4" height="15.0" fill="rgb(209,62,31)" rx="2" ry="2" /> +<text x="501.13" y="10383.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="307.8" y="9413" width="0.5" height="15.0" fill="rgb(232,107,9)" rx="2" ry="2" /> +<text x="310.82" y="9423.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="730.9" y="9925" width="0.5" height="15.0" fill="rgb(234,3,13)" rx="2" ry="2" /> +<text x="733.92" y="9935.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (88 samples, 3.23%)</title><rect x="814.6" y="10325" width="38.1" height="15.0" fill="rgb(251,123,45)" rx="2" ry="2" /> +<text x="817.58" y="10335.5" >Nsf..</text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="1174.4" y="11189" width="0.4" height="15.0" fill="rgb(247,54,52)" rx="2" ry="2" /> +<text x="1177.39" y="11199.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="318.7" y="9621" width="0.4" height="15.0" fill="rgb(241,65,15)" rx="2" ry="2" /> +<text x="321.66" y="9631.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="484.3" y="9557" width="0.4" height="15.0" fill="rgb(253,84,28)" rx="2" ry="2" /> +<text x="487.25" y="9567.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (7 samples, 0.26%)</title><rect x="499.4" y="10085" width="3.1" height="15.0" fill="rgb(241,180,4)" rx="2" ry="2" /> +<text x="502.43" y="10095.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (3 samples, 0.11%)</title><rect x="307.0" y="9445" width="1.3" height="15.0" fill="rgb(229,40,14)" rx="2" ry="2" /> +<text x="309.95" y="9455.5" ></text> +</g> +<g > +<title><unknown> (1 samples, 0.04%)</title><rect x="1021.8" y="469" width="0.4" height="15.0" fill="rgb(236,124,46)" rx="2" ry="2" /> +<text x="1024.80" y="479.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (54 samples, 1.98%)</title><rect x="753.0" y="10197" width="23.4" height="15.0" fill="rgb(244,178,42)" rx="2" ry="2" /> +<text x="756.03" y="10207.5" >N..</text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="468.2" y="9781" width="0.4" height="15.0" fill="rgb(229,1,29)" rx="2" ry="2" /> +<text x="471.21" y="9791.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (183 samples, 6.72%)</title><rect x="652.9" y="10165" width="79.3" height="15.0" fill="rgb(248,29,39)" rx="2" ry="2" /> +<text x="655.89" y="10175.5" >Nsfisis\W..</text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (4 samples, 0.15%)</title><rect x="732.2" y="10309" width="1.8" height="15.0" fill="rgb(253,193,40)" rx="2" ry="2" /> +<text x="735.22" y="10319.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="473.4" y="9765" width="0.5" height="15.0" fill="rgb(251,163,2)" rx="2" ry="2" /> +<text x="476.42" y="9775.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="491.6" y="10357" width="0.5" height="15.0" fill="rgb(224,166,45)" rx="2" ry="2" /> +<text x="494.62" y="10367.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (6 samples, 0.22%)</title><rect x="721.4" y="10005" width="2.6" height="15.0" fill="rgb(206,151,6)" rx="2" ry="2" /> +<text x="724.38" y="10015.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (2 samples, 0.07%)</title><rect x="1035.7" y="11125" width="0.8" height="15.0" fill="rgb(238,48,15)" rx="2" ry="2" /> +<text x="1038.67" y="11135.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="1070.8" y="11205" width="0.4" height="15.0" fill="rgb(214,68,50)" rx="2" ry="2" /> +<text x="1073.79" y="11215.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (2 samples, 0.07%)</title><rect x="526.7" y="9989" width="0.9" height="15.0" fill="rgb(224,17,31)" rx="2" ry="2" /> +<text x="529.74" y="9999.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (2 samples, 0.07%)</title><rect x="1141.9" y="10949" width="0.8" height="15.0" fill="rgb(228,157,20)" rx="2" ry="2" /> +<text x="1144.88" y="10959.5" ></text> +</g> +<g > +<title><unknown> (2 samples, 0.07%)</title><rect x="1021.4" y="7765" width="0.8" height="15.0" fill="rgb(213,188,30)" rx="2" ry="2" /> +<text x="1024.37" y="7775.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (241 samples, 8.85%)</title><rect x="547.1" y="10421" width="104.5" height="15.0" fill="rgb(232,111,29)" rx="2" ry="2" /> +<text x="550.11" y="10431.5" >Nsfisis\Wadd..</text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1,144 samples, 42.03%)</title><rect x="242.8" y="10901" width="495.9" height="15.0" fill="rgb(205,17,17)" rx="2" ry="2" /> +<text x="245.79" y="10911.5" >Nsfisis\Waddiwasi\Execution\Runtime::execInstrs</text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (4 samples, 0.15%)</title><rect x="732.2" y="10293" width="1.8" height="15.0" fill="rgb(231,65,51)" rx="2" ry="2" /> +<text x="735.22" y="10303.5" ></text> +</g> +<g > +<title><unknown> (2 samples, 0.07%)</title><rect x="1021.4" y="9221" width="0.8" height="15.0" fill="rgb(245,155,36)" rx="2" ry="2" /> +<text x="1024.37" y="9231.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\MemInst::storeByte (1 samples, 0.04%)</title><rect x="638.6" y="9877" width="0.4" height="15.0" fill="rgb(205,10,2)" rx="2" ry="2" /> +<text x="641.58" y="9887.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="769.9" y="9861" width="0.5" height="15.0" fill="rgb(207,56,29)" rx="2" ry="2" /> +<text x="772.93" y="9871.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (2 samples, 0.07%)</title><rect x="467.3" y="9509" width="0.9" height="15.0" fill="rgb(252,14,8)" rx="2" ry="2" /> +<text x="470.35" y="9519.5" ></text> +</g> +<g > +<title><unknown> (1 samples, 0.04%)</title><rect x="1021.8" y="1205" width="0.4" height="15.0" fill="rgb(241,162,38)" rx="2" ry="2" /> +<text x="1024.80" y="1215.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="412.7" y="9189" width="0.5" height="15.0" fill="rgb(211,49,51)" rx="2" ry="2" /> +<text x="415.73" y="9199.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="870.1" y="9573" width="0.4" height="15.0" fill="rgb(214,119,26)" rx="2" ry="2" /> +<text x="873.07" y="9583.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (5 samples, 0.18%)</title><rect x="725.7" y="9941" width="2.2" height="15.0" fill="rgb(222,212,10)" rx="2" ry="2" /> +<text x="728.72" y="9951.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (1 samples, 0.04%)</title><rect x="427.5" y="9573" width="0.4" height="15.0" fill="rgb(225,179,22)" rx="2" ry="2" /> +<text x="430.47" y="9583.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (3 samples, 0.11%)</title><rect x="1168.3" y="11237" width="1.3" height="15.0" fill="rgb(222,65,9)" rx="2" ry="2" /> +<text x="1171.32" y="11247.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\MemInst::storeI32 (6 samples, 0.22%)</title><rect x="215.0" y="11157" width="2.6" height="15.0" fill="rgb(208,69,45)" rx="2" ry="2" /> +<text x="218.05" y="11167.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (3 samples, 0.11%)</title><rect x="722.2" y="9797" width="1.3" height="15.0" fill="rgb(210,127,18)" rx="2" ry="2" /> +<text x="725.25" y="9807.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="320.8" y="9557" width="0.5" height="15.0" fill="rgb(247,4,10)" rx="2" ry="2" /> +<text x="323.82" y="9567.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="781.2" y="10213" width="0.4" height="15.0" fill="rgb(241,56,36)" rx="2" ry="2" /> +<text x="784.20" y="10223.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (1 samples, 0.04%)</title><rect x="315.6" y="9429" width="0.5" height="15.0" fill="rgb(210,82,38)" rx="2" ry="2" /> +<text x="318.62" y="9439.5" ></text> +</g> +<g > +<title><unknown> (2 samples, 0.07%)</title><rect x="1021.4" y="9509" width="0.8" height="15.0" fill="rgb(247,51,35)" rx="2" ry="2" /> +<text x="1024.37" y="9519.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (3 samples, 0.11%)</title><rect x="717.5" y="9669" width="1.3" height="15.0" fill="rgb(215,88,36)" rx="2" ry="2" /> +<text x="720.48" y="9679.5" ></text> +</g> +<g > +<title><unknown> (2 samples, 0.07%)</title><rect x="1021.4" y="8293" width="0.8" height="15.0" fill="rgb(247,202,50)" rx="2" ry="2" /> +<text x="1024.37" y="8303.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (11 samples, 0.40%)</title><rect x="714.0" y="9877" width="4.8" height="15.0" fill="rgb(221,113,47)" rx="2" ry="2" /> +<text x="717.01" y="9887.5" ></text> +</g> +<g > +<title><unknown> (1 samples, 0.04%)</title><rect x="1143.2" y="11189" width="0.4" height="15.0" fill="rgb(221,136,12)" rx="2" ry="2" /> +<text x="1146.18" y="11199.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (570 samples, 20.94%)</title><rect x="243.2" y="10581" width="247.1" height="15.0" fill="rgb(235,77,48)" rx="2" ry="2" /> +<text x="246.23" y="10591.5" >Nsfisis\Waddiwasi\Execution\Runt..</text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="525.4" y="10117" width="0.5" height="15.0" fill="rgb(231,60,48)" rx="2" ry="2" /> +<text x="528.44" y="10127.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="267.1" y="9461" width="0.4" height="15.0" fill="rgb(230,96,13)" rx="2" ry="2" /> +<text x="270.07" y="9471.5" ></text> +</g> +<g > +<title><unknown> (2 samples, 0.07%)</title><rect x="1021.4" y="10821" width="0.8" height="15.0" fill="rgb(231,13,17)" rx="2" ry="2" /> +<text x="1024.37" y="10831.5" ></text> +</g> +<g > +<title><unknown> (1 samples, 0.04%)</title><rect x="1021.8" y="453" width="0.4" height="15.0" fill="rgb(237,86,32)" rx="2" ry="2" /> +<text x="1024.80" y="463.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (63 samples, 2.31%)</title><rect x="749.1" y="10469" width="27.3" height="15.0" fill="rgb(222,169,20)" rx="2" ry="2" /> +<text x="752.13" y="10479.5" >N..</text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="738.3" y="10357" width="0.4" height="15.0" fill="rgb(230,16,34)" rx="2" ry="2" /> +<text x="741.29" y="10367.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (24 samples, 0.88%)</title><rect x="1102.0" y="11077" width="10.4" height="15.0" fill="rgb(233,160,16)" rx="2" ry="2" /> +<text x="1105.00" y="11087.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (53 samples, 1.95%)</title><rect x="405.4" y="9717" width="22.9" height="15.0" fill="rgb(213,218,29)" rx="2" ry="2" /> +<text x="408.36" y="9727.5" >N..</text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (1 samples, 0.04%)</title><rect x="307.8" y="9301" width="0.5" height="15.0" fill="rgb(229,193,31)" rx="2" ry="2" /> +<text x="310.82" y="9311.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (6 samples, 0.22%)</title><rect x="479.5" y="9829" width="2.6" height="15.0" fill="rgb(214,131,45)" rx="2" ry="2" /> +<text x="482.49" y="9839.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (51 samples, 1.87%)</title><rect x="406.2" y="9701" width="22.1" height="15.0" fill="rgb(225,206,39)" rx="2" ry="2" /> +<text x="409.22" y="9711.5" >N..</text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (3 samples, 0.11%)</title><rect x="316.1" y="9477" width="1.3" height="15.0" fill="rgb(249,126,24)" rx="2" ry="2" /> +<text x="319.05" y="9487.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="789.4" y="10213" width="0.5" height="15.0" fill="rgb(234,164,30)" rx="2" ry="2" /> +<text x="792.44" y="10223.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Stack::popI32 (1 samples, 0.04%)</title><rect x="326.5" y="9589" width="0.4" height="15.0" fill="rgb(220,204,30)" rx="2" ry="2" /> +<text x="329.46" y="9599.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="1151.0" y="11189" width="0.4" height="15.0" fill="rgb(252,109,41)" rx="2" ry="2" /> +<text x="1153.98" y="11199.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (3 samples, 0.11%)</title><rect x="402.8" y="9605" width="1.3" height="15.0" fill="rgb(205,190,12)" rx="2" ry="2" /> +<text x="405.76" y="9615.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (1 samples, 0.04%)</title><rect x="265.3" y="9461" width="0.5" height="15.0" fill="rgb(230,158,10)" rx="2" ry="2" /> +<text x="268.33" y="9471.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="763.9" y="9925" width="0.4" height="15.0" fill="rgb(226,0,4)" rx="2" ry="2" /> +<text x="766.86" y="9935.5" ></text> +</g> +<g > +<title><unknown> (1 samples, 0.04%)</title><rect x="1166.6" y="11205" width="0.4" height="15.0" fill="rgb(228,146,2)" rx="2" ry="2" /> +<text x="1169.59" y="11215.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (3 samples, 0.11%)</title><rect x="717.5" y="9749" width="1.3" height="15.0" fill="rgb(240,92,22)" rx="2" ry="2" /> +<text x="720.48" y="9759.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (1 samples, 0.04%)</title><rect x="652.0" y="10501" width="0.5" height="15.0" fill="rgb(244,119,44)" rx="2" ry="2" /> +<text x="655.02" y="10511.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="424.4" y="8901" width="0.5" height="15.0" fill="rgb(253,39,52)" rx="2" ry="2" /> +<text x="427.43" y="8911.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (3 samples, 0.11%)</title><rect x="717.5" y="9685" width="1.3" height="15.0" fill="rgb(228,181,40)" rx="2" ry="2" /> +<text x="720.48" y="9695.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="263.6" y="9525" width="0.4" height="15.0" fill="rgb(238,43,46)" rx="2" ry="2" /> +<text x="266.60" y="9535.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (5 samples, 0.18%)</title><rect x="868.8" y="10565" width="2.1" height="15.0" fill="rgb(235,162,52)" rx="2" ry="2" /> +<text x="871.77" y="10575.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="325.2" y="9237" width="0.4" height="15.0" fill="rgb(228,220,28)" rx="2" ry="2" /> +<text x="328.16" y="9247.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="318.7" y="9445" width="0.4" height="15.0" fill="rgb(241,90,6)" rx="2" ry="2" /> +<text x="321.66" y="9455.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="1070.8" y="11189" width="0.4" height="15.0" fill="rgb(220,64,8)" rx="2" ry="2" /> +<text x="1073.79" y="11199.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="1139.7" y="11109" width="0.4" height="15.0" fill="rgb(231,107,49)" rx="2" ry="2" /> +<text x="1142.71" y="11119.5" ></text> +</g> +<g > +<title><unknown> (2 samples, 0.07%)</title><rect x="1021.4" y="8693" width="0.8" height="15.0" fill="rgb(207,174,36)" rx="2" ry="2" /> +<text x="1024.37" y="8703.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (1 samples, 0.04%)</title><rect x="740.5" y="10453" width="0.4" height="15.0" fill="rgb(251,78,48)" rx="2" ry="2" /> +<text x="743.46" y="10463.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="419.7" y="9381" width="0.4" height="15.0" fill="rgb(244,102,18)" rx="2" ry="2" /> +<text x="422.66" y="9391.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="238.9" y="10309" width="0.4" height="15.0" fill="rgb(215,75,38)" rx="2" ry="2" /> +<text x="241.89" y="10319.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (21 samples, 0.77%)</title><rect x="709.7" y="9909" width="9.1" height="15.0" fill="rgb(249,196,5)" rx="2" ry="2" /> +<text x="712.68" y="9919.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doLoadI32 (1 samples, 0.04%)</title><rect x="525.4" y="10165" width="0.5" height="15.0" fill="rgb(230,25,1)" rx="2" ry="2" /> +<text x="528.44" y="10175.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="291.3" y="9589" width="0.5" height="15.0" fill="rgb(235,87,51)" rx="2" ry="2" /> +<text x="294.34" y="9599.5" ></text> +</g> +<g > +<title><unknown> (2 samples, 0.07%)</title><rect x="1021.4" y="8309" width="0.8" height="15.0" fill="rgb(235,167,6)" rx="2" ry="2" /> +<text x="1024.37" y="8319.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="739.6" y="10277" width="0.4" height="15.0" fill="rgb(222,42,32)" rx="2" ry="2" /> +<text x="742.59" y="10287.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (4 samples, 0.15%)</title><rect x="742.6" y="10389" width="1.8" height="15.0" fill="rgb(209,113,15)" rx="2" ry="2" /> +<text x="745.62" y="10399.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (14 samples, 0.51%)</title><rect x="440.5" y="9877" width="6.0" height="15.0" fill="rgb(236,1,2)" rx="2" ry="2" /> +<text x="443.47" y="9887.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (6 samples, 0.22%)</title><rect x="721.4" y="9893" width="2.6" height="15.0" fill="rgb(230,7,51)" rx="2" ry="2" /> +<text x="724.38" y="9903.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (108 samples, 3.97%)</title><rect x="280.5" y="9909" width="46.8" height="15.0" fill="rgb(248,172,9)" rx="2" ry="2" /> +<text x="283.51" y="9919.5" >Nsfi..</text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="733.5" y="8917" width="0.5" height="15.0" fill="rgb(245,215,7)" rx="2" ry="2" /> +<text x="736.52" y="8927.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (2 samples, 0.07%)</title><rect x="737.0" y="10325" width="0.9" height="15.0" fill="rgb(242,120,38)" rx="2" ry="2" /> +<text x="739.99" y="10335.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (9 samples, 0.33%)</title><rect x="1108.5" y="10965" width="3.9" height="15.0" fill="rgb(247,212,32)" rx="2" ry="2" /> +<text x="1111.50" y="10975.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (2 samples, 0.07%)</title><rect x="545.8" y="10373" width="0.9" height="15.0" fill="rgb(244,187,12)" rx="2" ry="2" /> +<text x="548.81" y="10383.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="443.1" y="8661" width="0.4" height="15.0" fill="rgb(224,114,39)" rx="2" ry="2" /> +<text x="446.07" y="8671.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="503.3" y="10453" width="0.5" height="15.0" fill="rgb(234,36,50)" rx="2" ry="2" /> +<text x="506.33" y="10463.5" ></text> +</g> +<g > +<title><unknown> (2 samples, 0.07%)</title><rect x="1021.4" y="7861" width="0.8" height="15.0" fill="rgb(248,39,50)" rx="2" ry="2" /> +<text x="1024.37" y="7871.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (1 samples, 0.04%)</title><rect x="329.1" y="9829" width="0.4" height="15.0" fill="rgb(211,32,29)" rx="2" ry="2" /> +<text x="332.06" y="9839.5" ></text> +</g> +<g > +<title><unknown> (2 samples, 0.07%)</title><rect x="1021.4" y="8485" width="0.8" height="15.0" fill="rgb(245,58,24)" rx="2" ry="2" /> +<text x="1024.37" y="8495.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="454.3" y="9413" width="0.5" height="15.0" fill="rgb(212,7,20)" rx="2" ry="2" /> +<text x="457.34" y="9423.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (1 samples, 0.04%)</title><rect x="793.8" y="10293" width="0.4" height="15.0" fill="rgb(218,135,50)" rx="2" ry="2" /> +<text x="796.78" y="10303.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="738.3" y="10341" width="0.4" height="15.0" fill="rgb(224,12,3)" rx="2" ry="2" /> +<text x="741.29" y="10351.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (2 samples, 0.07%)</title><rect x="239.3" y="10885" width="0.9" height="15.0" fill="rgb(225,109,21)" rx="2" ry="2" /> +<text x="242.32" y="10895.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="380.2" y="9413" width="0.4" height="15.0" fill="rgb(211,39,53)" rx="2" ry="2" /> +<text x="383.21" y="9423.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="1090.3" y="11125" width="0.4" height="15.0" fill="rgb(233,175,48)" rx="2" ry="2" /> +<text x="1093.29" y="11135.5" ></text> +</g> +<g > +<title><unknown> (1 samples, 0.04%)</title><rect x="1021.8" y="1301" width="0.4" height="15.0" fill="rgb(247,183,19)" rx="2" ry="2" /> +<text x="1024.80" y="1311.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (1 samples, 0.04%)</title><rect x="740.5" y="10533" width="0.4" height="15.0" fill="rgb(224,191,12)" rx="2" ry="2" /> +<text x="743.46" y="10543.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="345.1" y="9605" width="0.4" height="15.0" fill="rgb(208,132,2)" rx="2" ry="2" /> +<text x="348.10" y="9615.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (1 samples, 0.04%)</title><rect x="261.0" y="9557" width="0.4" height="15.0" fill="rgb(243,64,29)" rx="2" ry="2" /> +<text x="264.00" y="9567.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (108 samples, 3.97%)</title><rect x="280.5" y="9877" width="46.8" height="15.0" fill="rgb(218,30,20)" rx="2" ry="2" /> +<text x="283.51" y="9887.5" >Nsfi..</text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (562 samples, 20.65%)</title><rect x="246.7" y="10277" width="243.6" height="15.0" fill="rgb(243,66,22)" rx="2" ry="2" /> +<text x="249.69" y="10287.5" >Nsfisis\Waddiwasi\Execution\Runt..</text> +</g> +<g > +<title><unknown> (1 samples, 0.04%)</title><rect x="466.5" y="9653" width="0.4" height="15.0" fill="rgb(213,120,18)" rx="2" ry="2" /> +<text x="469.48" y="9663.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="734.8" y="10533" width="0.5" height="15.0" fill="rgb(233,201,41)" rx="2" ry="2" /> +<text x="737.82" y="10543.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="307.8" y="9189" width="0.5" height="15.0" fill="rgb(221,224,41)" rx="2" ry="2" /> +<text x="310.82" y="9199.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (1 samples, 0.04%)</title><rect x="497.3" y="10341" width="0.4" height="15.0" fill="rgb(227,174,40)" rx="2" ry="2" /> +<text x="500.26" y="10351.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (1 samples, 0.04%)</title><rect x="453.5" y="9653" width="0.4" height="15.0" fill="rgb(250,102,37)" rx="2" ry="2" /> +<text x="456.48" y="9663.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doLoadI32 (1 samples, 0.04%)</title><rect x="826.7" y="10261" width="0.5" height="15.0" fill="rgb(237,140,19)" rx="2" ry="2" /> +<text x="829.72" y="10271.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doLoadI32 (1 samples, 0.04%)</title><rect x="1105.0" y="11029" width="0.5" height="15.0" fill="rgb(230,117,25)" rx="2" ry="2" /> +<text x="1108.03" y="11039.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (14 samples, 0.51%)</title><rect x="440.5" y="9909" width="6.0" height="15.0" fill="rgb(237,211,4)" rx="2" ry="2" /> +<text x="443.47" y="9919.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="867.0" y="10389" width="0.5" height="15.0" fill="rgb(218,115,0)" rx="2" ry="2" /> +<text x="870.04" y="10399.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (1 samples, 0.04%)</title><rect x="438.3" y="9669" width="0.4" height="15.0" fill="rgb(237,184,29)" rx="2" ry="2" /> +<text x="441.30" y="9679.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="869.2" y="10037" width="0.4" height="15.0" fill="rgb(251,202,23)" rx="2" ry="2" /> +<text x="872.21" y="10047.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (2 samples, 0.07%)</title><rect x="1035.7" y="11141" width="0.8" height="15.0" fill="rgb(243,1,25)" rx="2" ry="2" /> +<text x="1038.67" y="11151.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Stack::push (1 samples, 0.04%)</title><rect x="632.5" y="9893" width="0.4" height="15.0" fill="rgb(253,112,10)" rx="2" ry="2" /> +<text x="635.51" y="9903.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (1 samples, 0.04%)</title><rect x="238.9" y="10757" width="0.4" height="15.0" fill="rgb(212,182,2)" rx="2" ry="2" /> +<text x="241.89" y="10767.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="870.1" y="9157" width="0.4" height="15.0" fill="rgb(245,22,0)" rx="2" ry="2" /> +<text x="873.07" y="9167.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="867.9" y="10133" width="0.4" height="15.0" fill="rgb(234,75,47)" rx="2" ry="2" /> +<text x="870.91" y="10143.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="1071.2" y="11125" width="0.5" height="15.0" fill="rgb(243,43,46)" rx="2" ry="2" /> +<text x="1074.22" y="11135.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (1 samples, 0.04%)</title><rect x="340.8" y="9909" width="0.4" height="15.0" fill="rgb(219,36,50)" rx="2" ry="2" /> +<text x="343.76" y="9919.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="668.1" y="9813" width="0.4" height="15.0" fill="rgb(249,94,26)" rx="2" ry="2" /> +<text x="671.06" y="9823.5" ></text> +</g> +<g > +<title><unknown> (1 samples, 0.04%)</title><rect x="1021.8" y="2629" width="0.4" height="15.0" fill="rgb(207,24,27)" rx="2" ry="2" /> +<text x="1024.80" y="2639.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="870.1" y="9045" width="0.4" height="15.0" fill="rgb(217,138,44)" rx="2" ry="2" /> +<text x="873.07" y="9055.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (2 samples, 0.07%)</title><rect x="438.3" y="9701" width="0.9" height="15.0" fill="rgb(242,141,25)" rx="2" ry="2" /> +<text x="441.30" y="9711.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (1 samples, 0.04%)</title><rect x="345.1" y="9893" width="0.4" height="15.0" fill="rgb(251,158,30)" rx="2" ry="2" /> +<text x="348.10" y="9903.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (7 samples, 0.26%)</title><rect x="370.7" y="9733" width="3.0" height="15.0" fill="rgb(206,145,0)" rx="2" ry="2" /> +<text x="373.68" y="9743.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="724.8" y="9877" width="0.5" height="15.0" fill="rgb(207,95,42)" rx="2" ry="2" /> +<text x="727.85" y="9887.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="543.2" y="10149" width="0.4" height="15.0" fill="rgb(243,104,27)" rx="2" ry="2" /> +<text x="546.21" y="10159.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="1137.5" y="11093" width="0.5" height="15.0" fill="rgb(226,145,54)" rx="2" ry="2" /> +<text x="1140.55" y="11103.5" ></text> +</g> +<g > +<title><unknown> (1 samples, 0.04%)</title><rect x="1021.8" y="821" width="0.4" height="15.0" fill="rgb(228,198,42)" rx="2" ry="2" /> +<text x="1024.80" y="831.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (2 samples, 0.07%)</title><rect x="545.8" y="10325" width="0.9" height="15.0" fill="rgb(252,188,24)" rx="2" ry="2" /> +<text x="548.81" y="10335.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Stack::popI32 (1 samples, 0.04%)</title><rect x="730.5" y="10037" width="0.4" height="15.0" fill="rgb(239,229,36)" rx="2" ry="2" /> +<text x="733.48" y="10047.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (1 samples, 0.04%)</title><rect x="380.2" y="9477" width="0.4" height="15.0" fill="rgb(241,205,1)" rx="2" ry="2" /> +<text x="383.21" y="9487.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (241 samples, 8.85%)</title><rect x="547.1" y="10229" width="104.5" height="15.0" fill="rgb(247,58,52)" rx="2" ry="2" /> +<text x="550.11" y="10239.5" >Nsfisis\Wadd..</text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (31 samples, 1.14%)</title><rect x="1055.2" y="11109" width="13.4" height="15.0" fill="rgb(206,81,53)" rx="2" ry="2" /> +<text x="1058.18" y="11119.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (153 samples, 5.62%)</title><rect x="800.3" y="10437" width="66.3" height="15.0" fill="rgb(213,147,34)" rx="2" ry="2" /> +<text x="803.28" y="10447.5" >Nsfisis..</text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (1 samples, 0.04%)</title><rect x="739.6" y="10517" width="0.4" height="15.0" fill="rgb(206,20,2)" rx="2" ry="2" /> +<text x="742.59" y="10527.5" ></text> +</g> +<g > +<title><unknown> (2 samples, 0.07%)</title><rect x="1021.4" y="8021" width="0.8" height="15.0" fill="rgb(213,57,4)" rx="2" ry="2" /> +<text x="1024.37" y="8031.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doStoreI32 (1 samples, 0.04%)</title><rect x="668.1" y="10037" width="0.4" height="15.0" fill="rgb(251,164,18)" rx="2" ry="2" /> +<text x="671.06" y="10047.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (9 samples, 0.33%)</title><rect x="441.8" y="9717" width="3.9" height="15.0" fill="rgb(238,168,19)" rx="2" ry="2" /> +<text x="444.77" y="9727.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="345.1" y="9845" width="0.4" height="15.0" fill="rgb(249,153,12)" rx="2" ry="2" /> +<text x="348.10" y="9855.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (7 samples, 0.26%)</title><rect x="735.3" y="10677" width="3.0" height="15.0" fill="rgb(228,217,16)" rx="2" ry="2" /> +<text x="738.25" y="10687.5" ></text> +</g> +<g > +<title><unknown> (1 samples, 0.04%)</title><rect x="1021.8" y="1093" width="0.4" height="15.0" fill="rgb(253,222,14)" rx="2" ry="2" /> +<text x="1024.80" y="1103.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="424.4" y="8949" width="0.5" height="15.0" fill="rgb(244,98,6)" rx="2" ry="2" /> +<text x="427.43" y="8959.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="359.0" y="9573" width="0.4" height="15.0" fill="rgb(220,64,31)" rx="2" ry="2" /> +<text x="361.97" y="9583.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (54 samples, 1.98%)</title><rect x="753.0" y="10245" width="23.4" height="15.0" fill="rgb(235,141,29)" rx="2" ry="2" /> +<text x="756.03" y="10255.5" >N..</text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="740.9" y="10789" width="0.4" height="15.0" fill="rgb(231,58,13)" rx="2" ry="2" /> +<text x="743.89" y="10799.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="331.2" y="9701" width="0.5" height="15.0" fill="rgb(219,223,46)" rx="2" ry="2" /> +<text x="334.23" y="9711.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (4 samples, 0.15%)</title><rect x="466.5" y="9781" width="1.7" height="15.0" fill="rgb(209,60,48)" rx="2" ry="2" /> +<text x="469.48" y="9791.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (1 samples, 0.04%)</title><rect x="238.9" y="10677" width="0.4" height="15.0" fill="rgb(233,207,0)" rx="2" ry="2" /> +<text x="241.89" y="10687.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (3 samples, 0.11%)</title><rect x="442.2" y="9173" width="1.3" height="15.0" fill="rgb(253,212,44)" rx="2" ry="2" /> +<text x="445.20" y="9183.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (19 samples, 0.70%)</title><rect x="431.4" y="9957" width="8.2" height="15.0" fill="rgb(206,26,28)" rx="2" ry="2" /> +<text x="434.37" y="9967.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="409.3" y="9397" width="0.4" height="15.0" fill="rgb(209,216,5)" rx="2" ry="2" /> +<text x="412.26" y="9407.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="733.5" y="8181" width="0.5" height="15.0" fill="rgb(225,151,53)" rx="2" ry="2" /> +<text x="736.52" y="8191.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="344.7" y="9893" width="0.4" height="15.0" fill="rgb(241,26,49)" rx="2" ry="2" /> +<text x="347.67" y="9903.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (562 samples, 20.65%)</title><rect x="246.7" y="10389" width="243.6" height="15.0" fill="rgb(217,109,53)" rx="2" ry="2" /> +<text x="249.69" y="10399.5" >Nsfisis\Waddiwasi\Execution\Runt..</text> +</g> +<g > +<title><unknown> (1 samples, 0.04%)</title><rect x="1021.8" y="1765" width="0.4" height="15.0" fill="rgb(210,165,17)" rx="2" ry="2" /> +<text x="1024.80" y="1775.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (4 samples, 0.15%)</title><rect x="304.3" y="9381" width="1.8" height="15.0" fill="rgb(227,204,20)" rx="2" ry="2" /> +<text x="307.35" y="9391.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="337.3" y="9957" width="0.4" height="15.0" fill="rgb(245,74,50)" rx="2" ry="2" /> +<text x="340.30" y="9967.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="412.3" y="9061" width="0.4" height="15.0" fill="rgb(247,199,14)" rx="2" ry="2" /> +<text x="415.29" y="9071.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="265.3" y="9317" width="0.5" height="15.0" fill="rgb(233,152,41)" rx="2" ry="2" /> +<text x="268.33" y="9327.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (15 samples, 0.55%)</title><rect x="764.7" y="9957" width="6.5" height="15.0" fill="rgb(235,82,0)" rx="2" ry="2" /> +<text x="767.73" y="9967.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="870.1" y="8565" width="0.4" height="15.0" fill="rgb(244,2,21)" rx="2" ry="2" /> +<text x="873.07" y="8575.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (23 samples, 0.84%)</title><rect x="528.9" y="10421" width="10.0" height="15.0" fill="rgb(249,141,51)" rx="2" ry="2" /> +<text x="531.91" y="10431.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (11 samples, 0.40%)</title><rect x="422.7" y="9397" width="4.8" height="15.0" fill="rgb(216,132,51)" rx="2" ry="2" /> +<text x="425.70" y="9407.5" ></text> +</g> +<g > +<title><unknown> (1 samples, 0.04%)</title><rect x="1021.8" y="5685" width="0.4" height="15.0" fill="rgb(215,217,53)" rx="2" ry="2" /> +<text x="1024.80" y="5695.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (1 samples, 0.04%)</title><rect x="267.1" y="9429" width="0.4" height="15.0" fill="rgb(207,46,20)" rx="2" ry="2" /> +<text x="270.07" y="9439.5" ></text> +</g> +<g > +<title><unknown> (1 samples, 0.04%)</title><rect x="1180.9" y="11221" width="0.4" height="15.0" fill="rgb(219,66,50)" rx="2" ry="2" /> +<text x="1183.90" y="11231.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::invokeByFuncAddr (343 samples, 12.60%)</title><rect x="503.3" y="10693" width="148.7" height="15.0" fill="rgb(226,99,25)" rx="2" ry="2" /> +<text x="506.33" y="10703.5" >Nsfisis\Waddiwasi\E..</text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="739.6" y="10293" width="0.4" height="15.0" fill="rgb(254,172,17)" rx="2" ry="2" /> +<text x="742.59" y="10303.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="733.5" y="9493" width="0.5" height="15.0" fill="rgb(223,161,14)" rx="2" ry="2" /> +<text x="736.52" y="9503.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (13 samples, 0.48%)</title><rect x="353.3" y="9509" width="5.7" height="15.0" fill="rgb(213,95,45)" rx="2" ry="2" /> +<text x="356.34" y="9519.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (241 samples, 8.85%)</title><rect x="547.1" y="10277" width="104.5" height="15.0" fill="rgb(251,108,20)" rx="2" ry="2" /> +<text x="550.11" y="10287.5" >Nsfisis\Wadd..</text> +</g> +<g > +<title><unknown> (1 samples, 0.04%)</title><rect x="1021.8" y="2517" width="0.4" height="15.0" fill="rgb(212,105,54)" rx="2" ry="2" /> +<text x="1024.80" y="2527.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (1 samples, 0.04%)</title><rect x="1128.9" y="11189" width="0.4" height="15.0" fill="rgb(247,118,3)" rx="2" ry="2" /> +<text x="1131.88" y="11199.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (1,142 samples, 41.95%)</title><rect x="243.2" y="10741" width="495.1" height="15.0" fill="rgb(247,49,49)" rx="2" ry="2" /> +<text x="246.23" y="10751.5" >Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc</text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="497.3" y="10245" width="0.4" height="15.0" fill="rgb(216,42,50)" rx="2" ry="2" /> +<text x="500.26" y="10255.5" ></text> +</g> +<g > +<title><unknown> (1 samples, 0.04%)</title><rect x="1021.8" y="3813" width="0.4" height="15.0" fill="rgb(242,94,31)" rx="2" ry="2" /> +<text x="1024.80" y="3823.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="869.2" y="9973" width="0.4" height="15.0" fill="rgb(246,22,31)" rx="2" ry="2" /> +<text x="872.21" y="9983.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="412.3" y="9045" width="0.4" height="15.0" fill="rgb(215,206,36)" rx="2" ry="2" /> +<text x="415.29" y="9055.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (3 samples, 0.11%)</title><rect x="442.2" y="9205" width="1.3" height="15.0" fill="rgb(220,97,3)" rx="2" ry="2" /> +<text x="445.20" y="9215.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (3 samples, 0.11%)</title><rect x="812.0" y="10213" width="1.3" height="15.0" fill="rgb(250,110,36)" rx="2" ry="2" /> +<text x="814.98" y="10223.5" ></text> +</g> +<g > +<title><unknown> (1 samples, 0.04%)</title><rect x="1021.8" y="2229" width="0.4" height="15.0" fill="rgb(220,82,7)" rx="2" ry="2" /> +<text x="1024.80" y="2239.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (3 samples, 0.11%)</title><rect x="260.1" y="9669" width="1.3" height="15.0" fill="rgb(207,124,32)" rx="2" ry="2" /> +<text x="263.13" y="9679.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (2 samples, 0.07%)</title><rect x="733.1" y="10085" width="0.9" height="15.0" fill="rgb(243,54,44)" rx="2" ry="2" /> +<text x="736.09" y="10095.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (4 samples, 0.15%)</title><rect x="411.4" y="9461" width="1.8" height="15.0" fill="rgb(231,208,47)" rx="2" ry="2" /> +<text x="414.43" y="9471.5" ></text> +</g> +<g > +<title><unknown> (1 samples, 0.04%)</title><rect x="466.5" y="9685" width="0.4" height="15.0" fill="rgb(243,24,21)" rx="2" ry="2" /> +<text x="469.48" y="9695.5" ></text> +</g> +<g > +<title>assert (1 samples, 0.04%)</title><rect x="633.8" y="9893" width="0.4" height="15.0" fill="rgb(244,34,31)" rx="2" ry="2" /> +<text x="636.81" y="9903.5" ></text> +</g> +<g > +<title><unknown> (1 samples, 0.04%)</title><rect x="691.0" y="9941" width="0.5" height="15.0" fill="rgb(225,83,41)" rx="2" ry="2" /> +<text x="694.04" y="9951.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (2 samples, 0.07%)</title><rect x="530.2" y="10101" width="0.9" height="15.0" fill="rgb(244,194,11)" rx="2" ry="2" /> +<text x="533.21" y="10111.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="739.2" y="10565" width="0.4" height="15.0" fill="rgb(226,214,43)" rx="2" ry="2" /> +<text x="742.16" y="10575.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="443.1" y="8533" width="0.4" height="15.0" fill="rgb(252,220,20)" rx="2" ry="2" /> +<text x="446.07" y="8543.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (1 samples, 0.04%)</title><rect x="454.3" y="9525" width="0.5" height="15.0" fill="rgb(245,162,50)" rx="2" ry="2" /> +<text x="457.34" y="9535.5" ></text> +</g> +<g > +<title><unknown> (1 samples, 0.04%)</title><rect x="1021.8" y="1973" width="0.4" height="15.0" fill="rgb(228,180,43)" rx="2" ry="2" /> +<text x="1024.80" y="1983.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="483.8" y="9621" width="0.5" height="15.0" fill="rgb(211,187,37)" rx="2" ry="2" /> +<text x="486.82" y="9631.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (1 samples, 0.04%)</title><rect x="325.2" y="9285" width="0.4" height="15.0" fill="rgb(213,122,31)" rx="2" ry="2" /> +<text x="328.16" y="9295.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="261.0" y="9477" width="0.4" height="15.0" fill="rgb(237,70,15)" rx="2" ry="2" /> +<text x="264.00" y="9487.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="331.2" y="9557" width="0.5" height="15.0" fill="rgb(238,8,30)" rx="2" ry="2" /> +<text x="334.23" y="9567.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (11 samples, 0.40%)</title><rect x="1063.4" y="10965" width="4.8" height="15.0" fill="rgb(213,12,37)" rx="2" ry="2" /> +<text x="1066.42" y="10975.5" ></text> +</g> +<g > +<title><unknown> (2 samples, 0.07%)</title><rect x="1021.4" y="9125" width="0.8" height="15.0" fill="rgb(224,47,2)" rx="2" ry="2" /> +<text x="1024.37" y="9135.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="1168.8" y="11077" width="0.4" height="15.0" fill="rgb(234,91,16)" rx="2" ry="2" /> +<text x="1171.76" y="11087.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="740.9" y="10469" width="0.4" height="15.0" fill="rgb(207,92,13)" rx="2" ry="2" /> +<text x="743.89" y="10479.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (200 samples, 7.35%)</title><rect x="341.6" y="9973" width="86.7" height="15.0" fill="rgb(206,33,31)" rx="2" ry="2" /> +<text x="344.63" y="9983.5" >Nsfisis\Wa..</text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (3 samples, 0.11%)</title><rect x="411.4" y="9237" width="1.3" height="15.0" fill="rgb(243,121,53)" rx="2" ry="2" /> +<text x="414.43" y="9247.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="734.4" y="10165" width="0.4" height="15.0" fill="rgb(238,224,20)" rx="2" ry="2" /> +<text x="737.39" y="10175.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (3 samples, 0.11%)</title><rect x="462.6" y="9381" width="1.3" height="15.0" fill="rgb(237,5,2)" rx="2" ry="2" /> +<text x="465.58" y="9391.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="1168.8" y="11013" width="0.4" height="15.0" fill="rgb(250,0,33)" rx="2" ry="2" /> +<text x="1171.76" y="11023.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (1 samples, 0.04%)</title><rect x="292.2" y="9781" width="0.4" height="15.0" fill="rgb(228,112,24)" rx="2" ry="2" /> +<text x="295.21" y="9791.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (1 samples, 0.04%)</title><rect x="668.1" y="9957" width="0.4" height="15.0" fill="rgb(216,132,32)" rx="2" ry="2" /> +<text x="671.06" y="9967.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="718.3" y="9493" width="0.5" height="15.0" fill="rgb(242,189,48)" rx="2" ry="2" /> +<text x="721.35" y="9503.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="1137.5" y="11205" width="0.5" height="15.0" fill="rgb(240,13,5)" rx="2" ry="2" /> +<text x="1140.55" y="11215.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (1 samples, 0.04%)</title><rect x="307.8" y="9349" width="0.5" height="15.0" fill="rgb(233,131,15)" rx="2" ry="2" /> +<text x="310.82" y="9359.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (29 samples, 1.07%)</title><rect x="258.8" y="9861" width="12.6" height="15.0" fill="rgb(252,32,26)" rx="2" ry="2" /> +<text x="261.83" y="9871.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (7 samples, 0.26%)</title><rect x="735.3" y="10597" width="3.0" height="15.0" fill="rgb(208,11,23)" rx="2" ry="2" /> +<text x="738.25" y="10607.5" ></text> +</g> +<g > +<title><unknown> (1 samples, 0.04%)</title><rect x="1021.8" y="917" width="0.4" height="15.0" fill="rgb(213,201,43)" rx="2" ry="2" /> +<text x="1024.80" y="927.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="1050.0" y="10917" width="0.4" height="15.0" fill="rgb(211,91,31)" rx="2" ry="2" /> +<text x="1052.98" y="10927.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (56 samples, 2.06%)</title><rect x="752.2" y="10357" width="24.2" height="15.0" fill="rgb(240,63,36)" rx="2" ry="2" /> +<text x="755.16" y="10367.5" >N..</text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="1090.3" y="11045" width="0.4" height="15.0" fill="rgb(222,12,43)" rx="2" ry="2" /> +<text x="1093.29" y="11055.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (19 samples, 0.70%)</title><rect x="262.3" y="9685" width="8.2" height="15.0" fill="rgb(254,54,26)" rx="2" ry="2" /> +<text x="265.30" y="9695.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (2 samples, 0.07%)</title><rect x="419.7" y="9509" width="0.8" height="15.0" fill="rgb(213,85,7)" rx="2" ry="2" /> +<text x="422.66" y="9519.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (4 samples, 0.15%)</title><rect x="466.5" y="9765" width="1.7" height="15.0" fill="rgb(223,47,33)" rx="2" ry="2" /> +<text x="469.48" y="9775.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="446.1" y="9573" width="0.4" height="15.0" fill="rgb(210,17,40)" rx="2" ry="2" /> +<text x="449.11" y="9583.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="826.7" y="10245" width="0.5" height="15.0" fill="rgb(207,204,52)" rx="2" ry="2" /> +<text x="829.72" y="10255.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (2 samples, 0.07%)</title><rect x="372.8" y="9557" width="0.9" height="15.0" fill="rgb(254,145,46)" rx="2" ry="2" /> +<text x="375.84" y="9567.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (4 samples, 0.15%)</title><rect x="468.2" y="9893" width="1.7" height="15.0" fill="rgb(212,33,51)" rx="2" ry="2" /> +<text x="471.21" y="9903.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="668.1" y="9845" width="0.4" height="15.0" fill="rgb(237,69,0)" rx="2" ry="2" /> +<text x="671.06" y="9855.5" ></text> +</g> +<g > +<title><unknown> (1 samples, 0.04%)</title><rect x="1021.8" y="165" width="0.4" height="15.0" fill="rgb(227,74,47)" rx="2" ry="2" /> +<text x="1024.80" y="175.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="483.8" y="9637" width="0.5" height="15.0" fill="rgb(249,195,39)" rx="2" ry="2" /> +<text x="486.82" y="9647.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="1035.2" y="11173" width="0.5" height="15.0" fill="rgb(231,135,20)" rx="2" ry="2" /> +<text x="1038.24" y="11183.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="412.3" y="9125" width="0.4" height="15.0" fill="rgb(214,175,44)" rx="2" ry="2" /> +<text x="415.29" y="9135.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="536.3" y="9797" width="0.4" height="15.0" fill="rgb(209,129,25)" rx="2" ry="2" /> +<text x="539.27" y="9807.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="483.4" y="9909" width="0.4" height="15.0" fill="rgb(231,103,50)" rx="2" ry="2" /> +<text x="486.39" y="9919.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (1 samples, 0.04%)</title><rect x="742.6" y="10117" width="0.5" height="15.0" fill="rgb(218,210,5)" rx="2" ry="2" /> +<text x="745.62" y="10127.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (1 samples, 0.04%)</title><rect x="739.2" y="10661" width="0.4" height="15.0" fill="rgb(232,99,32)" rx="2" ry="2" /> +<text x="742.16" y="10671.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Val::NumI32 (1 samples, 0.04%)</title><rect x="742.2" y="10437" width="0.4" height="15.0" fill="rgb(213,169,50)" rx="2" ry="2" /> +<text x="745.19" y="10447.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="866.2" y="10293" width="0.4" height="15.0" fill="rgb(245,27,13)" rx="2" ry="2" /> +<text x="869.17" y="10303.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (183 samples, 6.72%)</title><rect x="652.9" y="10309" width="79.3" height="15.0" fill="rgb(233,83,32)" rx="2" ry="2" /> +<text x="655.89" y="10319.5" >Nsfisis\W..</text> +</g> +<g > +<title><unknown> (1 samples, 0.04%)</title><rect x="1021.8" y="373" width="0.4" height="15.0" fill="rgb(205,10,12)" rx="2" ry="2" /> +<text x="1024.80" y="383.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="325.6" y="9301" width="0.4" height="15.0" fill="rgb(239,56,33)" rx="2" ry="2" /> +<text x="328.59" y="9311.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (9 samples, 0.33%)</title><rect x="1138.8" y="11205" width="3.9" height="15.0" fill="rgb(249,146,51)" rx="2" ry="2" /> +<text x="1141.85" y="11215.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (3 samples, 0.11%)</title><rect x="329.1" y="9877" width="1.3" height="15.0" fill="rgb(220,147,11)" rx="2" ry="2" /> +<text x="332.06" y="9887.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (284 samples, 10.43%)</title><rect x="744.8" y="10693" width="123.1" height="15.0" fill="rgb(254,131,24)" rx="2" ry="2" /> +<text x="747.79" y="10703.5" >Nsfisis\Waddiwa..</text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="438.7" y="9653" width="0.5" height="15.0" fill="rgb(219,112,39)" rx="2" ry="2" /> +<text x="441.74" y="9663.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="777.3" y="10421" width="0.4" height="15.0" fill="rgb(243,62,14)" rx="2" ry="2" /> +<text x="780.30" y="10431.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (4 samples, 0.15%)</title><rect x="732.2" y="10357" width="1.8" height="15.0" fill="rgb(211,118,29)" rx="2" ry="2" /> +<text x="735.22" y="10367.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::activateLabel (1 samples, 0.04%)</title><rect x="751.3" y="10245" width="0.4" height="15.0" fill="rgb(244,4,43)" rx="2" ry="2" /> +<text x="754.29" y="10255.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="271.4" y="9637" width="0.4" height="15.0" fill="rgb(252,22,46)" rx="2" ry="2" /> +<text x="274.40" y="9647.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (1 samples, 0.04%)</title><rect x="739.6" y="10245" width="0.4" height="15.0" fill="rgb(242,99,6)" rx="2" ry="2" /> +<text x="742.59" y="10255.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="494.2" y="10405" width="0.5" height="15.0" fill="rgb(249,128,52)" rx="2" ry="2" /> +<text x="497.22" y="10415.5" ></text> +</g> +<g > +<title><unknown> (1 samples, 0.04%)</title><rect x="1021.8" y="3925" width="0.4" height="15.0" fill="rgb(223,200,1)" rx="2" ry="2" /> +<text x="1024.80" y="3935.5" ></text> +</g> +<g > +<title><unknown> (2 samples, 0.07%)</title><rect x="1021.4" y="10741" width="0.8" height="15.0" fill="rgb(223,120,18)" rx="2" ry="2" /> +<text x="1024.37" y="10751.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="1067.8" y="10437" width="0.4" height="15.0" fill="rgb(254,31,11)" rx="2" ry="2" /> +<text x="1070.75" y="10447.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (4 samples, 0.15%)</title><rect x="437.9" y="9909" width="1.7" height="15.0" fill="rgb(242,132,39)" rx="2" ry="2" /> +<text x="440.87" y="9919.5" ></text> +</g> +<g > +<title><unknown> (1 samples, 0.04%)</title><rect x="1021.8" y="629" width="0.4" height="15.0" fill="rgb(241,76,13)" rx="2" ry="2" /> +<text x="1024.80" y="639.5" ></text> +</g> +<g > +<title><unknown> (1 samples, 0.04%)</title><rect x="1021.8" y="2421" width="0.4" height="15.0" fill="rgb(210,67,39)" rx="2" ry="2" /> +<text x="1024.80" y="2431.5" ></text> +</g> +<g > +<title><unknown> (2 samples, 0.07%)</title><rect x="1021.4" y="10805" width="0.8" height="15.0" fill="rgb(245,136,16)" rx="2" ry="2" /> +<text x="1024.37" y="10815.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="868.3" y="10837" width="0.5" height="15.0" fill="rgb(227,38,29)" rx="2" ry="2" /> +<text x="871.34" y="10847.5" ></text> +</g> +<g > +<title><unknown> (2 samples, 0.07%)</title><rect x="1021.4" y="8133" width="0.8" height="15.0" fill="rgb(250,121,43)" rx="2" ry="2" /> +<text x="1024.37" y="8143.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (5 samples, 0.18%)</title><rect x="1066.0" y="10885" width="2.2" height="15.0" fill="rgb(247,174,20)" rx="2" ry="2" /> +<text x="1069.02" y="10895.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="491.6" y="10325" width="0.5" height="15.0" fill="rgb(236,88,48)" rx="2" ry="2" /> +<text x="494.62" y="10335.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="438.7" y="9637" width="0.5" height="15.0" fill="rgb(248,10,45)" rx="2" ry="2" /> +<text x="441.74" y="9647.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="733.5" y="9829" width="0.5" height="15.0" fill="rgb(239,130,45)" rx="2" ry="2" /> +<text x="736.52" y="9839.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (2 samples, 0.07%)</title><rect x="469.9" y="9989" width="0.9" height="15.0" fill="rgb(248,40,51)" rx="2" ry="2" /> +<text x="472.95" y="9999.5" ></text> +</g> +<g > +<title><unknown> (2 samples, 0.07%)</title><rect x="1021.4" y="7301" width="0.8" height="15.0" fill="rgb(244,77,47)" rx="2" ry="2" /> +<text x="1024.37" y="7311.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="867.0" y="10229" width="0.5" height="15.0" fill="rgb(221,117,16)" rx="2" ry="2" /> +<text x="870.04" y="10239.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (1 samples, 0.04%)</title><rect x="443.1" y="8581" width="0.4" height="15.0" fill="rgb(213,160,45)" rx="2" ry="2" /> +<text x="446.07" y="8591.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="453.5" y="9749" width="0.4" height="15.0" fill="rgb(226,44,31)" rx="2" ry="2" /> +<text x="456.48" y="9759.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (1 samples, 0.04%)</title><rect x="446.1" y="9669" width="0.4" height="15.0" fill="rgb(247,151,40)" rx="2" ry="2" /> +<text x="449.11" y="9679.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="744.4" y="10117" width="0.4" height="15.0" fill="rgb(249,43,53)" rx="2" ry="2" /> +<text x="747.36" y="10127.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="453.5" y="9205" width="0.4" height="15.0" fill="rgb(216,194,46)" rx="2" ry="2" /> +<text x="456.48" y="9215.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Stack::popRef (1 samples, 0.04%)</title><rect x="169.5" y="11173" width="0.5" height="15.0" fill="rgb(221,187,37)" rx="2" ry="2" /> +<text x="172.53" y="11183.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (5 samples, 0.18%)</title><rect x="268.4" y="9653" width="2.1" height="15.0" fill="rgb(217,148,52)" rx="2" ry="2" /> +<text x="271.37" y="9663.5" ></text> +</g> +<g > +<title><unknown> (2 samples, 0.07%)</title><rect x="1021.4" y="7077" width="0.8" height="15.0" fill="rgb(244,43,25)" rx="2" ry="2" /> +<text x="1024.37" y="7087.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (2 samples, 0.07%)</title><rect x="1168.8" y="11173" width="0.8" height="15.0" fill="rgb(225,117,14)" rx="2" ry="2" /> +<text x="1171.76" y="11183.5" ></text> +</g> +<g > +<title><unknown> (1 samples, 0.04%)</title><rect x="1021.8" y="1029" width="0.4" height="15.0" fill="rgb(250,80,3)" rx="2" ry="2" /> +<text x="1024.80" y="1039.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (1 samples, 0.04%)</title><rect x="484.3" y="9717" width="0.4" height="15.0" fill="rgb(253,165,26)" rx="2" ry="2" /> +<text x="487.25" y="9727.5" ></text> +</g> +<g > +<title>assert (3 samples, 0.11%)</title><rect x="1116.7" y="11221" width="1.3" height="15.0" fill="rgb(234,226,37)" rx="2" ry="2" /> +<text x="1119.74" y="11231.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="733.5" y="9749" width="0.5" height="15.0" fill="rgb(211,159,30)" rx="2" ry="2" /> +<text x="736.52" y="9759.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="870.1" y="7973" width="0.4" height="15.0" fill="rgb(246,150,25)" rx="2" ry="2" /> +<text x="873.07" y="7983.5" ></text> +</g> +<g > +<title><unknown> (2 samples, 0.07%)</title><rect x="1175.3" y="11237" width="0.8" height="15.0" fill="rgb(236,208,34)" rx="2" ry="2" /> +<text x="1178.26" y="11247.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (2 samples, 0.07%)</title><rect x="316.5" y="9461" width="0.9" height="15.0" fill="rgb(218,125,30)" rx="2" ry="2" /> +<text x="319.49" y="9471.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (57 samples, 2.09%)</title><rect x="503.8" y="10405" width="24.7" height="15.0" fill="rgb(211,76,18)" rx="2" ry="2" /> +<text x="506.76" y="10415.5" >N..</text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (3 samples, 0.11%)</title><rect x="722.2" y="9781" width="1.3" height="15.0" fill="rgb(237,158,29)" rx="2" ry="2" /> +<text x="725.25" y="9791.5" ></text> +</g> +<g > +<title><unknown> (1 samples, 0.04%)</title><rect x="1021.8" y="4309" width="0.4" height="15.0" fill="rgb(242,124,5)" rx="2" ry="2" /> +<text x="1024.80" y="4319.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Stack::pushValue (2 samples, 0.07%)</title><rect x="731.4" y="10037" width="0.8" height="15.0" fill="rgb(231,228,33)" rx="2" ry="2" /> +<text x="734.35" y="10047.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (350 samples, 12.86%)</title><rect x="23.9" y="11189" width="151.7" height="15.0" fill="rgb(235,93,27)" rx="2" ry="2" /> +<text x="26.87" y="11199.5" >Nsfisis\Waddiwasi\E..</text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (17 samples, 0.62%)</title><rect x="351.6" y="9589" width="7.4" height="15.0" fill="rgb(238,185,16)" rx="2" ry="2" /> +<text x="354.60" y="9599.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="733.5" y="8293" width="0.5" height="15.0" fill="rgb(238,104,3)" rx="2" ry="2" /> +<text x="736.52" y="8303.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (10 samples, 0.37%)</title><rect x="264.0" y="9541" width="4.4" height="15.0" fill="rgb(213,186,35)" rx="2" ry="2" /> +<text x="267.03" y="9551.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="866.6" y="10437" width="0.4" height="15.0" fill="rgb(227,86,14)" rx="2" ry="2" /> +<text x="869.61" y="10447.5" ></text> +</g> +<g > +<title><unknown> (1 samples, 0.04%)</title><rect x="1021.8" y="2693" width="0.4" height="15.0" fill="rgb(236,173,47)" rx="2" ry="2" /> +<text x="1024.80" y="2703.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (3 samples, 0.11%)</title><rect x="372.4" y="9685" width="1.3" height="15.0" fill="rgb(230,197,52)" rx="2" ry="2" /> +<text x="375.41" y="9695.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (2 samples, 0.07%)</title><rect x="325.2" y="9541" width="0.8" height="15.0" fill="rgb(230,152,15)" rx="2" ry="2" /> +<text x="328.16" y="9551.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (3 samples, 0.11%)</title><rect x="241.5" y="10709" width="1.3" height="15.0" fill="rgb(236,77,38)" rx="2" ry="2" /> +<text x="244.49" y="10719.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (2 samples, 0.07%)</title><rect x="256.7" y="9717" width="0.8" height="15.0" fill="rgb(254,216,29)" rx="2" ry="2" /> +<text x="259.66" y="9727.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (4 samples, 0.15%)</title><rect x="391.5" y="9605" width="1.7" height="15.0" fill="rgb(233,40,9)" rx="2" ry="2" /> +<text x="394.48" y="9615.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (3 samples, 0.11%)</title><rect x="408.4" y="9637" width="1.3" height="15.0" fill="rgb(253,120,5)" rx="2" ry="2" /> +<text x="411.39" y="9647.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (4 samples, 0.15%)</title><rect x="391.5" y="9573" width="1.7" height="15.0" fill="rgb(215,57,32)" rx="2" ry="2" /> +<text x="394.48" y="9583.5" ></text> +</g> +<g > +<title><unknown> (1 samples, 0.04%)</title><rect x="1021.8" y="2901" width="0.4" height="15.0" fill="rgb(210,62,14)" rx="2" ry="2" /> +<text x="1024.80" y="2911.5" ></text> +</g> +<g > +<title><unknown> (1 samples, 0.04%)</title><rect x="304.3" y="9365" width="0.5" height="15.0" fill="rgb(252,80,18)" rx="2" ry="2" /> +<text x="307.35" y="9375.5" ></text> +</g> +<g > +<title><unknown> (1 samples, 0.04%)</title><rect x="1021.8" y="3413" width="0.4" height="15.0" fill="rgb(215,102,13)" rx="2" ry="2" /> +<text x="1024.80" y="3423.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (1 samples, 0.04%)</title><rect x="470.8" y="10085" width="0.4" height="15.0" fill="rgb(252,44,2)" rx="2" ry="2" /> +<text x="473.82" y="10095.5" ></text> +</g> +<g > +<title><unknown> (25 samples, 0.92%)</title><rect x="202.5" y="11173" width="10.8" height="15.0" fill="rgb(236,200,53)" rx="2" ry="2" /> +<text x="205.48" y="11183.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="307.8" y="9317" width="0.5" height="15.0" fill="rgb(250,157,23)" rx="2" ry="2" /> +<text x="310.82" y="9327.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doStoreI32 (10 samples, 0.37%)</title><rect x="213.3" y="11173" width="4.3" height="15.0" fill="rgb(222,150,51)" rx="2" ry="2" /> +<text x="216.31" y="11183.5" ></text> +</g> +<g > +<title><unknown> (2 samples, 0.07%)</title><rect x="1021.4" y="10677" width="0.8" height="15.0" fill="rgb(207,82,35)" rx="2" ry="2" /> +<text x="1024.37" y="10687.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Stack::pop (1 samples, 0.04%)</title><rect x="1114.6" y="11221" width="0.4" height="15.0" fill="rgb(238,179,51)" rx="2" ry="2" /> +<text x="1117.57" y="11231.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="331.2" y="9605" width="0.5" height="15.0" fill="rgb(245,45,53)" rx="2" ry="2" /> +<text x="334.23" y="9615.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="870.1" y="8197" width="0.4" height="15.0" fill="rgb(253,84,8)" rx="2" ry="2" /> +<text x="873.07" y="8207.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (4 samples, 0.15%)</title><rect x="869.2" y="10261" width="1.7" height="15.0" fill="rgb(231,20,42)" rx="2" ry="2" /> +<text x="872.21" y="10271.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (2 samples, 0.07%)</title><rect x="542.8" y="10213" width="0.8" height="15.0" fill="rgb(241,99,49)" rx="2" ry="2" /> +<text x="545.78" y="10223.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (2 samples, 0.07%)</title><rect x="307.0" y="9269" width="0.8" height="15.0" fill="rgb(251,48,18)" rx="2" ry="2" /> +<text x="309.95" y="9279.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (1 samples, 0.04%)</title><rect x="512.9" y="10149" width="0.4" height="15.0" fill="rgb(248,1,18)" rx="2" ry="2" /> +<text x="515.87" y="10159.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (289 samples, 10.62%)</title><rect x="742.6" y="10789" width="125.3" height="15.0" fill="rgb(211,219,20)" rx="2" ry="2" /> +<text x="745.62" y="10799.5" >Nsfisis\Waddiwa..</text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="1067.8" y="10469" width="0.4" height="15.0" fill="rgb(246,32,12)" rx="2" ry="2" /> +<text x="1070.75" y="10479.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="668.1" y="9797" width="0.4" height="15.0" fill="rgb(209,99,35)" rx="2" ry="2" /> +<text x="671.06" y="9807.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (1 samples, 0.04%)</title><rect x="470.4" y="9877" width="0.4" height="15.0" fill="rgb(208,61,11)" rx="2" ry="2" /> +<text x="473.38" y="9887.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Stack::popValue (1 samples, 0.04%)</title><rect x="483.0" y="9877" width="0.4" height="15.0" fill="rgb(205,38,7)" rx="2" ry="2" /> +<text x="485.95" y="9887.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (9 samples, 0.33%)</title><rect x="441.8" y="9621" width="3.9" height="15.0" fill="rgb(234,139,42)" rx="2" ry="2" /> +<text x="444.77" y="9631.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\ControlFlowResult::Br (1 samples, 0.04%)</title><rect x="398.4" y="9269" width="0.5" height="15.0" fill="rgb(224,147,18)" rx="2" ry="2" /> +<text x="401.42" y="9279.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Val::NumI64 (1 samples, 0.04%)</title><rect x="651.6" y="10501" width="0.4" height="15.0" fill="rgb(208,57,5)" rx="2" ry="2" /> +<text x="654.59" y="10511.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="733.5" y="10005" width="0.5" height="15.0" fill="rgb(227,119,53)" rx="2" ry="2" /> +<text x="736.52" y="10015.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="483.8" y="9669" width="0.5" height="15.0" fill="rgb(219,134,41)" rx="2" ry="2" /> +<text x="486.82" y="9679.5" ></text> +</g> +<g > +<title><unknown> (1 samples, 0.04%)</title><rect x="1021.8" y="3525" width="0.4" height="15.0" fill="rgb(247,193,11)" rx="2" ry="2" /> +<text x="1024.80" y="3535.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doStoreI32 (2 samples, 0.07%)</title><rect x="1156.6" y="11237" width="0.9" height="15.0" fill="rgb(240,229,8)" rx="2" ry="2" /> +<text x="1159.62" y="11247.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (4 samples, 0.15%)</title><rect x="811.6" y="10293" width="1.7" height="15.0" fill="rgb(254,145,50)" rx="2" ry="2" /> +<text x="814.55" y="10303.5" ></text> +</g> +<g > +<title><unknown> (1 samples, 0.04%)</title><rect x="1021.8" y="5157" width="0.4" height="15.0" fill="rgb(244,119,26)" rx="2" ry="2" /> +<text x="1024.80" y="5167.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (1 samples, 0.04%)</title><rect x="319.1" y="9573" width="0.4" height="15.0" fill="rgb(242,147,4)" rx="2" ry="2" /> +<text x="322.09" y="9583.5" ></text> +</g> +<g > +<title><unknown> (3 samples, 0.11%)</title><rect x="1020.9" y="11157" width="1.3" height="15.0" fill="rgb(221,216,26)" rx="2" ry="2" /> +<text x="1023.93" y="11167.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (1 samples, 0.04%)</title><rect x="866.2" y="10341" width="0.4" height="15.0" fill="rgb(216,86,20)" rx="2" ry="2" /> +<text x="869.17" y="10351.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="475.6" y="9701" width="0.4" height="15.0" fill="rgb(220,22,18)" rx="2" ry="2" /> +<text x="478.58" y="9711.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="870.1" y="9525" width="0.4" height="15.0" fill="rgb(208,1,25)" rx="2" ry="2" /> +<text x="873.07" y="9535.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="870.5" y="9909" width="0.4" height="15.0" fill="rgb(217,5,53)" rx="2" ry="2" /> +<text x="873.51" y="9919.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="469.1" y="9765" width="0.4" height="15.0" fill="rgb(213,172,48)" rx="2" ry="2" /> +<text x="472.08" y="9775.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (4 samples, 0.15%)</title><rect x="869.2" y="10229" width="1.7" height="15.0" fill="rgb(233,133,28)" rx="2" ry="2" /> +<text x="872.21" y="10239.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="740.9" y="10677" width="0.4" height="15.0" fill="rgb(232,38,12)" rx="2" ry="2" /> +<text x="743.89" y="10687.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="1115.9" y="10981" width="0.4" height="15.0" fill="rgb(244,23,52)" rx="2" ry="2" /> +<text x="1118.87" y="10991.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (1 samples, 0.04%)</title><rect x="489.0" y="9989" width="0.5" height="15.0" fill="rgb(230,181,15)" rx="2" ry="2" /> +<text x="492.02" y="9999.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="733.5" y="8197" width="0.5" height="15.0" fill="rgb(218,95,2)" rx="2" ry="2" /> +<text x="736.52" y="8207.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\ControlFlowResult::Br (1 samples, 0.04%)</title><rect x="265.8" y="9493" width="0.4" height="15.0" fill="rgb(243,36,33)" rx="2" ry="2" /> +<text x="268.77" y="9503.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="733.5" y="8597" width="0.5" height="15.0" fill="rgb(251,138,31)" rx="2" ry="2" /> +<text x="736.52" y="8607.5" ></text> +</g> +<g > +<title><unknown> (1 samples, 0.04%)</title><rect x="1021.8" y="2053" width="0.4" height="15.0" fill="rgb(228,123,8)" rx="2" ry="2" /> +<text x="1024.80" y="2063.5" ></text> +</g> +<g > +<title>assert (1 samples, 0.04%)</title><rect x="238.0" y="11157" width="0.5" height="15.0" fill="rgb(218,165,16)" rx="2" ry="2" /> +<text x="241.02" y="11167.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (3 samples, 0.11%)</title><rect x="493.8" y="10437" width="1.3" height="15.0" fill="rgb(208,204,21)" rx="2" ry="2" /> +<text x="496.79" y="10447.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (241 samples, 8.85%)</title><rect x="547.1" y="10325" width="104.5" height="15.0" fill="rgb(212,177,27)" rx="2" ry="2" /> +<text x="550.11" y="10335.5" >Nsfisis\Wadd..</text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="1036.1" y="10901" width="0.4" height="15.0" fill="rgb(238,98,1)" rx="2" ry="2" /> +<text x="1039.11" y="10911.5" ></text> +</g> +<g > +<title><unknown> (1 samples, 0.04%)</title><rect x="1021.8" y="3669" width="0.4" height="15.0" fill="rgb(218,17,11)" rx="2" ry="2" /> +<text x="1024.80" y="3679.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (2 samples, 0.07%)</title><rect x="325.2" y="9525" width="0.8" height="15.0" fill="rgb(207,93,11)" rx="2" ry="2" /> +<text x="328.16" y="9535.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="473.4" y="9829" width="0.5" height="15.0" fill="rgb(217,149,0)" rx="2" ry="2" /> +<text x="476.42" y="9839.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="441.3" y="9461" width="0.5" height="15.0" fill="rgb(224,63,48)" rx="2" ry="2" /> +<text x="444.34" y="9471.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="870.1" y="8965" width="0.4" height="15.0" fill="rgb(247,147,33)" rx="2" ry="2" /> +<text x="873.07" y="8975.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (5 samples, 0.18%)</title><rect x="534.5" y="10069" width="2.2" height="15.0" fill="rgb(249,122,31)" rx="2" ry="2" /> +<text x="537.54" y="10079.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (15 samples, 0.55%)</title><rect x="431.4" y="9877" width="6.5" height="15.0" fill="rgb(222,213,9)" rx="2" ry="2" /> +<text x="434.37" y="9887.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (561 samples, 20.61%)</title><rect x="246.7" y="10197" width="243.2" height="15.0" fill="rgb(231,227,38)" rx="2" ry="2" /> +<text x="249.69" y="10207.5" >Nsfisis\Waddiwasi\Execution\Runt..</text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (3 samples, 0.11%)</title><rect x="1168.3" y="11205" width="1.3" height="15.0" fill="rgb(223,207,48)" rx="2" ry="2" /> +<text x="1171.32" y="11215.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="870.1" y="9893" width="0.4" height="15.0" fill="rgb(229,199,0)" rx="2" ry="2" /> +<text x="873.07" y="9903.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (241 samples, 8.85%)</title><rect x="547.1" y="10341" width="104.5" height="15.0" fill="rgb(214,195,51)" rx="2" ry="2" /> +<text x="550.11" y="10351.5" >Nsfisis\Wadd..</text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\ControlFlowResult::Br (1 samples, 0.04%)</title><rect x="1137.5" y="11221" width="0.5" height="15.0" fill="rgb(254,118,0)" rx="2" ry="2" /> +<text x="1140.55" y="11231.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (6 samples, 0.22%)</title><rect x="479.5" y="9861" width="2.6" height="15.0" fill="rgb(213,208,23)" rx="2" ry="2" /> +<text x="482.49" y="9871.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="1036.1" y="10917" width="0.4" height="15.0" fill="rgb(252,70,19)" rx="2" ry="2" /> +<text x="1039.11" y="10927.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (1 samples, 0.04%)</title><rect x="870.1" y="8357" width="0.4" height="15.0" fill="rgb(243,107,30)" rx="2" ry="2" /> +<text x="873.07" y="8367.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="449.6" y="9957" width="0.4" height="15.0" fill="rgb(211,143,48)" rx="2" ry="2" /> +<text x="452.57" y="9967.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1,144 samples, 42.03%)</title><rect x="242.8" y="10885" width="495.9" height="15.0" fill="rgb(217,97,40)" rx="2" ry="2" /> +<text x="245.79" y="10895.5" >Nsfisis\Waddiwasi\Execution\Runtime::execInstr</text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (5 samples, 0.18%)</title><rect x="868.8" y="11061" width="2.1" height="15.0" fill="rgb(249,8,40)" rx="2" ry="2" /> +<text x="871.77" y="11071.5" ></text> +</g> +<g > +<title><unknown> (1 samples, 0.04%)</title><rect x="1021.8" y="4405" width="0.4" height="15.0" fill="rgb(244,221,53)" rx="2" ry="2" /> +<text x="1024.80" y="4415.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (183 samples, 6.72%)</title><rect x="652.9" y="10357" width="79.3" height="15.0" fill="rgb(247,211,50)" rx="2" ry="2" /> +<text x="655.89" y="10367.5" >Nsfisis\W..</text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="543.2" y="10133" width="0.4" height="15.0" fill="rgb(244,142,43)" rx="2" ry="2" /> +<text x="546.21" y="10143.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="870.1" y="8469" width="0.4" height="15.0" fill="rgb(253,200,42)" rx="2" ry="2" /> +<text x="873.07" y="8479.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (1 samples, 0.04%)</title><rect x="1035.7" y="11093" width="0.4" height="15.0" fill="rgb(250,178,25)" rx="2" ry="2" /> +<text x="1038.67" y="11103.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="738.3" y="10725" width="0.4" height="15.0" fill="rgb(222,82,10)" rx="2" ry="2" /> +<text x="741.29" y="10735.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (3 samples, 0.11%)</title><rect x="289.6" y="9605" width="1.3" height="15.0" fill="rgb(221,213,16)" rx="2" ry="2" /> +<text x="292.61" y="9615.5" ></text> +</g> +<g > +<title><unknown> (1 samples, 0.04%)</title><rect x="1021.8" y="1157" width="0.4" height="15.0" fill="rgb(218,170,3)" rx="2" ry="2" /> +<text x="1024.80" y="1167.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="739.6" y="10229" width="0.4" height="15.0" fill="rgb(237,166,42)" rx="2" ry="2" /> +<text x="742.59" y="10239.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="340.8" y="9925" width="0.4" height="15.0" fill="rgb(221,125,8)" rx="2" ry="2" /> +<text x="343.76" y="9935.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (8 samples, 0.29%)</title><rect x="773.0" y="10101" width="3.4" height="15.0" fill="rgb(250,190,28)" rx="2" ry="2" /> +<text x="775.97" y="10111.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1,144 samples, 42.03%)</title><rect x="242.8" y="10869" width="495.9" height="15.0" fill="rgb(223,121,26)" rx="2" ry="2" /> +<text x="245.79" y="10879.5" >Nsfisis\Waddiwasi\Execution\Runtime::execInstrs</text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="740.0" y="10245" width="0.5" height="15.0" fill="rgb(243,96,53)" rx="2" ry="2" /> +<text x="743.02" y="10255.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\StackEntries\Value::__construct (1 samples, 0.04%)</title><rect x="1042.6" y="11157" width="0.4" height="15.0" fill="rgb(220,214,14)" rx="2" ry="2" /> +<text x="1045.61" y="11167.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="782.1" y="10437" width="0.4" height="15.0" fill="rgb(238,55,36)" rx="2" ry="2" /> +<text x="785.07" y="10447.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="412.3" y="9029" width="0.4" height="15.0" fill="rgb(237,148,15)" rx="2" ry="2" /> +<text x="415.29" y="9039.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (29 samples, 1.07%)</title><rect x="490.8" y="10677" width="12.5" height="15.0" fill="rgb(226,140,34)" rx="2" ry="2" /> +<text x="493.76" y="10687.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="427.5" y="9413" width="0.4" height="15.0" fill="rgb(229,23,45)" rx="2" ry="2" /> +<text x="430.47" y="9423.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (2 samples, 0.07%)</title><rect x="780.8" y="10325" width="0.8" height="15.0" fill="rgb(230,168,14)" rx="2" ry="2" /> +<text x="783.77" y="10335.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (2 samples, 0.07%)</title><rect x="440.9" y="9605" width="0.9" height="15.0" fill="rgb(233,93,46)" rx="2" ry="2" /> +<text x="443.90" y="9615.5" ></text> +</g> +<g > +<title><unknown> (1 samples, 0.04%)</title><rect x="1021.8" y="1525" width="0.4" height="15.0" fill="rgb(244,208,5)" rx="2" ry="2" /> +<text x="1024.80" y="1535.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (29 samples, 1.07%)</title><rect x="490.8" y="10629" width="12.5" height="15.0" fill="rgb(236,81,7)" rx="2" ry="2" /> +<text x="493.76" y="10639.5" ></text> +</g> +<g > +<title><unknown> (2 samples, 0.07%)</title><rect x="1021.4" y="9541" width="0.8" height="15.0" fill="rgb(246,121,19)" rx="2" ry="2" /> +<text x="1024.37" y="9551.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (4 samples, 0.15%)</title><rect x="742.6" y="10469" width="1.8" height="15.0" fill="rgb(221,59,24)" rx="2" ry="2" /> +<text x="745.62" y="10479.5" ></text> +</g> +<g > +<title><unknown> (1 samples, 0.04%)</title><rect x="1021.8" y="4949" width="0.4" height="15.0" fill="rgb(230,206,22)" rx="2" ry="2" /> +<text x="1024.80" y="4959.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="751.7" y="10181" width="0.5" height="15.0" fill="rgb(217,92,30)" rx="2" ry="2" /> +<text x="754.73" y="10191.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (16 samples, 0.59%)</title><rect x="764.3" y="9973" width="6.9" height="15.0" fill="rgb(239,66,20)" rx="2" ry="2" /> +<text x="767.30" y="9983.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="439.2" y="9765" width="0.4" height="15.0" fill="rgb(230,182,14)" rx="2" ry="2" /> +<text x="442.17" y="9775.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (3 samples, 0.11%)</title><rect x="735.3" y="10485" width="1.3" height="15.0" fill="rgb(236,40,48)" rx="2" ry="2" /> +<text x="738.25" y="10495.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (2 samples, 0.07%)</title><rect x="498.6" y="10053" width="0.8" height="15.0" fill="rgb(241,75,42)" rx="2" ry="2" /> +<text x="501.56" y="10063.5" ></text> +</g> +<g > +<title><unknown> (1 samples, 0.04%)</title><rect x="712.7" y="9861" width="0.4" height="15.0" fill="rgb(225,51,13)" rx="2" ry="2" /> +<text x="715.71" y="9871.5" ></text> +</g> +<g > +<title><unknown> (2 samples, 0.07%)</title><rect x="1021.4" y="7125" width="0.8" height="15.0" fill="rgb(253,0,53)" rx="2" ry="2" /> +<text x="1024.37" y="7135.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (4 samples, 0.15%)</title><rect x="811.6" y="10277" width="1.7" height="15.0" fill="rgb(213,21,34)" rx="2" ry="2" /> +<text x="814.55" y="10287.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="733.5" y="9205" width="0.5" height="15.0" fill="rgb(236,154,32)" rx="2" ry="2" /> +<text x="736.52" y="9215.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrsForInit (518 samples, 19.03%)</title><rect x="13.9" y="11221" width="224.6" height="15.0" fill="rgb(235,46,3)" rx="2" ry="2" /> +<text x="16.90" y="11231.5" >Nsfisis\Waddiwasi\Execution\R..</text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (7 samples, 0.26%)</title><rect x="791.2" y="10357" width="3.0" height="15.0" fill="rgb(246,130,24)" rx="2" ry="2" /> +<text x="794.18" y="10367.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (2 samples, 0.07%)</title><rect x="372.8" y="9589" width="0.9" height="15.0" fill="rgb(217,162,4)" rx="2" ry="2" /> +<text x="375.84" y="9599.5" ></text> +</g> +<g > +<title><unknown> (2 samples, 0.07%)</title><rect x="699.7" y="9957" width="0.9" height="15.0" fill="rgb(220,196,27)" rx="2" ry="2" /> +<text x="702.71" y="9967.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (183 samples, 6.72%)</title><rect x="652.9" y="10181" width="79.3" height="15.0" fill="rgb(206,85,18)" rx="2" ry="2" /> +<text x="655.89" y="10191.5" >Nsfisis\W..</text> +</g> +<g > +<title><unknown> (1 samples, 0.04%)</title><rect x="1021.8" y="5445" width="0.4" height="15.0" fill="rgb(241,180,32)" rx="2" ry="2" /> +<text x="1024.80" y="5455.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="497.3" y="10117" width="0.4" height="15.0" fill="rgb(223,132,23)" rx="2" ry="2" /> +<text x="500.26" y="10127.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (2 samples, 0.07%)</title><rect x="726.6" y="9845" width="0.9" height="15.0" fill="rgb(228,124,19)" rx="2" ry="2" /> +<text x="729.58" y="9855.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (5 samples, 0.18%)</title><rect x="868.8" y="10549" width="2.1" height="15.0" fill="rgb(210,150,27)" rx="2" ry="2" /> +<text x="871.77" y="10559.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="1071.2" y="11093" width="0.5" height="15.0" fill="rgb(215,14,20)" rx="2" ry="2" /> +<text x="1074.22" y="11103.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (1 samples, 0.04%)</title><rect x="412.7" y="9301" width="0.5" height="15.0" fill="rgb(231,82,28)" rx="2" ry="2" /> +<text x="415.73" y="9311.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="739.6" y="10325" width="0.4" height="15.0" fill="rgb(227,162,50)" rx="2" ry="2" /> +<text x="742.59" y="10335.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (2 samples, 0.07%)</title><rect x="737.0" y="10405" width="0.9" height="15.0" fill="rgb(243,175,42)" rx="2" ry="2" /> +<text x="739.99" y="10415.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="870.1" y="9749" width="0.4" height="15.0" fill="rgb(219,15,24)" rx="2" ry="2" /> +<text x="873.07" y="9759.5" ></text> +</g> +<g > +<title><unknown> (2 samples, 0.07%)</title><rect x="1021.4" y="8869" width="0.8" height="15.0" fill="rgb(244,158,50)" rx="2" ry="2" /> +<text x="1024.37" y="8879.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (4 samples, 0.15%)</title><rect x="238.9" y="10949" width="1.7" height="15.0" fill="rgb(229,62,21)" rx="2" ry="2" /> +<text x="241.89" y="10959.5" ></text> +</g> +<g > +<title><unknown> (1 samples, 0.04%)</title><rect x="288.7" y="9653" width="0.5" height="15.0" fill="rgb(208,215,7)" rx="2" ry="2" /> +<text x="291.74" y="9663.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="740.5" y="10357" width="0.4" height="15.0" fill="rgb(252,144,26)" rx="2" ry="2" /> +<text x="743.46" y="10367.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="261.4" y="9605" width="0.5" height="15.0" fill="rgb(217,12,11)" rx="2" ry="2" /> +<text x="264.43" y="9615.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (15 samples, 0.55%)</title><rect x="421.0" y="9573" width="6.5" height="15.0" fill="rgb(245,6,52)" rx="2" ry="2" /> +<text x="423.96" y="9583.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="744.4" y="10437" width="0.4" height="15.0" fill="rgb(217,157,34)" rx="2" ry="2" /> +<text x="747.36" y="10447.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="867.9" y="10645" width="0.4" height="15.0" fill="rgb(242,39,33)" rx="2" ry="2" /> +<text x="870.91" y="10655.5" ></text> +</g> +<g > +<title><unknown> (1 samples, 0.04%)</title><rect x="1021.8" y="3877" width="0.4" height="15.0" fill="rgb(254,194,29)" rx="2" ry="2" /> +<text x="1024.80" y="3887.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (9 samples, 0.33%)</title><rect x="238.9" y="11029" width="3.9" height="15.0" fill="rgb(238,106,18)" rx="2" ry="2" /> +<text x="241.89" y="11039.5" ></text> +</g> +<g > +<title><unknown> (1 samples, 0.04%)</title><rect x="1021.8" y="5333" width="0.4" height="15.0" fill="rgb(206,153,28)" rx="2" ry="2" /> +<text x="1024.80" y="5343.5" ></text> +</g> +<g > +<title><unknown> (1 samples, 0.04%)</title><rect x="696.7" y="10037" width="0.4" height="15.0" fill="rgb(233,24,6)" rx="2" ry="2" /> +<text x="699.67" y="10047.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (2 samples, 0.07%)</title><rect x="731.4" y="9973" width="0.8" height="15.0" fill="rgb(240,89,17)" rx="2" ry="2" /> +<text x="734.35" y="9983.5" ></text> +</g> +<g > +<title><unknown> (2 samples, 0.07%)</title><rect x="632.9" y="9877" width="0.9" height="15.0" fill="rgb(210,24,46)" rx="2" ry="2" /> +<text x="635.95" y="9887.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="867.9" y="10517" width="0.4" height="15.0" fill="rgb(251,49,32)" rx="2" ry="2" /> +<text x="870.91" y="10527.5" ></text> +</g> +<g > +<title><unknown> (2 samples, 0.07%)</title><rect x="1021.4" y="10485" width="0.8" height="15.0" fill="rgb(224,55,13)" rx="2" ry="2" /> +<text x="1024.37" y="10495.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (19 samples, 0.70%)</title><rect x="683.2" y="10053" width="8.3" height="15.0" fill="rgb(237,115,38)" rx="2" ry="2" /> +<text x="686.23" y="10063.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="489.0" y="9861" width="0.5" height="15.0" fill="rgb(217,169,9)" rx="2" ry="2" /> +<text x="492.02" y="9871.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (1 samples, 0.04%)</title><rect x="867.9" y="10293" width="0.4" height="15.0" fill="rgb(251,48,54)" rx="2" ry="2" /> +<text x="870.91" y="10303.5" ></text> +</g> +<g > +<title><unknown> (1 samples, 0.04%)</title><rect x="1021.8" y="37" width="0.4" height="15.0" fill="rgb(208,147,2)" rx="2" ry="2" /> +<text x="1024.80" y="47.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (43 samples, 1.58%)</title><rect x="471.2" y="10165" width="18.7" height="15.0" fill="rgb(241,188,9)" rx="2" ry="2" /> +<text x="474.25" y="10175.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="318.7" y="9669" width="0.4" height="15.0" fill="rgb(229,100,6)" rx="2" ry="2" /> +<text x="321.66" y="9679.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (183 samples, 6.72%)</title><rect x="652.9" y="10261" width="79.3" height="15.0" fill="rgb(219,170,38)" rx="2" ry="2" /> +<text x="655.89" y="10271.5" >Nsfisis\W..</text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (1 samples, 0.04%)</title><rect x="291.3" y="9701" width="0.5" height="15.0" fill="rgb(254,179,6)" rx="2" ry="2" /> +<text x="294.34" y="9711.5" ></text> +</g> +<g > +<title><unknown> (1 samples, 0.04%)</title><rect x="1021.8" y="4101" width="0.4" height="15.0" fill="rgb(253,165,49)" rx="2" ry="2" /> +<text x="1024.80" y="4111.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (3 samples, 0.11%)</title><rect x="363.7" y="9541" width="1.3" height="15.0" fill="rgb(254,192,40)" rx="2" ry="2" /> +<text x="366.74" y="9551.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="307.8" y="9333" width="0.5" height="15.0" fill="rgb(239,149,47)" rx="2" ry="2" /> +<text x="310.82" y="9343.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (2 samples, 0.07%)</title><rect x="307.0" y="9413" width="0.8" height="15.0" fill="rgb(253,227,0)" rx="2" ry="2" /> +<text x="309.95" y="9423.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (1 samples, 0.04%)</title><rect x="318.2" y="9493" width="0.5" height="15.0" fill="rgb(245,182,5)" rx="2" ry="2" /> +<text x="321.22" y="9503.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="468.2" y="9669" width="0.4" height="15.0" fill="rgb(213,88,50)" rx="2" ry="2" /> +<text x="471.21" y="9679.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="739.2" y="10165" width="0.4" height="15.0" fill="rgb(246,157,6)" rx="2" ry="2" /> +<text x="742.16" y="10175.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (183 samples, 6.72%)</title><rect x="652.9" y="10373" width="79.3" height="15.0" fill="rgb(234,72,44)" rx="2" ry="2" /> +<text x="655.89" y="10383.5" >Nsfisis\W..</text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (4 samples, 0.15%)</title><rect x="423.1" y="9349" width="1.8" height="15.0" fill="rgb(216,219,5)" rx="2" ry="2" /> +<text x="426.13" y="9359.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="1151.0" y="11125" width="0.4" height="15.0" fill="rgb(239,96,21)" rx="2" ry="2" /> +<text x="1153.98" y="11135.5" ></text> +</g> +<g > +<title><unknown> (2 samples, 0.07%)</title><rect x="1021.4" y="7509" width="0.8" height="15.0" fill="rgb(227,180,31)" rx="2" ry="2" /> +<text x="1024.37" y="7519.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="740.5" y="10389" width="0.4" height="15.0" fill="rgb(205,140,41)" rx="2" ry="2" /> +<text x="743.46" y="10399.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="238.9" y="10629" width="0.4" height="15.0" fill="rgb(208,113,2)" rx="2" ry="2" /> +<text x="241.89" y="10639.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="867.9" y="10405" width="0.4" height="15.0" fill="rgb(224,44,36)" rx="2" ry="2" /> +<text x="870.91" y="10415.5" ></text> +</g> +<g > +<title><unknown> (2 samples, 0.07%)</title><rect x="1021.4" y="8757" width="0.8" height="15.0" fill="rgb(223,60,38)" rx="2" ry="2" /> +<text x="1024.37" y="8767.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (28 samples, 1.03%)</title><rect x="259.3" y="9781" width="12.1" height="15.0" fill="rgb(209,81,52)" rx="2" ry="2" /> +<text x="262.27" y="9791.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (4 samples, 0.15%)</title><rect x="411.4" y="9381" width="1.8" height="15.0" fill="rgb(237,113,10)" rx="2" ry="2" /> +<text x="414.43" y="9391.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (184 samples, 6.76%)</title><rect x="652.5" y="10501" width="79.7" height="15.0" fill="rgb(243,27,52)" rx="2" ry="2" /> +<text x="655.45" y="10511.5" >Nsfisis\W..</text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="850.1" y="10245" width="0.5" height="15.0" fill="rgb(239,137,17)" rx="2" ry="2" /> +<text x="853.13" y="10255.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (2 samples, 0.07%)</title><rect x="733.1" y="10133" width="0.9" height="15.0" fill="rgb(250,131,18)" rx="2" ry="2" /> +<text x="736.09" y="10143.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (1 samples, 0.04%)</title><rect x="1095.1" y="11157" width="0.4" height="15.0" fill="rgb(207,38,43)" rx="2" ry="2" /> +<text x="1098.06" y="11167.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="359.0" y="9493" width="0.4" height="15.0" fill="rgb(209,199,39)" rx="2" ry="2" /> +<text x="361.97" y="9503.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::deactivateLabel (1 samples, 0.04%)</title><rect x="304.3" y="9253" width="0.5" height="15.0" fill="rgb(252,161,42)" rx="2" ry="2" /> +<text x="307.35" y="9263.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (8 samples, 0.29%)</title><rect x="664.6" y="9973" width="3.5" height="15.0" fill="rgb(234,27,17)" rx="2" ry="2" /> +<text x="667.59" y="9983.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (3 samples, 0.11%)</title><rect x="743.1" y="10101" width="1.3" height="15.0" fill="rgb(223,85,47)" rx="2" ry="2" /> +<text x="746.06" y="10111.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="502.9" y="10245" width="0.4" height="15.0" fill="rgb(215,176,22)" rx="2" ry="2" /> +<text x="505.89" y="10255.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="271.4" y="9797" width="0.4" height="15.0" fill="rgb(241,199,47)" rx="2" ry="2" /> +<text x="274.40" y="9807.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (191 samples, 7.02%)</title><rect x="345.5" y="9909" width="82.8" height="15.0" fill="rgb(214,67,42)" rx="2" ry="2" /> +<text x="348.53" y="9919.5" >Nsfisis\W..</text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="248.0" y="10101" width="0.4" height="15.0" fill="rgb(222,21,0)" rx="2" ry="2" /> +<text x="250.99" y="10111.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (3 samples, 0.11%)</title><rect x="442.2" y="9429" width="1.3" height="15.0" fill="rgb(223,47,7)" rx="2" ry="2" /> +<text x="445.20" y="9439.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (3 samples, 0.11%)</title><rect x="363.7" y="9573" width="1.3" height="15.0" fill="rgb(219,71,9)" rx="2" ry="2" /> +<text x="366.74" y="9583.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (2 samples, 0.07%)</title><rect x="1141.9" y="11125" width="0.8" height="15.0" fill="rgb(247,64,12)" rx="2" ry="2" /> +<text x="1144.88" y="11135.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (1 samples, 0.04%)</title><rect x="470.4" y="9797" width="0.4" height="15.0" fill="rgb(246,16,49)" rx="2" ry="2" /> +<text x="473.38" y="9807.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="409.3" y="9205" width="0.4" height="15.0" fill="rgb(224,102,4)" rx="2" ry="2" /> +<text x="412.26" y="9215.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (4 samples, 0.15%)</title><rect x="304.3" y="9413" width="1.8" height="15.0" fill="rgb(212,175,5)" rx="2" ry="2" /> +<text x="307.35" y="9423.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1,144 samples, 42.03%)</title><rect x="242.8" y="10805" width="495.9" height="15.0" fill="rgb(232,216,35)" rx="2" ry="2" /> +<text x="245.79" y="10815.5" >Nsfisis\Waddiwasi\Execution\Runtime::execInstrs</text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="319.1" y="9509" width="0.4" height="15.0" fill="rgb(214,36,50)" rx="2" ry="2" /> +<text x="322.09" y="9519.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (2 samples, 0.07%)</title><rect x="325.2" y="9381" width="0.8" height="15.0" fill="rgb(219,122,35)" rx="2" ry="2" /> +<text x="328.16" y="9391.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="1138.4" y="11221" width="0.4" height="15.0" fill="rgb(254,130,50)" rx="2" ry="2" /> +<text x="1141.41" y="11231.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="307.8" y="9109" width="0.5" height="15.0" fill="rgb(253,23,42)" rx="2" ry="2" /> +<text x="310.82" y="9119.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Stack::popValue (1 samples, 0.04%)</title><rect x="334.7" y="9877" width="0.4" height="15.0" fill="rgb(235,133,42)" rx="2" ry="2" /> +<text x="337.70" y="9887.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (3 samples, 0.11%)</title><rect x="385.0" y="9317" width="1.3" height="15.0" fill="rgb(205,140,52)" rx="2" ry="2" /> +<text x="387.98" y="9327.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (6 samples, 0.22%)</title><rect x="255.4" y="9813" width="2.6" height="15.0" fill="rgb(214,183,20)" rx="2" ry="2" /> +<text x="258.36" y="9823.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\StackEntries\Value::__construct (2 samples, 0.07%)</title><rect x="140.9" y="11141" width="0.9" height="15.0" fill="rgb(206,14,39)" rx="2" ry="2" /> +<text x="143.92" y="11151.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (1 samples, 0.04%)</title><rect x="485.1" y="9861" width="0.5" height="15.0" fill="rgb(211,192,12)" rx="2" ry="2" /> +<text x="488.12" y="9871.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="751.7" y="10213" width="0.5" height="15.0" fill="rgb(254,193,42)" rx="2" ry="2" /> +<text x="754.73" y="10223.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="870.5" y="9829" width="0.4" height="15.0" fill="rgb(246,136,24)" rx="2" ry="2" /> +<text x="873.51" y="9839.5" ></text> +</g> +<g > +<title><unknown> (2 samples, 0.07%)</title><rect x="1021.4" y="6613" width="0.8" height="15.0" fill="rgb(254,18,6)" rx="2" ry="2" /> +<text x="1024.37" y="6623.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="427.5" y="9397" width="0.4" height="15.0" fill="rgb(253,75,33)" rx="2" ry="2" /> +<text x="430.47" y="9407.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (3 samples, 0.11%)</title><rect x="726.6" y="9861" width="1.3" height="15.0" fill="rgb(239,1,30)" rx="2" ry="2" /> +<text x="729.58" y="9871.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="867.9" y="10453" width="0.4" height="15.0" fill="rgb(219,158,39)" rx="2" ry="2" /> +<text x="870.91" y="10463.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (55 samples, 2.02%)</title><rect x="1090.7" y="11189" width="23.9" height="15.0" fill="rgb(250,215,54)" rx="2" ry="2" /> +<text x="1093.73" y="11199.5" >N..</text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="1174.4" y="11173" width="0.4" height="15.0" fill="rgb(238,227,23)" rx="2" ry="2" /> +<text x="1177.39" y="11183.5" ></text> +</g> +<g > +<title><unknown> (2 samples, 0.07%)</title><rect x="1021.4" y="9237" width="0.8" height="15.0" fill="rgb(234,181,7)" rx="2" ry="2" /> +<text x="1024.37" y="9247.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (2 samples, 0.07%)</title><rect x="408.4" y="9349" width="0.9" height="15.0" fill="rgb(253,80,12)" rx="2" ry="2" /> +<text x="411.39" y="9359.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (4 samples, 0.15%)</title><rect x="774.3" y="9941" width="1.7" height="15.0" fill="rgb(239,66,0)" rx="2" ry="2" /> +<text x="777.27" y="9951.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\ControlFlowResult::Br (1 samples, 0.04%)</title><rect x="771.7" y="10021" width="0.4" height="15.0" fill="rgb(218,143,43)" rx="2" ry="2" /> +<text x="774.67" y="10031.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (3 samples, 0.11%)</title><rect x="1111.1" y="10885" width="1.3" height="15.0" fill="rgb(213,208,43)" rx="2" ry="2" /> +<text x="1114.10" y="10895.5" ></text> +</g> +<g > +<title><unknown> (2 samples, 0.07%)</title><rect x="1021.4" y="6725" width="0.8" height="15.0" fill="rgb(221,112,13)" rx="2" ry="2" /> +<text x="1024.37" y="6735.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="351.2" y="9685" width="0.4" height="15.0" fill="rgb(223,158,30)" rx="2" ry="2" /> +<text x="354.17" y="9695.5" ></text> +</g> +<g > +<title><unknown> (1 samples, 0.04%)</title><rect x="1021.8" y="517" width="0.4" height="15.0" fill="rgb(240,60,3)" rx="2" ry="2" /> +<text x="1024.80" y="527.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (2 samples, 0.07%)</title><rect x="269.7" y="9509" width="0.8" height="15.0" fill="rgb(243,132,16)" rx="2" ry="2" /> +<text x="272.67" y="9519.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (24 samples, 0.88%)</title><rect x="453.5" y="9909" width="10.4" height="15.0" fill="rgb(222,47,49)" rx="2" ry="2" /> +<text x="456.48" y="9919.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (27 samples, 0.99%)</title><rect x="387.1" y="9637" width="11.8" height="15.0" fill="rgb(206,60,16)" rx="2" ry="2" /> +<text x="390.15" y="9647.5" ></text> +</g> +<g > +<title><unknown> (1 samples, 0.04%)</title><rect x="503.3" y="10341" width="0.5" height="15.0" fill="rgb(244,180,23)" rx="2" ry="2" /> +<text x="506.33" y="10351.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="261.0" y="9525" width="0.4" height="15.0" fill="rgb(253,39,14)" rx="2" ry="2" /> +<text x="264.00" y="9535.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="733.5" y="8661" width="0.5" height="15.0" fill="rgb(217,190,41)" rx="2" ry="2" /> +<text x="736.52" y="8671.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (2 samples, 0.07%)</title><rect x="277.0" y="9749" width="0.9" height="15.0" fill="rgb(243,37,24)" rx="2" ry="2" /> +<text x="280.04" y="9759.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="811.1" y="10229" width="0.5" height="15.0" fill="rgb(227,94,38)" rx="2" ry="2" /> +<text x="814.12" y="10239.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (15 samples, 0.55%)</title><rect x="431.4" y="9893" width="6.5" height="15.0" fill="rgb(251,214,26)" rx="2" ry="2" /> +<text x="434.37" y="9903.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="238.9" y="10101" width="0.4" height="15.0" fill="rgb(220,172,53)" rx="2" ry="2" /> +<text x="241.89" y="10111.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="744.4" y="10245" width="0.4" height="15.0" fill="rgb(245,76,27)" rx="2" ry="2" /> +<text x="747.36" y="10255.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (4 samples, 0.15%)</title><rect x="869.2" y="10181" width="1.7" height="15.0" fill="rgb(246,226,47)" rx="2" ry="2" /> +<text x="872.21" y="10191.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Stack::pushValue (3 samples, 0.11%)</title><rect x="1115.4" y="11221" width="1.3" height="15.0" fill="rgb(253,217,16)" rx="2" ry="2" /> +<text x="1118.44" y="11231.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (1 samples, 0.04%)</title><rect x="238.9" y="10597" width="0.4" height="15.0" fill="rgb(225,193,12)" rx="2" ry="2" /> +<text x="241.89" y="10607.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (5 samples, 0.18%)</title><rect x="1066.0" y="10869" width="2.2" height="15.0" fill="rgb(205,227,7)" rx="2" ry="2" /> +<text x="1069.02" y="10879.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="502.9" y="10261" width="0.4" height="15.0" fill="rgb(235,167,10)" rx="2" ry="2" /> +<text x="505.89" y="10271.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (5 samples, 0.18%)</title><rect x="466.0" y="9861" width="2.2" height="15.0" fill="rgb(253,92,52)" rx="2" ry="2" /> +<text x="469.05" y="9871.5" ></text> +</g> +<g > +<title><unknown> (2 samples, 0.07%)</title><rect x="1021.4" y="6869" width="0.8" height="15.0" fill="rgb(248,52,15)" rx="2" ry="2" /> +<text x="1024.37" y="6879.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="783.4" y="10405" width="0.4" height="15.0" fill="rgb(248,188,51)" rx="2" ry="2" /> +<text x="786.37" y="10415.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (3 samples, 0.11%)</title><rect x="676.7" y="9925" width="1.3" height="15.0" fill="rgb(237,10,35)" rx="2" ry="2" /> +<text x="679.73" y="9935.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="785.1" y="10309" width="0.4" height="15.0" fill="rgb(243,18,53)" rx="2" ry="2" /> +<text x="788.11" y="10319.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Stack::pushI32 (97 samples, 3.56%)</title><rect x="175.6" y="11189" width="42.0" height="15.0" fill="rgb(246,52,13)" rx="2" ry="2" /> +<text x="178.60" y="11199.5" >Nsf..</text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (2 samples, 0.07%)</title><rect x="325.2" y="9461" width="0.8" height="15.0" fill="rgb(216,29,39)" rx="2" ry="2" /> +<text x="328.16" y="9471.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (1 samples, 0.04%)</title><rect x="359.0" y="9429" width="0.4" height="15.0" fill="rgb(221,17,46)" rx="2" ry="2" /> +<text x="361.97" y="9439.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (4 samples, 0.15%)</title><rect x="732.2" y="10245" width="1.8" height="15.0" fill="rgb(217,180,19)" rx="2" ry="2" /> +<text x="735.22" y="10255.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="1115.9" y="11141" width="0.4" height="15.0" fill="rgb(213,72,18)" rx="2" ry="2" /> +<text x="1118.87" y="11151.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\ControlFlowResult::Br (1 samples, 0.04%)</title><rect x="360.3" y="9653" width="0.4" height="15.0" fill="rgb(207,140,7)" rx="2" ry="2" /> +<text x="363.27" y="9663.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="867.9" y="10325" width="0.4" height="15.0" fill="rgb(231,221,1)" rx="2" ry="2" /> +<text x="870.91" y="10335.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="427.5" y="9493" width="0.4" height="15.0" fill="rgb(226,63,32)" rx="2" ry="2" /> +<text x="430.47" y="9503.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="319.1" y="9605" width="0.4" height="15.0" fill="rgb(223,185,7)" rx="2" ry="2" /> +<text x="322.09" y="9615.5" ></text> +</g> +<g > +<title><unknown> (1 samples, 0.04%)</title><rect x="1021.8" y="1365" width="0.4" height="15.0" fill="rgb(215,157,45)" rx="2" ry="2" /> +<text x="1024.80" y="1375.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="850.6" y="10229" width="0.4" height="15.0" fill="rgb(230,124,12)" rx="2" ry="2" /> +<text x="853.57" y="10239.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (3 samples, 0.11%)</title><rect x="402.8" y="9461" width="1.3" height="15.0" fill="rgb(239,16,54)" rx="2" ry="2" /> +<text x="405.76" y="9471.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (1 samples, 0.04%)</title><rect x="734.4" y="10133" width="0.4" height="15.0" fill="rgb(217,171,28)" rx="2" ry="2" /> +<text x="737.39" y="10143.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (3 samples, 0.11%)</title><rect x="532.4" y="10213" width="1.3" height="15.0" fill="rgb(211,226,36)" rx="2" ry="2" /> +<text x="535.37" y="10223.5" ></text> +</g> +<g > +<title><unknown> (1 samples, 0.04%)</title><rect x="1021.8" y="5973" width="0.4" height="15.0" fill="rgb(206,191,21)" rx="2" ry="2" /> +<text x="1024.80" y="5983.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (23 samples, 0.84%)</title><rect x="453.9" y="9781" width="10.0" height="15.0" fill="rgb(211,119,43)" rx="2" ry="2" /> +<text x="456.91" y="9791.5" ></text> +</g> +<g > +<title><unknown> (2 samples, 0.07%)</title><rect x="1021.4" y="9381" width="0.8" height="15.0" fill="rgb(229,197,21)" rx="2" ry="2" /> +<text x="1024.37" y="9391.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (23 samples, 0.84%)</title><rect x="473.4" y="9941" width="10.0" height="15.0" fill="rgb(210,98,4)" rx="2" ry="2" /> +<text x="476.42" y="9951.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (4 samples, 0.15%)</title><rect x="742.6" y="10437" width="1.8" height="15.0" fill="rgb(244,173,35)" rx="2" ry="2" /> +<text x="745.62" y="10447.5" ></text> +</g> +<g > +<title><unknown> (2 samples, 0.07%)</title><rect x="1021.4" y="7605" width="0.8" height="15.0" fill="rgb(254,30,36)" rx="2" ry="2" /> +<text x="1024.37" y="7615.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="1067.8" y="10725" width="0.4" height="15.0" fill="rgb(236,169,31)" rx="2" ry="2" /> +<text x="1070.75" y="10735.5" ></text> +</g> +<g > +<title><unknown> (1 samples, 0.04%)</title><rect x="1137.1" y="11205" width="0.4" height="15.0" fill="rgb(213,143,27)" rx="2" ry="2" /> +<text x="1140.11" y="11215.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="868.3" y="10741" width="0.5" height="15.0" fill="rgb(206,20,17)" rx="2" ry="2" /> +<text x="871.34" y="10751.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (1 samples, 0.04%)</title><rect x="397.6" y="9557" width="0.4" height="15.0" fill="rgb(246,188,25)" rx="2" ry="2" /> +<text x="400.55" y="9567.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Stack::popValue (2 samples, 0.07%)</title><rect x="233.7" y="11157" width="0.9" height="15.0" fill="rgb(251,176,40)" rx="2" ry="2" /> +<text x="236.69" y="11167.5" ></text> +</g> +<g > +<title><unknown> (2 samples, 0.07%)</title><rect x="1021.4" y="9349" width="0.8" height="15.0" fill="rgb(237,221,35)" rx="2" ry="2" /> +<text x="1024.37" y="9359.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (13 samples, 0.48%)</title><rect x="511.1" y="10197" width="5.7" height="15.0" fill="rgb(219,27,44)" rx="2" ry="2" /> +<text x="514.13" y="10207.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="1071.7" y="11077" width="0.4" height="15.0" fill="rgb(248,118,21)" rx="2" ry="2" /> +<text x="1074.65" y="11087.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (2 samples, 0.07%)</title><rect x="467.3" y="9685" width="0.9" height="15.0" fill="rgb(223,42,45)" rx="2" ry="2" /> +<text x="470.35" y="9695.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (3 samples, 0.11%)</title><rect x="442.2" y="8997" width="1.3" height="15.0" fill="rgb(219,25,53)" rx="2" ry="2" /> +<text x="445.20" y="9007.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (3 samples, 0.11%)</title><rect x="475.2" y="9845" width="1.3" height="15.0" fill="rgb(206,130,39)" rx="2" ry="2" /> +<text x="478.15" y="9855.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (1 samples, 0.04%)</title><rect x="739.6" y="10261" width="0.4" height="15.0" fill="rgb(237,48,3)" rx="2" ry="2" /> +<text x="742.59" y="10271.5" ></text> +</g> +<g > +<title><unknown> (2 samples, 0.07%)</title><rect x="1021.4" y="10181" width="0.8" height="15.0" fill="rgb(243,130,35)" rx="2" ry="2" /> +<text x="1024.37" y="10191.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (9 samples, 0.33%)</title><rect x="523.7" y="10293" width="3.9" height="15.0" fill="rgb(237,30,28)" rx="2" ry="2" /> +<text x="526.70" y="10303.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (3 samples, 0.11%)</title><rect x="722.2" y="9813" width="1.3" height="15.0" fill="rgb(231,201,38)" rx="2" ry="2" /> +<text x="725.25" y="9823.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\MemInst::storeI32 (19 samples, 0.70%)</title><rect x="226.3" y="11173" width="8.3" height="15.0" fill="rgb(239,224,30)" rx="2" ry="2" /> +<text x="229.32" y="11183.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="318.7" y="9509" width="0.4" height="15.0" fill="rgb(207,53,36)" rx="2" ry="2" /> +<text x="321.66" y="9519.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="340.8" y="9845" width="0.4" height="15.0" fill="rgb(228,24,7)" rx="2" ry="2" /> +<text x="343.76" y="9855.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (3 samples, 0.11%)</title><rect x="741.3" y="11013" width="1.3" height="15.0" fill="rgb(206,166,19)" rx="2" ry="2" /> +<text x="744.32" y="11023.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (2 samples, 0.07%)</title><rect x="496.0" y="10261" width="0.8" height="15.0" fill="rgb(218,211,19)" rx="2" ry="2" /> +<text x="498.96" y="10271.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (517 samples, 18.99%)</title><rect x="247.1" y="10165" width="224.1" height="15.0" fill="rgb(233,78,30)" rx="2" ry="2" /> +<text x="250.13" y="10175.5" >Nsfisis\Waddiwasi\Execution\R..</text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (18 samples, 0.66%)</title><rect x="351.6" y="9669" width="7.8" height="15.0" fill="rgb(234,122,28)" rx="2" ry="2" /> +<text x="354.60" y="9679.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (3 samples, 0.11%)</title><rect x="735.3" y="10501" width="1.3" height="15.0" fill="rgb(210,203,24)" rx="2" ry="2" /> +<text x="738.25" y="10511.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="1067.8" y="10645" width="0.4" height="15.0" fill="rgb(254,214,27)" rx="2" ry="2" /> +<text x="1070.75" y="10655.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (3 samples, 0.11%)</title><rect x="483.8" y="9893" width="1.3" height="15.0" fill="rgb(212,5,4)" rx="2" ry="2" /> +<text x="486.82" y="9903.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (46 samples, 1.69%)</title><rect x="700.6" y="9973" width="19.9" height="15.0" fill="rgb(212,167,51)" rx="2" ry="2" /> +<text x="703.57" y="9983.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="448.7" y="9813" width="0.4" height="15.0" fill="rgb(229,186,34)" rx="2" ry="2" /> +<text x="451.71" y="9823.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (2 samples, 0.07%)</title><rect x="737.0" y="10421" width="0.9" height="15.0" fill="rgb(231,206,6)" rx="2" ry="2" /> +<text x="739.99" y="10431.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="724.8" y="9845" width="0.5" height="15.0" fill="rgb(253,188,32)" rx="2" ry="2" /> +<text x="727.85" y="9855.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (1 samples, 0.04%)</title><rect x="536.3" y="9893" width="0.4" height="15.0" fill="rgb(228,176,43)" rx="2" ry="2" /> +<text x="539.27" y="9903.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (2 samples, 0.07%)</title><rect x="311.3" y="9509" width="0.9" height="15.0" fill="rgb(234,64,33)" rx="2" ry="2" /> +<text x="314.29" y="9519.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (19 samples, 0.70%)</title><rect x="283.5" y="9733" width="8.3" height="15.0" fill="rgb(217,160,19)" rx="2" ry="2" /> +<text x="286.54" y="9743.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (1 samples, 0.04%)</title><rect x="1035.2" y="11125" width="0.5" height="15.0" fill="rgb(218,46,50)" rx="2" ry="2" /> +<text x="1038.24" y="11135.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="866.6" y="10277" width="0.4" height="15.0" fill="rgb(213,139,50)" rx="2" ry="2" /> +<text x="869.61" y="10287.5" ></text> +</g> +<g > +<title><unknown> (2 samples, 0.07%)</title><rect x="1021.4" y="10341" width="0.8" height="15.0" fill="rgb(235,41,51)" rx="2" ry="2" /> +<text x="1024.37" y="10351.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="849.7" y="10213" width="0.4" height="15.0" fill="rgb(247,86,0)" rx="2" ry="2" /> +<text x="852.70" y="10223.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (29 samples, 1.07%)</title><rect x="258.8" y="9845" width="12.6" height="15.0" fill="rgb(214,209,19)" rx="2" ry="2" /> +<text x="261.83" y="9855.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="739.2" y="10453" width="0.4" height="15.0" fill="rgb(247,42,49)" rx="2" ry="2" /> +<text x="742.16" y="10463.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="737.9" y="10453" width="0.4" height="15.0" fill="rgb(246,204,38)" rx="2" ry="2" /> +<text x="740.85" y="10463.5" ></text> +</g> +<g > +<title><unknown> (1 samples, 0.04%)</title><rect x="304.3" y="9301" width="0.5" height="15.0" fill="rgb(205,93,2)" rx="2" ry="2" /> +<text x="307.35" y="9311.5" ></text> +</g> +<g > +<title><unknown> (1 samples, 0.04%)</title><rect x="1021.8" y="2965" width="0.4" height="15.0" fill="rgb(208,60,46)" rx="2" ry="2" /> +<text x="1024.80" y="2975.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="738.3" y="10613" width="0.4" height="15.0" fill="rgb(223,29,6)" rx="2" ry="2" /> +<text x="741.29" y="10623.5" ></text> +</g> +<g > +<title><unknown> (2 samples, 0.07%)</title><rect x="1021.4" y="9909" width="0.8" height="15.0" fill="rgb(237,6,39)" rx="2" ry="2" /> +<text x="1024.37" y="9919.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\ControlFlowResults\Br::__construct (1 samples, 0.04%)</title><rect x="1138.4" y="11189" width="0.4" height="15.0" fill="rgb(254,193,23)" rx="2" ry="2" /> +<text x="1141.41" y="11199.5" ></text> +</g> +<g > +<title><unknown> (2 samples, 0.07%)</title><rect x="1021.4" y="6197" width="0.8" height="15.0" fill="rgb(251,144,5)" rx="2" ry="2" /> +<text x="1024.37" y="6207.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (2 samples, 0.07%)</title><rect x="469.9" y="9941" width="0.9" height="15.0" fill="rgb(230,122,28)" rx="2" ry="2" /> +<text x="472.95" y="9951.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1,159 samples, 42.58%)</title><rect x="238.9" y="11061" width="502.4" height="15.0" fill="rgb(225,52,17)" rx="2" ry="2" /> +<text x="241.89" y="11071.5" >Nsfisis\Waddiwasi\Execution\Runtime::execInstrs</text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="486.4" y="9765" width="0.5" height="15.0" fill="rgb(220,145,6)" rx="2" ry="2" /> +<text x="489.42" y="9775.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (1 samples, 0.04%)</title><rect x="315.6" y="9413" width="0.5" height="15.0" fill="rgb(239,148,27)" rx="2" ry="2" /> +<text x="318.62" y="9423.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="751.7" y="10245" width="0.5" height="15.0" fill="rgb(219,112,24)" rx="2" ry="2" /> +<text x="754.73" y="10255.5" ></text> +</g> +<g > +<title><unknown> (1 samples, 0.04%)</title><rect x="1021.8" y="4661" width="0.4" height="15.0" fill="rgb(218,20,49)" rx="2" ry="2" /> +<text x="1024.80" y="4671.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="409.3" y="9125" width="0.4" height="15.0" fill="rgb(224,144,21)" rx="2" ry="2" /> +<text x="412.26" y="9135.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (5 samples, 0.18%)</title><rect x="244.1" y="10501" width="2.2" height="15.0" fill="rgb(212,82,46)" rx="2" ry="2" /> +<text x="247.09" y="10511.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (13 samples, 0.48%)</title><rect x="353.3" y="9477" width="5.7" height="15.0" fill="rgb(253,32,34)" rx="2" ry="2" /> +<text x="356.34" y="9487.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Val::Num (1 samples, 0.04%)</title><rect x="1167.0" y="11221" width="0.5" height="15.0" fill="rgb(244,67,53)" rx="2" ry="2" /> +<text x="1170.02" y="11231.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (2 samples, 0.07%)</title><rect x="734.0" y="10581" width="0.8" height="15.0" fill="rgb(209,26,34)" rx="2" ry="2" /> +<text x="736.95" y="10591.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="734.8" y="10581" width="0.5" height="15.0" fill="rgb(229,60,7)" rx="2" ry="2" /> +<text x="737.82" y="10591.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (2 samples, 0.07%)</title><rect x="426.6" y="9317" width="0.9" height="15.0" fill="rgb(246,16,10)" rx="2" ry="2" /> +<text x="429.60" y="9327.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (39 samples, 1.43%)</title><rect x="777.7" y="10469" width="16.9" height="15.0" fill="rgb(252,110,34)" rx="2" ry="2" /> +<text x="780.74" y="10479.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (5 samples, 0.18%)</title><rect x="868.8" y="10725" width="2.1" height="15.0" fill="rgb(205,139,18)" rx="2" ry="2" /> +<text x="871.77" y="10735.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (2 samples, 0.07%)</title><rect x="325.2" y="9317" width="0.8" height="15.0" fill="rgb(251,75,28)" rx="2" ry="2" /> +<text x="328.16" y="9327.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="325.2" y="9221" width="0.4" height="15.0" fill="rgb(222,155,33)" rx="2" ry="2" /> +<text x="328.16" y="9231.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="1181.3" y="11189" width="0.5" height="15.0" fill="rgb(213,0,51)" rx="2" ry="2" /> +<text x="1184.33" y="11199.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (8 samples, 0.29%)</title><rect x="382.8" y="9541" width="3.5" height="15.0" fill="rgb(228,163,42)" rx="2" ry="2" /> +<text x="385.81" y="9551.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (9 samples, 0.33%)</title><rect x="498.6" y="10213" width="3.9" height="15.0" fill="rgb(223,32,43)" rx="2" ry="2" /> +<text x="501.56" y="10223.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="424.4" y="8965" width="0.5" height="15.0" fill="rgb(208,131,6)" rx="2" ry="2" /> +<text x="427.43" y="8975.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="351.2" y="9509" width="0.4" height="15.0" fill="rgb(228,190,47)" rx="2" ry="2" /> +<text x="354.17" y="9519.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (3 samples, 0.11%)</title><rect x="743.1" y="10085" width="1.3" height="15.0" fill="rgb(243,148,25)" rx="2" ry="2" /> +<text x="746.06" y="10095.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (4 samples, 0.15%)</title><rect x="466.5" y="9797" width="1.7" height="15.0" fill="rgb(224,202,41)" rx="2" ry="2" /> +<text x="469.48" y="9807.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (3 samples, 0.11%)</title><rect x="676.7" y="9941" width="1.3" height="15.0" fill="rgb(242,176,53)" rx="2" ry="2" /> +<text x="679.73" y="9951.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Stack::pushValue (19 samples, 0.70%)</title><rect x="643.4" y="9909" width="8.2" height="15.0" fill="rgb(223,50,27)" rx="2" ry="2" /> +<text x="646.35" y="9919.5" ></text> +</g> +<g > +<title><unknown> (2 samples, 0.07%)</title><rect x="1021.4" y="6309" width="0.8" height="15.0" fill="rgb(215,84,18)" rx="2" ry="2" /> +<text x="1024.37" y="6319.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (23 samples, 0.84%)</title><rect x="838.9" y="10229" width="9.9" height="15.0" fill="rgb(241,183,18)" rx="2" ry="2" /> +<text x="841.86" y="10239.5" ></text> +</g> +<g > +<title><unknown> (1 samples, 0.04%)</title><rect x="1021.8" y="5093" width="0.4" height="15.0" fill="rgb(211,106,35)" rx="2" ry="2" /> +<text x="1024.80" y="5103.5" ></text> +</g> +<g > +<title><unknown> (1 samples, 0.04%)</title><rect x="1021.8" y="6021" width="0.4" height="15.0" fill="rgb(229,53,21)" rx="2" ry="2" /> +<text x="1024.80" y="6031.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Stack::popValue (1 samples, 0.04%)</title><rect x="485.1" y="9685" width="0.5" height="15.0" fill="rgb(246,51,16)" rx="2" ry="2" /> +<text x="488.12" y="9695.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="758.2" y="10005" width="0.5" height="15.0" fill="rgb(217,37,5)" rx="2" ry="2" /> +<text x="761.23" y="10015.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (2 samples, 0.07%)</title><rect x="526.7" y="9909" width="0.9" height="15.0" fill="rgb(227,41,42)" rx="2" ry="2" /> +<text x="529.74" y="9919.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="790.3" y="10149" width="0.4" height="15.0" fill="rgb(240,152,37)" rx="2" ry="2" /> +<text x="793.31" y="10159.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (183 samples, 6.72%)</title><rect x="652.9" y="10405" width="79.3" height="15.0" fill="rgb(232,23,0)" rx="2" ry="2" /> +<text x="655.89" y="10415.5" >Nsfisis\W..</text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Num::I32 (1 samples, 0.04%)</title><rect x="238.9" y="10005" width="0.4" height="15.0" fill="rgb(229,54,16)" rx="2" ry="2" /> +<text x="241.89" y="10015.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (7 samples, 0.26%)</title><rect x="294.4" y="9733" width="3.0" height="15.0" fill="rgb(224,192,28)" rx="2" ry="2" /> +<text x="297.38" y="9743.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="781.2" y="10293" width="0.4" height="15.0" fill="rgb(222,35,47)" rx="2" ry="2" /> +<text x="784.20" y="10303.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (2 samples, 0.07%)</title><rect x="241.9" y="10629" width="0.9" height="15.0" fill="rgb(210,54,25)" rx="2" ry="2" /> +<text x="244.93" y="10639.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="870.5" y="10005" width="0.4" height="15.0" fill="rgb(251,199,3)" rx="2" ry="2" /> +<text x="873.51" y="10015.5" ></text> +</g> +<g > +<title><unknown> (1 samples, 0.04%)</title><rect x="1021.8" y="2117" width="0.4" height="15.0" fill="rgb(245,72,0)" rx="2" ry="2" /> +<text x="1024.80" y="2127.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="740.0" y="10293" width="0.5" height="15.0" fill="rgb(215,147,7)" rx="2" ry="2" /> +<text x="743.02" y="10303.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (3 samples, 0.11%)</title><rect x="411.4" y="9269" width="1.3" height="15.0" fill="rgb(226,34,36)" rx="2" ry="2" /> +<text x="414.43" y="9279.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="487.7" y="9717" width="0.5" height="15.0" fill="rgb(246,93,24)" rx="2" ry="2" /> +<text x="490.72" y="9727.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="739.2" y="10181" width="0.4" height="15.0" fill="rgb(239,14,25)" rx="2" ry="2" /> +<text x="742.16" y="10191.5" ></text> +</g> +<g > +<title>all (2,722 samples, 100%)</title><rect x="10.0" y="11269" width="1180.0" height="15.0" fill="rgb(236,121,24)" rx="2" ry="2" /> +<text x="13.00" y="11279.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (4 samples, 0.15%)</title><rect x="411.4" y="9365" width="1.8" height="15.0" fill="rgb(221,37,26)" rx="2" ry="2" /> +<text x="414.43" y="9375.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (240 samples, 8.82%)</title><rect x="547.5" y="9941" width="104.1" height="15.0" fill="rgb(250,180,40)" rx="2" ry="2" /> +<text x="550.55" y="9951.5" >Nsfisis\Wadd..</text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="739.2" y="10645" width="0.4" height="15.0" fill="rgb(250,34,46)" rx="2" ry="2" /> +<text x="742.16" y="10655.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (2 samples, 0.07%)</title><rect x="448.3" y="9893" width="0.8" height="15.0" fill="rgb(215,185,33)" rx="2" ry="2" /> +<text x="451.27" y="9903.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Structure\Types\ResultType::equals (1 samples, 0.04%)</title><rect x="538.4" y="10277" width="0.5" height="15.0" fill="rgb(251,7,45)" rx="2" ry="2" /> +<text x="541.44" y="10287.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (277 samples, 10.18%)</title><rect x="747.8" y="10613" width="120.1" height="15.0" fill="rgb(216,144,25)" rx="2" ry="2" /> +<text x="750.83" y="10623.5" >Nsfisis\Waddiw..</text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (9 samples, 0.33%)</title><rect x="441.8" y="9605" width="3.9" height="15.0" fill="rgb(239,226,43)" rx="2" ry="2" /> +<text x="444.77" y="9615.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Stack::pushI32 (1 samples, 0.04%)</title><rect x="488.6" y="9845" width="0.4" height="15.0" fill="rgb(207,109,5)" rx="2" ry="2" /> +<text x="491.59" y="9855.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (10 samples, 0.37%)</title><rect x="523.3" y="10325" width="4.3" height="15.0" fill="rgb(237,188,48)" rx="2" ry="2" /> +<text x="526.27" y="10335.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="733.5" y="9893" width="0.5" height="15.0" fill="rgb(218,36,19)" rx="2" ry="2" /> +<text x="736.52" y="9903.5" ></text> +</g> +<g > +<title><unknown> (1 samples, 0.04%)</title><rect x="362.9" y="9733" width="0.4" height="15.0" fill="rgb(221,196,45)" rx="2" ry="2" /> +<text x="365.87" y="9743.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="538.9" y="10405" width="0.4" height="15.0" fill="rgb(219,58,52)" rx="2" ry="2" /> +<text x="541.88" y="10415.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="866.6" y="10389" width="0.4" height="15.0" fill="rgb(245,197,27)" rx="2" ry="2" /> +<text x="869.61" y="10399.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (1 samples, 0.04%)</title><rect x="307.8" y="9365" width="0.5" height="15.0" fill="rgb(239,106,45)" rx="2" ry="2" /> +<text x="310.82" y="9375.5" ></text> +</g> +<g > +<title><unknown> (2 samples, 0.07%)</title><rect x="1021.4" y="6469" width="0.8" height="15.0" fill="rgb(251,141,33)" rx="2" ry="2" /> +<text x="1024.37" y="6479.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="325.6" y="9253" width="0.4" height="15.0" fill="rgb(214,19,44)" rx="2" ry="2" /> +<text x="328.59" y="9263.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="1138.0" y="11125" width="0.4" height="15.0" fill="rgb(224,153,46)" rx="2" ry="2" /> +<text x="1140.98" y="11135.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="870.1" y="8645" width="0.4" height="15.0" fill="rgb(231,37,51)" rx="2" ry="2" /> +<text x="873.07" y="8655.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (5 samples, 0.18%)</title><rect x="483.4" y="9989" width="2.2" height="15.0" fill="rgb(244,123,6)" rx="2" ry="2" /> +<text x="486.39" y="9999.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeHostFunc (1 samples, 0.04%)</title><rect x="867.9" y="10277" width="0.4" height="15.0" fill="rgb(206,84,28)" rx="2" ry="2" /> +<text x="870.91" y="10287.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (3 samples, 0.11%)</title><rect x="440.5" y="9637" width="1.3" height="15.0" fill="rgb(237,57,53)" rx="2" ry="2" /> +<text x="443.47" y="9647.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="733.5" y="9845" width="0.5" height="15.0" fill="rgb(229,111,16)" rx="2" ry="2" /> +<text x="736.52" y="9855.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (108 samples, 3.97%)</title><rect x="280.5" y="9845" width="46.8" height="15.0" fill="rgb(207,174,28)" rx="2" ry="2" /> +<text x="283.51" y="9855.5" >Nsfi..</text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (13 samples, 0.48%)</title><rect x="511.1" y="10213" width="5.7" height="15.0" fill="rgb(226,76,48)" rx="2" ry="2" /> +<text x="514.13" y="10223.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (12 samples, 0.44%)</title><rect x="440.5" y="9829" width="5.2" height="15.0" fill="rgb(243,188,31)" rx="2" ry="2" /> +<text x="443.47" y="9839.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="1050.0" y="10901" width="0.4" height="15.0" fill="rgb(218,52,17)" rx="2" ry="2" /> +<text x="1052.98" y="10911.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="652.0" y="10453" width="0.5" height="15.0" fill="rgb(229,129,33)" rx="2" ry="2" /> +<text x="655.02" y="10463.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="453.5" y="9253" width="0.4" height="15.0" fill="rgb(232,128,48)" rx="2" ry="2" /> +<text x="456.48" y="9263.5" ></text> +</g> +<g > +<title><unknown> (2 samples, 0.07%)</title><rect x="1021.4" y="10085" width="0.8" height="15.0" fill="rgb(251,83,42)" rx="2" ry="2" /> +<text x="1024.37" y="10095.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (16 samples, 0.59%)</title><rect x="531.1" y="10293" width="6.9" height="15.0" fill="rgb(234,109,50)" rx="2" ry="2" /> +<text x="534.07" y="10303.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="469.1" y="9717" width="0.4" height="15.0" fill="rgb(247,207,5)" rx="2" ry="2" /> +<text x="472.08" y="9727.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (570 samples, 20.94%)</title><rect x="243.2" y="10565" width="247.1" height="15.0" fill="rgb(236,6,32)" rx="2" ry="2" /> +<text x="246.23" y="10575.5" >Nsfisis\Waddiwasi\Execution\Runt..</text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (1 samples, 0.04%)</title><rect x="469.5" y="9701" width="0.4" height="15.0" fill="rgb(249,87,15)" rx="2" ry="2" /> +<text x="472.52" y="9711.5" ></text> +</g> +<g > +<title><unknown> (1 samples, 0.04%)</title><rect x="1021.8" y="4821" width="0.4" height="15.0" fill="rgb(230,108,22)" rx="2" ry="2" /> +<text x="1024.80" y="4831.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="427.5" y="9429" width="0.4" height="15.0" fill="rgb(228,37,47)" rx="2" ry="2" /> +<text x="430.47" y="9439.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="530.2" y="10053" width="0.4" height="15.0" fill="rgb(211,188,0)" rx="2" ry="2" /> +<text x="533.21" y="10063.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (29 samples, 1.07%)</title><rect x="490.8" y="10613" width="12.5" height="15.0" fill="rgb(209,177,38)" rx="2" ry="2" /> +<text x="493.76" y="10623.5" ></text> +</g> +<g > +<title><unknown> (1 samples, 0.04%)</title><rect x="1021.8" y="5541" width="0.4" height="15.0" fill="rgb(214,167,0)" rx="2" ry="2" /> +<text x="1024.80" y="5551.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (3 samples, 0.11%)</title><rect x="402.8" y="9445" width="1.3" height="15.0" fill="rgb(246,59,18)" rx="2" ry="2" /> +<text x="405.76" y="9455.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="733.5" y="8373" width="0.5" height="15.0" fill="rgb(233,11,46)" rx="2" ry="2" /> +<text x="736.52" y="8383.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="870.1" y="9477" width="0.4" height="15.0" fill="rgb(239,59,8)" rx="2" ry="2" /> +<text x="873.07" y="9487.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (3 samples, 0.11%)</title><rect x="741.3" y="10949" width="1.3" height="15.0" fill="rgb(212,10,9)" rx="2" ry="2" /> +<text x="744.32" y="10959.5" ></text> +</g> +<g > +<title><unknown> (1 samples, 0.04%)</title><rect x="1021.8" y="3125" width="0.4" height="15.0" fill="rgb(237,220,50)" rx="2" ry="2" /> +<text x="1024.80" y="3135.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="730.9" y="9941" width="0.5" height="15.0" fill="rgb(211,126,40)" rx="2" ry="2" /> +<text x="733.92" y="9951.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="870.1" y="9141" width="0.4" height="15.0" fill="rgb(233,163,24)" rx="2" ry="2" /> +<text x="873.07" y="9151.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (2 samples, 0.07%)</title><rect x="496.8" y="10405" width="0.9" height="15.0" fill="rgb(227,128,41)" rx="2" ry="2" /> +<text x="499.83" y="10415.5" ></text> +</g> +<g > +<title><unknown> (2 samples, 0.07%)</title><rect x="1021.4" y="6357" width="0.8" height="15.0" fill="rgb(239,158,28)" rx="2" ry="2" /> +<text x="1024.37" y="6367.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="870.1" y="8437" width="0.4" height="15.0" fill="rgb(207,114,15)" rx="2" ry="2" /> +<text x="873.07" y="8447.5" ></text> +</g> +<g > +<title><unknown> (1 samples, 0.04%)</title><rect x="1021.8" y="2757" width="0.4" height="15.0" fill="rgb(237,82,30)" rx="2" ry="2" /> +<text x="1024.80" y="2767.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (3 samples, 0.11%)</title><rect x="466.9" y="9733" width="1.3" height="15.0" fill="rgb(240,225,39)" rx="2" ry="2" /> +<text x="469.91" y="9743.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (1 samples, 0.04%)</title><rect x="497.3" y="10165" width="0.4" height="15.0" fill="rgb(205,27,51)" rx="2" ry="2" /> +<text x="500.26" y="10175.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="866.6" y="10325" width="0.4" height="15.0" fill="rgb(245,75,38)" rx="2" ry="2" /> +<text x="869.61" y="10335.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="1161.4" y="11237" width="0.4" height="15.0" fill="rgb(207,200,45)" rx="2" ry="2" /> +<text x="1164.39" y="11247.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="484.3" y="9621" width="0.4" height="15.0" fill="rgb(212,47,0)" rx="2" ry="2" /> +<text x="487.25" y="9631.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (1 samples, 0.04%)</title><rect x="734.0" y="10181" width="0.4" height="15.0" fill="rgb(236,163,47)" rx="2" ry="2" /> +<text x="736.95" y="10191.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="487.7" y="9845" width="0.5" height="15.0" fill="rgb(211,139,54)" rx="2" ry="2" /> +<text x="490.72" y="9855.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (6 samples, 0.22%)</title><rect x="410.6" y="9605" width="2.6" height="15.0" fill="rgb(243,68,7)" rx="2" ry="2" /> +<text x="413.56" y="9615.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (1 samples, 0.04%)</title><rect x="468.2" y="9813" width="0.4" height="15.0" fill="rgb(238,176,10)" rx="2" ry="2" /> +<text x="471.21" y="9823.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (1 samples, 0.04%)</title><rect x="652.0" y="10517" width="0.5" height="15.0" fill="rgb(223,199,7)" rx="2" ry="2" /> +<text x="655.02" y="10527.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="1098.5" y="11013" width="0.5" height="15.0" fill="rgb(249,186,34)" rx="2" ry="2" /> +<text x="1101.53" y="11023.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Stack::popI32 (1 samples, 0.04%)</title><rect x="649.0" y="9893" width="0.4" height="15.0" fill="rgb(215,218,29)" rx="2" ry="2" /> +<text x="651.99" y="9903.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (1 samples, 0.04%)</title><rect x="377.2" y="9669" width="0.4" height="15.0" fill="rgb(236,34,10)" rx="2" ry="2" /> +<text x="380.18" y="9679.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (65 samples, 2.39%)</title><rect x="400.2" y="9765" width="28.1" height="15.0" fill="rgb(231,120,22)" rx="2" ry="2" /> +<text x="403.15" y="9775.5" >N..</text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Nums\I32::__construct (1 samples, 0.04%)</title><rect x="141.4" y="11125" width="0.4" height="15.0" fill="rgb(242,39,51)" rx="2" ry="2" /> +<text x="144.35" y="11135.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="443.1" y="8549" width="0.4" height="15.0" fill="rgb(206,184,34)" rx="2" ry="2" /> +<text x="446.07" y="8559.5" ></text> +</g> +<g > +<title><unknown> (2 samples, 0.07%)</title><rect x="1021.4" y="9685" width="0.8" height="15.0" fill="rgb(235,10,51)" rx="2" ry="2" /> +<text x="1024.37" y="9695.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (48 samples, 1.76%)</title><rect x="428.8" y="9989" width="20.8" height="15.0" fill="rgb(254,1,3)" rx="2" ry="2" /> +<text x="431.77" y="9999.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="398.4" y="9317" width="0.5" height="15.0" fill="rgb(210,157,51)" rx="2" ry="2" /> +<text x="401.42" y="9327.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="740.0" y="10213" width="0.5" height="15.0" fill="rgb(242,115,47)" rx="2" ry="2" /> +<text x="743.02" y="10223.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (1 samples, 0.04%)</title><rect x="740.5" y="10549" width="0.4" height="15.0" fill="rgb(234,4,45)" rx="2" ry="2" /> +<text x="743.46" y="10559.5" ></text> +</g> +<g > +<title><unknown> (2 samples, 0.07%)</title><rect x="1021.4" y="8197" width="0.8" height="15.0" fill="rgb(250,99,2)" rx="2" ry="2" /> +<text x="1024.37" y="8207.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (2 samples, 0.07%)</title><rect x="408.4" y="9477" width="0.9" height="15.0" fill="rgb(211,49,49)" rx="2" ry="2" /> +<text x="411.39" y="9487.5" ></text> +</g> +<g > +<title><unknown> (2 samples, 0.07%)</title><rect x="1021.4" y="9957" width="0.8" height="15.0" fill="rgb(227,141,16)" rx="2" ry="2" /> +<text x="1024.37" y="9967.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (3 samples, 0.11%)</title><rect x="726.6" y="9877" width="1.3" height="15.0" fill="rgb(243,88,42)" rx="2" ry="2" /> +<text x="729.58" y="9887.5" ></text> +</g> +<g > +<title><unknown> (2 samples, 0.07%)</title><rect x="1021.4" y="7013" width="0.8" height="15.0" fill="rgb(229,17,50)" rx="2" ry="2" /> +<text x="1024.37" y="7023.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="867.0" y="10165" width="0.5" height="15.0" fill="rgb(237,186,14)" rx="2" ry="2" /> +<text x="870.04" y="10175.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (125 samples, 4.59%)</title><rect x="374.1" y="9829" width="54.2" height="15.0" fill="rgb(206,225,24)" rx="2" ry="2" /> +<text x="377.14" y="9839.5" >Nsfis..</text> +</g> +<g > +<title><unknown> (2 samples, 0.07%)</title><rect x="1021.4" y="8981" width="0.8" height="15.0" fill="rgb(232,68,8)" rx="2" ry="2" /> +<text x="1024.37" y="8991.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (1 samples, 0.04%)</title><rect x="796.8" y="10533" width="0.4" height="15.0" fill="rgb(223,184,9)" rx="2" ry="2" /> +<text x="799.81" y="10543.5" ></text> +</g> +<g > +<title><unknown> (2 samples, 0.07%)</title><rect x="1021.4" y="11013" width="0.8" height="15.0" fill="rgb(208,59,24)" rx="2" ry="2" /> +<text x="1024.37" y="11023.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (2 samples, 0.07%)</title><rect x="737.0" y="10389" width="0.9" height="15.0" fill="rgb(219,55,12)" rx="2" ry="2" /> +<text x="739.99" y="10399.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="718.3" y="9509" width="0.5" height="15.0" fill="rgb(223,144,11)" rx="2" ry="2" /> +<text x="721.35" y="9519.5" ></text> +</g> +<g > +<title><unknown> (1 samples, 0.04%)</title><rect x="288.7" y="9637" width="0.5" height="15.0" fill="rgb(254,143,1)" rx="2" ry="2" /> +<text x="291.74" y="9647.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (9 samples, 0.33%)</title><rect x="1138.8" y="11221" width="3.9" height="15.0" fill="rgb(239,25,36)" rx="2" ry="2" /> +<text x="1141.85" y="11231.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (5 samples, 0.18%)</title><rect x="483.4" y="10005" width="2.2" height="15.0" fill="rgb(210,131,39)" rx="2" ry="2" /> +<text x="486.39" y="10015.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (26 samples, 0.96%)</title><rect x="452.6" y="9989" width="11.3" height="15.0" fill="rgb(248,103,53)" rx="2" ry="2" /> +<text x="455.61" y="9999.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (343 samples, 12.60%)</title><rect x="503.3" y="10613" width="148.7" height="15.0" fill="rgb(214,204,6)" rx="2" ry="2" /> +<text x="506.33" y="10623.5" >Nsfisis\Waddiwasi\E..</text> +</g> +<g > +<title><unknown> (1 samples, 0.04%)</title><rect x="1021.8" y="3685" width="0.4" height="15.0" fill="rgb(231,31,23)" rx="2" ry="2" /> +<text x="1024.80" y="3695.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (3 samples, 0.11%)</title><rect x="722.2" y="9749" width="1.3" height="15.0" fill="rgb(253,5,53)" rx="2" ry="2" /> +<text x="725.25" y="9759.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="268.8" y="9493" width="0.4" height="15.0" fill="rgb(208,7,50)" rx="2" ry="2" /> +<text x="271.80" y="9503.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (3 samples, 0.11%)</title><rect x="304.8" y="9365" width="1.3" height="15.0" fill="rgb(216,7,53)" rx="2" ry="2" /> +<text x="307.78" y="9375.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="238.9" y="10085" width="0.4" height="15.0" fill="rgb(216,176,52)" rx="2" ry="2" /> +<text x="241.89" y="10095.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="848.4" y="10149" width="0.4" height="15.0" fill="rgb(251,97,3)" rx="2" ry="2" /> +<text x="851.40" y="10159.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (40 samples, 1.47%)</title><rect x="300.0" y="9669" width="17.4" height="15.0" fill="rgb(251,39,21)" rx="2" ry="2" /> +<text x="303.01" y="9679.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="320.0" y="9589" width="0.4" height="15.0" fill="rgb(225,158,1)" rx="2" ry="2" /> +<text x="322.96" y="9599.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="446.1" y="9637" width="0.4" height="15.0" fill="rgb(215,152,34)" rx="2" ry="2" /> +<text x="449.11" y="9647.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (1 samples, 0.04%)</title><rect x="870.1" y="8085" width="0.4" height="15.0" fill="rgb(229,203,16)" rx="2" ry="2" /> +<text x="873.07" y="8095.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (2 samples, 0.07%)</title><rect x="1169.6" y="11237" width="0.9" height="15.0" fill="rgb(227,8,46)" rx="2" ry="2" /> +<text x="1172.63" y="11247.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="739.2" y="10517" width="0.4" height="15.0" fill="rgb(248,9,5)" rx="2" ry="2" /> +<text x="742.16" y="10527.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="733.5" y="10037" width="0.5" height="15.0" fill="rgb(215,54,14)" rx="2" ry="2" /> +<text x="736.52" y="10047.5" ></text> +</g> +<g > +<title><unknown> (2 samples, 0.07%)</title><rect x="1021.4" y="10661" width="0.8" height="15.0" fill="rgb(213,169,8)" rx="2" ry="2" /> +<text x="1024.37" y="10671.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (19 samples, 0.70%)</title><rect x="327.8" y="9925" width="8.2" height="15.0" fill="rgb(210,56,27)" rx="2" ry="2" /> +<text x="330.76" y="9935.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="742.2" y="10533" width="0.4" height="15.0" fill="rgb(236,34,13)" rx="2" ry="2" /> +<text x="745.19" y="10543.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="870.1" y="9733" width="0.4" height="15.0" fill="rgb(249,165,34)" rx="2" ry="2" /> +<text x="873.07" y="9743.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (6 samples, 0.22%)</title><rect x="721.4" y="9925" width="2.6" height="15.0" fill="rgb(209,155,34)" rx="2" ry="2" /> +<text x="724.38" y="9935.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (2 samples, 0.07%)</title><rect x="1141.0" y="11125" width="0.9" height="15.0" fill="rgb(216,145,35)" rx="2" ry="2" /> +<text x="1144.01" y="11135.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="448.7" y="9781" width="0.4" height="15.0" fill="rgb(236,19,32)" rx="2" ry="2" /> +<text x="451.71" y="9791.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="468.2" y="9845" width="0.4" height="15.0" fill="rgb(220,93,6)" rx="2" ry="2" /> +<text x="471.21" y="9855.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (281 samples, 10.32%)</title><rect x="746.1" y="10661" width="121.8" height="15.0" fill="rgb(236,196,2)" rx="2" ry="2" /> +<text x="749.09" y="10671.5" >Nsfisis\Waddiwa..</text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (1 samples, 0.04%)</title><rect x="351.2" y="9717" width="0.4" height="15.0" fill="rgb(220,142,21)" rx="2" ry="2" /> +<text x="354.17" y="9727.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="668.1" y="9893" width="0.4" height="15.0" fill="rgb(213,156,12)" rx="2" ry="2" /> +<text x="671.06" y="9903.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::deactivateFrame (1 samples, 0.04%)</title><rect x="758.2" y="10037" width="0.5" height="15.0" fill="rgb(240,88,35)" rx="2" ry="2" /> +<text x="761.23" y="10047.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (2 samples, 0.07%)</title><rect x="408.4" y="9429" width="0.9" height="15.0" fill="rgb(224,96,47)" rx="2" ry="2" /> +<text x="411.39" y="9439.5" ></text> +</g> +<g > +<title><unknown> (1 samples, 0.04%)</title><rect x="1021.8" y="2997" width="0.4" height="15.0" fill="rgb(241,181,52)" rx="2" ry="2" /> +<text x="1024.80" y="3007.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (3 samples, 0.11%)</title><rect x="741.3" y="11125" width="1.3" height="15.0" fill="rgb(224,42,17)" rx="2" ry="2" /> +<text x="744.32" y="11135.5" ></text> +</g> +<g > +<title><unknown> (1 samples, 0.04%)</title><rect x="1021.8" y="1173" width="0.4" height="15.0" fill="rgb(237,189,18)" rx="2" ry="2" /> +<text x="1024.80" y="1183.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (5 samples, 0.18%)</title><rect x="295.2" y="9669" width="2.2" height="15.0" fill="rgb(235,159,13)" rx="2" ry="2" /> +<text x="298.25" y="9679.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (1 samples, 0.04%)</title><rect x="790.7" y="10293" width="0.5" height="15.0" fill="rgb(237,60,18)" rx="2" ry="2" /> +<text x="793.74" y="10303.5" ></text> +</g> +<g > +<title><unknown> (2 samples, 0.07%)</title><rect x="1021.4" y="6165" width="0.8" height="15.0" fill="rgb(246,33,1)" rx="2" ry="2" /> +<text x="1024.37" y="6175.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="870.1" y="9797" width="0.4" height="15.0" fill="rgb(215,163,38)" rx="2" ry="2" /> +<text x="873.07" y="9807.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="870.1" y="9461" width="0.4" height="15.0" fill="rgb(237,168,42)" rx="2" ry="2" /> +<text x="873.07" y="9471.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="870.1" y="9301" width="0.4" height="15.0" fill="rgb(250,5,52)" rx="2" ry="2" /> +<text x="873.07" y="9311.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="331.2" y="9845" width="0.5" height="15.0" fill="rgb(207,3,32)" rx="2" ry="2" /> +<text x="334.23" y="9855.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (3 samples, 0.11%)</title><rect x="529.8" y="10213" width="1.3" height="15.0" fill="rgb(241,83,36)" rx="2" ry="2" /> +<text x="532.77" y="10223.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (2 samples, 0.07%)</title><rect x="419.7" y="9525" width="0.8" height="15.0" fill="rgb(241,212,18)" rx="2" ry="2" /> +<text x="422.66" y="9535.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="1035.2" y="11141" width="0.5" height="15.0" fill="rgb(250,208,34)" rx="2" ry="2" /> +<text x="1038.24" y="11151.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (2 samples, 0.07%)</title><rect x="734.0" y="10389" width="0.8" height="15.0" fill="rgb(228,228,44)" rx="2" ry="2" /> +<text x="736.95" y="10399.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Stack::pushI32 (1 samples, 0.04%)</title><rect x="1161.4" y="11253" width="0.4" height="15.0" fill="rgb(237,88,3)" rx="2" ry="2" /> +<text x="1164.39" y="11263.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (2 samples, 0.07%)</title><rect x="442.2" y="8805" width="0.9" height="15.0" fill="rgb(222,116,28)" rx="2" ry="2" /> +<text x="445.20" y="8815.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (8 samples, 0.29%)</title><rect x="778.6" y="10437" width="3.5" height="15.0" fill="rgb(205,171,6)" rx="2" ry="2" /> +<text x="781.60" y="10447.5" ></text> +</g> +<g > +<title><unknown> (1 samples, 0.04%)</title><rect x="1094.6" y="11141" width="0.5" height="15.0" fill="rgb(244,79,25)" rx="2" ry="2" /> +<text x="1097.63" y="11151.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (1 samples, 0.04%)</title><rect x="870.1" y="7845" width="0.4" height="15.0" fill="rgb(250,22,52)" rx="2" ry="2" /> +<text x="873.07" y="7855.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (6 samples, 0.22%)</title><rect x="721.4" y="9909" width="2.6" height="15.0" fill="rgb(243,24,13)" rx="2" ry="2" /> +<text x="724.38" y="9919.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="512.9" y="10117" width="0.4" height="15.0" fill="rgb(225,140,0)" rx="2" ry="2" /> +<text x="515.87" y="10127.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="739.2" y="10325" width="0.4" height="15.0" fill="rgb(241,103,17)" rx="2" ry="2" /> +<text x="742.16" y="10335.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (571 samples, 20.98%)</title><rect x="243.2" y="10645" width="247.6" height="15.0" fill="rgb(211,72,10)" rx="2" ry="2" /> +<text x="246.23" y="10655.5" >Nsfisis\Waddiwasi\Execution\Runt..</text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (2 samples, 0.07%)</title><rect x="737.0" y="10437" width="0.9" height="15.0" fill="rgb(210,84,50)" rx="2" ry="2" /> +<text x="739.99" y="10447.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="867.9" y="10757" width="0.4" height="15.0" fill="rgb(242,168,29)" rx="2" ry="2" /> +<text x="870.91" y="10767.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (52 samples, 1.91%)</title><rect x="698.0" y="9989" width="22.5" height="15.0" fill="rgb(239,212,43)" rx="2" ry="2" /> +<text x="700.97" y="9999.5" >N..</text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\StackEntries\Value::__construct (1 samples, 0.04%)</title><rect x="1181.8" y="11237" width="0.4" height="15.0" fill="rgb(235,41,33)" rx="2" ry="2" /> +<text x="1184.76" y="11247.5" ></text> +</g> +<g > +<title><unknown> (1 samples, 0.04%)</title><rect x="1021.8" y="3109" width="0.4" height="15.0" fill="rgb(227,52,1)" rx="2" ry="2" /> +<text x="1024.80" y="3119.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="740.9" y="10389" width="0.4" height="15.0" fill="rgb(215,222,10)" rx="2" ry="2" /> +<text x="743.89" y="10399.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="733.5" y="8901" width="0.5" height="15.0" fill="rgb(206,227,28)" rx="2" ry="2" /> +<text x="736.52" y="8911.5" ></text> +</g> +<g > +<title>chr (1 samples, 0.04%)</title><rect x="638.6" y="9861" width="0.4" height="15.0" fill="rgb(236,102,27)" rx="2" ry="2" /> +<text x="641.58" y="9871.5" ></text> +</g> +<g > +<title><unknown> (1 samples, 0.04%)</title><rect x="1021.8" y="1893" width="0.4" height="15.0" fill="rgb(235,147,13)" rx="2" ry="2" /> +<text x="1024.80" y="1903.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="1050.0" y="10885" width="0.4" height="15.0" fill="rgb(244,228,22)" rx="2" ry="2" /> +<text x="1052.98" y="10895.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (1 samples, 0.04%)</title><rect x="852.7" y="10293" width="0.5" height="15.0" fill="rgb(239,62,46)" rx="2" ry="2" /> +<text x="855.73" y="10303.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (16 samples, 0.59%)</title><rect x="463.9" y="10069" width="6.9" height="15.0" fill="rgb(234,162,47)" rx="2" ry="2" /> +<text x="466.88" y="10079.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="497.3" y="10277" width="0.4" height="15.0" fill="rgb(229,149,39)" rx="2" ry="2" /> +<text x="500.26" y="10287.5" ></text> +</g> +<g > +<title><unknown> (1 samples, 0.04%)</title><rect x="1021.8" y="53" width="0.4" height="15.0" fill="rgb(247,204,41)" rx="2" ry="2" /> +<text x="1024.80" y="63.5" ></text> +</g> +<g > +<title><unknown> (1 samples, 0.04%)</title><rect x="1021.8" y="3509" width="0.4" height="15.0" fill="rgb(210,130,46)" rx="2" ry="2" /> +<text x="1024.80" y="3519.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="453.5" y="9461" width="0.4" height="15.0" fill="rgb(232,124,44)" rx="2" ry="2" /> +<text x="456.48" y="9471.5" ></text> +</g> +<g > +<title><unknown> (1 samples, 0.04%)</title><rect x="1021.8" y="3893" width="0.4" height="15.0" fill="rgb(238,106,25)" rx="2" ry="2" /> +<text x="1024.80" y="3903.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (49 samples, 1.80%)</title><rect x="658.1" y="10133" width="21.2" height="15.0" fill="rgb(248,19,0)" rx="2" ry="2" /> +<text x="661.09" y="10143.5" >N..</text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (2 samples, 0.07%)</title><rect x="737.0" y="10309" width="0.9" height="15.0" fill="rgb(253,176,14)" rx="2" ry="2" /> +<text x="739.99" y="10319.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="734.4" y="10085" width="0.4" height="15.0" fill="rgb(234,23,36)" rx="2" ry="2" /> +<text x="737.39" y="10095.5" ></text> +</g> +<g > +<title><unknown> (1 samples, 0.04%)</title><rect x="1021.8" y="5317" width="0.4" height="15.0" fill="rgb(224,207,50)" rx="2" ry="2" /> +<text x="1024.80" y="5327.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="852.7" y="10341" width="0.5" height="15.0" fill="rgb(250,173,30)" rx="2" ry="2" /> +<text x="855.73" y="10351.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (2 samples, 0.07%)</title><rect x="408.4" y="9397" width="0.9" height="15.0" fill="rgb(251,84,18)" rx="2" ry="2" /> +<text x="411.39" y="9407.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (7 samples, 0.26%)</title><rect x="370.7" y="9749" width="3.0" height="15.0" fill="rgb(213,175,43)" rx="2" ry="2" /> +<text x="373.68" y="9759.5" ></text> +</g> +<g > +<title><unknown> (1 samples, 0.04%)</title><rect x="1021.8" y="2821" width="0.4" height="15.0" fill="rgb(210,65,44)" rx="2" ry="2" /> +<text x="1024.80" y="2831.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (3 samples, 0.11%)</title><rect x="402.8" y="9557" width="1.3" height="15.0" fill="rgb(217,16,48)" rx="2" ry="2" /> +<text x="405.76" y="9567.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="734.0" y="10165" width="0.4" height="15.0" fill="rgb(250,169,11)" rx="2" ry="2" /> +<text x="736.95" y="10175.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (2 samples, 0.07%)</title><rect x="307.0" y="9381" width="0.8" height="15.0" fill="rgb(251,155,30)" rx="2" ry="2" /> +<text x="309.95" y="9391.5" ></text> +</g> +<g > +<title>print_r (1 samples, 0.04%)</title><rect x="503.3" y="10325" width="0.5" height="15.0" fill="rgb(245,184,3)" rx="2" ry="2" /> +<text x="506.33" y="10335.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="453.5" y="9813" width="0.4" height="15.0" fill="rgb(206,41,4)" rx="2" ry="2" /> +<text x="456.48" y="9823.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Stack::pushValue (1 samples, 0.04%)</title><rect x="723.5" y="9877" width="0.5" height="15.0" fill="rgb(205,215,47)" rx="2" ry="2" /> +<text x="726.55" y="9887.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="291.8" y="9701" width="0.4" height="15.0" fill="rgb(234,187,24)" rx="2" ry="2" /> +<text x="294.78" y="9711.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (5 samples, 0.18%)</title><rect x="306.1" y="9493" width="2.2" height="15.0" fill="rgb(248,97,17)" rx="2" ry="2" /> +<text x="309.08" y="9503.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (7 samples, 0.26%)</title><rect x="460.8" y="9461" width="3.1" height="15.0" fill="rgb(234,70,23)" rx="2" ry="2" /> +<text x="463.84" y="9471.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="484.7" y="9749" width="0.4" height="15.0" fill="rgb(226,229,33)" rx="2" ry="2" /> +<text x="487.69" y="9759.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (8 samples, 0.29%)</title><rect x="543.6" y="10437" width="3.5" height="15.0" fill="rgb(251,11,45)" rx="2" ry="2" /> +<text x="546.64" y="10447.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="271.4" y="9749" width="0.4" height="15.0" fill="rgb(233,83,27)" rx="2" ry="2" /> +<text x="274.40" y="9759.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="1095.1" y="11109" width="0.4" height="15.0" fill="rgb(249,143,40)" rx="2" ry="2" /> +<text x="1098.06" y="11119.5" ></text> +</g> +<g > +<title><unknown> (1 samples, 0.04%)</title><rect x="1021.8" y="533" width="0.4" height="15.0" fill="rgb(239,195,12)" rx="2" ry="2" /> +<text x="1024.80" y="543.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (1 samples, 0.04%)</title><rect x="443.1" y="8757" width="0.4" height="15.0" fill="rgb(215,79,54)" rx="2" ry="2" /> +<text x="446.07" y="8767.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="733.5" y="9077" width="0.5" height="15.0" fill="rgb(205,69,21)" rx="2" ry="2" /> +<text x="736.52" y="9087.5" ></text> +</g> +<g > +<title><unknown> (1 samples, 0.04%)</title><rect x="1021.8" y="3269" width="0.4" height="15.0" fill="rgb(210,116,14)" rx="2" ry="2" /> +<text x="1024.80" y="3279.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\ControlFlowResult::Br (3 samples, 0.11%)</title><rect x="843.2" y="10165" width="1.3" height="15.0" fill="rgb(229,169,24)" rx="2" ry="2" /> +<text x="846.20" y="10175.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (1 samples, 0.04%)</title><rect x="740.0" y="10309" width="0.5" height="15.0" fill="rgb(227,211,1)" rx="2" ry="2" /> +<text x="743.02" y="10319.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (5 samples, 0.18%)</title><rect x="442.2" y="9509" width="2.2" height="15.0" fill="rgb(222,77,12)" rx="2" ry="2" /> +<text x="445.20" y="9519.5" ></text> +</g> +<g > +<title><unknown> (12 samples, 0.44%)</title><rect x="1017.9" y="11221" width="5.2" height="15.0" fill="rgb(246,179,2)" rx="2" ry="2" /> +<text x="1020.90" y="11231.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="1050.0" y="10981" width="0.4" height="15.0" fill="rgb(211,20,34)" rx="2" ry="2" /> +<text x="1052.98" y="10991.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Stack::pushI64 (1 samples, 0.04%)</title><rect x="496.4" y="10037" width="0.4" height="15.0" fill="rgb(224,211,30)" rx="2" ry="2" /> +<text x="499.39" y="10047.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (3 samples, 0.11%)</title><rect x="402.8" y="9621" width="1.3" height="15.0" fill="rgb(230,201,0)" rx="2" ry="2" /> +<text x="405.76" y="9631.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (241 samples, 8.85%)</title><rect x="547.1" y="10005" width="104.5" height="15.0" fill="rgb(227,181,33)" rx="2" ry="2" /> +<text x="550.11" y="10015.5" >Nsfisis\Wadd..</text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="733.5" y="8965" width="0.5" height="15.0" fill="rgb(236,34,13)" rx="2" ry="2" /> +<text x="736.52" y="8975.5" ></text> +</g> +<g > +<title><unknown> (1 samples, 0.04%)</title><rect x="1021.8" y="4325" width="0.4" height="15.0" fill="rgb(216,141,5)" rx="2" ry="2" /> +<text x="1024.80" y="4335.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="734.0" y="10085" width="0.4" height="15.0" fill="rgb(231,145,54)" rx="2" ry="2" /> +<text x="736.95" y="10095.5" ></text> +</g> +<g > +<title><unknown> (2 samples, 0.07%)</title><rect x="1021.4" y="6597" width="0.8" height="15.0" fill="rgb(225,171,37)" rx="2" ry="2" /> +<text x="1024.37" y="6607.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="738.3" y="10421" width="0.4" height="15.0" fill="rgb(236,116,44)" rx="2" ry="2" /> +<text x="741.29" y="10431.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="867.9" y="10437" width="0.4" height="15.0" fill="rgb(237,83,35)" rx="2" ry="2" /> +<text x="870.91" y="10447.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="486.9" y="9685" width="0.4" height="15.0" fill="rgb(221,41,31)" rx="2" ry="2" /> +<text x="489.86" y="9695.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (6 samples, 0.22%)</title><rect x="738.7" y="10917" width="2.6" height="15.0" fill="rgb(242,189,20)" rx="2" ry="2" /> +<text x="741.72" y="10927.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="1168.8" y="11093" width="0.4" height="15.0" fill="rgb(252,164,52)" rx="2" ry="2" /> +<text x="1171.76" y="11103.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (2 samples, 0.07%)</title><rect x="496.0" y="10149" width="0.8" height="15.0" fill="rgb(224,23,6)" rx="2" ry="2" /> +<text x="498.96" y="10159.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (2 samples, 0.07%)</title><rect x="468.6" y="9829" width="0.9" height="15.0" fill="rgb(238,171,45)" rx="2" ry="2" /> +<text x="471.65" y="9839.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="733.5" y="8981" width="0.5" height="15.0" fill="rgb(227,215,6)" rx="2" ry="2" /> +<text x="736.52" y="8991.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (3 samples, 0.11%)</title><rect x="289.6" y="9541" width="1.3" height="15.0" fill="rgb(217,168,27)" rx="2" ry="2" /> +<text x="292.61" y="9551.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (2 samples, 0.07%)</title><rect x="502.5" y="10373" width="0.8" height="15.0" fill="rgb(225,162,41)" rx="2" ry="2" /> +<text x="505.46" y="10383.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (2 samples, 0.07%)</title><rect x="453.9" y="9621" width="0.9" height="15.0" fill="rgb(245,59,20)" rx="2" ry="2" /> +<text x="456.91" y="9631.5" ></text> +</g> +<g > +<title><unknown> (1 samples, 0.04%)</title><rect x="1021.8" y="2341" width="0.4" height="15.0" fill="rgb(242,153,15)" rx="2" ry="2" /> +<text x="1024.80" y="2351.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (14 samples, 0.51%)</title><rect x="724.4" y="9989" width="6.1" height="15.0" fill="rgb(246,90,30)" rx="2" ry="2" /> +<text x="727.42" y="9999.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Stack::popI64 (1 samples, 0.04%)</title><rect x="649.4" y="9893" width="0.5" height="15.0" fill="rgb(219,197,45)" rx="2" ry="2" /> +<text x="652.42" y="9903.5" ></text> +</g> +<g > +<title><unknown> (2 samples, 0.07%)</title><rect x="1021.4" y="8613" width="0.8" height="15.0" fill="rgb(210,37,0)" rx="2" ry="2" /> +<text x="1024.37" y="8623.5" ></text> +</g> +<g > +<title>print_r (1 samples, 0.04%)</title><rect x="790.7" y="10213" width="0.5" height="15.0" fill="rgb(243,1,1)" rx="2" ry="2" /> +<text x="793.74" y="10223.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (290 samples, 10.65%)</title><rect x="742.6" y="10901" width="125.7" height="15.0" fill="rgb(215,15,53)" rx="2" ry="2" /> +<text x="745.62" y="10911.5" >Nsfisis\Waddiwa..</text> +</g> +<g > +<title><unknown> (2 samples, 0.07%)</title><rect x="1021.4" y="7381" width="0.8" height="15.0" fill="rgb(212,24,22)" rx="2" ry="2" /> +<text x="1024.37" y="7391.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="238.9" y="10837" width="0.4" height="15.0" fill="rgb(225,123,36)" rx="2" ry="2" /> +<text x="241.89" y="10847.5" ></text> +</g> +<g > +<title><unknown> (2 samples, 0.07%)</title><rect x="1021.4" y="10853" width="0.8" height="15.0" fill="rgb(235,93,43)" rx="2" ry="2" /> +<text x="1024.37" y="10863.5" ></text> +</g> +<g > +<title><unknown> (1 samples, 0.04%)</title><rect x="1021.8" y="149" width="0.4" height="15.0" fill="rgb(222,114,36)" rx="2" ry="2" /> +<text x="1024.80" y="159.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (9 samples, 0.33%)</title><rect x="304.3" y="9589" width="4.0" height="15.0" fill="rgb(207,224,20)" rx="2" ry="2" /> +<text x="307.35" y="9599.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (1 samples, 0.04%)</title><rect x="1115.9" y="10949" width="0.4" height="15.0" fill="rgb(219,218,43)" rx="2" ry="2" /> +<text x="1118.87" y="10959.5" ></text> +</g> +<g > +<title><unknown> (1 samples, 0.04%)</title><rect x="1021.8" y="3157" width="0.4" height="15.0" fill="rgb(241,7,8)" rx="2" ry="2" /> +<text x="1024.80" y="3167.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="446.1" y="9589" width="0.4" height="15.0" fill="rgb(235,156,53)" rx="2" ry="2" /> +<text x="449.11" y="9599.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="261.4" y="9573" width="0.5" height="15.0" fill="rgb(248,43,3)" rx="2" ry="2" /> +<text x="264.43" y="9583.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (10 samples, 0.37%)</title><rect x="533.7" y="10213" width="4.3" height="15.0" fill="rgb(222,119,4)" rx="2" ry="2" /> +<text x="536.67" y="10223.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::deactivateFrame (3 samples, 0.11%)</title><rect x="810.2" y="10325" width="1.4" height="15.0" fill="rgb(208,97,9)" rx="2" ry="2" /> +<text x="813.25" y="10335.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1,144 samples, 42.03%)</title><rect x="242.8" y="10789" width="495.9" height="15.0" fill="rgb(247,67,11)" rx="2" ry="2" /> +<text x="245.79" y="10799.5" >Nsfisis\Waddiwasi\Execution\Runtime::execInstr</text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="238.9" y="10405" width="0.4" height="15.0" fill="rgb(205,54,23)" rx="2" ry="2" /> +<text x="241.89" y="10415.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (6 samples, 0.22%)</title><rect x="288.3" y="9685" width="2.6" height="15.0" fill="rgb(233,29,42)" rx="2" ry="2" /> +<text x="291.31" y="9695.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (15 samples, 0.55%)</title><rect x="464.3" y="10053" width="6.5" height="15.0" fill="rgb(216,211,47)" rx="2" ry="2" /> +<text x="467.31" y="10063.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="790.7" y="10325" width="0.5" height="15.0" fill="rgb(218,174,46)" rx="2" ry="2" /> +<text x="793.74" y="10335.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (1 samples, 0.04%)</title><rect x="483.8" y="9765" width="0.5" height="15.0" fill="rgb(249,44,29)" rx="2" ry="2" /> +<text x="486.82" y="9775.5" ></text> +</g> +<g > +<title><unknown> (2 samples, 0.07%)</title><rect x="1021.4" y="6325" width="0.8" height="15.0" fill="rgb(223,208,0)" rx="2" ry="2" /> +<text x="1024.37" y="6335.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="482.5" y="9653" width="0.5" height="15.0" fill="rgb(208,217,25)" rx="2" ry="2" /> +<text x="485.52" y="9663.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Stack::pushValue (1 samples, 0.04%)</title><rect x="290.9" y="9685" width="0.4" height="15.0" fill="rgb(248,178,8)" rx="2" ry="2" /> +<text x="293.91" y="9695.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="373.3" y="9333" width="0.4" height="15.0" fill="rgb(214,117,40)" rx="2" ry="2" /> +<text x="376.28" y="9343.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (12 samples, 0.44%)</title><rect x="440.5" y="9765" width="5.2" height="15.0" fill="rgb(254,3,51)" rx="2" ry="2" /> +<text x="443.47" y="9775.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="740.5" y="10485" width="0.4" height="15.0" fill="rgb(245,220,3)" rx="2" ry="2" /> +<text x="743.46" y="10495.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (108 samples, 3.97%)</title><rect x="280.5" y="9941" width="46.8" height="15.0" fill="rgb(225,186,50)" rx="2" ry="2" /> +<text x="283.51" y="9951.5" >Nsfi..</text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (1 samples, 0.04%)</title><rect x="438.3" y="9685" width="0.4" height="15.0" fill="rgb(232,205,42)" rx="2" ry="2" /> +<text x="441.30" y="9695.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (7 samples, 0.26%)</title><rect x="499.4" y="10101" width="3.1" height="15.0" fill="rgb(222,110,41)" rx="2" ry="2" /> +<text x="502.43" y="10111.5" ></text> +</g> +<g > +<title><unknown> (1 samples, 0.04%)</title><rect x="1021.8" y="5957" width="0.4" height="15.0" fill="rgb(244,32,25)" rx="2" ry="2" /> +<text x="1024.80" y="5967.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (2 samples, 0.07%)</title><rect x="325.2" y="9413" width="0.8" height="15.0" fill="rgb(218,79,1)" rx="2" ry="2" /> +<text x="328.16" y="9423.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="453.5" y="9765" width="0.4" height="15.0" fill="rgb(234,11,22)" rx="2" ry="2" /> +<text x="456.48" y="9775.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="740.0" y="10373" width="0.5" height="15.0" fill="rgb(248,131,49)" rx="2" ry="2" /> +<text x="743.02" y="10383.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (73 samples, 2.68%)</title><rect x="1082.9" y="11221" width="31.7" height="15.0" fill="rgb(230,109,17)" rx="2" ry="2" /> +<text x="1085.92" y="11231.5" >Ns..</text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (13 samples, 0.48%)</title><rect x="541.5" y="10517" width="5.6" height="15.0" fill="rgb(210,132,28)" rx="2" ry="2" /> +<text x="544.48" y="10527.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (6 samples, 0.22%)</title><rect x="773.8" y="10069" width="2.6" height="15.0" fill="rgb(234,22,1)" rx="2" ry="2" /> +<text x="776.84" y="10079.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="790.7" y="10309" width="0.5" height="15.0" fill="rgb(223,189,48)" rx="2" ry="2" /> +<text x="793.74" y="10319.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (9 samples, 0.33%)</title><rect x="664.2" y="10005" width="3.9" height="15.0" fill="rgb(253,75,27)" rx="2" ry="2" /> +<text x="667.16" y="10015.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="1067.8" y="10485" width="0.4" height="15.0" fill="rgb(252,88,28)" rx="2" ry="2" /> +<text x="1070.75" y="10495.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="1036.1" y="11077" width="0.4" height="15.0" fill="rgb(221,74,53)" rx="2" ry="2" /> +<text x="1039.11" y="11087.5" ></text> +</g> +<g > +<title><unknown> (1 samples, 0.04%)</title><rect x="1021.8" y="645" width="0.4" height="15.0" fill="rgb(227,195,24)" rx="2" ry="2" /> +<text x="1024.80" y="655.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="870.1" y="9429" width="0.4" height="15.0" fill="rgb(223,157,51)" rx="2" ry="2" /> +<text x="873.07" y="9439.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (2 samples, 0.07%)</title><rect x="542.8" y="10197" width="0.8" height="15.0" fill="rgb(239,149,41)" rx="2" ry="2" /> +<text x="545.78" y="10207.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="870.1" y="8389" width="0.4" height="15.0" fill="rgb(227,143,21)" rx="2" ry="2" /> +<text x="873.07" y="8399.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="733.5" y="9013" width="0.5" height="15.0" fill="rgb(249,116,9)" rx="2" ry="2" /> +<text x="736.52" y="9023.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::deactivateLabel (1 samples, 0.04%)</title><rect x="386.7" y="9637" width="0.4" height="15.0" fill="rgb(210,128,25)" rx="2" ry="2" /> +<text x="389.72" y="9647.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (5 samples, 0.18%)</title><rect x="295.2" y="9717" width="2.2" height="15.0" fill="rgb(230,8,9)" rx="2" ry="2" /> +<text x="298.25" y="9727.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (7 samples, 0.26%)</title><rect x="533.7" y="10197" width="3.0" height="15.0" fill="rgb(221,25,45)" rx="2" ry="2" /> +<text x="536.67" y="10207.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="1139.7" y="11157" width="0.4" height="15.0" fill="rgb(217,206,16)" rx="2" ry="2" /> +<text x="1142.71" y="11167.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (2 samples, 0.07%)</title><rect x="467.3" y="9717" width="0.9" height="15.0" fill="rgb(237,220,27)" rx="2" ry="2" /> +<text x="470.35" y="9727.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (9 samples, 0.33%)</title><rect x="304.3" y="9541" width="4.0" height="15.0" fill="rgb(222,0,25)" rx="2" ry="2" /> +<text x="307.35" y="9551.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="733.5" y="9141" width="0.5" height="15.0" fill="rgb(219,58,36)" rx="2" ry="2" /> +<text x="736.52" y="9151.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="867.9" y="10725" width="0.4" height="15.0" fill="rgb(240,145,44)" rx="2" ry="2" /> +<text x="870.91" y="10735.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (3 samples, 0.11%)</title><rect x="722.2" y="9685" width="1.3" height="15.0" fill="rgb(237,41,14)" rx="2" ry="2" /> +<text x="725.25" y="9695.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="412.7" y="9109" width="0.5" height="15.0" fill="rgb(216,149,38)" rx="2" ry="2" /> +<text x="415.73" y="9119.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="870.1" y="9957" width="0.4" height="15.0" fill="rgb(252,73,11)" rx="2" ry="2" /> +<text x="873.07" y="9967.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (6 samples, 0.22%)</title><rect x="331.7" y="9877" width="2.6" height="15.0" fill="rgb(231,223,14)" rx="2" ry="2" /> +<text x="334.66" y="9887.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (2 samples, 0.07%)</title><rect x="737.0" y="10453" width="0.9" height="15.0" fill="rgb(223,45,51)" rx="2" ry="2" /> +<text x="739.99" y="10463.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (13 samples, 0.48%)</title><rect x="262.7" y="9605" width="5.7" height="15.0" fill="rgb(252,26,33)" rx="2" ry="2" /> +<text x="265.73" y="9615.5" ></text> +</g> +<g > +<title><unknown> (1 samples, 0.04%)</title><rect x="1021.8" y="1557" width="0.4" height="15.0" fill="rgb(238,4,6)" rx="2" ry="2" /> +<text x="1024.80" y="1567.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (2 samples, 0.07%)</title><rect x="737.0" y="10485" width="0.9" height="15.0" fill="rgb(233,139,5)" rx="2" ry="2" /> +<text x="739.99" y="10495.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (9 samples, 0.33%)</title><rect x="523.7" y="10245" width="3.9" height="15.0" fill="rgb(231,46,3)" rx="2" ry="2" /> +<text x="526.70" y="10255.5" ></text> +</g> +<g > +<title><unknown> (1 samples, 0.04%)</title><rect x="1021.8" y="1749" width="0.4" height="15.0" fill="rgb(249,111,40)" rx="2" ry="2" /> +<text x="1024.80" y="1759.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="439.2" y="9733" width="0.4" height="15.0" fill="rgb(243,141,50)" rx="2" ry="2" /> +<text x="442.17" y="9743.5" ></text> +</g> +<g > +<title>{closure}(/home/ken/src/php-waddiwasi/examples/php-on-wasm/php-wasm.php:284-295) (29 samples, 1.07%)</title><rect x="490.8" y="10709" width="12.5" height="15.0" fill="rgb(237,132,33)" rx="2" ry="2" /> +<text x="493.76" y="10719.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (2 samples, 0.07%)</title><rect x="482.1" y="9829" width="0.9" height="15.0" fill="rgb(248,37,48)" rx="2" ry="2" /> +<text x="485.09" y="9839.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (3 samples, 0.11%)</title><rect x="676.7" y="9845" width="1.3" height="15.0" fill="rgb(240,135,27)" rx="2" ry="2" /> +<text x="679.73" y="9855.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="769.9" y="9893" width="0.5" height="15.0" fill="rgb(234,55,38)" rx="2" ry="2" /> +<text x="772.93" y="9903.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="733.5" y="9621" width="0.5" height="15.0" fill="rgb(241,150,49)" rx="2" ry="2" /> +<text x="736.52" y="9631.5" ></text> +</g> +<g > +<title><unknown> (1 samples, 0.04%)</title><rect x="1021.8" y="3333" width="0.4" height="15.0" fill="rgb(215,102,29)" rx="2" ry="2" /> +<text x="1024.80" y="3343.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Stack::popI32 (1 samples, 0.04%)</title><rect x="848.0" y="10165" width="0.4" height="15.0" fill="rgb(243,141,26)" rx="2" ry="2" /> +<text x="850.96" y="10175.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="503.3" y="10405" width="0.5" height="15.0" fill="rgb(213,135,4)" rx="2" ry="2" /> +<text x="506.33" y="10415.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="1170.1" y="11205" width="0.4" height="15.0" fill="rgb(244,202,18)" rx="2" ry="2" /> +<text x="1173.06" y="11215.5" ></text> +</g> +<g > +<title><unknown> (2 samples, 0.07%)</title><rect x="1021.4" y="7157" width="0.8" height="15.0" fill="rgb(249,87,12)" rx="2" ry="2" /> +<text x="1024.37" y="7167.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (3 samples, 0.11%)</title><rect x="741.3" y="10709" width="1.3" height="15.0" fill="rgb(244,119,13)" rx="2" ry="2" /> +<text x="744.32" y="10719.5" ></text> +</g> +<g > +<title><unknown> (2 samples, 0.07%)</title><rect x="1021.4" y="9109" width="0.8" height="15.0" fill="rgb(228,130,13)" rx="2" ry="2" /> +<text x="1024.37" y="9119.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (1 samples, 0.04%)</title><rect x="344.7" y="9941" width="0.4" height="15.0" fill="rgb(227,25,29)" rx="2" ry="2" /> +<text x="347.67" y="9951.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="424.4" y="8885" width="0.5" height="15.0" fill="rgb(229,25,38)" rx="2" ry="2" /> +<text x="427.43" y="8895.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (8 samples, 0.29%)</title><rect x="460.4" y="9525" width="3.5" height="15.0" fill="rgb(244,200,43)" rx="2" ry="2" /> +<text x="463.41" y="9535.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="1116.3" y="11173" width="0.4" height="15.0" fill="rgb(213,82,15)" rx="2" ry="2" /> +<text x="1119.30" y="11183.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="453.5" y="9269" width="0.4" height="15.0" fill="rgb(222,16,25)" rx="2" ry="2" /> +<text x="456.48" y="9279.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (2 samples, 0.07%)</title><rect x="535.8" y="10021" width="0.9" height="15.0" fill="rgb(228,129,38)" rx="2" ry="2" /> +<text x="538.84" y="10031.5" ></text> +</g> +<g > +<title><unknown> (1 samples, 0.04%)</title><rect x="173.0" y="11125" width="0.4" height="15.0" fill="rgb(205,214,48)" rx="2" ry="2" /> +<text x="176.00" y="11135.5" ></text> +</g> +<g > +<title><unknown> (66 samples, 2.42%)</title><rect x="116.6" y="11173" width="28.7" height="15.0" fill="rgb(220,184,25)" rx="2" ry="2" /> +<text x="119.64" y="11183.5" ><u..</text> +</g> +<g > +<title><unknown> (1 samples, 0.04%)</title><rect x="320.0" y="9541" width="0.4" height="15.0" fill="rgb(222,116,4)" rx="2" ry="2" /> +<text x="322.96" y="9551.5" ></text> +</g> +<g > +<title><unknown> (1 samples, 0.04%)</title><rect x="1021.8" y="2245" width="0.4" height="15.0" fill="rgb(221,160,19)" rx="2" ry="2" /> +<text x="1024.80" y="2255.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="318.7" y="9493" width="0.4" height="15.0" fill="rgb(216,205,30)" rx="2" ry="2" /> +<text x="321.66" y="9503.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="404.9" y="9525" width="0.5" height="15.0" fill="rgb(251,193,31)" rx="2" ry="2" /> +<text x="407.92" y="9535.5" ></text> +</g> +<g > +<title><unknown> (1 samples, 0.04%)</title><rect x="1021.8" y="1669" width="0.4" height="15.0" fill="rgb(247,150,36)" rx="2" ry="2" /> +<text x="1024.80" y="1679.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (1 samples, 0.04%)</title><rect x="740.0" y="10325" width="0.5" height="15.0" fill="rgb(243,99,23)" rx="2" ry="2" /> +<text x="743.02" y="10335.5" ></text> +</g> +<g > +<title><unknown> (1 samples, 0.04%)</title><rect x="1021.8" y="2133" width="0.4" height="15.0" fill="rgb(206,7,42)" rx="2" ry="2" /> +<text x="1024.80" y="2143.5" ></text> +</g> +<g > +<title><unknown> (20 samples, 0.73%)</title><rect x="204.2" y="11157" width="8.7" height="15.0" fill="rgb(236,205,45)" rx="2" ry="2" /> +<text x="207.21" y="11167.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="261.0" y="9605" width="0.4" height="15.0" fill="rgb(229,104,29)" rx="2" ry="2" /> +<text x="264.00" y="9615.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="867.9" y="10533" width="0.4" height="15.0" fill="rgb(245,218,37)" rx="2" ry="2" /> +<text x="870.91" y="10543.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (5 samples, 0.18%)</title><rect x="306.1" y="9509" width="2.2" height="15.0" fill="rgb(248,76,25)" rx="2" ry="2" /> +<text x="309.08" y="9519.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="238.9" y="10469" width="0.4" height="15.0" fill="rgb(220,189,40)" rx="2" ry="2" /> +<text x="241.89" y="10479.5" ></text> +</g> +<g > +<title><unknown> (2 samples, 0.07%)</title><rect x="1021.4" y="7941" width="0.8" height="15.0" fill="rgb(215,75,8)" rx="2" ry="2" /> +<text x="1024.37" y="7951.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (2 samples, 0.07%)</title><rect x="526.7" y="10021" width="0.9" height="15.0" fill="rgb(226,68,42)" rx="2" ry="2" /> +<text x="529.74" y="10031.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="733.5" y="9381" width="0.5" height="15.0" fill="rgb(223,214,41)" rx="2" ry="2" /> +<text x="736.52" y="9391.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="733.5" y="8837" width="0.5" height="15.0" fill="rgb(253,165,49)" rx="2" ry="2" /> +<text x="736.52" y="8847.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="870.1" y="8949" width="0.4" height="15.0" fill="rgb(240,181,21)" rx="2" ry="2" /> +<text x="873.07" y="8959.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="796.8" y="10421" width="0.4" height="15.0" fill="rgb(243,22,36)" rx="2" ry="2" /> +<text x="799.81" y="10431.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::deactivateLabel (1 samples, 0.04%)</title><rect x="730.9" y="9909" width="0.5" height="15.0" fill="rgb(212,95,6)" rx="2" ry="2" /> +<text x="733.92" y="9919.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="733.5" y="8565" width="0.5" height="15.0" fill="rgb(254,3,13)" rx="2" ry="2" /> +<text x="736.52" y="8575.5" ></text> +</g> +<g > +<title><unknown> (1 samples, 0.04%)</title><rect x="664.2" y="9973" width="0.4" height="15.0" fill="rgb(243,162,34)" rx="2" ry="2" /> +<text x="667.16" y="9983.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="652.0" y="10485" width="0.5" height="15.0" fill="rgb(246,219,41)" rx="2" ry="2" /> +<text x="655.02" y="10495.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="372.0" y="9589" width="0.4" height="15.0" fill="rgb(212,220,8)" rx="2" ry="2" /> +<text x="374.98" y="9599.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="740.0" y="10501" width="0.5" height="15.0" fill="rgb(231,120,2)" rx="2" ry="2" /> +<text x="743.02" y="10511.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="870.1" y="9701" width="0.4" height="15.0" fill="rgb(236,189,39)" rx="2" ry="2" /> +<text x="873.07" y="9711.5" ></text> +</g> +<g > +<title><unknown> (1 samples, 0.04%)</title><rect x="1021.8" y="741" width="0.4" height="15.0" fill="rgb(210,132,54)" rx="2" ry="2" /> +<text x="1024.80" y="751.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (241 samples, 8.85%)</title><rect x="547.1" y="10213" width="104.5" height="15.0" fill="rgb(239,202,47)" rx="2" ry="2" /> +<text x="550.11" y="10223.5" >Nsfisis\Wadd..</text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="438.3" y="9605" width="0.4" height="15.0" fill="rgb(212,172,11)" rx="2" ry="2" /> +<text x="441.30" y="9615.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (20 samples, 0.73%)</title><rect x="261.9" y="9701" width="8.6" height="15.0" fill="rgb(254,88,29)" rx="2" ry="2" /> +<text x="264.87" y="9711.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="351.2" y="9557" width="0.4" height="15.0" fill="rgb(243,22,24)" rx="2" ry="2" /> +<text x="354.17" y="9567.5" ></text> +</g> +<g > +<title><unknown> (2 samples, 0.07%)</title><rect x="1021.4" y="8725" width="0.8" height="15.0" fill="rgb(216,80,46)" rx="2" ry="2" /> +<text x="1024.37" y="8735.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Stack::popI32 (1 samples, 0.04%)</title><rect x="318.2" y="9333" width="0.5" height="15.0" fill="rgb(218,188,40)" rx="2" ry="2" /> +<text x="321.22" y="9343.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="238.9" y="10325" width="0.4" height="15.0" fill="rgb(244,103,6)" rx="2" ry="2" /> +<text x="241.89" y="10335.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (1 samples, 0.04%)</title><rect x="1035.7" y="11077" width="0.4" height="15.0" fill="rgb(226,31,11)" rx="2" ry="2" /> +<text x="1038.67" y="11087.5" ></text> +</g> +<g > +<title><unknown> (2 samples, 0.07%)</title><rect x="1021.4" y="7269" width="0.8" height="15.0" fill="rgb(227,94,52)" rx="2" ry="2" /> +<text x="1024.37" y="7279.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="744.4" y="10341" width="0.4" height="15.0" fill="rgb(230,195,39)" rx="2" ry="2" /> +<text x="747.36" y="10351.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::wasmI32ToPhpInt (6 samples, 0.22%)</title><rect x="1157.5" y="11253" width="2.6" height="15.0" fill="rgb(238,213,38)" rx="2" ry="2" /> +<text x="1160.49" y="11263.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="502.9" y="10293" width="0.4" height="15.0" fill="rgb(215,186,45)" rx="2" ry="2" /> +<text x="505.89" y="10303.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (3 samples, 0.11%)</title><rect x="289.6" y="9557" width="1.3" height="15.0" fill="rgb(215,163,52)" rx="2" ry="2" /> +<text x="292.61" y="9567.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="790.3" y="10197" width="0.4" height="15.0" fill="rgb(223,116,47)" rx="2" ry="2" /> +<text x="793.31" y="10207.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="781.6" y="10245" width="0.5" height="15.0" fill="rgb(213,154,21)" rx="2" ry="2" /> +<text x="784.64" y="10255.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (133 samples, 4.89%)</title><rect x="278.3" y="9973" width="57.7" height="15.0" fill="rgb(211,83,15)" rx="2" ry="2" /> +<text x="281.34" y="9983.5" >Nsfisi..</text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (4 samples, 0.15%)</title><rect x="363.3" y="9749" width="1.7" height="15.0" fill="rgb(243,137,35)" rx="2" ry="2" /> +<text x="366.31" y="9759.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="870.5" y="9941" width="0.4" height="15.0" fill="rgb(251,52,39)" rx="2" ry="2" /> +<text x="873.51" y="9951.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (5 samples, 0.18%)</title><rect x="868.8" y="10789" width="2.1" height="15.0" fill="rgb(248,202,36)" rx="2" ry="2" /> +<text x="871.77" y="10799.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="539.7" y="10469" width="0.5" height="15.0" fill="rgb(252,117,52)" rx="2" ry="2" /> +<text x="542.74" y="10479.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="866.6" y="10373" width="0.4" height="15.0" fill="rgb(240,27,39)" rx="2" ry="2" /> +<text x="869.61" y="10383.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="503.3" y="10437" width="0.5" height="15.0" fill="rgb(231,137,51)" rx="2" ry="2" /> +<text x="506.33" y="10447.5" ></text> +</g> +<g > +<title><unknown> (2 samples, 0.07%)</title><rect x="1021.4" y="8469" width="0.8" height="15.0" fill="rgb(234,111,52)" rx="2" ry="2" /> +<text x="1024.37" y="8479.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (461 samples, 16.94%)</title><rect x="250.2" y="10085" width="199.8" height="15.0" fill="rgb(243,145,53)" rx="2" ry="2" /> +<text x="253.16" y="10095.5" >Nsfisis\Waddiwasi\Executio..</text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (1 samples, 0.04%)</title><rect x="867.9" y="10053" width="0.4" height="15.0" fill="rgb(242,67,7)" rx="2" ry="2" /> +<text x="870.91" y="10063.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Stack::pushI32 (1 samples, 0.04%)</title><rect x="473.4" y="9781" width="0.5" height="15.0" fill="rgb(233,115,20)" rx="2" ry="2" /> +<text x="476.42" y="9791.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (2 samples, 0.07%)</title><rect x="404.5" y="9621" width="0.9" height="15.0" fill="rgb(213,137,39)" rx="2" ry="2" /> +<text x="407.49" y="9631.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (241 samples, 8.85%)</title><rect x="547.1" y="10485" width="104.5" height="15.0" fill="rgb(248,77,16)" rx="2" ry="2" /> +<text x="550.11" y="10495.5" >Nsfisis\Wadd..</text> +</g> +<g > +<title>assert (1 samples, 0.04%)</title><rect x="163.5" y="11141" width="0.4" height="15.0" fill="rgb(224,71,9)" rx="2" ry="2" /> +<text x="166.46" y="11151.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (108 samples, 3.97%)</title><rect x="748.3" y="10549" width="46.8" height="15.0" fill="rgb(232,114,45)" rx="2" ry="2" /> +<text x="751.26" y="10559.5" >Nsfi..</text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="852.7" y="10213" width="0.5" height="15.0" fill="rgb(225,66,42)" rx="2" ry="2" /> +<text x="855.73" y="10223.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="536.3" y="9877" width="0.4" height="15.0" fill="rgb(251,170,19)" rx="2" ry="2" /> +<text x="539.27" y="9887.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="503.3" y="10373" width="0.5" height="15.0" fill="rgb(252,49,30)" rx="2" ry="2" /> +<text x="506.33" y="10383.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (1 samples, 0.04%)</title><rect x="331.2" y="9877" width="0.5" height="15.0" fill="rgb(249,99,40)" rx="2" ry="2" /> +<text x="334.23" y="9887.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="733.5" y="9797" width="0.5" height="15.0" fill="rgb(212,125,52)" rx="2" ry="2" /> +<text x="736.52" y="9807.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (4 samples, 0.15%)</title><rect x="266.2" y="9493" width="1.7" height="15.0" fill="rgb(254,224,38)" rx="2" ry="2" /> +<text x="269.20" y="9503.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (3 samples, 0.11%)</title><rect x="743.1" y="10117" width="1.3" height="15.0" fill="rgb(217,199,22)" rx="2" ry="2" /> +<text x="746.06" y="10127.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (343 samples, 12.60%)</title><rect x="503.3" y="10597" width="148.7" height="15.0" fill="rgb(210,52,34)" rx="2" ry="2" /> +<text x="506.33" y="10607.5" >Nsfisis\Waddiwasi\E..</text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (1 samples, 0.04%)</title><rect x="439.2" y="9669" width="0.4" height="15.0" fill="rgb(206,181,28)" rx="2" ry="2" /> +<text x="442.17" y="9679.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (3 samples, 0.11%)</title><rect x="402.8" y="9509" width="1.3" height="15.0" fill="rgb(233,138,9)" rx="2" ry="2" /> +<text x="405.76" y="9519.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (2 samples, 0.07%)</title><rect x="502.5" y="10389" width="0.8" height="15.0" fill="rgb(212,82,30)" rx="2" ry="2" /> +<text x="505.46" y="10399.5" ></text> +</g> +<g > +<title><unknown> (2 samples, 0.07%)</title><rect x="1021.4" y="7781" width="0.8" height="15.0" fill="rgb(253,124,41)" rx="2" ry="2" /> +<text x="1024.37" y="7791.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (48 samples, 1.76%)</title><rect x="450.0" y="10101" width="20.8" height="15.0" fill="rgb(215,186,25)" rx="2" ry="2" /> +<text x="453.01" y="10111.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (2 samples, 0.07%)</title><rect x="526.7" y="10037" width="0.9" height="15.0" fill="rgb(215,127,19)" rx="2" ry="2" /> +<text x="529.74" y="10047.5" ></text> +</g> +<g > +<title><unknown> (2 samples, 0.07%)</title><rect x="1021.4" y="9205" width="0.8" height="15.0" fill="rgb(247,158,43)" rx="2" ry="2" /> +<text x="1024.37" y="9215.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (3 samples, 0.11%)</title><rect x="1168.3" y="11221" width="1.3" height="15.0" fill="rgb(219,41,19)" rx="2" ry="2" /> +<text x="1171.32" y="11231.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::deactivateLabel (1 samples, 0.04%)</title><rect x="331.2" y="9493" width="0.5" height="15.0" fill="rgb(227,1,29)" rx="2" ry="2" /> +<text x="334.23" y="9503.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (7 samples, 0.26%)</title><rect x="460.8" y="9445" width="3.1" height="15.0" fill="rgb(221,206,25)" rx="2" ry="2" /> +<text x="463.84" y="9455.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\StackEntry::Value (2 samples, 0.07%)</title><rect x="173.4" y="11157" width="0.9" height="15.0" fill="rgb(253,163,26)" rx="2" ry="2" /> +<text x="176.43" y="11167.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (10 samples, 0.37%)</title><rect x="533.7" y="10261" width="4.3" height="15.0" fill="rgb(223,112,16)" rx="2" ry="2" /> +<text x="536.67" y="10271.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (3 samples, 0.11%)</title><rect x="462.6" y="9349" width="1.3" height="15.0" fill="rgb(241,3,6)" rx="2" ry="2" /> +<text x="465.58" y="9359.5" ></text> +</g> +<g > +<title><unknown> (1 samples, 0.04%)</title><rect x="1021.8" y="1221" width="0.4" height="15.0" fill="rgb(217,157,18)" rx="2" ry="2" /> +<text x="1024.80" y="1231.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (6 samples, 0.22%)</title><rect x="802.9" y="10325" width="2.6" height="15.0" fill="rgb(249,140,22)" rx="2" ry="2" /> +<text x="805.88" y="10335.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Nums\I32::__construct (1 samples, 0.04%)</title><rect x="140.1" y="11125" width="0.4" height="15.0" fill="rgb(240,227,30)" rx="2" ry="2" /> +<text x="143.05" y="11135.5" ></text> +</g> +<g > +<title><unknown> (2 samples, 0.07%)</title><rect x="1150.6" y="11221" width="0.8" height="15.0" fill="rgb(213,81,21)" rx="2" ry="2" /> +<text x="1153.55" y="11231.5" ></text> +</g> +<g > +<title><unknown> (1 samples, 0.04%)</title><rect x="1021.8" y="293" width="0.4" height="15.0" fill="rgb(244,216,48)" rx="2" ry="2" /> +<text x="1024.80" y="303.5" ></text> +</g> +<g > +<title><unknown> (1 samples, 0.04%)</title><rect x="1021.8" y="1509" width="0.4" height="15.0" fill="rgb(230,102,4)" rx="2" ry="2" /> +<text x="1024.80" y="1519.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="292.2" y="9749" width="0.4" height="15.0" fill="rgb(242,199,12)" rx="2" ry="2" /> +<text x="295.21" y="9759.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="325.6" y="9285" width="0.4" height="15.0" fill="rgb(241,56,54)" rx="2" ry="2" /> +<text x="328.59" y="9295.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="1170.1" y="11221" width="0.4" height="15.0" fill="rgb(247,92,34)" rx="2" ry="2" /> +<text x="1173.06" y="11231.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (5 samples, 0.18%)</title><rect x="474.3" y="9861" width="2.2" height="15.0" fill="rgb(239,55,24)" rx="2" ry="2" /> +<text x="477.28" y="9871.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (8 samples, 0.29%)</title><rect x="1064.7" y="10933" width="3.5" height="15.0" fill="rgb(242,57,32)" rx="2" ry="2" /> +<text x="1067.72" y="10943.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="284.0" y="9637" width="0.4" height="15.0" fill="rgb(239,162,4)" rx="2" ry="2" /> +<text x="286.98" y="9647.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (2 samples, 0.07%)</title><rect x="810.7" y="10309" width="0.9" height="15.0" fill="rgb(246,115,10)" rx="2" ry="2" /> +<text x="813.68" y="10319.5" ></text> +</g> +<g > +<title><unknown> (2 samples, 0.07%)</title><rect x="1021.4" y="7749" width="0.8" height="15.0" fill="rgb(206,141,33)" rx="2" ry="2" /> +<text x="1024.37" y="7759.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (3 samples, 0.11%)</title><rect x="492.5" y="10341" width="1.3" height="15.0" fill="rgb(254,41,27)" rx="2" ry="2" /> +<text x="495.49" y="10351.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doLoadI32 (1 samples, 0.04%)</title><rect x="254.9" y="9749" width="0.5" height="15.0" fill="rgb(243,98,18)" rx="2" ry="2" /> +<text x="257.93" y="9759.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (1 samples, 0.04%)</title><rect x="412.7" y="9237" width="0.5" height="15.0" fill="rgb(226,67,13)" rx="2" ry="2" /> +<text x="415.73" y="9247.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="870.1" y="9541" width="0.4" height="15.0" fill="rgb(221,139,23)" rx="2" ry="2" /> +<text x="873.07" y="9551.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="734.4" y="10181" width="0.4" height="15.0" fill="rgb(229,74,46)" rx="2" ry="2" /> +<text x="737.39" y="10191.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (3 samples, 0.11%)</title><rect x="717.5" y="9637" width="1.3" height="15.0" fill="rgb(219,33,48)" rx="2" ry="2" /> +<text x="720.48" y="9647.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (1 samples, 0.04%)</title><rect x="739.2" y="10677" width="0.4" height="15.0" fill="rgb(243,24,23)" rx="2" ry="2" /> +<text x="742.16" y="10687.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (3 samples, 0.11%)</title><rect x="442.2" y="9221" width="1.3" height="15.0" fill="rgb(231,216,3)" rx="2" ry="2" /> +<text x="445.20" y="9231.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (5 samples, 0.18%)</title><rect x="466.0" y="9845" width="2.2" height="15.0" fill="rgb(227,95,32)" rx="2" ry="2" /> +<text x="469.05" y="9855.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (4 samples, 0.15%)</title><rect x="259.7" y="9717" width="1.7" height="15.0" fill="rgb(252,139,50)" rx="2" ry="2" /> +<text x="262.70" y="9727.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="398.4" y="9445" width="0.5" height="15.0" fill="rgb(220,58,40)" rx="2" ry="2" /> +<text x="401.42" y="9455.5" ></text> +</g> +<g > +<title><unknown> (2 samples, 0.07%)</title><rect x="1021.4" y="8213" width="0.8" height="15.0" fill="rgb(254,83,28)" rx="2" ry="2" /> +<text x="1024.37" y="8223.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (1 samples, 0.04%)</title><rect x="734.0" y="10117" width="0.4" height="15.0" fill="rgb(221,55,50)" rx="2" ry="2" /> +<text x="736.95" y="10127.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (65 samples, 2.39%)</title><rect x="749.1" y="10485" width="28.2" height="15.0" fill="rgb(222,158,47)" rx="2" ry="2" /> +<text x="752.13" y="10495.5" >N..</text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (2 samples, 0.07%)</title><rect x="329.5" y="9845" width="0.9" height="15.0" fill="rgb(212,208,43)" rx="2" ry="2" /> +<text x="332.49" y="9855.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (1 samples, 0.04%)</title><rect x="867.9" y="10165" width="0.4" height="15.0" fill="rgb(213,35,43)" rx="2" ry="2" /> +<text x="870.91" y="10175.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (4 samples, 0.15%)</title><rect x="811.6" y="10309" width="1.7" height="15.0" fill="rgb(230,97,38)" rx="2" ry="2" /> +<text x="814.55" y="10319.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (14 samples, 0.51%)</title><rect x="262.3" y="9653" width="6.1" height="15.0" fill="rgb(234,167,53)" rx="2" ry="2" /> +<text x="265.30" y="9663.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (28 samples, 1.03%)</title><rect x="259.3" y="9765" width="12.1" height="15.0" fill="rgb(249,181,18)" rx="2" ry="2" /> +<text x="262.27" y="9775.5" ></text> +</g> +<g > +<title><unknown> (1 samples, 0.04%)</title><rect x="1021.8" y="1397" width="0.4" height="15.0" fill="rgb(245,182,21)" rx="2" ry="2" /> +<text x="1024.80" y="1407.5" ></text> +</g> +<g > +<title><unknown> (2 samples, 0.07%)</title><rect x="1021.4" y="8325" width="0.8" height="15.0" fill="rgb(226,29,35)" rx="2" ry="2" /> +<text x="1024.37" y="8335.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (1 samples, 0.04%)</title><rect x="469.9" y="9909" width="0.5" height="15.0" fill="rgb(222,54,28)" rx="2" ry="2" /> +<text x="472.95" y="9919.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doStoreI32 (1 samples, 0.04%)</title><rect x="544.1" y="10357" width="0.4" height="15.0" fill="rgb(248,39,12)" rx="2" ry="2" /> +<text x="547.08" y="10367.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="733.5" y="8357" width="0.5" height="15.0" fill="rgb(205,189,16)" rx="2" ry="2" /> +<text x="736.52" y="8367.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (1 samples, 0.04%)</title><rect x="474.7" y="9829" width="0.5" height="15.0" fill="rgb(229,163,54)" rx="2" ry="2" /> +<text x="477.72" y="9839.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="465.2" y="9861" width="0.4" height="15.0" fill="rgb(210,6,53)" rx="2" ry="2" /> +<text x="468.18" y="9871.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (24 samples, 0.88%)</title><rect x="417.9" y="9621" width="10.4" height="15.0" fill="rgb(239,28,46)" rx="2" ry="2" /> +<text x="420.93" y="9631.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (9 samples, 0.33%)</title><rect x="466.0" y="9925" width="3.9" height="15.0" fill="rgb(217,207,23)" rx="2" ry="2" /> +<text x="469.05" y="9935.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (162 samples, 5.95%)</title><rect x="797.2" y="10469" width="70.3" height="15.0" fill="rgb(211,202,27)" rx="2" ry="2" /> +<text x="800.24" y="10479.5" >Nsfisis..</text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (2 samples, 0.07%)</title><rect x="1141.9" y="10965" width="0.8" height="15.0" fill="rgb(216,28,51)" rx="2" ry="2" /> +<text x="1144.88" y="10975.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="780.3" y="10229" width="0.5" height="15.0" fill="rgb(207,57,14)" rx="2" ry="2" /> +<text x="783.34" y="10239.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (2 samples, 0.07%)</title><rect x="731.4" y="10021" width="0.8" height="15.0" fill="rgb(239,91,15)" rx="2" ry="2" /> +<text x="734.35" y="10031.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (3 samples, 0.11%)</title><rect x="402.8" y="9525" width="1.3" height="15.0" fill="rgb(219,160,2)" rx="2" ry="2" /> +<text x="405.76" y="9535.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="516.8" y="10197" width="0.4" height="15.0" fill="rgb(206,152,11)" rx="2" ry="2" /> +<text x="519.77" y="10207.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (2 samples, 0.07%)</title><rect x="486.9" y="9797" width="0.8" height="15.0" fill="rgb(208,56,41)" rx="2" ry="2" /> +<text x="489.86" y="9807.5" ></text> +</g> +<g > +<title><unknown> (2 samples, 0.07%)</title><rect x="1021.4" y="7637" width="0.8" height="15.0" fill="rgb(228,75,29)" rx="2" ry="2" /> +<text x="1024.37" y="7647.5" ></text> +</g> +<g > +<title><unknown> (1 samples, 0.04%)</title><rect x="1021.8" y="2773" width="0.4" height="15.0" fill="rgb(246,210,39)" rx="2" ry="2" /> +<text x="1024.80" y="2783.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (5 samples, 0.18%)</title><rect x="411.0" y="9541" width="2.2" height="15.0" fill="rgb(242,40,54)" rx="2" ry="2" /> +<text x="413.99" y="9551.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (13 samples, 0.48%)</title><rect x="353.3" y="9525" width="5.7" height="15.0" fill="rgb(235,219,47)" rx="2" ry="2" /> +<text x="356.34" y="9535.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (5 samples, 0.18%)</title><rect x="868.8" y="10901" width="2.1" height="15.0" fill="rgb(215,137,51)" rx="2" ry="2" /> +<text x="871.77" y="10911.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doLoadI64 (1 samples, 0.04%)</title><rect x="503.8" y="10389" width="0.4" height="15.0" fill="rgb(220,127,12)" rx="2" ry="2" /> +<text x="506.76" y="10399.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (343 samples, 12.60%)</title><rect x="503.3" y="10629" width="148.7" height="15.0" fill="rgb(229,53,4)" rx="2" ry="2" /> +<text x="506.33" y="10639.5" >Nsfisis\Waddiwasi\E..</text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="1036.1" y="10965" width="0.4" height="15.0" fill="rgb(225,79,51)" rx="2" ry="2" /> +<text x="1039.11" y="10975.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (2 samples, 0.07%)</title><rect x="734.0" y="10357" width="0.8" height="15.0" fill="rgb(254,180,39)" rx="2" ry="2" /> +<text x="736.95" y="10367.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="244.5" y="10373" width="0.5" height="15.0" fill="rgb(219,201,34)" rx="2" ry="2" /> +<text x="247.53" y="10383.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="870.5" y="9989" width="0.4" height="15.0" fill="rgb(222,123,24)" rx="2" ry="2" /> +<text x="873.51" y="9999.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (8 samples, 0.29%)</title><rect x="844.5" y="10165" width="3.5" height="15.0" fill="rgb(253,78,27)" rx="2" ry="2" /> +<text x="847.50" y="10175.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (20 samples, 0.73%)</title><rect x="351.6" y="9717" width="8.7" height="15.0" fill="rgb(249,8,16)" rx="2" ry="2" /> +<text x="354.60" y="9727.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="329.1" y="9733" width="0.4" height="15.0" fill="rgb(231,211,32)" rx="2" ry="2" /> +<text x="332.06" y="9743.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (41 samples, 1.51%)</title><rect x="777.3" y="10485" width="17.8" height="15.0" fill="rgb(228,181,9)" rx="2" ry="2" /> +<text x="780.30" y="10495.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="740.0" y="10261" width="0.5" height="15.0" fill="rgb(230,44,15)" rx="2" ry="2" /> +<text x="743.02" y="10271.5" ></text> +</g> +<g > +<title>print_r (1 samples, 0.04%)</title><rect x="717.0" y="9829" width="0.5" height="15.0" fill="rgb(222,33,24)" rx="2" ry="2" /> +<text x="720.05" y="9839.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="724.8" y="9925" width="0.5" height="15.0" fill="rgb(237,222,23)" rx="2" ry="2" /> +<text x="727.85" y="9935.5" ></text> +</g> +<g > +<title><unknown> (2 samples, 0.07%)</title><rect x="1021.4" y="8901" width="0.8" height="15.0" fill="rgb(249,138,50)" rx="2" ry="2" /> +<text x="1024.37" y="8911.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="265.3" y="9493" width="0.5" height="15.0" fill="rgb(249,32,26)" rx="2" ry="2" /> +<text x="268.33" y="9503.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="734.8" y="10501" width="0.5" height="15.0" fill="rgb(210,74,38)" rx="2" ry="2" /> +<text x="737.82" y="10511.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (6 samples, 0.22%)</title><rect x="857.9" y="10245" width="2.6" height="15.0" fill="rgb(238,112,9)" rx="2" ry="2" /> +<text x="860.94" y="10255.5" ></text> +</g> +<g > +<title><unknown> (2 samples, 0.07%)</title><rect x="1021.4" y="10965" width="0.8" height="15.0" fill="rgb(228,70,3)" rx="2" ry="2" /> +<text x="1024.37" y="10975.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (4 samples, 0.15%)</title><rect x="531.9" y="10229" width="1.8" height="15.0" fill="rgb(229,157,23)" rx="2" ry="2" /> +<text x="534.94" y="10239.5" ></text> +</g> +<g > +<title><unknown> (2 samples, 0.07%)</title><rect x="1021.4" y="6533" width="0.8" height="15.0" fill="rgb(207,51,40)" rx="2" ry="2" /> +<text x="1024.37" y="6543.5" ></text> +</g> +<g > +<title><unknown> (1 samples, 0.04%)</title><rect x="1021.8" y="885" width="0.4" height="15.0" fill="rgb(207,54,30)" rx="2" ry="2" /> +<text x="1024.80" y="895.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (29 samples, 1.07%)</title><rect x="490.8" y="10661" width="12.5" height="15.0" fill="rgb(216,43,36)" rx="2" ry="2" /> +<text x="493.76" y="10671.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="1169.2" y="11125" width="0.4" height="15.0" fill="rgb(239,70,9)" rx="2" ry="2" /> +<text x="1172.19" y="11135.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (1 samples, 0.04%)</title><rect x="245.4" y="10405" width="0.4" height="15.0" fill="rgb(236,114,16)" rx="2" ry="2" /> +<text x="248.39" y="10415.5" ></text> +</g> +<g > +<title><unknown> (2 samples, 0.07%)</title><rect x="1021.4" y="8677" width="0.8" height="15.0" fill="rgb(235,98,42)" rx="2" ry="2" /> +<text x="1024.37" y="8687.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="537.1" y="10069" width="0.5" height="15.0" fill="rgb(220,19,33)" rx="2" ry="2" /> +<text x="540.14" y="10079.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="870.1" y="8309" width="0.4" height="15.0" fill="rgb(206,178,23)" rx="2" ry="2" /> +<text x="873.07" y="8319.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (2 samples, 0.07%)</title><rect x="731.4" y="9941" width="0.8" height="15.0" fill="rgb(243,122,36)" rx="2" ry="2" /> +<text x="734.35" y="9951.5" ></text> +</g> +<g > +<title><unknown> (2 samples, 0.07%)</title><rect x="1021.4" y="9733" width="0.8" height="15.0" fill="rgb(233,160,20)" rx="2" ry="2" /> +<text x="1024.37" y="9743.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="483.4" y="9845" width="0.4" height="15.0" fill="rgb(241,128,39)" rx="2" ry="2" /> +<text x="486.39" y="9855.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="427.0" y="9269" width="0.5" height="15.0" fill="rgb(229,126,41)" rx="2" ry="2" /> +<text x="430.03" y="9279.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="453.5" y="9445" width="0.4" height="15.0" fill="rgb(250,20,31)" rx="2" ry="2" /> +<text x="456.48" y="9455.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="777.3" y="10213" width="0.4" height="15.0" fill="rgb(248,187,10)" rx="2" ry="2" /> +<text x="780.30" y="10223.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (2 samples, 0.07%)</title><rect x="424.0" y="9125" width="0.9" height="15.0" fill="rgb(207,70,40)" rx="2" ry="2" /> +<text x="427.00" y="9135.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (17 samples, 0.62%)</title><rect x="351.6" y="9573" width="7.4" height="15.0" fill="rgb(212,34,29)" rx="2" ry="2" /> +<text x="354.60" y="9583.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="869.2" y="10053" width="0.4" height="15.0" fill="rgb(239,68,30)" rx="2" ry="2" /> +<text x="872.21" y="10063.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1,150 samples, 42.25%)</title><rect x="242.8" y="11029" width="498.5" height="15.0" fill="rgb(245,121,11)" rx="2" ry="2" /> +<text x="245.79" y="11039.5" >Nsfisis\Waddiwasi\Execution\Runtime::execInstrs</text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (2 samples, 0.07%)</title><rect x="737.0" y="10341" width="0.9" height="15.0" fill="rgb(210,46,50)" rx="2" ry="2" /> +<text x="739.99" y="10351.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (56 samples, 2.06%)</title><rect x="504.2" y="10341" width="24.3" height="15.0" fill="rgb(215,71,20)" rx="2" ry="2" /> +<text x="507.20" y="10351.5" >N..</text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (15 samples, 0.55%)</title><rect x="284.8" y="9717" width="6.5" height="15.0" fill="rgb(254,106,41)" rx="2" ry="2" /> +<text x="287.84" y="9727.5" ></text> +</g> +<g > +<title><unknown> (2 samples, 0.07%)</title><rect x="1021.4" y="10421" width="0.8" height="15.0" fill="rgb(224,13,3)" rx="2" ry="2" /> +<text x="1024.37" y="10431.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::deactivateLabel (1 samples, 0.04%)</title><rect x="783.4" y="10421" width="0.4" height="15.0" fill="rgb(243,211,51)" rx="2" ry="2" /> +<text x="786.37" y="10431.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="261.4" y="9685" width="0.5" height="15.0" fill="rgb(240,9,15)" rx="2" ry="2" /> +<text x="264.43" y="9695.5" ></text> +</g> +<g > +<title><unknown> (1 samples, 0.04%)</title><rect x="1021.8" y="3957" width="0.4" height="15.0" fill="rgb(230,34,5)" rx="2" ry="2" /> +<text x="1024.80" y="3967.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (2 samples, 0.07%)</title><rect x="731.4" y="9989" width="0.8" height="15.0" fill="rgb(253,164,37)" rx="2" ry="2" /> +<text x="734.35" y="9999.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="245.4" y="10325" width="0.4" height="15.0" fill="rgb(213,13,20)" rx="2" ry="2" /> +<text x="248.39" y="10335.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Stack::popValue (1 samples, 0.04%)</title><rect x="239.8" y="10757" width="0.4" height="15.0" fill="rgb(219,219,54)" rx="2" ry="2" /> +<text x="242.76" y="10767.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (6 samples, 0.22%)</title><rect x="1140.1" y="11189" width="2.6" height="15.0" fill="rgb(222,147,40)" rx="2" ry="2" /> +<text x="1143.15" y="11199.5" ></text> +</g> +<g > +<title>print_r (1 samples, 0.04%)</title><rect x="867.5" y="10533" width="0.4" height="15.0" fill="rgb(217,50,26)" rx="2" ry="2" /> +<text x="870.47" y="10543.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="318.7" y="9557" width="0.4" height="15.0" fill="rgb(230,36,36)" rx="2" ry="2" /> +<text x="321.66" y="9567.5" ></text> +</g> +<g > +<title><unknown> (1 samples, 0.04%)</title><rect x="1021.8" y="4741" width="0.4" height="15.0" fill="rgb(227,207,34)" rx="2" ry="2" /> +<text x="1024.80" y="4751.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (2 samples, 0.07%)</title><rect x="408.4" y="9493" width="0.9" height="15.0" fill="rgb(208,178,26)" rx="2" ry="2" /> +<text x="411.39" y="9503.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (290 samples, 10.65%)</title><rect x="742.6" y="10981" width="125.7" height="15.0" fill="rgb(211,162,2)" rx="2" ry="2" /> +<text x="745.62" y="10991.5" >Nsfisis\Waddiwa..</text> +</g> +<g > +<title><unknown> (1 samples, 0.04%)</title><rect x="1021.8" y="5621" width="0.4" height="15.0" fill="rgb(209,184,29)" rx="2" ry="2" /> +<text x="1024.80" y="5631.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Stack::popI32 (1 samples, 0.04%)</title><rect x="494.7" y="10421" width="0.4" height="15.0" fill="rgb(226,214,13)" rx="2" ry="2" /> +<text x="497.66" y="10431.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (2 samples, 0.07%)</title><rect x="496.8" y="10373" width="0.9" height="15.0" fill="rgb(234,10,36)" rx="2" ry="2" /> +<text x="499.83" y="10383.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Stack::popI64 (1 samples, 0.04%)</title><rect x="642.9" y="9893" width="0.5" height="15.0" fill="rgb(210,101,29)" rx="2" ry="2" /> +<text x="645.92" y="9903.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (12 samples, 0.44%)</title><rect x="498.1" y="10437" width="5.2" height="15.0" fill="rgb(214,118,24)" rx="2" ry="2" /> +<text x="501.13" y="10447.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="424.4" y="9061" width="0.5" height="15.0" fill="rgb(212,222,51)" rx="2" ry="2" /> +<text x="427.43" y="9071.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (21 samples, 0.77%)</title><rect x="454.8" y="9749" width="9.1" height="15.0" fill="rgb(237,3,13)" rx="2" ry="2" /> +<text x="457.78" y="9759.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (3 samples, 0.11%)</title><rect x="423.6" y="9237" width="1.3" height="15.0" fill="rgb(230,85,46)" rx="2" ry="2" /> +<text x="426.56" y="9247.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\StackEntries\Value::__construct (1 samples, 0.04%)</title><rect x="651.2" y="9877" width="0.4" height="15.0" fill="rgb(215,192,8)" rx="2" ry="2" /> +<text x="654.15" y="9887.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="284.4" y="9605" width="0.4" height="15.0" fill="rgb(250,39,15)" rx="2" ry="2" /> +<text x="287.41" y="9615.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="484.7" y="9781" width="0.4" height="15.0" fill="rgb(223,229,25)" rx="2" ry="2" /> +<text x="487.69" y="9791.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::deactivateLabel (1 samples, 0.04%)</title><rect x="1138.0" y="11221" width="0.4" height="15.0" fill="rgb(223,100,43)" rx="2" ry="2" /> +<text x="1140.98" y="11231.5" ></text> +</g> +<g > +<title><unknown> (1 samples, 0.04%)</title><rect x="431.4" y="9829" width="0.4" height="15.0" fill="rgb(239,104,12)" rx="2" ry="2" /> +<text x="434.37" y="9839.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Stack::pushValue (3 samples, 0.11%)</title><rect x="1112.4" y="11093" width="1.3" height="15.0" fill="rgb(238,23,2)" rx="2" ry="2" /> +<text x="1115.40" y="11103.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (3 samples, 0.11%)</title><rect x="333.0" y="9845" width="1.3" height="15.0" fill="rgb(217,115,28)" rx="2" ry="2" /> +<text x="335.96" y="9855.5" ></text> +</g> +<g > +<title><unknown> (1 samples, 0.04%)</title><rect x="1021.8" y="4069" width="0.4" height="15.0" fill="rgb(245,93,40)" rx="2" ry="2" /> +<text x="1024.80" y="4079.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (290 samples, 10.65%)</title><rect x="742.6" y="10869" width="125.7" height="15.0" fill="rgb(216,25,23)" rx="2" ry="2" /> +<text x="745.62" y="10879.5" >Nsfisis\Waddiwa..</text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="263.6" y="9509" width="0.4" height="15.0" fill="rgb(209,212,46)" rx="2" ry="2" /> +<text x="266.60" y="9519.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="733.5" y="8389" width="0.5" height="15.0" fill="rgb(227,37,30)" rx="2" ry="2" /> +<text x="736.52" y="8399.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (23 samples, 0.84%)</title><rect x="528.9" y="10341" width="10.0" height="15.0" fill="rgb(227,17,50)" rx="2" ry="2" /> +<text x="531.91" y="10351.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (284 samples, 10.43%)</title><rect x="744.8" y="10709" width="123.1" height="15.0" fill="rgb(211,24,51)" rx="2" ry="2" /> +<text x="747.79" y="10719.5" >Nsfisis\Waddiwa..</text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Stack::popValue (1 samples, 0.04%)</title><rect x="1103.3" y="10997" width="0.4" height="15.0" fill="rgb(242,15,52)" rx="2" ry="2" /> +<text x="1106.30" y="11007.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="533.2" y="10069" width="0.5" height="15.0" fill="rgb(236,81,0)" rx="2" ry="2" /> +<text x="536.24" y="10079.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="502.9" y="10341" width="0.4" height="15.0" fill="rgb(244,194,24)" rx="2" ry="2" /> +<text x="505.89" y="10351.5" ></text> +</g> +<g > +<title><unknown> (1 samples, 0.04%)</title><rect x="1021.8" y="5893" width="0.4" height="15.0" fill="rgb(207,83,9)" rx="2" ry="2" /> +<text x="1024.80" y="5903.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="739.2" y="10213" width="0.4" height="15.0" fill="rgb(219,63,29)" rx="2" ry="2" /> +<text x="742.16" y="10223.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="733.5" y="9301" width="0.5" height="15.0" fill="rgb(223,62,8)" rx="2" ry="2" /> +<text x="736.52" y="9311.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (54 samples, 1.98%)</title><rect x="376.3" y="9701" width="23.4" height="15.0" fill="rgb(213,80,11)" rx="2" ry="2" /> +<text x="379.31" y="9711.5" >N..</text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (2 samples, 0.07%)</title><rect x="424.0" y="9189" width="0.9" height="15.0" fill="rgb(211,36,41)" rx="2" ry="2" /> +<text x="427.00" y="9199.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="453.5" y="9733" width="0.4" height="15.0" fill="rgb(208,132,34)" rx="2" ry="2" /> +<text x="456.48" y="9743.5" ></text> +</g> +<g > +<title><unknown> (1 samples, 0.04%)</title><rect x="481.7" y="9685" width="0.4" height="15.0" fill="rgb(249,163,23)" rx="2" ry="2" /> +<text x="484.65" y="9695.5" ></text> +</g> +<g > +<title><unknown> (2 samples, 0.07%)</title><rect x="1021.4" y="6101" width="0.8" height="15.0" fill="rgb(222,190,30)" rx="2" ry="2" /> +<text x="1024.37" y="6111.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="271.4" y="9717" width="0.4" height="15.0" fill="rgb(253,48,9)" rx="2" ry="2" /> +<text x="274.40" y="9727.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="261.0" y="9621" width="0.4" height="15.0" fill="rgb(229,98,0)" rx="2" ry="2" /> +<text x="264.00" y="9631.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (9 samples, 0.33%)</title><rect x="786.8" y="10325" width="3.9" height="15.0" fill="rgb(236,207,17)" rx="2" ry="2" /> +<text x="789.84" y="10335.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="1070.8" y="11173" width="0.4" height="15.0" fill="rgb(240,182,43)" rx="2" ry="2" /> +<text x="1073.79" y="11183.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (3 samples, 0.11%)</title><rect x="442.2" y="9045" width="1.3" height="15.0" fill="rgb(212,106,51)" rx="2" ry="2" /> +<text x="445.20" y="9055.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (36 samples, 1.32%)</title><rect x="301.7" y="9637" width="15.7" height="15.0" fill="rgb(217,163,52)" rx="2" ry="2" /> +<text x="304.75" y="9647.5" ></text> +</g> +<g > +<title><unknown> (1 samples, 0.04%)</title><rect x="630.8" y="9877" width="0.4" height="15.0" fill="rgb(232,82,44)" rx="2" ry="2" /> +<text x="633.78" y="9887.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Stack::popValue (1 samples, 0.04%)</title><rect x="730.9" y="10037" width="0.5" height="15.0" fill="rgb(223,214,17)" rx="2" ry="2" /> +<text x="733.92" y="10047.5" ></text> +</g> +<g > +<title><unknown> (2 samples, 0.07%)</title><rect x="1021.4" y="10357" width="0.8" height="15.0" fill="rgb(241,117,34)" rx="2" ry="2" /> +<text x="1024.37" y="10367.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1,458 samples, 53.56%)</title><rect x="238.9" y="11189" width="632.0" height="15.0" fill="rgb(207,36,1)" rx="2" ry="2" /> +<text x="241.89" y="11199.5" >Nsfisis\Waddiwasi\Execution\Runtime::execInstrs</text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="497.3" y="10325" width="0.4" height="15.0" fill="rgb(214,17,47)" rx="2" ry="2" /> +<text x="500.26" y="10335.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (88 samples, 3.23%)</title><rect x="814.6" y="10309" width="38.1" height="15.0" fill="rgb(218,127,26)" rx="2" ry="2" /> +<text x="817.58" y="10319.5" >Nsf..</text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="738.3" y="10485" width="0.4" height="15.0" fill="rgb(221,85,28)" rx="2" ry="2" /> +<text x="741.29" y="10495.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="731.8" y="9893" width="0.4" height="15.0" fill="rgb(238,134,39)" rx="2" ry="2" /> +<text x="734.79" y="9903.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (1 samples, 0.04%)</title><rect x="442.2" y="8773" width="0.4" height="15.0" fill="rgb(228,11,26)" rx="2" ry="2" /> +<text x="445.20" y="8783.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="1115.9" y="10997" width="0.4" height="15.0" fill="rgb(230,139,34)" rx="2" ry="2" /> +<text x="1118.87" y="11007.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="1041.7" y="11109" width="0.5" height="15.0" fill="rgb(224,134,41)" rx="2" ry="2" /> +<text x="1044.74" y="11119.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (1 samples, 0.04%)</title><rect x="453.5" y="9845" width="0.4" height="15.0" fill="rgb(247,223,19)" rx="2" ry="2" /> +<text x="456.48" y="9855.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (1 samples, 0.04%)</title><rect x="740.9" y="10773" width="0.4" height="15.0" fill="rgb(245,198,5)" rx="2" ry="2" /> +<text x="743.89" y="10783.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1,144 samples, 42.03%)</title><rect x="242.8" y="10837" width="495.9" height="15.0" fill="rgb(215,134,11)" rx="2" ry="2" /> +<text x="245.79" y="10847.5" >Nsfisis\Waddiwasi\Execution\Runtime::execInstrs</text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="442.2" y="8757" width="0.4" height="15.0" fill="rgb(246,115,21)" rx="2" ry="2" /> +<text x="445.20" y="8767.5" ></text> +</g> +<g > +<title><unknown> (1 samples, 0.04%)</title><rect x="1021.8" y="4549" width="0.4" height="15.0" fill="rgb(240,106,37)" rx="2" ry="2" /> +<text x="1024.80" y="4559.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (12 samples, 0.44%)</title><rect x="498.1" y="10453" width="5.2" height="15.0" fill="rgb(236,47,4)" rx="2" ry="2" /> +<text x="501.13" y="10463.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (289 samples, 10.62%)</title><rect x="742.6" y="10821" width="125.3" height="15.0" fill="rgb(247,28,44)" rx="2" ry="2" /> +<text x="745.62" y="10831.5" >Nsfisis\Waddiwa..</text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="489.9" y="10069" width="0.4" height="15.0" fill="rgb(248,115,4)" rx="2" ry="2" /> +<text x="492.89" y="10079.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (4 samples, 0.15%)</title><rect x="750.4" y="10293" width="1.8" height="15.0" fill="rgb(210,189,36)" rx="2" ry="2" /> +<text x="753.43" y="10303.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="867.0" y="10181" width="0.5" height="15.0" fill="rgb(211,29,51)" rx="2" ry="2" /> +<text x="870.04" y="10191.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (1 samples, 0.04%)</title><rect x="733.5" y="8693" width="0.5" height="15.0" fill="rgb(241,65,29)" rx="2" ry="2" /> +<text x="736.52" y="8703.5" ></text> +</g> +<g > +<title><unknown> (1 samples, 0.04%)</title><rect x="1021.8" y="4581" width="0.4" height="15.0" fill="rgb(228,134,2)" rx="2" ry="2" /> +<text x="1024.80" y="4591.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Stack::currentFrame (1 samples, 0.04%)</title><rect x="503.8" y="10373" width="0.4" height="15.0" fill="rgb(211,42,4)" rx="2" ry="2" /> +<text x="506.76" y="10383.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (5 samples, 0.18%)</title><rect x="742.6" y="10597" width="2.2" height="15.0" fill="rgb(228,63,37)" rx="2" ry="2" /> +<text x="745.62" y="10607.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (12 samples, 0.44%)</title><rect x="312.2" y="9557" width="5.2" height="15.0" fill="rgb(232,64,35)" rx="2" ry="2" /> +<text x="315.15" y="9567.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="733.5" y="8997" width="0.5" height="15.0" fill="rgb(223,4,47)" rx="2" ry="2" /> +<text x="736.52" y="9007.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Stack::pushI32 (1 samples, 0.04%)</title><rect x="473.4" y="9749" width="0.5" height="15.0" fill="rgb(250,170,9)" rx="2" ry="2" /> +<text x="476.42" y="9759.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (4 samples, 0.15%)</title><rect x="541.9" y="10405" width="1.7" height="15.0" fill="rgb(244,180,31)" rx="2" ry="2" /> +<text x="544.91" y="10415.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="470.8" y="10021" width="0.4" height="15.0" fill="rgb(226,0,18)" rx="2" ry="2" /> +<text x="473.82" y="10031.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="652.0" y="10373" width="0.5" height="15.0" fill="rgb(229,27,29)" rx="2" ry="2" /> +<text x="655.02" y="10383.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Stack::push (1 samples, 0.04%)</title><rect x="381.5" y="9413" width="0.4" height="15.0" fill="rgb(232,28,48)" rx="2" ry="2" /> +<text x="384.51" y="9423.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (7 samples, 0.26%)</title><rect x="294.4" y="9749" width="3.0" height="15.0" fill="rgb(241,215,18)" rx="2" ry="2" /> +<text x="297.38" y="9759.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (3 samples, 0.11%)</title><rect x="408.4" y="9589" width="1.3" height="15.0" fill="rgb(222,167,16)" rx="2" ry="2" /> +<text x="411.39" y="9599.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="740.0" y="10517" width="0.5" height="15.0" fill="rgb(229,222,51)" rx="2" ry="2" /> +<text x="743.02" y="10527.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (1 samples, 0.04%)</title><rect x="486.4" y="9861" width="0.5" height="15.0" fill="rgb(212,18,6)" rx="2" ry="2" /> +<text x="489.42" y="9871.5" ></text> +</g> +<g > +<title><unknown> (1 samples, 0.04%)</title><rect x="1021.8" y="1957" width="0.4" height="15.0" fill="rgb(216,7,28)" rx="2" ry="2" /> +<text x="1024.80" y="1967.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="238.9" y="10805" width="0.4" height="15.0" fill="rgb(246,31,51)" rx="2" ry="2" /> +<text x="241.89" y="10815.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="867.9" y="10309" width="0.4" height="15.0" fill="rgb(239,26,20)" rx="2" ry="2" /> +<text x="870.91" y="10319.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="733.5" y="8245" width="0.5" height="15.0" fill="rgb(240,198,33)" rx="2" ry="2" /> +<text x="736.52" y="8255.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (7 samples, 0.26%)</title><rect x="294.4" y="9765" width="3.0" height="15.0" fill="rgb(253,177,18)" rx="2" ry="2" /> +<text x="297.38" y="9775.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="867.9" y="10741" width="0.4" height="15.0" fill="rgb(241,69,9)" rx="2" ry="2" /> +<text x="870.91" y="10751.5" ></text> +</g> +<g > +<title><unknown> (1 samples, 0.04%)</title><rect x="172.6" y="11125" width="0.4" height="15.0" fill="rgb(226,144,7)" rx="2" ry="2" /> +<text x="175.56" y="11135.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (2 samples, 0.07%)</title><rect x="284.0" y="9701" width="0.8" height="15.0" fill="rgb(234,211,4)" rx="2" ry="2" /> +<text x="286.98" y="9711.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (4 samples, 0.15%)</title><rect x="380.2" y="9525" width="1.7" height="15.0" fill="rgb(212,226,33)" rx="2" ry="2" /> +<text x="383.21" y="9535.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="443.1" y="8837" width="0.4" height="15.0" fill="rgb(225,133,18)" rx="2" ry="2" /> +<text x="446.07" y="8847.5" ></text> +</g> +<g > +<title><unknown> (1 samples, 0.04%)</title><rect x="1021.8" y="5253" width="0.4" height="15.0" fill="rgb(253,106,16)" rx="2" ry="2" /> +<text x="1024.80" y="5263.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (2 samples, 0.07%)</title><rect x="419.7" y="9445" width="0.8" height="15.0" fill="rgb(232,52,42)" rx="2" ry="2" /> +<text x="422.66" y="9455.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="258.0" y="9781" width="0.4" height="15.0" fill="rgb(207,8,26)" rx="2" ry="2" /> +<text x="260.96" y="9791.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="867.9" y="10373" width="0.4" height="15.0" fill="rgb(208,6,9)" rx="2" ry="2" /> +<text x="870.91" y="10383.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="340.8" y="9989" width="0.4" height="15.0" fill="rgb(223,72,13)" rx="2" ry="2" /> +<text x="343.76" y="9999.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (30 samples, 1.10%)</title><rect x="758.7" y="10037" width="13.0" height="15.0" fill="rgb(251,131,30)" rx="2" ry="2" /> +<text x="761.66" y="10047.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="320.0" y="9573" width="0.4" height="15.0" fill="rgb(216,74,8)" rx="2" ry="2" /> +<text x="322.96" y="9583.5" ></text> +</g> +<g > +<title><unknown> (1 samples, 0.04%)</title><rect x="857.5" y="10261" width="0.4" height="15.0" fill="rgb(234,23,18)" rx="2" ry="2" /> +<text x="860.50" y="10271.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="1090.3" y="11157" width="0.4" height="15.0" fill="rgb(234,152,30)" rx="2" ry="2" /> +<text x="1093.29" y="11167.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (4 samples, 0.15%)</title><rect x="525.9" y="10117" width="1.7" height="15.0" fill="rgb(254,110,17)" rx="2" ry="2" /> +<text x="528.87" y="10127.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="790.3" y="10117" width="0.4" height="15.0" fill="rgb(232,102,16)" rx="2" ry="2" /> +<text x="793.31" y="10127.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (4 samples, 0.15%)</title><rect x="525.9" y="10165" width="1.7" height="15.0" fill="rgb(249,154,8)" rx="2" ry="2" /> +<text x="528.87" y="10175.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="730.9" y="9957" width="0.5" height="15.0" fill="rgb(241,142,9)" rx="2" ry="2" /> +<text x="733.92" y="9967.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="844.1" y="10085" width="0.4" height="15.0" fill="rgb(246,46,48)" rx="2" ry="2" /> +<text x="847.06" y="10095.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (1 samples, 0.04%)</title><rect x="740.0" y="10485" width="0.5" height="15.0" fill="rgb(207,85,40)" rx="2" ry="2" /> +<text x="743.02" y="10495.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (2 samples, 0.07%)</title><rect x="467.3" y="9637" width="0.9" height="15.0" fill="rgb(238,223,27)" rx="2" ry="2" /> +<text x="470.35" y="9647.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="372.0" y="9621" width="0.4" height="15.0" fill="rgb(245,67,7)" rx="2" ry="2" /> +<text x="374.98" y="9631.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (184 samples, 6.76%)</title><rect x="652.5" y="10517" width="79.7" height="15.0" fill="rgb(242,48,13)" rx="2" ry="2" /> +<text x="655.45" y="10527.5" >Nsfisis\W..</text> +</g> +<g > +<title><unknown> (1 samples, 0.04%)</title><rect x="1021.8" y="4437" width="0.4" height="15.0" fill="rgb(229,183,1)" rx="2" ry="2" /> +<text x="1024.80" y="4447.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="870.1" y="8757" width="0.4" height="15.0" fill="rgb(252,166,46)" rx="2" ry="2" /> +<text x="873.07" y="8767.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="739.6" y="10181" width="0.4" height="15.0" fill="rgb(250,158,18)" rx="2" ry="2" /> +<text x="742.59" y="10191.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (3 samples, 0.11%)</title><rect x="289.6" y="9477" width="1.3" height="15.0" fill="rgb(221,68,29)" rx="2" ry="2" /> +<text x="292.61" y="9487.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="453.5" y="9317" width="0.4" height="15.0" fill="rgb(248,45,43)" rx="2" ry="2" /> +<text x="456.48" y="9327.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (4 samples, 0.15%)</title><rect x="869.2" y="10277" width="1.7" height="15.0" fill="rgb(212,183,25)" rx="2" ry="2" /> +<text x="872.21" y="10287.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\StackEntries\Value::__construct (1 samples, 0.04%)</title><rect x="636.0" y="9877" width="0.4" height="15.0" fill="rgb(237,33,0)" rx="2" ry="2" /> +<text x="638.98" y="9887.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="325.6" y="9205" width="0.4" height="15.0" fill="rgb(245,162,2)" rx="2" ry="2" /> +<text x="328.59" y="9215.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (21 samples, 0.77%)</title><rect x="351.2" y="9749" width="9.1" height="15.0" fill="rgb(235,147,0)" rx="2" ry="2" /> +<text x="354.17" y="9759.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (91 samples, 3.34%)</title><rect x="813.3" y="10357" width="39.4" height="15.0" fill="rgb(208,131,11)" rx="2" ry="2" /> +<text x="816.28" y="10367.5" >Nsf..</text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="397.6" y="9413" width="0.4" height="15.0" fill="rgb(253,201,16)" rx="2" ry="2" /> +<text x="400.55" y="9423.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Stack::push (1 samples, 0.04%)</title><rect x="382.4" y="9493" width="0.4" height="15.0" fill="rgb(226,160,31)" rx="2" ry="2" /> +<text x="385.38" y="9503.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (5 samples, 0.18%)</title><rect x="868.8" y="10885" width="2.1" height="15.0" fill="rgb(237,15,41)" rx="2" ry="2" /> +<text x="871.77" y="10895.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="870.1" y="8149" width="0.4" height="15.0" fill="rgb(212,171,10)" rx="2" ry="2" /> +<text x="873.07" y="8159.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="307.8" y="9141" width="0.5" height="15.0" fill="rgb(214,40,42)" rx="2" ry="2" /> +<text x="310.82" y="9151.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="739.2" y="10629" width="0.4" height="15.0" fill="rgb(236,118,48)" rx="2" ry="2" /> +<text x="742.16" y="10639.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="427.5" y="9541" width="0.4" height="15.0" fill="rgb(221,182,24)" rx="2" ry="2" /> +<text x="430.47" y="9551.5" ></text> +</g> +<g > +<title><unknown> (2 samples, 0.07%)</title><rect x="1021.4" y="6885" width="0.8" height="15.0" fill="rgb(242,52,27)" rx="2" ry="2" /> +<text x="1024.37" y="6895.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (2 samples, 0.07%)</title><rect x="467.3" y="9605" width="0.9" height="15.0" fill="rgb(251,46,42)" rx="2" ry="2" /> +<text x="470.35" y="9615.5" ></text> +</g> +<g > +<title><unknown> (2 samples, 0.07%)</title><rect x="1021.4" y="9461" width="0.8" height="15.0" fill="rgb(250,16,31)" rx="2" ry="2" /> +<text x="1024.37" y="9471.5" ></text> +</g> +<g > +<title><unknown> (1 samples, 0.04%)</title><rect x="1021.8" y="357" width="0.4" height="15.0" fill="rgb(251,140,47)" rx="2" ry="2" /> +<text x="1024.80" y="367.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (1 samples, 0.04%)</title><rect x="483.8" y="9717" width="0.5" height="15.0" fill="rgb(217,201,48)" rx="2" ry="2" /> +<text x="486.82" y="9727.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="870.1" y="8613" width="0.4" height="15.0" fill="rgb(233,64,28)" rx="2" ry="2" /> +<text x="873.07" y="8623.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (2 samples, 0.07%)</title><rect x="311.3" y="9477" width="0.9" height="15.0" fill="rgb(237,105,0)" rx="2" ry="2" /> +<text x="314.29" y="9487.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="1067.8" y="10773" width="0.4" height="15.0" fill="rgb(213,19,17)" rx="2" ry="2" /> +<text x="1070.75" y="10783.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="453.5" y="9589" width="0.4" height="15.0" fill="rgb(253,167,15)" rx="2" ry="2" /> +<text x="456.48" y="9599.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (2 samples, 0.07%)</title><rect x="739.6" y="10549" width="0.9" height="15.0" fill="rgb(246,130,36)" rx="2" ry="2" /> +<text x="742.59" y="10559.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="734.4" y="10037" width="0.4" height="15.0" fill="rgb(215,184,43)" rx="2" ry="2" /> +<text x="737.39" y="10047.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (3 samples, 0.11%)</title><rect x="411.4" y="9285" width="1.3" height="15.0" fill="rgb(233,212,11)" rx="2" ry="2" /> +<text x="414.43" y="9295.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="740.0" y="10341" width="0.5" height="15.0" fill="rgb(227,8,13)" rx="2" ry="2" /> +<text x="743.02" y="10351.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="870.1" y="8549" width="0.4" height="15.0" fill="rgb(232,143,37)" rx="2" ry="2" /> +<text x="873.07" y="8559.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (34 samples, 1.25%)</title><rect x="1099.0" y="11125" width="14.7" height="15.0" fill="rgb(217,67,16)" rx="2" ry="2" /> +<text x="1101.96" y="11135.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (15 samples, 0.55%)</title><rect x="431.4" y="9861" width="6.5" height="15.0" fill="rgb(219,17,39)" rx="2" ry="2" /> +<text x="434.37" y="9871.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (53 samples, 1.95%)</title><rect x="697.5" y="10005" width="23.0" height="15.0" fill="rgb(244,112,41)" rx="2" ry="2" /> +<text x="700.54" y="10015.5" >N..</text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (280 samples, 10.29%)</title><rect x="746.5" y="10645" width="121.4" height="15.0" fill="rgb(227,66,51)" rx="2" ry="2" /> +<text x="749.52" y="10655.5" >Nsfisis\Waddiwa..</text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (31 samples, 1.14%)</title><rect x="1130.2" y="11237" width="13.4" height="15.0" fill="rgb(213,116,53)" rx="2" ry="2" /> +<text x="1133.18" y="11247.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="751.7" y="10229" width="0.5" height="15.0" fill="rgb(235,134,52)" rx="2" ry="2" /> +<text x="754.73" y="10239.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (5 samples, 0.18%)</title><rect x="868.8" y="10677" width="2.1" height="15.0" fill="rgb(223,12,48)" rx="2" ry="2" /> +<text x="871.77" y="10687.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (183 samples, 6.72%)</title><rect x="652.9" y="10389" width="79.3" height="15.0" fill="rgb(247,133,34)" rx="2" ry="2" /> +<text x="655.89" y="10399.5" >Nsfisis\W..</text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::wasmI32ToPhpInt (1 samples, 0.04%)</title><rect x="734.8" y="10517" width="0.5" height="15.0" fill="rgb(223,19,6)" rx="2" ry="2" /> +<text x="737.82" y="10527.5" ></text> +</g> +<g > +<title><unknown> (2 samples, 0.07%)</title><rect x="1021.4" y="10133" width="0.8" height="15.0" fill="rgb(206,12,44)" rx="2" ry="2" /> +<text x="1024.37" y="10143.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (6 samples, 0.22%)</title><rect x="738.7" y="10997" width="2.6" height="15.0" fill="rgb(214,62,29)" rx="2" ry="2" /> +<text x="741.72" y="11007.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="340.8" y="9829" width="0.4" height="15.0" fill="rgb(253,60,53)" rx="2" ry="2" /> +<text x="343.76" y="9839.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (36 samples, 1.32%)</title><rect x="507.7" y="10245" width="15.6" height="15.0" fill="rgb(213,193,1)" rx="2" ry="2" /> +<text x="510.66" y="10255.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="870.1" y="7813" width="0.4" height="15.0" fill="rgb(233,105,43)" rx="2" ry="2" /> +<text x="873.07" y="7823.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (1 samples, 0.04%)</title><rect x="345.1" y="9717" width="0.4" height="15.0" fill="rgb(218,122,50)" rx="2" ry="2" /> +<text x="348.10" y="9727.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="533.2" y="10037" width="0.5" height="15.0" fill="rgb(210,96,30)" rx="2" ry="2" /> +<text x="536.24" y="10047.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="372.0" y="9557" width="0.4" height="15.0" fill="rgb(205,118,35)" rx="2" ry="2" /> +<text x="374.98" y="9567.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (10 samples, 0.37%)</title><rect x="322.1" y="9573" width="4.4" height="15.0" fill="rgb(247,217,44)" rx="2" ry="2" /> +<text x="325.12" y="9583.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (46 samples, 1.69%)</title><rect x="700.6" y="9957" width="19.9" height="15.0" fill="rgb(224,107,12)" rx="2" ry="2" /> +<text x="703.57" y="9967.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="307.8" y="9397" width="0.5" height="15.0" fill="rgb(239,73,6)" rx="2" ry="2" /> +<text x="310.82" y="9407.5" ></text> +</g> +<g > +<title><main> (1,986 samples, 72.96%)</title><rect x="10.0" y="11253" width="860.9" height="15.0" fill="rgb(243,128,19)" rx="2" ry="2" /> +<text x="13.00" y="11263.5" ><main></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\StackEntry::Value (1 samples, 0.04%)</title><rect x="1156.2" y="11221" width="0.4" height="15.0" fill="rgb(224,216,50)" rx="2" ry="2" /> +<text x="1159.19" y="11231.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="870.5" y="9925" width="0.4" height="15.0" fill="rgb(217,49,54)" rx="2" ry="2" /> +<text x="873.51" y="9935.5" ></text> +</g> +<g > +<title><unknown> (2 samples, 0.07%)</title><rect x="1021.4" y="10197" width="0.8" height="15.0" fill="rgb(218,156,5)" rx="2" ry="2" /> +<text x="1024.37" y="10207.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (4 samples, 0.15%)</title><rect x="238.9" y="10933" width="1.7" height="15.0" fill="rgb(207,47,26)" rx="2" ry="2" /> +<text x="241.89" y="10943.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (3 samples, 0.11%)</title><rect x="676.7" y="9829" width="1.3" height="15.0" fill="rgb(244,53,43)" rx="2" ry="2" /> +<text x="679.73" y="9839.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Stack::pushValue (4 samples, 0.15%)</title><rect x="851.0" y="10261" width="1.7" height="15.0" fill="rgb(244,70,54)" rx="2" ry="2" /> +<text x="854.00" y="10271.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (1 samples, 0.04%)</title><rect x="733.5" y="8325" width="0.5" height="15.0" fill="rgb(219,86,45)" rx="2" ry="2" /> +<text x="736.52" y="8335.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\BinaryFormat\Decoder::{closure}(/home/ken/src/php-waddiwasi/src/BinaryFormat/Decoder.php:1003-1007) (4 samples, 0.15%)</title><rect x="739.2" y="10773" width="1.7" height="15.0" fill="rgb(240,117,18)" rx="2" ry="2" /> +<text x="742.16" y="10783.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (9 samples, 0.33%)</title><rect x="778.6" y="10453" width="3.9" height="15.0" fill="rgb(212,219,45)" rx="2" ry="2" /> +<text x="781.60" y="10463.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="268.8" y="9541" width="0.4" height="15.0" fill="rgb(233,104,23)" rx="2" ry="2" /> +<text x="271.80" y="9551.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (5 samples, 0.18%)</title><rect x="725.7" y="9925" width="2.2" height="15.0" fill="rgb(224,171,2)" rx="2" ry="2" /> +<text x="728.72" y="9935.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (4 samples, 0.15%)</title><rect x="541.9" y="10421" width="1.7" height="15.0" fill="rgb(210,154,14)" rx="2" ry="2" /> +<text x="544.91" y="10431.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (5 samples, 0.18%)</title><rect x="868.8" y="10373" width="2.1" height="15.0" fill="rgb(235,72,42)" rx="2" ry="2" /> +<text x="871.77" y="10383.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (3 samples, 0.11%)</title><rect x="442.2" y="9093" width="1.3" height="15.0" fill="rgb(240,91,51)" rx="2" ry="2" /> +<text x="445.20" y="9103.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (2 samples, 0.07%)</title><rect x="486.9" y="9765" width="0.8" height="15.0" fill="rgb(244,185,41)" rx="2" ry="2" /> +<text x="489.86" y="9775.5" ></text> +</g> +<g > +<title><unknown> (2 samples, 0.07%)</title><rect x="1021.4" y="7093" width="0.8" height="15.0" fill="rgb(236,160,44)" rx="2" ry="2" /> +<text x="1024.37" y="7103.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="360.3" y="9717" width="0.4" height="15.0" fill="rgb(238,190,41)" rx="2" ry="2" /> +<text x="363.27" y="9727.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="724.8" y="9765" width="0.5" height="15.0" fill="rgb(215,114,49)" rx="2" ry="2" /> +<text x="727.85" y="9775.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="238.9" y="10421" width="0.4" height="15.0" fill="rgb(234,50,27)" rx="2" ry="2" /> +<text x="241.89" y="10431.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (3 samples, 0.11%)</title><rect x="423.6" y="9205" width="1.3" height="15.0" fill="rgb(218,123,44)" rx="2" ry="2" /> +<text x="426.56" y="9215.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (1 samples, 0.04%)</title><rect x="796.8" y="10469" width="0.4" height="15.0" fill="rgb(215,224,27)" rx="2" ry="2" /> +<text x="799.81" y="10479.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="731.8" y="9877" width="0.4" height="15.0" fill="rgb(246,129,21)" rx="2" ry="2" /> +<text x="734.79" y="9887.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\StackEntries\Value::__construct (1 samples, 0.04%)</title><rect x="630.8" y="9861" width="0.4" height="15.0" fill="rgb(236,187,40)" rx="2" ry="2" /> +<text x="633.78" y="9871.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="740.5" y="10501" width="0.4" height="15.0" fill="rgb(229,94,25)" rx="2" ry="2" /> +<text x="743.46" y="10511.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (2 samples, 0.07%)</title><rect x="532.8" y="10197" width="0.9" height="15.0" fill="rgb(254,187,23)" rx="2" ry="2" /> +<text x="535.81" y="10207.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="398.4" y="9413" width="0.5" height="15.0" fill="rgb(254,119,38)" rx="2" ry="2" /> +<text x="401.42" y="9423.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::deactivateLabel (1 samples, 0.04%)</title><rect x="463.0" y="9317" width="0.4" height="15.0" fill="rgb(217,210,24)" rx="2" ry="2" /> +<text x="466.01" y="9327.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (23 samples, 0.84%)</title><rect x="720.5" y="10037" width="10.0" height="15.0" fill="rgb(220,68,28)" rx="2" ry="2" /> +<text x="723.51" y="10047.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="870.1" y="9845" width="0.4" height="15.0" fill="rgb(212,28,30)" rx="2" ry="2" /> +<text x="873.07" y="9855.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (185 samples, 6.80%)</title><rect x="652.0" y="10597" width="80.2" height="15.0" fill="rgb(229,106,53)" rx="2" ry="2" /> +<text x="655.02" y="10607.5" >Nsfisis\W..</text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="372.0" y="9573" width="0.4" height="15.0" fill="rgb(247,202,17)" rx="2" ry="2" /> +<text x="374.98" y="9583.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (2 samples, 0.07%)</title><rect x="1141.9" y="11061" width="0.8" height="15.0" fill="rgb(227,41,32)" rx="2" ry="2" /> +<text x="1144.88" y="11071.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (30 samples, 1.10%)</title><rect x="853.2" y="10357" width="13.0" height="15.0" fill="rgb(227,156,53)" rx="2" ry="2" /> +<text x="856.17" y="10367.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="790.7" y="10261" width="0.5" height="15.0" fill="rgb(241,96,12)" rx="2" ry="2" /> +<text x="793.74" y="10271.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (192 samples, 7.05%)</title><rect x="252.8" y="10037" width="83.2" height="15.0" fill="rgb(222,151,9)" rx="2" ry="2" /> +<text x="255.76" y="10047.5" >Nsfisis\W..</text> +</g> +<g > +<title><unknown> (2 samples, 0.07%)</title><rect x="1021.4" y="6709" width="0.8" height="15.0" fill="rgb(216,25,25)" rx="2" ry="2" /> +<text x="1024.37" y="6719.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="733.5" y="10021" width="0.5" height="15.0" fill="rgb(232,220,7)" rx="2" ry="2" /> +<text x="736.52" y="10031.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (1 samples, 0.04%)</title><rect x="733.5" y="8437" width="0.5" height="15.0" fill="rgb(221,170,27)" rx="2" ry="2" /> +<text x="736.52" y="8447.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (13 samples, 0.48%)</title><rect x="541.5" y="10501" width="5.6" height="15.0" fill="rgb(205,50,2)" rx="2" ry="2" /> +<text x="544.48" y="10511.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="238.9" y="10741" width="0.4" height="15.0" fill="rgb(241,49,36)" rx="2" ry="2" /> +<text x="241.89" y="10751.5" ></text> +</g> +<g > +<title><unknown> (1 samples, 0.04%)</title><rect x="1021.8" y="5829" width="0.4" height="15.0" fill="rgb(215,88,44)" rx="2" ry="2" /> +<text x="1024.80" y="5839.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (1 samples, 0.04%)</title><rect x="777.3" y="10357" width="0.4" height="15.0" fill="rgb(239,5,54)" rx="2" ry="2" /> +<text x="780.30" y="10367.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (3 samples, 0.11%)</title><rect x="741.3" y="10725" width="1.3" height="15.0" fill="rgb(238,169,19)" rx="2" ry="2" /> +<text x="744.32" y="10735.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (2 samples, 0.07%)</title><rect x="398.0" y="9525" width="0.9" height="15.0" fill="rgb(207,14,42)" rx="2" ry="2" /> +<text x="400.99" y="9535.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="1050.4" y="11013" width="0.4" height="15.0" fill="rgb(226,60,41)" rx="2" ry="2" /> +<text x="1053.41" y="11023.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Stack::popValue (1 samples, 0.04%)</title><rect x="291.8" y="9749" width="0.4" height="15.0" fill="rgb(245,131,31)" rx="2" ry="2" /> +<text x="294.78" y="9759.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (162 samples, 5.95%)</title><rect x="797.2" y="10485" width="70.3" height="15.0" fill="rgb(221,194,7)" rx="2" ry="2" /> +<text x="800.24" y="10495.5" >Nsfisis..</text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="491.6" y="10421" width="0.5" height="15.0" fill="rgb(254,15,42)" rx="2" ry="2" /> +<text x="494.62" y="10431.5" ></text> +</g> +<g > +<title><unknown> (2 samples, 0.07%)</title><rect x="139.2" y="11125" width="0.9" height="15.0" fill="rgb(209,126,12)" rx="2" ry="2" /> +<text x="142.18" y="11135.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (4 samples, 0.15%)</title><rect x="1066.5" y="10853" width="1.7" height="15.0" fill="rgb(250,75,50)" rx="2" ry="2" /> +<text x="1069.45" y="10863.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="373.3" y="9493" width="0.4" height="15.0" fill="rgb(248,179,54)" rx="2" ry="2" /> +<text x="376.28" y="9503.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (22 samples, 0.81%)</title><rect x="261.4" y="9733" width="9.6" height="15.0" fill="rgb(226,145,11)" rx="2" ry="2" /> +<text x="264.43" y="9743.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="495.5" y="10373" width="0.5" height="15.0" fill="rgb(216,88,25)" rx="2" ry="2" /> +<text x="498.53" y="10383.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (1 samples, 0.04%)</title><rect x="442.2" y="8789" width="0.4" height="15.0" fill="rgb(221,112,33)" rx="2" ry="2" /> +<text x="445.20" y="8799.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (2 samples, 0.07%)</title><rect x="486.9" y="9829" width="0.8" height="15.0" fill="rgb(225,34,25)" rx="2" ry="2" /> +<text x="489.86" y="9839.5" ></text> +</g> +<g > +<title><unknown> (3 samples, 0.11%)</title><rect x="711.8" y="9877" width="1.3" height="15.0" fill="rgb(233,62,22)" rx="2" ry="2" /> +<text x="714.84" y="9887.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (1 samples, 0.04%)</title><rect x="238.9" y="10773" width="0.4" height="15.0" fill="rgb(250,189,8)" rx="2" ry="2" /> +<text x="241.89" y="10783.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doLoadI32 (1 samples, 0.04%)</title><rect x="1063.0" y="10965" width="0.4" height="15.0" fill="rgb(235,134,12)" rx="2" ry="2" /> +<text x="1065.98" y="10975.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Stack::pushValue (1 samples, 0.04%)</title><rect x="284.4" y="9621" width="0.4" height="15.0" fill="rgb(249,191,2)" rx="2" ry="2" /> +<text x="287.41" y="9631.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="1067.8" y="10757" width="0.4" height="15.0" fill="rgb(223,42,33)" rx="2" ry="2" /> +<text x="1070.75" y="10767.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="267.1" y="9381" width="0.4" height="15.0" fill="rgb(250,220,52)" rx="2" ry="2" /> +<text x="270.07" y="9391.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="870.1" y="9349" width="0.4" height="15.0" fill="rgb(209,59,54)" rx="2" ry="2" /> +<text x="873.07" y="9359.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (4 samples, 0.15%)</title><rect x="241.1" y="10757" width="1.7" height="15.0" fill="rgb(254,227,51)" rx="2" ry="2" /> +<text x="244.06" y="10767.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (28 samples, 1.03%)</title><rect x="782.5" y="10453" width="12.1" height="15.0" fill="rgb(230,215,17)" rx="2" ry="2" /> +<text x="785.51" y="10463.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="475.6" y="9717" width="0.4" height="15.0" fill="rgb(246,219,14)" rx="2" ry="2" /> +<text x="478.58" y="9727.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="409.3" y="9093" width="0.4" height="15.0" fill="rgb(240,187,26)" rx="2" ry="2" /> +<text x="412.26" y="9103.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (2 samples, 0.07%)</title><rect x="442.2" y="8917" width="0.9" height="15.0" fill="rgb(215,170,51)" rx="2" ry="2" /> +<text x="445.20" y="8927.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (2 samples, 0.07%)</title><rect x="419.7" y="9397" width="0.8" height="15.0" fill="rgb(243,226,26)" rx="2" ry="2" /> +<text x="422.66" y="9407.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (2 samples, 0.07%)</title><rect x="277.0" y="9637" width="0.9" height="15.0" fill="rgb(206,65,31)" rx="2" ry="2" /> +<text x="280.04" y="9647.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="373.3" y="9429" width="0.4" height="15.0" fill="rgb(205,16,0)" rx="2" ry="2" /> +<text x="376.28" y="9439.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (2 samples, 0.07%)</title><rect x="737.0" y="10357" width="0.9" height="15.0" fill="rgb(226,19,52)" rx="2" ry="2" /> +<text x="739.99" y="10367.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (5 samples, 0.18%)</title><rect x="868.8" y="10997" width="2.1" height="15.0" fill="rgb(239,155,53)" rx="2" ry="2" /> +<text x="871.77" y="11007.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (5 samples, 0.18%)</title><rect x="868.8" y="10981" width="2.1" height="15.0" fill="rgb(242,172,41)" rx="2" ry="2" /> +<text x="871.77" y="10991.5" ></text> +</g> +<g > +<title><unknown> (2 samples, 0.07%)</title><rect x="1021.4" y="10533" width="0.8" height="15.0" fill="rgb(227,35,28)" rx="2" ry="2" /> +<text x="1024.37" y="10543.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="238.9" y="10501" width="0.4" height="15.0" fill="rgb(223,114,30)" rx="2" ry="2" /> +<text x="241.89" y="10511.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (2 samples, 0.07%)</title><rect x="241.9" y="10661" width="0.9" height="15.0" fill="rgb(213,67,54)" rx="2" ry="2" /> +<text x="244.93" y="10671.5" ></text> +</g> +<g > +<title><unknown> (1 samples, 0.04%)</title><rect x="1021.8" y="4181" width="0.4" height="15.0" fill="rgb(236,144,18)" rx="2" ry="2" /> +<text x="1024.80" y="4191.5" ></text> +</g> +<g > +<title><unknown> (2 samples, 0.07%)</title><rect x="1021.4" y="10149" width="0.8" height="15.0" fill="rgb(245,6,28)" rx="2" ry="2" /> +<text x="1024.37" y="10159.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (241 samples, 8.85%)</title><rect x="547.1" y="10181" width="104.5" height="15.0" fill="rgb(206,227,50)" rx="2" ry="2" /> +<text x="550.11" y="10191.5" >Nsfisis\Wadd..</text> +</g> +<g > +<title><unknown> (2 samples, 0.07%)</title><rect x="1021.4" y="7525" width="0.8" height="15.0" fill="rgb(248,88,32)" rx="2" ry="2" /> +<text x="1024.37" y="7535.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (191 samples, 7.02%)</title><rect x="652.0" y="10629" width="82.8" height="15.0" fill="rgb(237,137,45)" rx="2" ry="2" /> +<text x="655.02" y="10639.5" >Nsfisis\W..</text> +</g> +<g > +<title><unknown> (1 samples, 0.04%)</title><rect x="1021.8" y="3397" width="0.4" height="15.0" fill="rgb(229,195,15)" rx="2" ry="2" /> +<text x="1024.80" y="3407.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="454.3" y="9493" width="0.5" height="15.0" fill="rgb(250,206,5)" rx="2" ry="2" /> +<text x="457.34" y="9503.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (6 samples, 0.22%)</title><rect x="544.5" y="10405" width="2.6" height="15.0" fill="rgb(227,17,4)" rx="2" ry="2" /> +<text x="547.51" y="10415.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="365.0" y="9717" width="0.5" height="15.0" fill="rgb(212,126,34)" rx="2" ry="2" /> +<text x="368.04" y="9727.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (2 samples, 0.07%)</title><rect x="498.6" y="10133" width="0.8" height="15.0" fill="rgb(234,43,46)" rx="2" ry="2" /> +<text x="501.56" y="10143.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (2 samples, 0.07%)</title><rect x="526.7" y="9957" width="0.9" height="15.0" fill="rgb(226,33,52)" rx="2" ry="2" /> +<text x="529.74" y="9967.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (15 samples, 0.55%)</title><rect x="320.4" y="9621" width="6.5" height="15.0" fill="rgb(215,30,30)" rx="2" ry="2" /> +<text x="323.39" y="9631.5" ></text> +</g> +<g > +<title><unknown> (1 samples, 0.04%)</title><rect x="1021.8" y="4965" width="0.4" height="15.0" fill="rgb(208,168,23)" rx="2" ry="2" /> +<text x="1024.80" y="4975.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (14 samples, 0.51%)</title><rect x="517.2" y="10229" width="6.1" height="15.0" fill="rgb(228,73,5)" rx="2" ry="2" /> +<text x="520.20" y="10239.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (5 samples, 0.18%)</title><rect x="244.1" y="10517" width="2.2" height="15.0" fill="rgb(220,196,21)" rx="2" ry="2" /> +<text x="247.09" y="10527.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="739.2" y="10133" width="0.4" height="15.0" fill="rgb(225,31,51)" rx="2" ry="2" /> +<text x="742.16" y="10143.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (2 samples, 0.07%)</title><rect x="468.6" y="9845" width="0.9" height="15.0" fill="rgb(218,141,39)" rx="2" ry="2" /> +<text x="471.65" y="9855.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="1050.0" y="10965" width="0.4" height="15.0" fill="rgb(229,126,27)" rx="2" ry="2" /> +<text x="1052.98" y="10975.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (27 samples, 0.99%)</title><rect x="452.2" y="10053" width="11.7" height="15.0" fill="rgb(235,119,42)" rx="2" ry="2" /> +<text x="455.17" y="10063.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="490.3" y="10613" width="0.5" height="15.0" fill="rgb(224,192,53)" rx="2" ry="2" /> +<text x="493.32" y="10623.5" ></text> +</g> +<g > +<title><unknown> (1 samples, 0.04%)</title><rect x="1021.8" y="5717" width="0.4" height="15.0" fill="rgb(240,156,33)" rx="2" ry="2" /> +<text x="1024.80" y="5727.5" ></text> +</g> +<g > +<title><unknown> (1 samples, 0.04%)</title><rect x="1021.8" y="2485" width="0.4" height="15.0" fill="rgb(250,174,29)" rx="2" ry="2" /> +<text x="1024.80" y="2495.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (1 samples, 0.04%)</title><rect x="320.8" y="9573" width="0.5" height="15.0" fill="rgb(206,194,41)" rx="2" ry="2" /> +<text x="323.82" y="9583.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (16 samples, 0.59%)</title><rect x="841.5" y="10197" width="6.9" height="15.0" fill="rgb(252,123,44)" rx="2" ry="2" /> +<text x="844.46" y="10207.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (2 samples, 0.07%)</title><rect x="526.7" y="10053" width="0.9" height="15.0" fill="rgb(223,164,51)" rx="2" ry="2" /> +<text x="529.74" y="10063.5" ></text> +</g> +<g > +<title><unknown> (1 samples, 0.04%)</title><rect x="1021.8" y="5429" width="0.4" height="15.0" fill="rgb(247,131,20)" rx="2" ry="2" /> +<text x="1024.80" y="5439.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeHostFunc (5 samples, 0.18%)</title><rect x="868.8" y="10533" width="2.1" height="15.0" fill="rgb(205,192,34)" rx="2" ry="2" /> +<text x="871.77" y="10543.5" ></text> +</g> +<g > +<title><unknown> (1 samples, 0.04%)</title><rect x="1022.2" y="11173" width="0.5" height="15.0" fill="rgb(237,19,20)" rx="2" ry="2" /> +<text x="1025.23" y="11183.5" ></text> +</g> +<g > +<title><unknown> (2 samples, 0.07%)</title><rect x="1021.4" y="10261" width="0.8" height="15.0" fill="rgb(206,205,23)" rx="2" ry="2" /> +<text x="1024.37" y="10271.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (1 samples, 0.04%)</title><rect x="397.6" y="9493" width="0.4" height="15.0" fill="rgb(223,7,29)" rx="2" ry="2" /> +<text x="400.55" y="9503.5" ></text> +</g> +<g > +<title><unknown> (2 samples, 0.07%)</title><rect x="1021.4" y="9621" width="0.8" height="15.0" fill="rgb(226,99,25)" rx="2" ry="2" /> +<text x="1024.37" y="9631.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="1095.1" y="11125" width="0.4" height="15.0" fill="rgb(247,163,46)" rx="2" ry="2" /> +<text x="1098.06" y="11135.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (12 samples, 0.44%)</title><rect x="465.6" y="10021" width="5.2" height="15.0" fill="rgb(251,69,6)" rx="2" ry="2" /> +<text x="468.61" y="10031.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="738.3" y="10533" width="0.4" height="15.0" fill="rgb(222,131,27)" rx="2" ry="2" /> +<text x="741.29" y="10543.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (49 samples, 1.80%)</title><rect x="428.3" y="10005" width="21.3" height="15.0" fill="rgb(233,2,48)" rx="2" ry="2" /> +<text x="431.33" y="10015.5" >N..</text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\StackEntry::Value (1 samples, 0.04%)</title><rect x="463.0" y="9285" width="0.4" height="15.0" fill="rgb(220,59,22)" rx="2" ry="2" /> +<text x="466.01" y="9295.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (241 samples, 8.85%)</title><rect x="547.1" y="10373" width="104.5" height="15.0" fill="rgb(216,155,39)" rx="2" ry="2" /> +<text x="550.11" y="10383.5" >Nsfisis\Wadd..</text> +</g> +<g > +<title><unknown> (1 samples, 0.04%)</title><rect x="1021.8" y="5173" width="0.4" height="15.0" fill="rgb(208,82,1)" rx="2" ry="2" /> +<text x="1024.80" y="5183.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="742.6" y="10053" width="0.5" height="15.0" fill="rgb(240,75,46)" rx="2" ry="2" /> +<text x="745.62" y="10063.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (2 samples, 0.07%)</title><rect x="1141.9" y="10997" width="0.8" height="15.0" fill="rgb(243,220,40)" rx="2" ry="2" /> +<text x="1144.88" y="11007.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\BinaryFormat\Decoder::{closure}(/home/ken/src/php-waddiwasi/src/BinaryFormat/Decoder.php:1003-1007) (290 samples, 10.65%)</title><rect x="742.6" y="11029" width="125.7" height="15.0" fill="rgb(248,155,31)" rx="2" ry="2" /> +<text x="745.62" y="11039.5" >Nsfisis\Waddiwa..</text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="254.9" y="9733" width="0.5" height="15.0" fill="rgb(228,39,33)" rx="2" ry="2" /> +<text x="257.93" y="9743.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (184 samples, 6.76%)</title><rect x="652.5" y="10453" width="79.7" height="15.0" fill="rgb(245,65,7)" rx="2" ry="2" /> +<text x="655.45" y="10463.5" >Nsfisis\W..</text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (3 samples, 0.11%)</title><rect x="289.6" y="9621" width="1.3" height="15.0" fill="rgb(223,223,51)" rx="2" ry="2" /> +<text x="292.61" y="9631.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (3 samples, 0.11%)</title><rect x="542.3" y="10293" width="1.3" height="15.0" fill="rgb(208,27,15)" rx="2" ry="2" /> +<text x="545.34" y="10303.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doStoreI32 (1 samples, 0.04%)</title><rect x="713.1" y="9877" width="0.5" height="15.0" fill="rgb(212,62,1)" rx="2" ry="2" /> +<text x="716.14" y="9887.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (2 samples, 0.07%)</title><rect x="311.3" y="9461" width="0.9" height="15.0" fill="rgb(242,90,46)" rx="2" ry="2" /> +<text x="314.29" y="9471.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="740.9" y="10437" width="0.4" height="15.0" fill="rgb(254,142,34)" rx="2" ry="2" /> +<text x="743.89" y="10447.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="867.9" y="10821" width="0.4" height="15.0" fill="rgb(240,128,41)" rx="2" ry="2" /> +<text x="870.91" y="10831.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (1 samples, 0.04%)</title><rect x="734.4" y="10117" width="0.4" height="15.0" fill="rgb(225,112,31)" rx="2" ry="2" /> +<text x="737.39" y="10127.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="1112.0" y="10869" width="0.4" height="15.0" fill="rgb(231,126,28)" rx="2" ry="2" /> +<text x="1114.97" y="10879.5" ></text> +</g> +<g > +<title><unknown> (2 samples, 0.07%)</title><rect x="1021.4" y="7957" width="0.8" height="15.0" fill="rgb(231,161,47)" rx="2" ry="2" /> +<text x="1024.37" y="7967.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (4 samples, 0.15%)</title><rect x="869.2" y="10213" width="1.7" height="15.0" fill="rgb(241,159,8)" rx="2" ry="2" /> +<text x="872.21" y="10223.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="469.5" y="9813" width="0.4" height="15.0" fill="rgb(211,180,4)" rx="2" ry="2" /> +<text x="472.52" y="9823.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="733.5" y="9877" width="0.5" height="15.0" fill="rgb(235,218,32)" rx="2" ry="2" /> +<text x="736.52" y="9887.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="867.9" y="10101" width="0.4" height="15.0" fill="rgb(215,168,47)" rx="2" ry="2" /> +<text x="870.91" y="10111.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="316.9" y="9349" width="0.5" height="15.0" fill="rgb(237,191,21)" rx="2" ry="2" /> +<text x="319.92" y="9359.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (5 samples, 0.18%)</title><rect x="479.9" y="9733" width="2.2" height="15.0" fill="rgb(224,43,8)" rx="2" ry="2" /> +<text x="482.92" y="9743.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (9 samples, 0.33%)</title><rect x="304.3" y="9573" width="4.0" height="15.0" fill="rgb(219,164,18)" rx="2" ry="2" /> +<text x="307.35" y="9583.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="434.4" y="9813" width="0.4" height="15.0" fill="rgb(251,149,13)" rx="2" ry="2" /> +<text x="437.40" y="9823.5" ></text> +</g> +<g > +<title><unknown> (1 samples, 0.04%)</title><rect x="1021.8" y="4085" width="0.4" height="15.0" fill="rgb(207,163,27)" rx="2" ry="2" /> +<text x="1024.80" y="4095.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="1081.6" y="11189" width="0.5" height="15.0" fill="rgb(246,67,12)" rx="2" ry="2" /> +<text x="1084.62" y="11199.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="1152.7" y="11221" width="0.5" height="15.0" fill="rgb(232,11,53)" rx="2" ry="2" /> +<text x="1155.72" y="11231.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="443.1" y="8821" width="0.4" height="15.0" fill="rgb(222,206,4)" rx="2" ry="2" /> +<text x="446.07" y="8831.5" ></text> +</g> +<g > +<title><unknown> (1 samples, 0.04%)</title><rect x="1021.8" y="757" width="0.4" height="15.0" fill="rgb(242,114,40)" rx="2" ry="2" /> +<text x="1024.80" y="767.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (5 samples, 0.18%)</title><rect x="868.8" y="10389" width="2.1" height="15.0" fill="rgb(239,200,33)" rx="2" ry="2" /> +<text x="871.77" y="10399.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Stack::pushI32 (1 samples, 0.04%)</title><rect x="848.8" y="10229" width="0.5" height="15.0" fill="rgb(250,97,54)" rx="2" ry="2" /> +<text x="851.83" y="10239.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (5 samples, 0.18%)</title><rect x="868.8" y="10869" width="2.1" height="15.0" fill="rgb(210,204,6)" rx="2" ry="2" /> +<text x="871.77" y="10879.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="530.2" y="10069" width="0.4" height="15.0" fill="rgb(208,204,19)" rx="2" ry="2" /> +<text x="533.21" y="10079.5" ></text> +</g> +<g > +<title><unknown> (1 samples, 0.04%)</title><rect x="1021.8" y="5413" width="0.4" height="15.0" fill="rgb(254,213,54)" rx="2" ry="2" /> +<text x="1024.80" y="5423.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (289 samples, 10.62%)</title><rect x="742.6" y="10837" width="125.3" height="15.0" fill="rgb(212,212,18)" rx="2" ry="2" /> +<text x="745.62" y="10847.5" >Nsfisis\Waddiwa..</text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (3 samples, 0.11%)</title><rect x="722.2" y="9701" width="1.3" height="15.0" fill="rgb(245,139,15)" rx="2" ry="2" /> +<text x="725.25" y="9711.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (460 samples, 16.90%)</title><rect x="250.6" y="10053" width="199.4" height="15.0" fill="rgb(220,78,13)" rx="2" ry="2" /> +<text x="253.60" y="10063.5" >Nsfisis\Waddiwasi\Executio..</text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (11 samples, 0.40%)</title><rect x="422.7" y="9381" width="4.8" height="15.0" fill="rgb(249,51,14)" rx="2" ry="2" /> +<text x="425.70" y="9391.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="261.0" y="9413" width="0.4" height="15.0" fill="rgb(230,40,29)" rx="2" ry="2" /> +<text x="264.00" y="9423.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="331.2" y="9717" width="0.5" height="15.0" fill="rgb(217,47,2)" rx="2" ry="2" /> +<text x="334.23" y="9727.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="544.1" y="10389" width="0.4" height="15.0" fill="rgb(223,104,39)" rx="2" ry="2" /> +<text x="547.08" y="10399.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Stack::pushI32 (1 samples, 0.04%)</title><rect x="770.8" y="9941" width="0.4" height="15.0" fill="rgb(243,101,46)" rx="2" ry="2" /> +<text x="773.80" y="9951.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeHostFunc (1,159 samples, 42.58%)</title><rect x="238.9" y="11141" width="502.4" height="15.0" fill="rgb(207,95,53)" rx="2" ry="2" /> +<text x="241.89" y="11151.5" >Nsfisis\Waddiwasi\Execution\Runtime::doInvokeHostFunc</text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="867.0" y="10309" width="0.5" height="15.0" fill="rgb(230,110,28)" rx="2" ry="2" /> +<text x="870.04" y="10319.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (122 samples, 4.48%)</title><rect x="679.3" y="10133" width="52.9" height="15.0" fill="rgb(219,226,2)" rx="2" ry="2" /> +<text x="682.33" y="10143.5" >Nsfis..</text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="470.4" y="9845" width="0.4" height="15.0" fill="rgb(229,103,2)" rx="2" ry="2" /> +<text x="473.38" y="9855.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (5 samples, 0.18%)</title><rect x="514.2" y="10117" width="2.1" height="15.0" fill="rgb(234,194,51)" rx="2" ry="2" /> +<text x="517.17" y="10127.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (3 samples, 0.11%)</title><rect x="442.2" y="9253" width="1.3" height="15.0" fill="rgb(223,45,23)" rx="2" ry="2" /> +<text x="445.20" y="9263.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeHostFunc (1 samples, 0.04%)</title><rect x="738.3" y="10693" width="0.4" height="15.0" fill="rgb(229,122,26)" rx="2" ry="2" /> +<text x="741.29" y="10703.5" ></text> +</g> +<g > +<title><unknown> (2 samples, 0.07%)</title><rect x="1021.4" y="8069" width="0.8" height="15.0" fill="rgb(208,96,33)" rx="2" ry="2" /> +<text x="1024.37" y="8079.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (3 samples, 0.11%)</title><rect x="329.1" y="9861" width="1.3" height="15.0" fill="rgb(234,50,46)" rx="2" ry="2" /> +<text x="332.06" y="9871.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="336.4" y="10005" width="0.5" height="15.0" fill="rgb(230,126,14)" rx="2" ry="2" /> +<text x="339.43" y="10015.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (24 samples, 0.88%)</title><rect x="453.5" y="9893" width="10.4" height="15.0" fill="rgb(244,108,35)" rx="2" ry="2" /> +<text x="456.48" y="9903.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="544.1" y="10373" width="0.4" height="15.0" fill="rgb(220,61,36)" rx="2" ry="2" /> +<text x="547.08" y="10383.5" ></text> +</g> +<g > +<title><unknown> (2 samples, 0.07%)</title><rect x="1021.4" y="9157" width="0.8" height="15.0" fill="rgb(224,171,0)" rx="2" ry="2" /> +<text x="1024.37" y="9167.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (241 samples, 8.85%)</title><rect x="547.1" y="10197" width="104.5" height="15.0" fill="rgb(218,183,1)" rx="2" ry="2" /> +<text x="550.11" y="10207.5" >Nsfisis\Wadd..</text> +</g> +<g > +<title><unknown> (2 samples, 0.07%)</title><rect x="1021.4" y="9781" width="0.8" height="15.0" fill="rgb(245,93,1)" rx="2" ry="2" /> +<text x="1024.37" y="9791.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (4 samples, 0.15%)</title><rect x="750.4" y="10357" width="1.8" height="15.0" fill="rgb(251,167,48)" rx="2" ry="2" /> +<text x="753.43" y="10367.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (3 samples, 0.11%)</title><rect x="717.5" y="9733" width="1.3" height="15.0" fill="rgb(217,204,45)" rx="2" ry="2" /> +<text x="720.48" y="9743.5" ></text> +</g> +<g > +<title><unknown> (1 samples, 0.04%)</title><rect x="664.2" y="9957" width="0.4" height="15.0" fill="rgb(223,24,16)" rx="2" ry="2" /> +<text x="667.16" y="9967.5" ></text> +</g> +<g > +<title><unknown> (1 samples, 0.04%)</title><rect x="1021.8" y="1541" width="0.4" height="15.0" fill="rgb(238,91,39)" rx="2" ry="2" /> +<text x="1024.80" y="1551.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (13 samples, 0.48%)</title><rect x="685.8" y="9989" width="5.7" height="15.0" fill="rgb(213,70,25)" rx="2" ry="2" /> +<text x="688.83" y="9999.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (43 samples, 1.58%)</title><rect x="409.7" y="9685" width="18.6" height="15.0" fill="rgb(254,176,0)" rx="2" ry="2" /> +<text x="412.69" y="9695.5" ></text> +</g> +<g > +<title><unknown> (1 samples, 0.04%)</title><rect x="1129.7" y="11173" width="0.5" height="15.0" fill="rgb(205,171,31)" rx="2" ry="2" /> +<text x="1132.74" y="11183.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (2 samples, 0.07%)</title><rect x="307.0" y="9397" width="0.8" height="15.0" fill="rgb(236,149,19)" rx="2" ry="2" /> +<text x="309.95" y="9407.5" ></text> +</g> +<g > +<title><unknown> (2 samples, 0.07%)</title><rect x="1021.4" y="9525" width="0.8" height="15.0" fill="rgb(240,144,33)" rx="2" ry="2" /> +<text x="1024.37" y="9535.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (22 samples, 0.81%)</title><rect x="1058.6" y="11029" width="9.6" height="15.0" fill="rgb(207,193,32)" rx="2" ry="2" /> +<text x="1061.65" y="11039.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (258 samples, 9.48%)</title><rect x="540.2" y="10533" width="111.8" height="15.0" fill="rgb(243,133,52)" rx="2" ry="2" /> +<text x="543.18" y="10543.5" >Nsfisis\Waddi..</text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="740.9" y="10597" width="0.4" height="15.0" fill="rgb(230,62,4)" rx="2" ry="2" /> +<text x="743.89" y="10607.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (24 samples, 0.88%)</title><rect x="453.5" y="9861" width="10.4" height="15.0" fill="rgb(217,86,42)" rx="2" ry="2" /> +<text x="456.48" y="9871.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (2 samples, 0.07%)</title><rect x="453.9" y="9541" width="0.9" height="15.0" fill="rgb(208,169,20)" rx="2" ry="2" /> +<text x="456.91" y="9551.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (145 samples, 5.33%)</title><rect x="365.5" y="9877" width="62.8" height="15.0" fill="rgb(245,53,30)" rx="2" ry="2" /> +<text x="368.47" y="9887.5" >Nsfisi..</text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (3 samples, 0.11%)</title><rect x="442.2" y="9365" width="1.3" height="15.0" fill="rgb(234,212,29)" rx="2" ry="2" /> +<text x="445.20" y="9375.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (3 samples, 0.11%)</title><rect x="363.7" y="9685" width="1.3" height="15.0" fill="rgb(232,133,18)" rx="2" ry="2" /> +<text x="366.74" y="9695.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="719.2" y="9893" width="0.4" height="15.0" fill="rgb(205,82,36)" rx="2" ry="2" /> +<text x="722.21" y="9903.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (241 samples, 8.85%)</title><rect x="547.1" y="10405" width="104.5" height="15.0" fill="rgb(228,78,40)" rx="2" ry="2" /> +<text x="550.11" y="10415.5" >Nsfisis\Wadd..</text> +</g> +<g > +<title><unknown> (2 samples, 0.07%)</title><rect x="1021.4" y="7141" width="0.8" height="15.0" fill="rgb(233,120,51)" rx="2" ry="2" /> +<text x="1024.37" y="7151.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (4 samples, 0.15%)</title><rect x="774.3" y="9925" width="1.7" height="15.0" fill="rgb(220,68,51)" rx="2" ry="2" /> +<text x="777.27" y="9935.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (9 samples, 0.33%)</title><rect x="485.6" y="10053" width="3.9" height="15.0" fill="rgb(216,206,6)" rx="2" ry="2" /> +<text x="488.55" y="10063.5" ></text> +</g> +<g > +<title><unknown> (1 samples, 0.04%)</title><rect x="1021.8" y="2581" width="0.4" height="15.0" fill="rgb(210,121,0)" rx="2" ry="2" /> +<text x="1024.80" y="2591.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (3 samples, 0.11%)</title><rect x="741.3" y="10933" width="1.3" height="15.0" fill="rgb(224,91,14)" rx="2" ry="2" /> +<text x="744.32" y="10943.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="733.5" y="8309" width="0.5" height="15.0" fill="rgb(207,32,0)" rx="2" ry="2" /> +<text x="736.52" y="8319.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (7 samples, 0.26%)</title><rect x="767.3" y="9925" width="3.1" height="15.0" fill="rgb(219,35,42)" rx="2" ry="2" /> +<text x="770.33" y="9935.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\StackEntry::Value (1 samples, 0.04%)</title><rect x="1082.1" y="11189" width="0.4" height="15.0" fill="rgb(246,133,21)" rx="2" ry="2" /> +<text x="1085.06" y="11199.5" ></text> +</g> +<g > +<title><unknown> (2 samples, 0.07%)</title><rect x="1021.4" y="10373" width="0.8" height="15.0" fill="rgb(239,227,5)" rx="2" ry="2" /> +<text x="1024.37" y="10383.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="291.3" y="9637" width="0.5" height="15.0" fill="rgb(205,37,10)" rx="2" ry="2" /> +<text x="294.34" y="9647.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="238.9" y="10533" width="0.4" height="15.0" fill="rgb(252,137,15)" rx="2" ry="2" /> +<text x="241.89" y="10543.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (1 samples, 0.04%)</title><rect x="486.4" y="9877" width="0.5" height="15.0" fill="rgb(244,90,31)" rx="2" ry="2" /> +<text x="489.42" y="9887.5" ></text> +</g> +<g > +<title><unknown> (1 samples, 0.04%)</title><rect x="1021.8" y="1797" width="0.4" height="15.0" fill="rgb(229,169,3)" rx="2" ry="2" /> +<text x="1024.80" y="1807.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (263 samples, 9.66%)</title><rect x="336.0" y="10037" width="114.0" height="15.0" fill="rgb(223,124,42)" rx="2" ry="2" /> +<text x="339.00" y="10047.5" >Nsfisis\Waddiw..</text> +</g> +<g > +<title><unknown> (1 samples, 0.04%)</title><rect x="1021.8" y="869" width="0.4" height="15.0" fill="rgb(227,71,29)" rx="2" ry="2" /> +<text x="1024.80" y="879.5" ></text> +</g> +<g > +<title><unknown> (3 samples, 0.11%)</title><rect x="1020.9" y="11141" width="1.3" height="15.0" fill="rgb(231,222,46)" rx="2" ry="2" /> +<text x="1023.93" y="11151.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (241 samples, 8.85%)</title><rect x="547.1" y="10357" width="104.5" height="15.0" fill="rgb(240,164,42)" rx="2" ry="2" /> +<text x="550.11" y="10367.5" >Nsfisis\Wadd..</text> +</g> +<g > +<title><unknown> (1 samples, 0.04%)</title><rect x="320.0" y="9557" width="0.4" height="15.0" fill="rgb(212,228,46)" rx="2" ry="2" /> +<text x="322.96" y="9567.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (3 samples, 0.11%)</title><rect x="462.6" y="9397" width="1.3" height="15.0" fill="rgb(209,61,36)" rx="2" ry="2" /> +<text x="465.58" y="9407.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (7 samples, 0.26%)</title><rect x="499.4" y="10133" width="3.1" height="15.0" fill="rgb(218,155,34)" rx="2" ry="2" /> +<text x="502.43" y="10143.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="441.3" y="9477" width="0.5" height="15.0" fill="rgb(209,122,32)" rx="2" ry="2" /> +<text x="444.34" y="9487.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="727.0" y="9781" width="0.5" height="15.0" fill="rgb(229,143,43)" rx="2" ry="2" /> +<text x="730.02" y="9791.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (7 samples, 0.26%)</title><rect x="735.3" y="10565" width="3.0" height="15.0" fill="rgb(241,105,0)" rx="2" ry="2" /> +<text x="738.25" y="10575.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (2 samples, 0.07%)</title><rect x="498.6" y="10117" width="0.8" height="15.0" fill="rgb(219,67,3)" rx="2" ry="2" /> +<text x="501.56" y="10127.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (1,144 samples, 42.03%)</title><rect x="242.8" y="10981" width="495.9" height="15.0" fill="rgb(254,227,28)" rx="2" ry="2" /> +<text x="245.79" y="10991.5" >Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc</text> +</g> +<g > +<title>Nsfisis\Waddiwasi\BinaryFormat\Decoder::{closure}(/home/ken/src/php-waddiwasi/src/BinaryFormat/Decoder.php:263-266) (7 samples, 0.26%)</title><rect x="10.4" y="11205" width="3.1" height="15.0" fill="rgb(227,119,31)" rx="2" ry="2" /> +<text x="13.43" y="11215.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="359.0" y="9445" width="0.4" height="15.0" fill="rgb(248,132,42)" rx="2" ry="2" /> +<text x="361.97" y="9455.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\StackEntries\Value::__construct (1 samples, 0.04%)</title><rect x="1128.9" y="11221" width="0.4" height="15.0" fill="rgb(242,173,44)" rx="2" ry="2" /> +<text x="1131.88" y="11231.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="351.2" y="9669" width="0.4" height="15.0" fill="rgb(227,3,4)" rx="2" ry="2" /> +<text x="354.17" y="9679.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (1 samples, 0.04%)</title><rect x="870.1" y="8165" width="0.4" height="15.0" fill="rgb(228,176,0)" rx="2" ry="2" /> +<text x="873.07" y="8175.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (1 samples, 0.04%)</title><rect x="265.3" y="9445" width="0.5" height="15.0" fill="rgb(209,159,7)" rx="2" ry="2" /> +<text x="268.33" y="9455.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="271.4" y="9621" width="0.4" height="15.0" fill="rgb(221,226,31)" rx="2" ry="2" /> +<text x="274.40" y="9631.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (1 samples, 0.04%)</title><rect x="740.5" y="10437" width="0.4" height="15.0" fill="rgb(249,129,36)" rx="2" ry="2" /> +<text x="743.46" y="10447.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\StackEntries\Value::__construct (1 samples, 0.04%)</title><rect x="633.4" y="9861" width="0.4" height="15.0" fill="rgb(231,133,52)" rx="2" ry="2" /> +<text x="636.38" y="9871.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (14 samples, 0.51%)</title><rect x="262.3" y="9621" width="6.1" height="15.0" fill="rgb(226,3,14)" rx="2" ry="2" /> +<text x="265.30" y="9631.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (1 samples, 0.04%)</title><rect x="265.3" y="9525" width="0.5" height="15.0" fill="rgb(223,82,19)" rx="2" ry="2" /> +<text x="268.33" y="9535.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (26 samples, 0.96%)</title><rect x="528.5" y="10437" width="11.2" height="15.0" fill="rgb(254,165,24)" rx="2" ry="2" /> +<text x="531.47" y="10447.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="740.9" y="10341" width="0.4" height="15.0" fill="rgb(246,10,41)" rx="2" ry="2" /> +<text x="743.89" y="10351.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (1 samples, 0.04%)</title><rect x="443.1" y="8597" width="0.4" height="15.0" fill="rgb(252,46,10)" rx="2" ry="2" /> +<text x="446.07" y="8607.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (56 samples, 2.06%)</title><rect x="404.1" y="9733" width="24.2" height="15.0" fill="rgb(227,7,24)" rx="2" ry="2" /> +<text x="407.06" y="9743.5" >N..</text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (562 samples, 20.65%)</title><rect x="246.7" y="10373" width="243.6" height="15.0" fill="rgb(239,25,22)" rx="2" ry="2" /> +<text x="249.69" y="10383.5" >Nsfisis\Waddiwasi\Execution\Runt..</text> +</g> +<g > +<title><unknown> (20 samples, 0.73%)</title><rect x="131.8" y="11141" width="8.7" height="15.0" fill="rgb(232,41,19)" rx="2" ry="2" /> +<text x="134.81" y="11151.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="739.2" y="10085" width="0.4" height="15.0" fill="rgb(226,78,19)" rx="2" ry="2" /> +<text x="742.16" y="10095.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="850.6" y="10245" width="0.4" height="15.0" fill="rgb(236,128,53)" rx="2" ry="2" /> +<text x="853.57" y="10255.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (1 samples, 0.04%)</title><rect x="868.3" y="10805" width="0.5" height="15.0" fill="rgb(217,188,44)" rx="2" ry="2" /> +<text x="871.34" y="10815.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="1095.1" y="11045" width="0.4" height="15.0" fill="rgb(208,145,45)" rx="2" ry="2" /> +<text x="1098.06" y="11055.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (277 samples, 10.18%)</title><rect x="747.8" y="10597" width="120.1" height="15.0" fill="rgb(220,156,44)" rx="2" ry="2" /> +<text x="750.83" y="10607.5" >Nsfisis\Waddiw..</text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (1 samples, 0.04%)</title><rect x="1071.7" y="11125" width="0.4" height="15.0" fill="rgb(247,212,39)" rx="2" ry="2" /> +<text x="1074.65" y="11135.5" ></text> +</g> +<g > +<title><unknown> (1 samples, 0.04%)</title><rect x="1021.8" y="1381" width="0.4" height="15.0" fill="rgb(220,173,46)" rx="2" ry="2" /> +<text x="1024.80" y="1391.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (5 samples, 0.18%)</title><rect x="868.8" y="10453" width="2.1" height="15.0" fill="rgb(246,131,43)" rx="2" ry="2" /> +<text x="871.77" y="10463.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="733.5" y="8405" width="0.5" height="15.0" fill="rgb(210,52,20)" rx="2" ry="2" /> +<text x="736.52" y="8415.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Stack::pushValue (1 samples, 0.04%)</title><rect x="335.1" y="9877" width="0.5" height="15.0" fill="rgb(209,220,53)" rx="2" ry="2" /> +<text x="338.13" y="9887.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (2 samples, 0.07%)</title><rect x="731.4" y="10005" width="0.8" height="15.0" fill="rgb(231,104,28)" rx="2" ry="2" /> +<text x="734.35" y="10015.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (3 samples, 0.11%)</title><rect x="411.4" y="9221" width="1.3" height="15.0" fill="rgb(252,166,37)" rx="2" ry="2" /> +<text x="414.43" y="9231.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Stack::pushValue (1 samples, 0.04%)</title><rect x="1068.6" y="11157" width="0.5" height="15.0" fill="rgb(241,131,37)" rx="2" ry="2" /> +<text x="1071.62" y="11167.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="1112.0" y="10821" width="0.4" height="15.0" fill="rgb(249,176,50)" rx="2" ry="2" /> +<text x="1114.97" y="10831.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (4 samples, 0.15%)</title><rect x="732.2" y="10533" width="1.8" height="15.0" fill="rgb(208,166,51)" rx="2" ry="2" /> +<text x="735.22" y="10543.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="502.9" y="10357" width="0.4" height="15.0" fill="rgb(220,12,2)" rx="2" ry="2" /> +<text x="505.89" y="10367.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (343 samples, 12.60%)</title><rect x="503.3" y="10581" width="148.7" height="15.0" fill="rgb(220,10,38)" rx="2" ry="2" /> +<text x="506.33" y="10591.5" >Nsfisis\Waddiwasi\E..</text> +</g> +<g > +<title><unknown> (2 samples, 0.07%)</title><rect x="1021.4" y="9365" width="0.8" height="15.0" fill="rgb(254,102,2)" rx="2" ry="2" /> +<text x="1024.37" y="9375.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (2 samples, 0.07%)</title><rect x="419.7" y="9541" width="0.8" height="15.0" fill="rgb(217,85,16)" rx="2" ry="2" /> +<text x="422.66" y="9551.5" ></text> +</g> +<g > +<title><unknown> (2 samples, 0.07%)</title><rect x="1021.4" y="7621" width="0.8" height="15.0" fill="rgb(217,177,29)" rx="2" ry="2" /> +<text x="1024.37" y="7631.5" ></text> +</g> +<g > +<title><unknown> (2 samples, 0.07%)</title><rect x="1021.4" y="7909" width="0.8" height="15.0" fill="rgb(215,130,15)" rx="2" ry="2" /> +<text x="1024.37" y="7919.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::activateLabel (1 samples, 0.04%)</title><rect x="455.6" y="9701" width="0.5" height="15.0" fill="rgb(209,54,25)" rx="2" ry="2" /> +<text x="458.64" y="9711.5" ></text> +</g> +<g > +<title><unknown> (2 samples, 0.07%)</title><rect x="1021.4" y="6693" width="0.8" height="15.0" fill="rgb(212,202,20)" rx="2" ry="2" /> +<text x="1024.37" y="6703.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="265.3" y="9365" width="0.5" height="15.0" fill="rgb(238,56,21)" rx="2" ry="2" /> +<text x="268.33" y="9375.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="733.5" y="9317" width="0.5" height="15.0" fill="rgb(223,219,24)" rx="2" ry="2" /> +<text x="736.52" y="9327.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (5 samples, 0.18%)</title><rect x="442.2" y="9477" width="2.2" height="15.0" fill="rgb(243,89,26)" rx="2" ry="2" /> +<text x="445.20" y="9487.5" ></text> +</g> +<g > +<title><unknown> (2 samples, 0.07%)</title><rect x="1021.4" y="10981" width="0.8" height="15.0" fill="rgb(236,202,50)" rx="2" ry="2" /> +<text x="1024.37" y="10991.5" ></text> +</g> +<g > +<title><unknown> (1 samples, 0.04%)</title><rect x="1021.8" y="1349" width="0.4" height="15.0" fill="rgb(225,141,49)" rx="2" ry="2" /> +<text x="1024.80" y="1359.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="870.5" y="10037" width="0.4" height="15.0" fill="rgb(235,82,51)" rx="2" ry="2" /> +<text x="873.51" y="10047.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (1 samples, 0.04%)</title><rect x="537.1" y="10085" width="0.5" height="15.0" fill="rgb(240,143,13)" rx="2" ry="2" /> +<text x="540.14" y="10095.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="537.6" y="10085" width="0.4" height="15.0" fill="rgb(237,196,54)" rx="2" ry="2" /> +<text x="540.58" y="10095.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="733.5" y="9525" width="0.5" height="15.0" fill="rgb(247,88,40)" rx="2" ry="2" /> +<text x="736.52" y="9535.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\StackEntry::Value (1 samples, 0.04%)</title><rect x="494.7" y="10389" width="0.4" height="15.0" fill="rgb(213,151,19)" rx="2" ry="2" /> +<text x="497.66" y="10399.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="867.9" y="9957" width="0.4" height="15.0" fill="rgb(226,126,41)" rx="2" ry="2" /> +<text x="870.91" y="9967.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="318.7" y="9461" width="0.4" height="15.0" fill="rgb(207,217,53)" rx="2" ry="2" /> +<text x="321.66" y="9471.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="733.5" y="9221" width="0.5" height="15.0" fill="rgb(205,92,36)" rx="2" ry="2" /> +<text x="736.52" y="9231.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="848.4" y="10181" width="0.4" height="15.0" fill="rgb(241,89,12)" rx="2" ry="2" /> +<text x="851.40" y="10191.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (3 samples, 0.11%)</title><rect x="442.2" y="9381" width="1.3" height="15.0" fill="rgb(252,219,19)" rx="2" ry="2" /> +<text x="445.20" y="9391.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (42 samples, 1.54%)</title><rect x="471.2" y="10117" width="18.3" height="15.0" fill="rgb(208,87,23)" rx="2" ry="2" /> +<text x="474.25" y="10127.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="730.9" y="10005" width="0.5" height="15.0" fill="rgb(222,41,14)" rx="2" ry="2" /> +<text x="733.92" y="10015.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (5 samples, 0.18%)</title><rect x="442.2" y="9445" width="2.2" height="15.0" fill="rgb(234,180,32)" rx="2" ry="2" /> +<text x="445.20" y="9455.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Stack::currentFrame (1 samples, 0.04%)</title><rect x="473.4" y="9845" width="0.5" height="15.0" fill="rgb(216,188,4)" rx="2" ry="2" /> +<text x="476.42" y="9855.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (6 samples, 0.22%)</title><rect x="255.4" y="9781" width="2.6" height="15.0" fill="rgb(250,184,43)" rx="2" ry="2" /> +<text x="258.36" y="9791.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (343 samples, 12.60%)</title><rect x="503.3" y="10565" width="148.7" height="15.0" fill="rgb(227,183,27)" rx="2" ry="2" /> +<text x="506.33" y="10575.5" >Nsfisis\Waddiwasi\E..</text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (1 samples, 0.04%)</title><rect x="245.4" y="10357" width="0.4" height="15.0" fill="rgb(252,68,15)" rx="2" ry="2" /> +<text x="248.39" y="10367.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (2 samples, 0.07%)</title><rect x="317.8" y="9589" width="0.9" height="15.0" fill="rgb(212,2,19)" rx="2" ry="2" /> +<text x="320.79" y="9599.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (3 samples, 0.11%)</title><rect x="846.7" y="10133" width="1.3" height="15.0" fill="rgb(232,51,13)" rx="2" ry="2" /> +<text x="849.66" y="10143.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::deactivateLabel (1 samples, 0.04%)</title><rect x="1035.2" y="10997" width="0.5" height="15.0" fill="rgb(242,47,15)" rx="2" ry="2" /> +<text x="1038.24" y="11007.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (13 samples, 0.48%)</title><rect x="458.2" y="9669" width="5.7" height="15.0" fill="rgb(230,102,2)" rx="2" ry="2" /> +<text x="461.24" y="9679.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (2 samples, 0.07%)</title><rect x="404.5" y="9701" width="0.9" height="15.0" fill="rgb(235,95,26)" rx="2" ry="2" /> +<text x="407.49" y="9711.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (1 samples, 0.04%)</title><rect x="454.3" y="9509" width="0.5" height="15.0" fill="rgb(250,101,39)" rx="2" ry="2" /> +<text x="457.34" y="9519.5" ></text> +</g> +<g > +<title><unknown> (1 samples, 0.04%)</title><rect x="320.0" y="9509" width="0.4" height="15.0" fill="rgb(226,162,11)" rx="2" ry="2" /> +<text x="322.96" y="9519.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="238.9" y="10485" width="0.4" height="15.0" fill="rgb(243,19,43)" rx="2" ry="2" /> +<text x="241.89" y="10495.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (5 samples, 0.18%)</title><rect x="868.8" y="11013" width="2.1" height="15.0" fill="rgb(223,202,12)" rx="2" ry="2" /> +<text x="871.77" y="11023.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (192 samples, 7.05%)</title><rect x="345.1" y="9941" width="83.2" height="15.0" fill="rgb(209,200,6)" rx="2" ry="2" /> +<text x="348.10" y="9951.5" >Nsfisis\W..</text> +</g> +<g > +<title><unknown> (2 samples, 0.07%)</title><rect x="1021.4" y="7797" width="0.8" height="15.0" fill="rgb(209,65,7)" rx="2" ry="2" /> +<text x="1024.37" y="7807.5" ></text> +</g> +<g > +<title><unknown> (2 samples, 0.07%)</title><rect x="1021.4" y="8517" width="0.8" height="15.0" fill="rgb(231,139,54)" rx="2" ry="2" /> +<text x="1024.37" y="8527.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="1138.0" y="11109" width="0.4" height="15.0" fill="rgb(214,32,29)" rx="2" ry="2" /> +<text x="1140.98" y="11119.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="731.8" y="9861" width="0.4" height="15.0" fill="rgb(242,138,35)" rx="2" ry="2" /> +<text x="734.79" y="9871.5" ></text> +</g> +<g > +<title><unknown> (2 samples, 0.07%)</title><rect x="1021.4" y="9717" width="0.8" height="15.0" fill="rgb(214,39,44)" rx="2" ry="2" /> +<text x="1024.37" y="9727.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (3 samples, 0.11%)</title><rect x="372.4" y="9637" width="1.3" height="15.0" fill="rgb(227,66,23)" rx="2" ry="2" /> +<text x="375.41" y="9647.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (3 samples, 0.11%)</title><rect x="385.0" y="9365" width="1.3" height="15.0" fill="rgb(220,188,15)" rx="2" ry="2" /> +<text x="387.98" y="9375.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="424.4" y="9109" width="0.5" height="15.0" fill="rgb(207,8,2)" rx="2" ry="2" /> +<text x="427.43" y="9119.5" ></text> +</g> +<g > +<title><unknown> (1 samples, 0.04%)</title><rect x="1021.8" y="1237" width="0.4" height="15.0" fill="rgb(211,163,20)" rx="2" ry="2" /> +<text x="1024.80" y="1247.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="1098.5" y="11093" width="0.5" height="15.0" fill="rgb(230,219,23)" rx="2" ry="2" /> +<text x="1101.53" y="11103.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="1115.9" y="11125" width="0.4" height="15.0" fill="rgb(219,43,42)" rx="2" ry="2" /> +<text x="1118.87" y="11135.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="733.5" y="9189" width="0.5" height="15.0" fill="rgb(252,203,42)" rx="2" ry="2" /> +<text x="736.52" y="9199.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (190 samples, 6.98%)</title><rect x="253.6" y="9989" width="82.4" height="15.0" fill="rgb(242,145,17)" rx="2" ry="2" /> +<text x="256.63" y="9999.5" >Nsfisis\W..</text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (13 samples, 0.48%)</title><rect x="393.2" y="9621" width="5.7" height="15.0" fill="rgb(242,54,16)" rx="2" ry="2" /> +<text x="396.22" y="9631.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::deactivateLabel (1 samples, 0.04%)</title><rect x="538.0" y="10245" width="0.4" height="15.0" fill="rgb(221,6,16)" rx="2" ry="2" /> +<text x="541.01" y="10255.5" ></text> +</g> +<g > +<title><unknown> (1 samples, 0.04%)</title><rect x="1089.9" y="11189" width="0.4" height="15.0" fill="rgb(214,113,42)" rx="2" ry="2" /> +<text x="1092.86" y="11199.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (2 samples, 0.07%)</title><rect x="1141.9" y="11109" width="0.8" height="15.0" fill="rgb(251,41,24)" rx="2" ry="2" /> +<text x="1144.88" y="11119.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="489.0" y="9925" width="0.5" height="15.0" fill="rgb(241,93,25)" rx="2" ry="2" /> +<text x="492.02" y="9935.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (1,144 samples, 42.03%)</title><rect x="242.8" y="10917" width="495.9" height="15.0" fill="rgb(242,200,34)" rx="2" ry="2" /> +<text x="245.79" y="10927.5" >Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc</text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\ControlFlowResult::Br (1 samples, 0.04%)</title><rect x="663.3" y="10037" width="0.4" height="15.0" fill="rgb(229,217,5)" rx="2" ry="2" /> +<text x="666.29" y="10047.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (5 samples, 0.18%)</title><rect x="483.4" y="9973" width="2.2" height="15.0" fill="rgb(216,147,7)" rx="2" ry="2" /> +<text x="486.39" y="9983.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (1 samples, 0.04%)</title><rect x="412.7" y="9221" width="0.5" height="15.0" fill="rgb(240,54,46)" rx="2" ry="2" /> +<text x="415.73" y="9231.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (4 samples, 0.15%)</title><rect x="468.2" y="9909" width="1.7" height="15.0" fill="rgb(237,118,15)" rx="2" ry="2" /> +<text x="471.21" y="9919.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="365.0" y="9845" width="0.5" height="15.0" fill="rgb(213,194,28)" rx="2" ry="2" /> +<text x="368.04" y="9855.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeHostFunc (1 samples, 0.04%)</title><rect x="439.2" y="9573" width="0.4" height="15.0" fill="rgb(206,85,12)" rx="2" ry="2" /> +<text x="442.17" y="9583.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="359.0" y="9605" width="0.4" height="15.0" fill="rgb(245,213,15)" rx="2" ry="2" /> +<text x="361.97" y="9615.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (562 samples, 20.65%)</title><rect x="246.7" y="10437" width="243.6" height="15.0" fill="rgb(216,226,44)" rx="2" ry="2" /> +<text x="249.69" y="10447.5" >Nsfisis\Waddiwasi\Execution\Runt..</text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (3 samples, 0.11%)</title><rect x="743.1" y="10133" width="1.3" height="15.0" fill="rgb(233,85,43)" rx="2" ry="2" /> +<text x="746.06" y="10143.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (1 samples, 0.04%)</title><rect x="468.2" y="9861" width="0.4" height="15.0" fill="rgb(238,104,0)" rx="2" ry="2" /> +<text x="471.21" y="9871.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (2 samples, 0.07%)</title><rect x="241.9" y="10693" width="0.9" height="15.0" fill="rgb(234,159,46)" rx="2" ry="2" /> +<text x="244.93" y="10703.5" ></text> +</g> +<g > +<title><unknown> (1 samples, 0.04%)</title><rect x="1021.8" y="3557" width="0.4" height="15.0" fill="rgb(226,10,20)" rx="2" ry="2" /> +<text x="1024.80" y="3567.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="739.2" y="10437" width="0.4" height="15.0" fill="rgb(211,23,34)" rx="2" ry="2" /> +<text x="742.16" y="10447.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (7 samples, 0.26%)</title><rect x="513.3" y="10165" width="3.0" height="15.0" fill="rgb(230,204,11)" rx="2" ry="2" /> +<text x="516.30" y="10175.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (2 samples, 0.07%)</title><rect x="496.0" y="10245" width="0.8" height="15.0" fill="rgb(232,56,48)" rx="2" ry="2" /> +<text x="498.96" y="10255.5" ></text> +</g> +<g > +<title><unknown> (1 samples, 0.04%)</title><rect x="678.5" y="9973" width="0.4" height="15.0" fill="rgb(207,101,44)" rx="2" ry="2" /> +<text x="681.46" y="9983.5" ></text> +</g> +<g > +<title><unknown> (1 samples, 0.04%)</title><rect x="1021.8" y="5269" width="0.4" height="15.0" fill="rgb(219,99,19)" rx="2" ry="2" /> +<text x="1024.80" y="5279.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (23 samples, 0.84%)</title><rect x="528.9" y="10373" width="10.0" height="15.0" fill="rgb(240,116,24)" rx="2" ry="2" /> +<text x="531.91" y="10383.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="463.4" y="9317" width="0.5" height="15.0" fill="rgb(237,88,5)" rx="2" ry="2" /> +<text x="466.45" y="9327.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (2 samples, 0.07%)</title><rect x="526.7" y="10085" width="0.9" height="15.0" fill="rgb(207,223,35)" rx="2" ry="2" /> +<text x="529.74" y="10095.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="427.5" y="9253" width="0.4" height="15.0" fill="rgb(242,200,21)" rx="2" ry="2" /> +<text x="430.47" y="9263.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (2 samples, 0.07%)</title><rect x="729.2" y="9861" width="0.9" height="15.0" fill="rgb(235,229,39)" rx="2" ry="2" /> +<text x="732.18" y="9871.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="867.9" y="10613" width="0.4" height="15.0" fill="rgb(237,211,26)" rx="2" ry="2" /> +<text x="870.91" y="10623.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (10 samples, 0.37%)</title><rect x="533.7" y="10229" width="4.3" height="15.0" fill="rgb(246,84,23)" rx="2" ry="2" /> +<text x="536.67" y="10239.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (1 samples, 0.04%)</title><rect x="734.8" y="10677" width="0.5" height="15.0" fill="rgb(237,60,52)" rx="2" ry="2" /> +<text x="737.82" y="10687.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (1 samples, 0.04%)</title><rect x="320.8" y="9589" width="0.5" height="15.0" fill="rgb(210,194,29)" rx="2" ry="2" /> +<text x="323.82" y="9599.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (1 samples, 0.04%)</title><rect x="265.3" y="9509" width="0.5" height="15.0" fill="rgb(206,158,46)" rx="2" ry="2" /> +<text x="268.33" y="9519.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (1 samples, 0.04%)</title><rect x="372.0" y="9685" width="0.4" height="15.0" fill="rgb(226,189,50)" rx="2" ry="2" /> +<text x="374.98" y="9695.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (1 samples, 0.04%)</title><rect x="1115.9" y="10965" width="0.4" height="15.0" fill="rgb(240,96,21)" rx="2" ry="2" /> +<text x="1118.87" y="10975.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (1 samples, 0.04%)</title><rect x="867.9" y="10213" width="0.4" height="15.0" fill="rgb(217,21,15)" rx="2" ry="2" /> +<text x="870.91" y="10223.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="1138.0" y="11205" width="0.4" height="15.0" fill="rgb(254,171,19)" rx="2" ry="2" /> +<text x="1140.98" y="11215.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (2 samples, 0.07%)</title><rect x="325.2" y="9477" width="0.8" height="15.0" fill="rgb(250,226,12)" rx="2" ry="2" /> +<text x="328.16" y="9487.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\ControlFlowResult::Br (1 samples, 0.04%)</title><rect x="1138.4" y="11205" width="0.4" height="15.0" fill="rgb(215,139,19)" rx="2" ry="2" /> +<text x="1141.41" y="11215.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="870.1" y="8501" width="0.4" height="15.0" fill="rgb(225,164,52)" rx="2" ry="2" /> +<text x="873.07" y="8511.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="318.2" y="9397" width="0.5" height="15.0" fill="rgb(232,82,1)" rx="2" ry="2" /> +<text x="321.22" y="9407.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (2 samples, 0.07%)</title><rect x="532.8" y="10085" width="0.9" height="15.0" fill="rgb(249,95,42)" rx="2" ry="2" /> +<text x="535.81" y="10095.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doStoreI64 (20 samples, 0.73%)</title><rect x="626.0" y="9909" width="8.7" height="15.0" fill="rgb(228,120,31)" rx="2" ry="2" /> +<text x="629.01" y="9919.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::deactivateLabel (1 samples, 0.04%)</title><rect x="539.7" y="10437" width="0.5" height="15.0" fill="rgb(206,27,12)" rx="2" ry="2" /> +<text x="542.74" y="10447.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Vals\Num::__construct (1 samples, 0.04%)</title><rect x="143.5" y="11141" width="0.5" height="15.0" fill="rgb(249,135,23)" rx="2" ry="2" /> +<text x="146.52" y="11151.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="869.2" y="9957" width="0.4" height="15.0" fill="rgb(254,70,50)" rx="2" ry="2" /> +<text x="872.21" y="9967.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="870.1" y="9061" width="0.4" height="15.0" fill="rgb(239,152,2)" rx="2" ry="2" /> +<text x="873.07" y="9071.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (15 samples, 0.55%)</title><rect x="320.4" y="9605" width="6.5" height="15.0" fill="rgb(217,90,39)" rx="2" ry="2" /> +<text x="323.39" y="9615.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (4 samples, 0.15%)</title><rect x="423.1" y="9317" width="1.8" height="15.0" fill="rgb(220,41,19)" rx="2" ry="2" /> +<text x="426.13" y="9327.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (5 samples, 0.18%)</title><rect x="675.9" y="9989" width="2.1" height="15.0" fill="rgb(233,139,38)" rx="2" ry="2" /> +<text x="678.86" y="9999.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (2 samples, 0.07%)</title><rect x="1041.3" y="11157" width="0.9" height="15.0" fill="rgb(231,104,52)" rx="2" ry="2" /> +<text x="1044.31" y="11167.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Stack::popI32 (1 samples, 0.04%)</title><rect x="326.0" y="9557" width="0.5" height="15.0" fill="rgb(237,124,15)" rx="2" ry="2" /> +<text x="329.02" y="9567.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Stack::popI32 (1 samples, 0.04%)</title><rect x="781.6" y="10325" width="0.5" height="15.0" fill="rgb(227,184,32)" rx="2" ry="2" /> +<text x="784.64" y="10335.5" ></text> +</g> +<g > +<title><unknown> (1 samples, 0.04%)</title><rect x="1021.8" y="6005" width="0.4" height="15.0" fill="rgb(220,18,47)" rx="2" ry="2" /> +<text x="1024.80" y="6015.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (5 samples, 0.18%)</title><rect x="1066.0" y="10901" width="2.2" height="15.0" fill="rgb(248,214,39)" rx="2" ry="2" /> +<text x="1069.02" y="10911.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\ControlFlowResult::Br (1 samples, 0.04%)</title><rect x="350.7" y="9781" width="0.5" height="15.0" fill="rgb(253,36,28)" rx="2" ry="2" /> +<text x="353.73" y="9791.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (2 samples, 0.07%)</title><rect x="486.9" y="9701" width="0.8" height="15.0" fill="rgb(240,81,50)" rx="2" ry="2" /> +<text x="489.86" y="9711.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (3 samples, 0.11%)</title><rect x="722.2" y="9733" width="1.3" height="15.0" fill="rgb(220,193,11)" rx="2" ry="2" /> +<text x="725.25" y="9743.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="740.5" y="10309" width="0.4" height="15.0" fill="rgb(246,30,44)" rx="2" ry="2" /> +<text x="743.46" y="10319.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (2 samples, 0.07%)</title><rect x="277.0" y="9653" width="0.9" height="15.0" fill="rgb(227,67,26)" rx="2" ry="2" /> +<text x="280.04" y="9663.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (4 samples, 0.15%)</title><rect x="1071.2" y="11221" width="1.8" height="15.0" fill="rgb(246,226,34)" rx="2" ry="2" /> +<text x="1074.22" y="11231.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="449.6" y="9989" width="0.4" height="15.0" fill="rgb(228,30,24)" rx="2" ry="2" /> +<text x="452.57" y="9999.5" ></text> +</g> +<g > +<title><unknown> (1 samples, 0.04%)</title><rect x="1021.8" y="2837" width="0.4" height="15.0" fill="rgb(223,93,32)" rx="2" ry="2" /> +<text x="1024.80" y="2847.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (151 samples, 5.55%)</title><rect x="801.1" y="10421" width="65.5" height="15.0" fill="rgb(236,172,39)" rx="2" ry="2" /> +<text x="804.15" y="10431.5" >Nsfisis..</text> +</g> +<g > +<title><unknown> (2 samples, 0.07%)</title><rect x="1021.4" y="7573" width="0.8" height="15.0" fill="rgb(254,118,45)" rx="2" ry="2" /> +<text x="1024.37" y="7583.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="789.4" y="10245" width="0.5" height="15.0" fill="rgb(246,42,48)" rx="2" ry="2" /> +<text x="792.44" y="10255.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="538.9" y="10421" width="0.4" height="15.0" fill="rgb(229,180,20)" rx="2" ry="2" /> +<text x="541.88" y="10431.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (3 samples, 0.11%)</title><rect x="741.3" y="10837" width="1.3" height="15.0" fill="rgb(241,56,45)" rx="2" ry="2" /> +<text x="744.32" y="10847.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="329.1" y="9781" width="0.4" height="15.0" fill="rgb(246,56,26)" rx="2" ry="2" /> +<text x="332.06" y="9791.5" ></text> +</g> +<g > +<title><unknown> (1 samples, 0.04%)</title><rect x="1021.8" y="5013" width="0.4" height="15.0" fill="rgb(246,25,30)" rx="2" ry="2" /> +<text x="1024.80" y="5023.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (23 samples, 0.84%)</title><rect x="453.9" y="9797" width="10.0" height="15.0" fill="rgb(227,160,49)" rx="2" ry="2" /> +<text x="456.91" y="9807.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (3 samples, 0.11%)</title><rect x="722.2" y="9829" width="1.3" height="15.0" fill="rgb(246,73,16)" rx="2" ry="2" /> +<text x="725.25" y="9839.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="733.5" y="8549" width="0.5" height="15.0" fill="rgb(251,30,24)" rx="2" ry="2" /> +<text x="736.52" y="8559.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (1 samples, 0.04%)</title><rect x="740.9" y="10405" width="0.4" height="15.0" fill="rgb(238,168,11)" rx="2" ry="2" /> +<text x="743.89" y="10415.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="412.7" y="9205" width="0.5" height="15.0" fill="rgb(236,4,24)" rx="2" ry="2" /> +<text x="415.73" y="9215.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (10 samples, 0.37%)</title><rect x="381.9" y="9557" width="4.4" height="15.0" fill="rgb(233,58,6)" rx="2" ry="2" /> +<text x="384.95" y="9567.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="446.1" y="9557" width="0.4" height="15.0" fill="rgb(246,44,30)" rx="2" ry="2" /> +<text x="449.11" y="9567.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (461 samples, 16.94%)</title><rect x="250.2" y="10069" width="199.8" height="15.0" fill="rgb(242,63,45)" rx="2" ry="2" /> +<text x="253.16" y="10079.5" >Nsfisis\Waddiwasi\Executio..</text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (8 samples, 0.29%)</title><rect x="400.6" y="9685" width="3.5" height="15.0" fill="rgb(242,31,44)" rx="2" ry="2" /> +<text x="403.59" y="9695.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="870.1" y="7893" width="0.4" height="15.0" fill="rgb(240,207,39)" rx="2" ry="2" /> +<text x="873.07" y="7903.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="424.4" y="8981" width="0.5" height="15.0" fill="rgb(238,176,42)" rx="2" ry="2" /> +<text x="427.43" y="8991.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (3 samples, 0.11%)</title><rect x="676.7" y="9893" width="1.3" height="15.0" fill="rgb(224,22,51)" rx="2" ry="2" /> +<text x="679.73" y="9903.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="1067.8" y="10357" width="0.4" height="15.0" fill="rgb(215,130,42)" rx="2" ry="2" /> +<text x="1070.75" y="10367.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="316.9" y="9365" width="0.5" height="15.0" fill="rgb(236,141,36)" rx="2" ry="2" /> +<text x="319.92" y="9375.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="412.3" y="9109" width="0.4" height="15.0" fill="rgb(243,166,4)" rx="2" ry="2" /> +<text x="415.29" y="9119.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (4 samples, 0.15%)</title><rect x="304.3" y="9493" width="1.8" height="15.0" fill="rgb(223,36,43)" rx="2" ry="2" /> +<text x="307.35" y="9503.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (12 samples, 0.44%)</title><rect x="440.5" y="9749" width="5.2" height="15.0" fill="rgb(208,222,1)" rx="2" ry="2" /> +<text x="443.47" y="9759.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (54 samples, 1.98%)</title><rect x="753.0" y="10213" width="23.4" height="15.0" fill="rgb(227,188,12)" rx="2" ry="2" /> +<text x="756.03" y="10223.5" >N..</text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="489.5" y="10037" width="0.4" height="15.0" fill="rgb(230,179,42)" rx="2" ry="2" /> +<text x="492.46" y="10047.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="1035.2" y="10965" width="0.5" height="15.0" fill="rgb(245,225,32)" rx="2" ry="2" /> +<text x="1038.24" y="10975.5" ></text> +</g> +<g > +<title><unknown> (2 samples, 0.07%)</title><rect x="1021.4" y="10517" width="0.8" height="15.0" fill="rgb(212,99,20)" rx="2" ry="2" /> +<text x="1024.37" y="10527.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="446.1" y="9605" width="0.4" height="15.0" fill="rgb(249,10,46)" rx="2" ry="2" /> +<text x="449.11" y="9615.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (282 samples, 10.36%)</title><rect x="745.7" y="10677" width="122.2" height="15.0" fill="rgb(211,54,10)" rx="2" ry="2" /> +<text x="748.66" y="10687.5" >Nsfisis\Waddiwa..</text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (3 samples, 0.11%)</title><rect x="363.7" y="9605" width="1.3" height="15.0" fill="rgb(205,189,3)" rx="2" ry="2" /> +<text x="366.74" y="9615.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (9 samples, 0.33%)</title><rect x="664.2" y="10021" width="3.9" height="15.0" fill="rgb(250,53,48)" rx="2" ry="2" /> +<text x="667.16" y="10031.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::invokeByFuncAddr (1 samples, 0.04%)</title><rect x="734.8" y="10693" width="0.5" height="15.0" fill="rgb(206,44,11)" rx="2" ry="2" /> +<text x="737.82" y="10703.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (2 samples, 0.07%)</title><rect x="496.0" y="10197" width="0.8" height="15.0" fill="rgb(205,52,16)" rx="2" ry="2" /> +<text x="498.96" y="10207.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (5 samples, 0.18%)</title><rect x="295.2" y="9637" width="2.2" height="15.0" fill="rgb(251,197,40)" rx="2" ry="2" /> +<text x="298.25" y="9647.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="315.6" y="9365" width="0.5" height="15.0" fill="rgb(241,78,53)" rx="2" ry="2" /> +<text x="318.62" y="9375.5" ></text> +</g> +<g > +<title><unknown> (1 samples, 0.04%)</title><rect x="1021.8" y="2949" width="0.4" height="15.0" fill="rgb(217,153,50)" rx="2" ry="2" /> +<text x="1024.80" y="2959.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (2 samples, 0.07%)</title><rect x="482.1" y="9813" width="0.9" height="15.0" fill="rgb(252,17,27)" rx="2" ry="2" /> +<text x="485.09" y="9823.5" ></text> +</g> +<g > +<title>assert (1 samples, 0.04%)</title><rect x="165.6" y="11141" width="0.5" height="15.0" fill="rgb(248,131,44)" rx="2" ry="2" /> +<text x="168.63" y="11151.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="870.1" y="8789" width="0.4" height="15.0" fill="rgb(241,223,19)" rx="2" ry="2" /> +<text x="873.07" y="8799.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (21 samples, 0.77%)</title><rect x="454.8" y="9733" width="9.1" height="15.0" fill="rgb(231,157,11)" rx="2" ry="2" /> +<text x="457.78" y="9743.5" ></text> +</g> +<g > +<title><unknown> (1 samples, 0.04%)</title><rect x="1021.8" y="5125" width="0.4" height="15.0" fill="rgb(223,91,18)" rx="2" ry="2" /> +<text x="1024.80" y="5135.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (5 samples, 0.18%)</title><rect x="665.9" y="9941" width="2.2" height="15.0" fill="rgb(235,66,3)" rx="2" ry="2" /> +<text x="668.89" y="9951.5" ></text> +</g> +<g > +<title><unknown> (1 samples, 0.04%)</title><rect x="1021.8" y="2981" width="0.4" height="15.0" fill="rgb(228,11,45)" rx="2" ry="2" /> +<text x="1024.80" y="2991.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::invokeByFuncAddr (1,159 samples, 42.58%)</title><rect x="238.9" y="11109" width="502.4" height="15.0" fill="rgb(229,111,21)" rx="2" ry="2" /> +<text x="241.89" y="11119.5" >Nsfisis\Waddiwasi\Execution\Runtime::invokeByFuncAddr</text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="724.8" y="9797" width="0.5" height="15.0" fill="rgb(230,24,30)" rx="2" ry="2" /> +<text x="727.85" y="9807.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="740.9" y="10309" width="0.4" height="15.0" fill="rgb(210,58,45)" rx="2" ry="2" /> +<text x="743.89" y="10319.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (5 samples, 0.18%)</title><rect x="868.8" y="10949" width="2.1" height="15.0" fill="rgb(232,140,33)" rx="2" ry="2" /> +<text x="871.77" y="10959.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (1 samples, 0.04%)</title><rect x="739.6" y="10501" width="0.4" height="15.0" fill="rgb(243,32,40)" rx="2" ry="2" /> +<text x="742.59" y="10511.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::deactivateFrame (1 samples, 0.04%)</title><rect x="248.0" y="10133" width="0.4" height="15.0" fill="rgb(211,201,36)" rx="2" ry="2" /> +<text x="250.99" y="10143.5" ></text> +</g> +<g > +<title><unknown> (1 samples, 0.04%)</title><rect x="1021.8" y="3141" width="0.4" height="15.0" fill="rgb(230,145,42)" rx="2" ry="2" /> +<text x="1024.80" y="3151.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (4 samples, 0.15%)</title><rect x="736.6" y="10517" width="1.7" height="15.0" fill="rgb(205,217,40)" rx="2" ry="2" /> +<text x="739.55" y="10527.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="469.5" y="9845" width="0.4" height="15.0" fill="rgb(219,211,26)" rx="2" ry="2" /> +<text x="472.52" y="9855.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (9 samples, 0.33%)</title><rect x="523.7" y="10261" width="3.9" height="15.0" fill="rgb(244,197,15)" rx="2" ry="2" /> +<text x="526.70" y="10271.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\MemInst::storeI32 (1 samples, 0.04%)</title><rect x="257.5" y="9701" width="0.5" height="15.0" fill="rgb(250,153,25)" rx="2" ry="2" /> +<text x="260.53" y="9711.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="811.1" y="10197" width="0.5" height="15.0" fill="rgb(225,147,21)" rx="2" ry="2" /> +<text x="814.12" y="10207.5" ></text> +</g> +<g > +<title><unknown> (2 samples, 0.07%)</title><rect x="1021.4" y="6933" width="0.8" height="15.0" fill="rgb(224,105,49)" rx="2" ry="2" /> +<text x="1024.37" y="6943.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="345.1" y="9733" width="0.4" height="15.0" fill="rgb(230,38,52)" rx="2" ry="2" /> +<text x="348.10" y="9743.5" ></text> +</g> +<g > +<title><unknown> (1 samples, 0.04%)</title><rect x="1103.3" y="11045" width="0.4" height="15.0" fill="rgb(212,119,27)" rx="2" ry="2" /> +<text x="1106.30" y="11055.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (233 samples, 8.56%)</title><rect x="550.6" y="9925" width="101.0" height="15.0" fill="rgb(248,4,10)" rx="2" ry="2" /> +<text x="553.58" y="9935.5" >Nsfisis\Wadd..</text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="1168.8" y="10981" width="0.4" height="15.0" fill="rgb(247,148,31)" rx="2" ry="2" /> +<text x="1171.76" y="10991.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="866.6" y="10309" width="0.4" height="15.0" fill="rgb(226,55,27)" rx="2" ry="2" /> +<text x="869.61" y="10319.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (3 samples, 0.11%)</title><rect x="411.4" y="9301" width="1.3" height="15.0" fill="rgb(223,177,48)" rx="2" ry="2" /> +<text x="414.43" y="9311.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (3 samples, 0.11%)</title><rect x="442.2" y="9141" width="1.3" height="15.0" fill="rgb(216,153,36)" rx="2" ry="2" /> +<text x="445.20" y="9151.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="497.3" y="10309" width="0.4" height="15.0" fill="rgb(238,34,30)" rx="2" ry="2" /> +<text x="500.26" y="10319.5" ></text> +</g> +<g > +<title><unknown> (1 samples, 0.04%)</title><rect x="1021.8" y="2469" width="0.4" height="15.0" fill="rgb(227,221,3)" rx="2" ry="2" /> +<text x="1024.80" y="2479.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (6 samples, 0.22%)</title><rect x="525.0" y="10197" width="2.6" height="15.0" fill="rgb(208,219,15)" rx="2" ry="2" /> +<text x="528.00" y="10207.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="489.9" y="10021" width="0.4" height="15.0" fill="rgb(236,53,7)" rx="2" ry="2" /> +<text x="492.89" y="10031.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\MemInst::storeByte (2 samples, 0.07%)</title><rect x="1034.4" y="11189" width="0.8" height="15.0" fill="rgb(242,156,27)" rx="2" ry="2" /> +<text x="1037.37" y="11199.5" ></text> +</g> +<g > +<title><unknown> (1 samples, 0.04%)</title><rect x="1021.8" y="197" width="0.4" height="15.0" fill="rgb(239,201,18)" rx="2" ry="2" /> +<text x="1024.80" y="207.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="486.9" y="9669" width="0.4" height="15.0" fill="rgb(222,53,33)" rx="2" ry="2" /> +<text x="489.86" y="9679.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (29 samples, 1.07%)</title><rect x="258.8" y="9829" width="12.6" height="15.0" fill="rgb(248,27,12)" rx="2" ry="2" /> +<text x="261.83" y="9839.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="469.5" y="9797" width="0.4" height="15.0" fill="rgb(224,99,44)" rx="2" ry="2" /> +<text x="472.52" y="9807.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (2 samples, 0.07%)</title><rect x="735.7" y="10437" width="0.9" height="15.0" fill="rgb(244,108,17)" rx="2" ry="2" /> +<text x="738.69" y="10447.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="870.1" y="8661" width="0.4" height="15.0" fill="rgb(211,164,31)" rx="2" ry="2" /> +<text x="873.07" y="8671.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doLoadI32 (1 samples, 0.04%)</title><rect x="690.6" y="9941" width="0.4" height="15.0" fill="rgb(225,166,28)" rx="2" ry="2" /> +<text x="693.60" y="9951.5" ></text> +</g> +<g > +<title><unknown> (1 samples, 0.04%)</title><rect x="1021.8" y="5909" width="0.4" height="15.0" fill="rgb(213,46,8)" rx="2" ry="2" /> +<text x="1024.80" y="5919.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="502.9" y="10309" width="0.4" height="15.0" fill="rgb(207,209,20)" rx="2" ry="2" /> +<text x="505.89" y="10319.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="870.1" y="8805" width="0.4" height="15.0" fill="rgb(232,34,0)" rx="2" ry="2" /> +<text x="873.07" y="8815.5" ></text> +</g> +<g > +<title><unknown> (2 samples, 0.07%)</title><rect x="1021.4" y="10213" width="0.8" height="15.0" fill="rgb(248,210,0)" rx="2" ry="2" /> +<text x="1024.37" y="10223.5" ></text> +</g> +<g > +<title><unknown> (1 samples, 0.04%)</title><rect x="1021.8" y="981" width="0.4" height="15.0" fill="rgb(224,146,16)" rx="2" ry="2" /> +<text x="1024.80" y="991.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="443.1" y="8565" width="0.4" height="15.0" fill="rgb(224,210,34)" rx="2" ry="2" /> +<text x="446.07" y="8575.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="733.5" y="9989" width="0.5" height="15.0" fill="rgb(215,69,39)" rx="2" ry="2" /> +<text x="736.52" y="9999.5" ></text> +</g> +<g > +<title><unknown> (2 samples, 0.07%)</title><rect x="1021.4" y="6549" width="0.8" height="15.0" fill="rgb(222,61,21)" rx="2" ry="2" /> +<text x="1024.37" y="6559.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="469.5" y="9733" width="0.4" height="15.0" fill="rgb(223,169,7)" rx="2" ry="2" /> +<text x="472.52" y="9743.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (1 samples, 0.04%)</title><rect x="345.1" y="9909" width="0.4" height="15.0" fill="rgb(251,202,33)" rx="2" ry="2" /> +<text x="348.10" y="9919.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="485.1" y="9669" width="0.5" height="15.0" fill="rgb(218,159,9)" rx="2" ry="2" /> +<text x="488.12" y="9679.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Stack::pushBool (1 samples, 0.04%)</title><rect x="261.4" y="9589" width="0.5" height="15.0" fill="rgb(231,98,21)" rx="2" ry="2" /> +<text x="264.43" y="9599.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (2 samples, 0.07%)</title><rect x="496.0" y="10101" width="0.8" height="15.0" fill="rgb(253,131,52)" rx="2" ry="2" /> +<text x="498.96" y="10111.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (1 samples, 0.04%)</title><rect x="484.7" y="9797" width="0.4" height="15.0" fill="rgb(253,227,19)" rx="2" ry="2" /> +<text x="487.69" y="9807.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (2 samples, 0.07%)</title><rect x="419.7" y="9557" width="0.8" height="15.0" fill="rgb(237,183,44)" rx="2" ry="2" /> +<text x="422.66" y="9567.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (2 samples, 0.07%)</title><rect x="498.6" y="10101" width="0.8" height="15.0" fill="rgb(240,171,54)" rx="2" ry="2" /> +<text x="501.56" y="10111.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="738.3" y="10549" width="0.4" height="15.0" fill="rgb(227,184,29)" rx="2" ry="2" /> +<text x="741.29" y="10559.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (108 samples, 3.97%)</title><rect x="280.5" y="9861" width="46.8" height="15.0" fill="rgb(213,66,10)" rx="2" ry="2" /> +<text x="283.51" y="9871.5" >Nsfi..</text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\StackEntry::Value (2 samples, 0.07%)</title><rect x="635.5" y="9893" width="0.9" height="15.0" fill="rgb(230,16,53)" rx="2" ry="2" /> +<text x="638.55" y="9903.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1,159 samples, 42.58%)</title><rect x="238.9" y="11045" width="502.4" height="15.0" fill="rgb(206,13,0)" rx="2" ry="2" /> +<text x="241.89" y="11055.5" >Nsfisis\Waddiwasi\Execution\Runtime::execInstr</text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (562 samples, 20.65%)</title><rect x="246.7" y="10293" width="243.6" height="15.0" fill="rgb(246,59,50)" rx="2" ry="2" /> +<text x="249.69" y="10303.5" >Nsfisis\Waddiwasi\Execution\Runt..</text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="536.3" y="9813" width="0.4" height="15.0" fill="rgb(233,40,11)" rx="2" ry="2" /> +<text x="539.27" y="9823.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Stack::pushValue (2 samples, 0.07%)</title><rect x="719.6" y="9909" width="0.9" height="15.0" fill="rgb(212,160,47)" rx="2" ry="2" /> +<text x="722.65" y="9919.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="446.1" y="9765" width="0.4" height="15.0" fill="rgb(220,57,9)" rx="2" ry="2" /> +<text x="449.11" y="9775.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (2 samples, 0.07%)</title><rect x="445.7" y="9829" width="0.8" height="15.0" fill="rgb(210,172,17)" rx="2" ry="2" /> +<text x="448.67" y="9839.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="733.5" y="8485" width="0.5" height="15.0" fill="rgb(251,173,43)" rx="2" ry="2" /> +<text x="736.52" y="8495.5" ></text> +</g> +<g > +<title>{closure}(/home/ken/src/php-waddiwasi/vendor/composer/ClassLoader.php:575-577) (1 samples, 0.04%)</title><rect x="13.5" y="11205" width="0.4" height="15.0" fill="rgb(207,42,6)" rx="2" ry="2" /> +<text x="16.47" y="11215.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="870.1" y="8101" width="0.4" height="15.0" fill="rgb(208,171,15)" rx="2" ry="2" /> +<text x="873.07" y="8111.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Stack::pushI32 (1 samples, 0.04%)</title><rect x="335.1" y="9861" width="0.5" height="15.0" fill="rgb(217,0,54)" rx="2" ry="2" /> +<text x="338.13" y="9871.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="868.3" y="10949" width="0.5" height="15.0" fill="rgb(217,228,27)" rx="2" ry="2" /> +<text x="871.34" y="10959.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="867.9" y="10677" width="0.4" height="15.0" fill="rgb(228,26,5)" rx="2" ry="2" /> +<text x="870.91" y="10687.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (5 samples, 0.18%)</title><rect x="868.8" y="10597" width="2.1" height="15.0" fill="rgb(251,185,35)" rx="2" ry="2" /> +<text x="871.77" y="10607.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doStoreI32 (1 samples, 0.04%)</title><rect x="516.8" y="10229" width="0.4" height="15.0" fill="rgb(235,192,5)" rx="2" ry="2" /> +<text x="519.77" y="10239.5" ></text> +</g> +<g > +<title><unknown> (2 samples, 0.07%)</title><rect x="1021.4" y="7045" width="0.8" height="15.0" fill="rgb(244,38,39)" rx="2" ry="2" /> +<text x="1024.37" y="7055.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (2 samples, 0.07%)</title><rect x="1073.4" y="11205" width="0.9" height="15.0" fill="rgb(220,58,40)" rx="2" ry="2" /> +<text x="1076.39" y="11215.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (296 samples, 10.87%)</title><rect x="742.6" y="11141" width="128.3" height="15.0" fill="rgb(251,138,23)" rx="2" ry="2" /> +<text x="745.62" y="11151.5" >Nsfisis\Waddiwas..</text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (31 samples, 1.14%)</title><rect x="758.2" y="10053" width="13.5" height="15.0" fill="rgb(252,31,7)" rx="2" ry="2" /> +<text x="761.23" y="10063.5" ></text> +</g> +<g > +<title><unknown> (1 samples, 0.04%)</title><rect x="377.2" y="9589" width="0.4" height="15.0" fill="rgb(226,178,6)" rx="2" ry="2" /> +<text x="380.18" y="9599.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (1 samples, 0.04%)</title><rect x="377.2" y="9685" width="0.4" height="15.0" fill="rgb(231,141,31)" rx="2" ry="2" /> +<text x="380.18" y="9695.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (3 samples, 0.11%)</title><rect x="739.6" y="10629" width="1.3" height="15.0" fill="rgb(227,96,8)" rx="2" ry="2" /> +<text x="742.59" y="10639.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="1104.6" y="10981" width="0.4" height="15.0" fill="rgb(238,187,1)" rx="2" ry="2" /> +<text x="1107.60" y="10991.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="733.5" y="9541" width="0.5" height="15.0" fill="rgb(212,187,0)" rx="2" ry="2" /> +<text x="736.52" y="9551.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="373.3" y="9365" width="0.4" height="15.0" fill="rgb(214,201,53)" rx="2" ry="2" /> +<text x="376.28" y="9375.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="734.8" y="10549" width="0.5" height="15.0" fill="rgb(206,198,15)" rx="2" ry="2" /> +<text x="737.82" y="10559.5" ></text> +</g> +<g > +<title><unknown> (1 samples, 0.04%)</title><rect x="1021.8" y="2357" width="0.4" height="15.0" fill="rgb(246,19,4)" rx="2" ry="2" /> +<text x="1024.80" y="2367.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="870.1" y="8901" width="0.4" height="15.0" fill="rgb(210,47,5)" rx="2" ry="2" /> +<text x="873.07" y="8911.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Stack::pushI32 (2 samples, 0.07%)</title><rect x="678.0" y="10005" width="0.9" height="15.0" fill="rgb(206,94,53)" rx="2" ry="2" /> +<text x="681.03" y="10015.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (7 samples, 0.26%)</title><rect x="492.1" y="10469" width="3.0" height="15.0" fill="rgb(217,120,14)" rx="2" ry="2" /> +<text x="495.06" y="10479.5" ></text> +</g> +<g > +<title><unknown> (2 samples, 0.07%)</title><rect x="1021.4" y="10581" width="0.8" height="15.0" fill="rgb(212,61,5)" rx="2" ry="2" /> +<text x="1024.37" y="10591.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="424.4" y="9045" width="0.5" height="15.0" fill="rgb(219,134,20)" rx="2" ry="2" /> +<text x="427.43" y="9055.5" ></text> +</g> +<g > +<title><unknown> (7 samples, 0.26%)</title><rect x="1019.6" y="11205" width="3.1" height="15.0" fill="rgb(241,214,37)" rx="2" ry="2" /> +<text x="1022.63" y="11215.5" ></text> +</g> +<g > +<title><unknown> (1 samples, 0.04%)</title><rect x="1021.8" y="5525" width="0.4" height="15.0" fill="rgb(207,30,24)" rx="2" ry="2" /> +<text x="1024.80" y="5535.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="739.2" y="10117" width="0.4" height="15.0" fill="rgb(206,88,23)" rx="2" ry="2" /> +<text x="742.16" y="10127.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="319.1" y="9477" width="0.4" height="15.0" fill="rgb(226,162,26)" rx="2" ry="2" /> +<text x="322.09" y="9487.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (1 samples, 0.04%)</title><rect x="735.3" y="10437" width="0.4" height="15.0" fill="rgb(222,204,43)" rx="2" ry="2" /> +<text x="738.25" y="10447.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (12 samples, 0.44%)</title><rect x="263.2" y="9589" width="5.2" height="15.0" fill="rgb(253,118,21)" rx="2" ry="2" /> +<text x="266.17" y="9599.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (30 samples, 1.10%)</title><rect x="758.7" y="10021" width="13.0" height="15.0" fill="rgb(254,1,19)" rx="2" ry="2" /> +<text x="761.66" y="10031.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="412.3" y="9141" width="0.4" height="15.0" fill="rgb(213,35,17)" rx="2" ry="2" /> +<text x="415.29" y="9151.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="668.1" y="9685" width="0.4" height="15.0" fill="rgb(223,70,37)" rx="2" ry="2" /> +<text x="671.06" y="9695.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="270.5" y="9685" width="0.5" height="15.0" fill="rgb(222,173,40)" rx="2" ry="2" /> +<text x="273.54" y="9695.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="443.1" y="8693" width="0.4" height="15.0" fill="rgb(254,100,37)" rx="2" ry="2" /> +<text x="446.07" y="8703.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (1 samples, 0.04%)</title><rect x="870.1" y="9781" width="0.4" height="15.0" fill="rgb(239,229,37)" rx="2" ry="2" /> +<text x="873.07" y="9791.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (1 samples, 0.04%)</title><rect x="318.2" y="9477" width="0.5" height="15.0" fill="rgb(221,194,25)" rx="2" ry="2" /> +<text x="321.22" y="9487.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (2 samples, 0.07%)</title><rect x="532.8" y="10101" width="0.9" height="15.0" fill="rgb(233,77,1)" rx="2" ry="2" /> +<text x="535.81" y="10111.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (1 samples, 0.04%)</title><rect x="261.4" y="9717" width="0.5" height="15.0" fill="rgb(244,78,10)" rx="2" ry="2" /> +<text x="264.43" y="9727.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="870.1" y="7749" width="0.4" height="15.0" fill="rgb(205,199,3)" rx="2" ry="2" /> +<text x="873.07" y="7759.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (10 samples, 0.37%)</title><rect x="772.1" y="10149" width="4.3" height="15.0" fill="rgb(233,104,40)" rx="2" ry="2" /> +<text x="775.10" y="10159.5" ></text> +</g> +<g > +<title><unknown> (2 samples, 0.07%)</title><rect x="1021.4" y="9925" width="0.8" height="15.0" fill="rgb(214,228,9)" rx="2" ry="2" /> +<text x="1024.37" y="9935.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (1 samples, 0.04%)</title><rect x="351.2" y="9701" width="0.4" height="15.0" fill="rgb(244,58,15)" rx="2" ry="2" /> +<text x="354.17" y="9711.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="1067.8" y="10389" width="0.4" height="15.0" fill="rgb(216,84,26)" rx="2" ry="2" /> +<text x="1070.75" y="10399.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (3 samples, 0.11%)</title><rect x="717.5" y="9845" width="1.3" height="15.0" fill="rgb(207,90,35)" rx="2" ry="2" /> +<text x="720.48" y="9855.5" ></text> +</g> +<g > +<title><unknown> (2 samples, 0.07%)</title><rect x="1021.4" y="9301" width="0.8" height="15.0" fill="rgb(213,169,47)" rx="2" ry="2" /> +<text x="1024.37" y="9311.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (289 samples, 10.62%)</title><rect x="742.6" y="10741" width="125.3" height="15.0" fill="rgb(246,194,31)" rx="2" ry="2" /> +<text x="745.62" y="10751.5" >Nsfisis\Waddiwa..</text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="870.1" y="9621" width="0.4" height="15.0" fill="rgb(228,13,3)" rx="2" ry="2" /> +<text x="873.07" y="9631.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (2 samples, 0.07%)</title><rect x="372.8" y="9541" width="0.9" height="15.0" fill="rgb(245,119,34)" rx="2" ry="2" /> +<text x="375.84" y="9551.5" ></text> +</g> +<g > +<title><unknown> (2 samples, 0.07%)</title><rect x="1021.4" y="6757" width="0.8" height="15.0" fill="rgb(228,104,39)" rx="2" ry="2" /> +<text x="1024.37" y="6767.5" ></text> +</g> +<g > +<title><unknown> (1 samples, 0.04%)</title><rect x="1021.8" y="485" width="0.4" height="15.0" fill="rgb(219,101,39)" rx="2" ry="2" /> +<text x="1024.80" y="495.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="465.2" y="9909" width="0.4" height="15.0" fill="rgb(222,177,30)" rx="2" ry="2" /> +<text x="468.18" y="9919.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="769.9" y="9877" width="0.5" height="15.0" fill="rgb(214,26,8)" rx="2" ry="2" /> +<text x="772.93" y="9887.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="360.3" y="9749" width="0.4" height="15.0" fill="rgb(247,217,21)" rx="2" ry="2" /> +<text x="363.27" y="9759.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="1035.2" y="11061" width="0.5" height="15.0" fill="rgb(248,96,53)" rx="2" ry="2" /> +<text x="1038.24" y="11071.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="870.1" y="9717" width="0.4" height="15.0" fill="rgb(247,190,9)" rx="2" ry="2" /> +<text x="873.07" y="9727.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (65 samples, 2.39%)</title><rect x="400.2" y="9781" width="28.1" height="15.0" fill="rgb(206,16,39)" rx="2" ry="2" /> +<text x="403.15" y="9791.5" >N..</text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="733.5" y="9925" width="0.5" height="15.0" fill="rgb(210,216,20)" rx="2" ry="2" /> +<text x="736.52" y="9935.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="868.3" y="10901" width="0.5" height="15.0" fill="rgb(219,166,49)" rx="2" ry="2" /> +<text x="871.34" y="10911.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (12 samples, 0.44%)</title><rect x="498.1" y="10405" width="5.2" height="15.0" fill="rgb(228,164,34)" rx="2" ry="2" /> +<text x="501.13" y="10415.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (3 samples, 0.11%)</title><rect x="492.5" y="10405" width="1.3" height="15.0" fill="rgb(237,150,19)" rx="2" ry="2" /> +<text x="495.49" y="10415.5" ></text> +</g> +<g > +<title><unknown> (1 samples, 0.04%)</title><rect x="1021.8" y="4373" width="0.4" height="15.0" fill="rgb(215,30,0)" rx="2" ry="2" /> +<text x="1024.80" y="4383.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="1035.2" y="10949" width="0.5" height="15.0" fill="rgb(208,7,28)" rx="2" ry="2" /> +<text x="1038.24" y="10959.5" ></text> +</g> +<g > +<title>assert (18 samples, 0.66%)</title><rect x="1182.2" y="11253" width="7.8" height="15.0" fill="rgb(211,220,47)" rx="2" ry="2" /> +<text x="1185.20" y="11263.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (7 samples, 0.26%)</title><rect x="791.2" y="10341" width="3.0" height="15.0" fill="rgb(243,71,37)" rx="2" ry="2" /> +<text x="794.18" y="10351.5" ></text> +</g> +<g > +<title>print_r (1 samples, 0.04%)</title><rect x="165.2" y="11125" width="0.4" height="15.0" fill="rgb(251,135,1)" rx="2" ry="2" /> +<text x="168.19" y="11135.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (8 samples, 0.29%)</title><rect x="687.6" y="9973" width="3.4" height="15.0" fill="rgb(227,24,22)" rx="2" ry="2" /> +<text x="690.57" y="9983.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Stack::popI32 (1 samples, 0.04%)</title><rect x="794.2" y="10421" width="0.4" height="15.0" fill="rgb(218,174,52)" rx="2" ry="2" /> +<text x="797.21" y="10431.5" ></text> +</g> +<g > +<title>chr (1 samples, 0.04%)</title><rect x="1034.8" y="11173" width="0.4" height="15.0" fill="rgb(226,209,46)" rx="2" ry="2" /> +<text x="1037.81" y="11183.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (3 samples, 0.11%)</title><rect x="245.0" y="10453" width="1.3" height="15.0" fill="rgb(236,14,18)" rx="2" ry="2" /> +<text x="247.96" y="10463.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="740.9" y="10485" width="0.4" height="15.0" fill="rgb(251,51,23)" rx="2" ry="2" /> +<text x="743.89" y="10495.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (19 samples, 0.70%)</title><rect x="710.5" y="9893" width="8.3" height="15.0" fill="rgb(219,17,10)" rx="2" ry="2" /> +<text x="713.54" y="9903.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (2 samples, 0.07%)</title><rect x="284.0" y="9685" width="0.8" height="15.0" fill="rgb(217,47,3)" rx="2" ry="2" /> +<text x="286.98" y="9695.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="1098.5" y="11045" width="0.5" height="15.0" fill="rgb(249,218,27)" rx="2" ry="2" /> +<text x="1101.53" y="11055.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (7 samples, 0.26%)</title><rect x="844.9" y="10149" width="3.1" height="15.0" fill="rgb(245,91,10)" rx="2" ry="2" /> +<text x="847.93" y="10159.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (2 samples, 0.07%)</title><rect x="469.9" y="9925" width="0.9" height="15.0" fill="rgb(209,187,1)" rx="2" ry="2" /> +<text x="472.95" y="9935.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (23 samples, 0.84%)</title><rect x="453.9" y="9845" width="10.0" height="15.0" fill="rgb(226,167,28)" rx="2" ry="2" /> +<text x="456.91" y="9855.5" ></text> +</g> +<g > +<title><unknown> (1 samples, 0.04%)</title><rect x="1137.1" y="11221" width="0.4" height="15.0" fill="rgb(253,215,22)" rx="2" ry="2" /> +<text x="1140.11" y="11231.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (563 samples, 20.68%)</title><rect x="246.3" y="10501" width="244.0" height="15.0" fill="rgb(221,206,24)" rx="2" ry="2" /> +<text x="249.26" y="10511.5" >Nsfisis\Waddiwasi\Execution\Runt..</text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (1 samples, 0.04%)</title><rect x="453.5" y="9829" width="0.4" height="15.0" fill="rgb(232,107,32)" rx="2" ry="2" /> +<text x="456.48" y="9839.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="485.1" y="9829" width="0.5" height="15.0" fill="rgb(254,207,8)" rx="2" ry="2" /> +<text x="488.12" y="9839.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (1 samples, 0.04%)</title><rect x="867.9" y="10069" width="0.4" height="15.0" fill="rgb(206,48,50)" rx="2" ry="2" /> +<text x="870.91" y="10079.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Stack::pushValue (1 samples, 0.04%)</title><rect x="790.3" y="10229" width="0.4" height="15.0" fill="rgb(206,75,20)" rx="2" ry="2" /> +<text x="793.31" y="10239.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Num::I32 (1 samples, 0.04%)</title><rect x="1161.0" y="11237" width="0.4" height="15.0" fill="rgb(238,152,49)" rx="2" ry="2" /> +<text x="1163.96" y="11247.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Stack::pushBool (1 samples, 0.04%)</title><rect x="481.7" y="9717" width="0.4" height="15.0" fill="rgb(207,24,46)" rx="2" ry="2" /> +<text x="484.65" y="9727.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="1168.8" y="11109" width="0.4" height="15.0" fill="rgb(240,95,1)" rx="2" ry="2" /> +<text x="1171.76" y="11119.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="827.2" y="10245" width="0.4" height="15.0" fill="rgb(228,41,45)" rx="2" ry="2" /> +<text x="830.16" y="10255.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (3 samples, 0.11%)</title><rect x="542.3" y="10277" width="1.3" height="15.0" fill="rgb(248,176,14)" rx="2" ry="2" /> +<text x="545.34" y="10287.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="453.5" y="9541" width="0.4" height="15.0" fill="rgb(242,159,54)" rx="2" ry="2" /> +<text x="456.48" y="9551.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (1 samples, 0.04%)</title><rect x="1128.9" y="11173" width="0.4" height="15.0" fill="rgb(208,84,1)" rx="2" ry="2" /> +<text x="1131.88" y="11183.5" ></text> +</g> +<g > +<title><unknown> (2 samples, 0.07%)</title><rect x="1021.4" y="8453" width="0.8" height="15.0" fill="rgb(215,214,11)" rx="2" ry="2" /> +<text x="1024.37" y="8463.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="867.9" y="10789" width="0.4" height="15.0" fill="rgb(220,226,16)" rx="2" ry="2" /> +<text x="870.91" y="10799.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (3 samples, 0.11%)</title><rect x="676.7" y="9909" width="1.3" height="15.0" fill="rgb(230,216,4)" rx="2" ry="2" /> +<text x="679.73" y="9919.5" ></text> +</g> +<g > +<title><unknown> (2 samples, 0.07%)</title><rect x="1021.4" y="10117" width="0.8" height="15.0" fill="rgb(239,66,43)" rx="2" ry="2" /> +<text x="1024.37" y="10127.5" ></text> +</g> +<g > +<title><unknown> (2 samples, 0.07%)</title><rect x="1021.4" y="10837" width="0.8" height="15.0" fill="rgb(207,81,2)" rx="2" ry="2" /> +<text x="1024.37" y="10847.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (2 samples, 0.07%)</title><rect x="398.0" y="9541" width="0.9" height="15.0" fill="rgb(226,98,34)" rx="2" ry="2" /> +<text x="400.99" y="9551.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (2 samples, 0.07%)</title><rect x="424.0" y="9141" width="0.9" height="15.0" fill="rgb(216,166,53)" rx="2" ry="2" /> +<text x="427.00" y="9151.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="867.0" y="10293" width="0.5" height="15.0" fill="rgb(215,209,33)" rx="2" ry="2" /> +<text x="870.04" y="10303.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (90 samples, 3.31%)</title><rect x="693.2" y="10053" width="39.0" height="15.0" fill="rgb(212,195,32)" rx="2" ry="2" /> +<text x="696.20" y="10063.5" >Nsf..</text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (3 samples, 0.11%)</title><rect x="846.7" y="10117" width="1.3" height="15.0" fill="rgb(241,190,18)" rx="2" ry="2" /> +<text x="849.66" y="10127.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="438.3" y="9653" width="0.4" height="15.0" fill="rgb(237,122,45)" rx="2" ry="2" /> +<text x="441.30" y="9663.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (1 samples, 0.04%)</title><rect x="360.3" y="9765" width="0.4" height="15.0" fill="rgb(234,44,14)" rx="2" ry="2" /> +<text x="363.27" y="9775.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (3 samples, 0.11%)</title><rect x="739.6" y="10661" width="1.3" height="15.0" fill="rgb(244,170,23)" rx="2" ry="2" /> +<text x="742.59" y="10671.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="777.3" y="10373" width="0.4" height="15.0" fill="rgb(246,50,1)" rx="2" ry="2" /> +<text x="780.30" y="10383.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (4 samples, 0.15%)</title><rect x="732.2" y="10165" width="1.8" height="15.0" fill="rgb(209,201,34)" rx="2" ry="2" /> +<text x="735.22" y="10175.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (2 samples, 0.07%)</title><rect x="305.2" y="9333" width="0.9" height="15.0" fill="rgb(250,217,51)" rx="2" ry="2" /> +<text x="308.22" y="9343.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="329.1" y="9797" width="0.4" height="15.0" fill="rgb(218,111,26)" rx="2" ry="2" /> +<text x="332.06" y="9807.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (4 samples, 0.15%)</title><rect x="380.2" y="9573" width="1.7" height="15.0" fill="rgb(239,167,16)" rx="2" ry="2" /> +<text x="383.21" y="9583.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (3 samples, 0.11%)</title><rect x="812.0" y="10229" width="1.3" height="15.0" fill="rgb(230,90,38)" rx="2" ry="2" /> +<text x="814.98" y="10239.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (3 samples, 0.11%)</title><rect x="529.8" y="10245" width="1.3" height="15.0" fill="rgb(246,63,49)" rx="2" ry="2" /> +<text x="532.77" y="10255.5" ></text> +</g> +<g > +<title><unknown> (1 samples, 0.04%)</title><rect x="1021.8" y="693" width="0.4" height="15.0" fill="rgb(206,83,8)" rx="2" ry="2" /> +<text x="1024.80" y="703.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (3 samples, 0.11%)</title><rect x="289.6" y="9573" width="1.3" height="15.0" fill="rgb(220,8,16)" rx="2" ry="2" /> +<text x="292.61" y="9583.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (108 samples, 3.97%)</title><rect x="280.5" y="9893" width="46.8" height="15.0" fill="rgb(215,68,51)" rx="2" ry="2" /> +<text x="283.51" y="9903.5" >Nsfi..</text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (58 samples, 2.13%)</title><rect x="375.0" y="9765" width="25.2" height="15.0" fill="rgb(225,65,21)" rx="2" ry="2" /> +<text x="378.01" y="9775.5" >N..</text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Stack::currentFrame (3 samples, 0.11%)</title><rect x="635.1" y="9909" width="1.3" height="15.0" fill="rgb(226,134,40)" rx="2" ry="2" /> +<text x="638.11" y="9919.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="486.4" y="9797" width="0.5" height="15.0" fill="rgb(240,195,11)" rx="2" ry="2" /> +<text x="489.42" y="9807.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (3 samples, 0.11%)</title><rect x="317.4" y="9605" width="1.3" height="15.0" fill="rgb(225,46,1)" rx="2" ry="2" /> +<text x="320.35" y="9615.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="870.1" y="8981" width="0.4" height="15.0" fill="rgb(234,99,31)" rx="2" ry="2" /> +<text x="873.07" y="8991.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (2 samples, 0.07%)</title><rect x="734.0" y="10533" width="0.8" height="15.0" fill="rgb(227,182,24)" rx="2" ry="2" /> +<text x="736.95" y="10543.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (1 samples, 0.04%)</title><rect x="734.0" y="10021" width="0.4" height="15.0" fill="rgb(248,34,42)" rx="2" ry="2" /> +<text x="736.95" y="10031.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="466.5" y="9701" width="0.4" height="15.0" fill="rgb(226,119,36)" rx="2" ry="2" /> +<text x="469.48" y="9711.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="1067.8" y="10677" width="0.4" height="15.0" fill="rgb(230,140,32)" rx="2" ry="2" /> +<text x="1070.75" y="10687.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (1 samples, 0.04%)</title><rect x="469.5" y="9781" width="0.4" height="15.0" fill="rgb(213,183,11)" rx="2" ry="2" /> +<text x="472.52" y="9791.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (3 samples, 0.11%)</title><rect x="739.6" y="10645" width="1.3" height="15.0" fill="rgb(206,18,9)" rx="2" ry="2" /> +<text x="742.59" y="10655.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (3 samples, 0.11%)</title><rect x="739.6" y="10613" width="1.3" height="15.0" fill="rgb(254,58,38)" rx="2" ry="2" /> +<text x="742.59" y="10623.5" ></text> +</g> +<g > +<title><unknown> (1 samples, 0.04%)</title><rect x="1021.8" y="309" width="0.4" height="15.0" fill="rgb(209,77,7)" rx="2" ry="2" /> +<text x="1024.80" y="319.5" ></text> +</g> +<g > +<title><unknown> (1 samples, 0.04%)</title><rect x="1021.8" y="3733" width="0.4" height="15.0" fill="rgb(214,37,21)" rx="2" ry="2" /> +<text x="1024.80" y="3743.5" ></text> +</g> +<g > +<title><unknown> (2 samples, 0.07%)</title><rect x="1021.4" y="10069" width="0.8" height="15.0" fill="rgb(247,104,0)" rx="2" ry="2" /> +<text x="1024.37" y="10079.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="497.3" y="10037" width="0.4" height="15.0" fill="rgb(250,64,19)" rx="2" ry="2" /> +<text x="500.26" y="10047.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (4 samples, 0.15%)</title><rect x="732.2" y="10213" width="1.8" height="15.0" fill="rgb(222,37,6)" rx="2" ry="2" /> +<text x="735.22" y="10223.5" ></text> +</g> +<g > +<title><unknown> (1 samples, 0.04%)</title><rect x="1021.8" y="5477" width="0.4" height="15.0" fill="rgb(240,229,49)" rx="2" ry="2" /> +<text x="1024.80" y="5487.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="438.3" y="9637" width="0.4" height="15.0" fill="rgb(212,193,40)" rx="2" ry="2" /> +<text x="441.30" y="9647.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (2 samples, 0.07%)</title><rect x="789.9" y="10245" width="0.8" height="15.0" fill="rgb(219,68,42)" rx="2" ry="2" /> +<text x="792.88" y="10255.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (3 samples, 0.11%)</title><rect x="495.5" y="10421" width="1.3" height="15.0" fill="rgb(242,6,31)" rx="2" ry="2" /> +<text x="498.53" y="10431.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="399.7" y="9637" width="0.5" height="15.0" fill="rgb(249,143,46)" rx="2" ry="2" /> +<text x="402.72" y="9647.5" ></text> +</g> +<g > +<title><unknown> (1 samples, 0.04%)</title><rect x="1021.8" y="5701" width="0.4" height="15.0" fill="rgb(206,132,50)" rx="2" ry="2" /> +<text x="1024.80" y="5711.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (4 samples, 0.15%)</title><rect x="732.2" y="10197" width="1.8" height="15.0" fill="rgb(229,199,35)" rx="2" ry="2" /> +<text x="735.22" y="10207.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (52 samples, 1.91%)</title><rect x="827.6" y="10261" width="22.5" height="15.0" fill="rgb(227,200,30)" rx="2" ry="2" /> +<text x="830.59" y="10271.5" >N..</text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Val::NumI64 (1 samples, 0.04%)</title><rect x="496.4" y="10021" width="0.4" height="15.0" fill="rgb(248,218,41)" rx="2" ry="2" /> +<text x="499.39" y="10031.5" ></text> +</g> +<g > +<title><unknown> (2 samples, 0.07%)</title><rect x="1021.4" y="10645" width="0.8" height="15.0" fill="rgb(238,31,13)" rx="2" ry="2" /> +<text x="1024.37" y="10655.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="238.9" y="10277" width="0.4" height="15.0" fill="rgb(212,66,34)" rx="2" ry="2" /> +<text x="241.89" y="10287.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (1 samples, 0.04%)</title><rect x="724.8" y="9973" width="0.5" height="15.0" fill="rgb(213,91,50)" rx="2" ry="2" /> +<text x="727.85" y="9983.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (562 samples, 20.65%)</title><rect x="246.7" y="10261" width="243.6" height="15.0" fill="rgb(254,188,45)" rx="2" ry="2" /> +<text x="249.69" y="10271.5" >Nsfisis\Waddiwasi\Execution\Runt..</text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="412.7" y="9141" width="0.5" height="15.0" fill="rgb(246,127,0)" rx="2" ry="2" /> +<text x="415.73" y="9151.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (2 samples, 0.07%)</title><rect x="329.5" y="9813" width="0.9" height="15.0" fill="rgb(229,37,34)" rx="2" ry="2" /> +<text x="332.49" y="9823.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (1 samples, 0.04%)</title><rect x="271.4" y="9685" width="0.4" height="15.0" fill="rgb(224,74,4)" rx="2" ry="2" /> +<text x="274.40" y="9695.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (6 samples, 0.22%)</title><rect x="255.4" y="9797" width="2.6" height="15.0" fill="rgb(224,172,22)" rx="2" ry="2" /> +<text x="258.36" y="9807.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="847.5" y="10085" width="0.5" height="15.0" fill="rgb(212,177,43)" rx="2" ry="2" /> +<text x="850.53" y="10095.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="870.1" y="9413" width="0.4" height="15.0" fill="rgb(242,84,48)" rx="2" ry="2" /> +<text x="873.07" y="9423.5" ></text> +</g> +<g > +<title><unknown> (1 samples, 0.04%)</title><rect x="1140.1" y="11173" width="0.5" height="15.0" fill="rgb(229,89,5)" rx="2" ry="2" /> +<text x="1143.15" y="11183.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="483.8" y="9605" width="0.5" height="15.0" fill="rgb(207,215,39)" rx="2" ry="2" /> +<text x="486.82" y="9615.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (1 samples, 0.04%)</title><rect x="372.0" y="9669" width="0.4" height="15.0" fill="rgb(241,133,3)" rx="2" ry="2" /> +<text x="374.98" y="9679.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (3 samples, 0.11%)</title><rect x="468.6" y="9861" width="1.3" height="15.0" fill="rgb(207,91,48)" rx="2" ry="2" /> +<text x="471.65" y="9871.5" ></text> +</g> +<g > +<title><unknown> (1 samples, 0.04%)</title><rect x="1021.8" y="1125" width="0.4" height="15.0" fill="rgb(216,53,54)" rx="2" ry="2" /> +<text x="1024.80" y="1135.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (16 samples, 0.59%)</title><rect x="476.5" y="9909" width="6.9" height="15.0" fill="rgb(222,215,20)" rx="2" ry="2" /> +<text x="479.45" y="9919.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="870.1" y="8421" width="0.4" height="15.0" fill="rgb(247,198,32)" rx="2" ry="2" /> +<text x="873.07" y="8431.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::activateLabel (1 samples, 0.04%)</title><rect x="450.0" y="10085" width="0.4" height="15.0" fill="rgb(225,35,9)" rx="2" ry="2" /> +<text x="453.01" y="10095.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="796.8" y="10437" width="0.4" height="15.0" fill="rgb(205,68,52)" rx="2" ry="2" /> +<text x="799.81" y="10447.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (5 samples, 0.18%)</title><rect x="541.5" y="10453" width="2.1" height="15.0" fill="rgb(238,174,30)" rx="2" ry="2" /> +<text x="544.48" y="10463.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\StackEntry::Value (1 samples, 0.04%)</title><rect x="678.5" y="9989" width="0.4" height="15.0" fill="rgb(240,130,22)" rx="2" ry="2" /> +<text x="681.46" y="9999.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="245.4" y="10309" width="0.4" height="15.0" fill="rgb(243,64,41)" rx="2" ry="2" /> +<text x="248.39" y="10319.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (4 samples, 0.15%)</title><rect x="1071.2" y="11189" width="1.8" height="15.0" fill="rgb(236,114,44)" rx="2" ry="2" /> +<text x="1074.22" y="11199.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="733.5" y="9717" width="0.5" height="15.0" fill="rgb(221,188,28)" rx="2" ry="2" /> +<text x="736.52" y="9727.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="870.1" y="8933" width="0.4" height="15.0" fill="rgb(248,126,7)" rx="2" ry="2" /> +<text x="873.07" y="8943.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (2 samples, 0.07%)</title><rect x="440.9" y="9573" width="0.9" height="15.0" fill="rgb(238,104,27)" rx="2" ry="2" /> +<text x="443.90" y="9583.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="318.2" y="9445" width="0.5" height="15.0" fill="rgb(206,199,12)" rx="2" ry="2" /> +<text x="321.22" y="9455.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="409.3" y="9061" width="0.4" height="15.0" fill="rgb(254,220,43)" rx="2" ry="2" /> +<text x="412.26" y="9071.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="868.3" y="10773" width="0.5" height="15.0" fill="rgb(219,99,22)" rx="2" ry="2" /> +<text x="871.34" y="10783.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="329.1" y="9701" width="0.4" height="15.0" fill="rgb(225,13,33)" rx="2" ry="2" /> +<text x="332.06" y="9711.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="733.5" y="9957" width="0.5" height="15.0" fill="rgb(253,32,34)" rx="2" ry="2" /> +<text x="736.52" y="9967.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (3 samples, 0.11%)</title><rect x="529.8" y="10229" width="1.3" height="15.0" fill="rgb(249,120,48)" rx="2" ry="2" /> +<text x="532.77" y="10239.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="483.4" y="9829" width="0.4" height="15.0" fill="rgb(205,108,40)" rx="2" ry="2" /> +<text x="486.39" y="9839.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (1 samples, 0.04%)</title><rect x="740.9" y="10645" width="0.4" height="15.0" fill="rgb(237,85,41)" rx="2" ry="2" /> +<text x="743.89" y="10655.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (4 samples, 0.15%)</title><rect x="742.6" y="10501" width="1.8" height="15.0" fill="rgb(245,91,18)" rx="2" ry="2" /> +<text x="745.62" y="10511.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (1 samples, 0.04%)</title><rect x="365.0" y="9765" width="0.5" height="15.0" fill="rgb(236,95,16)" rx="2" ry="2" /> +<text x="368.04" y="9775.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (4 samples, 0.15%)</title><rect x="351.6" y="9461" width="1.7" height="15.0" fill="rgb(254,202,48)" rx="2" ry="2" /> +<text x="354.60" y="9471.5" ></text> +</g> +<g > +<title>assert (1 samples, 0.04%)</title><rect x="238.5" y="11221" width="0.4" height="15.0" fill="rgb(250,4,22)" rx="2" ry="2" /> +<text x="241.46" y="11231.5" ></text> +</g> +<g > +<title><unknown> (1 samples, 0.04%)</title><rect x="1021.8" y="3349" width="0.4" height="15.0" fill="rgb(228,206,12)" rx="2" ry="2" /> +<text x="1024.80" y="3359.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="780.3" y="10277" width="0.5" height="15.0" fill="rgb(245,177,13)" rx="2" ry="2" /> +<text x="783.34" y="10287.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="485.1" y="9909" width="0.5" height="15.0" fill="rgb(207,189,17)" rx="2" ry="2" /> +<text x="488.12" y="9919.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (1 samples, 0.04%)</title><rect x="740.9" y="10709" width="0.4" height="15.0" fill="rgb(221,36,9)" rx="2" ry="2" /> +<text x="743.89" y="10719.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="733.5" y="8805" width="0.5" height="15.0" fill="rgb(208,116,4)" rx="2" ry="2" /> +<text x="736.52" y="8815.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (3 samples, 0.11%)</title><rect x="442.2" y="9397" width="1.3" height="15.0" fill="rgb(218,157,54)" rx="2" ry="2" /> +<text x="445.20" y="9407.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="446.1" y="9797" width="0.4" height="15.0" fill="rgb(252,197,53)" rx="2" ry="2" /> +<text x="449.11" y="9807.5" ></text> +</g> +<g > +<title><unknown> (1 samples, 0.04%)</title><rect x="1021.8" y="1733" width="0.4" height="15.0" fill="rgb(206,226,47)" rx="2" ry="2" /> +<text x="1024.80" y="1743.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="866.2" y="10245" width="0.4" height="15.0" fill="rgb(235,40,40)" rx="2" ry="2" /> +<text x="869.17" y="10255.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (2 samples, 0.07%)</title><rect x="496.8" y="10437" width="0.9" height="15.0" fill="rgb(240,14,40)" rx="2" ry="2" /> +<text x="499.83" y="10447.5" ></text> +</g> +<g > +<title><unknown> (2 samples, 0.07%)</title><rect x="1021.4" y="8821" width="0.8" height="15.0" fill="rgb(213,205,16)" rx="2" ry="2" /> +<text x="1024.37" y="8831.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="373.3" y="9317" width="0.4" height="15.0" fill="rgb(216,6,27)" rx="2" ry="2" /> +<text x="376.28" y="9327.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="1115.9" y="10901" width="0.4" height="15.0" fill="rgb(229,83,40)" rx="2" ry="2" /> +<text x="1118.87" y="10911.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="850.6" y="10213" width="0.4" height="15.0" fill="rgb(212,43,53)" rx="2" ry="2" /> +<text x="853.57" y="10223.5" ></text> +</g> +<g > +<title><unknown> (2 samples, 0.07%)</title><rect x="1021.4" y="9093" width="0.8" height="15.0" fill="rgb(245,62,14)" rx="2" ry="2" /> +<text x="1024.37" y="9103.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="318.7" y="9413" width="0.4" height="15.0" fill="rgb(227,95,27)" rx="2" ry="2" /> +<text x="321.66" y="9423.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (563 samples, 20.68%)</title><rect x="246.3" y="10533" width="244.0" height="15.0" fill="rgb(226,144,10)" rx="2" ry="2" /> +<text x="249.26" y="10543.5" >Nsfisis\Waddiwasi\Execution\Runt..</text> +</g> +<g > +<title><unknown> (2 samples, 0.07%)</title><rect x="1021.4" y="10901" width="0.8" height="15.0" fill="rgb(244,206,23)" rx="2" ry="2" /> +<text x="1024.37" y="10911.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="239.8" y="10821" width="0.4" height="15.0" fill="rgb(250,140,54)" rx="2" ry="2" /> +<text x="242.76" y="10831.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (3 samples, 0.11%)</title><rect x="722.2" y="9845" width="1.3" height="15.0" fill="rgb(253,195,20)" rx="2" ry="2" /> +<text x="725.25" y="9855.5" ></text> +</g> +<g > +<title><unknown> (1 samples, 0.04%)</title><rect x="301.3" y="9653" width="0.4" height="15.0" fill="rgb(249,179,10)" rx="2" ry="2" /> +<text x="304.32" y="9663.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="468.2" y="9765" width="0.4" height="15.0" fill="rgb(210,145,6)" rx="2" ry="2" /> +<text x="471.21" y="9775.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (241 samples, 8.85%)</title><rect x="547.1" y="10069" width="104.5" height="15.0" fill="rgb(209,93,14)" rx="2" ry="2" /> +<text x="550.11" y="10079.5" >Nsfisis\Wadd..</text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (4 samples, 0.15%)</title><rect x="317.4" y="9685" width="1.7" height="15.0" fill="rgb(217,21,15)" rx="2" ry="2" /> +<text x="320.35" y="9695.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="744.4" y="10133" width="0.4" height="15.0" fill="rgb(205,130,5)" rx="2" ry="2" /> +<text x="747.36" y="10143.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (2 samples, 0.07%)</title><rect x="486.9" y="9749" width="0.8" height="15.0" fill="rgb(237,68,33)" rx="2" ry="2" /> +<text x="489.86" y="9759.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (5 samples, 0.18%)</title><rect x="742.6" y="10549" width="2.2" height="15.0" fill="rgb(246,53,52)" rx="2" ry="2" /> +<text x="745.62" y="10559.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="453.5" y="9429" width="0.4" height="15.0" fill="rgb(249,141,50)" rx="2" ry="2" /> +<text x="456.48" y="9439.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (2 samples, 0.07%)</title><rect x="804.6" y="10293" width="0.9" height="15.0" fill="rgb(245,138,11)" rx="2" ry="2" /> +<text x="807.61" y="10303.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Stack::pushBool (1 samples, 0.04%)</title><rect x="727.5" y="9845" width="0.4" height="15.0" fill="rgb(223,45,23)" rx="2" ry="2" /> +<text x="730.45" y="9855.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (2 samples, 0.07%)</title><rect x="739.6" y="10533" width="0.9" height="15.0" fill="rgb(232,52,7)" rx="2" ry="2" /> +<text x="742.59" y="10543.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (191 samples, 7.02%)</title><rect x="652.0" y="10677" width="82.8" height="15.0" fill="rgb(221,128,5)" rx="2" ry="2" /> +<text x="655.02" y="10687.5" >Nsfisis\W..</text> +</g> +<g > +<title><unknown> (1 samples, 0.04%)</title><rect x="1021.8" y="3845" width="0.4" height="15.0" fill="rgb(220,145,19)" rx="2" ry="2" /> +<text x="1024.80" y="3855.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="438.3" y="9589" width="0.4" height="15.0" fill="rgb(232,93,40)" rx="2" ry="2" /> +<text x="441.30" y="9599.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (1 samples, 0.04%)</title><rect x="307.8" y="9285" width="0.5" height="15.0" fill="rgb(211,69,8)" rx="2" ry="2" /> +<text x="310.82" y="9295.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (2 samples, 0.07%)</title><rect x="256.7" y="9701" width="0.8" height="15.0" fill="rgb(251,118,47)" rx="2" ry="2" /> +<text x="259.66" y="9711.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="398.4" y="9429" width="0.5" height="15.0" fill="rgb(215,70,38)" rx="2" ry="2" /> +<text x="401.42" y="9439.5" ></text> +</g> +<g > +<title><unknown> (1 samples, 0.04%)</title><rect x="1021.8" y="4757" width="0.4" height="15.0" fill="rgb(236,192,16)" rx="2" ry="2" /> +<text x="1024.80" y="4767.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (1 samples, 0.04%)</title><rect x="733.5" y="8421" width="0.5" height="15.0" fill="rgb(232,42,52)" rx="2" ry="2" /> +<text x="736.52" y="8431.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="442.2" y="8677" width="0.4" height="15.0" fill="rgb(211,221,36)" rx="2" ry="2" /> +<text x="445.20" y="8687.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (6 samples, 0.22%)</title><rect x="727.9" y="9925" width="2.6" height="15.0" fill="rgb(235,76,24)" rx="2" ry="2" /> +<text x="730.88" y="9935.5" ></text> +</g> +<g > +<title><unknown> (2 samples, 0.07%)</title><rect x="1180.5" y="11237" width="0.8" height="15.0" fill="rgb(252,52,41)" rx="2" ry="2" /> +<text x="1183.46" y="11247.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (9 samples, 0.33%)</title><rect x="460.0" y="9621" width="3.9" height="15.0" fill="rgb(253,38,45)" rx="2" ry="2" /> +<text x="462.98" y="9631.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (5 samples, 0.18%)</title><rect x="306.1" y="9477" width="2.2" height="15.0" fill="rgb(229,132,39)" rx="2" ry="2" /> +<text x="309.08" y="9487.5" ></text> +</g> +<g > +<title><unknown> (2 samples, 0.07%)</title><rect x="1021.4" y="7285" width="0.8" height="15.0" fill="rgb(228,184,31)" rx="2" ry="2" /> +<text x="1024.37" y="7295.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (13 samples, 0.48%)</title><rect x="1106.8" y="10997" width="5.6" height="15.0" fill="rgb(232,153,1)" rx="2" ry="2" /> +<text x="1109.77" y="11007.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (9 samples, 0.33%)</title><rect x="441.8" y="9653" width="3.9" height="15.0" fill="rgb(227,48,50)" rx="2" ry="2" /> +<text x="444.77" y="9663.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="870.1" y="9989" width="0.4" height="15.0" fill="rgb(208,107,8)" rx="2" ry="2" /> +<text x="873.07" y="9999.5" ></text> +</g> +<g > +<title><unknown> (1 samples, 0.04%)</title><rect x="1021.8" y="133" width="0.4" height="15.0" fill="rgb(247,20,45)" rx="2" ry="2" /> +<text x="1024.80" y="143.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Stack::popI32 (1 samples, 0.04%)</title><rect x="638.6" y="9893" width="0.4" height="15.0" fill="rgb(233,203,28)" rx="2" ry="2" /> +<text x="641.58" y="9903.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="869.2" y="9877" width="0.4" height="15.0" fill="rgb(218,134,41)" rx="2" ry="2" /> +<text x="872.21" y="9887.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (9 samples, 0.33%)</title><rect x="460.0" y="9605" width="3.9" height="15.0" fill="rgb(229,224,21)" rx="2" ry="2" /> +<text x="462.98" y="9615.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (125 samples, 4.59%)</title><rect x="374.1" y="9813" width="54.2" height="15.0" fill="rgb(218,164,33)" rx="2" ry="2" /> +<text x="377.14" y="9823.5" >Nsfis..</text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="867.9" y="10469" width="0.4" height="15.0" fill="rgb(209,199,25)" rx="2" ry="2" /> +<text x="870.91" y="10479.5" ></text> +</g> +<g > +<title><unknown> (2 samples, 0.07%)</title><rect x="1021.4" y="9029" width="0.8" height="15.0" fill="rgb(209,106,4)" rx="2" ry="2" /> +<text x="1024.37" y="9039.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (12 samples, 0.44%)</title><rect x="725.3" y="9973" width="5.2" height="15.0" fill="rgb(239,215,6)" rx="2" ry="2" /> +<text x="728.28" y="9983.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="345.1" y="9797" width="0.4" height="15.0" fill="rgb(216,109,26)" rx="2" ry="2" /> +<text x="348.10" y="9807.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (45 samples, 1.65%)</title><rect x="659.8" y="10085" width="19.5" height="15.0" fill="rgb(210,137,27)" rx="2" ry="2" /> +<text x="662.82" y="10095.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (29 samples, 1.07%)</title><rect x="258.8" y="9797" width="12.6" height="15.0" fill="rgb(211,160,6)" rx="2" ry="2" /> +<text x="261.83" y="9807.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (6 samples, 0.22%)</title><rect x="857.9" y="10229" width="2.6" height="15.0" fill="rgb(210,99,38)" rx="2" ry="2" /> +<text x="860.94" y="10239.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="869.2" y="9813" width="0.4" height="15.0" fill="rgb(220,121,9)" rx="2" ry="2" /> +<text x="872.21" y="9823.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (1 samples, 0.04%)</title><rect x="780.3" y="10309" width="0.5" height="15.0" fill="rgb(237,209,42)" rx="2" ry="2" /> +<text x="783.34" y="10319.5" ></text> +</g> +<g > +<title><unknown> (1 samples, 0.04%)</title><rect x="842.8" y="10165" width="0.4" height="15.0" fill="rgb(209,3,50)" rx="2" ry="2" /> +<text x="845.76" y="10175.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="453.5" y="9493" width="0.4" height="15.0" fill="rgb(235,85,34)" rx="2" ry="2" /> +<text x="456.48" y="9503.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="870.1" y="8709" width="0.4" height="15.0" fill="rgb(221,99,10)" rx="2" ry="2" /> +<text x="873.07" y="8719.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (2 samples, 0.07%)</title><rect x="870.1" y="10085" width="0.8" height="15.0" fill="rgb(207,166,32)" rx="2" ry="2" /> +<text x="873.07" y="10095.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Stack::pushValue (1 samples, 0.04%)</title><rect x="470.8" y="10101" width="0.4" height="15.0" fill="rgb(210,80,18)" rx="2" ry="2" /> +<text x="473.82" y="10111.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (3 samples, 0.11%)</title><rect x="542.3" y="10261" width="1.3" height="15.0" fill="rgb(206,102,39)" rx="2" ry="2" /> +<text x="545.34" y="10271.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (2 samples, 0.07%)</title><rect x="1141.9" y="11141" width="0.8" height="15.0" fill="rgb(208,46,4)" rx="2" ry="2" /> +<text x="1144.88" y="11151.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (26 samples, 0.96%)</title><rect x="452.6" y="10005" width="11.3" height="15.0" fill="rgb(234,16,7)" rx="2" ry="2" /> +<text x="455.61" y="10015.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="454.3" y="9477" width="0.5" height="15.0" fill="rgb(220,193,31)" rx="2" ry="2" /> +<text x="457.34" y="9487.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (63 samples, 2.31%)</title><rect x="749.1" y="10421" width="27.3" height="15.0" fill="rgb(251,80,7)" rx="2" ry="2" /> +<text x="752.13" y="10431.5" >N..</text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (183 samples, 6.72%)</title><rect x="652.9" y="10229" width="79.3" height="15.0" fill="rgb(243,32,29)" rx="2" ry="2" /> +<text x="655.89" y="10239.5" >Nsfisis\W..</text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (4 samples, 0.15%)</title><rect x="380.2" y="9509" width="1.7" height="15.0" fill="rgb(224,150,26)" rx="2" ry="2" /> +<text x="383.21" y="9519.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="740.0" y="10437" width="0.5" height="15.0" fill="rgb(241,167,48)" rx="2" ry="2" /> +<text x="743.02" y="10447.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Structure\Instructions\Instr::I32Store8 (48 samples, 1.76%)</title><rect x="217.6" y="11189" width="20.9" height="15.0" fill="rgb(237,134,22)" rx="2" ry="2" /> +<text x="220.65" y="11199.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (3 samples, 0.11%)</title><rect x="438.3" y="9861" width="1.3" height="15.0" fill="rgb(241,201,27)" rx="2" ry="2" /> +<text x="441.30" y="9871.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="270.5" y="9605" width="0.5" height="15.0" fill="rgb(251,37,48)" rx="2" ry="2" /> +<text x="273.54" y="9615.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (2 samples, 0.07%)</title><rect x="496.8" y="10453" width="0.9" height="15.0" fill="rgb(254,129,39)" rx="2" ry="2" /> +<text x="499.83" y="10463.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (3 samples, 0.11%)</title><rect x="402.8" y="9429" width="1.3" height="15.0" fill="rgb(218,119,30)" rx="2" ry="2" /> +<text x="405.76" y="9439.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (2 samples, 0.07%)</title><rect x="496.0" y="10165" width="0.8" height="15.0" fill="rgb(211,77,38)" rx="2" ry="2" /> +<text x="498.96" y="10175.5" ></text> +</g> +<g > +<title><unknown> (2 samples, 0.07%)</title><rect x="1021.4" y="8917" width="0.8" height="15.0" fill="rgb(229,42,50)" rx="2" ry="2" /> +<text x="1024.37" y="8927.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="852.3" y="10229" width="0.4" height="15.0" fill="rgb(250,156,46)" rx="2" ry="2" /> +<text x="855.30" y="10239.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="1181.3" y="11221" width="0.5" height="15.0" fill="rgb(253,151,1)" rx="2" ry="2" /> +<text x="1184.33" y="11231.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="703.6" y="9925" width="0.4" height="15.0" fill="rgb(241,95,20)" rx="2" ry="2" /> +<text x="706.61" y="9935.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (1 samples, 0.04%)</title><rect x="870.1" y="10037" width="0.4" height="15.0" fill="rgb(239,91,25)" rx="2" ry="2" /> +<text x="873.07" y="10047.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="870.1" y="8725" width="0.4" height="15.0" fill="rgb(237,21,8)" rx="2" ry="2" /> +<text x="873.07" y="8735.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="439.2" y="9701" width="0.4" height="15.0" fill="rgb(228,68,40)" rx="2" ry="2" /> +<text x="442.17" y="9711.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (32 samples, 1.18%)</title><rect x="757.8" y="10069" width="13.9" height="15.0" fill="rgb(218,144,36)" rx="2" ry="2" /> +<text x="760.80" y="10079.5" ></text> +</g> +<g > +<title><unknown> (1 samples, 0.04%)</title><rect x="1021.8" y="4869" width="0.4" height="15.0" fill="rgb(232,25,4)" rx="2" ry="2" /> +<text x="1024.80" y="4879.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (6 samples, 0.22%)</title><rect x="410.6" y="9621" width="2.6" height="15.0" fill="rgb(249,73,52)" rx="2" ry="2" /> +<text x="413.56" y="9631.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="453.5" y="9381" width="0.4" height="15.0" fill="rgb(222,34,11)" rx="2" ry="2" /> +<text x="456.48" y="9391.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (11 samples, 0.40%)</title><rect x="422.7" y="9413" width="4.8" height="15.0" fill="rgb(233,134,3)" rx="2" ry="2" /> +<text x="425.70" y="9423.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (2 samples, 0.07%)</title><rect x="729.2" y="9877" width="0.9" height="15.0" fill="rgb(212,186,22)" rx="2" ry="2" /> +<text x="732.18" y="9887.5" ></text> +</g> +<g > +<title><unknown> (2 samples, 0.07%)</title><rect x="1021.4" y="8165" width="0.8" height="15.0" fill="rgb(207,176,32)" rx="2" ry="2" /> +<text x="1024.37" y="8175.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="486.4" y="9845" width="0.5" height="15.0" fill="rgb(251,222,26)" rx="2" ry="2" /> +<text x="489.42" y="9855.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (6 samples, 0.22%)</title><rect x="275.7" y="9765" width="2.6" height="15.0" fill="rgb(247,90,44)" rx="2" ry="2" /> +<text x="278.74" y="9775.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="1174.4" y="11221" width="0.4" height="15.0" fill="rgb(220,76,30)" rx="2" ry="2" /> +<text x="1177.39" y="11231.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (167 samples, 6.14%)</title><rect x="795.5" y="10565" width="72.4" height="15.0" fill="rgb(213,89,47)" rx="2" ry="2" /> +<text x="798.51" y="10575.5" >Nsfisis\..</text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="733.5" y="9477" width="0.5" height="15.0" fill="rgb(240,19,5)" rx="2" ry="2" /> +<text x="736.52" y="9487.5" ></text> +</g> +<g > +<title><unknown> (1 samples, 0.04%)</title><rect x="1021.8" y="2725" width="0.4" height="15.0" fill="rgb(220,151,45)" rx="2" ry="2" /> +<text x="1024.80" y="2735.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (4 samples, 0.15%)</title><rect x="266.2" y="9477" width="1.7" height="15.0" fill="rgb(248,104,51)" rx="2" ry="2" /> +<text x="269.20" y="9487.5" ></text> +</g> +<g > +<title><unknown> (2 samples, 0.07%)</title><rect x="1021.4" y="8373" width="0.8" height="15.0" fill="rgb(222,174,2)" rx="2" ry="2" /> +<text x="1024.37" y="8383.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="870.1" y="8693" width="0.4" height="15.0" fill="rgb(252,88,40)" rx="2" ry="2" /> +<text x="873.07" y="8703.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="351.2" y="9605" width="0.4" height="15.0" fill="rgb(249,154,23)" rx="2" ry="2" /> +<text x="354.17" y="9615.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="1067.8" y="10501" width="0.4" height="15.0" fill="rgb(241,131,26)" rx="2" ry="2" /> +<text x="1070.75" y="10511.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="733.5" y="8645" width="0.5" height="15.0" fill="rgb(233,153,26)" rx="2" ry="2" /> +<text x="736.52" y="8655.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="487.7" y="9829" width="0.5" height="15.0" fill="rgb(238,100,35)" rx="2" ry="2" /> +<text x="490.72" y="9839.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="870.5" y="9813" width="0.4" height="15.0" fill="rgb(243,41,28)" rx="2" ry="2" /> +<text x="873.51" y="9823.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::deactivateLabel (1 samples, 0.04%)</title><rect x="763.9" y="9973" width="0.4" height="15.0" fill="rgb(223,169,0)" rx="2" ry="2" /> +<text x="766.86" y="9983.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (5 samples, 0.18%)</title><rect x="525.4" y="10181" width="2.2" height="15.0" fill="rgb(237,73,54)" rx="2" ry="2" /> +<text x="528.44" y="10191.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="258.0" y="9797" width="0.4" height="15.0" fill="rgb(217,11,18)" rx="2" ry="2" /> +<text x="260.96" y="9807.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (2 samples, 0.07%)</title><rect x="739.6" y="10581" width="0.9" height="15.0" fill="rgb(234,70,23)" rx="2" ry="2" /> +<text x="742.59" y="10591.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (23 samples, 0.84%)</title><rect x="528.9" y="10389" width="10.0" height="15.0" fill="rgb(225,9,47)" rx="2" ry="2" /> +<text x="531.91" y="10399.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="869.2" y="9765" width="0.4" height="15.0" fill="rgb(241,177,31)" rx="2" ry="2" /> +<text x="872.21" y="9775.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (1 samples, 0.04%)</title><rect x="867.0" y="10341" width="0.5" height="15.0" fill="rgb(227,201,50)" rx="2" ry="2" /> +<text x="870.04" y="10351.5" ></text> +</g> +<g > +<title><unknown> (2 samples, 0.07%)</title><rect x="1021.4" y="8629" width="0.8" height="15.0" fill="rgb(236,157,8)" rx="2" ry="2" /> +<text x="1024.37" y="8639.5" ></text> +</g> +<g > +<title><unknown> (1 samples, 0.04%)</title><rect x="1021.8" y="3941" width="0.4" height="15.0" fill="rgb(208,157,30)" rx="2" ry="2" /> +<text x="1024.80" y="3951.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (9 samples, 0.33%)</title><rect x="498.6" y="10149" width="3.9" height="15.0" fill="rgb(222,40,49)" rx="2" ry="2" /> +<text x="501.56" y="10159.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doLoadI32 (1 samples, 0.04%)</title><rect x="1042.2" y="11189" width="0.4" height="15.0" fill="rgb(214,77,42)" rx="2" ry="2" /> +<text x="1045.17" y="11199.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="652.0" y="10389" width="0.5" height="15.0" fill="rgb(250,88,53)" rx="2" ry="2" /> +<text x="655.02" y="10399.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="489.0" y="9973" width="0.5" height="15.0" fill="rgb(240,186,34)" rx="2" ry="2" /> +<text x="492.02" y="9983.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="860.1" y="10149" width="0.4" height="15.0" fill="rgb(253,34,40)" rx="2" ry="2" /> +<text x="863.10" y="10159.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="733.5" y="8469" width="0.5" height="15.0" fill="rgb(231,216,42)" rx="2" ry="2" /> +<text x="736.52" y="8479.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="427.5" y="9461" width="0.4" height="15.0" fill="rgb(235,220,46)" rx="2" ry="2" /> +<text x="430.47" y="9471.5" ></text> +</g> +<g > +<title><unknown> (2 samples, 0.07%)</title><rect x="1021.4" y="6421" width="0.8" height="15.0" fill="rgb(238,201,8)" rx="2" ry="2" /> +<text x="1024.37" y="6431.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="325.6" y="9221" width="0.4" height="15.0" fill="rgb(252,129,4)" rx="2" ry="2" /> +<text x="328.59" y="9231.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="870.1" y="8853" width="0.4" height="15.0" fill="rgb(243,85,18)" rx="2" ry="2" /> +<text x="873.07" y="8863.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="398.4" y="9397" width="0.5" height="15.0" fill="rgb(235,191,20)" rx="2" ry="2" /> +<text x="401.42" y="9407.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (14 samples, 0.51%)</title><rect x="440.5" y="9861" width="6.0" height="15.0" fill="rgb(247,164,31)" rx="2" ry="2" /> +<text x="443.47" y="9871.5" ></text> +</g> +<g > +<title><unknown> (1 samples, 0.04%)</title><rect x="431.4" y="9845" width="0.4" height="15.0" fill="rgb(214,124,35)" rx="2" ry="2" /> +<text x="434.37" y="9855.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="733.5" y="9045" width="0.5" height="15.0" fill="rgb(244,147,27)" rx="2" ry="2" /> +<text x="736.52" y="9055.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (4 samples, 0.15%)</title><rect x="351.6" y="9525" width="1.7" height="15.0" fill="rgb(252,96,39)" rx="2" ry="2" /> +<text x="354.60" y="9535.5" ></text> +</g> +<g > +<title>chr (1 samples, 0.04%)</title><rect x="359.0" y="9365" width="0.4" height="15.0" fill="rgb(225,182,5)" rx="2" ry="2" /> +<text x="361.97" y="9375.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (9 samples, 0.33%)</title><rect x="498.6" y="10197" width="3.9" height="15.0" fill="rgb(231,121,0)" rx="2" ry="2" /> +<text x="501.56" y="10207.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="1138.0" y="11173" width="0.4" height="15.0" fill="rgb(244,101,24)" rx="2" ry="2" /> +<text x="1140.98" y="11183.5" ></text> +</g> +<g > +<title><unknown> (1 samples, 0.04%)</title><rect x="1114.1" y="11125" width="0.5" height="15.0" fill="rgb(230,174,51)" rx="2" ry="2" /> +<text x="1117.14" y="11135.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="482.5" y="9717" width="0.5" height="15.0" fill="rgb(249,140,10)" rx="2" ry="2" /> +<text x="485.52" y="9727.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (1 samples, 0.04%)</title><rect x="453.5" y="9717" width="0.4" height="15.0" fill="rgb(254,213,0)" rx="2" ry="2" /> +<text x="456.48" y="9727.5" ></text> +</g> +<g > +<title><unknown> (2 samples, 0.07%)</title><rect x="1021.4" y="6261" width="0.8" height="15.0" fill="rgb(243,204,18)" rx="2" ry="2" /> +<text x="1024.37" y="6271.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (1 samples, 0.04%)</title><rect x="412.3" y="9157" width="0.4" height="15.0" fill="rgb(219,219,4)" rx="2" ry="2" /> +<text x="415.29" y="9167.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (6 samples, 0.22%)</title><rect x="479.5" y="9845" width="2.6" height="15.0" fill="rgb(212,21,6)" rx="2" ry="2" /> +<text x="482.49" y="9855.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (5 samples, 0.18%)</title><rect x="514.2" y="10133" width="2.1" height="15.0" fill="rgb(235,180,5)" rx="2" ry="2" /> +<text x="517.17" y="10143.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Stack::popValue (1 samples, 0.04%)</title><rect x="790.7" y="10229" width="0.5" height="15.0" fill="rgb(206,121,40)" rx="2" ry="2" /> +<text x="793.74" y="10239.5" ></text> +</g> +<g > +<title><unknown> (1 samples, 0.04%)</title><rect x="1021.8" y="3493" width="0.4" height="15.0" fill="rgb(225,187,2)" rx="2" ry="2" /> +<text x="1024.80" y="3503.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="1067.8" y="10565" width="0.4" height="15.0" fill="rgb(233,123,54)" rx="2" ry="2" /> +<text x="1070.75" y="10575.5" ></text> +</g> +<g > +<title><unknown> (1 samples, 0.04%)</title><rect x="1021.8" y="4709" width="0.4" height="15.0" fill="rgb(251,21,27)" rx="2" ry="2" /> +<text x="1024.80" y="4719.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="1168.8" y="11125" width="0.4" height="15.0" fill="rgb(214,42,8)" rx="2" ry="2" /> +<text x="1171.76" y="11135.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (7 samples, 0.26%)</title><rect x="688.0" y="9957" width="3.0" height="15.0" fill="rgb(232,111,53)" rx="2" ry="2" /> +<text x="691.00" y="9967.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="442.2" y="8613" width="0.4" height="15.0" fill="rgb(252,183,52)" rx="2" ry="2" /> +<text x="445.20" y="8623.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (2 samples, 0.07%)</title><rect x="731.4" y="9925" width="0.8" height="15.0" fill="rgb(252,3,27)" rx="2" ry="2" /> +<text x="734.35" y="9935.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (4 samples, 0.15%)</title><rect x="732.2" y="10437" width="1.8" height="15.0" fill="rgb(205,43,48)" rx="2" ry="2" /> +<text x="735.22" y="10447.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="870.1" y="8021" width="0.4" height="15.0" fill="rgb(209,149,16)" rx="2" ry="2" /> +<text x="873.07" y="8031.5" ></text> +</g> +<g > +<title><unknown> (1 samples, 0.04%)</title><rect x="1021.8" y="1909" width="0.4" height="15.0" fill="rgb(244,40,48)" rx="2" ry="2" /> +<text x="1024.80" y="1919.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="377.2" y="9637" width="0.4" height="15.0" fill="rgb(238,223,49)" rx="2" ry="2" /> +<text x="380.18" y="9647.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="733.5" y="9413" width="0.5" height="15.0" fill="rgb(218,184,4)" rx="2" ry="2" /> +<text x="736.52" y="9423.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (2 samples, 0.07%)</title><rect x="404.5" y="9605" width="0.9" height="15.0" fill="rgb(218,45,51)" rx="2" ry="2" /> +<text x="407.49" y="9615.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Stack::pushValue (1 samples, 0.04%)</title><rect x="297.0" y="9621" width="0.4" height="15.0" fill="rgb(209,16,50)" rx="2" ry="2" /> +<text x="299.98" y="9631.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="812.9" y="10149" width="0.4" height="15.0" fill="rgb(237,124,47)" rx="2" ry="2" /> +<text x="815.85" y="10159.5" ></text> +</g> +<g > +<title><unknown> (1 samples, 0.04%)</title><rect x="1021.8" y="2293" width="0.4" height="15.0" fill="rgb(253,1,35)" rx="2" ry="2" /> +<text x="1024.80" y="2303.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (88 samples, 3.23%)</title><rect x="814.6" y="10293" width="38.1" height="15.0" fill="rgb(246,224,14)" rx="2" ry="2" /> +<text x="817.58" y="10303.5" >Nsf..</text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Stack::pushValue (1 samples, 0.04%)</title><rect x="291.3" y="9717" width="0.5" height="15.0" fill="rgb(237,61,44)" rx="2" ry="2" /> +<text x="294.34" y="9727.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="320.8" y="9525" width="0.5" height="15.0" fill="rgb(220,124,42)" rx="2" ry="2" /> +<text x="323.82" y="9535.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (3 samples, 0.11%)</title><rect x="1111.1" y="10901" width="1.3" height="15.0" fill="rgb(249,164,26)" rx="2" ry="2" /> +<text x="1114.10" y="10911.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="543.2" y="10165" width="0.4" height="15.0" fill="rgb(223,76,37)" rx="2" ry="2" /> +<text x="546.21" y="10175.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="318.2" y="9429" width="0.5" height="15.0" fill="rgb(211,82,40)" rx="2" ry="2" /> +<text x="321.22" y="9439.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (2 samples, 0.07%)</title><rect x="316.5" y="9445" width="0.9" height="15.0" fill="rgb(246,78,18)" rx="2" ry="2" /> +<text x="319.49" y="9455.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (2 samples, 0.07%)</title><rect x="307.0" y="9429" width="0.8" height="15.0" fill="rgb(237,126,29)" rx="2" ry="2" /> +<text x="309.95" y="9439.5" ></text> +</g> +<g > +<title><unknown> (1 samples, 0.04%)</title><rect x="1021.8" y="4421" width="0.4" height="15.0" fill="rgb(219,143,21)" rx="2" ry="2" /> +<text x="1024.80" y="4431.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (1,162 samples, 42.69%)</title><rect x="238.9" y="11157" width="503.7" height="15.0" fill="rgb(238,46,2)" rx="2" ry="2" /> +<text x="241.89" y="11167.5" >Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc</text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="668.1" y="9909" width="0.4" height="15.0" fill="rgb(242,125,0)" rx="2" ry="2" /> +<text x="671.06" y="9919.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="398.4" y="9349" width="0.5" height="15.0" fill="rgb(222,132,50)" rx="2" ry="2" /> +<text x="401.42" y="9359.5" ></text> +</g> +<g > +<title>count (1 samples, 0.04%)</title><rect x="399.7" y="9749" width="0.5" height="15.0" fill="rgb(232,194,18)" rx="2" ry="2" /> +<text x="402.72" y="9759.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (1 samples, 0.04%)</title><rect x="399.7" y="9669" width="0.5" height="15.0" fill="rgb(253,195,40)" rx="2" ry="2" /> +<text x="402.72" y="9679.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (1 samples, 0.04%)</title><rect x="738.3" y="10645" width="0.4" height="15.0" fill="rgb(230,215,38)" rx="2" ry="2" /> +<text x="741.29" y="10655.5" ></text> +</g> +<g > +<title><unknown> (1 samples, 0.04%)</title><rect x="1021.8" y="2085" width="0.4" height="15.0" fill="rgb(236,202,46)" rx="2" ry="2" /> +<text x="1024.80" y="2095.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="870.1" y="8261" width="0.4" height="15.0" fill="rgb(249,89,45)" rx="2" ry="2" /> +<text x="873.07" y="8271.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="739.6" y="10437" width="0.4" height="15.0" fill="rgb(253,2,14)" rx="2" ry="2" /> +<text x="742.59" y="10447.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="870.1" y="9829" width="0.4" height="15.0" fill="rgb(235,53,50)" rx="2" ry="2" /> +<text x="873.07" y="9839.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="404.9" y="9509" width="0.5" height="15.0" fill="rgb(205,69,40)" rx="2" ry="2" /> +<text x="407.92" y="9519.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (3 samples, 0.11%)</title><rect x="289.6" y="9493" width="1.3" height="15.0" fill="rgb(236,80,1)" rx="2" ry="2" /> +<text x="292.61" y="9503.5" ></text> +</g> +<g > +<title><unknown> (1 samples, 0.04%)</title><rect x="304.3" y="9349" width="0.5" height="15.0" fill="rgb(209,71,14)" rx="2" ry="2" /> +<text x="307.35" y="9359.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (8 samples, 0.29%)</title><rect x="442.2" y="9589" width="3.5" height="15.0" fill="rgb(221,9,9)" rx="2" ry="2" /> +<text x="445.20" y="9599.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (1 samples, 0.04%)</title><rect x="315.6" y="9477" width="0.5" height="15.0" fill="rgb(231,189,2)" rx="2" ry="2" /> +<text x="318.62" y="9487.5" ></text> +</g> +<g > +<title><unknown> (1 samples, 0.04%)</title><rect x="700.1" y="9925" width="0.5" height="15.0" fill="rgb(213,19,24)" rx="2" ry="2" /> +<text x="703.14" y="9935.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (3 samples, 0.11%)</title><rect x="812.0" y="10197" width="1.3" height="15.0" fill="rgb(254,41,22)" rx="2" ry="2" /> +<text x="814.98" y="10207.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="1050.0" y="11013" width="0.4" height="15.0" fill="rgb(245,105,14)" rx="2" ry="2" /> +<text x="1052.98" y="11023.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (5 samples, 0.18%)</title><rect x="442.2" y="9541" width="2.2" height="15.0" fill="rgb(216,1,12)" rx="2" ry="2" /> +<text x="445.20" y="9551.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\StackEntries\Value::__construct (1 samples, 0.04%)</title><rect x="494.7" y="10373" width="0.4" height="15.0" fill="rgb(247,10,41)" rx="2" ry="2" /> +<text x="497.66" y="10383.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="443.1" y="8645" width="0.4" height="15.0" fill="rgb(206,8,28)" rx="2" ry="2" /> +<text x="446.07" y="8655.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="248.0" y="10117" width="0.4" height="15.0" fill="rgb(233,215,44)" rx="2" ry="2" /> +<text x="250.99" y="10127.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (20 samples, 0.73%)</title><rect x="283.5" y="9781" width="8.7" height="15.0" fill="rgb(221,52,35)" rx="2" ry="2" /> +<text x="286.54" y="9791.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Stack::pushValue (1 samples, 0.04%)</title><rect x="473.4" y="9813" width="0.5" height="15.0" fill="rgb(225,177,1)" rx="2" ry="2" /> +<text x="476.42" y="9823.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::activateLabel (1 samples, 0.04%)</title><rect x="443.1" y="8517" width="0.4" height="15.0" fill="rgb(218,102,13)" rx="2" ry="2" /> +<text x="446.07" y="8527.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (4 samples, 0.15%)</title><rect x="1049.1" y="11093" width="1.7" height="15.0" fill="rgb(215,145,19)" rx="2" ry="2" /> +<text x="1052.11" y="11103.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (3 samples, 0.11%)</title><rect x="329.1" y="9893" width="1.3" height="15.0" fill="rgb(233,111,23)" rx="2" ry="2" /> +<text x="332.06" y="9903.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (2 samples, 0.07%)</title><rect x="469.9" y="9973" width="0.9" height="15.0" fill="rgb(244,59,38)" rx="2" ry="2" /> +<text x="472.95" y="9983.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (2 samples, 0.07%)</title><rect x="325.2" y="9365" width="0.8" height="15.0" fill="rgb(225,95,3)" rx="2" ry="2" /> +<text x="328.16" y="9375.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (6 samples, 0.22%)</title><rect x="779.5" y="10357" width="2.6" height="15.0" fill="rgb(237,81,19)" rx="2" ry="2" /> +<text x="782.47" y="10367.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="789.4" y="10229" width="0.5" height="15.0" fill="rgb(247,219,26)" rx="2" ry="2" /> +<text x="792.44" y="10239.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (23 samples, 0.84%)</title><rect x="528.9" y="10325" width="10.0" height="15.0" fill="rgb(206,129,36)" rx="2" ry="2" /> +<text x="531.91" y="10335.5" ></text> +</g> +<g > +<title><unknown> (1 samples, 0.04%)</title><rect x="1021.8" y="4597" width="0.4" height="15.0" fill="rgb(226,123,0)" rx="2" ry="2" /> +<text x="1024.80" y="4607.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (3 samples, 0.11%)</title><rect x="722.2" y="9765" width="1.3" height="15.0" fill="rgb(226,155,1)" rx="2" ry="2" /> +<text x="725.25" y="9775.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (1 samples, 0.04%)</title><rect x="870.1" y="8181" width="0.4" height="15.0" fill="rgb(231,187,42)" rx="2" ry="2" /> +<text x="873.07" y="8191.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (4 samples, 0.15%)</title><rect x="289.2" y="9653" width="1.7" height="15.0" fill="rgb(219,143,35)" rx="2" ry="2" /> +<text x="292.18" y="9663.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="867.9" y="10693" width="0.4" height="15.0" fill="rgb(222,11,3)" rx="2" ry="2" /> +<text x="870.91" y="10703.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="870.5" y="10021" width="0.4" height="15.0" fill="rgb(219,15,34)" rx="2" ry="2" /> +<text x="873.51" y="10031.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="424.4" y="8837" width="0.5" height="15.0" fill="rgb(230,109,5)" rx="2" ry="2" /> +<text x="427.43" y="8847.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="1022.2" y="11189" width="0.5" height="15.0" fill="rgb(234,224,32)" rx="2" ry="2" /> +<text x="1025.23" y="11199.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="724.8" y="9749" width="0.5" height="15.0" fill="rgb(215,84,51)" rx="2" ry="2" /> +<text x="727.85" y="9759.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="427.5" y="9349" width="0.4" height="15.0" fill="rgb(237,188,30)" rx="2" ry="2" /> +<text x="430.47" y="9359.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="742.2" y="10469" width="0.4" height="15.0" fill="rgb(247,71,22)" rx="2" ry="2" /> +<text x="745.19" y="10479.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="852.7" y="10309" width="0.5" height="15.0" fill="rgb(217,151,10)" rx="2" ry="2" /> +<text x="855.73" y="10319.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (11 samples, 0.40%)</title><rect x="368.9" y="9829" width="4.8" height="15.0" fill="rgb(225,201,12)" rx="2" ry="2" /> +<text x="371.94" y="9839.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (51 samples, 1.87%)</title><rect x="377.6" y="9685" width="22.1" height="15.0" fill="rgb(245,162,37)" rx="2" ry="2" /> +<text x="380.61" y="9695.5" >N..</text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (1 samples, 0.04%)</title><rect x="292.2" y="9765" width="0.4" height="15.0" fill="rgb(218,163,3)" rx="2" ry="2" /> +<text x="295.21" y="9775.5" ></text> +</g> +<g > +<title><unknown> (1 samples, 0.04%)</title><rect x="252.3" y="10021" width="0.5" height="15.0" fill="rgb(250,22,23)" rx="2" ry="2" /> +<text x="255.33" y="10031.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="484.7" y="9733" width="0.4" height="15.0" fill="rgb(248,135,9)" rx="2" ry="2" /> +<text x="487.69" y="9743.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Num::I64 (1 samples, 0.04%)</title><rect x="496.4" y="10005" width="0.4" height="15.0" fill="rgb(234,2,50)" rx="2" ry="2" /> +<text x="499.39" y="10015.5" ></text> +</g> +<g > +<title><unknown> (2 samples, 0.07%)</title><rect x="1021.4" y="9429" width="0.8" height="15.0" fill="rgb(217,132,9)" rx="2" ry="2" /> +<text x="1024.37" y="9439.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (3 samples, 0.11%)</title><rect x="269.2" y="9573" width="1.3" height="15.0" fill="rgb(210,212,33)" rx="2" ry="2" /> +<text x="272.24" y="9583.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (3 samples, 0.11%)</title><rect x="542.3" y="10325" width="1.3" height="15.0" fill="rgb(232,172,25)" rx="2" ry="2" /> +<text x="545.34" y="10335.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (1 samples, 0.04%)</title><rect x="744.4" y="10309" width="0.4" height="15.0" fill="rgb(216,46,39)" rx="2" ry="2" /> +<text x="747.36" y="10319.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (9 samples, 0.33%)</title><rect x="441.8" y="9701" width="3.9" height="15.0" fill="rgb(222,8,5)" rx="2" ry="2" /> +<text x="444.77" y="9711.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (22 samples, 0.81%)</title><rect x="1102.9" y="11061" width="9.5" height="15.0" fill="rgb(206,86,21)" rx="2" ry="2" /> +<text x="1105.87" y="11071.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="718.3" y="9541" width="0.5" height="15.0" fill="rgb(207,145,15)" rx="2" ry="2" /> +<text x="721.35" y="9551.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (3 samples, 0.11%)</title><rect x="741.3" y="10741" width="1.3" height="15.0" fill="rgb(241,218,41)" rx="2" ry="2" /> +<text x="744.32" y="10751.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (4 samples, 0.15%)</title><rect x="304.3" y="9477" width="1.8" height="15.0" fill="rgb(228,67,27)" rx="2" ry="2" /> +<text x="307.35" y="9487.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (296 samples, 10.87%)</title><rect x="742.6" y="11157" width="128.3" height="15.0" fill="rgb(254,128,19)" rx="2" ry="2" /> +<text x="745.62" y="11167.5" >Nsfisis\Waddiwas..</text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (8 samples, 0.29%)</title><rect x="778.6" y="10421" width="3.5" height="15.0" fill="rgb(224,29,21)" rx="2" ry="2" /> +<text x="781.60" y="10431.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="271.4" y="9733" width="0.4" height="15.0" fill="rgb(213,221,46)" rx="2" ry="2" /> +<text x="274.40" y="9743.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (1 samples, 0.04%)</title><rect x="734.0" y="10037" width="0.4" height="15.0" fill="rgb(244,57,38)" rx="2" ry="2" /> +<text x="736.95" y="10047.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="733.5" y="8933" width="0.5" height="15.0" fill="rgb(236,22,6)" rx="2" ry="2" /> +<text x="736.52" y="8943.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="470.8" y="10005" width="0.4" height="15.0" fill="rgb(232,127,45)" rx="2" ry="2" /> +<text x="473.82" y="10015.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="482.5" y="9669" width="0.5" height="15.0" fill="rgb(211,15,54)" rx="2" ry="2" /> +<text x="485.52" y="9679.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="497.3" y="10133" width="0.4" height="15.0" fill="rgb(248,25,32)" rx="2" ry="2" /> +<text x="500.26" y="10143.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (1 samples, 0.04%)</title><rect x="868.3" y="10997" width="0.5" height="15.0" fill="rgb(235,85,1)" rx="2" ry="2" /> +<text x="871.34" y="11007.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="409.3" y="9493" width="0.4" height="15.0" fill="rgb(254,86,41)" rx="2" ry="2" /> +<text x="412.26" y="9503.5" ></text> +</g> +<g > +<title><unknown> (2 samples, 0.07%)</title><rect x="1021.4" y="6821" width="0.8" height="15.0" fill="rgb(217,47,18)" rx="2" ry="2" /> +<text x="1024.37" y="6831.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (2 samples, 0.07%)</title><rect x="464.7" y="10005" width="0.9" height="15.0" fill="rgb(206,223,15)" rx="2" ry="2" /> +<text x="467.75" y="10015.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="1138.0" y="11141" width="0.4" height="15.0" fill="rgb(205,9,0)" rx="2" ry="2" /> +<text x="1140.98" y="11151.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (3 samples, 0.11%)</title><rect x="722.2" y="9669" width="1.3" height="15.0" fill="rgb(230,185,30)" rx="2" ry="2" /> +<text x="725.25" y="9679.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (16 samples, 0.59%)</title><rect x="841.5" y="10181" width="6.9" height="15.0" fill="rgb(246,107,30)" rx="2" ry="2" /> +<text x="844.46" y="10191.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Stack::pushI32 (1 samples, 0.04%)</title><rect x="245.8" y="10421" width="0.5" height="15.0" fill="rgb(243,223,38)" rx="2" ry="2" /> +<text x="248.83" y="10431.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="794.2" y="10405" width="0.4" height="15.0" fill="rgb(235,49,37)" rx="2" ry="2" /> +<text x="797.21" y="10415.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="1161.4" y="11205" width="0.4" height="15.0" fill="rgb(230,196,5)" rx="2" ry="2" /> +<text x="1164.39" y="11215.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="733.5" y="9333" width="0.5" height="15.0" fill="rgb(232,9,21)" rx="2" ry="2" /> +<text x="736.52" y="9343.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (23 samples, 0.84%)</title><rect x="453.9" y="9765" width="10.0" height="15.0" fill="rgb(230,183,19)" rx="2" ry="2" /> +<text x="456.91" y="9775.5" ></text> +</g> +<g > +<title><unknown> (1 samples, 0.04%)</title><rect x="1021.8" y="3253" width="0.4" height="15.0" fill="rgb(206,18,5)" rx="2" ry="2" /> +<text x="1024.80" y="3263.5" ></text> +</g> +<g > +<title><unknown> (1 samples, 0.04%)</title><rect x="1021.8" y="549" width="0.4" height="15.0" fill="rgb(217,229,24)" rx="2" ry="2" /> +<text x="1024.80" y="559.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (5 samples, 0.18%)</title><rect x="675.9" y="10005" width="2.1" height="15.0" fill="rgb(206,151,29)" rx="2" ry="2" /> +<text x="678.86" y="10015.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (2 samples, 0.07%)</title><rect x="784.7" y="10389" width="0.8" height="15.0" fill="rgb(210,55,9)" rx="2" ry="2" /> +<text x="787.67" y="10399.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1,144 samples, 42.03%)</title><rect x="242.8" y="10773" width="495.9" height="15.0" fill="rgb(253,154,2)" rx="2" ry="2" /> +<text x="245.79" y="10783.5" >Nsfisis\Waddiwasi\Execution\Runtime::execInstrs</text> +</g> +<g > +<title>print_r (2 samples, 0.07%)</title><rect x="1117.2" y="11205" width="0.8" height="15.0" fill="rgb(231,156,21)" rx="2" ry="2" /> +<text x="1120.17" y="11215.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::deactivateLabel (1 samples, 0.04%)</title><rect x="713.1" y="9861" width="0.5" height="15.0" fill="rgb(239,149,44)" rx="2" ry="2" /> +<text x="716.14" y="9871.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="740.5" y="10277" width="0.4" height="15.0" fill="rgb(233,116,29)" rx="2" ry="2" /> +<text x="743.46" y="10287.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="258.0" y="9717" width="0.4" height="15.0" fill="rgb(209,178,9)" rx="2" ry="2" /> +<text x="260.96" y="9727.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (8 samples, 0.29%)</title><rect x="778.6" y="10373" width="3.5" height="15.0" fill="rgb(215,26,35)" rx="2" ry="2" /> +<text x="781.60" y="10383.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (9 samples, 0.33%)</title><rect x="304.3" y="9557" width="4.0" height="15.0" fill="rgb(212,205,20)" rx="2" ry="2" /> +<text x="307.35" y="9567.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="1115.9" y="11157" width="0.4" height="15.0" fill="rgb(237,24,24)" rx="2" ry="2" /> +<text x="1118.87" y="11167.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (108 samples, 3.97%)</title><rect x="748.3" y="10533" width="46.8" height="15.0" fill="rgb(238,149,1)" rx="2" ry="2" /> +<text x="751.26" y="10543.5" >Nsfi..</text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (3 samples, 0.11%)</title><rect x="1115.4" y="11205" width="1.3" height="15.0" fill="rgb(253,75,43)" rx="2" ry="2" /> +<text x="1118.44" y="11215.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="812.9" y="10165" width="0.4" height="15.0" fill="rgb(229,121,36)" rx="2" ry="2" /> +<text x="815.85" y="10175.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (23 samples, 0.84%)</title><rect x="473.4" y="9957" width="10.0" height="15.0" fill="rgb(205,136,25)" rx="2" ry="2" /> +<text x="476.42" y="9967.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="538.9" y="10389" width="0.4" height="15.0" fill="rgb(246,45,17)" rx="2" ry="2" /> +<text x="541.88" y="10399.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (2 samples, 0.07%)</title><rect x="496.0" y="10357" width="0.8" height="15.0" fill="rgb(213,106,37)" rx="2" ry="2" /> +<text x="498.96" y="10367.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="398.4" y="9365" width="0.5" height="15.0" fill="rgb(244,71,46)" rx="2" ry="2" /> +<text x="401.42" y="9375.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\BinaryFormat\Decoder::decodeSection (7 samples, 0.26%)</title><rect x="10.4" y="11221" width="3.1" height="15.0" fill="rgb(244,220,34)" rx="2" ry="2" /> +<text x="13.43" y="11231.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (11 samples, 0.40%)</title><rect x="459.1" y="9653" width="4.8" height="15.0" fill="rgb(220,140,40)" rx="2" ry="2" /> +<text x="462.11" y="9663.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="867.0" y="10405" width="0.5" height="15.0" fill="rgb(236,137,38)" rx="2" ry="2" /> +<text x="870.04" y="10415.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (6 samples, 0.22%)</title><rect x="727.9" y="9941" width="2.6" height="15.0" fill="rgb(236,203,53)" rx="2" ry="2" /> +<text x="730.88" y="9951.5" ></text> +</g> +<g > +<title><unknown> (2 samples, 0.07%)</title><rect x="1021.4" y="9317" width="0.8" height="15.0" fill="rgb(207,154,41)" rx="2" ry="2" /> +<text x="1024.37" y="9327.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="1168.8" y="11045" width="0.4" height="15.0" fill="rgb(254,133,19)" rx="2" ry="2" /> +<text x="1171.76" y="11055.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (3 samples, 0.11%)</title><rect x="385.0" y="9381" width="1.3" height="15.0" fill="rgb(221,110,46)" rx="2" ry="2" /> +<text x="387.98" y="9391.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (6 samples, 0.22%)</title><rect x="738.7" y="10981" width="2.6" height="15.0" fill="rgb(221,107,33)" rx="2" ry="2" /> +<text x="741.72" y="10991.5" ></text> +</g> +<g > +<title><unknown> (2 samples, 0.07%)</title><rect x="1021.4" y="9797" width="0.8" height="15.0" fill="rgb(249,160,21)" rx="2" ry="2" /> +<text x="1024.37" y="9807.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (2 samples, 0.07%)</title><rect x="440.9" y="9557" width="0.9" height="15.0" fill="rgb(233,152,25)" rx="2" ry="2" /> +<text x="443.90" y="9567.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\StackEntry::Value (1 samples, 0.04%)</title><rect x="420.1" y="9381" width="0.4" height="15.0" fill="rgb(246,122,15)" rx="2" ry="2" /> +<text x="423.10" y="9391.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="424.4" y="9077" width="0.5" height="15.0" fill="rgb(216,92,28)" rx="2" ry="2" /> +<text x="427.43" y="9087.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="739.6" y="10469" width="0.4" height="15.0" fill="rgb(248,69,46)" rx="2" ry="2" /> +<text x="742.59" y="10479.5" ></text> +</g> +<g > +<title><unknown> (2 samples, 0.07%)</title><rect x="1021.4" y="6741" width="0.8" height="15.0" fill="rgb(213,102,41)" rx="2" ry="2" /> +<text x="1024.37" y="6751.5" ></text> +</g> +<g > +<title><unknown> (1 samples, 0.04%)</title><rect x="1021.8" y="437" width="0.4" height="15.0" fill="rgb(206,48,2)" rx="2" ry="2" /> +<text x="1024.80" y="447.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (3 samples, 0.11%)</title><rect x="408.4" y="9621" width="1.3" height="15.0" fill="rgb(206,142,30)" rx="2" ry="2" /> +<text x="411.39" y="9631.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="261.0" y="9493" width="0.4" height="15.0" fill="rgb(246,97,32)" rx="2" ry="2" /> +<text x="264.00" y="9503.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (1 samples, 0.04%)</title><rect x="446.1" y="9685" width="0.4" height="15.0" fill="rgb(223,220,8)" rx="2" ry="2" /> +<text x="449.11" y="9695.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="409.3" y="9301" width="0.4" height="15.0" fill="rgb(214,209,21)" rx="2" ry="2" /> +<text x="412.26" y="9311.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (6 samples, 0.22%)</title><rect x="401.5" y="9653" width="2.6" height="15.0" fill="rgb(210,37,43)" rx="2" ry="2" /> +<text x="404.45" y="9663.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (8 samples, 0.29%)</title><rect x="778.6" y="10405" width="3.5" height="15.0" fill="rgb(207,91,9)" rx="2" ry="2" /> +<text x="781.60" y="10415.5" ></text> +</g> +<g > +<title><unknown> (1 samples, 0.04%)</title><rect x="664.2" y="9941" width="0.4" height="15.0" fill="rgb(236,5,20)" rx="2" ry="2" /> +<text x="667.16" y="9951.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (5 samples, 0.18%)</title><rect x="495.5" y="10469" width="2.2" height="15.0" fill="rgb(216,175,17)" rx="2" ry="2" /> +<text x="498.53" y="10479.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="735.3" y="10389" width="0.4" height="15.0" fill="rgb(247,1,43)" rx="2" ry="2" /> +<text x="738.25" y="10399.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (563 samples, 20.68%)</title><rect x="246.3" y="10549" width="244.0" height="15.0" fill="rgb(233,78,40)" rx="2" ry="2" /> +<text x="249.26" y="10559.5" >Nsfisis\Waddiwasi\Execution\Runt..</text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (3 samples, 0.11%)</title><rect x="843.2" y="10149" width="1.3" height="15.0" fill="rgb(243,39,43)" rx="2" ry="2" /> +<text x="846.20" y="10159.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (5 samples, 0.18%)</title><rect x="773.8" y="9973" width="2.2" height="15.0" fill="rgb(232,134,24)" rx="2" ry="2" /> +<text x="776.84" y="9983.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="1151.0" y="11205" width="0.4" height="15.0" fill="rgb(253,1,3)" rx="2" ry="2" /> +<text x="1153.98" y="11215.5" ></text> +</g> +<g > +<title><unknown> (2 samples, 0.07%)</title><rect x="1021.4" y="9845" width="0.8" height="15.0" fill="rgb(233,108,33)" rx="2" ry="2" /> +<text x="1024.37" y="9855.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (2 samples, 0.07%)</title><rect x="526.7" y="10101" width="0.9" height="15.0" fill="rgb(237,225,41)" rx="2" ry="2" /> +<text x="529.74" y="10111.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (8 samples, 0.29%)</title><rect x="485.6" y="10037" width="3.4" height="15.0" fill="rgb(226,68,37)" rx="2" ry="2" /> +<text x="488.55" y="10047.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (32 samples, 1.18%)</title><rect x="471.7" y="10053" width="13.9" height="15.0" fill="rgb(235,124,32)" rx="2" ry="2" /> +<text x="474.68" y="10063.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="412.7" y="9317" width="0.5" height="15.0" fill="rgb(208,84,2)" rx="2" ry="2" /> +<text x="415.73" y="9327.5" ></text> +</g> +<g > +<title><unknown> (2 samples, 0.07%)</title><rect x="1021.4" y="7461" width="0.8" height="15.0" fill="rgb(219,205,50)" rx="2" ry="2" /> +<text x="1024.37" y="7471.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Stack::pushI32 (1 samples, 0.04%)</title><rect x="502.0" y="10069" width="0.5" height="15.0" fill="rgb(231,167,47)" rx="2" ry="2" /> +<text x="505.03" y="10079.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="265.3" y="9477" width="0.5" height="15.0" fill="rgb(217,149,36)" rx="2" ry="2" /> +<text x="268.33" y="9487.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="1170.1" y="11189" width="0.4" height="15.0" fill="rgb(230,181,8)" rx="2" ry="2" /> +<text x="1173.06" y="11199.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="446.1" y="9621" width="0.4" height="15.0" fill="rgb(243,119,21)" rx="2" ry="2" /> +<text x="449.11" y="9631.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (1 samples, 0.04%)</title><rect x="409.3" y="9253" width="0.4" height="15.0" fill="rgb(251,119,26)" rx="2" ry="2" /> +<text x="412.26" y="9263.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (22 samples, 0.81%)</title><rect x="681.9" y="10101" width="9.6" height="15.0" fill="rgb(217,161,19)" rx="2" ry="2" /> +<text x="684.93" y="10111.5" ></text> +</g> +<g > +<title><unknown> (1 samples, 0.04%)</title><rect x="1021.8" y="3797" width="0.4" height="15.0" fill="rgb(206,144,4)" rx="2" ry="2" /> +<text x="1024.80" y="3807.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="497.3" y="10101" width="0.4" height="15.0" fill="rgb(230,58,44)" rx="2" ry="2" /> +<text x="500.26" y="10111.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="869.2" y="9845" width="0.4" height="15.0" fill="rgb(212,108,22)" rx="2" ry="2" /> +<text x="872.21" y="9855.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (2 samples, 0.07%)</title><rect x="751.3" y="10261" width="0.9" height="15.0" fill="rgb(251,199,8)" rx="2" ry="2" /> +<text x="754.29" y="10271.5" ></text> +</g> +<g > +<title><unknown> (1 samples, 0.04%)</title><rect x="1021.8" y="1189" width="0.4" height="15.0" fill="rgb(251,193,18)" rx="2" ry="2" /> +<text x="1024.80" y="1199.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="409.3" y="9013" width="0.4" height="15.0" fill="rgb(233,208,0)" rx="2" ry="2" /> +<text x="412.26" y="9023.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="465.2" y="9877" width="0.4" height="15.0" fill="rgb(225,85,49)" rx="2" ry="2" /> +<text x="468.18" y="9887.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="494.2" y="10421" width="0.5" height="15.0" fill="rgb(212,215,32)" rx="2" ry="2" /> +<text x="497.22" y="10431.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (1 samples, 0.04%)</title><rect x="870.1" y="10021" width="0.4" height="15.0" fill="rgb(246,166,37)" rx="2" ry="2" /> +<text x="873.07" y="10031.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="244.5" y="10405" width="0.5" height="15.0" fill="rgb(205,214,37)" rx="2" ry="2" /> +<text x="247.53" y="10415.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="733.5" y="9429" width="0.5" height="15.0" fill="rgb(215,165,50)" rx="2" ry="2" /> +<text x="736.52" y="9439.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doLoadI32 (1 samples, 0.04%)</title><rect x="513.7" y="10133" width="0.5" height="15.0" fill="rgb(224,100,49)" rx="2" ry="2" /> +<text x="516.73" y="10143.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="733.5" y="9653" width="0.5" height="15.0" fill="rgb(221,106,25)" rx="2" ry="2" /> +<text x="736.52" y="9663.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="268.8" y="9477" width="0.4" height="15.0" fill="rgb(220,152,5)" rx="2" ry="2" /> +<text x="271.80" y="9487.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (2 samples, 0.07%)</title><rect x="315.2" y="9493" width="0.9" height="15.0" fill="rgb(209,188,54)" rx="2" ry="2" /> +<text x="318.19" y="9503.5" ></text> +</g> +<g > +<title><unknown> (2 samples, 0.07%)</title><rect x="1021.4" y="8837" width="0.8" height="15.0" fill="rgb(238,183,33)" rx="2" ry="2" /> +<text x="1024.37" y="8847.5" ></text> +</g> +<g > +<title><unknown> (2 samples, 0.07%)</title><rect x="1021.4" y="9749" width="0.8" height="15.0" fill="rgb(237,134,22)" rx="2" ry="2" /> +<text x="1024.37" y="9759.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (5 samples, 0.18%)</title><rect x="868.8" y="10661" width="2.1" height="15.0" fill="rgb(229,46,6)" rx="2" ry="2" /> +<text x="871.77" y="10671.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (1,159 samples, 42.58%)</title><rect x="238.9" y="11093" width="502.4" height="15.0" fill="rgb(235,35,26)" rx="2" ry="2" /> +<text x="241.89" y="11103.5" >Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc</text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="1081.6" y="11173" width="0.5" height="15.0" fill="rgb(216,3,29)" rx="2" ry="2" /> +<text x="1084.62" y="11183.5" ></text> +</g> +<g > +<title><unknown> (1 samples, 0.04%)</title><rect x="1021.8" y="2533" width="0.4" height="15.0" fill="rgb(228,119,20)" rx="2" ry="2" /> +<text x="1024.80" y="2543.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="744.4" y="10373" width="0.4" height="15.0" fill="rgb(243,107,24)" rx="2" ry="2" /> +<text x="747.36" y="10383.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="516.8" y="10117" width="0.4" height="15.0" fill="rgb(207,1,38)" rx="2" ry="2" /> +<text x="519.77" y="10127.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="427.5" y="9365" width="0.4" height="15.0" fill="rgb(218,209,30)" rx="2" ry="2" /> +<text x="430.47" y="9375.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (5 samples, 0.18%)</title><rect x="868.8" y="10645" width="2.1" height="15.0" fill="rgb(209,154,54)" rx="2" ry="2" /> +<text x="871.77" y="10655.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (1 samples, 0.04%)</title><rect x="1071.2" y="11141" width="0.5" height="15.0" fill="rgb(224,82,18)" rx="2" ry="2" /> +<text x="1074.22" y="11151.5" ></text> +</g> +<g > +<title><unknown> (1 samples, 0.04%)</title><rect x="1021.8" y="4149" width="0.4" height="15.0" fill="rgb(235,99,7)" rx="2" ry="2" /> +<text x="1024.80" y="4159.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="448.7" y="9829" width="0.4" height="15.0" fill="rgb(247,215,40)" rx="2" ry="2" /> +<text x="451.71" y="9839.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="270.5" y="9589" width="0.5" height="15.0" fill="rgb(221,33,20)" rx="2" ry="2" /> +<text x="273.54" y="9599.5" ></text> +</g> +<g > +<title><unknown> (1 samples, 0.04%)</title><rect x="1021.8" y="69" width="0.4" height="15.0" fill="rgb(242,224,34)" rx="2" ry="2" /> +<text x="1024.80" y="79.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1,144 samples, 42.03%)</title><rect x="242.8" y="10949" width="495.9" height="15.0" fill="rgb(234,0,4)" rx="2" ry="2" /> +<text x="245.79" y="10959.5" >Nsfisis\Waddiwasi\Execution\Runtime::execInstr</text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doLoadI32 (1 samples, 0.04%)</title><rect x="358.1" y="9461" width="0.4" height="15.0" fill="rgb(242,65,3)" rx="2" ry="2" /> +<text x="361.10" y="9471.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="268.8" y="9429" width="0.4" height="15.0" fill="rgb(221,81,21)" rx="2" ry="2" /> +<text x="271.80" y="9439.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (57 samples, 2.09%)</title><rect x="375.0" y="9749" width="24.7" height="15.0" fill="rgb(228,96,29)" rx="2" ry="2" /> +<text x="378.01" y="9759.5" >N..</text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (60 samples, 2.20%)</title><rect x="750.4" y="10373" width="26.0" height="15.0" fill="rgb(243,100,40)" rx="2" ry="2" /> +<text x="753.43" y="10383.5" >N..</text> +</g> +<g > +<title><unknown> (1 samples, 0.04%)</title><rect x="1021.8" y="1077" width="0.4" height="15.0" fill="rgb(217,195,15)" rx="2" ry="2" /> +<text x="1024.80" y="1087.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (54 samples, 1.98%)</title><rect x="753.0" y="10181" width="23.4" height="15.0" fill="rgb(243,79,46)" rx="2" ry="2" /> +<text x="756.03" y="10191.5" >N..</text> +</g> +<g > +<title>chr (1 samples, 0.04%)</title><rect x="160.0" y="11125" width="0.4" height="15.0" fill="rgb(212,124,33)" rx="2" ry="2" /> +<text x="162.99" y="11135.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="468.2" y="9749" width="0.4" height="15.0" fill="rgb(211,85,54)" rx="2" ry="2" /> +<text x="471.21" y="9759.5" ></text> +</g> +<g > +<title><unknown> (1 samples, 0.04%)</title><rect x="1021.8" y="3093" width="0.4" height="15.0" fill="rgb(250,171,47)" rx="2" ry="2" /> +<text x="1024.80" y="3103.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="438.3" y="9573" width="0.4" height="15.0" fill="rgb(237,85,40)" rx="2" ry="2" /> +<text x="441.30" y="9583.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="796.8" y="10517" width="0.4" height="15.0" fill="rgb(213,125,54)" rx="2" ry="2" /> +<text x="799.81" y="10527.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="512.9" y="10133" width="0.4" height="15.0" fill="rgb(251,34,40)" rx="2" ry="2" /> +<text x="515.87" y="10143.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="489.9" y="10149" width="0.4" height="15.0" fill="rgb(254,69,30)" rx="2" ry="2" /> +<text x="492.89" y="10159.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="763.9" y="9877" width="0.4" height="15.0" fill="rgb(235,214,12)" rx="2" ry="2" /> +<text x="766.86" y="9887.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (2 samples, 0.07%)</title><rect x="1168.8" y="11189" width="0.8" height="15.0" fill="rgb(251,177,35)" rx="2" ry="2" /> +<text x="1171.76" y="11199.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (15 samples, 0.55%)</title><rect x="431.4" y="9909" width="6.5" height="15.0" fill="rgb(246,90,21)" rx="2" ry="2" /> +<text x="434.37" y="9919.5" ></text> +</g> +<g > +<title><unknown> (1 samples, 0.04%)</title><rect x="1021.8" y="3909" width="0.4" height="15.0" fill="rgb(231,24,21)" rx="2" ry="2" /> +<text x="1024.80" y="3919.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="769.5" y="9845" width="0.4" height="15.0" fill="rgb(223,154,22)" rx="2" ry="2" /> +<text x="772.50" y="9855.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="870.5" y="9957" width="0.4" height="15.0" fill="rgb(230,17,54)" rx="2" ry="2" /> +<text x="873.51" y="9967.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="438.7" y="9669" width="0.5" height="15.0" fill="rgb(250,64,40)" rx="2" ry="2" /> +<text x="441.74" y="9679.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (259 samples, 9.52%)</title><rect x="337.7" y="10021" width="112.3" height="15.0" fill="rgb(226,188,31)" rx="2" ry="2" /> +<text x="340.73" y="10031.5" >Nsfisis\Waddi..</text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="685.4" y="10005" width="0.4" height="15.0" fill="rgb(230,216,5)" rx="2" ry="2" /> +<text x="688.40" y="10015.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="261.0" y="9589" width="0.4" height="15.0" fill="rgb(234,189,10)" rx="2" ry="2" /> +<text x="264.00" y="9599.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="870.1" y="8005" width="0.4" height="15.0" fill="rgb(233,134,52)" rx="2" ry="2" /> +<text x="873.07" y="8015.5" ></text> +</g> +<g > +<title>print_r (2 samples, 0.07%)</title><rect x="216.3" y="11125" width="0.9" height="15.0" fill="rgb(212,117,12)" rx="2" ry="2" /> +<text x="219.35" y="11135.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="1050.4" y="11045" width="0.4" height="15.0" fill="rgb(212,12,38)" rx="2" ry="2" /> +<text x="1053.41" y="11055.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (1 samples, 0.04%)</title><rect x="318.7" y="9637" width="0.4" height="15.0" fill="rgb(214,168,1)" rx="2" ry="2" /> +<text x="321.66" y="9647.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="373.3" y="9381" width="0.4" height="15.0" fill="rgb(217,26,8)" rx="2" ry="2" /> +<text x="376.28" y="9391.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="868.3" y="10725" width="0.5" height="15.0" fill="rgb(223,158,11)" rx="2" ry="2" /> +<text x="871.34" y="10735.5" ></text> +</g> +<g > +<title><unknown> (2 samples, 0.07%)</title><rect x="1021.4" y="10725" width="0.8" height="15.0" fill="rgb(212,194,1)" rx="2" ry="2" /> +<text x="1024.37" y="10735.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Val::Num (1 samples, 0.04%)</title><rect x="175.2" y="11157" width="0.4" height="15.0" fill="rgb(251,226,36)" rx="2" ry="2" /> +<text x="178.17" y="11167.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\StackEntry::Value (3 samples, 0.11%)</title><rect x="1170.5" y="11237" width="1.3" height="15.0" fill="rgb(245,77,41)" rx="2" ry="2" /> +<text x="1173.49" y="11247.5" ></text> +</g> +<g > +<title><unknown> (1 samples, 0.04%)</title><rect x="1021.8" y="5461" width="0.4" height="15.0" fill="rgb(210,112,18)" rx="2" ry="2" /> +<text x="1024.80" y="5471.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (2 samples, 0.07%)</title><rect x="1035.7" y="11157" width="0.8" height="15.0" fill="rgb(220,173,0)" rx="2" ry="2" /> +<text x="1038.67" y="11167.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (5 samples, 0.18%)</title><rect x="486.9" y="9877" width="2.1" height="15.0" fill="rgb(206,162,30)" rx="2" ry="2" /> +<text x="489.86" y="9887.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="1112.0" y="10837" width="0.4" height="15.0" fill="rgb(251,93,7)" rx="2" ry="2" /> +<text x="1114.97" y="10847.5" ></text> +</g> +<g > +<title><unknown> (2 samples, 0.07%)</title><rect x="1021.4" y="9589" width="0.8" height="15.0" fill="rgb(227,78,29)" rx="2" ry="2" /> +<text x="1024.37" y="9599.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="668.1" y="9861" width="0.4" height="15.0" fill="rgb(238,72,22)" rx="2" ry="2" /> +<text x="671.06" y="9871.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (2 samples, 0.07%)</title><rect x="734.0" y="10421" width="0.8" height="15.0" fill="rgb(216,28,33)" rx="2" ry="2" /> +<text x="736.95" y="10431.5" ></text> +</g> +<g > +<title><unknown> (1 samples, 0.04%)</title><rect x="1021.8" y="4901" width="0.4" height="15.0" fill="rgb(205,16,34)" rx="2" ry="2" /> +<text x="1024.80" y="4911.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="238.9" y="10069" width="0.4" height="15.0" fill="rgb(251,149,46)" rx="2" ry="2" /> +<text x="241.89" y="10079.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (4 samples, 0.15%)</title><rect x="259.7" y="9749" width="1.7" height="15.0" fill="rgb(217,58,10)" rx="2" ry="2" /> +<text x="262.70" y="9759.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="870.1" y="9317" width="0.4" height="15.0" fill="rgb(228,25,38)" rx="2" ry="2" /> +<text x="873.07" y="9327.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (3 samples, 0.11%)</title><rect x="442.2" y="9189" width="1.3" height="15.0" fill="rgb(223,10,17)" rx="2" ry="2" /> +<text x="445.20" y="9199.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (2 samples, 0.07%)</title><rect x="442.2" y="8837" width="0.9" height="15.0" fill="rgb(235,128,52)" rx="2" ry="2" /> +<text x="445.20" y="8847.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (26 samples, 0.96%)</title><rect x="1056.9" y="11093" width="11.3" height="15.0" fill="rgb(226,161,20)" rx="2" ry="2" /> +<text x="1059.91" y="11103.5" ></text> +</g> +<g > +<title><unknown> (2 samples, 0.07%)</title><rect x="1021.4" y="6437" width="0.8" height="15.0" fill="rgb(224,39,23)" rx="2" ry="2" /> +<text x="1024.37" y="6447.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (18 samples, 0.66%)</title><rect x="351.6" y="9685" width="7.8" height="15.0" fill="rgb(248,24,5)" rx="2" ry="2" /> +<text x="354.60" y="9695.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (5 samples, 0.18%)</title><rect x="268.4" y="9605" width="2.1" height="15.0" fill="rgb(252,96,30)" rx="2" ry="2" /> +<text x="271.37" y="9615.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (2 samples, 0.07%)</title><rect x="734.0" y="10549" width="0.8" height="15.0" fill="rgb(241,156,24)" rx="2" ry="2" /> +<text x="736.95" y="10559.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (8 samples, 0.29%)</title><rect x="491.6" y="10501" width="3.5" height="15.0" fill="rgb(237,68,6)" rx="2" ry="2" /> +<text x="494.62" y="10511.5" ></text> +</g> +<g > +<title><unknown> (1 samples, 0.04%)</title><rect x="455.2" y="9701" width="0.4" height="15.0" fill="rgb(233,75,46)" rx="2" ry="2" /> +<text x="458.21" y="9711.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (1,144 samples, 42.03%)</title><rect x="242.8" y="10933" width="495.9" height="15.0" fill="rgb(214,175,43)" rx="2" ry="2" /> +<text x="245.79" y="10943.5" >Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc</text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="739.6" y="10389" width="0.4" height="15.0" fill="rgb(217,222,7)" rx="2" ry="2" /> +<text x="742.59" y="10399.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (4 samples, 0.15%)</title><rect x="739.2" y="10741" width="1.7" height="15.0" fill="rgb(214,150,5)" rx="2" ry="2" /> +<text x="742.16" y="10751.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="1067.8" y="10309" width="0.4" height="15.0" fill="rgb(241,169,0)" rx="2" ry="2" /> +<text x="1070.75" y="10319.5" ></text> +</g> +<g > +<title><unknown> (2 samples, 0.07%)</title><rect x="1021.4" y="7733" width="0.8" height="15.0" fill="rgb(214,20,8)" rx="2" ry="2" /> +<text x="1024.37" y="7743.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (4 samples, 0.15%)</title><rect x="391.5" y="9589" width="1.7" height="15.0" fill="rgb(232,85,25)" rx="2" ry="2" /> +<text x="394.48" y="9599.5" ></text> +</g> +<g > +<title><unknown> (1 samples, 0.04%)</title><rect x="1021.8" y="2677" width="0.4" height="15.0" fill="rgb(223,67,14)" rx="2" ry="2" /> +<text x="1024.80" y="2687.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="740.0" y="10453" width="0.5" height="15.0" fill="rgb(233,65,16)" rx="2" ry="2" /> +<text x="743.02" y="10463.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="483.4" y="9877" width="0.4" height="15.0" fill="rgb(248,71,51)" rx="2" ry="2" /> +<text x="486.39" y="9887.5" ></text> +</g> +<g > +<title><unknown> (2 samples, 0.07%)</title><rect x="1021.4" y="10549" width="0.8" height="15.0" fill="rgb(222,79,0)" rx="2" ry="2" /> +<text x="1024.37" y="10559.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (2 samples, 0.07%)</title><rect x="467.3" y="9573" width="0.9" height="15.0" fill="rgb(205,9,0)" rx="2" ry="2" /> +<text x="470.35" y="9583.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="1138.0" y="11157" width="0.4" height="15.0" fill="rgb(216,121,1)" rx="2" ry="2" /> +<text x="1140.98" y="11167.5" ></text> +</g> +<g > +<title><unknown> (1 samples, 0.04%)</title><rect x="1021.8" y="5845" width="0.4" height="15.0" fill="rgb(224,81,16)" rx="2" ry="2" /> +<text x="1024.80" y="5855.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (2 samples, 0.07%)</title><rect x="1072.1" y="11125" width="0.9" height="15.0" fill="rgb(211,107,30)" rx="2" ry="2" /> +<text x="1075.09" y="11135.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="453.5" y="9509" width="0.4" height="15.0" fill="rgb(247,115,48)" rx="2" ry="2" /> +<text x="456.48" y="9519.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (4 samples, 0.15%)</title><rect x="768.2" y="9893" width="1.7" height="15.0" fill="rgb(212,51,9)" rx="2" ry="2" /> +<text x="771.20" y="9903.5" ></text> +</g> +<g > +<title><unknown> (1 samples, 0.04%)</title><rect x="1021.8" y="1493" width="0.4" height="15.0" fill="rgb(210,83,6)" rx="2" ry="2" /> +<text x="1024.80" y="1503.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="319.1" y="9557" width="0.4" height="15.0" fill="rgb(228,203,51)" rx="2" ry="2" /> +<text x="322.09" y="9567.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (4 samples, 0.15%)</title><rect x="742.6" y="10229" width="1.8" height="15.0" fill="rgb(249,52,24)" rx="2" ry="2" /> +<text x="745.62" y="10239.5" ></text> +</g> +<g > +<title><unknown> (1 samples, 0.04%)</title><rect x="691.0" y="9925" width="0.5" height="15.0" fill="rgb(238,183,49)" rx="2" ry="2" /> +<text x="694.04" y="9935.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="345.1" y="9813" width="0.4" height="15.0" fill="rgb(229,163,42)" rx="2" ry="2" /> +<text x="348.10" y="9823.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="320.8" y="9493" width="0.5" height="15.0" fill="rgb(211,199,11)" rx="2" ry="2" /> +<text x="323.82" y="9503.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (3 samples, 0.11%)</title><rect x="1112.4" y="11077" width="1.3" height="15.0" fill="rgb(236,125,20)" rx="2" ry="2" /> +<text x="1115.40" y="11087.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (2 samples, 0.07%)</title><rect x="284.0" y="9717" width="0.8" height="15.0" fill="rgb(210,12,16)" rx="2" ry="2" /> +<text x="286.98" y="9727.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (23 samples, 0.84%)</title><rect x="439.6" y="9957" width="10.0" height="15.0" fill="rgb(218,210,19)" rx="2" ry="2" /> +<text x="442.60" y="9967.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (3 samples, 0.11%)</title><rect x="529.8" y="10181" width="1.3" height="15.0" fill="rgb(232,166,17)" rx="2" ry="2" /> +<text x="532.77" y="10191.5" ></text> +</g> +<g > +<title><unknown> (2 samples, 0.07%)</title><rect x="1021.4" y="8117" width="0.8" height="15.0" fill="rgb(212,52,1)" rx="2" ry="2" /> +<text x="1024.37" y="8127.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (2 samples, 0.07%)</title><rect x="542.8" y="10229" width="0.8" height="15.0" fill="rgb(237,86,16)" rx="2" ry="2" /> +<text x="545.78" y="10239.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (7 samples, 0.26%)</title><rect x="533.7" y="10133" width="3.0" height="15.0" fill="rgb(235,157,11)" rx="2" ry="2" /> +<text x="536.67" y="10143.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="453.5" y="9525" width="0.4" height="15.0" fill="rgb(231,61,22)" rx="2" ry="2" /> +<text x="456.48" y="9535.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (1 samples, 0.04%)</title><rect x="487.7" y="9797" width="0.5" height="15.0" fill="rgb(244,228,21)" rx="2" ry="2" /> +<text x="490.72" y="9807.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (571 samples, 20.98%)</title><rect x="243.2" y="10661" width="247.6" height="15.0" fill="rgb(247,61,10)" rx="2" ry="2" /> +<text x="246.23" y="10671.5" >Nsfisis\Waddiwasi\Execution\Runt..</text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (9 samples, 0.33%)</title><rect x="254.5" y="9877" width="3.9" height="15.0" fill="rgb(244,135,0)" rx="2" ry="2" /> +<text x="257.50" y="9887.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="474.7" y="9813" width="0.5" height="15.0" fill="rgb(215,205,23)" rx="2" ry="2" /> +<text x="477.72" y="9823.5" ></text> +</g> +<g > +<title><unknown> (2 samples, 0.07%)</title><rect x="1021.4" y="8965" width="0.8" height="15.0" fill="rgb(205,179,31)" rx="2" ry="2" /> +<text x="1024.37" y="8975.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (4 samples, 0.15%)</title><rect x="742.6" y="10485" width="1.8" height="15.0" fill="rgb(235,131,30)" rx="2" ry="2" /> +<text x="745.62" y="10495.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="870.1" y="8997" width="0.4" height="15.0" fill="rgb(207,43,27)" rx="2" ry="2" /> +<text x="873.07" y="9007.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (4 samples, 0.15%)</title><rect x="241.1" y="10821" width="1.7" height="15.0" fill="rgb(242,158,36)" rx="2" ry="2" /> +<text x="244.06" y="10831.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (5 samples, 0.18%)</title><rect x="244.1" y="10485" width="2.2" height="15.0" fill="rgb(205,67,19)" rx="2" ry="2" /> +<text x="247.09" y="10495.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Stack::pushValue (1 samples, 0.04%)</title><rect x="525.4" y="10101" width="0.5" height="15.0" fill="rgb(233,134,25)" rx="2" ry="2" /> +<text x="528.44" y="10111.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (6 samples, 0.22%)</title><rect x="479.5" y="9877" width="2.6" height="15.0" fill="rgb(234,95,7)" rx="2" ry="2" /> +<text x="482.49" y="9887.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (3 samples, 0.11%)</title><rect x="442.2" y="9269" width="1.3" height="15.0" fill="rgb(212,115,47)" rx="2" ry="2" /> +<text x="445.20" y="9279.5" ></text> +</g> +<g > +<title><unknown> (1 samples, 0.04%)</title><rect x="1021.8" y="2789" width="0.4" height="15.0" fill="rgb(208,22,48)" rx="2" ry="2" /> +<text x="1024.80" y="2799.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="318.7" y="9525" width="0.4" height="15.0" fill="rgb(228,201,21)" rx="2" ry="2" /> +<text x="321.66" y="9535.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="449.6" y="9973" width="0.4" height="15.0" fill="rgb(254,130,42)" rx="2" ry="2" /> +<text x="452.57" y="9983.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (5 samples, 0.18%)</title><rect x="466.0" y="9829" width="2.2" height="15.0" fill="rgb(217,116,11)" rx="2" ry="2" /> +<text x="469.05" y="9839.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="270.5" y="9637" width="0.5" height="15.0" fill="rgb(244,31,4)" rx="2" ry="2" /> +<text x="273.54" y="9647.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="351.2" y="9493" width="0.4" height="15.0" fill="rgb(233,68,50)" rx="2" ry="2" /> +<text x="354.17" y="9503.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (3 samples, 0.11%)</title><rect x="717.5" y="9813" width="1.3" height="15.0" fill="rgb(241,20,21)" rx="2" ry="2" /> +<text x="720.48" y="9823.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (562 samples, 20.65%)</title><rect x="246.7" y="10469" width="243.6" height="15.0" fill="rgb(216,46,28)" rx="2" ry="2" /> +<text x="249.69" y="10479.5" >Nsfisis\Waddiwasi\Execution\Runt..</text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="867.9" y="10501" width="0.4" height="15.0" fill="rgb(233,134,18)" rx="2" ry="2" /> +<text x="870.91" y="10511.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (3 samples, 0.11%)</title><rect x="402.8" y="9493" width="1.3" height="15.0" fill="rgb(224,137,40)" rx="2" ry="2" /> +<text x="405.76" y="9503.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="453.5" y="9557" width="0.4" height="15.0" fill="rgb(251,130,32)" rx="2" ry="2" /> +<text x="456.48" y="9567.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="497.3" y="10293" width="0.4" height="15.0" fill="rgb(207,192,3)" rx="2" ry="2" /> +<text x="500.26" y="10303.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="740.0" y="10277" width="0.5" height="15.0" fill="rgb(211,195,39)" rx="2" ry="2" /> +<text x="743.02" y="10287.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (2 samples, 0.07%)</title><rect x="530.2" y="10133" width="0.9" height="15.0" fill="rgb(206,26,27)" rx="2" ry="2" /> +<text x="533.21" y="10143.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (5 samples, 0.18%)</title><rect x="773.8" y="10005" width="2.2" height="15.0" fill="rgb(210,93,10)" rx="2" ry="2" /> +<text x="776.84" y="10015.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (2 samples, 0.07%)</title><rect x="307.0" y="9333" width="0.8" height="15.0" fill="rgb(222,11,48)" rx="2" ry="2" /> +<text x="309.95" y="9343.5" ></text> +</g> +<g > +<title><unknown> (1 samples, 0.04%)</title><rect x="1021.8" y="5589" width="0.4" height="15.0" fill="rgb(246,202,9)" rx="2" ry="2" /> +<text x="1024.80" y="5599.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (1 samples, 0.04%)</title><rect x="340.8" y="9973" width="0.4" height="15.0" fill="rgb(215,202,0)" rx="2" ry="2" /> +<text x="343.76" y="9983.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="484.7" y="9845" width="0.4" height="15.0" fill="rgb(248,26,1)" rx="2" ry="2" /> +<text x="487.69" y="9855.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="867.9" y="10117" width="0.4" height="15.0" fill="rgb(251,204,23)" rx="2" ry="2" /> +<text x="870.91" y="10127.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (6 samples, 0.22%)</title><rect x="732.2" y="10597" width="2.6" height="15.0" fill="rgb(220,111,25)" rx="2" ry="2" /> +<text x="735.22" y="10607.5" ></text> +</g> +<g > +<title><unknown> (2 samples, 0.07%)</title><rect x="1021.4" y="6485" width="0.8" height="15.0" fill="rgb(239,0,23)" rx="2" ry="2" /> +<text x="1024.37" y="6495.5" ></text> +</g> +<g > +<title><unknown> (1 samples, 0.04%)</title><rect x="1021.8" y="933" width="0.4" height="15.0" fill="rgb(253,51,35)" rx="2" ry="2" /> +<text x="1024.80" y="943.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (9 samples, 0.33%)</title><rect x="523.7" y="10277" width="3.9" height="15.0" fill="rgb(220,40,20)" rx="2" ry="2" /> +<text x="526.70" y="10287.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (4 samples, 0.15%)</title><rect x="351.6" y="9445" width="1.7" height="15.0" fill="rgb(226,17,28)" rx="2" ry="2" /> +<text x="354.60" y="9455.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (12 samples, 0.44%)</title><rect x="440.5" y="9813" width="5.2" height="15.0" fill="rgb(249,190,34)" rx="2" ry="2" /> +<text x="443.47" y="9823.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\BinaryFormat\Decoder::{closure}(/home/ken/src/php-waddiwasi/src/BinaryFormat/Decoder.php:1003-1007) (3 samples, 0.11%)</title><rect x="12.2" y="11141" width="1.3" height="15.0" fill="rgb(239,20,35)" rx="2" ry="2" /> +<text x="15.17" y="11151.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (85 samples, 3.12%)</title><rect x="503.3" y="10501" width="36.9" height="15.0" fill="rgb(215,22,26)" rx="2" ry="2" /> +<text x="506.33" y="10511.5" >Nsf..</text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="483.4" y="9861" width="0.4" height="15.0" fill="rgb(224,78,39)" rx="2" ry="2" /> +<text x="486.39" y="9871.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="785.1" y="10341" width="0.4" height="15.0" fill="rgb(241,18,3)" rx="2" ry="2" /> +<text x="788.11" y="10351.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="739.2" y="10341" width="0.4" height="15.0" fill="rgb(228,198,42)" rx="2" ry="2" /> +<text x="742.16" y="10351.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (2 samples, 0.07%)</title><rect x="498.6" y="10037" width="0.8" height="15.0" fill="rgb(238,11,0)" rx="2" ry="2" /> +<text x="501.56" y="10047.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (2 samples, 0.07%)</title><rect x="419.7" y="9461" width="0.8" height="15.0" fill="rgb(213,96,33)" rx="2" ry="2" /> +<text x="422.66" y="9471.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (2 samples, 0.07%)</title><rect x="426.6" y="9285" width="0.9" height="15.0" fill="rgb(231,129,1)" rx="2" ry="2" /> +<text x="429.60" y="9295.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (13 samples, 0.48%)</title><rect x="1106.8" y="10981" width="5.6" height="15.0" fill="rgb(249,18,49)" rx="2" ry="2" /> +<text x="1109.77" y="10991.5" ></text> +</g> +<g > +<title><unknown> (1 samples, 0.04%)</title><rect x="1021.8" y="4805" width="0.4" height="15.0" fill="rgb(213,111,8)" rx="2" ry="2" /> +<text x="1024.80" y="4815.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (2 samples, 0.07%)</title><rect x="859.7" y="10181" width="0.8" height="15.0" fill="rgb(231,179,15)" rx="2" ry="2" /> +<text x="862.67" y="10191.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (94 samples, 3.45%)</title><rect x="691.5" y="10101" width="40.7" height="15.0" fill="rgb(219,215,45)" rx="2" ry="2" /> +<text x="694.47" y="10111.5" >Nsf..</text> +</g> +<g > +<title><unknown> (2 samples, 0.07%)</title><rect x="1021.4" y="8229" width="0.8" height="15.0" fill="rgb(238,27,32)" rx="2" ry="2" /> +<text x="1024.37" y="8239.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="373.3" y="9477" width="0.4" height="15.0" fill="rgb(233,141,36)" rx="2" ry="2" /> +<text x="376.28" y="9487.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (1 samples, 0.04%)</title><rect x="868.3" y="10981" width="0.5" height="15.0" fill="rgb(235,52,34)" rx="2" ry="2" /> +<text x="871.34" y="10991.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (3 samples, 0.11%)</title><rect x="741.3" y="11141" width="1.3" height="15.0" fill="rgb(213,189,0)" rx="2" ry="2" /> +<text x="744.32" y="11151.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="730.9" y="9973" width="0.5" height="15.0" fill="rgb(232,27,36)" rx="2" ry="2" /> +<text x="733.92" y="9983.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (3 samples, 0.11%)</title><rect x="442.2" y="9285" width="1.3" height="15.0" fill="rgb(216,90,5)" rx="2" ry="2" /> +<text x="445.20" y="9295.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (1 samples, 0.04%)</title><rect x="739.6" y="10357" width="0.4" height="15.0" fill="rgb(212,60,54)" rx="2" ry="2" /> +<text x="742.59" y="10367.5" ></text> +</g> +<g > +<title><unknown> (1 samples, 0.04%)</title><rect x="1021.8" y="4645" width="0.4" height="15.0" fill="rgb(205,209,50)" rx="2" ry="2" /> +<text x="1024.80" y="4655.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (37 samples, 1.36%)</title><rect x="756.1" y="10101" width="16.0" height="15.0" fill="rgb(237,215,48)" rx="2" ry="2" /> +<text x="759.06" y="10111.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="484.7" y="9765" width="0.4" height="15.0" fill="rgb(221,25,52)" rx="2" ry="2" /> +<text x="487.69" y="9775.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (200 samples, 7.35%)</title><rect x="341.6" y="9989" width="86.7" height="15.0" fill="rgb(240,55,48)" rx="2" ry="2" /> +<text x="344.63" y="9999.5" >Nsfisis\Wa..</text> +</g> +<g > +<title>{closure}(/home/ken/src/php-waddiwasi/examples/php-on-wasm/php-wasm.php:671-680) (1 samples, 0.04%)</title><rect x="439.2" y="9557" width="0.4" height="15.0" fill="rgb(249,154,15)" rx="2" ry="2" /> +<text x="442.17" y="9567.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="424.4" y="9093" width="0.5" height="15.0" fill="rgb(232,113,54)" rx="2" ry="2" /> +<text x="427.43" y="9103.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (41 samples, 1.51%)</title><rect x="1050.8" y="11157" width="17.8" height="15.0" fill="rgb(242,99,16)" rx="2" ry="2" /> +<text x="1053.84" y="11167.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doLoadI32 (1 samples, 0.04%)</title><rect x="381.5" y="9429" width="0.4" height="15.0" fill="rgb(240,99,34)" rx="2" ry="2" /> +<text x="384.51" y="9439.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="1151.0" y="11173" width="0.4" height="15.0" fill="rgb(250,15,36)" rx="2" ry="2" /> +<text x="1153.98" y="11183.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (183 samples, 6.72%)</title><rect x="652.9" y="10325" width="79.3" height="15.0" fill="rgb(207,104,11)" rx="2" ry="2" /> +<text x="655.89" y="10335.5" >Nsfisis\W..</text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Stack::popI32 (1 samples, 0.04%)</title><rect x="1116.3" y="11157" width="0.4" height="15.0" fill="rgb(230,24,26)" rx="2" ry="2" /> +<text x="1119.30" y="11167.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="359.0" y="9557" width="0.4" height="15.0" fill="rgb(253,182,9)" rx="2" ry="2" /> +<text x="361.97" y="9567.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (1 samples, 0.04%)</title><rect x="427.5" y="9509" width="0.4" height="15.0" fill="rgb(248,37,24)" rx="2" ry="2" /> +<text x="430.47" y="9519.5" ></text> +</g> +<g > +<title><unknown> (1 samples, 0.04%)</title><rect x="1021.8" y="6069" width="0.4" height="15.0" fill="rgb(219,38,21)" rx="2" ry="2" /> +<text x="1024.80" y="6079.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="1095.1" y="11077" width="0.4" height="15.0" fill="rgb(223,61,46)" rx="2" ry="2" /> +<text x="1098.06" y="11087.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="781.2" y="10277" width="0.4" height="15.0" fill="rgb(243,49,42)" rx="2" ry="2" /> +<text x="784.20" y="10287.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="781.2" y="10245" width="0.4" height="15.0" fill="rgb(218,64,51)" rx="2" ry="2" /> +<text x="784.20" y="10255.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (3 samples, 0.11%)</title><rect x="442.2" y="9013" width="1.3" height="15.0" fill="rgb(247,141,4)" rx="2" ry="2" /> +<text x="445.20" y="9023.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (2 samples, 0.07%)</title><rect x="496.0" y="10325" width="0.8" height="15.0" fill="rgb(218,5,40)" rx="2" ry="2" /> +<text x="498.96" y="10335.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="245.4" y="10373" width="0.4" height="15.0" fill="rgb(225,194,46)" rx="2" ry="2" /> +<text x="248.39" y="10383.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="1036.1" y="10949" width="0.4" height="15.0" fill="rgb(226,157,17)" rx="2" ry="2" /> +<text x="1039.11" y="10959.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (2 samples, 0.07%)</title><rect x="372.8" y="9573" width="0.9" height="15.0" fill="rgb(243,218,39)" rx="2" ry="2" /> +<text x="375.84" y="9583.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (4 samples, 0.15%)</title><rect x="742.6" y="10277" width="1.8" height="15.0" fill="rgb(242,221,49)" rx="2" ry="2" /> +<text x="745.62" y="10287.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (4 samples, 0.15%)</title><rect x="541.9" y="10389" width="1.7" height="15.0" fill="rgb(207,161,18)" rx="2" ry="2" /> +<text x="544.91" y="10399.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (570 samples, 20.94%)</title><rect x="243.2" y="10597" width="247.1" height="15.0" fill="rgb(241,171,17)" rx="2" ry="2" /> +<text x="246.23" y="10607.5" >Nsfisis\Waddiwasi\Execution\Runt..</text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="785.1" y="10357" width="0.4" height="15.0" fill="rgb(216,109,12)" rx="2" ry="2" /> +<text x="788.11" y="10367.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (3 samples, 0.11%)</title><rect x="363.7" y="9589" width="1.3" height="15.0" fill="rgb(219,47,10)" rx="2" ry="2" /> +<text x="366.74" y="9599.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (1 samples, 0.04%)</title><rect x="474.7" y="9845" width="0.5" height="15.0" fill="rgb(207,209,25)" rx="2" ry="2" /> +<text x="477.72" y="9855.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (4 samples, 0.15%)</title><rect x="380.2" y="9589" width="1.7" height="15.0" fill="rgb(208,111,14)" rx="2" ry="2" /> +<text x="383.21" y="9599.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (15 samples, 0.55%)</title><rect x="379.8" y="9621" width="6.5" height="15.0" fill="rgb(215,90,45)" rx="2" ry="2" /> +<text x="382.78" y="9631.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="443.1" y="8709" width="0.4" height="15.0" fill="rgb(236,92,27)" rx="2" ry="2" /> +<text x="446.07" y="8719.5" ></text> +</g> +<g > +<title><unknown> (1 samples, 0.04%)</title><rect x="1021.8" y="5205" width="0.4" height="15.0" fill="rgb(205,146,43)" rx="2" ry="2" /> +<text x="1024.80" y="5215.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="537.1" y="10037" width="0.5" height="15.0" fill="rgb(225,181,8)" rx="2" ry="2" /> +<text x="540.14" y="10047.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (2 samples, 0.07%)</title><rect x="448.3" y="9877" width="0.8" height="15.0" fill="rgb(239,73,34)" rx="2" ry="2" /> +<text x="451.27" y="9887.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (2 samples, 0.07%)</title><rect x="526.7" y="9925" width="0.9" height="15.0" fill="rgb(215,152,35)" rx="2" ry="2" /> +<text x="529.74" y="9935.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Stack::pushValue (2 samples, 0.07%)</title><rect x="1069.1" y="11189" width="0.8" height="15.0" fill="rgb(211,84,15)" rx="2" ry="2" /> +<text x="1072.05" y="11199.5" ></text> +</g> +<g > +<title><unknown> (1 samples, 0.04%)</title><rect x="1021.8" y="2037" width="0.4" height="15.0" fill="rgb(205,105,46)" rx="2" ry="2" /> +<text x="1024.80" y="2047.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="238.9" y="10293" width="0.4" height="15.0" fill="rgb(221,100,12)" rx="2" ry="2" /> +<text x="241.89" y="10303.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (4 samples, 0.15%)</title><rect x="736.6" y="10501" width="1.7" height="15.0" fill="rgb(207,157,41)" rx="2" ry="2" /> +<text x="739.55" y="10511.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (1 samples, 0.04%)</title><rect x="245.4" y="10421" width="0.4" height="15.0" fill="rgb(242,12,38)" rx="2" ry="2" /> +<text x="248.39" y="10431.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (1 samples, 0.04%)</title><rect x="870.1" y="7925" width="0.4" height="15.0" fill="rgb(227,33,13)" rx="2" ry="2" /> +<text x="873.07" y="7935.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="1152.7" y="11237" width="0.5" height="15.0" fill="rgb(241,14,51)" rx="2" ry="2" /> +<text x="1155.72" y="11247.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (7 samples, 0.26%)</title><rect x="863.1" y="10245" width="3.1" height="15.0" fill="rgb(239,125,7)" rx="2" ry="2" /> +<text x="866.14" y="10255.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="870.1" y="9269" width="0.4" height="15.0" fill="rgb(231,209,1)" rx="2" ry="2" /> +<text x="873.07" y="9279.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Stack::pushI32 (1 samples, 0.04%)</title><rect x="443.9" y="9429" width="0.5" height="15.0" fill="rgb(239,214,46)" rx="2" ry="2" /> +<text x="446.94" y="9439.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="291.3" y="9669" width="0.5" height="15.0" fill="rgb(241,19,18)" rx="2" ry="2" /> +<text x="294.34" y="9679.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (1 samples, 0.04%)</title><rect x="475.6" y="9765" width="0.4" height="15.0" fill="rgb(224,65,0)" rx="2" ry="2" /> +<text x="478.58" y="9775.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Stack::popI32 (8 samples, 0.29%)</title><rect x="166.1" y="11157" width="3.4" height="15.0" fill="rgb(239,157,9)" rx="2" ry="2" /> +<text x="169.06" y="11167.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="265.3" y="9333" width="0.5" height="15.0" fill="rgb(207,75,19)" rx="2" ry="2" /> +<text x="268.33" y="9343.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (4 samples, 0.15%)</title><rect x="732.2" y="10549" width="1.8" height="15.0" fill="rgb(243,200,48)" rx="2" ry="2" /> +<text x="735.22" y="10559.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (4 samples, 0.15%)</title><rect x="411.4" y="9397" width="1.8" height="15.0" fill="rgb(250,138,16)" rx="2" ry="2" /> +<text x="414.43" y="9407.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (1 samples, 0.04%)</title><rect x="484.3" y="9637" width="0.4" height="15.0" fill="rgb(238,222,30)" rx="2" ry="2" /> +<text x="487.25" y="9647.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (1 samples, 0.04%)</title><rect x="733.5" y="8277" width="0.5" height="15.0" fill="rgb(214,36,28)" rx="2" ry="2" /> +<text x="736.52" y="8287.5" ></text> +</g> +<g > +<title><unknown> (2 samples, 0.07%)</title><rect x="1021.4" y="7253" width="0.8" height="15.0" fill="rgb(240,213,17)" rx="2" ry="2" /> +<text x="1024.37" y="7263.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (8 samples, 0.29%)</title><rect x="460.4" y="9557" width="3.5" height="15.0" fill="rgb(230,103,11)" rx="2" ry="2" /> +<text x="463.41" y="9567.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="724.8" y="9829" width="0.5" height="15.0" fill="rgb(224,80,44)" rx="2" ry="2" /> +<text x="727.85" y="9839.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="538.9" y="10373" width="0.4" height="15.0" fill="rgb(253,155,24)" rx="2" ry="2" /> +<text x="541.88" y="10383.5" ></text> +</g> +<g > +<title><unknown> (2 samples, 0.07%)</title><rect x="1021.4" y="10597" width="0.8" height="15.0" fill="rgb(206,166,33)" rx="2" ry="2" /> +<text x="1024.37" y="10607.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="742.2" y="10581" width="0.4" height="15.0" fill="rgb(234,22,48)" rx="2" ry="2" /> +<text x="745.19" y="10591.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="319.1" y="9525" width="0.4" height="15.0" fill="rgb(211,60,20)" rx="2" ry="2" /> +<text x="322.09" y="9535.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="739.2" y="10229" width="0.4" height="15.0" fill="rgb(235,196,23)" rx="2" ry="2" /> +<text x="742.16" y="10239.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="742.6" y="10085" width="0.5" height="15.0" fill="rgb(236,221,17)" rx="2" ry="2" /> +<text x="745.62" y="10095.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="267.9" y="9509" width="0.5" height="15.0" fill="rgb(225,78,28)" rx="2" ry="2" /> +<text x="270.94" y="9519.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (4 samples, 0.15%)</title><rect x="238.9" y="10965" width="1.7" height="15.0" fill="rgb(211,121,54)" rx="2" ry="2" /> +<text x="241.89" y="10975.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (9 samples, 0.33%)</title><rect x="498.6" y="10165" width="3.9" height="15.0" fill="rgb(231,153,3)" rx="2" ry="2" /> +<text x="501.56" y="10175.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (2 samples, 0.07%)</title><rect x="532.8" y="10117" width="0.9" height="15.0" fill="rgb(247,90,41)" rx="2" ry="2" /> +<text x="535.81" y="10127.5" ></text> +</g> +<g > +<title><unknown> (1 samples, 0.04%)</title><rect x="1021.8" y="2149" width="0.4" height="15.0" fill="rgb(216,214,10)" rx="2" ry="2" /> +<text x="1024.80" y="2159.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (13 samples, 0.48%)</title><rect x="421.8" y="9461" width="5.7" height="15.0" fill="rgb(239,160,46)" rx="2" ry="2" /> +<text x="424.83" y="9471.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="291.8" y="9733" width="0.4" height="15.0" fill="rgb(243,128,34)" rx="2" ry="2" /> +<text x="294.78" y="9743.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (4 samples, 0.15%)</title><rect x="732.2" y="10453" width="1.8" height="15.0" fill="rgb(233,37,38)" rx="2" ry="2" /> +<text x="735.22" y="10463.5" ></text> +</g> +<g > +<title><unknown> (1 samples, 0.04%)</title><rect x="1021.8" y="1653" width="0.4" height="15.0" fill="rgb(232,44,46)" rx="2" ry="2" /> +<text x="1024.80" y="1663.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (10 samples, 0.37%)</title><rect x="772.1" y="10165" width="4.3" height="15.0" fill="rgb(247,214,21)" rx="2" ry="2" /> +<text x="775.10" y="10175.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="412.3" y="9093" width="0.4" height="15.0" fill="rgb(252,215,14)" rx="2" ry="2" /> +<text x="415.29" y="9103.5" ></text> +</g> +<g > +<title><unknown> (1 samples, 0.04%)</title><rect x="304.3" y="9285" width="0.5" height="15.0" fill="rgb(254,198,33)" rx="2" ry="2" /> +<text x="307.35" y="9295.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="443.1" y="8725" width="0.4" height="15.0" fill="rgb(244,47,15)" rx="2" ry="2" /> +<text x="446.07" y="8735.5" ></text> +</g> +<g > +<title><unknown> (2 samples, 0.07%)</title><rect x="1021.4" y="6277" width="0.8" height="15.0" fill="rgb(215,5,24)" rx="2" ry="2" /> +<text x="1024.37" y="6287.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (3 samples, 0.11%)</title><rect x="289.6" y="9589" width="1.3" height="15.0" fill="rgb(208,9,15)" rx="2" ry="2" /> +<text x="292.61" y="9599.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="494.2" y="10373" width="0.5" height="15.0" fill="rgb(214,80,39)" rx="2" ry="2" /> +<text x="497.22" y="10383.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (25 samples, 0.92%)</title><rect x="472.5" y="10005" width="10.9" height="15.0" fill="rgb(249,44,16)" rx="2" ry="2" /> +<text x="475.55" y="10015.5" ></text> +</g> +<g > +<title><unknown> (2 samples, 0.07%)</title><rect x="1021.4" y="8773" width="0.8" height="15.0" fill="rgb(216,169,48)" rx="2" ry="2" /> +<text x="1024.37" y="8783.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="485.1" y="9845" width="0.5" height="15.0" fill="rgb(214,226,50)" rx="2" ry="2" /> +<text x="488.12" y="9855.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="1161.4" y="11109" width="0.4" height="15.0" fill="rgb(214,9,20)" rx="2" ry="2" /> +<text x="1164.39" y="11119.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="718.3" y="9525" width="0.5" height="15.0" fill="rgb(228,212,34)" rx="2" ry="2" /> +<text x="721.35" y="9535.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Stack::popI32 (1 samples, 0.04%)</title><rect x="463.0" y="9301" width="0.4" height="15.0" fill="rgb(214,150,38)" rx="2" ry="2" /> +<text x="466.01" y="9311.5" ></text> +</g> +<g > +<title><unknown> (1 samples, 0.04%)</title><rect x="1021.8" y="4533" width="0.4" height="15.0" fill="rgb(207,14,8)" rx="2" ry="2" /> +<text x="1024.80" y="4543.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (4 samples, 0.15%)</title><rect x="742.6" y="10325" width="1.8" height="15.0" fill="rgb(252,65,42)" rx="2" ry="2" /> +<text x="745.62" y="10335.5" ></text> +</g> +<g > +<title><unknown> (2 samples, 0.07%)</title><rect x="1021.4" y="10869" width="0.8" height="15.0" fill="rgb(226,121,5)" rx="2" ry="2" /> +<text x="1024.37" y="10879.5" ></text> +</g> +<g > +<title><unknown> (1 samples, 0.04%)</title><rect x="1021.8" y="1781" width="0.4" height="15.0" fill="rgb(227,168,54)" rx="2" ry="2" /> +<text x="1024.80" y="1791.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (5 samples, 0.18%)</title><rect x="240.6" y="10901" width="2.2" height="15.0" fill="rgb(214,24,18)" rx="2" ry="2" /> +<text x="243.62" y="10911.5" ></text> +</g> +<g > +<title><unknown> (1 samples, 0.04%)</title><rect x="1021.8" y="2181" width="0.4" height="15.0" fill="rgb(225,182,4)" rx="2" ry="2" /> +<text x="1024.80" y="2191.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (3 samples, 0.11%)</title><rect x="741.3" y="10981" width="1.3" height="15.0" fill="rgb(237,25,47)" rx="2" ry="2" /> +<text x="744.32" y="10991.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (3 samples, 0.11%)</title><rect x="438.3" y="9829" width="1.3" height="15.0" fill="rgb(218,58,14)" rx="2" ry="2" /> +<text x="441.30" y="9839.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (2 samples, 0.07%)</title><rect x="789.9" y="10261" width="0.8" height="15.0" fill="rgb(231,208,11)" rx="2" ry="2" /> +<text x="792.88" y="10271.5" ></text> +</g> +<g > +<title>print_r (1 samples, 0.04%)</title><rect x="630.8" y="9829" width="0.4" height="15.0" fill="rgb(218,118,6)" rx="2" ry="2" /> +<text x="633.78" y="9839.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (1 samples, 0.04%)</title><rect x="238.9" y="10901" width="0.4" height="15.0" fill="rgb(224,189,36)" rx="2" ry="2" /> +<text x="241.89" y="10911.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="1141.4" y="11077" width="0.5" height="15.0" fill="rgb(232,110,19)" rx="2" ry="2" /> +<text x="1144.45" y="11087.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\StackEntries\Value::__construct (1 samples, 0.04%)</title><rect x="1146.6" y="11221" width="0.5" height="15.0" fill="rgb(244,94,40)" rx="2" ry="2" /> +<text x="1149.65" y="11231.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="738.3" y="10501" width="0.4" height="15.0" fill="rgb(232,158,53)" rx="2" ry="2" /> +<text x="741.29" y="10511.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (1 samples, 0.04%)</title><rect x="1137.5" y="11173" width="0.5" height="15.0" fill="rgb(248,101,11)" rx="2" ry="2" /> +<text x="1140.55" y="11183.5" ></text> +</g> +<g > +<title><unknown> (1 samples, 0.04%)</title><rect x="1021.8" y="2597" width="0.4" height="15.0" fill="rgb(243,137,11)" rx="2" ry="2" /> +<text x="1024.80" y="2607.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (19 samples, 0.70%)</title><rect x="431.4" y="9925" width="8.2" height="15.0" fill="rgb(207,223,51)" rx="2" ry="2" /> +<text x="434.37" y="9935.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="867.9" y="10805" width="0.4" height="15.0" fill="rgb(248,62,53)" rx="2" ry="2" /> +<text x="870.91" y="10815.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (4 samples, 0.15%)</title><rect x="411.4" y="9349" width="1.8" height="15.0" fill="rgb(223,9,21)" rx="2" ry="2" /> +<text x="414.43" y="9359.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (1 samples, 0.04%)</title><rect x="1098.5" y="11125" width="0.5" height="15.0" fill="rgb(253,209,28)" rx="2" ry="2" /> +<text x="1101.53" y="11135.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (4 samples, 0.15%)</title><rect x="666.3" y="9925" width="1.8" height="15.0" fill="rgb(228,209,33)" rx="2" ry="2" /> +<text x="669.33" y="9935.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (2 samples, 0.07%)</title><rect x="408.4" y="9461" width="0.9" height="15.0" fill="rgb(246,39,34)" rx="2" ry="2" /> +<text x="411.39" y="9471.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (54 samples, 1.98%)</title><rect x="753.0" y="10261" width="23.4" height="15.0" fill="rgb(205,10,6)" rx="2" ry="2" /> +<text x="756.03" y="10271.5" >N..</text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (14 samples, 0.51%)</title><rect x="431.8" y="9845" width="6.1" height="15.0" fill="rgb(212,52,18)" rx="2" ry="2" /> +<text x="434.80" y="9855.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::deactivateLabel (1 samples, 0.04%)</title><rect x="495.5" y="10389" width="0.5" height="15.0" fill="rgb(232,72,23)" rx="2" ry="2" /> +<text x="498.53" y="10399.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (184 samples, 6.76%)</title><rect x="652.5" y="10421" width="79.7" height="15.0" fill="rgb(227,173,24)" rx="2" ry="2" /> +<text x="655.45" y="10431.5" >Nsfisis\W..</text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (2 samples, 0.07%)</title><rect x="329.5" y="9829" width="0.9" height="15.0" fill="rgb(230,192,29)" rx="2" ry="2" /> +<text x="332.49" y="9839.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (2 samples, 0.07%)</title><rect x="467.3" y="9621" width="0.9" height="15.0" fill="rgb(239,181,25)" rx="2" ry="2" /> +<text x="470.35" y="9631.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (35 samples, 1.29%)</title><rect x="349.9" y="9829" width="15.1" height="15.0" fill="rgb(206,178,38)" rx="2" ry="2" /> +<text x="352.87" y="9839.5" ></text> +</g> +<g > +<title><unknown> (2 samples, 0.07%)</title><rect x="1021.4" y="10309" width="0.8" height="15.0" fill="rgb(206,218,25)" rx="2" ry="2" /> +<text x="1024.37" y="10319.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Stack::pushI32 (4 samples, 0.15%)</title><rect x="641.6" y="9909" width="1.8" height="15.0" fill="rgb(229,72,54)" rx="2" ry="2" /> +<text x="644.62" y="9919.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (2 samples, 0.07%)</title><rect x="381.1" y="9461" width="0.8" height="15.0" fill="rgb(239,115,40)" rx="2" ry="2" /> +<text x="384.08" y="9471.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="1098.5" y="11077" width="0.5" height="15.0" fill="rgb(215,198,32)" rx="2" ry="2" /> +<text x="1101.53" y="11087.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (1 samples, 0.04%)</title><rect x="441.3" y="9525" width="0.5" height="15.0" fill="rgb(208,86,39)" rx="2" ry="2" /> +<text x="444.34" y="9535.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="399.7" y="9701" width="0.5" height="15.0" fill="rgb(250,133,17)" rx="2" ry="2" /> +<text x="402.72" y="9711.5" ></text> +</g> +<g > +<title><unknown> (2 samples, 0.07%)</title><rect x="1021.4" y="9141" width="0.8" height="15.0" fill="rgb(248,162,44)" rx="2" ry="2" /> +<text x="1024.37" y="9151.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (1 samples, 0.04%)</title><rect x="469.5" y="9765" width="0.4" height="15.0" fill="rgb(251,131,29)" rx="2" ry="2" /> +<text x="472.52" y="9775.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="1170.1" y="11141" width="0.4" height="15.0" fill="rgb(222,227,23)" rx="2" ry="2" /> +<text x="1173.06" y="11151.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (9 samples, 0.33%)</title><rect x="664.2" y="10037" width="3.9" height="15.0" fill="rgb(249,51,39)" rx="2" ry="2" /> +<text x="667.16" y="10047.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="1067.8" y="10341" width="0.4" height="15.0" fill="rgb(238,95,7)" rx="2" ry="2" /> +<text x="1070.75" y="10351.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="870.1" y="8517" width="0.4" height="15.0" fill="rgb(226,5,31)" rx="2" ry="2" /> +<text x="873.07" y="8527.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (2 samples, 0.07%)</title><rect x="398.0" y="9557" width="0.9" height="15.0" fill="rgb(242,4,54)" rx="2" ry="2" /> +<text x="400.99" y="9567.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="380.2" y="9461" width="0.4" height="15.0" fill="rgb(205,25,13)" rx="2" ry="2" /> +<text x="383.21" y="9471.5" ></text> +</g> +<g > +<title>assert (1 samples, 0.04%)</title><rect x="481.2" y="9669" width="0.5" height="15.0" fill="rgb(240,5,54)" rx="2" ry="2" /> +<text x="484.22" y="9679.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (3 samples, 0.11%)</title><rect x="402.8" y="9573" width="1.3" height="15.0" fill="rgb(209,36,34)" rx="2" ry="2" /> +<text x="405.76" y="9583.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1,143 samples, 41.99%)</title><rect x="243.2" y="10757" width="495.5" height="15.0" fill="rgb(240,27,22)" rx="2" ry="2" /> +<text x="246.23" y="10767.5" >Nsfisis\Waddiwasi\Execution\Runtime::execInstr</text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (3 samples, 0.11%)</title><rect x="408.4" y="9669" width="1.3" height="15.0" fill="rgb(245,8,52)" rx="2" ry="2" /> +<text x="411.39" y="9679.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (2 samples, 0.07%)</title><rect x="542.8" y="10181" width="0.8" height="15.0" fill="rgb(225,130,25)" rx="2" ry="2" /> +<text x="545.78" y="10191.5" ></text> +</g> +<g > +<title><unknown> (1 samples, 0.04%)</title><rect x="1021.8" y="805" width="0.4" height="15.0" fill="rgb(226,33,21)" rx="2" ry="2" /> +<text x="1024.80" y="815.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="870.5" y="9765" width="0.4" height="15.0" fill="rgb(246,221,50)" rx="2" ry="2" /> +<text x="873.51" y="9775.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="475.6" y="9733" width="0.4" height="15.0" fill="rgb(225,213,29)" rx="2" ry="2" /> +<text x="478.58" y="9743.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (168 samples, 6.17%)</title><rect x="795.1" y="10581" width="72.8" height="15.0" fill="rgb(235,125,39)" rx="2" ry="2" /> +<text x="798.08" y="10591.5" >Nsfisis\..</text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (1 samples, 0.04%)</title><rect x="739.2" y="10469" width="0.4" height="15.0" fill="rgb(237,80,43)" rx="2" ry="2" /> +<text x="742.16" y="10479.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="870.1" y="7765" width="0.4" height="15.0" fill="rgb(214,47,52)" rx="2" ry="2" /> +<text x="873.07" y="7775.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Stack::pushValue (1 samples, 0.04%)</title><rect x="277.9" y="9749" width="0.4" height="15.0" fill="rgb(231,40,39)" rx="2" ry="2" /> +<text x="280.91" y="9759.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (1 samples, 0.04%)</title><rect x="1090.3" y="11189" width="0.4" height="15.0" fill="rgb(249,125,25)" rx="2" ry="2" /> +<text x="1093.29" y="11199.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (3 samples, 0.11%)</title><rect x="717.5" y="9717" width="1.3" height="15.0" fill="rgb(210,210,18)" rx="2" ry="2" /> +<text x="720.48" y="9727.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="735.3" y="10421" width="0.4" height="15.0" fill="rgb(220,33,40)" rx="2" ry="2" /> +<text x="738.25" y="10431.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (1 samples, 0.04%)</title><rect x="777.3" y="10341" width="0.4" height="15.0" fill="rgb(229,102,38)" rx="2" ry="2" /> +<text x="780.30" y="10351.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (32 samples, 1.18%)</title><rect x="1099.8" y="11109" width="13.9" height="15.0" fill="rgb(228,81,17)" rx="2" ry="2" /> +<text x="1102.83" y="11119.5" ></text> +</g> +<g > +<title><unknown> (2 samples, 0.07%)</title><rect x="1021.4" y="10101" width="0.8" height="15.0" fill="rgb(216,206,5)" rx="2" ry="2" /> +<text x="1024.37" y="10111.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (3 samples, 0.11%)</title><rect x="741.3" y="11093" width="1.3" height="15.0" fill="rgb(207,215,28)" rx="2" ry="2" /> +<text x="744.32" y="11103.5" ></text> +</g> +<g > +<title><unknown> (1 samples, 0.04%)</title><rect x="1022.2" y="11157" width="0.5" height="15.0" fill="rgb(237,112,32)" rx="2" ry="2" /> +<text x="1025.23" y="11167.5" ></text> +</g> +<g > +<title><unknown> (1 samples, 0.04%)</title><rect x="637.3" y="9877" width="0.4" height="15.0" fill="rgb(211,161,46)" rx="2" ry="2" /> +<text x="640.28" y="9887.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (2 samples, 0.07%)</title><rect x="311.3" y="9445" width="0.9" height="15.0" fill="rgb(229,19,19)" rx="2" ry="2" /> +<text x="314.29" y="9455.5" ></text> +</g> +<g > +<title><unknown> (2 samples, 0.07%)</title><rect x="1021.4" y="8005" width="0.8" height="15.0" fill="rgb(217,102,48)" rx="2" ry="2" /> +<text x="1024.37" y="8015.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="733.5" y="8821" width="0.5" height="15.0" fill="rgb(211,156,54)" rx="2" ry="2" /> +<text x="736.52" y="8831.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (6 samples, 0.22%)</title><rect x="721.4" y="9989" width="2.6" height="15.0" fill="rgb(209,115,39)" rx="2" ry="2" /> +<text x="724.38" y="9999.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="734.0" y="9989" width="0.4" height="15.0" fill="rgb(232,130,14)" rx="2" ry="2" /> +<text x="736.95" y="9999.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (15 samples, 0.55%)</title><rect x="724.0" y="10005" width="6.5" height="15.0" fill="rgb(216,152,46)" rx="2" ry="2" /> +<text x="726.98" y="10015.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (2 samples, 0.07%)</title><rect x="325.2" y="9349" width="0.8" height="15.0" fill="rgb(223,80,19)" rx="2" ry="2" /> +<text x="328.16" y="9359.5" ></text> +</g> +<g > +<title><unknown> (1 samples, 0.04%)</title><rect x="1021.8" y="3285" width="0.4" height="15.0" fill="rgb(221,69,24)" rx="2" ry="2" /> +<text x="1024.80" y="3295.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="469.1" y="9733" width="0.4" height="15.0" fill="rgb(208,109,40)" rx="2" ry="2" /> +<text x="472.08" y="9743.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Stack::pushValue (1 samples, 0.04%)</title><rect x="539.7" y="10485" width="0.5" height="15.0" fill="rgb(217,1,54)" rx="2" ry="2" /> +<text x="542.74" y="10495.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (4 samples, 0.15%)</title><rect x="869.2" y="10133" width="1.7" height="15.0" fill="rgb(205,28,53)" rx="2" ry="2" /> +<text x="872.21" y="10143.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (2 samples, 0.07%)</title><rect x="1141.9" y="11077" width="0.8" height="15.0" fill="rgb(210,201,32)" rx="2" ry="2" /> +<text x="1144.88" y="11087.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (2 samples, 0.07%)</title><rect x="325.2" y="9429" width="0.8" height="15.0" fill="rgb(235,37,4)" rx="2" ry="2" /> +<text x="328.16" y="9439.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (9 samples, 0.33%)</title><rect x="460.0" y="9573" width="3.9" height="15.0" fill="rgb(254,63,26)" rx="2" ry="2" /> +<text x="462.98" y="9583.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="470.4" y="9781" width="0.4" height="15.0" fill="rgb(225,141,42)" rx="2" ry="2" /> +<text x="473.38" y="9791.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (2 samples, 0.07%)</title><rect x="404.5" y="9637" width="0.9" height="15.0" fill="rgb(237,137,49)" rx="2" ry="2" /> +<text x="407.49" y="9647.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (1 samples, 0.04%)</title><rect x="470.4" y="9813" width="0.4" height="15.0" fill="rgb(208,211,18)" rx="2" ry="2" /> +<text x="473.38" y="9823.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\StackEntry::Frame (3 samples, 0.11%)</title><rect x="1173.5" y="11253" width="1.3" height="15.0" fill="rgb(235,64,15)" rx="2" ry="2" /> +<text x="1176.53" y="11263.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Stack::push (1 samples, 0.04%)</title><rect x="770.8" y="9925" width="0.4" height="15.0" fill="rgb(210,49,9)" rx="2" ry="2" /> +<text x="773.80" y="9935.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\MemInst::storeByte (2 samples, 0.07%)</title><rect x="215.0" y="11141" width="0.9" height="15.0" fill="rgb(233,156,5)" rx="2" ry="2" /> +<text x="218.05" y="11151.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (241 samples, 8.85%)</title><rect x="547.1" y="10389" width="104.5" height="15.0" fill="rgb(253,63,11)" rx="2" ry="2" /> +<text x="550.11" y="10399.5" >Nsfisis\Wadd..</text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="258.0" y="9813" width="0.4" height="15.0" fill="rgb(233,208,37)" rx="2" ry="2" /> +<text x="260.96" y="9823.5" ></text> +</g> +<g > +<title>print_r (1 samples, 0.04%)</title><rect x="163.5" y="11125" width="0.4" height="15.0" fill="rgb(209,201,47)" rx="2" ry="2" /> +<text x="166.46" y="11135.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (3 samples, 0.11%)</title><rect x="741.3" y="10661" width="1.3" height="15.0" fill="rgb(247,78,50)" rx="2" ry="2" /> +<text x="744.32" y="10671.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="740.9" y="10325" width="0.4" height="15.0" fill="rgb(214,59,11)" rx="2" ry="2" /> +<text x="743.89" y="10335.5" ></text> +</g> +<g > +<title><unknown> (3 samples, 0.11%)</title><rect x="1165.3" y="11221" width="1.3" height="15.0" fill="rgb(237,23,43)" rx="2" ry="2" /> +<text x="1168.29" y="11231.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Stack::popI32 (6 samples, 0.22%)</title><rect x="636.4" y="9909" width="2.6" height="15.0" fill="rgb(207,99,8)" rx="2" ry="2" /> +<text x="639.41" y="9919.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="427.5" y="9269" width="0.4" height="15.0" fill="rgb(213,150,5)" rx="2" ry="2" /> +<text x="430.47" y="9279.5" ></text> +</g> +<g > +<title><unknown> (2 samples, 0.07%)</title><rect x="1021.4" y="7845" width="0.8" height="15.0" fill="rgb(247,72,2)" rx="2" ry="2" /> +<text x="1024.37" y="7855.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (1 samples, 0.04%)</title><rect x="1095.1" y="11141" width="0.4" height="15.0" fill="rgb(232,38,52)" rx="2" ry="2" /> +<text x="1098.06" y="11151.5" ></text> +</g> +<g > +<title><unknown> (2 samples, 0.07%)</title><rect x="1021.4" y="8501" width="0.8" height="15.0" fill="rgb(237,38,53)" rx="2" ry="2" /> +<text x="1024.37" y="8511.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="867.0" y="10213" width="0.5" height="15.0" fill="rgb(222,171,45)" rx="2" ry="2" /> +<text x="870.04" y="10223.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (9 samples, 0.33%)</title><rect x="786.8" y="10341" width="3.9" height="15.0" fill="rgb(249,198,33)" rx="2" ry="2" /> +<text x="789.84" y="10351.5" ></text> +</g> +<g > +<title><unknown> (1 samples, 0.04%)</title><rect x="1021.8" y="1285" width="0.4" height="15.0" fill="rgb(211,36,0)" rx="2" ry="2" /> +<text x="1024.80" y="1295.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="1138.0" y="11189" width="0.4" height="15.0" fill="rgb(232,21,39)" rx="2" ry="2" /> +<text x="1140.98" y="11199.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="1035.7" y="11061" width="0.4" height="15.0" fill="rgb(233,38,22)" rx="2" ry="2" /> +<text x="1038.67" y="11071.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (2 samples, 0.07%)</title><rect x="545.8" y="10357" width="0.9" height="15.0" fill="rgb(232,216,35)" rx="2" ry="2" /> +<text x="548.81" y="10367.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::deactivateFrame (1 samples, 0.04%)</title><rect x="1035.2" y="11189" width="0.5" height="15.0" fill="rgb(210,7,8)" rx="2" ry="2" /> +<text x="1038.24" y="11199.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="469.9" y="9877" width="0.5" height="15.0" fill="rgb(207,215,35)" rx="2" ry="2" /> +<text x="472.95" y="9887.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="870.1" y="8341" width="0.4" height="15.0" fill="rgb(247,177,1)" rx="2" ry="2" /> +<text x="873.07" y="8351.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="1174.4" y="11205" width="0.4" height="15.0" fill="rgb(225,44,11)" rx="2" ry="2" /> +<text x="1177.39" y="11215.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="365.0" y="9861" width="0.5" height="15.0" fill="rgb(210,109,42)" rx="2" ry="2" /> +<text x="368.04" y="9871.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="1174.4" y="11237" width="0.4" height="15.0" fill="rgb(243,110,43)" rx="2" ry="2" /> +<text x="1177.39" y="11247.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Stack::pushBool (1 samples, 0.04%)</title><rect x="1142.7" y="11221" width="0.5" height="15.0" fill="rgb(251,197,31)" rx="2" ry="2" /> +<text x="1145.75" y="11231.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="412.7" y="9173" width="0.5" height="15.0" fill="rgb(252,128,54)" rx="2" ry="2" /> +<text x="415.73" y="9183.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (2 samples, 0.07%)</title><rect x="530.2" y="10117" width="0.9" height="15.0" fill="rgb(230,162,16)" rx="2" ry="2" /> +<text x="533.21" y="10127.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Stack::popI64 (1 samples, 0.04%)</title><rect x="497.3" y="9973" width="0.4" height="15.0" fill="rgb(223,5,31)" rx="2" ry="2" /> +<text x="500.26" y="9983.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="238.9" y="10117" width="0.4" height="15.0" fill="rgb(224,35,18)" rx="2" ry="2" /> +<text x="241.89" y="10127.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="733.5" y="10069" width="0.5" height="15.0" fill="rgb(253,16,22)" rx="2" ry="2" /> +<text x="736.52" y="10079.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (69 samples, 2.53%)</title><rect x="297.4" y="9733" width="29.9" height="15.0" fill="rgb(249,195,27)" rx="2" ry="2" /> +<text x="300.41" y="9743.5" >Ns..</text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (4 samples, 0.15%)</title><rect x="363.3" y="9701" width="1.7" height="15.0" fill="rgb(205,61,33)" rx="2" ry="2" /> +<text x="366.31" y="9711.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="668.1" y="9717" width="0.4" height="15.0" fill="rgb(236,129,19)" rx="2" ry="2" /> +<text x="671.06" y="9727.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="668.1" y="9941" width="0.4" height="15.0" fill="rgb(220,170,21)" rx="2" ry="2" /> +<text x="671.06" y="9951.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="852.7" y="10261" width="0.5" height="15.0" fill="rgb(241,155,11)" rx="2" ry="2" /> +<text x="855.73" y="10271.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (561 samples, 20.61%)</title><rect x="246.7" y="10181" width="243.2" height="15.0" fill="rgb(215,35,27)" rx="2" ry="2" /> +<text x="249.69" y="10191.5" >Nsfisis\Waddiwasi\Execution\Runt..</text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (7 samples, 0.26%)</title><rect x="513.3" y="10149" width="3.0" height="15.0" fill="rgb(220,65,16)" rx="2" ry="2" /> +<text x="516.30" y="10159.5" ></text> +</g> +<g > +<title><unknown> (2 samples, 0.07%)</title><rect x="1021.4" y="10293" width="0.8" height="15.0" fill="rgb(218,6,38)" rx="2" ry="2" /> +<text x="1024.37" y="10303.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (23 samples, 0.84%)</title><rect x="453.9" y="9813" width="10.0" height="15.0" fill="rgb(236,212,7)" rx="2" ry="2" /> +<text x="456.91" y="9823.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (1 samples, 0.04%)</title><rect x="331.2" y="9765" width="0.5" height="15.0" fill="rgb(242,3,10)" rx="2" ry="2" /> +<text x="334.23" y="9775.5" ></text> +</g> +<g > +<title><unknown> (2 samples, 0.07%)</title><rect x="630.8" y="9893" width="0.8" height="15.0" fill="rgb(249,162,6)" rx="2" ry="2" /> +<text x="633.78" y="9903.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="739.2" y="10581" width="0.4" height="15.0" fill="rgb(240,146,48)" rx="2" ry="2" /> +<text x="742.16" y="10591.5" ></text> +</g> +<g > +<title><unknown> (1 samples, 0.04%)</title><rect x="1021.8" y="4053" width="0.4" height="15.0" fill="rgb(251,184,48)" rx="2" ry="2" /> +<text x="1024.80" y="4063.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Stack::pushValue (1 samples, 0.04%)</title><rect x="494.7" y="10405" width="0.4" height="15.0" fill="rgb(250,146,9)" rx="2" ry="2" /> +<text x="497.66" y="10415.5" ></text> +</g> +<g > +<title><unknown> (2 samples, 0.07%)</title><rect x="1021.4" y="9253" width="0.8" height="15.0" fill="rgb(211,128,53)" rx="2" ry="2" /> +<text x="1024.37" y="9263.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="485.1" y="9797" width="0.5" height="15.0" fill="rgb(244,209,24)" rx="2" ry="2" /> +<text x="488.12" y="9807.5" ></text> +</g> +<g > +<title><unknown> (2 samples, 0.07%)</title><rect x="1021.4" y="10037" width="0.8" height="15.0" fill="rgb(227,90,42)" rx="2" ry="2" /> +<text x="1024.37" y="10047.5" ></text> +</g> +<g > +<title><unknown> (2 samples, 0.07%)</title><rect x="1021.4" y="10917" width="0.8" height="15.0" fill="rgb(250,208,38)" rx="2" ry="2" /> +<text x="1024.37" y="10927.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (22 samples, 0.81%)</title><rect x="669.4" y="10021" width="9.5" height="15.0" fill="rgb(249,64,38)" rx="2" ry="2" /> +<text x="672.36" y="10031.5" ></text> +</g> +<g > +<title><unknown> (2 samples, 0.07%)</title><rect x="1021.4" y="8261" width="0.8" height="15.0" fill="rgb(252,99,34)" rx="2" ry="2" /> +<text x="1024.37" y="8271.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Stack::currentFrame (1 samples, 0.04%)</title><rect x="381.9" y="9525" width="0.5" height="15.0" fill="rgb(254,169,35)" rx="2" ry="2" /> +<text x="384.95" y="9535.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="484.3" y="9589" width="0.4" height="15.0" fill="rgb(211,201,38)" rx="2" ry="2" /> +<text x="487.25" y="9599.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (3 samples, 0.11%)</title><rect x="1071.7" y="11141" width="1.3" height="15.0" fill="rgb(229,115,40)" rx="2" ry="2" /> +<text x="1074.65" y="11151.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (34 samples, 1.25%)</title><rect x="350.3" y="9813" width="14.7" height="15.0" fill="rgb(210,75,35)" rx="2" ry="2" /> +<text x="353.30" y="9823.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="866.6" y="10357" width="0.4" height="15.0" fill="rgb(229,205,15)" rx="2" ry="2" /> +<text x="869.61" y="10367.5" ></text> +</g> +<g > +<title>count (2 samples, 0.07%)</title><rect x="163.9" y="11141" width="0.9" height="15.0" fill="rgb(216,227,44)" rx="2" ry="2" /> +<text x="166.89" y="11151.5" ></text> +</g> +<g > +<title><unknown> (1 samples, 0.04%)</title><rect x="1021.8" y="245" width="0.4" height="15.0" fill="rgb(240,0,50)" rx="2" ry="2" /> +<text x="1024.80" y="255.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="412.3" y="9077" width="0.4" height="15.0" fill="rgb(244,148,53)" rx="2" ry="2" /> +<text x="415.29" y="9087.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (12 samples, 0.44%)</title><rect x="263.2" y="9573" width="5.2" height="15.0" fill="rgb(221,186,15)" rx="2" ry="2" /> +<text x="266.17" y="9583.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="360.3" y="9637" width="0.4" height="15.0" fill="rgb(247,150,29)" rx="2" ry="2" /> +<text x="363.27" y="9647.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (3 samples, 0.11%)</title><rect x="385.0" y="9509" width="1.3" height="15.0" fill="rgb(230,78,51)" rx="2" ry="2" /> +<text x="387.98" y="9519.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="474.7" y="9797" width="0.5" height="15.0" fill="rgb(249,17,15)" rx="2" ry="2" /> +<text x="477.72" y="9807.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="781.2" y="10261" width="0.4" height="15.0" fill="rgb(220,127,5)" rx="2" ry="2" /> +<text x="784.20" y="10271.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (13 samples, 0.48%)</title><rect x="497.7" y="10501" width="5.6" height="15.0" fill="rgb(235,172,11)" rx="2" ry="2" /> +<text x="500.69" y="10511.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="849.7" y="10133" width="0.4" height="15.0" fill="rgb(252,16,38)" rx="2" ry="2" /> +<text x="852.70" y="10143.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (52 samples, 1.91%)</title><rect x="1092.0" y="11173" width="22.6" height="15.0" fill="rgb(242,206,26)" rx="2" ry="2" /> +<text x="1095.03" y="11183.5" >N..</text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="238.9" y="10853" width="0.4" height="15.0" fill="rgb(221,129,5)" rx="2" ry="2" /> +<text x="241.89" y="10863.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\ControlFlowResults\Br::__construct (1 samples, 0.04%)</title><rect x="1081.2" y="11189" width="0.4" height="15.0" fill="rgb(209,85,28)" rx="2" ry="2" /> +<text x="1084.19" y="11199.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="537.6" y="10101" width="0.4" height="15.0" fill="rgb(228,75,42)" rx="2" ry="2" /> +<text x="540.58" y="10111.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (3 samples, 0.11%)</title><rect x="483.8" y="9877" width="1.3" height="15.0" fill="rgb(243,154,46)" rx="2" ry="2" /> +<text x="486.82" y="9887.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="258.0" y="9765" width="0.4" height="15.0" fill="rgb(233,122,54)" rx="2" ry="2" /> +<text x="260.96" y="9775.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="409.3" y="9413" width="0.4" height="15.0" fill="rgb(241,9,4)" rx="2" ry="2" /> +<text x="412.26" y="9423.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Stack::pushI64 (1 samples, 0.04%)</title><rect x="651.6" y="10517" width="0.4" height="15.0" fill="rgb(250,79,48)" rx="2" ry="2" /> +<text x="654.59" y="10527.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (4 samples, 0.15%)</title><rect x="1049.1" y="11157" width="1.7" height="15.0" fill="rgb(246,31,35)" rx="2" ry="2" /> +<text x="1052.11" y="11167.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (13 samples, 0.48%)</title><rect x="511.1" y="10229" width="5.7" height="15.0" fill="rgb(205,105,46)" rx="2" ry="2" /> +<text x="514.13" y="10239.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="453.5" y="9797" width="0.4" height="15.0" fill="rgb(237,175,1)" rx="2" ry="2" /> +<text x="456.48" y="9807.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (23 samples, 0.84%)</title><rect x="261.4" y="9749" width="10.0" height="15.0" fill="rgb(209,125,22)" rx="2" ry="2" /> +<text x="264.43" y="9759.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (1 samples, 0.04%)</title><rect x="1098.5" y="11109" width="0.5" height="15.0" fill="rgb(211,95,10)" rx="2" ry="2" /> +<text x="1101.53" y="11119.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (1 samples, 0.04%)</title><rect x="267.1" y="9413" width="0.4" height="15.0" fill="rgb(228,169,12)" rx="2" ry="2" /> +<text x="270.07" y="9423.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\MemInst::storeI32 (1 samples, 0.04%)</title><rect x="1128.4" y="11237" width="0.5" height="15.0" fill="rgb(212,67,33)" rx="2" ry="2" /> +<text x="1131.44" y="11247.5" ></text> +</g> +<g > +<title><unknown> (1 samples, 0.04%)</title><rect x="1021.8" y="5077" width="0.4" height="15.0" fill="rgb(220,123,3)" rx="2" ry="2" /> +<text x="1024.80" y="5087.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="307.8" y="9125" width="0.5" height="15.0" fill="rgb(240,167,5)" rx="2" ry="2" /> +<text x="310.82" y="9135.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (5 samples, 0.18%)</title><rect x="773.8" y="9957" width="2.2" height="15.0" fill="rgb(227,121,9)" rx="2" ry="2" /> +<text x="776.84" y="9967.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="238.9" y="10245" width="0.4" height="15.0" fill="rgb(220,51,0)" rx="2" ry="2" /> +<text x="241.89" y="10255.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (1 samples, 0.04%)</title><rect x="739.2" y="10597" width="0.4" height="15.0" fill="rgb(205,66,35)" rx="2" ry="2" /> +<text x="742.16" y="10607.5" ></text> +</g> +<g > +<title><unknown> (1 samples, 0.04%)</title><rect x="1021.8" y="1845" width="0.4" height="15.0" fill="rgb(209,23,23)" rx="2" ry="2" /> +<text x="1024.80" y="1855.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Stack::pushI32 (1 samples, 0.04%)</title><rect x="1161.4" y="11125" width="0.4" height="15.0" fill="rgb(220,188,13)" rx="2" ry="2" /> +<text x="1164.39" y="11135.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (2 samples, 0.07%)</title><rect x="733.1" y="10101" width="0.9" height="15.0" fill="rgb(235,49,32)" rx="2" ry="2" /> +<text x="736.09" y="10111.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="663.3" y="10021" width="0.4" height="15.0" fill="rgb(207,89,51)" rx="2" ry="2" /> +<text x="666.29" y="10031.5" ></text> +</g> +<g > +<title>{closure}(/home/ken/src/php-waddiwasi/examples/php-on-wasm/php-wasm.php:671-680) (1 samples, 0.04%)</title><rect x="359.0" y="9397" width="0.4" height="15.0" fill="rgb(235,23,21)" rx="2" ry="2" /> +<text x="361.97" y="9407.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="740.9" y="10533" width="0.4" height="15.0" fill="rgb(223,166,8)" rx="2" ry="2" /> +<text x="743.89" y="10543.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (5 samples, 0.18%)</title><rect x="255.8" y="9765" width="2.2" height="15.0" fill="rgb(246,59,38)" rx="2" ry="2" /> +<text x="258.80" y="9775.5" ></text> +</g> +<g > +<title><unknown> (2 samples, 0.07%)</title><rect x="1021.4" y="10453" width="0.8" height="15.0" fill="rgb(233,149,22)" rx="2" ry="2" /> +<text x="1024.37" y="10463.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (3 samples, 0.11%)</title><rect x="411.4" y="9253" width="1.3" height="15.0" fill="rgb(245,114,33)" rx="2" ry="2" /> +<text x="414.43" y="9263.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="238.9" y="10373" width="0.4" height="15.0" fill="rgb(231,176,26)" rx="2" ry="2" /> +<text x="241.89" y="10383.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Vals\Num::__construct (2 samples, 0.07%)</title><rect x="1167.5" y="11221" width="0.8" height="15.0" fill="rgb(249,54,5)" rx="2" ry="2" /> +<text x="1170.46" y="11231.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="424.4" y="9013" width="0.5" height="15.0" fill="rgb(234,117,26)" rx="2" ry="2" /> +<text x="427.43" y="9023.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (3 samples, 0.11%)</title><rect x="444.4" y="9541" width="1.3" height="15.0" fill="rgb(241,117,36)" rx="2" ry="2" /> +<text x="447.37" y="9551.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="733.5" y="8629" width="0.5" height="15.0" fill="rgb(236,83,36)" rx="2" ry="2" /> +<text x="736.52" y="8639.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="442.2" y="8741" width="0.4" height="15.0" fill="rgb(223,105,19)" rx="2" ry="2" /> +<text x="445.20" y="8751.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (2 samples, 0.07%)</title><rect x="467.3" y="9701" width="0.9" height="15.0" fill="rgb(207,44,2)" rx="2" ry="2" /> +<text x="470.35" y="9711.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (1 samples, 0.04%)</title><rect x="489.5" y="10085" width="0.4" height="15.0" fill="rgb(230,216,34)" rx="2" ry="2" /> +<text x="492.46" y="10095.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (2 samples, 0.07%)</title><rect x="453.9" y="9749" width="0.9" height="15.0" fill="rgb(251,161,13)" rx="2" ry="2" /> +<text x="456.91" y="9759.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Stack::pushValue (1 samples, 0.04%)</title><rect x="267.5" y="9461" width="0.4" height="15.0" fill="rgb(251,132,25)" rx="2" ry="2" /> +<text x="270.50" y="9471.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\StackEntries\Value::__construct (1 samples, 0.04%)</title><rect x="1166.6" y="11221" width="0.4" height="15.0" fill="rgb(223,165,30)" rx="2" ry="2" /> +<text x="1169.59" y="11231.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (1 samples, 0.04%)</title><rect x="869.2" y="10085" width="0.4" height="15.0" fill="rgb(247,127,53)" rx="2" ry="2" /> +<text x="872.21" y="10095.5" ></text> +</g> +<g > +<title><unknown> (1 samples, 0.04%)</title><rect x="1021.8" y="5813" width="0.4" height="15.0" fill="rgb(217,99,32)" rx="2" ry="2" /> +<text x="1024.80" y="5823.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (1 samples, 0.04%)</title><rect x="870.1" y="8069" width="0.4" height="15.0" fill="rgb(246,218,53)" rx="2" ry="2" /> +<text x="873.07" y="8079.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::activateLabel (1 samples, 0.04%)</title><rect x="336.4" y="10021" width="0.5" height="15.0" fill="rgb(218,225,26)" rx="2" ry="2" /> +<text x="339.43" y="10031.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="805.0" y="10277" width="0.5" height="15.0" fill="rgb(221,71,36)" rx="2" ry="2" /> +<text x="808.05" y="10287.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (562 samples, 20.65%)</title><rect x="246.7" y="10357" width="243.6" height="15.0" fill="rgb(220,61,11)" rx="2" ry="2" /> +<text x="249.69" y="10367.5" >Nsfisis\Waddiwasi\Execution\Runt..</text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (1 samples, 0.04%)</title><rect x="443.1" y="8869" width="0.4" height="15.0" fill="rgb(210,209,12)" rx="2" ry="2" /> +<text x="446.07" y="8879.5" ></text> +</g> +<g > +<title><unknown> (1 samples, 0.04%)</title><rect x="1021.8" y="3621" width="0.4" height="15.0" fill="rgb(210,145,21)" rx="2" ry="2" /> +<text x="1024.80" y="3631.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="734.0" y="10005" width="0.4" height="15.0" fill="rgb(209,161,30)" rx="2" ry="2" /> +<text x="736.95" y="10015.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\MemInst::storeByte (1 samples, 0.04%)</title><rect x="439.2" y="9541" width="0.4" height="15.0" fill="rgb(220,144,37)" rx="2" ry="2" /> +<text x="442.17" y="9551.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="270.5" y="9653" width="0.5" height="15.0" fill="rgb(254,57,10)" rx="2" ry="2" /> +<text x="273.54" y="9663.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (2 samples, 0.07%)</title><rect x="404.5" y="9669" width="0.9" height="15.0" fill="rgb(205,137,47)" rx="2" ry="2" /> +<text x="407.49" y="9679.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\StackEntry::Value (3 samples, 0.11%)</title><rect x="144.0" y="11157" width="1.3" height="15.0" fill="rgb(228,100,8)" rx="2" ry="2" /> +<text x="146.95" y="11167.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (1 samples, 0.04%)</title><rect x="793.8" y="10277" width="0.4" height="15.0" fill="rgb(212,150,1)" rx="2" ry="2" /> +<text x="796.78" y="10287.5" ></text> +</g> +<g > +<title><unknown> (1 samples, 0.04%)</title><rect x="1021.8" y="2885" width="0.4" height="15.0" fill="rgb(238,111,18)" rx="2" ry="2" /> +<text x="1024.80" y="2895.5" ></text> +</g> +<g > +<title>print_r (1 samples, 0.04%)</title><rect x="284.0" y="9557" width="0.4" height="15.0" fill="rgb(206,40,42)" rx="2" ry="2" /> +<text x="286.98" y="9567.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (2 samples, 0.07%)</title><rect x="325.2" y="9493" width="0.8" height="15.0" fill="rgb(217,164,8)" rx="2" ry="2" /> +<text x="328.16" y="9503.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="870.1" y="9173" width="0.4" height="15.0" fill="rgb(207,187,53)" rx="2" ry="2" /> +<text x="873.07" y="9183.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="319.1" y="9461" width="0.4" height="15.0" fill="rgb(205,89,1)" rx="2" ry="2" /> +<text x="322.09" y="9471.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\StackEntries\Value::__construct (1 samples, 0.04%)</title><rect x="631.2" y="9877" width="0.4" height="15.0" fill="rgb(246,212,53)" rx="2" ry="2" /> +<text x="634.21" y="9887.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (185 samples, 6.80%)</title><rect x="652.0" y="10533" width="80.2" height="15.0" fill="rgb(252,127,12)" rx="2" ry="2" /> +<text x="655.02" y="10543.5" >Nsfisis\W..</text> +</g> +<g > +<title><unknown> (2 samples, 0.07%)</title><rect x="1021.4" y="6213" width="0.8" height="15.0" fill="rgb(243,118,18)" rx="2" ry="2" /> +<text x="1024.37" y="6223.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (13 samples, 0.48%)</title><rect x="860.5" y="10293" width="5.7" height="15.0" fill="rgb(217,172,44)" rx="2" ry="2" /> +<text x="863.54" y="10303.5" ></text> +</g> +<g > +<title><unknown> (1 samples, 0.04%)</title><rect x="1021.8" y="5189" width="0.4" height="15.0" fill="rgb(235,110,23)" rx="2" ry="2" /> +<text x="1024.80" y="5199.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="1139.7" y="11125" width="0.4" height="15.0" fill="rgb(217,52,7)" rx="2" ry="2" /> +<text x="1142.71" y="11135.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (1 samples, 0.04%)</title><rect x="318.7" y="9573" width="0.4" height="15.0" fill="rgb(249,31,6)" rx="2" ry="2" /> +<text x="321.66" y="9583.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (1 samples, 0.04%)</title><rect x="427.5" y="9525" width="0.4" height="15.0" fill="rgb(232,37,32)" rx="2" ry="2" /> +<text x="430.47" y="9535.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (1 samples, 0.04%)</title><rect x="867.9" y="10229" width="0.4" height="15.0" fill="rgb(250,201,17)" rx="2" ry="2" /> +<text x="870.91" y="10239.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (47 samples, 1.73%)</title><rect x="659.0" y="10101" width="20.3" height="15.0" fill="rgb(229,228,50)" rx="2" ry="2" /> +<text x="661.96" y="10111.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="1115.9" y="11077" width="0.4" height="15.0" fill="rgb(253,37,35)" rx="2" ry="2" /> +<text x="1118.87" y="11087.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (5 samples, 0.18%)</title><rect x="442.2" y="9493" width="2.2" height="15.0" fill="rgb(208,173,15)" rx="2" ry="2" /> +<text x="445.20" y="9503.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (13 samples, 0.48%)</title><rect x="421.8" y="9477" width="5.7" height="15.0" fill="rgb(227,170,41)" rx="2" ry="2" /> +<text x="424.83" y="9487.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Vals\Num::__construct (1 samples, 0.04%)</title><rect x="1022.7" y="11205" width="0.4" height="15.0" fill="rgb(253,25,20)" rx="2" ry="2" /> +<text x="1025.67" y="11215.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="852.7" y="10197" width="0.5" height="15.0" fill="rgb(245,65,41)" rx="2" ry="2" /> +<text x="855.73" y="10207.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="238.9" y="10357" width="0.4" height="15.0" fill="rgb(221,116,3)" rx="2" ry="2" /> +<text x="241.89" y="10367.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="318.2" y="9541" width="0.5" height="15.0" fill="rgb(217,80,31)" rx="2" ry="2" /> +<text x="321.22" y="9551.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::deactivateLabel (1 samples, 0.04%)</title><rect x="739.2" y="10053" width="0.4" height="15.0" fill="rgb(253,115,22)" rx="2" ry="2" /> +<text x="742.16" y="10063.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (9 samples, 0.33%)</title><rect x="466.0" y="9941" width="3.9" height="15.0" fill="rgb(241,4,7)" rx="2" ry="2" /> +<text x="469.05" y="9951.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="468.2" y="9685" width="0.4" height="15.0" fill="rgb(207,209,47)" rx="2" ry="2" /> +<text x="471.21" y="9695.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="867.9" y="10549" width="0.4" height="15.0" fill="rgb(219,5,25)" rx="2" ry="2" /> +<text x="870.91" y="10559.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="538.0" y="10277" width="0.4" height="15.0" fill="rgb(205,42,51)" rx="2" ry="2" /> +<text x="541.01" y="10287.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Stack::popI32 (1 samples, 0.04%)</title><rect x="284.0" y="9589" width="0.4" height="15.0" fill="rgb(243,69,8)" rx="2" ry="2" /> +<text x="286.98" y="9599.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (2 samples, 0.07%)</title><rect x="1041.3" y="11189" width="0.9" height="15.0" fill="rgb(227,69,33)" rx="2" ry="2" /> +<text x="1044.31" y="11199.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (2 samples, 0.07%)</title><rect x="526.7" y="9893" width="0.9" height="15.0" fill="rgb(240,210,4)" rx="2" ry="2" /> +<text x="529.74" y="9903.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (2 samples, 0.07%)</title><rect x="810.7" y="10277" width="0.9" height="15.0" fill="rgb(222,197,0)" rx="2" ry="2" /> +<text x="813.68" y="10287.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (5 samples, 0.18%)</title><rect x="868.8" y="10437" width="2.1" height="15.0" fill="rgb(233,222,18)" rx="2" ry="2" /> +<text x="871.77" y="10447.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::invokeByFuncAddr (290 samples, 10.65%)</title><rect x="742.6" y="11013" width="125.7" height="15.0" fill="rgb(239,215,30)" rx="2" ry="2" /> +<text x="745.62" y="11023.5" >Nsfisis\Waddiwa..</text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (8 samples, 0.29%)</title><rect x="485.6" y="10021" width="3.4" height="15.0" fill="rgb(212,73,44)" rx="2" ry="2" /> +<text x="488.55" y="10031.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="427.5" y="9381" width="0.4" height="15.0" fill="rgb(226,9,18)" rx="2" ry="2" /> +<text x="430.47" y="9391.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (1 samples, 0.04%)</title><rect x="740.0" y="10405" width="0.5" height="15.0" fill="rgb(218,39,41)" rx="2" ry="2" /> +<text x="743.02" y="10415.5" ></text> +</g> +<g > +<title><unknown> (1 samples, 0.04%)</title><rect x="1021.8" y="3541" width="0.4" height="15.0" fill="rgb(241,27,11)" rx="2" ry="2" /> +<text x="1024.80" y="3551.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (5 samples, 0.18%)</title><rect x="868.8" y="10757" width="2.1" height="15.0" fill="rgb(241,207,25)" rx="2" ry="2" /> +<text x="871.77" y="10767.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (289 samples, 10.62%)</title><rect x="742.6" y="10757" width="125.3" height="15.0" fill="rgb(220,77,26)" rx="2" ry="2" /> +<text x="745.62" y="10767.5" >Nsfisis\Waddiwa..</text> +</g> +<g > +<title><unknown> (1 samples, 0.04%)</title><rect x="1021.8" y="2405" width="0.4" height="15.0" fill="rgb(242,39,14)" rx="2" ry="2" /> +<text x="1024.80" y="2415.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (3 samples, 0.11%)</title><rect x="442.2" y="9301" width="1.3" height="15.0" fill="rgb(214,148,14)" rx="2" ry="2" /> +<text x="445.20" y="9311.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (3 samples, 0.11%)</title><rect x="442.2" y="9109" width="1.3" height="15.0" fill="rgb(217,83,35)" rx="2" ry="2" /> +<text x="445.20" y="9119.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (2 samples, 0.07%)</title><rect x="496.0" y="10085" width="0.8" height="15.0" fill="rgb(232,61,39)" rx="2" ry="2" /> +<text x="498.96" y="10095.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="742.6" y="10069" width="0.5" height="15.0" fill="rgb(206,152,23)" rx="2" ry="2" /> +<text x="745.62" y="10079.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (5 samples, 0.18%)</title><rect x="773.8" y="9989" width="2.2" height="15.0" fill="rgb(253,203,31)" rx="2" ry="2" /> +<text x="776.84" y="9999.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (57 samples, 2.09%)</title><rect x="503.8" y="10437" width="24.7" height="15.0" fill="rgb(219,159,45)" rx="2" ry="2" /> +<text x="506.76" y="10447.5" >N..</text> +</g> +<g > +<title><unknown> (1 samples, 0.04%)</title><rect x="1021.8" y="4261" width="0.4" height="15.0" fill="rgb(216,117,16)" rx="2" ry="2" /> +<text x="1024.80" y="4271.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (343 samples, 12.60%)</title><rect x="503.3" y="10661" width="148.7" height="15.0" fill="rgb(229,19,22)" rx="2" ry="2" /> +<text x="506.33" y="10671.5" >Nsfisis\Waddiwasi\E..</text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="319.1" y="9493" width="0.4" height="15.0" fill="rgb(239,91,0)" rx="2" ry="2" /> +<text x="322.09" y="9503.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (9 samples, 0.33%)</title><rect x="1153.6" y="11253" width="3.9" height="15.0" fill="rgb(234,226,3)" rx="2" ry="2" /> +<text x="1156.59" y="11263.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::deactivateLabel (1 samples, 0.04%)</title><rect x="463.9" y="10053" width="0.4" height="15.0" fill="rgb(229,50,15)" rx="2" ry="2" /> +<text x="466.88" y="10063.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::deactivateLabel (1 samples, 0.04%)</title><rect x="668.9" y="10021" width="0.5" height="15.0" fill="rgb(225,39,44)" rx="2" ry="2" /> +<text x="671.93" y="10031.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (183 samples, 6.72%)</title><rect x="652.9" y="10293" width="79.3" height="15.0" fill="rgb(212,0,31)" rx="2" ry="2" /> +<text x="655.89" y="10303.5" >Nsfisis\W..</text> +</g> +<g > +<title><unknown> (2 samples, 0.07%)</title><rect x="1021.4" y="6997" width="0.8" height="15.0" fill="rgb(209,7,3)" rx="2" ry="2" /> +<text x="1024.37" y="7007.5" ></text> +</g> +<g > +<title>print_r (1 samples, 0.04%)</title><rect x="234.1" y="11141" width="0.5" height="15.0" fill="rgb(227,105,43)" rx="2" ry="2" /> +<text x="237.12" y="11151.5" ></text> +</g> +<g > +<title><unknown> (2 samples, 0.07%)</title><rect x="1021.4" y="6373" width="0.8" height="15.0" fill="rgb(207,170,46)" rx="2" ry="2" /> +<text x="1024.37" y="6383.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="634.7" y="9909" width="0.4" height="15.0" fill="rgb(245,19,36)" rx="2" ry="2" /> +<text x="637.68" y="9919.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (11 samples, 0.40%)</title><rect x="1063.4" y="10949" width="4.8" height="15.0" fill="rgb(213,222,29)" rx="2" ry="2" /> +<text x="1066.42" y="10959.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="740.0" y="10357" width="0.5" height="15.0" fill="rgb(233,199,10)" rx="2" ry="2" /> +<text x="743.02" y="10367.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="733.5" y="9573" width="0.5" height="15.0" fill="rgb(223,16,3)" rx="2" ry="2" /> +<text x="736.52" y="9583.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (1 samples, 0.04%)</title><rect x="337.3" y="10021" width="0.4" height="15.0" fill="rgb(211,226,33)" rx="2" ry="2" /> +<text x="340.30" y="10031.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="868.3" y="10821" width="0.5" height="15.0" fill="rgb(224,77,31)" rx="2" ry="2" /> +<text x="871.34" y="10831.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (4 samples, 0.15%)</title><rect x="351.6" y="9509" width="1.7" height="15.0" fill="rgb(215,46,45)" rx="2" ry="2" /> +<text x="354.60" y="9519.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="345.1" y="9653" width="0.4" height="15.0" fill="rgb(216,225,16)" rx="2" ry="2" /> +<text x="348.10" y="9663.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\MemInst::storeI64 (1 samples, 0.04%)</title><rect x="648.6" y="9893" width="0.4" height="15.0" fill="rgb(209,12,33)" rx="2" ry="2" /> +<text x="651.55" y="9903.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doStoreI32 (1 samples, 0.04%)</title><rect x="258.0" y="9685" width="0.4" height="15.0" fill="rgb(233,126,37)" rx="2" ry="2" /> +<text x="260.96" y="9695.5" ></text> +</g> +<g > +<title><unknown> (2 samples, 0.07%)</title><rect x="1021.4" y="7349" width="0.8" height="15.0" fill="rgb(249,132,24)" rx="2" ry="2" /> +<text x="1024.37" y="7359.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="859.7" y="10165" width="0.4" height="15.0" fill="rgb(219,160,10)" rx="2" ry="2" /> +<text x="862.67" y="10175.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (4 samples, 0.15%)</title><rect x="732.2" y="10261" width="1.8" height="15.0" fill="rgb(240,86,48)" rx="2" ry="2" /> +<text x="735.22" y="10271.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="398.4" y="9301" width="0.5" height="15.0" fill="rgb(245,220,22)" rx="2" ry="2" /> +<text x="401.42" y="9311.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (13 samples, 0.48%)</title><rect x="458.2" y="9685" width="5.7" height="15.0" fill="rgb(253,42,49)" rx="2" ry="2" /> +<text x="461.24" y="9695.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (3 samples, 0.11%)</title><rect x="741.3" y="11029" width="1.3" height="15.0" fill="rgb(226,22,8)" rx="2" ry="2" /> +<text x="744.32" y="11039.5" ></text> +</g> +<g > +<title><unknown> (1 samples, 0.04%)</title><rect x="857.5" y="10293" width="0.4" height="15.0" fill="rgb(218,91,21)" rx="2" ry="2" /> +<text x="860.50" y="10303.5" ></text> +</g> +<g > +<title><unknown> (1 samples, 0.04%)</title><rect x="1021.8" y="997" width="0.4" height="15.0" fill="rgb(245,194,16)" rx="2" ry="2" /> +<text x="1024.80" y="1007.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="1151.0" y="11109" width="0.4" height="15.0" fill="rgb(249,207,5)" rx="2" ry="2" /> +<text x="1153.98" y="11119.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (5 samples, 0.18%)</title><rect x="466.0" y="9909" width="2.2" height="15.0" fill="rgb(253,71,45)" rx="2" ry="2" /> +<text x="469.05" y="9919.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Stack::pushValue (1 samples, 0.04%)</title><rect x="326.9" y="9717" width="0.4" height="15.0" fill="rgb(250,134,2)" rx="2" ry="2" /> +<text x="329.89" y="9727.5" ></text> +</g> +<g > +<title><unknown> (2 samples, 0.07%)</title><rect x="1021.4" y="7109" width="0.8" height="15.0" fill="rgb(206,74,35)" rx="2" ry="2" /> +<text x="1024.37" y="7119.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (2 samples, 0.07%)</title><rect x="496.0" y="10389" width="0.8" height="15.0" fill="rgb(223,75,8)" rx="2" ry="2" /> +<text x="498.96" y="10399.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="1095.1" y="11061" width="0.4" height="15.0" fill="rgb(221,89,0)" rx="2" ry="2" /> +<text x="1098.06" y="11071.5" ></text> +</g> +<g > +<title><unknown> (1 samples, 0.04%)</title><rect x="1021.8" y="181" width="0.4" height="15.0" fill="rgb(206,191,22)" rx="2" ry="2" /> +<text x="1024.80" y="191.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (241 samples, 8.85%)</title><rect x="547.1" y="10149" width="104.5" height="15.0" fill="rgb(209,127,51)" rx="2" ry="2" /> +<text x="550.11" y="10159.5" >Nsfisis\Wadd..</text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="1151.0" y="11093" width="0.4" height="15.0" fill="rgb(252,106,13)" rx="2" ry="2" /> +<text x="1153.98" y="11103.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (4 samples, 0.15%)</title><rect x="411.4" y="9477" width="1.8" height="15.0" fill="rgb(253,117,40)" rx="2" ry="2" /> +<text x="414.43" y="9487.5" ></text> +</g> +<g > +<title><unknown> (2 samples, 0.07%)</title><rect x="1021.4" y="8565" width="0.8" height="15.0" fill="rgb(243,7,35)" rx="2" ry="2" /> +<text x="1024.37" y="8575.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (2 samples, 0.07%)</title><rect x="284.0" y="9669" width="0.8" height="15.0" fill="rgb(250,212,34)" rx="2" ry="2" /> +<text x="286.98" y="9679.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (2 samples, 0.07%)</title><rect x="467.3" y="9669" width="0.9" height="15.0" fill="rgb(220,174,12)" rx="2" ry="2" /> +<text x="470.35" y="9679.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="796.8" y="10501" width="0.4" height="15.0" fill="rgb(231,79,53)" rx="2" ry="2" /> +<text x="799.81" y="10511.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (2 samples, 0.07%)</title><rect x="734.0" y="10517" width="0.8" height="15.0" fill="rgb(251,151,35)" rx="2" ry="2" /> +<text x="736.95" y="10527.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="453.5" y="9397" width="0.4" height="15.0" fill="rgb(226,98,37)" rx="2" ry="2" /> +<text x="456.48" y="9407.5" ></text> +</g> +<g > +<title><unknown> (1 samples, 0.04%)</title><rect x="1021.8" y="581" width="0.4" height="15.0" fill="rgb(216,184,51)" rx="2" ry="2" /> +<text x="1024.80" y="591.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (1 samples, 0.04%)</title><rect x="734.4" y="10053" width="0.4" height="15.0" fill="rgb(236,27,3)" rx="2" ry="2" /> +<text x="737.39" y="10063.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (2 samples, 0.07%)</title><rect x="467.3" y="9557" width="0.9" height="15.0" fill="rgb(239,30,34)" rx="2" ry="2" /> +<text x="470.35" y="9567.5" ></text> +</g> +<g > +<title><unknown> (2 samples, 0.07%)</title><rect x="1021.4" y="10469" width="0.8" height="15.0" fill="rgb(227,221,6)" rx="2" ry="2" /> +<text x="1024.37" y="10479.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (1 samples, 0.04%)</title><rect x="869.2" y="10101" width="0.4" height="15.0" fill="rgb(211,137,7)" rx="2" ry="2" /> +<text x="872.21" y="10111.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::deactivateLabel (1 samples, 0.04%)</title><rect x="1070.8" y="11221" width="0.4" height="15.0" fill="rgb(228,146,21)" rx="2" ry="2" /> +<text x="1073.79" y="11231.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (2 samples, 0.07%)</title><rect x="726.6" y="9813" width="0.9" height="15.0" fill="rgb(238,50,40)" rx="2" ry="2" /> +<text x="729.58" y="9823.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (1 samples, 0.04%)</title><rect x="497.3" y="10149" width="0.4" height="15.0" fill="rgb(206,229,29)" rx="2" ry="2" /> +<text x="500.26" y="10159.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="359.0" y="9461" width="0.4" height="15.0" fill="rgb(243,199,33)" rx="2" ry="2" /> +<text x="361.97" y="9471.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (241 samples, 8.85%)</title><rect x="547.1" y="10437" width="104.5" height="15.0" fill="rgb(250,45,39)" rx="2" ry="2" /> +<text x="550.11" y="10447.5" >Nsfisis\Wadd..</text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (8 samples, 0.29%)</title><rect x="400.6" y="9733" width="3.5" height="15.0" fill="rgb(233,117,38)" rx="2" ry="2" /> +<text x="403.59" y="9743.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (4 samples, 0.15%)</title><rect x="742.6" y="10373" width="1.8" height="15.0" fill="rgb(210,103,0)" rx="2" ry="2" /> +<text x="745.62" y="10383.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="733.5" y="9173" width="0.5" height="15.0" fill="rgb(235,167,47)" rx="2" ry="2" /> +<text x="736.52" y="9183.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="867.9" y="10021" width="0.4" height="15.0" fill="rgb(251,188,49)" rx="2" ry="2" /> +<text x="870.91" y="10031.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Stack::push (1 samples, 0.04%)</title><rect x="1082.1" y="11205" width="0.4" height="15.0" fill="rgb(245,172,13)" rx="2" ry="2" /> +<text x="1085.06" y="11215.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="497.3" y="10085" width="0.4" height="15.0" fill="rgb(234,12,51)" rx="2" ry="2" /> +<text x="500.26" y="10095.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (3 samples, 0.11%)</title><rect x="289.6" y="9525" width="1.3" height="15.0" fill="rgb(238,73,42)" rx="2" ry="2" /> +<text x="292.61" y="9535.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Stack::pushValue (1 samples, 0.04%)</title><rect x="487.3" y="9685" width="0.4" height="15.0" fill="rgb(216,196,2)" rx="2" ry="2" /> +<text x="490.29" y="9695.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::deactivateLabel (2 samples, 0.07%)</title><rect x="381.9" y="9541" width="0.9" height="15.0" fill="rgb(251,52,37)" rx="2" ry="2" /> +<text x="384.95" y="9551.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="1071.2" y="11109" width="0.5" height="15.0" fill="rgb(225,86,3)" rx="2" ry="2" /> +<text x="1074.22" y="11119.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="709.2" y="9909" width="0.5" height="15.0" fill="rgb(254,38,37)" rx="2" ry="2" /> +<text x="712.24" y="9919.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (3 samples, 0.11%)</title><rect x="411.4" y="9205" width="1.3" height="15.0" fill="rgb(250,107,36)" rx="2" ry="2" /> +<text x="414.43" y="9215.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (1 samples, 0.04%)</title><rect x="485.1" y="9765" width="0.5" height="15.0" fill="rgb(247,123,36)" rx="2" ry="2" /> +<text x="488.12" y="9775.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="1152.7" y="11205" width="0.5" height="15.0" fill="rgb(245,92,23)" rx="2" ry="2" /> +<text x="1155.72" y="11215.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (2 samples, 0.07%)</title><rect x="486.9" y="9845" width="0.8" height="15.0" fill="rgb(211,55,3)" rx="2" ry="2" /> +<text x="489.86" y="9855.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="1067.8" y="10293" width="0.4" height="15.0" fill="rgb(215,100,6)" rx="2" ry="2" /> +<text x="1070.75" y="10303.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (9 samples, 0.33%)</title><rect x="466.0" y="9973" width="3.9" height="15.0" fill="rgb(233,214,37)" rx="2" ry="2" /> +<text x="469.05" y="9983.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (1 samples, 0.04%)</title><rect x="1050.0" y="11045" width="0.4" height="15.0" fill="rgb(208,96,34)" rx="2" ry="2" /> +<text x="1052.98" y="11055.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (108 samples, 3.97%)</title><rect x="748.3" y="10501" width="46.8" height="15.0" fill="rgb(226,228,9)" rx="2" ry="2" /> +<text x="751.26" y="10511.5" >Nsfi..</text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="811.1" y="10261" width="0.5" height="15.0" fill="rgb(245,143,7)" rx="2" ry="2" /> +<text x="814.12" y="10271.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doStoreI32 (1 samples, 0.04%)</title><rect x="1042.6" y="11189" width="0.4" height="15.0" fill="rgb(225,42,33)" rx="2" ry="2" /> +<text x="1045.61" y="11199.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="733.5" y="8581" width="0.5" height="15.0" fill="rgb(243,73,18)" rx="2" ry="2" /> +<text x="736.52" y="8591.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Num::I32 (1 samples, 0.04%)</title><rect x="140.5" y="11141" width="0.4" height="15.0" fill="rgb(227,224,34)" rx="2" ry="2" /> +<text x="143.48" y="11151.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (2 samples, 0.07%)</title><rect x="1141.9" y="11013" width="0.8" height="15.0" fill="rgb(227,83,11)" rx="2" ry="2" /> +<text x="1144.88" y="11023.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="740.9" y="10517" width="0.4" height="15.0" fill="rgb(214,34,45)" rx="2" ry="2" /> +<text x="743.89" y="10527.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="439.2" y="9637" width="0.4" height="15.0" fill="rgb(241,116,7)" rx="2" ry="2" /> +<text x="442.17" y="9647.5" ></text> +</g> +<g > +<title><unknown> (1 samples, 0.04%)</title><rect x="1021.8" y="1333" width="0.4" height="15.0" fill="rgb(229,57,47)" rx="2" ry="2" /> +<text x="1024.80" y="1343.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (2 samples, 0.07%)</title><rect x="424.0" y="9157" width="0.9" height="15.0" fill="rgb(243,179,34)" rx="2" ry="2" /> +<text x="427.00" y="9167.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="261.0" y="9461" width="0.4" height="15.0" fill="rgb(239,173,52)" rx="2" ry="2" /> +<text x="264.00" y="9471.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="359.0" y="9621" width="0.4" height="15.0" fill="rgb(212,16,28)" rx="2" ry="2" /> +<text x="361.97" y="9631.5" ></text> +</g> +<g > +<title><unknown> (2 samples, 0.07%)</title><rect x="1021.4" y="7893" width="0.8" height="15.0" fill="rgb(230,27,15)" rx="2" ry="2" /> +<text x="1024.37" y="7903.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (241 samples, 8.85%)</title><rect x="547.1" y="10245" width="104.5" height="15.0" fill="rgb(226,18,44)" rx="2" ry="2" /> +<text x="550.11" y="10255.5" >Nsfisis\Wadd..</text> +</g> +<g > +<title><unknown> (2 samples, 0.07%)</title><rect x="1021.4" y="10629" width="0.8" height="15.0" fill="rgb(216,123,41)" rx="2" ry="2" /> +<text x="1024.37" y="10639.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="470.4" y="9893" width="0.4" height="15.0" fill="rgb(243,52,17)" rx="2" ry="2" /> +<text x="473.38" y="9903.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="398.4" y="9477" width="0.5" height="15.0" fill="rgb(254,23,40)" rx="2" ry="2" /> +<text x="401.42" y="9487.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (30 samples, 1.10%)</title><rect x="758.7" y="10005" width="13.0" height="15.0" fill="rgb(219,33,28)" rx="2" ry="2" /> +<text x="761.66" y="10015.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Stack::pushI32 (1 samples, 0.04%)</title><rect x="399.3" y="9653" width="0.4" height="15.0" fill="rgb(254,168,42)" rx="2" ry="2" /> +<text x="402.29" y="9663.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (241 samples, 8.85%)</title><rect x="547.1" y="10165" width="104.5" height="15.0" fill="rgb(228,175,33)" rx="2" ry="2" /> +<text x="550.11" y="10175.5" >Nsfisis\Wadd..</text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (7 samples, 0.26%)</title><rect x="802.4" y="10389" width="3.1" height="15.0" fill="rgb(242,77,29)" rx="2" ry="2" /> +<text x="805.45" y="10399.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (13 samples, 0.48%)</title><rect x="421.8" y="9493" width="5.7" height="15.0" fill="rgb(211,158,0)" rx="2" ry="2" /> +<text x="424.83" y="9503.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (2 samples, 0.07%)</title><rect x="453.9" y="9733" width="0.9" height="15.0" fill="rgb(220,78,38)" rx="2" ry="2" /> +<text x="456.91" y="9743.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (6 samples, 0.22%)</title><rect x="857.9" y="10293" width="2.6" height="15.0" fill="rgb(252,225,0)" rx="2" ry="2" /> +<text x="860.94" y="10303.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="870.1" y="9557" width="0.4" height="15.0" fill="rgb(210,189,3)" rx="2" ry="2" /> +<text x="873.07" y="9567.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::deactivateFrame (1 samples, 0.04%)</title><rect x="866.2" y="10325" width="0.4" height="15.0" fill="rgb(228,164,38)" rx="2" ry="2" /> +<text x="869.17" y="10335.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="738.3" y="10309" width="0.4" height="15.0" fill="rgb(208,226,53)" rx="2" ry="2" /> +<text x="741.29" y="10319.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (1 samples, 0.04%)</title><rect x="469.9" y="9893" width="0.5" height="15.0" fill="rgb(217,138,9)" rx="2" ry="2" /> +<text x="472.95" y="9903.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (3 samples, 0.11%)</title><rect x="492.5" y="10453" width="1.3" height="15.0" fill="rgb(217,155,3)" rx="2" ry="2" /> +<text x="495.49" y="10463.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (2 samples, 0.07%)</title><rect x="239.3" y="10901" width="0.9" height="15.0" fill="rgb(252,127,46)" rx="2" ry="2" /> +<text x="242.32" y="10911.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::invokeByFuncAddr (7 samples, 0.26%)</title><rect x="735.3" y="10693" width="3.0" height="15.0" fill="rgb(223,213,38)" rx="2" ry="2" /> +<text x="738.25" y="10703.5" ></text> +</g> +<g > +<title><unknown> (1 samples, 0.04%)</title><rect x="726.1" y="9877" width="0.5" height="15.0" fill="rgb(210,72,1)" rx="2" ry="2" /> +<text x="729.15" y="9887.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="867.9" y="10709" width="0.4" height="15.0" fill="rgb(207,146,14)" rx="2" ry="2" /> +<text x="870.91" y="10719.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="373.3" y="9461" width="0.4" height="15.0" fill="rgb(242,161,38)" rx="2" ry="2" /> +<text x="376.28" y="9471.5" ></text> +</g> +<g > +<title><unknown> (1 samples, 0.04%)</title><rect x="1021.8" y="5637" width="0.4" height="15.0" fill="rgb(224,20,38)" rx="2" ry="2" /> +<text x="1024.80" y="5647.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="733.5" y="8741" width="0.5" height="15.0" fill="rgb(216,126,27)" rx="2" ry="2" /> +<text x="736.52" y="8751.5" ></text> +</g> +<g > +<title><unknown> (2 samples, 0.07%)</title><rect x="1021.4" y="10053" width="0.8" height="15.0" fill="rgb(249,116,8)" rx="2" ry="2" /> +<text x="1024.37" y="10063.5" ></text> +</g> +<g > +<title><unknown> (1 samples, 0.04%)</title><rect x="1021.8" y="4005" width="0.4" height="15.0" fill="rgb(254,166,30)" rx="2" ry="2" /> +<text x="1024.80" y="4015.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="265.3" y="9397" width="0.5" height="15.0" fill="rgb(210,24,43)" rx="2" ry="2" /> +<text x="268.33" y="9407.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (1 samples, 0.04%)</title><rect x="331.2" y="9573" width="0.5" height="15.0" fill="rgb(244,171,48)" rx="2" ry="2" /> +<text x="334.23" y="9583.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="733.5" y="9861" width="0.5" height="15.0" fill="rgb(234,106,6)" rx="2" ry="2" /> +<text x="736.52" y="9871.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (4 samples, 0.15%)</title><rect x="732.2" y="10181" width="1.8" height="15.0" fill="rgb(236,226,37)" rx="2" ry="2" /> +<text x="735.22" y="10191.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="1041.7" y="11093" width="0.5" height="15.0" fill="rgb(219,224,21)" rx="2" ry="2" /> +<text x="1044.74" y="11103.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="668.1" y="9669" width="0.4" height="15.0" fill="rgb(216,3,33)" rx="2" ry="2" /> +<text x="671.06" y="9679.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="742.6" y="10101" width="0.5" height="15.0" fill="rgb(254,176,8)" rx="2" ry="2" /> +<text x="745.62" y="10111.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (3 samples, 0.11%)</title><rect x="529.8" y="10277" width="1.3" height="15.0" fill="rgb(208,12,37)" rx="2" ry="2" /> +<text x="532.77" y="10287.5" ></text> +</g> +<g > +<title><unknown> (1 samples, 0.04%)</title><rect x="1021.8" y="2661" width="0.4" height="15.0" fill="rgb(220,136,50)" rx="2" ry="2" /> +<text x="1024.80" y="2671.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (2 samples, 0.07%)</title><rect x="453.9" y="9637" width="0.9" height="15.0" fill="rgb(224,183,13)" rx="2" ry="2" /> +<text x="456.91" y="9647.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (1 samples, 0.04%)</title><rect x="359.0" y="9525" width="0.4" height="15.0" fill="rgb(238,178,51)" rx="2" ry="2" /> +<text x="361.97" y="9535.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (5 samples, 0.18%)</title><rect x="868.8" y="10341" width="2.1" height="15.0" fill="rgb(227,186,48)" rx="2" ry="2" /> +<text x="871.77" y="10351.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="318.2" y="9413" width="0.5" height="15.0" fill="rgb(237,25,53)" rx="2" ry="2" /> +<text x="321.22" y="9423.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="1071.7" y="11013" width="0.4" height="15.0" fill="rgb(229,42,26)" rx="2" ry="2" /> +<text x="1074.65" y="11023.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (241 samples, 8.85%)</title><rect x="547.1" y="10469" width="104.5" height="15.0" fill="rgb(207,97,42)" rx="2" ry="2" /> +<text x="550.11" y="10479.5" >Nsfisis\Wadd..</text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (184 samples, 6.76%)</title><rect x="652.5" y="10485" width="79.7" height="15.0" fill="rgb(218,227,25)" rx="2" ry="2" /> +<text x="655.45" y="10495.5" >Nsfisis\W..</text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (2 samples, 0.07%)</title><rect x="532.8" y="10149" width="0.9" height="15.0" fill="rgb(254,17,23)" rx="2" ry="2" /> +<text x="535.81" y="10159.5" ></text> +</g> +<g > +<title><unknown> (2 samples, 0.07%)</title><rect x="1021.4" y="7333" width="0.8" height="15.0" fill="rgb(246,208,10)" rx="2" ry="2" /> +<text x="1024.37" y="7343.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="404.9" y="9557" width="0.5" height="15.0" fill="rgb(243,100,39)" rx="2" ry="2" /> +<text x="407.92" y="9567.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="238.9" y="10133" width="0.4" height="15.0" fill="rgb(223,109,40)" rx="2" ry="2" /> +<text x="241.89" y="10143.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (1 samples, 0.04%)</title><rect x="1151.0" y="11141" width="0.4" height="15.0" fill="rgb(231,59,26)" rx="2" ry="2" /> +<text x="1153.98" y="11151.5" ></text> +</g> +<g > +<title><unknown> (1 samples, 0.04%)</title><rect x="1021.8" y="85" width="0.4" height="15.0" fill="rgb(241,18,15)" rx="2" ry="2" /> +<text x="1024.80" y="95.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (12 samples, 0.44%)</title><rect x="321.3" y="9589" width="5.2" height="15.0" fill="rgb(217,55,13)" rx="2" ry="2" /> +<text x="324.26" y="9599.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (14 samples, 0.51%)</title><rect x="517.2" y="10213" width="6.1" height="15.0" fill="rgb(224,116,14)" rx="2" ry="2" /> +<text x="520.20" y="10223.5" ></text> +</g> +<g > +<title><unknown> (2 samples, 0.07%)</title><rect x="1021.4" y="11045" width="0.8" height="15.0" fill="rgb(253,56,24)" rx="2" ry="2" /> +<text x="1024.37" y="11055.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Stack::push (1 samples, 0.04%)</title><rect x="291.3" y="9573" width="0.5" height="15.0" fill="rgb(221,19,15)" rx="2" ry="2" /> +<text x="294.34" y="9583.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="866.6" y="10453" width="0.4" height="15.0" fill="rgb(234,65,7)" rx="2" ry="2" /> +<text x="869.61" y="10463.5" ></text> +</g> +<g > +<title><unknown> (2 samples, 0.07%)</title><rect x="1021.4" y="8661" width="0.8" height="15.0" fill="rgb(229,162,29)" rx="2" ry="2" /> +<text x="1024.37" y="8671.5" ></text> +</g> +<g > +<title><unknown> (2 samples, 0.07%)</title><rect x="1021.4" y="8101" width="0.8" height="15.0" fill="rgb(230,73,53)" rx="2" ry="2" /> +<text x="1024.37" y="8111.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (1 samples, 0.04%)</title><rect x="739.6" y="10341" width="0.4" height="15.0" fill="rgb(212,96,4)" rx="2" ry="2" /> +<text x="742.59" y="10351.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="1050.4" y="11029" width="0.4" height="15.0" fill="rgb(206,212,43)" rx="2" ry="2" /> +<text x="1053.41" y="11039.5" ></text> +</g> +<g > +<title><unknown> (2 samples, 0.07%)</title><rect x="1021.4" y="6389" width="0.8" height="15.0" fill="rgb(238,9,10)" rx="2" ry="2" /> +<text x="1024.37" y="6399.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (2 samples, 0.07%)</title><rect x="526.7" y="10005" width="0.9" height="15.0" fill="rgb(230,48,31)" rx="2" ry="2" /> +<text x="529.74" y="10015.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (1 samples, 0.04%)</title><rect x="866.6" y="10405" width="0.4" height="15.0" fill="rgb(221,37,50)" rx="2" ry="2" /> +<text x="869.61" y="10415.5" ></text> +</g> +<g > +<title><unknown> (1 samples, 0.04%)</title><rect x="320.0" y="9493" width="0.4" height="15.0" fill="rgb(244,120,28)" rx="2" ry="2" /> +<text x="322.96" y="9503.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::invokeByFuncAddr (191 samples, 7.02%)</title><rect x="652.0" y="10693" width="82.8" height="15.0" fill="rgb(220,101,18)" rx="2" ry="2" /> +<text x="655.02" y="10703.5" >Nsfisis\W..</text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="444.8" y="9525" width="0.4" height="15.0" fill="rgb(251,171,32)" rx="2" ry="2" /> +<text x="447.81" y="9535.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="668.1" y="9749" width="0.4" height="15.0" fill="rgb(237,157,54)" rx="2" ry="2" /> +<text x="671.06" y="9759.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (2 samples, 0.07%)</title><rect x="438.3" y="9733" width="0.9" height="15.0" fill="rgb(215,117,15)" rx="2" ry="2" /> +<text x="441.30" y="9743.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (2 samples, 0.07%)</title><rect x="496.0" y="10341" width="0.8" height="15.0" fill="rgb(207,91,5)" rx="2" ry="2" /> +<text x="498.96" y="10351.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (1 samples, 0.04%)</title><rect x="536.3" y="9909" width="0.4" height="15.0" fill="rgb(206,8,27)" rx="2" ry="2" /> +<text x="539.27" y="9919.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (192 samples, 7.05%)</title><rect x="252.8" y="10021" width="83.2" height="15.0" fill="rgb(232,138,35)" rx="2" ry="2" /> +<text x="255.76" y="10031.5" >Nsfisis\W..</text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::deactivateLabel (1 samples, 0.04%)</title><rect x="692.3" y="10069" width="0.5" height="15.0" fill="rgb(232,140,26)" rx="2" ry="2" /> +<text x="695.34" y="10079.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="248.0" y="10085" width="0.4" height="15.0" fill="rgb(205,19,48)" rx="2" ry="2" /> +<text x="250.99" y="10095.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (5 samples, 0.18%)</title><rect x="479.9" y="9749" width="2.2" height="15.0" fill="rgb(221,148,42)" rx="2" ry="2" /> +<text x="482.92" y="9759.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doStoreI64 (1 samples, 0.04%)</title><rect x="503.3" y="10357" width="0.5" height="15.0" fill="rgb(219,193,23)" rx="2" ry="2" /> +<text x="506.33" y="10367.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (2 samples, 0.07%)</title><rect x="269.7" y="9541" width="0.8" height="15.0" fill="rgb(223,142,10)" rx="2" ry="2" /> +<text x="272.67" y="9551.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (3 samples, 0.11%)</title><rect x="408.4" y="9573" width="1.3" height="15.0" fill="rgb(242,66,1)" rx="2" ry="2" /> +<text x="411.39" y="9583.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (8 samples, 0.29%)</title><rect x="460.4" y="9541" width="3.5" height="15.0" fill="rgb(225,93,45)" rx="2" ry="2" /> +<text x="463.41" y="9551.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (13 samples, 0.48%)</title><rect x="421.8" y="9541" width="5.7" height="15.0" fill="rgb(224,156,22)" rx="2" ry="2" /> +<text x="424.83" y="9551.5" ></text> +</g> +<g > +<title><unknown> (1 samples, 0.04%)</title><rect x="1021.8" y="4485" width="0.4" height="15.0" fill="rgb(229,69,36)" rx="2" ry="2" /> +<text x="1024.80" y="4495.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (42 samples, 1.54%)</title><rect x="753.9" y="10133" width="18.2" height="15.0" fill="rgb(216,187,44)" rx="2" ry="2" /> +<text x="756.89" y="10143.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (4 samples, 0.15%)</title><rect x="304.3" y="9525" width="1.8" height="15.0" fill="rgb(221,215,44)" rx="2" ry="2" /> +<text x="307.35" y="9535.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (2 samples, 0.07%)</title><rect x="277.0" y="9717" width="0.9" height="15.0" fill="rgb(251,72,23)" rx="2" ry="2" /> +<text x="280.04" y="9727.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (2 samples, 0.07%)</title><rect x="734.0" y="10405" width="0.8" height="15.0" fill="rgb(227,139,31)" rx="2" ry="2" /> +<text x="736.95" y="10415.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (80 samples, 2.94%)</title><rect x="292.6" y="9813" width="34.7" height="15.0" fill="rgb(254,185,53)" rx="2" ry="2" /> +<text x="295.65" y="9823.5" >Ns..</text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="739.2" y="10261" width="0.4" height="15.0" fill="rgb(206,148,28)" rx="2" ry="2" /> +<text x="742.16" y="10271.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (1 samples, 0.04%)</title><rect x="483.4" y="9941" width="0.4" height="15.0" fill="rgb(209,16,38)" rx="2" ry="2" /> +<text x="486.39" y="9951.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="734.4" y="10149" width="0.4" height="15.0" fill="rgb(218,189,35)" rx="2" ry="2" /> +<text x="737.39" y="10159.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (5 samples, 0.18%)</title><rect x="442.2" y="9525" width="2.2" height="15.0" fill="rgb(247,48,9)" rx="2" ry="2" /> +<text x="445.20" y="9535.5" ></text> +</g> +<g > +<title><unknown> (1 samples, 0.04%)</title><rect x="637.3" y="9893" width="0.4" height="15.0" fill="rgb(208,152,30)" rx="2" ry="2" /> +<text x="640.28" y="9903.5" ></text> +</g> +<g > +<title><unknown> (2 samples, 0.07%)</title><rect x="1021.4" y="6229" width="0.8" height="15.0" fill="rgb(234,196,3)" rx="2" ry="2" /> +<text x="1024.37" y="6239.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="465.2" y="9925" width="0.4" height="15.0" fill="rgb(221,14,28)" rx="2" ry="2" /> +<text x="468.18" y="9935.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (6 samples, 0.22%)</title><rect x="424.9" y="9349" width="2.6" height="15.0" fill="rgb(226,41,31)" rx="2" ry="2" /> +<text x="427.86" y="9359.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="442.6" y="8789" width="0.5" height="15.0" fill="rgb(205,7,46)" rx="2" ry="2" /> +<text x="445.64" y="8799.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (163 samples, 5.99%)</title><rect x="797.2" y="10549" width="70.7" height="15.0" fill="rgb(232,99,27)" rx="2" ry="2" /> +<text x="800.24" y="10559.5" >Nsfisis..</text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="489.0" y="10037" width="0.5" height="15.0" fill="rgb(225,181,33)" rx="2" ry="2" /> +<text x="492.02" y="10047.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="244.5" y="10421" width="0.5" height="15.0" fill="rgb(252,115,45)" rx="2" ry="2" /> +<text x="247.53" y="10431.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="351.2" y="9637" width="0.4" height="15.0" fill="rgb(211,10,9)" rx="2" ry="2" /> +<text x="354.17" y="9647.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="652.0" y="10421" width="0.5" height="15.0" fill="rgb(229,6,14)" rx="2" ry="2" /> +<text x="655.02" y="10431.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (1 samples, 0.04%)</title><rect x="483.8" y="9701" width="0.5" height="15.0" fill="rgb(210,78,28)" rx="2" ry="2" /> +<text x="486.82" y="9711.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="1067.8" y="10517" width="0.4" height="15.0" fill="rgb(213,68,37)" rx="2" ry="2" /> +<text x="1070.75" y="10527.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (7 samples, 0.26%)</title><rect x="492.1" y="10485" width="3.0" height="15.0" fill="rgb(220,185,38)" rx="2" ry="2" /> +<text x="495.06" y="10495.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="1036.1" y="11045" width="0.4" height="15.0" fill="rgb(249,221,23)" rx="2" ry="2" /> +<text x="1039.11" y="11055.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (1 samples, 0.04%)</title><rect x="733.5" y="8677" width="0.5" height="15.0" fill="rgb(240,118,27)" rx="2" ry="2" /> +<text x="736.52" y="8687.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (3 samples, 0.11%)</title><rect x="492.5" y="10373" width="1.3" height="15.0" fill="rgb(221,202,53)" rx="2" ry="2" /> +<text x="495.49" y="10383.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="453.5" y="9621" width="0.4" height="15.0" fill="rgb(217,179,16)" rx="2" ry="2" /> +<text x="456.48" y="9631.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="536.3" y="9861" width="0.4" height="15.0" fill="rgb(221,3,1)" rx="2" ry="2" /> +<text x="539.27" y="9871.5" ></text> +</g> +<g > +<title><unknown> (1 samples, 0.04%)</title><rect x="1021.8" y="1941" width="0.4" height="15.0" fill="rgb(234,177,23)" rx="2" ry="2" /> +<text x="1024.80" y="1951.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (2 samples, 0.07%)</title><rect x="359.4" y="9669" width="0.9" height="15.0" fill="rgb(230,228,6)" rx="2" ry="2" /> +<text x="362.40" y="9679.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="443.1" y="8805" width="0.4" height="15.0" fill="rgb(247,192,2)" rx="2" ry="2" /> +<text x="446.07" y="8815.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="777.3" y="10197" width="0.4" height="15.0" fill="rgb(207,55,19)" rx="2" ry="2" /> +<text x="780.30" y="10207.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="238.9" y="10565" width="0.4" height="15.0" fill="rgb(217,156,42)" rx="2" ry="2" /> +<text x="241.89" y="10575.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="397.6" y="9461" width="0.4" height="15.0" fill="rgb(251,153,9)" rx="2" ry="2" /> +<text x="400.55" y="9471.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="365.0" y="9813" width="0.5" height="15.0" fill="rgb(230,161,41)" rx="2" ry="2" /> +<text x="368.04" y="9823.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="487.7" y="9749" width="0.5" height="15.0" fill="rgb(235,107,47)" rx="2" ry="2" /> +<text x="490.72" y="9759.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="546.7" y="10389" width="0.4" height="15.0" fill="rgb(245,43,6)" rx="2" ry="2" /> +<text x="549.68" y="10399.5" ></text> +</g> +<g > +<title><unknown> (1 samples, 0.04%)</title><rect x="1021.8" y="3445" width="0.4" height="15.0" fill="rgb(231,121,3)" rx="2" ry="2" /> +<text x="1024.80" y="3455.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="482.5" y="9685" width="0.5" height="15.0" fill="rgb(239,204,8)" rx="2" ry="2" /> +<text x="485.52" y="9695.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (3 samples, 0.11%)</title><rect x="442.2" y="9317" width="1.3" height="15.0" fill="rgb(237,10,46)" rx="2" ry="2" /> +<text x="445.20" y="9327.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="740.5" y="10373" width="0.4" height="15.0" fill="rgb(238,228,26)" rx="2" ry="2" /> +<text x="743.46" y="10383.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="852.7" y="10325" width="0.5" height="15.0" fill="rgb(246,200,0)" rx="2" ry="2" /> +<text x="855.73" y="10335.5" ></text> +</g> +<g > +<title><unknown> (2 samples, 0.07%)</title><rect x="1021.4" y="10613" width="0.8" height="15.0" fill="rgb(208,31,46)" rx="2" ry="2" /> +<text x="1024.37" y="10623.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="738.3" y="10469" width="0.4" height="15.0" fill="rgb(238,220,42)" rx="2" ry="2" /> +<text x="741.29" y="10479.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (3 samples, 0.11%)</title><rect x="442.2" y="8949" width="1.3" height="15.0" fill="rgb(250,7,45)" rx="2" ry="2" /> +<text x="445.20" y="8959.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (11 samples, 0.40%)</title><rect x="394.1" y="9605" width="4.8" height="15.0" fill="rgb(208,186,27)" rx="2" ry="2" /> +<text x="397.09" y="9615.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="1103.3" y="10981" width="0.4" height="15.0" fill="rgb(248,28,25)" rx="2" ry="2" /> +<text x="1106.30" y="10991.5" ></text> +</g> +<g > +<title><unknown> (1 samples, 0.04%)</title><rect x="1021.8" y="853" width="0.4" height="15.0" fill="rgb(239,27,17)" rx="2" ry="2" /> +<text x="1024.80" y="863.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="1168.8" y="11061" width="0.4" height="15.0" fill="rgb(220,141,49)" rx="2" ry="2" /> +<text x="1171.76" y="11071.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="238.9" y="10437" width="0.4" height="15.0" fill="rgb(237,75,20)" rx="2" ry="2" /> +<text x="241.89" y="10447.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (2 samples, 0.07%)</title><rect x="526.7" y="9941" width="0.9" height="15.0" fill="rgb(219,5,26)" rx="2" ry="2" /> +<text x="529.74" y="9951.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="738.3" y="10437" width="0.4" height="15.0" fill="rgb(254,178,28)" rx="2" ry="2" /> +<text x="741.29" y="10447.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (296 samples, 10.87%)</title><rect x="742.6" y="11077" width="128.3" height="15.0" fill="rgb(206,6,14)" rx="2" ry="2" /> +<text x="745.62" y="11087.5" >Nsfisis\Waddiwas..</text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="443.1" y="8453" width="0.4" height="15.0" fill="rgb(210,162,15)" rx="2" ry="2" /> +<text x="446.07" y="8463.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="325.6" y="9237" width="0.4" height="15.0" fill="rgb(231,93,33)" rx="2" ry="2" /> +<text x="328.59" y="9247.5" ></text> +</g> +<g > +<title><unknown> (2 samples, 0.07%)</title><rect x="1021.4" y="8053" width="0.8" height="15.0" fill="rgb(229,39,31)" rx="2" ry="2" /> +<text x="1024.37" y="8063.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (1 samples, 0.04%)</title><rect x="852.7" y="10277" width="0.5" height="15.0" fill="rgb(212,68,6)" rx="2" ry="2" /> +<text x="855.73" y="10287.5" ></text> +</g> +<g > +<title><unknown> (1 samples, 0.04%)</title><rect x="1155.8" y="11205" width="0.4" height="15.0" fill="rgb(218,192,18)" rx="2" ry="2" /> +<text x="1158.75" y="11215.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (2 samples, 0.07%)</title><rect x="1141.0" y="11141" width="0.9" height="15.0" fill="rgb(225,40,48)" rx="2" ry="2" /> +<text x="1144.01" y="11151.5" ></text> +</g> +<g > +<title><unknown> (2 samples, 0.07%)</title><rect x="1021.4" y="6117" width="0.8" height="15.0" fill="rgb(210,70,27)" rx="2" ry="2" /> +<text x="1024.37" y="6127.5" ></text> +</g> +<g > +<title><unknown> (1 samples, 0.04%)</title><rect x="1021.8" y="2021" width="0.4" height="15.0" fill="rgb(249,143,1)" rx="2" ry="2" /> +<text x="1024.80" y="2031.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (6 samples, 0.22%)</title><rect x="738.7" y="10821" width="2.6" height="15.0" fill="rgb(226,67,15)" rx="2" ry="2" /> +<text x="741.72" y="10831.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (36 samples, 1.32%)</title><rect x="349.4" y="9845" width="15.6" height="15.0" fill="rgb(241,45,52)" rx="2" ry="2" /> +<text x="352.43" y="9855.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (1 samples, 0.04%)</title><rect x="319.1" y="9589" width="0.4" height="15.0" fill="rgb(227,139,37)" rx="2" ry="2" /> +<text x="322.09" y="9599.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="345.1" y="9637" width="0.4" height="15.0" fill="rgb(245,38,27)" rx="2" ry="2" /> +<text x="348.10" y="9647.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doLoadI32 (3 samples, 0.11%)</title><rect x="1073.0" y="11221" width="1.3" height="15.0" fill="rgb(233,196,9)" rx="2" ry="2" /> +<text x="1075.95" y="11231.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\StackEntries\Value::__construct (1 samples, 0.04%)</title><rect x="1151.4" y="11221" width="0.5" height="15.0" fill="rgb(212,51,39)" rx="2" ry="2" /> +<text x="1154.42" y="11231.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (5 samples, 0.18%)</title><rect x="255.8" y="9749" width="2.2" height="15.0" fill="rgb(233,114,37)" rx="2" ry="2" /> +<text x="258.80" y="9759.5" ></text> +</g> +<g > +<title><unknown> (2 samples, 0.07%)</title><rect x="1021.4" y="9269" width="0.8" height="15.0" fill="rgb(254,215,29)" rx="2" ry="2" /> +<text x="1024.37" y="9279.5" ></text> +</g> +<g > +<title>print_r (1 samples, 0.04%)</title><rect x="1070.4" y="11205" width="0.4" height="15.0" fill="rgb(233,56,52)" rx="2" ry="2" /> +<text x="1073.35" y="11215.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="409.3" y="9109" width="0.4" height="15.0" fill="rgb(239,159,5)" rx="2" ry="2" /> +<text x="412.26" y="9119.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::deactivateLabel (1 samples, 0.04%)</title><rect x="284.0" y="9653" width="0.4" height="15.0" fill="rgb(253,161,25)" rx="2" ry="2" /> +<text x="286.98" y="9663.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="489.0" y="9957" width="0.5" height="15.0" fill="rgb(247,205,16)" rx="2" ry="2" /> +<text x="492.02" y="9967.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="668.1" y="9829" width="0.4" height="15.0" fill="rgb(236,193,47)" rx="2" ry="2" /> +<text x="671.06" y="9839.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="777.3" y="10245" width="0.4" height="15.0" fill="rgb(249,18,10)" rx="2" ry="2" /> +<text x="780.30" y="10255.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="737.9" y="10469" width="0.4" height="15.0" fill="rgb(209,92,44)" rx="2" ry="2" /> +<text x="740.85" y="10479.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (3 samples, 0.11%)</title><rect x="741.3" y="10805" width="1.3" height="15.0" fill="rgb(241,183,41)" rx="2" ry="2" /> +<text x="744.32" y="10815.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="870.1" y="8885" width="0.4" height="15.0" fill="rgb(252,87,11)" rx="2" ry="2" /> +<text x="873.07" y="8895.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Nums\I32::__construct (2 samples, 0.07%)</title><rect x="1129.3" y="11237" width="0.9" height="15.0" fill="rgb(248,83,5)" rx="2" ry="2" /> +<text x="1132.31" y="11247.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doStoreI64 (1 samples, 0.04%)</title><rect x="827.2" y="10261" width="0.4" height="15.0" fill="rgb(224,43,9)" rx="2" ry="2" /> +<text x="830.16" y="10271.5" ></text> +</g> +<g > +<title><unknown> (1 samples, 0.04%)</title><rect x="1021.8" y="2453" width="0.4" height="15.0" fill="rgb(217,125,49)" rx="2" ry="2" /> +<text x="1024.80" y="2463.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="733.5" y="9813" width="0.5" height="15.0" fill="rgb(247,29,45)" rx="2" ry="2" /> +<text x="736.52" y="9823.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="740.5" y="10565" width="0.4" height="15.0" fill="rgb(239,16,34)" rx="2" ry="2" /> +<text x="743.46" y="10575.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="318.2" y="9461" width="0.5" height="15.0" fill="rgb(215,190,18)" rx="2" ry="2" /> +<text x="321.22" y="9471.5" ></text> +</g> +<g > +<title><unknown> (1 samples, 0.04%)</title><rect x="746.1" y="10613" width="0.4" height="15.0" fill="rgb(222,131,18)" rx="2" ry="2" /> +<text x="749.09" y="10623.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="307.8" y="9381" width="0.5" height="15.0" fill="rgb(209,61,43)" rx="2" ry="2" /> +<text x="310.82" y="9391.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (35 samples, 1.29%)</title><rect x="302.2" y="9621" width="15.2" height="15.0" fill="rgb(216,28,50)" rx="2" ry="2" /> +<text x="305.18" y="9631.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="489.9" y="10229" width="0.4" height="15.0" fill="rgb(251,52,18)" rx="2" ry="2" /> +<text x="492.89" y="10239.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (1 samples, 0.04%)</title><rect x="318.7" y="9653" width="0.4" height="15.0" fill="rgb(241,35,26)" rx="2" ry="2" /> +<text x="321.66" y="9663.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\ControlFlowResult::Br (1 samples, 0.04%)</title><rect x="790.3" y="10133" width="0.4" height="15.0" fill="rgb(220,212,20)" rx="2" ry="2" /> +<text x="793.31" y="10143.5" ></text> +</g> +<g > +<title><unknown> (2 samples, 0.07%)</title><rect x="1021.4" y="8405" width="0.8" height="15.0" fill="rgb(233,150,20)" rx="2" ry="2" /> +<text x="1024.37" y="8415.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (3 samples, 0.11%)</title><rect x="317.4" y="9637" width="1.3" height="15.0" fill="rgb(209,164,1)" rx="2" ry="2" /> +<text x="320.35" y="9647.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="780.3" y="10245" width="0.5" height="15.0" fill="rgb(230,57,22)" rx="2" ry="2" /> +<text x="783.34" y="10255.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (3 samples, 0.11%)</title><rect x="717.5" y="9605" width="1.3" height="15.0" fill="rgb(237,10,25)" rx="2" ry="2" /> +<text x="720.48" y="9615.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (6 samples, 0.22%)</title><rect x="314.8" y="9509" width="2.6" height="15.0" fill="rgb(226,4,36)" rx="2" ry="2" /> +<text x="317.75" y="9519.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (3 samples, 0.11%)</title><rect x="385.0" y="9349" width="1.3" height="15.0" fill="rgb(205,12,32)" rx="2" ry="2" /> +<text x="387.98" y="9359.5" ></text> +</g> +<g > +<title>count (1 samples, 0.04%)</title><rect x="634.2" y="9893" width="0.5" height="15.0" fill="rgb(231,25,13)" rx="2" ry="2" /> +<text x="637.25" y="9903.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="336.9" y="9989" width="0.4" height="15.0" fill="rgb(219,105,42)" rx="2" ry="2" /> +<text x="339.86" y="9999.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (4 samples, 0.15%)</title><rect x="304.3" y="9509" width="1.8" height="15.0" fill="rgb(247,185,14)" rx="2" ry="2" /> +<text x="307.35" y="9519.5" ></text> +</g> +<g > +<title><unknown> (1 samples, 0.04%)</title><rect x="1021.8" y="421" width="0.4" height="15.0" fill="rgb(245,168,50)" rx="2" ry="2" /> +<text x="1024.80" y="431.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (3 samples, 0.11%)</title><rect x="676.7" y="9877" width="1.3" height="15.0" fill="rgb(251,200,7)" rx="2" ry="2" /> +<text x="679.73" y="9887.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="668.1" y="9701" width="0.4" height="15.0" fill="rgb(214,183,35)" rx="2" ry="2" /> +<text x="671.06" y="9711.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (1 samples, 0.04%)</title><rect x="740.9" y="10629" width="0.4" height="15.0" fill="rgb(214,128,5)" rx="2" ry="2" /> +<text x="743.89" y="10639.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Stack::popI32 (1 samples, 0.04%)</title><rect x="358.5" y="9461" width="0.5" height="15.0" fill="rgb(243,114,19)" rx="2" ry="2" /> +<text x="361.54" y="9471.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (1 samples, 0.04%)</title><rect x="469.5" y="9717" width="0.4" height="15.0" fill="rgb(234,197,17)" rx="2" ry="2" /> +<text x="472.52" y="9727.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (8 samples, 0.29%)</title><rect x="773.0" y="10085" width="3.4" height="15.0" fill="rgb(239,96,38)" rx="2" ry="2" /> +<text x="775.97" y="10095.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (14 samples, 0.51%)</title><rect x="685.4" y="10021" width="6.1" height="15.0" fill="rgb(246,66,41)" rx="2" ry="2" /> +<text x="688.40" y="10031.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="777.3" y="10389" width="0.4" height="15.0" fill="rgb(240,36,13)" rx="2" ry="2" /> +<text x="780.30" y="10399.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\StackEntry::Value (3 samples, 0.11%)</title><rect x="650.3" y="9893" width="1.3" height="15.0" fill="rgb(218,195,30)" rx="2" ry="2" /> +<text x="653.29" y="9903.5" ></text> +</g> +<g > +<title><unknown> (2 samples, 0.07%)</title><rect x="1021.4" y="6949" width="0.8" height="15.0" fill="rgb(244,165,5)" rx="2" ry="2" /> +<text x="1024.37" y="6959.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (3 samples, 0.11%)</title><rect x="402.8" y="9541" width="1.3" height="15.0" fill="rgb(223,159,15)" rx="2" ry="2" /> +<text x="405.76" y="9551.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="409.3" y="9365" width="0.4" height="15.0" fill="rgb(230,168,50)" rx="2" ry="2" /> +<text x="412.26" y="9375.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="345.1" y="9829" width="0.4" height="15.0" fill="rgb(242,69,48)" rx="2" ry="2" /> +<text x="348.10" y="9839.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="284.0" y="9621" width="0.4" height="15.0" fill="rgb(241,125,17)" rx="2" ry="2" /> +<text x="286.98" y="9631.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (1 samples, 0.04%)</title><rect x="503.3" y="10469" width="0.5" height="15.0" fill="rgb(233,92,26)" rx="2" ry="2" /> +<text x="506.33" y="10479.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="740.9" y="10805" width="0.4" height="15.0" fill="rgb(221,201,13)" rx="2" ry="2" /> +<text x="743.89" y="10815.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="484.3" y="9733" width="0.4" height="15.0" fill="rgb(237,35,20)" rx="2" ry="2" /> +<text x="487.25" y="9743.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (1 samples, 0.04%)</title><rect x="325.2" y="9301" width="0.4" height="15.0" fill="rgb(223,182,11)" rx="2" ry="2" /> +<text x="328.16" y="9311.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="777.3" y="10261" width="0.4" height="15.0" fill="rgb(229,212,54)" rx="2" ry="2" /> +<text x="780.30" y="10271.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (3 samples, 0.11%)</title><rect x="542.3" y="10245" width="1.3" height="15.0" fill="rgb(223,157,13)" rx="2" ry="2" /> +<text x="545.34" y="10255.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="397.6" y="9509" width="0.4" height="15.0" fill="rgb(205,82,0)" rx="2" ry="2" /> +<text x="400.55" y="9519.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (3 samples, 0.11%)</title><rect x="408.4" y="9605" width="1.3" height="15.0" fill="rgb(224,224,44)" rx="2" ry="2" /> +<text x="411.39" y="9615.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (1 samples, 0.04%)</title><rect x="668.1" y="10021" width="0.4" height="15.0" fill="rgb(231,0,17)" rx="2" ry="2" /> +<text x="671.06" y="10031.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (1 samples, 0.04%)</title><rect x="340.8" y="9893" width="0.4" height="15.0" fill="rgb(234,200,10)" rx="2" ry="2" /> +<text x="343.76" y="9903.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (3 samples, 0.11%)</title><rect x="717.5" y="9829" width="1.3" height="15.0" fill="rgb(226,83,3)" rx="2" ry="2" /> +<text x="720.48" y="9839.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (1 samples, 0.04%)</title><rect x="503.3" y="10485" width="0.5" height="15.0" fill="rgb(232,6,35)" rx="2" ry="2" /> +<text x="506.33" y="10495.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="744.4" y="10229" width="0.4" height="15.0" fill="rgb(206,220,0)" rx="2" ry="2" /> +<text x="747.36" y="10239.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (191 samples, 7.02%)</title><rect x="652.0" y="10661" width="82.8" height="15.0" fill="rgb(234,78,35)" rx="2" ry="2" /> +<text x="655.02" y="10671.5" >Nsfisis\W..</text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (60 samples, 2.20%)</title><rect x="1043.0" y="11189" width="26.1" height="15.0" fill="rgb(236,120,4)" rx="2" ry="2" /> +<text x="1046.04" y="11199.5" >N..</text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (1 samples, 0.04%)</title><rect x="271.4" y="9669" width="0.4" height="15.0" fill="rgb(249,13,1)" rx="2" ry="2" /> +<text x="274.40" y="9679.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (1 samples, 0.04%)</title><rect x="331.2" y="9589" width="0.5" height="15.0" fill="rgb(241,56,21)" rx="2" ry="2" /> +<text x="334.23" y="9599.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="870.1" y="7781" width="0.4" height="15.0" fill="rgb(206,83,1)" rx="2" ry="2" /> +<text x="873.07" y="7791.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="869.2" y="10021" width="0.4" height="15.0" fill="rgb(206,180,21)" rx="2" ry="2" /> +<text x="872.21" y="10031.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="325.6" y="9189" width="0.4" height="15.0" fill="rgb(212,82,43)" rx="2" ry="2" /> +<text x="328.59" y="9199.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (3 samples, 0.11%)</title><rect x="380.6" y="9493" width="1.3" height="15.0" fill="rgb(207,23,30)" rx="2" ry="2" /> +<text x="383.65" y="9503.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (19 samples, 0.70%)</title><rect x="495.1" y="10533" width="8.2" height="15.0" fill="rgb(238,95,43)" rx="2" ry="2" /> +<text x="498.09" y="10543.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (94 samples, 3.45%)</title><rect x="691.5" y="10085" width="40.7" height="15.0" fill="rgb(214,58,18)" rx="2" ry="2" /> +<text x="694.47" y="10095.5" >Nsf..</text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (4 samples, 0.15%)</title><rect x="411.4" y="9493" width="1.8" height="15.0" fill="rgb(213,91,33)" rx="2" ry="2" /> +<text x="414.43" y="9503.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::deactivateLabel (1 samples, 0.04%)</title><rect x="663.7" y="10037" width="0.5" height="15.0" fill="rgb(230,197,44)" rx="2" ry="2" /> +<text x="666.73" y="10047.5" ></text> +</g> +<g > +<title><unknown> (2 samples, 0.07%)</title><rect x="1021.4" y="9813" width="0.8" height="15.0" fill="rgb(222,7,27)" rx="2" ry="2" /> +<text x="1024.37" y="9823.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (83 samples, 3.05%)</title><rect x="503.8" y="10485" width="35.9" height="15.0" fill="rgb(238,113,26)" rx="2" ry="2" /> +<text x="506.76" y="10495.5" >Nsf..</text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (1 samples, 0.04%)</title><rect x="868.3" y="10789" width="0.5" height="15.0" fill="rgb(242,203,42)" rx="2" ry="2" /> +<text x="871.34" y="10799.5" ></text> +</g> +<g > +<title><unknown> (2 samples, 0.07%)</title><rect x="1021.4" y="6837" width="0.8" height="15.0" fill="rgb(214,148,25)" rx="2" ry="2" /> +<text x="1024.37" y="6847.5" ></text> +</g> +<g > +<title><unknown> (2 samples, 0.07%)</title><rect x="1021.4" y="9477" width="0.8" height="15.0" fill="rgb(229,124,22)" rx="2" ry="2" /> +<text x="1024.37" y="9487.5" ></text> +</g> +<g > +<title><unknown> (1 samples, 0.04%)</title><rect x="1021.8" y="341" width="0.4" height="15.0" fill="rgb(243,10,30)" rx="2" ry="2" /> +<text x="1024.80" y="351.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (14 samples, 0.51%)</title><rect x="431.8" y="9829" width="6.1" height="15.0" fill="rgb(249,144,6)" rx="2" ry="2" /> +<text x="434.80" y="9839.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (108 samples, 3.97%)</title><rect x="748.3" y="10581" width="46.8" height="15.0" fill="rgb(236,140,0)" rx="2" ry="2" /> +<text x="751.26" y="10591.5" >Nsfi..</text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="870.1" y="8597" width="0.4" height="15.0" fill="rgb(225,156,27)" rx="2" ry="2" /> +<text x="873.07" y="8607.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="261.4" y="9621" width="0.5" height="15.0" fill="rgb(212,6,9)" rx="2" ry="2" /> +<text x="264.43" y="9631.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Stack::currentFrame (1 samples, 0.04%)</title><rect x="850.1" y="10261" width="0.5" height="15.0" fill="rgb(210,180,53)" rx="2" ry="2" /> +<text x="853.13" y="10271.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="738.3" y="10517" width="0.4" height="15.0" fill="rgb(227,124,49)" rx="2" ry="2" /> +<text x="741.29" y="10527.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (1 samples, 0.04%)</title><rect x="489.5" y="10101" width="0.4" height="15.0" fill="rgb(232,44,11)" rx="2" ry="2" /> +<text x="492.46" y="10111.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Num::I32 (1 samples, 0.04%)</title><rect x="1022.7" y="11157" width="0.4" height="15.0" fill="rgb(224,126,40)" rx="2" ry="2" /> +<text x="1025.67" y="11167.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (8 samples, 0.29%)</title><rect x="524.1" y="10229" width="3.5" height="15.0" fill="rgb(206,182,5)" rx="2" ry="2" /> +<text x="527.14" y="10239.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="793.8" y="10261" width="0.4" height="15.0" fill="rgb(208,34,18)" rx="2" ry="2" /> +<text x="796.78" y="10271.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="744.4" y="10213" width="0.4" height="15.0" fill="rgb(233,186,37)" rx="2" ry="2" /> +<text x="747.36" y="10223.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (7 samples, 0.26%)</title><rect x="446.5" y="9925" width="3.1" height="15.0" fill="rgb(239,212,44)" rx="2" ry="2" /> +<text x="449.54" y="9935.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (4 samples, 0.15%)</title><rect x="483.8" y="9941" width="1.8" height="15.0" fill="rgb(253,41,28)" rx="2" ry="2" /> +<text x="486.82" y="9951.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (5 samples, 0.18%)</title><rect x="240.6" y="10949" width="2.2" height="15.0" fill="rgb(230,180,3)" rx="2" ry="2" /> +<text x="243.62" y="10959.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (3 samples, 0.11%)</title><rect x="676.7" y="9861" width="1.3" height="15.0" fill="rgb(239,96,5)" rx="2" ry="2" /> +<text x="679.73" y="9871.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="870.1" y="8741" width="0.4" height="15.0" fill="rgb(249,15,28)" rx="2" ry="2" /> +<text x="873.07" y="8751.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="744.4" y="10517" width="0.4" height="15.0" fill="rgb(235,76,17)" rx="2" ry="2" /> +<text x="747.36" y="10527.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="483.8" y="9749" width="0.5" height="15.0" fill="rgb(239,114,51)" rx="2" ry="2" /> +<text x="486.82" y="9759.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="469.1" y="9781" width="0.4" height="15.0" fill="rgb(218,98,0)" rx="2" ry="2" /> +<text x="472.08" y="9791.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="424.4" y="8853" width="0.5" height="15.0" fill="rgb(207,165,4)" rx="2" ry="2" /> +<text x="427.43" y="8863.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (57 samples, 2.09%)</title><rect x="375.0" y="9717" width="24.7" height="15.0" fill="rgb(215,64,48)" rx="2" ry="2" /> +<text x="378.01" y="9727.5" >N..</text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (55 samples, 2.02%)</title><rect x="254.5" y="9941" width="23.8" height="15.0" fill="rgb(249,63,38)" rx="2" ry="2" /> +<text x="257.50" y="9951.5" >N..</text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="497.3" y="10181" width="0.4" height="15.0" fill="rgb(241,31,52)" rx="2" ry="2" /> +<text x="500.26" y="10191.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="1170.1" y="11173" width="0.4" height="15.0" fill="rgb(219,167,12)" rx="2" ry="2" /> +<text x="1173.06" y="11183.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (1 samples, 0.04%)</title><rect x="238.9" y="10885" width="0.4" height="15.0" fill="rgb(234,162,51)" rx="2" ry="2" /> +<text x="241.89" y="10895.5" ></text> +</g> +<g > +<title><unknown> (1 samples, 0.04%)</title><rect x="1021.8" y="1061" width="0.4" height="15.0" fill="rgb(248,27,7)" rx="2" ry="2" /> +<text x="1024.80" y="1071.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (3 samples, 0.11%)</title><rect x="363.7" y="9653" width="1.3" height="15.0" fill="rgb(234,130,18)" rx="2" ry="2" /> +<text x="366.74" y="9663.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doStoreI32 (2 samples, 0.07%)</title><rect x="716.6" y="9845" width="0.9" height="15.0" fill="rgb(227,46,15)" rx="2" ry="2" /> +<text x="719.61" y="9855.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeHostFunc (291 samples, 10.69%)</title><rect x="742.6" y="11045" width="126.2" height="15.0" fill="rgb(236,137,28)" rx="2" ry="2" /> +<text x="745.62" y="11055.5" >Nsfisis\Waddiwa..</text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (42 samples, 1.54%)</title><rect x="753.9" y="10149" width="18.2" height="15.0" fill="rgb(232,37,31)" rx="2" ry="2" /> +<text x="756.89" y="10159.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (2 samples, 0.07%)</title><rect x="545.8" y="10309" width="0.9" height="15.0" fill="rgb(217,198,43)" rx="2" ry="2" /> +<text x="548.81" y="10319.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (5 samples, 0.18%)</title><rect x="742.6" y="10533" width="2.2" height="15.0" fill="rgb(211,95,23)" rx="2" ry="2" /> +<text x="745.62" y="10543.5" ></text> +</g> +<g > +<title><unknown> (2 samples, 0.07%)</title><rect x="1021.4" y="9045" width="0.8" height="15.0" fill="rgb(254,216,30)" rx="2" ry="2" /> +<text x="1024.37" y="9055.5" ></text> +</g> +<g > +<title><unknown> (2 samples, 0.07%)</title><rect x="1021.4" y="7589" width="0.8" height="15.0" fill="rgb(216,176,36)" rx="2" ry="2" /> +<text x="1024.37" y="7599.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (5 samples, 0.18%)</title><rect x="474.3" y="9893" width="2.2" height="15.0" fill="rgb(234,143,13)" rx="2" ry="2" /> +<text x="477.28" y="9903.5" ></text> +</g> +<g > +<title><unknown> (2 samples, 0.07%)</title><rect x="1021.4" y="9829" width="0.8" height="15.0" fill="rgb(234,208,33)" rx="2" ry="2" /> +<text x="1024.37" y="9839.5" ></text> +</g> +<g > +<title><unknown> (2 samples, 0.07%)</title><rect x="1021.4" y="9637" width="0.8" height="15.0" fill="rgb(206,115,27)" rx="2" ry="2" /> +<text x="1024.37" y="9647.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\ControlFlowResult::Br (1 samples, 0.04%)</title><rect x="1068.6" y="11141" width="0.5" height="15.0" fill="rgb(219,56,42)" rx="2" ry="2" /> +<text x="1071.62" y="11151.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (2 samples, 0.07%)</title><rect x="734.0" y="10325" width="0.8" height="15.0" fill="rgb(240,38,36)" rx="2" ry="2" /> +<text x="736.95" y="10335.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (2 samples, 0.07%)</title><rect x="408.4" y="9445" width="0.9" height="15.0" fill="rgb(207,54,11)" rx="2" ry="2" /> +<text x="411.39" y="9455.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (56 samples, 2.06%)</title><rect x="504.2" y="10389" width="24.3" height="15.0" fill="rgb(217,34,31)" rx="2" ry="2" /> +<text x="507.20" y="10399.5" >N..</text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (5 samples, 0.18%)</title><rect x="868.8" y="10613" width="2.1" height="15.0" fill="rgb(224,54,19)" rx="2" ry="2" /> +<text x="871.77" y="10623.5" ></text> +</g> +<g > +<title><unknown> (1 samples, 0.04%)</title><rect x="1021.8" y="5765" width="0.4" height="15.0" fill="rgb(208,191,53)" rx="2" ry="2" /> +<text x="1024.80" y="5775.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="692.3" y="10053" width="0.5" height="15.0" fill="rgb(236,146,20)" rx="2" ry="2" /> +<text x="695.34" y="10063.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (2 samples, 0.07%)</title><rect x="372.8" y="9605" width="0.9" height="15.0" fill="rgb(209,48,17)" rx="2" ry="2" /> +<text x="375.84" y="9615.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (56 samples, 2.06%)</title><rect x="504.2" y="10357" width="24.3" height="15.0" fill="rgb(206,103,35)" rx="2" ry="2" /> +<text x="507.20" y="10367.5" >N..</text> +</g> +<g > +<title><unknown> (1 samples, 0.04%)</title><rect x="296.5" y="9621" width="0.5" height="15.0" fill="rgb(243,41,28)" rx="2" ry="2" /> +<text x="299.55" y="9631.5" ></text> +</g> +<g > +<title><unknown> (1 samples, 0.04%)</title><rect x="212.9" y="11141" width="0.4" height="15.0" fill="rgb(244,128,15)" rx="2" ry="2" /> +<text x="215.88" y="11151.5" ></text> +</g> +<g > +<title><unknown> (1 samples, 0.04%)</title><rect x="1021.8" y="1685" width="0.4" height="15.0" fill="rgb(226,122,35)" rx="2" ry="2" /> +<text x="1024.80" y="1695.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="470.4" y="9765" width="0.4" height="15.0" fill="rgb(214,128,35)" rx="2" ry="2" /> +<text x="473.38" y="9775.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="733.5" y="8613" width="0.5" height="15.0" fill="rgb(249,174,2)" rx="2" ry="2" /> +<text x="736.52" y="8623.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\BinaryFormat\Decoder::{closure}(/home/ken/src/php-waddiwasi/src/BinaryFormat/Decoder.php:524-557) (5 samples, 0.18%)</title><rect x="868.8" y="10837" width="2.1" height="15.0" fill="rgb(232,143,48)" rx="2" ry="2" /> +<text x="871.77" y="10847.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (6 samples, 0.22%)</title><rect x="486.4" y="9893" width="2.6" height="15.0" fill="rgb(209,63,19)" rx="2" ry="2" /> +<text x="489.42" y="9903.5" ></text> +</g> +<g > +<title><unknown> (1 samples, 0.04%)</title><rect x="1021.8" y="4917" width="0.4" height="15.0" fill="rgb(232,19,52)" rx="2" ry="2" /> +<text x="1024.80" y="4927.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="742.6" y="10021" width="0.5" height="15.0" fill="rgb(249,15,45)" rx="2" ry="2" /> +<text x="745.62" y="10031.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (9 samples, 0.33%)</title><rect x="466.0" y="10005" width="3.9" height="15.0" fill="rgb(219,65,45)" rx="2" ry="2" /> +<text x="469.05" y="10015.5" ></text> +</g> +<g > +<title><unknown> (1 samples, 0.04%)</title><rect x="1021.8" y="3381" width="0.4" height="15.0" fill="rgb(251,169,40)" rx="2" ry="2" /> +<text x="1024.80" y="3391.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (1 samples, 0.04%)</title><rect x="409.3" y="9461" width="0.4" height="15.0" fill="rgb(213,42,52)" rx="2" ry="2" /> +<text x="412.26" y="9471.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="489.5" y="10117" width="0.4" height="15.0" fill="rgb(244,172,36)" rx="2" ry="2" /> +<text x="492.46" y="10127.5" ></text> +</g> +<g > +<title><unknown> (1 samples, 0.04%)</title><rect x="1021.8" y="2933" width="0.4" height="15.0" fill="rgb(239,136,40)" rx="2" ry="2" /> +<text x="1024.80" y="2943.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (7 samples, 0.26%)</title><rect x="486.0" y="9925" width="3.0" height="15.0" fill="rgb(225,219,10)" rx="2" ry="2" /> +<text x="488.99" y="9935.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="734.4" y="10101" width="0.4" height="15.0" fill="rgb(250,62,29)" rx="2" ry="2" /> +<text x="737.39" y="10111.5" ></text> +</g> +<g > +<title><unknown> (2 samples, 0.07%)</title><rect x="1021.4" y="7477" width="0.8" height="15.0" fill="rgb(239,0,32)" rx="2" ry="2" /> +<text x="1024.37" y="7487.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="867.9" y="9973" width="0.4" height="15.0" fill="rgb(229,204,13)" rx="2" ry="2" /> +<text x="870.91" y="9983.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="470.8" y="10053" width="0.4" height="15.0" fill="rgb(238,58,52)" rx="2" ry="2" /> +<text x="473.82" y="10063.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (13 samples, 0.48%)</title><rect x="541.5" y="10485" width="5.6" height="15.0" fill="rgb(221,113,6)" rx="2" ry="2" /> +<text x="544.48" y="10495.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (1 samples, 0.04%)</title><rect x="372.4" y="9621" width="0.4" height="15.0" fill="rgb(245,205,38)" rx="2" ry="2" /> +<text x="375.41" y="9631.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Val::Num (3 samples, 0.11%)</title><rect x="1174.8" y="11253" width="1.3" height="15.0" fill="rgb(225,75,32)" rx="2" ry="2" /> +<text x="1177.83" y="11263.5" ></text> +</g> +<g > +<title><unknown> (1 samples, 0.04%)</title><rect x="1021.8" y="3781" width="0.4" height="15.0" fill="rgb(222,25,13)" rx="2" ry="2" /> +<text x="1024.80" y="3791.5" ></text> +</g> +<g > +<title><unknown> (2 samples, 0.07%)</title><rect x="1021.4" y="8789" width="0.8" height="15.0" fill="rgb(232,190,52)" rx="2" ry="2" /> +<text x="1024.37" y="8799.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (7 samples, 0.26%)</title><rect x="486.0" y="9957" width="3.0" height="15.0" fill="rgb(226,13,35)" rx="2" ry="2" /> +<text x="488.99" y="9967.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="544.1" y="10341" width="0.4" height="15.0" fill="rgb(212,214,1)" rx="2" ry="2" /> +<text x="547.08" y="10351.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (1 samples, 0.04%)</title><rect x="268.8" y="9589" width="0.4" height="15.0" fill="rgb(236,78,36)" rx="2" ry="2" /> +<text x="271.80" y="9599.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="453.5" y="9189" width="0.4" height="15.0" fill="rgb(208,16,9)" rx="2" ry="2" /> +<text x="456.48" y="9199.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (3 samples, 0.11%)</title><rect x="408.4" y="9509" width="1.3" height="15.0" fill="rgb(248,219,27)" rx="2" ry="2" /> +<text x="411.39" y="9519.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (12 samples, 0.44%)</title><rect x="440.5" y="9845" width="5.2" height="15.0" fill="rgb(232,179,47)" rx="2" ry="2" /> +<text x="443.47" y="9855.5" ></text> +</g> +<g > +<title><unknown> (1 samples, 0.04%)</title><rect x="1021.8" y="4197" width="0.4" height="15.0" fill="rgb(238,39,47)" rx="2" ry="2" /> +<text x="1024.80" y="4207.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="484.3" y="9749" width="0.4" height="15.0" fill="rgb(232,163,38)" rx="2" ry="2" /> +<text x="487.25" y="9759.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="744.4" y="10293" width="0.4" height="15.0" fill="rgb(252,170,46)" rx="2" ry="2" /> +<text x="747.36" y="10303.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="453.5" y="9781" width="0.4" height="15.0" fill="rgb(208,116,9)" rx="2" ry="2" /> +<text x="456.48" y="9791.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (4 samples, 0.15%)</title><rect x="241.1" y="10773" width="1.7" height="15.0" fill="rgb(238,67,24)" rx="2" ry="2" /> +<text x="244.06" y="10783.5" ></text> +</g> +<g > +<title><unknown> (1 samples, 0.04%)</title><rect x="746.1" y="10629" width="0.4" height="15.0" fill="rgb(224,25,29)" rx="2" ry="2" /> +<text x="749.09" y="10639.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="740.9" y="10661" width="0.4" height="15.0" fill="rgb(235,81,47)" rx="2" ry="2" /> +<text x="743.89" y="10671.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (3 samples, 0.11%)</title><rect x="741.3" y="10677" width="1.3" height="15.0" fill="rgb(209,181,25)" rx="2" ry="2" /> +<text x="744.32" y="10687.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\MemInst::storeByte (4 samples, 0.15%)</title><rect x="232.0" y="11157" width="1.7" height="15.0" fill="rgb(222,86,1)" rx="2" ry="2" /> +<text x="234.95" y="11167.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="870.1" y="7941" width="0.4" height="15.0" fill="rgb(222,43,48)" rx="2" ry="2" /> +<text x="873.07" y="7951.5" ></text> +</g> +<g > +<title><unknown> (1 samples, 0.04%)</title><rect x="1021.8" y="5029" width="0.4" height="15.0" fill="rgb(244,180,3)" rx="2" ry="2" /> +<text x="1024.80" y="5039.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (22 samples, 0.81%)</title><rect x="473.9" y="9925" width="9.5" height="15.0" fill="rgb(248,200,25)" rx="2" ry="2" /> +<text x="476.85" y="9935.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="351.2" y="9589" width="0.4" height="15.0" fill="rgb(236,221,21)" rx="2" ry="2" /> +<text x="354.17" y="9599.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="409.3" y="9173" width="0.4" height="15.0" fill="rgb(232,150,53)" rx="2" ry="2" /> +<text x="412.26" y="9183.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Stack::popValue (1 samples, 0.04%)</title><rect x="850.6" y="10261" width="0.4" height="15.0" fill="rgb(207,19,22)" rx="2" ry="2" /> +<text x="853.57" y="10271.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="769.5" y="9829" width="0.4" height="15.0" fill="rgb(240,114,48)" rx="2" ry="2" /> +<text x="772.50" y="9839.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (2 samples, 0.07%)</title><rect x="734.0" y="10565" width="0.8" height="15.0" fill="rgb(246,166,26)" rx="2" ry="2" /> +<text x="736.95" y="10575.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="870.1" y="7797" width="0.4" height="15.0" fill="rgb(248,12,17)" rx="2" ry="2" /> +<text x="873.07" y="7807.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="668.1" y="9877" width="0.4" height="15.0" fill="rgb(237,33,14)" rx="2" ry="2" /> +<text x="671.06" y="9887.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="439.2" y="9749" width="0.4" height="15.0" fill="rgb(208,203,53)" rx="2" ry="2" /> +<text x="442.17" y="9759.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (241 samples, 8.85%)</title><rect x="547.1" y="10021" width="104.5" height="15.0" fill="rgb(237,86,45)" rx="2" ry="2" /> +<text x="550.11" y="10031.5" >Nsfisis\Wadd..</text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (1 samples, 0.04%)</title><rect x="740.0" y="10469" width="0.5" height="15.0" fill="rgb(207,126,51)" rx="2" ry="2" /> +<text x="743.02" y="10479.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (27 samples, 0.99%)</title><rect x="452.2" y="10021" width="11.7" height="15.0" fill="rgb(209,218,7)" rx="2" ry="2" /> +<text x="455.17" y="10031.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (4 samples, 0.15%)</title><rect x="351.6" y="9477" width="1.7" height="15.0" fill="rgb(228,103,23)" rx="2" ry="2" /> +<text x="354.60" y="9487.5" ></text> +</g> +<g > +<title><unknown> (1 samples, 0.04%)</title><rect x="1021.8" y="5301" width="0.4" height="15.0" fill="rgb(239,74,39)" rx="2" ry="2" /> +<text x="1024.80" y="5311.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="1035.2" y="11077" width="0.5" height="15.0" fill="rgb(240,61,34)" rx="2" ry="2" /> +<text x="1038.24" y="11087.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="738.3" y="10741" width="0.4" height="15.0" fill="rgb(226,195,48)" rx="2" ry="2" /> +<text x="741.29" y="10751.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (2 samples, 0.07%)</title><rect x="307.0" y="9301" width="0.8" height="15.0" fill="rgb(205,104,11)" rx="2" ry="2" /> +<text x="309.95" y="9311.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="238.9" y="10149" width="0.4" height="15.0" fill="rgb(222,166,4)" rx="2" ry="2" /> +<text x="241.89" y="10159.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (1 samples, 0.04%)</title><rect x="537.1" y="10101" width="0.5" height="15.0" fill="rgb(232,99,41)" rx="2" ry="2" /> +<text x="540.14" y="10111.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="238.9" y="10517" width="0.4" height="15.0" fill="rgb(236,100,43)" rx="2" ry="2" /> +<text x="241.89" y="10527.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::deactivateLabel (1 samples, 0.04%)</title><rect x="451.7" y="10069" width="0.5" height="15.0" fill="rgb(234,203,31)" rx="2" ry="2" /> +<text x="454.74" y="10079.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="852.7" y="10245" width="0.5" height="15.0" fill="rgb(240,101,43)" rx="2" ry="2" /> +<text x="855.73" y="10255.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="380.2" y="9429" width="0.4" height="15.0" fill="rgb(228,190,47)" rx="2" ry="2" /> +<text x="383.21" y="9439.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="267.1" y="9445" width="0.4" height="15.0" fill="rgb(254,161,39)" rx="2" ry="2" /> +<text x="270.07" y="9455.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="399.7" y="9717" width="0.5" height="15.0" fill="rgb(240,43,9)" rx="2" ry="2" /> +<text x="402.72" y="9727.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (5 samples, 0.18%)</title><rect x="466.0" y="9877" width="2.2" height="15.0" fill="rgb(212,78,31)" rx="2" ry="2" /> +<text x="469.05" y="9887.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="446.1" y="9701" width="0.4" height="15.0" fill="rgb(242,99,41)" rx="2" ry="2" /> +<text x="449.11" y="9711.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="733.5" y="8773" width="0.5" height="15.0" fill="rgb(206,167,21)" rx="2" ry="2" /> +<text x="736.52" y="8783.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="867.0" y="10197" width="0.5" height="15.0" fill="rgb(245,100,6)" rx="2" ry="2" /> +<text x="870.04" y="10207.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (19 samples, 0.70%)</title><rect x="431.4" y="9973" width="8.2" height="15.0" fill="rgb(254,43,7)" rx="2" ry="2" /> +<text x="434.37" y="9983.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (2 samples, 0.07%)</title><rect x="424.0" y="9173" width="0.9" height="15.0" fill="rgb(239,228,13)" rx="2" ry="2" /> +<text x="427.00" y="9183.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (3 samples, 0.11%)</title><rect x="495.5" y="10405" width="1.3" height="15.0" fill="rgb(234,87,30)" rx="2" ry="2" /> +<text x="498.53" y="10415.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\MemInst::storeI32 (28 samples, 1.03%)</title><rect x="152.6" y="11157" width="12.2" height="15.0" fill="rgb(254,177,37)" rx="2" ry="2" /> +<text x="155.62" y="11167.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (2 samples, 0.07%)</title><rect x="277.0" y="9701" width="0.9" height="15.0" fill="rgb(220,55,23)" rx="2" ry="2" /> +<text x="280.04" y="9711.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Stack::pushBool (4 samples, 0.15%)</title><rect x="639.9" y="9909" width="1.7" height="15.0" fill="rgb(235,220,47)" rx="2" ry="2" /> +<text x="642.88" y="9919.5" ></text> +</g> +<g > +<title>Composer\Autoload\ClassLoader::loadClass (1 samples, 0.04%)</title><rect x="13.5" y="11221" width="0.4" height="15.0" fill="rgb(232,99,10)" rx="2" ry="2" /> +<text x="16.47" y="11231.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="315.6" y="9461" width="0.5" height="15.0" fill="rgb(220,143,27)" rx="2" ry="2" /> +<text x="318.62" y="9471.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (2 samples, 0.07%)</title><rect x="438.3" y="9749" width="0.9" height="15.0" fill="rgb(221,201,33)" rx="2" ry="2" /> +<text x="441.30" y="9759.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (1 samples, 0.04%)</title><rect x="489.9" y="10197" width="0.4" height="15.0" fill="rgb(250,98,54)" rx="2" ry="2" /> +<text x="492.89" y="10207.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (4 samples, 0.15%)</title><rect x="742.6" y="10453" width="1.8" height="15.0" fill="rgb(236,219,36)" rx="2" ry="2" /> +<text x="745.62" y="10463.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="261.4" y="9637" width="0.5" height="15.0" fill="rgb(214,38,49)" rx="2" ry="2" /> +<text x="264.43" y="9647.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (3 samples, 0.11%)</title><rect x="812.0" y="10245" width="1.3" height="15.0" fill="rgb(247,136,54)" rx="2" ry="2" /> +<text x="814.98" y="10255.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\BinaryFormat\Decoder::{closure}(/home/ken/src/php-waddiwasi/src/BinaryFormat/Decoder.php:1003-1007) (571 samples, 20.98%)</title><rect x="243.2" y="10709" width="247.6" height="15.0" fill="rgb(243,99,38)" rx="2" ry="2" /> +<text x="246.23" y="10719.5" >Nsfisis\Waddiwasi\BinaryFormat\D..</text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (3 samples, 0.11%)</title><rect x="363.7" y="9637" width="1.3" height="15.0" fill="rgb(211,147,37)" rx="2" ry="2" /> +<text x="366.74" y="9647.5" ></text> +</g> +<g > +<title><unknown> (2 samples, 0.07%)</title><rect x="1021.4" y="10437" width="0.8" height="15.0" fill="rgb(250,199,22)" rx="2" ry="2" /> +<text x="1024.37" y="10447.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="870.1" y="10005" width="0.4" height="15.0" fill="rgb(214,37,5)" rx="2" ry="2" /> +<text x="873.07" y="10015.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (3 samples, 0.11%)</title><rect x="483.8" y="9909" width="1.3" height="15.0" fill="rgb(214,128,10)" rx="2" ry="2" /> +<text x="486.82" y="9919.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="496.4" y="10053" width="0.4" height="15.0" fill="rgb(211,29,54)" rx="2" ry="2" /> +<text x="499.39" y="10063.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="397.6" y="9525" width="0.4" height="15.0" fill="rgb(228,204,13)" rx="2" ry="2" /> +<text x="400.55" y="9535.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="516.8" y="10181" width="0.4" height="15.0" fill="rgb(223,161,54)" rx="2" ry="2" /> +<text x="519.77" y="10191.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="265.3" y="9381" width="0.5" height="15.0" fill="rgb(218,179,48)" rx="2" ry="2" /> +<text x="268.33" y="9391.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="763.9" y="9909" width="0.4" height="15.0" fill="rgb(216,204,50)" rx="2" ry="2" /> +<text x="766.86" y="9919.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="867.9" y="10485" width="0.4" height="15.0" fill="rgb(251,170,49)" rx="2" ry="2" /> +<text x="870.91" y="10495.5" ></text> +</g> +<g > +<title><unknown> (1 samples, 0.04%)</title><rect x="1021.8" y="3749" width="0.4" height="15.0" fill="rgb(238,145,43)" rx="2" ry="2" /> +<text x="1024.80" y="3759.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (1 samples, 0.04%)</title><rect x="271.4" y="9845" width="0.4" height="15.0" fill="rgb(243,191,45)" rx="2" ry="2" /> +<text x="274.40" y="9855.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (5 samples, 0.18%)</title><rect x="295.2" y="9685" width="2.2" height="15.0" fill="rgb(233,222,21)" rx="2" ry="2" /> +<text x="298.25" y="9695.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="469.5" y="9829" width="0.4" height="15.0" fill="rgb(229,178,18)" rx="2" ry="2" /> +<text x="472.52" y="9839.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="870.1" y="9669" width="0.4" height="15.0" fill="rgb(224,123,47)" rx="2" ry="2" /> +<text x="873.07" y="9679.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Stack::popI32 (1 samples, 0.04%)</title><rect x="639.4" y="9893" width="0.5" height="15.0" fill="rgb(251,10,44)" rx="2" ry="2" /> +<text x="642.45" y="9903.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="265.3" y="9349" width="0.5" height="15.0" fill="rgb(212,165,13)" rx="2" ry="2" /> +<text x="268.33" y="9359.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="733.5" y="9157" width="0.5" height="15.0" fill="rgb(254,18,2)" rx="2" ry="2" /> +<text x="736.52" y="9167.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (3 samples, 0.11%)</title><rect x="741.3" y="10693" width="1.3" height="15.0" fill="rgb(209,221,44)" rx="2" ry="2" /> +<text x="744.32" y="10703.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="738.3" y="10565" width="0.4" height="15.0" fill="rgb(233,149,39)" rx="2" ry="2" /> +<text x="741.29" y="10575.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="870.1" y="9445" width="0.4" height="15.0" fill="rgb(218,44,36)" rx="2" ry="2" /> +<text x="873.07" y="9455.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (2 samples, 0.07%)</title><rect x="1041.3" y="11141" width="0.9" height="15.0" fill="rgb(207,116,35)" rx="2" ry="2" /> +<text x="1044.31" y="11151.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (4 samples, 0.15%)</title><rect x="437.9" y="9893" width="1.7" height="15.0" fill="rgb(225,94,32)" rx="2" ry="2" /> +<text x="440.87" y="9903.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (2 samples, 0.07%)</title><rect x="464.7" y="9989" width="0.9" height="15.0" fill="rgb(235,178,47)" rx="2" ry="2" /> +<text x="467.75" y="9999.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (2 samples, 0.07%)</title><rect x="269.7" y="9557" width="0.8" height="15.0" fill="rgb(239,63,6)" rx="2" ry="2" /> +<text x="272.67" y="9567.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (4 samples, 0.15%)</title><rect x="742.6" y="10149" width="1.8" height="15.0" fill="rgb(222,71,54)" rx="2" ry="2" /> +<text x="745.62" y="10159.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (4 samples, 0.15%)</title><rect x="525.9" y="10133" width="1.7" height="15.0" fill="rgb(207,175,27)" rx="2" ry="2" /> +<text x="528.87" y="10143.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (1 samples, 0.04%)</title><rect x="261.0" y="9541" width="0.4" height="15.0" fill="rgb(218,63,6)" rx="2" ry="2" /> +<text x="264.00" y="9551.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="489.0" y="9909" width="0.5" height="15.0" fill="rgb(240,109,41)" rx="2" ry="2" /> +<text x="492.02" y="9919.5" ></text> +</g> +<g > +<title><unknown> (1 samples, 0.04%)</title><rect x="1021.8" y="5061" width="0.4" height="15.0" fill="rgb(216,13,14)" rx="2" ry="2" /> +<text x="1024.80" y="5071.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="331.2" y="9813" width="0.5" height="15.0" fill="rgb(236,48,53)" rx="2" ry="2" /> +<text x="334.23" y="9823.5" ></text> +</g> +<g > +<title><unknown> (1 samples, 0.04%)</title><rect x="1021.8" y="3045" width="0.4" height="15.0" fill="rgb(210,107,53)" rx="2" ry="2" /> +<text x="1024.80" y="3055.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="870.1" y="7877" width="0.4" height="15.0" fill="rgb(236,127,46)" rx="2" ry="2" /> +<text x="873.07" y="7887.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (91 samples, 3.34%)</title><rect x="692.8" y="10069" width="39.4" height="15.0" fill="rgb(236,205,37)" rx="2" ry="2" /> +<text x="695.77" y="10079.5" >Nsf..</text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="771.7" y="10069" width="0.4" height="15.0" fill="rgb(229,49,49)" rx="2" ry="2" /> +<text x="774.67" y="10079.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (3 samples, 0.11%)</title><rect x="735.3" y="10469" width="1.3" height="15.0" fill="rgb(243,64,6)" rx="2" ry="2" /> +<text x="738.25" y="10479.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="443.1" y="8773" width="0.4" height="15.0" fill="rgb(229,76,24)" rx="2" ry="2" /> +<text x="446.07" y="8783.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (2 samples, 0.07%)</title><rect x="269.7" y="9525" width="0.8" height="15.0" fill="rgb(209,164,42)" rx="2" ry="2" /> +<text x="272.67" y="9535.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (2 samples, 0.07%)</title><rect x="463.0" y="9333" width="0.9" height="15.0" fill="rgb(218,168,0)" rx="2" ry="2" /> +<text x="466.01" y="9343.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (41 samples, 1.51%)</title><rect x="1050.8" y="11141" width="17.8" height="15.0" fill="rgb(209,193,33)" rx="2" ry="2" /> +<text x="1053.84" y="11151.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="497.3" y="10197" width="0.4" height="15.0" fill="rgb(236,110,1)" rx="2" ry="2" /> +<text x="500.26" y="10207.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="744.4" y="10197" width="0.4" height="15.0" fill="rgb(205,69,17)" rx="2" ry="2" /> +<text x="747.36" y="10207.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (4 samples, 0.15%)</title><rect x="869.2" y="10149" width="1.7" height="15.0" fill="rgb(209,216,12)" rx="2" ry="2" /> +<text x="872.21" y="10159.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (1 samples, 0.04%)</title><rect x="1071.2" y="11157" width="0.5" height="15.0" fill="rgb(213,192,46)" rx="2" ry="2" /> +<text x="1074.22" y="11167.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Stack::pushValue (1 samples, 0.04%)</title><rect x="538.0" y="10293" width="0.4" height="15.0" fill="rgb(251,129,40)" rx="2" ry="2" /> +<text x="541.01" y="10303.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="484.3" y="9685" width="0.4" height="15.0" fill="rgb(243,218,6)" rx="2" ry="2" /> +<text x="487.25" y="9695.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="489.9" y="10213" width="0.4" height="15.0" fill="rgb(242,184,44)" rx="2" ry="2" /> +<text x="492.89" y="10223.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Stack::popI32 (1 samples, 0.04%)</title><rect x="403.6" y="9397" width="0.5" height="15.0" fill="rgb(216,147,13)" rx="2" ry="2" /> +<text x="406.62" y="9407.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="771.7" y="10053" width="0.4" height="15.0" fill="rgb(223,55,33)" rx="2" ry="2" /> +<text x="774.67" y="10063.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="1095.1" y="11013" width="0.4" height="15.0" fill="rgb(250,23,45)" rx="2" ry="2" /> +<text x="1098.06" y="11023.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="453.5" y="9477" width="0.4" height="15.0" fill="rgb(208,221,17)" rx="2" ry="2" /> +<text x="456.48" y="9487.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (3 samples, 0.11%)</title><rect x="385.0" y="9477" width="1.3" height="15.0" fill="rgb(225,116,32)" rx="2" ry="2" /> +<text x="387.98" y="9487.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="733.5" y="9269" width="0.5" height="15.0" fill="rgb(235,97,18)" rx="2" ry="2" /> +<text x="736.52" y="9279.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="468.2" y="9717" width="0.4" height="15.0" fill="rgb(232,130,47)" rx="2" ry="2" /> +<text x="471.21" y="9727.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (9 samples, 0.33%)</title><rect x="395.0" y="9573" width="3.9" height="15.0" fill="rgb(218,129,12)" rx="2" ry="2" /> +<text x="397.95" y="9583.5" ></text> +</g> +<g > +<title><unknown> (1 samples, 0.04%)</title><rect x="1021.8" y="6053" width="0.4" height="15.0" fill="rgb(228,36,54)" rx="2" ry="2" /> +<text x="1024.80" y="6063.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (1 samples, 0.04%)</title><rect x="453.5" y="9637" width="0.4" height="15.0" fill="rgb(238,167,14)" rx="2" ry="2" /> +<text x="456.48" y="9647.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (2 samples, 0.07%)</title><rect x="739.6" y="10565" width="0.9" height="15.0" fill="rgb(211,204,36)" rx="2" ry="2" /> +<text x="742.59" y="10575.5" ></text> +</g> +<g > +<title>{closure}(/home/ken/src/php-waddiwasi/examples/php-on-wasm/php-wasm.php:344-351) (343 samples, 12.60%)</title><rect x="503.3" y="10709" width="148.7" height="15.0" fill="rgb(217,111,10)" rx="2" ry="2" /> +<text x="506.33" y="10719.5" >{closure}(/home/ken..</text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::deactivateLabel (1 samples, 0.04%)</title><rect x="284.0" y="9605" width="0.4" height="15.0" fill="rgb(239,76,19)" rx="2" ry="2" /> +<text x="286.98" y="9615.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (9 samples, 0.33%)</title><rect x="498.6" y="10229" width="3.9" height="15.0" fill="rgb(226,174,15)" rx="2" ry="2" /> +<text x="501.56" y="10239.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (1 samples, 0.04%)</title><rect x="544.1" y="10421" width="0.4" height="15.0" fill="rgb(232,206,1)" rx="2" ry="2" /> +<text x="547.08" y="10431.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="744.4" y="10485" width="0.4" height="15.0" fill="rgb(228,166,13)" rx="2" ry="2" /> +<text x="747.36" y="10495.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="870.1" y="9941" width="0.4" height="15.0" fill="rgb(223,207,46)" rx="2" ry="2" /> +<text x="873.07" y="9951.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (4 samples, 0.15%)</title><rect x="1049.1" y="11109" width="1.7" height="15.0" fill="rgb(243,13,1)" rx="2" ry="2" /> +<text x="1052.11" y="11119.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="485.1" y="9893" width="0.5" height="15.0" fill="rgb(254,177,19)" rx="2" ry="2" /> +<text x="488.12" y="9903.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="546.2" y="10245" width="0.5" height="15.0" fill="rgb(211,222,3)" rx="2" ry="2" /> +<text x="549.25" y="10255.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="487.7" y="9669" width="0.5" height="15.0" fill="rgb(210,75,32)" rx="2" ry="2" /> +<text x="490.72" y="9679.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (2 samples, 0.07%)</title><rect x="1141.9" y="10981" width="0.8" height="15.0" fill="rgb(223,143,48)" rx="2" ry="2" /> +<text x="1144.88" y="10991.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="733.5" y="9061" width="0.5" height="15.0" fill="rgb(235,135,2)" rx="2" ry="2" /> +<text x="736.52" y="9071.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (4 samples, 0.15%)</title><rect x="423.1" y="9285" width="1.8" height="15.0" fill="rgb(240,188,27)" rx="2" ry="2" /> +<text x="426.13" y="9295.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (7 samples, 0.26%)</title><rect x="802.4" y="10357" width="3.1" height="15.0" fill="rgb(234,129,50)" rx="2" ry="2" /> +<text x="805.45" y="10367.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (5 samples, 0.18%)</title><rect x="240.6" y="10917" width="2.2" height="15.0" fill="rgb(254,158,14)" rx="2" ry="2" /> +<text x="243.62" y="10927.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\StackEntries\Value::__construct (1 samples, 0.04%)</title><rect x="245.8" y="10389" width="0.5" height="15.0" fill="rgb(223,202,33)" rx="2" ry="2" /> +<text x="248.83" y="10399.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="337.3" y="9973" width="0.4" height="15.0" fill="rgb(232,89,39)" rx="2" ry="2" /> +<text x="340.30" y="9983.5" ></text> +</g> +<g > +<title><unknown> (1 samples, 0.04%)</title><rect x="288.7" y="9621" width="0.5" height="15.0" fill="rgb(232,216,4)" rx="2" ry="2" /> +<text x="291.74" y="9631.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (2 samples, 0.07%)</title><rect x="496.0" y="10293" width="0.8" height="15.0" fill="rgb(237,227,52)" rx="2" ry="2" /> +<text x="498.96" y="10303.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Structure\Types\FuncType::equals (1 samples, 0.04%)</title><rect x="538.4" y="10293" width="0.5" height="15.0" fill="rgb(253,141,22)" rx="2" ry="2" /> +<text x="541.44" y="10303.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (45 samples, 1.65%)</title><rect x="659.8" y="10069" width="19.5" height="15.0" fill="rgb(221,92,43)" rx="2" ry="2" /> +<text x="662.82" y="10079.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (3 samples, 0.11%)</title><rect x="408.4" y="9685" width="1.3" height="15.0" fill="rgb(223,165,41)" rx="2" ry="2" /> +<text x="411.39" y="9695.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\ControlFlowResult::Br (1 samples, 0.04%)</title><rect x="352.9" y="9381" width="0.4" height="15.0" fill="rgb(226,118,43)" rx="2" ry="2" /> +<text x="355.90" y="9391.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="377.2" y="9653" width="0.4" height="15.0" fill="rgb(232,7,46)" rx="2" ry="2" /> +<text x="380.18" y="9663.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (3 samples, 0.11%)</title><rect x="722.2" y="9717" width="1.3" height="15.0" fill="rgb(248,146,26)" rx="2" ry="2" /> +<text x="725.25" y="9727.5" ></text> +</g> +<g > +<title><unknown> (1 samples, 0.04%)</title><rect x="1021.8" y="3637" width="0.4" height="15.0" fill="rgb(239,120,16)" rx="2" ry="2" /> +<text x="1024.80" y="3647.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="867.9" y="10837" width="0.4" height="15.0" fill="rgb(249,38,50)" rx="2" ry="2" /> +<text x="870.91" y="10847.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (6 samples, 0.22%)</title><rect x="732.2" y="10613" width="2.6" height="15.0" fill="rgb(246,137,27)" rx="2" ry="2" /> +<text x="735.22" y="10623.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (2 samples, 0.07%)</title><rect x="442.2" y="8869" width="0.9" height="15.0" fill="rgb(226,140,35)" rx="2" ry="2" /> +<text x="445.20" y="8879.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="780.3" y="10293" width="0.5" height="15.0" fill="rgb(234,160,7)" rx="2" ry="2" /> +<text x="783.34" y="10303.5" ></text> +</g> +<g > +<title><unknown> (1 samples, 0.04%)</title><rect x="1021.8" y="4389" width="0.4" height="15.0" fill="rgb(248,212,23)" rx="2" ry="2" /> +<text x="1024.80" y="4399.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (2 samples, 0.07%)</title><rect x="408.4" y="9317" width="0.9" height="15.0" fill="rgb(250,35,29)" rx="2" ry="2" /> +<text x="411.39" y="9327.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="870.1" y="9333" width="0.4" height="15.0" fill="rgb(236,214,51)" rx="2" ry="2" /> +<text x="873.07" y="9343.5" ></text> +</g> +<g > +<title>{closure}(/home/ken/src/php-waddiwasi/examples/php-on-wasm/php-wasm.php:514-531) (7 samples, 0.26%)</title><rect x="735.3" y="10709" width="3.0" height="15.0" fill="rgb(212,106,19)" rx="2" ry="2" /> +<text x="738.25" y="10719.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (1 samples, 0.04%)</title><rect x="724.8" y="9893" width="0.5" height="15.0" fill="rgb(245,179,47)" rx="2" ry="2" /> +<text x="727.85" y="9903.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doLoadI32 (1 samples, 0.04%)</title><rect x="457.8" y="9685" width="0.4" height="15.0" fill="rgb(251,70,12)" rx="2" ry="2" /> +<text x="460.81" y="9695.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (1 samples, 0.04%)</title><rect x="867.9" y="10149" width="0.4" height="15.0" fill="rgb(222,17,49)" rx="2" ry="2" /> +<text x="870.91" y="10159.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="744.4" y="10389" width="0.4" height="15.0" fill="rgb(248,117,12)" rx="2" ry="2" /> +<text x="747.36" y="10399.5" ></text> +</g> +<g > +<title><unknown> (1 samples, 0.04%)</title><rect x="1021.8" y="5573" width="0.4" height="15.0" fill="rgb(236,133,34)" rx="2" ry="2" /> +<text x="1024.80" y="5583.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="1095.1" y="11029" width="0.4" height="15.0" fill="rgb(252,97,48)" rx="2" ry="2" /> +<text x="1098.06" y="11039.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="733.5" y="9701" width="0.5" height="15.0" fill="rgb(233,160,16)" rx="2" ry="2" /> +<text x="736.52" y="9711.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="870.1" y="9093" width="0.4" height="15.0" fill="rgb(205,75,26)" rx="2" ry="2" /> +<text x="873.07" y="9103.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (34 samples, 1.25%)</title><rect x="350.3" y="9797" width="14.7" height="15.0" fill="rgb(211,219,1)" rx="2" ry="2" /> +<text x="353.30" y="9807.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (7 samples, 0.26%)</title><rect x="499.4" y="10117" width="3.1" height="15.0" fill="rgb(229,65,3)" rx="2" ry="2" /> +<text x="502.43" y="10127.5" ></text> +</g> +<g > +<title><unknown> (1 samples, 0.04%)</title><rect x="1021.8" y="597" width="0.4" height="15.0" fill="rgb(214,228,23)" rx="2" ry="2" /> +<text x="1024.80" y="607.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (1 samples, 0.04%)</title><rect x="862.3" y="10261" width="0.4" height="15.0" fill="rgb(232,218,17)" rx="2" ry="2" /> +<text x="865.27" y="10271.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="849.7" y="10085" width="0.4" height="15.0" fill="rgb(214,40,29)" rx="2" ry="2" /> +<text x="852.70" y="10095.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="740.5" y="10517" width="0.4" height="15.0" fill="rgb(224,52,8)" rx="2" ry="2" /> +<text x="743.46" y="10527.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\StackEntry::Value (1 samples, 0.04%)</title><rect x="1143.2" y="11205" width="0.4" height="15.0" fill="rgb(226,124,54)" rx="2" ry="2" /> +<text x="1146.18" y="11215.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (5 samples, 0.18%)</title><rect x="244.1" y="10533" width="2.2" height="15.0" fill="rgb(236,43,3)" rx="2" ry="2" /> +<text x="247.09" y="10543.5" ></text> +</g> +<g > +<title><unknown> (1 samples, 0.04%)</title><rect x="1021.8" y="5941" width="0.4" height="15.0" fill="rgb(252,132,20)" rx="2" ry="2" /> +<text x="1024.80" y="5951.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="239.8" y="10837" width="0.4" height="15.0" fill="rgb(215,25,1)" rx="2" ry="2" /> +<text x="242.76" y="10847.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (3 samples, 0.11%)</title><rect x="317.4" y="9621" width="1.3" height="15.0" fill="rgb(250,19,23)" rx="2" ry="2" /> +<text x="320.35" y="9631.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (69 samples, 2.53%)</title><rect x="297.4" y="9781" width="29.9" height="15.0" fill="rgb(242,121,39)" rx="2" ry="2" /> +<text x="300.41" y="9791.5" >Ns..</text> +</g> +<g > +<title><unknown> (1 samples, 0.04%)</title><rect x="1021.8" y="949" width="0.4" height="15.0" fill="rgb(251,51,14)" rx="2" ry="2" /> +<text x="1024.80" y="959.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="866.2" y="10277" width="0.4" height="15.0" fill="rgb(244,15,44)" rx="2" ry="2" /> +<text x="869.17" y="10287.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="315.6" y="9397" width="0.5" height="15.0" fill="rgb(253,15,4)" rx="2" ry="2" /> +<text x="318.62" y="9407.5" ></text> +</g> +<g > +<title><unknown> (1 samples, 0.04%)</title><rect x="1021.8" y="3205" width="0.4" height="15.0" fill="rgb(253,17,44)" rx="2" ry="2" /> +<text x="1024.80" y="3215.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (1 samples, 0.04%)</title><rect x="485.1" y="9877" width="0.5" height="15.0" fill="rgb(224,74,36)" rx="2" ry="2" /> +<text x="488.12" y="9887.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (8 samples, 0.29%)</title><rect x="485.6" y="10005" width="3.4" height="15.0" fill="rgb(225,115,50)" rx="2" ry="2" /> +<text x="488.55" y="10015.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (42 samples, 1.54%)</title><rect x="1095.5" y="11157" width="18.2" height="15.0" fill="rgb(217,129,54)" rx="2" ry="2" /> +<text x="1098.50" y="11167.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (2 samples, 0.07%)</title><rect x="545.8" y="10389" width="0.9" height="15.0" fill="rgb(234,93,50)" rx="2" ry="2" /> +<text x="548.81" y="10399.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (4 samples, 0.15%)</title><rect x="742.6" y="10181" width="1.8" height="15.0" fill="rgb(234,52,23)" rx="2" ry="2" /> +<text x="745.62" y="10191.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (9 samples, 0.33%)</title><rect x="238.9" y="11013" width="3.9" height="15.0" fill="rgb(219,90,13)" rx="2" ry="2" /> +<text x="241.89" y="11023.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="525.4" y="10133" width="0.5" height="15.0" fill="rgb(216,228,16)" rx="2" ry="2" /> +<text x="528.44" y="10143.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (14 samples, 0.51%)</title><rect x="285.3" y="9701" width="6.0" height="15.0" fill="rgb(230,158,44)" rx="2" ry="2" /> +<text x="288.28" y="9711.5" ></text> +</g> +<g > +<title><unknown> (2 samples, 0.07%)</title><rect x="1021.4" y="9861" width="0.8" height="15.0" fill="rgb(220,31,50)" rx="2" ry="2" /> +<text x="1024.37" y="9871.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="668.1" y="9765" width="0.4" height="15.0" fill="rgb(245,169,18)" rx="2" ry="2" /> +<text x="671.06" y="9775.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (69 samples, 2.53%)</title><rect x="297.4" y="9749" width="29.9" height="15.0" fill="rgb(239,132,5)" rx="2" ry="2" /> +<text x="300.41" y="9759.5" >Ns..</text> +</g> +<g > +<title><unknown> (1 samples, 0.04%)</title><rect x="857.5" y="10277" width="0.4" height="15.0" fill="rgb(231,50,41)" rx="2" ry="2" /> +<text x="860.50" y="10287.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="453.5" y="9669" width="0.4" height="15.0" fill="rgb(235,125,13)" rx="2" ry="2" /> +<text x="456.48" y="9679.5" ></text> +</g> +<g > +<title><unknown> (2 samples, 0.07%)</title><rect x="1021.4" y="7397" width="0.8" height="15.0" fill="rgb(232,26,42)" rx="2" ry="2" /> +<text x="1024.37" y="7407.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="1103.3" y="11013" width="0.4" height="15.0" fill="rgb(246,88,35)" rx="2" ry="2" /> +<text x="1106.30" y="11023.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="739.6" y="10213" width="0.4" height="15.0" fill="rgb(230,64,18)" rx="2" ry="2" /> +<text x="742.59" y="10223.5" ></text> +</g> +<g > +<title><unknown> (1 samples, 0.04%)</title><rect x="1021.8" y="709" width="0.4" height="15.0" fill="rgb(249,159,1)" rx="2" ry="2" /> +<text x="1024.80" y="719.5" ></text> +</g> +<g > +<title><unknown> (1 samples, 0.04%)</title><rect x="368.5" y="9845" width="0.4" height="15.0" fill="rgb(221,65,26)" rx="2" ry="2" /> +<text x="371.51" y="9855.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="668.1" y="9925" width="0.4" height="15.0" fill="rgb(232,59,31)" rx="2" ry="2" /> +<text x="671.06" y="9935.5" ></text> +</g> +<g > +<title><unknown> (2 samples, 0.07%)</title><rect x="1021.4" y="10389" width="0.8" height="15.0" fill="rgb(218,66,38)" rx="2" ry="2" /> +<text x="1024.37" y="10399.5" ></text> +</g> +<g > +<title><unknown> (2 samples, 0.07%)</title><rect x="1021.4" y="6581" width="0.8" height="15.0" fill="rgb(243,52,52)" rx="2" ry="2" /> +<text x="1024.37" y="6591.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (5 samples, 0.18%)</title><rect x="401.9" y="9637" width="2.2" height="15.0" fill="rgb(233,218,24)" rx="2" ry="2" /> +<text x="404.89" y="9647.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Stack::currentFrame (1 samples, 0.04%)</title><rect x="718.8" y="9909" width="0.4" height="15.0" fill="rgb(239,22,45)" rx="2" ry="2" /> +<text x="721.78" y="9919.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="869.2" y="9781" width="0.4" height="15.0" fill="rgb(250,20,5)" rx="2" ry="2" /> +<text x="872.21" y="9791.5" ></text> +</g> +<g > +<title><unknown> (1 samples, 0.04%)</title><rect x="1021.8" y="4277" width="0.4" height="15.0" fill="rgb(211,83,45)" rx="2" ry="2" /> +<text x="1024.80" y="4287.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="739.2" y="10149" width="0.4" height="15.0" fill="rgb(237,100,51)" rx="2" ry="2" /> +<text x="742.16" y="10159.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (6 samples, 0.22%)</title><rect x="727.9" y="9893" width="2.6" height="15.0" fill="rgb(239,134,32)" rx="2" ry="2" /> +<text x="730.88" y="9903.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (16 samples, 0.59%)</title><rect x="1105.5" y="11029" width="6.9" height="15.0" fill="rgb(251,165,7)" rx="2" ry="2" /> +<text x="1108.47" y="11039.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (1 samples, 0.04%)</title><rect x="868.3" y="10933" width="0.5" height="15.0" fill="rgb(244,36,18)" rx="2" ry="2" /> +<text x="871.34" y="10943.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="491.6" y="10389" width="0.5" height="15.0" fill="rgb(222,70,9)" rx="2" ry="2" /> +<text x="494.62" y="10399.5" ></text> +</g> +<g > +<title><unknown> (2 samples, 0.07%)</title><rect x="1021.4" y="6981" width="0.8" height="15.0" fill="rgb(219,60,18)" rx="2" ry="2" /> +<text x="1024.37" y="6991.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (1 samples, 0.04%)</title><rect x="489.9" y="10101" width="0.4" height="15.0" fill="rgb(243,175,48)" rx="2" ry="2" /> +<text x="492.89" y="10111.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="351.2" y="9573" width="0.4" height="15.0" fill="rgb(217,207,5)" rx="2" ry="2" /> +<text x="354.17" y="9583.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="733.5" y="9509" width="0.5" height="15.0" fill="rgb(223,207,54)" rx="2" ry="2" /> +<text x="736.52" y="9519.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (4 samples, 0.15%)</title><rect x="742.6" y="10245" width="1.8" height="15.0" fill="rgb(237,12,6)" rx="2" ry="2" /> +<text x="745.62" y="10255.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (2 samples, 0.07%)</title><rect x="734.0" y="10341" width="0.8" height="15.0" fill="rgb(228,150,19)" rx="2" ry="2" /> +<text x="736.95" y="10351.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="427.5" y="9317" width="0.4" height="15.0" fill="rgb(241,182,44)" rx="2" ry="2" /> +<text x="430.47" y="9327.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="1067.8" y="10325" width="0.4" height="15.0" fill="rgb(244,128,35)" rx="2" ry="2" /> +<text x="1070.75" y="10335.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="777.3" y="10165" width="0.4" height="15.0" fill="rgb(212,103,11)" rx="2" ry="2" /> +<text x="780.30" y="10175.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\MemInst::storeI64 (2 samples, 0.07%)</title><rect x="637.7" y="9893" width="0.9" height="15.0" fill="rgb(225,133,44)" rx="2" ry="2" /> +<text x="640.71" y="9903.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="744.4" y="10469" width="0.4" height="15.0" fill="rgb(207,227,48)" rx="2" ry="2" /> +<text x="747.36" y="10479.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="869.2" y="9861" width="0.4" height="15.0" fill="rgb(211,185,16)" rx="2" ry="2" /> +<text x="872.21" y="9871.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Stack::pushValue (23 samples, 0.84%)</title><rect x="1161.8" y="11253" width="10.0" height="15.0" fill="rgb(207,200,47)" rx="2" ry="2" /> +<text x="1164.82" y="11263.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="412.7" y="9125" width="0.5" height="15.0" fill="rgb(239,43,22)" rx="2" ry="2" /> +<text x="415.73" y="9135.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (6 samples, 0.22%)</title><rect x="788.1" y="10277" width="2.6" height="15.0" fill="rgb(239,133,20)" rx="2" ry="2" /> +<text x="791.14" y="10287.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (1 samples, 0.04%)</title><rect x="331.2" y="9781" width="0.5" height="15.0" fill="rgb(249,142,30)" rx="2" ry="2" /> +<text x="334.23" y="9791.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="399.3" y="9637" width="0.4" height="15.0" fill="rgb(239,47,23)" rx="2" ry="2" /> +<text x="402.29" y="9647.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (182 samples, 6.69%)</title><rect x="653.3" y="10149" width="78.9" height="15.0" fill="rgb(247,193,27)" rx="2" ry="2" /> +<text x="656.32" y="10159.5" >Nsfisis\W..</text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (3 samples, 0.11%)</title><rect x="536.7" y="10117" width="1.3" height="15.0" fill="rgb(205,111,20)" rx="2" ry="2" /> +<text x="539.71" y="10127.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Stack::pushValue (1 samples, 0.04%)</title><rect x="449.6" y="10005" width="0.4" height="15.0" fill="rgb(231,129,4)" rx="2" ry="2" /> +<text x="452.57" y="10015.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="740.5" y="10469" width="0.4" height="15.0" fill="rgb(247,129,22)" rx="2" ry="2" /> +<text x="743.46" y="10479.5" ></text> +</g> +<g > +<title><unknown> (1 samples, 0.04%)</title><rect x="377.2" y="9621" width="0.4" height="15.0" fill="rgb(213,55,50)" rx="2" ry="2" /> +<text x="380.18" y="9631.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (4 samples, 0.15%)</title><rect x="742.6" y="10421" width="1.8" height="15.0" fill="rgb(212,60,50)" rx="2" ry="2" /> +<text x="745.62" y="10431.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\MemInst::storeByte (2 samples, 0.07%)</title><rect x="237.2" y="11157" width="0.8" height="15.0" fill="rgb(246,173,36)" rx="2" ry="2" /> +<text x="240.16" y="11167.5" ></text> +</g> +<g > +<title><unknown> (2 samples, 0.07%)</title><rect x="1021.4" y="10229" width="0.8" height="15.0" fill="rgb(226,215,18)" rx="2" ry="2" /> +<text x="1024.37" y="10239.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (2 samples, 0.07%)</title><rect x="734.0" y="10261" width="0.8" height="15.0" fill="rgb(237,52,34)" rx="2" ry="2" /> +<text x="736.95" y="10271.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="744.4" y="10277" width="0.4" height="15.0" fill="rgb(219,2,12)" rx="2" ry="2" /> +<text x="747.36" y="10287.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="744.4" y="10181" width="0.4" height="15.0" fill="rgb(206,18,49)" rx="2" ry="2" /> +<text x="747.36" y="10191.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (4 samples, 0.15%)</title><rect x="869.2" y="10117" width="1.7" height="15.0" fill="rgb(249,1,21)" rx="2" ry="2" /> +<text x="872.21" y="10127.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (10 samples, 0.37%)</title><rect x="498.1" y="10341" width="4.4" height="15.0" fill="rgb(243,65,4)" rx="2" ry="2" /> +<text x="501.13" y="10351.5" ></text> +</g> +<g > +<title><unknown> (1 samples, 0.04%)</title><rect x="1021.8" y="4693" width="0.4" height="15.0" fill="rgb(211,186,15)" rx="2" ry="2" /> +<text x="1024.80" y="4703.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (1 samples, 0.04%)</title><rect x="739.6" y="10405" width="0.4" height="15.0" fill="rgb(217,51,40)" rx="2" ry="2" /> +<text x="742.59" y="10415.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="720.1" y="9861" width="0.4" height="15.0" fill="rgb(241,162,14)" rx="2" ry="2" /> +<text x="723.08" y="9871.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (5 samples, 0.18%)</title><rect x="466.0" y="9813" width="2.2" height="15.0" fill="rgb(244,138,9)" rx="2" ry="2" /> +<text x="469.05" y="9823.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (4 samples, 0.15%)</title><rect x="750.4" y="10341" width="1.8" height="15.0" fill="rgb(220,52,4)" rx="2" ry="2" /> +<text x="753.43" y="10351.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (9 samples, 0.33%)</title><rect x="664.2" y="9989" width="3.9" height="15.0" fill="rgb(216,130,31)" rx="2" ry="2" /> +<text x="667.16" y="9999.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (34 samples, 1.25%)</title><rect x="413.6" y="9637" width="14.7" height="15.0" fill="rgb(224,135,48)" rx="2" ry="2" /> +<text x="416.59" y="9647.5" ></text> +</g> +<g > +<title><unknown> (7 samples, 0.26%)</title><rect x="170.4" y="11157" width="3.0" height="15.0" fill="rgb(205,183,20)" rx="2" ry="2" /> +<text x="173.40" y="11167.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="485.1" y="9733" width="0.5" height="15.0" fill="rgb(242,208,54)" rx="2" ry="2" /> +<text x="488.12" y="9743.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (29 samples, 1.07%)</title><rect x="258.8" y="9877" width="12.6" height="15.0" fill="rgb(213,3,34)" rx="2" ry="2" /> +<text x="261.83" y="9887.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (4 samples, 0.15%)</title><rect x="304.3" y="9461" width="1.8" height="15.0" fill="rgb(245,8,44)" rx="2" ry="2" /> +<text x="307.35" y="9471.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Stack::pushI32 (1 samples, 0.04%)</title><rect x="473.4" y="9909" width="0.5" height="15.0" fill="rgb(237,97,22)" rx="2" ry="2" /> +<text x="476.42" y="9919.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (15 samples, 0.55%)</title><rect x="379.8" y="9653" width="6.5" height="15.0" fill="rgb(241,182,27)" rx="2" ry="2" /> +<text x="382.78" y="9663.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="742.2" y="10597" width="0.4" height="15.0" fill="rgb(253,210,31)" rx="2" ry="2" /> +<text x="745.19" y="10607.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (141 samples, 5.18%)</title><rect x="805.5" y="10389" width="61.1" height="15.0" fill="rgb(226,134,41)" rx="2" ry="2" /> +<text x="808.48" y="10399.5" >Nsfisi..</text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (4 samples, 0.15%)</title><rect x="259.7" y="9733" width="1.7" height="15.0" fill="rgb(253,217,40)" rx="2" ry="2" /> +<text x="262.70" y="9743.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (296 samples, 10.87%)</title><rect x="742.6" y="11109" width="128.3" height="15.0" fill="rgb(208,84,12)" rx="2" ry="2" /> +<text x="745.62" y="11119.5" >Nsfisis\Waddiwas..</text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (6 samples, 0.22%)</title><rect x="371.1" y="9717" width="2.6" height="15.0" fill="rgb(217,84,44)" rx="2" ry="2" /> +<text x="374.11" y="9727.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::invokeByFuncAddr (4 samples, 0.15%)</title><rect x="739.2" y="10757" width="1.7" height="15.0" fill="rgb(225,11,23)" rx="2" ry="2" /> +<text x="742.16" y="10767.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (39 samples, 1.43%)</title><rect x="506.4" y="10277" width="16.9" height="15.0" fill="rgb(227,195,20)" rx="2" ry="2" /> +<text x="509.36" y="10287.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (29 samples, 1.07%)</title><rect x="258.8" y="9813" width="12.6" height="15.0" fill="rgb(215,158,12)" rx="2" ry="2" /> +<text x="261.83" y="9823.5" ></text> +</g> +<g > +<title><unknown> (1 samples, 0.04%)</title><rect x="1021.8" y="2309" width="0.4" height="15.0" fill="rgb(254,229,7)" rx="2" ry="2" /> +<text x="1024.80" y="2319.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="738.3" y="10405" width="0.4" height="15.0" fill="rgb(242,51,10)" rx="2" ry="2" /> +<text x="741.29" y="10415.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (56 samples, 2.06%)</title><rect x="404.1" y="9749" width="24.2" height="15.0" fill="rgb(214,71,38)" rx="2" ry="2" /> +<text x="407.06" y="9759.5" >N..</text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="724.8" y="9941" width="0.5" height="15.0" fill="rgb(212,216,49)" rx="2" ry="2" /> +<text x="727.85" y="9951.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (36 samples, 1.32%)</title><rect x="349.4" y="9861" width="15.6" height="15.0" fill="rgb(215,20,22)" rx="2" ry="2" /> +<text x="352.43" y="9871.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="733.5" y="9605" width="0.5" height="15.0" fill="rgb(243,23,3)" rx="2" ry="2" /> +<text x="736.52" y="9615.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (1 samples, 0.04%)</title><rect x="470.4" y="9861" width="0.4" height="15.0" fill="rgb(226,93,33)" rx="2" ry="2" /> +<text x="473.38" y="9871.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\StackEntries\Value::__construct (2 samples, 0.07%)</title><rect x="142.7" y="11125" width="0.8" height="15.0" fill="rgb(236,49,43)" rx="2" ry="2" /> +<text x="145.65" y="11135.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (8 samples, 0.29%)</title><rect x="773.0" y="10133" width="3.4" height="15.0" fill="rgb(252,185,46)" rx="2" ry="2" /> +<text x="775.97" y="10143.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="443.1" y="8901" width="0.4" height="15.0" fill="rgb(225,126,44)" rx="2" ry="2" /> +<text x="446.07" y="8911.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="292.2" y="9797" width="0.4" height="15.0" fill="rgb(246,54,21)" rx="2" ry="2" /> +<text x="295.21" y="9807.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="740.9" y="10565" width="0.4" height="15.0" fill="rgb(220,91,15)" rx="2" ry="2" /> +<text x="743.89" y="10575.5" ></text> +</g> +<g > +<title>{closure}(/home/ken/src/php-waddiwasi/examples/php-on-wasm/php-wasm.php:284-295) (5 samples, 0.18%)</title><rect x="868.8" y="10517" width="2.1" height="15.0" fill="rgb(208,190,2)" rx="2" ry="2" /> +<text x="871.77" y="10527.5" ></text> +</g> +<g > +<title><unknown> (2 samples, 0.07%)</title><rect x="1021.4" y="10949" width="0.8" height="15.0" fill="rgb(247,169,21)" rx="2" ry="2" /> +<text x="1024.37" y="10959.5" ></text> +</g> +<g > +<title><unknown> (2 samples, 0.07%)</title><rect x="1021.4" y="9573" width="0.8" height="15.0" fill="rgb(252,48,13)" rx="2" ry="2" /> +<text x="1024.37" y="9583.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="738.3" y="10293" width="0.4" height="15.0" fill="rgb(228,127,34)" rx="2" ry="2" /> +<text x="741.29" y="10303.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Stack::pushI32 (1 samples, 0.04%)</title><rect x="258.0" y="9845" width="0.4" height="15.0" fill="rgb(210,54,34)" rx="2" ry="2" /> +<text x="260.96" y="9855.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="870.5" y="9733" width="0.4" height="15.0" fill="rgb(217,8,20)" rx="2" ry="2" /> +<text x="873.51" y="9743.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\StackEntry::Value (1 samples, 0.04%)</title><rect x="1042.6" y="11173" width="0.4" height="15.0" fill="rgb(230,201,1)" rx="2" ry="2" /> +<text x="1045.61" y="11183.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="742.6" y="10037" width="0.5" height="15.0" fill="rgb(231,164,44)" rx="2" ry="2" /> +<text x="745.62" y="10047.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="1170.1" y="11157" width="0.4" height="15.0" fill="rgb(207,87,27)" rx="2" ry="2" /> +<text x="1173.06" y="11167.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="485.1" y="9701" width="0.5" height="15.0" fill="rgb(212,44,16)" rx="2" ry="2" /> +<text x="488.12" y="9711.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (9 samples, 0.33%)</title><rect x="254.5" y="9909" width="3.9" height="15.0" fill="rgb(206,173,22)" rx="2" ry="2" /> +<text x="257.50" y="9919.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="867.9" y="10661" width="0.4" height="15.0" fill="rgb(206,68,18)" rx="2" ry="2" /> +<text x="870.91" y="10671.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Stack::pushValue (1 samples, 0.04%)</title><rect x="538.0" y="10261" width="0.4" height="15.0" fill="rgb(239,148,46)" rx="2" ry="2" /> +<text x="541.01" y="10271.5" ></text> +</g> +<g > +<title><unknown> (1 samples, 0.04%)</title><rect x="1021.8" y="5365" width="0.4" height="15.0" fill="rgb(214,6,49)" rx="2" ry="2" /> +<text x="1024.80" y="5375.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (461 samples, 16.94%)</title><rect x="250.2" y="10101" width="199.8" height="15.0" fill="rgb(225,0,53)" rx="2" ry="2" /> +<text x="253.16" y="10111.5" >Nsfisis\Waddiwasi\Executio..</text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (5 samples, 0.18%)</title><rect x="742.6" y="10581" width="2.2" height="15.0" fill="rgb(216,167,6)" rx="2" ry="2" /> +<text x="745.62" y="10591.5" ></text> +</g> +<g > +<title><unknown> (1 samples, 0.04%)</title><rect x="1021.8" y="2197" width="0.4" height="15.0" fill="rgb(249,8,51)" rx="2" ry="2" /> +<text x="1024.80" y="2207.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (1 samples, 0.04%)</title><rect x="484.3" y="9653" width="0.4" height="15.0" fill="rgb(213,145,17)" rx="2" ry="2" /> +<text x="487.25" y="9663.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (4 samples, 0.15%)</title><rect x="1071.2" y="11173" width="1.8" height="15.0" fill="rgb(222,116,40)" rx="2" ry="2" /> +<text x="1074.22" y="11183.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="777.3" y="10325" width="0.4" height="15.0" fill="rgb(247,1,24)" rx="2" ry="2" /> +<text x="780.30" y="10335.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="1050.0" y="10853" width="0.4" height="15.0" fill="rgb(244,220,14)" rx="2" ry="2" /> +<text x="1052.98" y="10863.5" ></text> +</g> +<g > +<title><unknown> (2 samples, 0.07%)</title><rect x="1021.4" y="7205" width="0.8" height="15.0" fill="rgb(235,85,45)" rx="2" ry="2" /> +<text x="1024.37" y="7215.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="733.5" y="9109" width="0.5" height="15.0" fill="rgb(222,48,28)" rx="2" ry="2" /> +<text x="736.52" y="9119.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (4 samples, 0.15%)</title><rect x="732.2" y="10421" width="1.8" height="15.0" fill="rgb(213,81,4)" rx="2" ry="2" /> +<text x="735.22" y="10431.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (4 samples, 0.15%)</title><rect x="363.3" y="9733" width="1.7" height="15.0" fill="rgb(244,135,39)" rx="2" ry="2" /> +<text x="366.31" y="9743.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="345.1" y="9589" width="0.4" height="15.0" fill="rgb(217,37,33)" rx="2" ry="2" /> +<text x="348.10" y="9599.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Val::NumI32 (1 samples, 0.04%)</title><rect x="238.9" y="10021" width="0.4" height="15.0" fill="rgb(224,198,49)" rx="2" ry="2" /> +<text x="241.89" y="10031.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (40 samples, 1.47%)</title><rect x="505.9" y="10293" width="17.4" height="15.0" fill="rgb(232,36,17)" rx="2" ry="2" /> +<text x="508.93" y="10303.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="442.2" y="8597" width="0.4" height="15.0" fill="rgb(218,9,36)" rx="2" ry="2" /> +<text x="445.20" y="8607.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (32 samples, 1.18%)</title><rect x="471.7" y="10037" width="13.9" height="15.0" fill="rgb(215,26,28)" rx="2" ry="2" /> +<text x="474.68" y="10047.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="1090.3" y="11077" width="0.4" height="15.0" fill="rgb(216,120,0)" rx="2" ry="2" /> +<text x="1093.29" y="11087.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (4 samples, 0.15%)</title><rect x="676.3" y="9973" width="1.7" height="15.0" fill="rgb(218,202,30)" rx="2" ry="2" /> +<text x="679.30" y="9983.5" ></text> +</g> +<g > +<title><unknown> (1 samples, 0.04%)</title><rect x="1021.8" y="1605" width="0.4" height="15.0" fill="rgb(230,20,5)" rx="2" ry="2" /> +<text x="1024.80" y="1615.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="487.7" y="9685" width="0.5" height="15.0" fill="rgb(205,50,4)" rx="2" ry="2" /> +<text x="490.72" y="9695.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="1115.9" y="10885" width="0.4" height="15.0" fill="rgb(246,88,22)" rx="2" ry="2" /> +<text x="1118.87" y="10895.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="860.1" y="10165" width="0.4" height="15.0" fill="rgb(247,121,25)" rx="2" ry="2" /> +<text x="863.10" y="10175.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="470.8" y="10037" width="0.4" height="15.0" fill="rgb(212,74,39)" rx="2" ry="2" /> +<text x="473.82" y="10047.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="870.1" y="9077" width="0.4" height="15.0" fill="rgb(252,205,41)" rx="2" ry="2" /> +<text x="873.07" y="9087.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (5 samples, 0.18%)</title><rect x="868.8" y="10917" width="2.1" height="15.0" fill="rgb(243,228,32)" rx="2" ry="2" /> +<text x="871.77" y="10927.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="740.5" y="10405" width="0.4" height="15.0" fill="rgb(235,175,35)" rx="2" ry="2" /> +<text x="743.46" y="10415.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (1 samples, 0.04%)</title><rect x="1115.9" y="11045" width="0.4" height="15.0" fill="rgb(217,223,23)" rx="2" ry="2" /> +<text x="1118.87" y="11055.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="486.4" y="9813" width="0.5" height="15.0" fill="rgb(219,224,38)" rx="2" ry="2" /> +<text x="489.42" y="9823.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (154 samples, 5.66%)</title><rect x="799.8" y="10453" width="66.8" height="15.0" fill="rgb(247,150,24)" rx="2" ry="2" /> +<text x="802.85" y="10463.5" >Nsfisis..</text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doStoreI32 (1 samples, 0.04%)</title><rect x="1056.5" y="11093" width="0.4" height="15.0" fill="rgb(234,68,9)" rx="2" ry="2" /> +<text x="1059.48" y="11103.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (1 samples, 0.04%)</title><rect x="497.3" y="10213" width="0.4" height="15.0" fill="rgb(206,103,38)" rx="2" ry="2" /> +<text x="500.26" y="10223.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="489.9" y="10165" width="0.4" height="15.0" fill="rgb(236,128,45)" rx="2" ry="2" /> +<text x="492.89" y="10175.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (5 samples, 0.18%)</title><rect x="479.9" y="9781" width="2.2" height="15.0" fill="rgb(236,107,24)" rx="2" ry="2" /> +<text x="482.92" y="9791.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="360.3" y="9733" width="0.4" height="15.0" fill="rgb(233,104,47)" rx="2" ry="2" /> +<text x="363.27" y="9743.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (2 samples, 0.07%)</title><rect x="870.1" y="10053" width="0.8" height="15.0" fill="rgb(252,32,32)" rx="2" ry="2" /> +<text x="873.07" y="10063.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (201 samples, 7.38%)</title><rect x="341.2" y="10005" width="87.1" height="15.0" fill="rgb(252,135,27)" rx="2" ry="2" /> +<text x="344.20" y="10015.5" >Nsfisis\Wa..</text> +</g> +<g > +<title><unknown> (1 samples, 0.04%)</title><rect x="1021.8" y="4133" width="0.4" height="15.0" fill="rgb(249,176,12)" rx="2" ry="2" /> +<text x="1024.80" y="4143.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="443.1" y="8501" width="0.4" height="15.0" fill="rgb(251,165,42)" rx="2" ry="2" /> +<text x="446.07" y="8511.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="870.5" y="9877" width="0.4" height="15.0" fill="rgb(205,125,14)" rx="2" ry="2" /> +<text x="873.51" y="9887.5" ></text> +</g> +<g > +<title><unknown> (1 samples, 0.04%)</title><rect x="304.3" y="9333" width="0.5" height="15.0" fill="rgb(245,196,46)" rx="2" ry="2" /> +<text x="307.35" y="9343.5" ></text> +</g> +<g > +<title><unknown> (1 samples, 0.04%)</title><rect x="1021.8" y="2549" width="0.4" height="15.0" fill="rgb(223,135,24)" rx="2" ry="2" /> +<text x="1024.80" y="2559.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="735.3" y="10405" width="0.4" height="15.0" fill="rgb(218,179,15)" rx="2" ry="2" /> +<text x="738.25" y="10415.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="870.5" y="9749" width="0.4" height="15.0" fill="rgb(246,198,52)" rx="2" ry="2" /> +<text x="873.51" y="9759.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\ControlFlowResults\Br::__construct (1 samples, 0.04%)</title><rect x="1022.7" y="11173" width="0.4" height="15.0" fill="rgb(230,129,10)" rx="2" ry="2" /> +<text x="1025.67" y="11183.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Stack::pushValue (1 samples, 0.04%)</title><rect x="522.8" y="10197" width="0.5" height="15.0" fill="rgb(221,23,30)" rx="2" ry="2" /> +<text x="525.84" y="10207.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (3 samples, 0.11%)</title><rect x="402.8" y="9413" width="1.3" height="15.0" fill="rgb(236,105,6)" rx="2" ry="2" /> +<text x="405.76" y="9423.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (4 samples, 0.15%)</title><rect x="676.3" y="9957" width="1.7" height="15.0" fill="rgb(213,53,43)" rx="2" ry="2" /> +<text x="679.30" y="9967.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (2 samples, 0.07%)</title><rect x="734.0" y="10309" width="0.8" height="15.0" fill="rgb(237,59,10)" rx="2" ry="2" /> +<text x="736.95" y="10319.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="852.7" y="10229" width="0.5" height="15.0" fill="rgb(248,171,30)" rx="2" ry="2" /> +<text x="855.73" y="10239.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="482.5" y="9781" width="0.5" height="15.0" fill="rgb(254,97,23)" rx="2" ry="2" /> +<text x="485.52" y="9791.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="1071.7" y="11045" width="0.4" height="15.0" fill="rgb(205,9,42)" rx="2" ry="2" /> +<text x="1074.65" y="11055.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="1181.3" y="11205" width="0.5" height="15.0" fill="rgb(240,2,19)" rx="2" ry="2" /> +<text x="1184.33" y="11215.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (2 samples, 0.07%)</title><rect x="486.9" y="9781" width="0.8" height="15.0" fill="rgb(248,154,21)" rx="2" ry="2" /> +<text x="489.86" y="9791.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (1,144 samples, 42.03%)</title><rect x="242.8" y="10997" width="495.9" height="15.0" fill="rgb(223,25,25)" rx="2" ry="2" /> +<text x="245.79" y="11007.5" >Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc</text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="516.8" y="10165" width="0.4" height="15.0" fill="rgb(219,14,1)" rx="2" ry="2" /> +<text x="519.77" y="10175.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="739.2" y="10309" width="0.4" height="15.0" fill="rgb(243,167,50)" rx="2" ry="2" /> +<text x="742.16" y="10319.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (5 samples, 0.18%)</title><rect x="442.2" y="9557" width="2.2" height="15.0" fill="rgb(225,180,28)" rx="2" ry="2" /> +<text x="445.20" y="9567.5" ></text> +</g> +<g > +<title><unknown> (2 samples, 0.07%)</title><rect x="1021.4" y="8277" width="0.8" height="15.0" fill="rgb(217,196,42)" rx="2" ry="2" /> +<text x="1024.37" y="8287.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doLoadI32 (1 samples, 0.04%)</title><rect x="852.7" y="10357" width="0.5" height="15.0" fill="rgb(226,79,40)" rx="2" ry="2" /> +<text x="855.73" y="10367.5" ></text> +</g> +<g > +<title><unknown> (1 samples, 0.04%)</title><rect x="1021.8" y="1445" width="0.4" height="15.0" fill="rgb(212,149,23)" rx="2" ry="2" /> +<text x="1024.80" y="1455.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="537.6" y="10053" width="0.4" height="15.0" fill="rgb(232,90,15)" rx="2" ry="2" /> +<text x="540.58" y="10063.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (2 samples, 0.07%)</title><rect x="734.0" y="10485" width="0.8" height="15.0" fill="rgb(233,154,50)" rx="2" ry="2" /> +<text x="736.95" y="10495.5" ></text> +</g> +<g > +<title><unknown> (2 samples, 0.07%)</title><rect x="1021.4" y="7685" width="0.8" height="15.0" fill="rgb(237,29,53)" rx="2" ry="2" /> +<text x="1024.37" y="7695.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\BinaryFormat\Decoder::decode (7 samples, 0.26%)</title><rect x="10.4" y="11237" width="3.1" height="15.0" fill="rgb(217,4,37)" rx="2" ry="2" /> +<text x="13.43" y="11247.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (2 samples, 0.07%)</title><rect x="404.5" y="9717" width="0.9" height="15.0" fill="rgb(220,42,6)" rx="2" ry="2" /> +<text x="407.49" y="9727.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (43 samples, 1.58%)</title><rect x="409.7" y="9669" width="18.6" height="15.0" fill="rgb(230,58,46)" rx="2" ry="2" /> +<text x="412.69" y="9679.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="775.6" y="9909" width="0.4" height="15.0" fill="rgb(251,16,53)" rx="2" ry="2" /> +<text x="778.57" y="9919.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (5 samples, 0.18%)</title><rect x="240.6" y="10933" width="2.2" height="15.0" fill="rgb(210,46,1)" rx="2" ry="2" /> +<text x="243.62" y="10943.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (1 samples, 0.04%)</title><rect x="497.3" y="10229" width="0.4" height="15.0" fill="rgb(205,95,51)" rx="2" ry="2" /> +<text x="500.26" y="10239.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (3 samples, 0.11%)</title><rect x="717.5" y="9621" width="1.3" height="15.0" fill="rgb(216,20,51)" rx="2" ry="2" /> +<text x="720.48" y="9631.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Stack::pushI32 (1 samples, 0.04%)</title><rect x="270.5" y="9717" width="0.5" height="15.0" fill="rgb(235,227,19)" rx="2" ry="2" /> +<text x="273.54" y="9727.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (5 samples, 0.18%)</title><rect x="742.6" y="10677" width="2.2" height="15.0" fill="rgb(248,35,15)" rx="2" ry="2" /> +<text x="745.62" y="10687.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (3 samples, 0.11%)</title><rect x="440.5" y="9717" width="1.3" height="15.0" fill="rgb(218,146,7)" rx="2" ry="2" /> +<text x="443.47" y="9727.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="733.5" y="9125" width="0.5" height="15.0" fill="rgb(211,126,6)" rx="2" ry="2" /> +<text x="736.52" y="9135.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (7 samples, 0.26%)</title><rect x="802.4" y="10373" width="3.1" height="15.0" fill="rgb(215,42,8)" rx="2" ry="2" /> +<text x="805.45" y="10383.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (24 samples, 0.88%)</title><rect x="783.8" y="10405" width="10.4" height="15.0" fill="rgb(245,78,23)" rx="2" ry="2" /> +<text x="786.81" y="10415.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (20 samples, 0.73%)</title><rect x="785.5" y="10389" width="8.7" height="15.0" fill="rgb(228,161,15)" rx="2" ry="2" /> +<text x="788.54" y="10399.5" ></text> +</g> +<g > +<title><unknown> (2 samples, 0.07%)</title><rect x="1021.4" y="9013" width="0.8" height="15.0" fill="rgb(222,35,6)" rx="2" ry="2" /> +<text x="1024.37" y="9023.5" ></text> +</g> +<g > +<title><unknown> (2 samples, 0.07%)</title><rect x="1021.4" y="10933" width="0.8" height="15.0" fill="rgb(231,188,8)" rx="2" ry="2" /> +<text x="1024.37" y="10943.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (10 samples, 0.37%)</title><rect x="498.1" y="10389" width="4.4" height="15.0" fill="rgb(242,2,50)" rx="2" ry="2" /> +<text x="501.13" y="10399.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="424.4" y="8869" width="0.5" height="15.0" fill="rgb(212,14,28)" rx="2" ry="2" /> +<text x="427.43" y="8879.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="318.7" y="9605" width="0.4" height="15.0" fill="rgb(224,185,40)" rx="2" ry="2" /> +<text x="321.66" y="9615.5" ></text> +</g> +<g > +<title><unknown> (2 samples, 0.07%)</title><rect x="1021.4" y="9413" width="0.8" height="15.0" fill="rgb(236,39,28)" rx="2" ry="2" /> +<text x="1024.37" y="9423.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="811.1" y="10245" width="0.5" height="15.0" fill="rgb(230,168,15)" rx="2" ry="2" /> +<text x="814.12" y="10255.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="790.7" y="10341" width="0.5" height="15.0" fill="rgb(206,72,52)" rx="2" ry="2" /> +<text x="793.74" y="10351.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Stack::pushBool (1 samples, 0.04%)</title><rect x="488.2" y="9845" width="0.4" height="15.0" fill="rgb(222,75,30)" rx="2" ry="2" /> +<text x="491.16" y="9855.5" ></text> +</g> +<g > +<title><unknown> (2 samples, 0.07%)</title><rect x="1021.4" y="8389" width="0.8" height="15.0" fill="rgb(223,128,37)" rx="2" ry="2" /> +<text x="1024.37" y="8399.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="1169.2" y="11109" width="0.4" height="15.0" fill="rgb(205,93,40)" rx="2" ry="2" /> +<text x="1172.19" y="11119.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="1050.0" y="10933" width="0.4" height="15.0" fill="rgb(221,124,52)" rx="2" ry="2" /> +<text x="1052.98" y="10943.5" ></text> +</g> +<g > +<title><unknown> (1 samples, 0.04%)</title><rect x="249.7" y="10085" width="0.5" height="15.0" fill="rgb(247,176,20)" rx="2" ry="2" /> +<text x="252.73" y="10095.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\StackEntry::Value (2 samples, 0.07%)</title><rect x="632.9" y="9893" width="0.9" height="15.0" fill="rgb(223,105,10)" rx="2" ry="2" /> +<text x="635.95" y="9903.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Stack::pushBool (1 samples, 0.04%)</title><rect x="398.9" y="9653" width="0.4" height="15.0" fill="rgb(229,105,51)" rx="2" ry="2" /> +<text x="401.85" y="9663.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="740.9" y="10581" width="0.4" height="15.0" fill="rgb(213,206,12)" rx="2" ry="2" /> +<text x="743.89" y="10591.5" ></text> +</g> +<g > +<title><unknown> (2 samples, 0.07%)</title><rect x="1021.4" y="10277" width="0.8" height="15.0" fill="rgb(242,44,13)" rx="2" ry="2" /> +<text x="1024.37" y="10287.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (4 samples, 0.15%)</title><rect x="241.1" y="10805" width="1.7" height="15.0" fill="rgb(233,133,8)" rx="2" ry="2" /> +<text x="244.06" y="10815.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (16 samples, 0.59%)</title><rect x="271.4" y="9877" width="6.9" height="15.0" fill="rgb(231,188,12)" rx="2" ry="2" /> +<text x="274.40" y="9887.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="325.2" y="9269" width="0.4" height="15.0" fill="rgb(238,198,19)" rx="2" ry="2" /> +<text x="328.16" y="9279.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="1035.2" y="11013" width="0.5" height="15.0" fill="rgb(206,116,54)" rx="2" ry="2" /> +<text x="1038.24" y="11023.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="867.0" y="10325" width="0.5" height="15.0" fill="rgb(225,29,48)" rx="2" ry="2" /> +<text x="870.04" y="10335.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="1090.3" y="11093" width="0.4" height="15.0" fill="rgb(224,20,2)" rx="2" ry="2" /> +<text x="1093.29" y="11103.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Stack::popValue (1 samples, 0.04%)</title><rect x="638.1" y="9877" width="0.5" height="15.0" fill="rgb(232,73,4)" rx="2" ry="2" /> +<text x="641.15" y="9887.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="315.6" y="9349" width="0.5" height="15.0" fill="rgb(211,93,48)" rx="2" ry="2" /> +<text x="318.62" y="9359.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="397.6" y="9429" width="0.4" height="15.0" fill="rgb(222,169,22)" rx="2" ry="2" /> +<text x="400.55" y="9439.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (9 samples, 0.33%)</title><rect x="491.2" y="10533" width="3.9" height="15.0" fill="rgb(250,177,33)" rx="2" ry="2" /> +<text x="494.19" y="10543.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="724.8" y="9733" width="0.5" height="15.0" fill="rgb(251,21,51)" rx="2" ry="2" /> +<text x="727.85" y="9743.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (3 samples, 0.11%)</title><rect x="385.0" y="9429" width="1.3" height="15.0" fill="rgb(249,106,19)" rx="2" ry="2" /> +<text x="387.98" y="9439.5" ></text> +</g> +<g > +<title><unknown> (2 samples, 0.07%)</title><rect x="1021.4" y="6645" width="0.8" height="15.0" fill="rgb(210,107,13)" rx="2" ry="2" /> +<text x="1024.37" y="6655.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (4 samples, 0.15%)</title><rect x="750.4" y="10277" width="1.8" height="15.0" fill="rgb(230,188,14)" rx="2" ry="2" /> +<text x="753.43" y="10287.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (21 samples, 0.77%)</title><rect x="308.3" y="9589" width="9.1" height="15.0" fill="rgb(245,178,35)" rx="2" ry="2" /> +<text x="311.25" y="9599.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="1036.1" y="11061" width="0.4" height="15.0" fill="rgb(238,47,30)" rx="2" ry="2" /> +<text x="1039.11" y="11071.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="1072.5" y="11109" width="0.5" height="15.0" fill="rgb(250,35,48)" rx="2" ry="2" /> +<text x="1075.52" y="11119.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="261.0" y="9445" width="0.4" height="15.0" fill="rgb(223,19,16)" rx="2" ry="2" /> +<text x="264.00" y="9455.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (3 samples, 0.11%)</title><rect x="1066.9" y="10837" width="1.3" height="15.0" fill="rgb(252,210,35)" rx="2" ry="2" /> +<text x="1069.88" y="10847.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (4 samples, 0.15%)</title><rect x="1049.1" y="11077" width="1.7" height="15.0" fill="rgb(213,65,48)" rx="2" ry="2" /> +<text x="1052.11" y="11087.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="489.5" y="10069" width="0.4" height="15.0" fill="rgb(246,104,48)" rx="2" ry="2" /> +<text x="492.46" y="10079.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (241 samples, 8.85%)</title><rect x="547.1" y="10501" width="104.5" height="15.0" fill="rgb(248,80,45)" rx="2" ry="2" /> +<text x="550.11" y="10511.5" >Nsfisis\Wadd..</text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (2 samples, 0.07%)</title><rect x="438.3" y="9765" width="0.9" height="15.0" fill="rgb(214,51,16)" rx="2" ry="2" /> +<text x="441.30" y="9775.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (22 samples, 0.81%)</title><rect x="1058.6" y="11045" width="9.6" height="15.0" fill="rgb(230,109,40)" rx="2" ry="2" /> +<text x="1061.65" y="11055.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (1 samples, 0.04%)</title><rect x="740.9" y="10693" width="0.4" height="15.0" fill="rgb(230,55,42)" rx="2" ry="2" /> +<text x="743.89" y="10703.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (56 samples, 2.06%)</title><rect x="504.2" y="10373" width="24.3" height="15.0" fill="rgb(220,125,10)" rx="2" ry="2" /> +<text x="507.20" y="10383.5" >N..</text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (5 samples, 0.18%)</title><rect x="240.6" y="10965" width="2.2" height="15.0" fill="rgb(240,102,20)" rx="2" ry="2" /> +<text x="243.62" y="10975.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Stack::push (3 samples, 0.11%)</title><rect x="1160.1" y="11253" width="1.3" height="15.0" fill="rgb(222,62,43)" rx="2" ry="2" /> +<text x="1163.09" y="11263.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (3 samples, 0.11%)</title><rect x="444.4" y="9557" width="1.3" height="15.0" fill="rgb(238,200,52)" rx="2" ry="2" /> +<text x="447.37" y="9567.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="739.2" y="10277" width="0.4" height="15.0" fill="rgb(253,16,4)" rx="2" ry="2" /> +<text x="742.16" y="10287.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Stack::pushI32 (1 samples, 0.04%)</title><rect x="1161.4" y="11189" width="0.4" height="15.0" fill="rgb(206,117,1)" rx="2" ry="2" /> +<text x="1164.39" y="11199.5" ></text> +</g> +<g > +<title><unknown> (1 samples, 0.04%)</title><rect x="1021.8" y="4853" width="0.4" height="15.0" fill="rgb(207,134,36)" rx="2" ry="2" /> +<text x="1024.80" y="4863.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="408.8" y="9301" width="0.5" height="15.0" fill="rgb(209,81,22)" rx="2" ry="2" /> +<text x="411.82" y="9311.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (1 samples, 0.04%)</title><rect x="1168.8" y="11141" width="0.4" height="15.0" fill="rgb(235,24,19)" rx="2" ry="2" /> +<text x="1171.76" y="11151.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (4 samples, 0.15%)</title><rect x="869.2" y="10293" width="1.7" height="15.0" fill="rgb(217,161,44)" rx="2" ry="2" /> +<text x="872.21" y="10303.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (5 samples, 0.18%)</title><rect x="268.4" y="9621" width="2.1" height="15.0" fill="rgb(246,34,27)" rx="2" ry="2" /> +<text x="271.37" y="9631.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="1103.3" y="11029" width="0.4" height="15.0" fill="rgb(220,4,24)" rx="2" ry="2" /> +<text x="1106.30" y="11039.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="790.3" y="10213" width="0.4" height="15.0" fill="rgb(240,123,17)" rx="2" ry="2" /> +<text x="793.31" y="10223.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="331.2" y="9669" width="0.5" height="15.0" fill="rgb(211,95,44)" rx="2" ry="2" /> +<text x="334.23" y="9679.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (6 samples, 0.22%)</title><rect x="486.4" y="9909" width="2.6" height="15.0" fill="rgb(235,39,45)" rx="2" ry="2" /> +<text x="489.42" y="9919.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="489.9" y="10005" width="0.4" height="15.0" fill="rgb(244,146,33)" rx="2" ry="2" /> +<text x="492.89" y="10015.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (1 samples, 0.04%)</title><rect x="409.3" y="9317" width="0.4" height="15.0" fill="rgb(239,139,25)" rx="2" ry="2" /> +<text x="412.26" y="9327.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="359.0" y="9541" width="0.4" height="15.0" fill="rgb(249,23,40)" rx="2" ry="2" /> +<text x="361.97" y="9551.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="739.2" y="10197" width="0.4" height="15.0" fill="rgb(243,70,18)" rx="2" ry="2" /> +<text x="742.16" y="10207.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (4 samples, 0.15%)</title><rect x="742.6" y="10405" width="1.8" height="15.0" fill="rgb(250,27,33)" rx="2" ry="2" /> +<text x="745.62" y="10415.5" ></text> +</g> +<g > +<title><unknown> (1 samples, 0.04%)</title><rect x="1021.8" y="5509" width="0.4" height="15.0" fill="rgb(229,156,11)" rx="2" ry="2" /> +<text x="1024.80" y="5519.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="427.5" y="9301" width="0.4" height="15.0" fill="rgb(229,105,24)" rx="2" ry="2" /> +<text x="430.47" y="9311.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (24 samples, 0.88%)</title><rect x="453.5" y="9877" width="10.4" height="15.0" fill="rgb(221,3,41)" rx="2" ry="2" /> +<text x="456.48" y="9887.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="453.5" y="9301" width="0.4" height="15.0" fill="rgb(240,8,24)" rx="2" ry="2" /> +<text x="456.48" y="9311.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (6 samples, 0.22%)</title><rect x="1065.6" y="10917" width="2.6" height="15.0" fill="rgb(208,207,26)" rx="2" ry="2" /> +<text x="1068.58" y="10927.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (5 samples, 0.18%)</title><rect x="495.5" y="10517" width="2.2" height="15.0" fill="rgb(216,223,0)" rx="2" ry="2" /> +<text x="498.53" y="10527.5" ></text> +</g> +<g > +<title><unknown> (2 samples, 0.07%)</title><rect x="1021.4" y="8805" width="0.8" height="15.0" fill="rgb(218,105,23)" rx="2" ry="2" /> +<text x="1024.37" y="8815.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="331.2" y="9829" width="0.5" height="15.0" fill="rgb(236,152,10)" rx="2" ry="2" /> +<text x="334.23" y="9839.5" ></text> +</g> +<g > +<title><unknown> (1 samples, 0.04%)</title><rect x="1114.1" y="11141" width="0.5" height="15.0" fill="rgb(245,10,21)" rx="2" ry="2" /> +<text x="1117.14" y="11151.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (1 samples, 0.04%)</title><rect x="468.2" y="9797" width="0.4" height="15.0" fill="rgb(206,70,23)" rx="2" ry="2" /> +<text x="471.21" y="9807.5" ></text> +</g> +<g > +<title><unknown> (1 samples, 0.04%)</title><rect x="725.3" y="9941" width="0.4" height="15.0" fill="rgb(245,37,31)" rx="2" ry="2" /> +<text x="728.28" y="9951.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeHostFunc (1 samples, 0.04%)</title><rect x="359.0" y="9413" width="0.4" height="15.0" fill="rgb(249,51,31)" rx="2" ry="2" /> +<text x="361.97" y="9423.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (5 samples, 0.18%)</title><rect x="479.9" y="9765" width="2.2" height="15.0" fill="rgb(226,157,3)" rx="2" ry="2" /> +<text x="482.92" y="9775.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="1137.5" y="11157" width="0.5" height="15.0" fill="rgb(254,104,39)" rx="2" ry="2" /> +<text x="1140.55" y="11167.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="473.4" y="9733" width="0.5" height="15.0" fill="rgb(243,3,27)" rx="2" ry="2" /> +<text x="476.42" y="9743.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="454.3" y="9429" width="0.5" height="15.0" fill="rgb(207,142,38)" rx="2" ry="2" /> +<text x="457.34" y="9439.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="427.5" y="9221" width="0.4" height="15.0" fill="rgb(234,46,31)" rx="2" ry="2" /> +<text x="430.47" y="9231.5" ></text> +</g> +<g > +<title><unknown> (1 samples, 0.04%)</title><rect x="1021.8" y="3301" width="0.4" height="15.0" fill="rgb(206,131,44)" rx="2" ry="2" /> +<text x="1024.80" y="3311.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (1 samples, 0.04%)</title><rect x="512.9" y="10165" width="0.4" height="15.0" fill="rgb(248,87,27)" rx="2" ry="2" /> +<text x="515.87" y="10175.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (3 samples, 0.11%)</title><rect x="372.4" y="9653" width="1.3" height="15.0" fill="rgb(235,108,29)" rx="2" ry="2" /> +<text x="375.41" y="9663.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (185 samples, 6.80%)</title><rect x="652.0" y="10549" width="80.2" height="15.0" fill="rgb(217,131,13)" rx="2" ry="2" /> +<text x="655.02" y="10559.5" >Nsfisis\W..</text> +</g> +<g > +<title><unknown> (1 samples, 0.04%)</title><rect x="1021.8" y="3861" width="0.4" height="15.0" fill="rgb(244,8,30)" rx="2" ry="2" /> +<text x="1024.80" y="3871.5" ></text> +</g> +<g > +<title><unknown> (2 samples, 0.07%)</title><rect x="1021.4" y="10565" width="0.8" height="15.0" fill="rgb(244,70,27)" rx="2" ry="2" /> +<text x="1024.37" y="10575.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (1 samples, 0.04%)</title><rect x="329.1" y="9845" width="0.4" height="15.0" fill="rgb(219,73,44)" rx="2" ry="2" /> +<text x="332.06" y="9855.5" ></text> +</g> +<g > +<title><unknown> (1 samples, 0.04%)</title><rect x="1021.8" y="5397" width="0.4" height="15.0" fill="rgb(225,182,13)" rx="2" ry="2" /> +<text x="1024.80" y="5407.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="446.1" y="9813" width="0.4" height="15.0" fill="rgb(219,193,5)" rx="2" ry="2" /> +<text x="449.11" y="9823.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="245.4" y="10389" width="0.4" height="15.0" fill="rgb(254,214,30)" rx="2" ry="2" /> +<text x="248.39" y="10399.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (108 samples, 3.97%)</title><rect x="280.5" y="9925" width="46.8" height="15.0" fill="rgb(224,199,7)" rx="2" ry="2" /> +<text x="283.51" y="9935.5" >Nsfi..</text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="663.7" y="10021" width="0.5" height="15.0" fill="rgb(213,193,35)" rx="2" ry="2" /> +<text x="666.73" y="10031.5" ></text> +</g> +<g > +<title><unknown> (1 samples, 0.04%)</title><rect x="1021.8" y="773" width="0.4" height="15.0" fill="rgb(205,106,19)" rx="2" ry="2" /> +<text x="1024.80" y="783.5" ></text> +</g> +<g > +<title><unknown> (1 samples, 0.04%)</title><rect x="1021.8" y="2165" width="0.4" height="15.0" fill="rgb(239,218,42)" rx="2" ry="2" /> +<text x="1024.80" y="2175.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="870.1" y="9509" width="0.4" height="15.0" fill="rgb(224,57,34)" rx="2" ry="2" /> +<text x="873.07" y="9519.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (3 samples, 0.11%)</title><rect x="440.5" y="9653" width="1.3" height="15.0" fill="rgb(233,229,19)" rx="2" ry="2" /> +<text x="443.47" y="9663.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (1 samples, 0.04%)</title><rect x="489.9" y="10085" width="0.4" height="15.0" fill="rgb(233,217,0)" rx="2" ry="2" /> +<text x="492.89" y="10095.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (4 samples, 0.15%)</title><rect x="411.4" y="9509" width="1.8" height="15.0" fill="rgb(205,107,37)" rx="2" ry="2" /> +<text x="414.43" y="9519.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="318.7" y="9477" width="0.4" height="15.0" fill="rgb(210,50,31)" rx="2" ry="2" /> +<text x="321.66" y="9487.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (2 samples, 0.07%)</title><rect x="870.1" y="10069" width="0.8" height="15.0" fill="rgb(217,5,2)" rx="2" ry="2" /> +<text x="873.07" y="10079.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (8 samples, 0.29%)</title><rect x="254.5" y="9829" width="3.5" height="15.0" fill="rgb(246,186,13)" rx="2" ry="2" /> +<text x="257.50" y="9839.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (5 samples, 0.18%)</title><rect x="240.6" y="10853" width="2.2" height="15.0" fill="rgb(213,118,15)" rx="2" ry="2" /> +<text x="243.62" y="10863.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::invokeByFuncAddr (1 samples, 0.04%)</title><rect x="867.9" y="10245" width="0.4" height="15.0" fill="rgb(236,91,9)" rx="2" ry="2" /> +<text x="870.91" y="10255.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (24 samples, 0.88%)</title><rect x="1102.0" y="11093" width="10.4" height="15.0" fill="rgb(229,203,38)" rx="2" ry="2" /> +<text x="1105.00" y="11103.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="307.8" y="9157" width="0.5" height="15.0" fill="rgb(233,183,10)" rx="2" ry="2" /> +<text x="310.82" y="9167.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="678.9" y="10021" width="0.4" height="15.0" fill="rgb(245,184,32)" rx="2" ry="2" /> +<text x="681.90" y="10031.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="1035.7" y="11045" width="0.4" height="15.0" fill="rgb(240,20,26)" rx="2" ry="2" /> +<text x="1038.67" y="11055.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (5 samples, 0.18%)</title><rect x="479.9" y="9797" width="2.2" height="15.0" fill="rgb(215,170,27)" rx="2" ry="2" /> +<text x="482.92" y="9807.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="345.1" y="9669" width="0.4" height="15.0" fill="rgb(226,64,34)" rx="2" ry="2" /> +<text x="348.10" y="9679.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Stack::pushValue (1 samples, 0.04%)</title><rect x="382.4" y="9525" width="0.4" height="15.0" fill="rgb(248,163,5)" rx="2" ry="2" /> +<text x="385.38" y="9535.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="468.2" y="9701" width="0.4" height="15.0" fill="rgb(206,27,24)" rx="2" ry="2" /> +<text x="471.21" y="9711.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (5 samples, 0.18%)</title><rect x="792.0" y="10309" width="2.2" height="15.0" fill="rgb(212,210,10)" rx="2" ry="2" /> +<text x="795.04" y="10319.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="525.4" y="10149" width="0.5" height="15.0" fill="rgb(217,77,16)" rx="2" ry="2" /> +<text x="528.44" y="10159.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Stack::pushI32 (1 samples, 0.04%)</title><rect x="427.5" y="9589" width="0.4" height="15.0" fill="rgb(238,5,14)" rx="2" ry="2" /> +<text x="430.47" y="9599.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (3 samples, 0.11%)</title><rect x="317.4" y="9669" width="1.3" height="15.0" fill="rgb(252,9,43)" rx="2" ry="2" /> +<text x="320.35" y="9679.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (2 samples, 0.07%)</title><rect x="307.0" y="9349" width="0.8" height="15.0" fill="rgb(245,81,52)" rx="2" ry="2" /> +<text x="309.95" y="9359.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="268.8" y="9445" width="0.4" height="15.0" fill="rgb(212,109,11)" rx="2" ry="2" /> +<text x="271.80" y="9455.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (3 samples, 0.11%)</title><rect x="492.5" y="10357" width="1.3" height="15.0" fill="rgb(209,29,17)" rx="2" ry="2" /> +<text x="495.49" y="10367.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (40 samples, 1.47%)</title><rect x="505.9" y="10309" width="17.4" height="15.0" fill="rgb(245,99,22)" rx="2" ry="2" /> +<text x="508.93" y="10319.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="733.5" y="9285" width="0.5" height="15.0" fill="rgb(208,229,46)" rx="2" ry="2" /> +<text x="736.52" y="9295.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (6 samples, 0.22%)</title><rect x="288.3" y="9669" width="2.6" height="15.0" fill="rgb(208,177,46)" rx="2" ry="2" /> +<text x="291.31" y="9679.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (5 samples, 0.18%)</title><rect x="868.8" y="10581" width="2.1" height="15.0" fill="rgb(239,55,21)" rx="2" ry="2" /> +<text x="871.77" y="10591.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (56 samples, 2.06%)</title><rect x="752.2" y="10341" width="24.2" height="15.0" fill="rgb(234,217,8)" rx="2" ry="2" /> +<text x="755.16" y="10351.5" >N..</text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="503.3" y="10421" width="0.5" height="15.0" fill="rgb(236,180,38)" rx="2" ry="2" /> +<text x="506.33" y="10431.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="331.2" y="9541" width="0.5" height="15.0" fill="rgb(214,174,25)" rx="2" ry="2" /> +<text x="334.23" y="9551.5" ></text> +</g> +<g > +<title><unknown> (1 samples, 0.04%)</title><rect x="1021.8" y="5749" width="0.4" height="15.0" fill="rgb(232,121,31)" rx="2" ry="2" /> +<text x="1024.80" y="5759.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (44 samples, 1.62%)</title><rect x="298.3" y="9717" width="19.1" height="15.0" fill="rgb(212,160,30)" rx="2" ry="2" /> +<text x="301.28" y="9727.5" ></text> +</g> +<g > +<title><unknown> (1 samples, 0.04%)</title><rect x="1021.8" y="1141" width="0.4" height="15.0" fill="rgb(248,159,3)" rx="2" ry="2" /> +<text x="1024.80" y="1151.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (2 samples, 0.07%)</title><rect x="734.0" y="10229" width="0.8" height="15.0" fill="rgb(244,146,29)" rx="2" ry="2" /> +<text x="736.95" y="10239.5" ></text> +</g> +<g > +<title><unknown> (2 samples, 0.07%)</title><rect x="1021.4" y="11109" width="0.8" height="15.0" fill="rgb(222,224,23)" rx="2" ry="2" /> +<text x="1024.37" y="11119.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="742.2" y="10613" width="0.4" height="15.0" fill="rgb(206,112,24)" rx="2" ry="2" /> +<text x="745.19" y="10623.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="331.2" y="9733" width="0.5" height="15.0" fill="rgb(245,99,37)" rx="2" ry="2" /> +<text x="334.23" y="9743.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (5 samples, 0.18%)</title><rect x="240.6" y="10869" width="2.2" height="15.0" fill="rgb(249,205,22)" rx="2" ry="2" /> +<text x="243.62" y="10879.5" ></text> +</g> +<g > +<title><unknown> (2 samples, 0.07%)</title><rect x="1021.4" y="7973" width="0.8" height="15.0" fill="rgb(242,115,23)" rx="2" ry="2" /> +<text x="1024.37" y="7983.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="870.1" y="8277" width="0.4" height="15.0" fill="rgb(228,70,36)" rx="2" ry="2" /> +<text x="873.07" y="8287.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="1101.6" y="11077" width="0.4" height="15.0" fill="rgb(222,183,20)" rx="2" ry="2" /> +<text x="1104.57" y="11087.5" ></text> +</g> +<g > +<title><unknown> (1 samples, 0.04%)</title><rect x="1021.8" y="1253" width="0.4" height="15.0" fill="rgb(216,229,24)" rx="2" ry="2" /> +<text x="1024.80" y="1263.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="1137.5" y="11141" width="0.5" height="15.0" fill="rgb(253,219,18)" rx="2" ry="2" /> +<text x="1140.55" y="11151.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="1105.0" y="11013" width="0.5" height="15.0" fill="rgb(234,132,4)" rx="2" ry="2" /> +<text x="1108.03" y="11023.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (3 samples, 0.11%)</title><rect x="741.3" y="10901" width="1.3" height="15.0" fill="rgb(251,33,9)" rx="2" ry="2" /> +<text x="744.32" y="10911.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="733.5" y="9589" width="0.5" height="15.0" fill="rgb(238,11,8)" rx="2" ry="2" /> +<text x="736.52" y="9599.5" ></text> +</g> +<g > +<title><unknown> (2 samples, 0.07%)</title><rect x="1021.4" y="11093" width="0.8" height="15.0" fill="rgb(254,38,11)" rx="2" ry="2" /> +<text x="1024.37" y="11103.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (4 samples, 0.15%)</title><rect x="732.2" y="10373" width="1.8" height="15.0" fill="rgb(217,163,18)" rx="2" ry="2" /> +<text x="735.22" y="10383.5" ></text> +</g> +<g > +<title><unknown> (2 samples, 0.07%)</title><rect x="1021.4" y="7813" width="0.8" height="15.0" fill="rgb(215,18,4)" rx="2" ry="2" /> +<text x="1024.37" y="7823.5" ></text> +</g> +<g > +<title><unknown> (2 samples, 0.07%)</title><rect x="1021.4" y="6789" width="0.8" height="15.0" fill="rgb(223,156,18)" rx="2" ry="2" /> +<text x="1024.37" y="6799.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="491.6" y="10405" width="0.5" height="15.0" fill="rgb(223,172,41)" rx="2" ry="2" /> +<text x="494.62" y="10415.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="869.2" y="9989" width="0.4" height="15.0" fill="rgb(235,37,23)" rx="2" ry="2" /> +<text x="872.21" y="9999.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="270.5" y="9573" width="0.5" height="15.0" fill="rgb(235,126,52)" rx="2" ry="2" /> +<text x="273.54" y="9583.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (183 samples, 6.72%)</title><rect x="652.9" y="10197" width="79.3" height="15.0" fill="rgb(241,12,34)" rx="2" ry="2" /> +<text x="655.89" y="10207.5" >Nsfisis\W..</text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doStoreI32 (1 samples, 0.04%)</title><rect x="304.8" y="9333" width="0.4" height="15.0" fill="rgb(238,69,44)" rx="2" ry="2" /> +<text x="307.78" y="9343.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (4 samples, 0.15%)</title><rect x="525.9" y="10149" width="1.7" height="15.0" fill="rgb(220,110,4)" rx="2" ry="2" /> +<text x="528.87" y="10159.5" ></text> +</g> +<g > +<title><unknown> (2 samples, 0.07%)</title><rect x="1021.4" y="8245" width="0.8" height="15.0" fill="rgb(250,17,24)" rx="2" ry="2" /> +<text x="1024.37" y="8255.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (18 samples, 0.66%)</title><rect x="319.1" y="9669" width="7.8" height="15.0" fill="rgb(240,107,52)" rx="2" ry="2" /> +<text x="322.09" y="9679.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (20 samples, 0.73%)</title><rect x="351.6" y="9701" width="8.7" height="15.0" fill="rgb(245,69,33)" rx="2" ry="2" /> +<text x="354.60" y="9711.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Stack::pushI32 (1 samples, 0.04%)</title><rect x="1143.2" y="11221" width="0.4" height="15.0" fill="rgb(208,103,0)" rx="2" ry="2" /> +<text x="1146.18" y="11231.5" ></text> +</g> +<g > +<title><unknown> (1 samples, 0.04%)</title><rect x="1021.8" y="261" width="0.4" height="15.0" fill="rgb(213,54,46)" rx="2" ry="2" /> +<text x="1024.80" y="271.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (5 samples, 0.18%)</title><rect x="868.8" y="10805" width="2.1" height="15.0" fill="rgb(215,199,52)" rx="2" ry="2" /> +<text x="871.77" y="10815.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (15 samples, 0.55%)</title><rect x="1061.7" y="10981" width="6.5" height="15.0" fill="rgb(239,42,52)" rx="2" ry="2" /> +<text x="1064.68" y="10991.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (14 samples, 0.51%)</title><rect x="262.3" y="9637" width="6.1" height="15.0" fill="rgb(222,100,17)" rx="2" ry="2" /> +<text x="265.30" y="9647.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (4 samples, 0.15%)</title><rect x="732.2" y="10389" width="1.8" height="15.0" fill="rgb(209,204,18)" rx="2" ry="2" /> +<text x="735.22" y="10399.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (80 samples, 2.94%)</title><rect x="292.6" y="9797" width="34.7" height="15.0" fill="rgb(244,188,14)" rx="2" ry="2" /> +<text x="295.65" y="9807.5" >Ns..</text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doStoreI32 (1 samples, 0.04%)</title><rect x="360.3" y="9781" width="0.4" height="15.0" fill="rgb(230,17,27)" rx="2" ry="2" /> +<text x="363.27" y="9791.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="868.3" y="10757" width="0.5" height="15.0" fill="rgb(207,179,46)" rx="2" ry="2" /> +<text x="871.34" y="10767.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (23 samples, 0.84%)</title><rect x="439.6" y="9973" width="10.0" height="15.0" fill="rgb(251,33,39)" rx="2" ry="2" /> +<text x="442.60" y="9983.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (2 samples, 0.07%)</title><rect x="530.2" y="10085" width="0.9" height="15.0" fill="rgb(226,62,9)" rx="2" ry="2" /> +<text x="533.21" y="10095.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (1 samples, 0.04%)</title><rect x="734.8" y="10597" width="0.5" height="15.0" fill="rgb(214,3,14)" rx="2" ry="2" /> +<text x="737.82" y="10607.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (2 samples, 0.07%)</title><rect x="734.0" y="10373" width="0.8" height="15.0" fill="rgb(210,14,10)" rx="2" ry="2" /> +<text x="736.95" y="10383.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="867.9" y="10181" width="0.4" height="15.0" fill="rgb(229,82,50)" rx="2" ry="2" /> +<text x="870.91" y="10191.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="1161.4" y="11141" width="0.4" height="15.0" fill="rgb(238,223,45)" rx="2" ry="2" /> +<text x="1164.39" y="11151.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="790.3" y="10165" width="0.4" height="15.0" fill="rgb(218,20,15)" rx="2" ry="2" /> +<text x="793.31" y="10175.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Stack::popValue (1 samples, 0.04%)</title><rect x="781.6" y="10229" width="0.5" height="15.0" fill="rgb(216,154,4)" rx="2" ry="2" /> +<text x="784.64" y="10239.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (32 samples, 1.18%)</title><rect x="471.7" y="10021" width="13.9" height="15.0" fill="rgb(243,61,13)" rx="2" ry="2" /> +<text x="474.68" y="10031.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (2 samples, 0.07%)</title><rect x="307.0" y="9253" width="0.8" height="15.0" fill="rgb(249,6,34)" rx="2" ry="2" /> +<text x="309.95" y="9263.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Structure\Types\FuncType::__construct (1 samples, 0.04%)</title><rect x="794.6" y="10469" width="0.5" height="15.0" fill="rgb(244,150,22)" rx="2" ry="2" /> +<text x="797.64" y="10479.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (42 samples, 1.54%)</title><rect x="471.2" y="10085" width="18.3" height="15.0" fill="rgb(212,66,16)" rx="2" ry="2" /> +<text x="474.25" y="10095.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="392.8" y="9525" width="0.4" height="15.0" fill="rgb(245,121,37)" rx="2" ry="2" /> +<text x="395.78" y="9535.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="453.5" y="9237" width="0.4" height="15.0" fill="rgb(208,35,30)" rx="2" ry="2" /> +<text x="456.48" y="9247.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="739.2" y="10245" width="0.4" height="15.0" fill="rgb(211,169,42)" rx="2" ry="2" /> +<text x="742.16" y="10255.5" ></text> +</g> +<g > +<title><unknown> (54 samples, 1.98%)</title><rect x="120.5" y="11157" width="23.5" height="15.0" fill="rgb(220,138,9)" rx="2" ry="2" /> +<text x="123.54" y="11167.5" ><..</text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (1 samples, 0.04%)</title><rect x="744.4" y="10325" width="0.4" height="15.0" fill="rgb(206,202,43)" rx="2" ry="2" /> +<text x="747.36" y="10335.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (1 samples, 0.04%)</title><rect x="1137.5" y="11189" width="0.5" height="15.0" fill="rgb(233,201,12)" rx="2" ry="2" /> +<text x="1140.55" y="11199.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="781.6" y="10261" width="0.5" height="15.0" fill="rgb(223,188,15)" rx="2" ry="2" /> +<text x="784.64" y="10271.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (23 samples, 0.84%)</title><rect x="528.9" y="10309" width="10.0" height="15.0" fill="rgb(253,162,51)" rx="2" ry="2" /> +<text x="531.91" y="10319.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="870.1" y="8037" width="0.4" height="15.0" fill="rgb(252,60,13)" rx="2" ry="2" /> +<text x="873.07" y="8047.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (44 samples, 1.62%)</title><rect x="660.3" y="10053" width="19.0" height="15.0" fill="rgb(206,0,34)" rx="2" ry="2" /> +<text x="663.26" y="10063.5" ></text> +</g> +<g > +<title><unknown> (2 samples, 0.07%)</title><rect x="1021.4" y="9285" width="0.8" height="15.0" fill="rgb(248,165,20)" rx="2" ry="2" /> +<text x="1024.37" y="9295.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="867.9" y="10597" width="0.4" height="15.0" fill="rgb(252,202,33)" rx="2" ry="2" /> +<text x="870.91" y="10607.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (562 samples, 20.65%)</title><rect x="246.7" y="10341" width="243.6" height="15.0" fill="rgb(251,184,32)" rx="2" ry="2" /> +<text x="249.69" y="10351.5" >Nsfisis\Waddiwasi\Execution\Runt..</text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Stack::popI32 (1 samples, 0.04%)</title><rect x="239.8" y="10773" width="0.4" height="15.0" fill="rgb(230,79,6)" rx="2" ry="2" /> +<text x="242.76" y="10783.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="483.8" y="9685" width="0.5" height="15.0" fill="rgb(244,213,40)" rx="2" ry="2" /> +<text x="486.82" y="9695.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (83 samples, 3.05%)</title><rect x="503.8" y="10469" width="35.9" height="15.0" fill="rgb(232,188,37)" rx="2" ry="2" /> +<text x="506.76" y="10479.5" >Nsf..</text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::deactivateLabel (1 samples, 0.04%)</title><rect x="326.5" y="9573" width="0.4" height="15.0" fill="rgb(245,165,41)" rx="2" ry="2" /> +<text x="329.46" y="9583.5" ></text> +</g> +<g > +<title><unknown> (2 samples, 0.07%)</title><rect x="1021.4" y="6677" width="0.8" height="15.0" fill="rgb(221,96,48)" rx="2" ry="2" /> +<text x="1024.37" y="6687.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (1 samples, 0.04%)</title><rect x="489.9" y="10181" width="0.4" height="15.0" fill="rgb(251,5,6)" rx="2" ry="2" /> +<text x="492.89" y="10191.5" ></text> +</g> +<g > +<title><unknown> (1 samples, 0.04%)</title><rect x="1021.8" y="501" width="0.4" height="15.0" fill="rgb(217,182,31)" rx="2" ry="2" /> +<text x="1024.80" y="511.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (10 samples, 0.37%)</title><rect x="381.9" y="9573" width="4.4" height="15.0" fill="rgb(234,172,34)" rx="2" ry="2" /> +<text x="384.95" y="9583.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (5 samples, 0.18%)</title><rect x="868.8" y="10357" width="2.1" height="15.0" fill="rgb(232,129,28)" rx="2" ry="2" /> +<text x="871.77" y="10367.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="536.3" y="9845" width="0.4" height="15.0" fill="rgb(215,201,22)" rx="2" ry="2" /> +<text x="539.27" y="9855.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="740.9" y="10501" width="0.4" height="15.0" fill="rgb(231,128,44)" rx="2" ry="2" /> +<text x="743.89" y="10511.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (23 samples, 0.84%)</title><rect x="528.9" y="10405" width="10.0" height="15.0" fill="rgb(231,195,20)" rx="2" ry="2" /> +<text x="531.91" y="10415.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Num::I32 (1 samples, 0.04%)</title><rect x="1128.9" y="11237" width="0.4" height="15.0" fill="rgb(253,156,33)" rx="2" ry="2" /> +<text x="1131.88" y="11247.5" ></text> +</g> +<g > +<title><unknown> (1 samples, 0.04%)</title><rect x="321.7" y="9573" width="0.4" height="15.0" fill="rgb(244,55,21)" rx="2" ry="2" /> +<text x="324.69" y="9583.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="1129.7" y="11205" width="0.5" height="15.0" fill="rgb(227,142,17)" rx="2" ry="2" /> +<text x="1132.74" y="11215.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (2 samples, 0.07%)</title><rect x="467.3" y="9525" width="0.9" height="15.0" fill="rgb(239,124,1)" rx="2" ry="2" /> +<text x="470.35" y="9535.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (1 samples, 0.04%)</title><rect x="796.8" y="10485" width="0.4" height="15.0" fill="rgb(250,7,51)" rx="2" ry="2" /> +<text x="799.81" y="10495.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (5 samples, 0.18%)</title><rect x="868.8" y="10741" width="2.1" height="15.0" fill="rgb(225,21,54)" rx="2" ry="2" /> +<text x="871.77" y="10751.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Stack::popValue (2 samples, 0.07%)</title><rect x="639.0" y="9909" width="0.9" height="15.0" fill="rgb(218,122,38)" rx="2" ry="2" /> +<text x="642.02" y="9919.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (19 samples, 0.70%)</title><rect x="283.5" y="9749" width="8.3" height="15.0" fill="rgb(250,89,53)" rx="2" ry="2" /> +<text x="286.54" y="9759.5" ></text> +</g> +<g > +<title><unknown> (2 samples, 0.07%)</title><rect x="1021.4" y="7413" width="0.8" height="15.0" fill="rgb(222,187,18)" rx="2" ry="2" /> +<text x="1024.37" y="7423.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="238.9" y="10341" width="0.4" height="15.0" fill="rgb(241,6,29)" rx="2" ry="2" /> +<text x="241.89" y="10351.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Stack::pushValue (1 samples, 0.04%)</title><rect x="528.0" y="10325" width="0.5" height="15.0" fill="rgb(245,176,28)" rx="2" ry="2" /> +<text x="531.04" y="10335.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (24 samples, 0.88%)</title><rect x="783.8" y="10421" width="10.4" height="15.0" fill="rgb(219,205,45)" rx="2" ry="2" /> +<text x="786.81" y="10431.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (19 samples, 0.70%)</title><rect x="495.1" y="10549" width="8.2" height="15.0" fill="rgb(210,177,1)" rx="2" ry="2" /> +<text x="498.09" y="10559.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="870.1" y="8453" width="0.4" height="15.0" fill="rgb(220,96,24)" rx="2" ry="2" /> +<text x="873.07" y="8463.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="739.6" y="10197" width="0.4" height="15.0" fill="rgb(240,193,4)" rx="2" ry="2" /> +<text x="742.59" y="10207.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (1 samples, 0.04%)</title><rect x="870.1" y="7861" width="0.4" height="15.0" fill="rgb(226,145,26)" rx="2" ry="2" /> +<text x="873.07" y="7871.5" ></text> +</g> +<g > +<title><unknown> (1 samples, 0.04%)</title><rect x="404.5" y="9573" width="0.4" height="15.0" fill="rgb(247,35,39)" rx="2" ry="2" /> +<text x="407.49" y="9583.5" ></text> +</g> +<g > +<title><unknown> (1 samples, 0.04%)</title><rect x="144.8" y="11141" width="0.5" height="15.0" fill="rgb(210,206,2)" rx="2" ry="2" /> +<text x="147.82" y="11151.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (6 samples, 0.22%)</title><rect x="721.4" y="9957" width="2.6" height="15.0" fill="rgb(214,42,51)" rx="2" ry="2" /> +<text x="724.38" y="9967.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (2 samples, 0.07%)</title><rect x="717.9" y="9589" width="0.9" height="15.0" fill="rgb(235,166,34)" rx="2" ry="2" /> +<text x="720.91" y="9599.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\StackEntry::Value (1 samples, 0.04%)</title><rect x="245.8" y="10405" width="0.5" height="15.0" fill="rgb(209,42,5)" rx="2" ry="2" /> +<text x="248.83" y="10415.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (4 samples, 0.15%)</title><rect x="742.6" y="10357" width="1.8" height="15.0" fill="rgb(209,14,43)" rx="2" ry="2" /> +<text x="745.62" y="10367.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\ControlFlowResults\Br::__construct (1 samples, 0.04%)</title><rect x="352.9" y="9365" width="0.4" height="15.0" fill="rgb(207,34,20)" rx="2" ry="2" /> +<text x="355.90" y="9375.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="316.9" y="9381" width="0.5" height="15.0" fill="rgb(241,11,10)" rx="2" ry="2" /> +<text x="319.92" y="9391.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="1067.8" y="10597" width="0.4" height="15.0" fill="rgb(207,78,34)" rx="2" ry="2" /> +<text x="1070.75" y="10607.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (3 samples, 0.11%)</title><rect x="741.3" y="11077" width="1.3" height="15.0" fill="rgb(233,206,12)" rx="2" ry="2" /> +<text x="744.32" y="11087.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (8 samples, 0.29%)</title><rect x="400.6" y="9717" width="3.5" height="15.0" fill="rgb(247,155,35)" rx="2" ry="2" /> +<text x="403.59" y="9727.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="307.8" y="9237" width="0.5" height="15.0" fill="rgb(217,58,7)" rx="2" ry="2" /> +<text x="310.82" y="9247.5" ></text> +</g> +<g > +<title><unknown> (1 samples, 0.04%)</title><rect x="1021.8" y="2101" width="0.4" height="15.0" fill="rgb(254,148,38)" rx="2" ry="2" /> +<text x="1024.80" y="2111.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="733.5" y="9909" width="0.5" height="15.0" fill="rgb(229,50,12)" rx="2" ry="2" /> +<text x="736.52" y="9919.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="469.1" y="9749" width="0.4" height="15.0" fill="rgb(216,180,40)" rx="2" ry="2" /> +<text x="472.08" y="9759.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (42 samples, 1.54%)</title><rect x="753.9" y="10165" width="18.2" height="15.0" fill="rgb(228,35,20)" rx="2" ry="2" /> +<text x="756.89" y="10175.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="469.5" y="9637" width="0.4" height="15.0" fill="rgb(237,12,9)" rx="2" ry="2" /> +<text x="472.52" y="9647.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (2 samples, 0.07%)</title><rect x="526.7" y="9973" width="0.9" height="15.0" fill="rgb(249,9,30)" rx="2" ry="2" /> +<text x="529.74" y="9983.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (2 samples, 0.07%)</title><rect x="442.2" y="8885" width="0.9" height="15.0" fill="rgb(222,78,27)" rx="2" ry="2" /> +<text x="445.20" y="8895.5" ></text> +</g> +<g > +<title><unknown> (2 samples, 0.07%)</title><rect x="1021.4" y="10757" width="0.8" height="15.0" fill="rgb(224,197,21)" rx="2" ry="2" /> +<text x="1024.37" y="10767.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="351.2" y="9541" width="0.4" height="15.0" fill="rgb(251,215,54)" rx="2" ry="2" /> +<text x="354.17" y="9551.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="849.7" y="10181" width="0.4" height="15.0" fill="rgb(229,137,42)" rx="2" ry="2" /> +<text x="852.70" y="10191.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (23 samples, 0.84%)</title><rect x="720.5" y="10021" width="10.0" height="15.0" fill="rgb(205,48,35)" rx="2" ry="2" /> +<text x="723.51" y="10031.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="536.3" y="9941" width="0.4" height="15.0" fill="rgb(233,15,8)" rx="2" ry="2" /> +<text x="539.27" y="9951.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (4 samples, 0.15%)</title><rect x="742.6" y="10165" width="1.8" height="15.0" fill="rgb(207,94,3)" rx="2" ry="2" /> +<text x="745.62" y="10175.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="443.5" y="9429" width="0.4" height="15.0" fill="rgb(232,166,28)" rx="2" ry="2" /> +<text x="446.50" y="9439.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (5 samples, 0.18%)</title><rect x="868.8" y="10629" width="2.1" height="15.0" fill="rgb(242,106,39)" rx="2" ry="2" /> +<text x="871.77" y="10639.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="738.3" y="10277" width="0.4" height="15.0" fill="rgb(244,84,10)" rx="2" ry="2" /> +<text x="741.29" y="10287.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (10 samples, 0.37%)</title><rect x="498.1" y="10357" width="4.4" height="15.0" fill="rgb(238,105,23)" rx="2" ry="2" /> +<text x="501.13" y="10367.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="862.3" y="10197" width="0.4" height="15.0" fill="rgb(206,53,53)" rx="2" ry="2" /> +<text x="865.27" y="10207.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="1067.8" y="10709" width="0.4" height="15.0" fill="rgb(239,210,52)" rx="2" ry="2" /> +<text x="1070.75" y="10719.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Stack::popValue (1 samples, 0.04%)</title><rect x="165.2" y="11141" width="0.4" height="15.0" fill="rgb(211,40,38)" rx="2" ry="2" /> +<text x="168.19" y="11151.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (1 samples, 0.04%)</title><rect x="482.5" y="9749" width="0.5" height="15.0" fill="rgb(205,9,12)" rx="2" ry="2" /> +<text x="485.52" y="9759.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Stack::popValue (1 samples, 0.04%)</title><rect x="769.9" y="9909" width="0.5" height="15.0" fill="rgb(212,143,17)" rx="2" ry="2" /> +<text x="772.93" y="9919.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="742.2" y="10565" width="0.4" height="15.0" fill="rgb(251,101,54)" rx="2" ry="2" /> +<text x="745.19" y="10575.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="1041.7" y="11077" width="0.5" height="15.0" fill="rgb(244,161,12)" rx="2" ry="2" /> +<text x="1044.74" y="11087.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (1 samples, 0.04%)</title><rect x="320.0" y="9605" width="0.4" height="15.0" fill="rgb(223,105,4)" rx="2" ry="2" /> +<text x="322.96" y="9615.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="868.3" y="10965" width="0.5" height="15.0" fill="rgb(207,151,37)" rx="2" ry="2" /> +<text x="871.34" y="10975.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="489.0" y="9877" width="0.5" height="15.0" fill="rgb(214,29,27)" rx="2" ry="2" /> +<text x="492.02" y="9887.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="409.3" y="9157" width="0.4" height="15.0" fill="rgb(245,147,1)" rx="2" ry="2" /> +<text x="412.26" y="9167.5" ></text> +</g> +<g > +<title><unknown> (1 samples, 0.04%)</title><rect x="1021.8" y="4677" width="0.4" height="15.0" fill="rgb(253,191,41)" rx="2" ry="2" /> +<text x="1024.80" y="4687.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (20 samples, 0.73%)</title><rect x="261.9" y="9717" width="8.6" height="15.0" fill="rgb(207,171,31)" rx="2" ry="2" /> +<text x="264.87" y="9727.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (9 samples, 0.33%)</title><rect x="238.9" y="10981" width="3.9" height="15.0" fill="rgb(213,56,50)" rx="2" ry="2" /> +<text x="241.89" y="10991.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="1067.8" y="10405" width="0.4" height="15.0" fill="rgb(205,190,23)" rx="2" ry="2" /> +<text x="1070.75" y="10415.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (5 samples, 0.18%)</title><rect x="779.9" y="10341" width="2.2" height="15.0" fill="rgb(206,147,45)" rx="2" ry="2" /> +<text x="782.90" y="10351.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="870.1" y="8533" width="0.4" height="15.0" fill="rgb(225,134,39)" rx="2" ry="2" /> +<text x="873.07" y="8543.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="443.1" y="8789" width="0.4" height="15.0" fill="rgb(215,229,7)" rx="2" ry="2" /> +<text x="446.07" y="8799.5" ></text> +</g> +<g > +<title><unknown> (1 samples, 0.04%)</title><rect x="304.3" y="9317" width="0.5" height="15.0" fill="rgb(222,213,45)" rx="2" ry="2" /> +<text x="307.35" y="9327.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="484.3" y="9525" width="0.4" height="15.0" fill="rgb(208,115,39)" rx="2" ry="2" /> +<text x="487.25" y="9535.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (10 samples, 0.37%)</title><rect x="786.8" y="10357" width="4.4" height="15.0" fill="rgb(253,150,32)" rx="2" ry="2" /> +<text x="789.84" y="10367.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (562 samples, 20.65%)</title><rect x="246.7" y="10325" width="243.6" height="15.0" fill="rgb(212,175,8)" rx="2" ry="2" /> +<text x="249.69" y="10335.5" >Nsfisis\Waddiwasi\Execution\Runt..</text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="491.6" y="10341" width="0.5" height="15.0" fill="rgb(248,156,41)" rx="2" ry="2" /> +<text x="494.62" y="10351.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (4 samples, 0.15%)</title><rect x="304.3" y="9429" width="1.8" height="15.0" fill="rgb(215,188,35)" rx="2" ry="2" /> +<text x="307.35" y="9439.5" ></text> +</g> +<g > +<title><unknown> (1 samples, 0.04%)</title><rect x="1021.8" y="1861" width="0.4" height="15.0" fill="rgb(225,187,38)" rx="2" ry="2" /> +<text x="1024.80" y="1871.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="316.9" y="9429" width="0.5" height="15.0" fill="rgb(250,27,28)" rx="2" ry="2" /> +<text x="319.92" y="9439.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="870.1" y="9397" width="0.4" height="15.0" fill="rgb(242,100,37)" rx="2" ry="2" /> +<text x="873.07" y="9407.5" ></text> +</g> +<g > +<title><unknown> (2 samples, 0.07%)</title><rect x="1021.4" y="6245" width="0.8" height="15.0" fill="rgb(253,82,23)" rx="2" ry="2" /> +<text x="1024.37" y="6255.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Stack::pushValue (1 samples, 0.04%)</title><rect x="1116.3" y="11189" width="0.4" height="15.0" fill="rgb(205,215,10)" rx="2" ry="2" /> +<text x="1119.30" y="11199.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::invokeByFuncAddr (5 samples, 0.18%)</title><rect x="868.8" y="10821" width="2.1" height="15.0" fill="rgb(245,211,50)" rx="2" ry="2" /> +<text x="871.77" y="10831.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (241 samples, 8.85%)</title><rect x="547.1" y="10261" width="104.5" height="15.0" fill="rgb(212,61,32)" rx="2" ry="2" /> +<text x="550.11" y="10271.5" >Nsfisis\Wadd..</text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (2 samples, 0.07%)</title><rect x="496.0" y="10277" width="0.8" height="15.0" fill="rgb(227,159,27)" rx="2" ry="2" /> +<text x="498.96" y="10287.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (16 samples, 0.59%)</title><rect x="1061.2" y="10997" width="7.0" height="15.0" fill="rgb(245,37,3)" rx="2" ry="2" /> +<text x="1064.25" y="11007.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="484.3" y="9541" width="0.4" height="15.0" fill="rgb(254,20,33)" rx="2" ry="2" /> +<text x="487.25" y="9551.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="476.0" y="9781" width="0.5" height="15.0" fill="rgb(254,221,21)" rx="2" ry="2" /> +<text x="479.02" y="9791.5" ></text> +</g> +<g > +<title><unknown> (1 samples, 0.04%)</title><rect x="1021.8" y="2853" width="0.4" height="15.0" fill="rgb(225,208,48)" rx="2" ry="2" /> +<text x="1024.80" y="2863.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (1 samples, 0.04%)</title><rect x="409.3" y="9333" width="0.4" height="15.0" fill="rgb(210,54,25)" rx="2" ry="2" /> +<text x="412.26" y="9343.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (4 samples, 0.15%)</title><rect x="851.0" y="10245" width="1.7" height="15.0" fill="rgb(205,45,32)" rx="2" ry="2" /> +<text x="854.00" y="10255.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="870.1" y="8245" width="0.4" height="15.0" fill="rgb(224,42,11)" rx="2" ry="2" /> +<text x="873.07" y="8255.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (3 samples, 0.11%)</title><rect x="307.0" y="9461" width="1.3" height="15.0" fill="rgb(209,83,45)" rx="2" ry="2" /> +<text x="309.95" y="9471.5" ></text> +</g> +<g > +<title><unknown> (1 samples, 0.04%)</title><rect x="1021.8" y="4469" width="0.4" height="15.0" fill="rgb(216,157,31)" rx="2" ry="2" /> +<text x="1024.80" y="4479.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doLoadI32 (1 samples, 0.04%)</title><rect x="1101.6" y="11093" width="0.4" height="15.0" fill="rgb(212,144,52)" rx="2" ry="2" /> +<text x="1104.57" y="11103.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="744.4" y="10261" width="0.4" height="15.0" fill="rgb(228,44,16)" rx="2" ry="2" /> +<text x="747.36" y="10271.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (1 samples, 0.04%)</title><rect x="739.2" y="10533" width="0.4" height="15.0" fill="rgb(244,107,28)" rx="2" ry="2" /> +<text x="742.16" y="10543.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (69 samples, 2.53%)</title><rect x="297.4" y="9765" width="29.9" height="15.0" fill="rgb(235,56,24)" rx="2" ry="2" /> +<text x="300.41" y="9775.5" >Ns..</text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (1 samples, 0.04%)</title><rect x="865.7" y="10229" width="0.5" height="15.0" fill="rgb(254,49,27)" rx="2" ry="2" /> +<text x="868.74" y="10239.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="265.3" y="9413" width="0.5" height="15.0" fill="rgb(209,203,1)" rx="2" ry="2" /> +<text x="268.33" y="9423.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="734.0" y="10101" width="0.4" height="15.0" fill="rgb(246,150,40)" rx="2" ry="2" /> +<text x="736.95" y="10111.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (25 samples, 0.92%)</title><rect x="1057.3" y="11077" width="10.9" height="15.0" fill="rgb(247,103,13)" rx="2" ry="2" /> +<text x="1060.35" y="11087.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="1095.1" y="11093" width="0.4" height="15.0" fill="rgb(246,125,46)" rx="2" ry="2" /> +<text x="1098.06" y="11103.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (2 samples, 0.07%)</title><rect x="419.7" y="9429" width="0.8" height="15.0" fill="rgb(241,132,6)" rx="2" ry="2" /> +<text x="422.66" y="9439.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="536.3" y="9989" width="0.4" height="15.0" fill="rgb(238,89,16)" rx="2" ry="2" /> +<text x="539.27" y="9999.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (2 samples, 0.07%)</title><rect x="241.9" y="10677" width="0.9" height="15.0" fill="rgb(206,30,15)" rx="2" ry="2" /> +<text x="244.93" y="10687.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (2 samples, 0.07%)</title><rect x="277.0" y="9685" width="0.9" height="15.0" fill="rgb(248,123,19)" rx="2" ry="2" /> +<text x="280.04" y="9695.5" ></text> +</g> +<g > +<title><unknown> (1 samples, 0.04%)</title><rect x="142.2" y="11125" width="0.5" height="15.0" fill="rgb(245,91,5)" rx="2" ry="2" /> +<text x="145.22" y="11135.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (6 samples, 0.22%)</title><rect x="738.7" y="10869" width="2.6" height="15.0" fill="rgb(219,53,39)" rx="2" ry="2" /> +<text x="741.72" y="10879.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (89 samples, 3.27%)</title><rect x="814.2" y="10341" width="38.5" height="15.0" fill="rgb(238,144,31)" rx="2" ry="2" /> +<text x="817.15" y="10351.5" >Nsf..</text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="448.7" y="9845" width="0.4" height="15.0" fill="rgb(222,24,7)" rx="2" ry="2" /> +<text x="451.71" y="9855.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="1128.9" y="11141" width="0.4" height="15.0" fill="rgb(251,156,46)" rx="2" ry="2" /> +<text x="1131.88" y="11151.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (4 samples, 0.15%)</title><rect x="750.4" y="10309" width="1.8" height="15.0" fill="rgb(224,11,14)" rx="2" ry="2" /> +<text x="753.43" y="10319.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (514 samples, 18.88%)</title><rect x="248.4" y="10133" width="222.8" height="15.0" fill="rgb(234,2,8)" rx="2" ry="2" /> +<text x="251.43" y="10143.5" >Nsfisis\Waddiwasi\Execution\R..</text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (4 samples, 0.15%)</title><rect x="411.4" y="9445" width="1.8" height="15.0" fill="rgb(209,145,38)" rx="2" ry="2" /> +<text x="414.43" y="9455.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="870.1" y="9189" width="0.4" height="15.0" fill="rgb(251,190,30)" rx="2" ry="2" /> +<text x="873.07" y="9199.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Stack::popValue (3 samples, 0.11%)</title><rect x="215.9" y="11141" width="1.3" height="15.0" fill="rgb(224,218,8)" rx="2" ry="2" /> +<text x="218.91" y="11151.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (5 samples, 0.18%)</title><rect x="240.6" y="10837" width="2.2" height="15.0" fill="rgb(248,101,33)" rx="2" ry="2" /> +<text x="243.62" y="10847.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (12 samples, 0.44%)</title><rect x="330.4" y="9893" width="5.2" height="15.0" fill="rgb(205,208,30)" rx="2" ry="2" /> +<text x="333.36" y="9903.5" ></text> +</g> +<g > +<title><unknown> (1 samples, 0.04%)</title><rect x="1021.8" y="3605" width="0.4" height="15.0" fill="rgb(237,187,43)" rx="2" ry="2" /> +<text x="1024.80" y="3615.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="733.5" y="8853" width="0.5" height="15.0" fill="rgb(248,138,48)" rx="2" ry="2" /> +<text x="736.52" y="8863.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (1 samples, 0.04%)</title><rect x="730.9" y="10021" width="0.5" height="15.0" fill="rgb(212,226,21)" rx="2" ry="2" /> +<text x="733.92" y="10031.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\StackEntry::Value (1 samples, 0.04%)</title><rect x="716.6" y="9829" width="0.4" height="15.0" fill="rgb(227,228,45)" rx="2" ry="2" /> +<text x="719.61" y="9839.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (16 samples, 0.59%)</title><rect x="531.1" y="10277" width="6.9" height="15.0" fill="rgb(210,150,16)" rx="2" ry="2" /> +<text x="534.07" y="10287.5" ></text> +</g> +<g > +<title><unknown> (2 samples, 0.07%)</title><rect x="1021.4" y="8997" width="0.8" height="15.0" fill="rgb(220,17,7)" rx="2" ry="2" /> +<text x="1024.37" y="9007.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::deactivateLabel (1 samples, 0.04%)</title><rect x="473.4" y="9925" width="0.5" height="15.0" fill="rgb(242,31,12)" rx="2" ry="2" /> +<text x="476.42" y="9935.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="484.3" y="9573" width="0.4" height="15.0" fill="rgb(248,78,8)" rx="2" ry="2" /> +<text x="487.25" y="9583.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="244.5" y="10325" width="0.5" height="15.0" fill="rgb(234,203,7)" rx="2" ry="2" /> +<text x="247.53" y="10335.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="870.5" y="9861" width="0.4" height="15.0" fill="rgb(248,34,31)" rx="2" ry="2" /> +<text x="873.51" y="9871.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (7 samples, 0.26%)</title><rect x="446.5" y="9941" width="3.1" height="15.0" fill="rgb(251,83,28)" rx="2" ry="2" /> +<text x="449.54" y="9951.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="1067.8" y="10373" width="0.4" height="15.0" fill="rgb(226,226,27)" rx="2" ry="2" /> +<text x="1070.75" y="10383.5" ></text> +</g> +<g > +<title><unknown> (2 samples, 0.07%)</title><rect x="1021.4" y="9765" width="0.8" height="15.0" fill="rgb(248,8,37)" rx="2" ry="2" /> +<text x="1024.37" y="9775.5" ></text> +</g> +<g > +<title><unknown> (1 samples, 0.04%)</title><rect x="726.1" y="9861" width="0.5" height="15.0" fill="rgb(219,168,19)" rx="2" ry="2" /> +<text x="729.15" y="9871.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="742.2" y="10549" width="0.4" height="15.0" fill="rgb(229,161,27)" rx="2" ry="2" /> +<text x="745.19" y="10559.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="465.2" y="9941" width="0.4" height="15.0" fill="rgb(248,222,11)" rx="2" ry="2" /> +<text x="468.18" y="9951.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (3 samples, 0.11%)</title><rect x="385.0" y="9413" width="1.3" height="15.0" fill="rgb(206,123,45)" rx="2" ry="2" /> +<text x="387.98" y="9423.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="316.9" y="9413" width="0.5" height="15.0" fill="rgb(231,207,17)" rx="2" ry="2" /> +<text x="319.92" y="9423.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (3 samples, 0.11%)</title><rect x="442.2" y="9333" width="1.3" height="15.0" fill="rgb(247,141,43)" rx="2" ry="2" /> +<text x="445.20" y="9343.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (29 samples, 1.07%)</title><rect x="386.3" y="9653" width="12.6" height="15.0" fill="rgb(245,166,30)" rx="2" ry="2" /> +<text x="389.28" y="9663.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (24 samples, 0.88%)</title><rect x="1057.8" y="11061" width="10.4" height="15.0" fill="rgb(238,97,21)" rx="2" ry="2" /> +<text x="1060.78" y="11071.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="1036.1" y="10885" width="0.4" height="15.0" fill="rgb(224,26,32)" rx="2" ry="2" /> +<text x="1039.11" y="10895.5" ></text> +</g> +<g > +<title><unknown> (2 samples, 0.07%)</title><rect x="1021.4" y="8581" width="0.8" height="15.0" fill="rgb(219,153,30)" rx="2" ry="2" /> +<text x="1024.37" y="8591.5" ></text> +</g> +<g > +<title><unknown> (1 samples, 0.04%)</title><rect x="1021.8" y="3989" width="0.4" height="15.0" fill="rgb(251,154,49)" rx="2" ry="2" /> +<text x="1024.80" y="3999.5" ></text> +</g> +<g > +<title><unknown> (2 samples, 0.07%)</title><rect x="1021.4" y="8181" width="0.8" height="15.0" fill="rgb(216,74,32)" rx="2" ry="2" /> +<text x="1024.37" y="8191.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="733.5" y="8789" width="0.5" height="15.0" fill="rgb(213,221,14)" rx="2" ry="2" /> +<text x="736.52" y="8799.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="1137.5" y="11125" width="0.5" height="15.0" fill="rgb(233,124,5)" rx="2" ry="2" /> +<text x="1140.55" y="11135.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (4 samples, 0.15%)</title><rect x="742.6" y="10309" width="1.8" height="15.0" fill="rgb(225,107,47)" rx="2" ry="2" /> +<text x="745.62" y="10319.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="238.9" y="10709" width="0.4" height="15.0" fill="rgb(245,61,21)" rx="2" ry="2" /> +<text x="241.89" y="10719.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="740.9" y="10453" width="0.4" height="15.0" fill="rgb(227,18,43)" rx="2" ry="2" /> +<text x="743.89" y="10463.5" ></text> +</g> +<g > +<title><unknown> (1 samples, 0.04%)</title><rect x="1021.8" y="565" width="0.4" height="15.0" fill="rgb(234,212,26)" rx="2" ry="2" /> +<text x="1024.80" y="575.5" ></text> +</g> +<g > +<title><unknown> (1 samples, 0.04%)</title><rect x="1021.8" y="2373" width="0.4" height="15.0" fill="rgb(245,129,34)" rx="2" ry="2" /> +<text x="1024.80" y="2383.5" ></text> +</g> +<g > +<title><unknown> (1 samples, 0.04%)</title><rect x="1021.8" y="2741" width="0.4" height="15.0" fill="rgb(212,14,12)" rx="2" ry="2" /> +<text x="1024.80" y="2751.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (562 samples, 20.65%)</title><rect x="246.7" y="10405" width="243.6" height="15.0" fill="rgb(248,68,36)" rx="2" ry="2" /> +<text x="249.69" y="10415.5" >Nsfisis\Waddiwasi\Execution\Runt..</text> +</g> +<g > +<title>assert (1 samples, 0.04%)</title><rect x="169.1" y="11141" width="0.4" height="15.0" fill="rgb(224,2,53)" rx="2" ry="2" /> +<text x="172.10" y="11151.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (1 samples, 0.04%)</title><rect x="870.1" y="7909" width="0.4" height="15.0" fill="rgb(210,117,13)" rx="2" ry="2" /> +<text x="873.07" y="7919.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\StackEntry::Value (1 samples, 0.04%)</title><rect x="443.5" y="9413" width="0.4" height="15.0" fill="rgb(247,96,51)" rx="2" ry="2" /> +<text x="446.50" y="9423.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="1035.2" y="10981" width="0.5" height="15.0" fill="rgb(226,20,20)" rx="2" ry="2" /> +<text x="1038.24" y="10991.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="318.2" y="9365" width="0.5" height="15.0" fill="rgb(248,189,12)" rx="2" ry="2" /> +<text x="321.22" y="9375.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Stack::popI32 (1 samples, 0.04%)</title><rect x="865.7" y="10213" width="0.5" height="15.0" fill="rgb(221,170,40)" rx="2" ry="2" /> +<text x="868.74" y="10223.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\MemInst::loadByte (1 samples, 0.04%)</title><rect x="359.0" y="9381" width="0.4" height="15.0" fill="rgb(239,178,12)" rx="2" ry="2" /> +<text x="361.97" y="9391.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (11 samples, 0.40%)</title><rect x="368.9" y="9797" width="4.8" height="15.0" fill="rgb(248,163,7)" rx="2" ry="2" /> +<text x="371.94" y="9807.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (4 samples, 0.15%)</title><rect x="869.2" y="10197" width="1.7" height="15.0" fill="rgb(234,130,19)" rx="2" ry="2" /> +<text x="872.21" y="10207.5" ></text> +</g> +<g > +<title><unknown> (2 samples, 0.07%)</title><rect x="1021.4" y="6405" width="0.8" height="15.0" fill="rgb(217,105,29)" rx="2" ry="2" /> +<text x="1024.37" y="6415.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="442.2" y="8693" width="0.4" height="15.0" fill="rgb(210,101,45)" rx="2" ry="2" /> +<text x="445.20" y="8703.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="446.1" y="9717" width="0.4" height="15.0" fill="rgb(209,141,24)" rx="2" ry="2" /> +<text x="449.11" y="9727.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (290 samples, 10.65%)</title><rect x="742.6" y="10917" width="125.7" height="15.0" fill="rgb(211,135,19)" rx="2" ry="2" /> +<text x="745.62" y="10927.5" >Nsfisis\Waddiwa..</text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (2 samples, 0.07%)</title><rect x="305.2" y="9317" width="0.9" height="15.0" fill="rgb(243,178,45)" rx="2" ry="2" /> +<text x="308.22" y="9327.5" ></text> +</g> +<g > +<title><unknown> (2 samples, 0.07%)</title><rect x="1021.4" y="10005" width="0.8" height="15.0" fill="rgb(239,83,48)" rx="2" ry="2" /> +<text x="1024.37" y="10015.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (3 samples, 0.11%)</title><rect x="492.5" y="10421" width="1.3" height="15.0" fill="rgb(246,211,23)" rx="2" ry="2" /> +<text x="495.49" y="10431.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (62 samples, 2.28%)</title><rect x="749.6" y="10389" width="26.8" height="15.0" fill="rgb(244,223,14)" rx="2" ry="2" /> +<text x="752.56" y="10399.5" >N..</text> +</g> +<g > +<title><unknown> (1 samples, 0.04%)</title><rect x="1021.8" y="4837" width="0.4" height="15.0" fill="rgb(254,187,8)" rx="2" ry="2" /> +<text x="1024.80" y="4847.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="386.7" y="9621" width="0.4" height="15.0" fill="rgb(240,118,47)" rx="2" ry="2" /> +<text x="389.72" y="9631.5" ></text> +</g> +<g > +<title>{closure}(/home/ken/src/php-waddiwasi/examples/php-on-wasm/php-wasm.php:354-359) (191 samples, 7.02%)</title><rect x="652.0" y="10709" width="82.8" height="15.0" fill="rgb(212,187,41)" rx="2" ry="2" /> +<text x="655.02" y="10719.5" >{closure}..</text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="777.3" y="10437" width="0.4" height="15.0" fill="rgb(225,43,40)" rx="2" ry="2" /> +<text x="780.30" y="10447.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Stack::pushI32 (1 samples, 0.04%)</title><rect x="358.5" y="9445" width="0.5" height="15.0" fill="rgb(209,159,45)" rx="2" ry="2" /> +<text x="361.54" y="9455.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="331.2" y="9653" width="0.5" height="15.0" fill="rgb(236,214,50)" rx="2" ry="2" /> +<text x="334.23" y="9663.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (2 samples, 0.07%)</title><rect x="482.1" y="9877" width="0.9" height="15.0" fill="rgb(210,25,15)" rx="2" ry="2" /> +<text x="485.09" y="9887.5" ></text> +</g> +<g > +<title><unknown> (1 samples, 0.04%)</title><rect x="1021.8" y="4245" width="0.4" height="15.0" fill="rgb(250,142,8)" rx="2" ry="2" /> +<text x="1024.80" y="4255.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="351.2" y="9653" width="0.4" height="15.0" fill="rgb(219,124,39)" rx="2" ry="2" /> +<text x="354.17" y="9663.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="1104.6" y="10997" width="0.4" height="15.0" fill="rgb(243,136,31)" rx="2" ry="2" /> +<text x="1107.60" y="11007.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (2 samples, 0.07%)</title><rect x="734.0" y="10213" width="0.8" height="15.0" fill="rgb(247,112,47)" rx="2" ry="2" /> +<text x="736.95" y="10223.5" ></text> +</g> +<g > +<title><unknown> (2 samples, 0.07%)</title><rect x="1021.4" y="10709" width="0.8" height="15.0" fill="rgb(238,127,14)" rx="2" ry="2" /> +<text x="1024.37" y="10719.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="238.9" y="10229" width="0.4" height="15.0" fill="rgb(219,143,18)" rx="2" ry="2" /> +<text x="241.89" y="10239.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="331.2" y="9509" width="0.5" height="15.0" fill="rgb(235,192,19)" rx="2" ry="2" /> +<text x="334.23" y="9519.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="1090.3" y="11141" width="0.4" height="15.0" fill="rgb(251,187,51)" rx="2" ry="2" /> +<text x="1093.29" y="11151.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\MemInst::storeI64 (2 samples, 0.07%)</title><rect x="631.6" y="9893" width="0.9" height="15.0" fill="rgb(223,111,8)" rx="2" ry="2" /> +<text x="634.65" y="9903.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (20 samples, 0.73%)</title><rect x="327.3" y="9941" width="8.7" height="15.0" fill="rgb(218,207,34)" rx="2" ry="2" /> +<text x="330.33" y="9951.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="1113.3" y="11061" width="0.4" height="15.0" fill="rgb(218,80,39)" rx="2" ry="2" /> +<text x="1116.27" y="11071.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (12 samples, 0.44%)</title><rect x="498.1" y="10469" width="5.2" height="15.0" fill="rgb(213,72,51)" rx="2" ry="2" /> +<text x="501.13" y="10479.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (107 samples, 3.93%)</title><rect x="280.9" y="9829" width="46.4" height="15.0" fill="rgb(211,40,25)" rx="2" ry="2" /> +<text x="283.94" y="9839.5" >Nsfi..</text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="359.0" y="9477" width="0.4" height="15.0" fill="rgb(250,209,30)" rx="2" ry="2" /> +<text x="361.97" y="9487.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="870.1" y="9285" width="0.4" height="15.0" fill="rgb(247,154,34)" rx="2" ry="2" /> +<text x="873.07" y="9295.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (4 samples, 0.15%)</title><rect x="732.2" y="10229" width="1.8" height="15.0" fill="rgb(218,129,10)" rx="2" ry="2" /> +<text x="735.22" y="10239.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (5 samples, 0.18%)</title><rect x="868.8" y="10469" width="2.1" height="15.0" fill="rgb(227,8,2)" rx="2" ry="2" /> +<text x="871.77" y="10479.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="1169.2" y="11141" width="0.4" height="15.0" fill="rgb(230,86,41)" rx="2" ry="2" /> +<text x="1172.19" y="11151.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="870.1" y="9877" width="0.4" height="15.0" fill="rgb(243,219,17)" rx="2" ry="2" /> +<text x="873.07" y="9887.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="718.3" y="9557" width="0.5" height="15.0" fill="rgb(227,163,46)" rx="2" ry="2" /> +<text x="721.35" y="9567.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="427.5" y="9333" width="0.4" height="15.0" fill="rgb(221,144,0)" rx="2" ry="2" /> +<text x="430.47" y="9343.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (1 samples, 0.04%)</title><rect x="238.9" y="10613" width="0.4" height="15.0" fill="rgb(250,111,24)" rx="2" ry="2" /> +<text x="241.89" y="10623.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="489.9" y="10133" width="0.4" height="15.0" fill="rgb(209,23,31)" rx="2" ry="2" /> +<text x="492.89" y="10143.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="870.1" y="8869" width="0.4" height="15.0" fill="rgb(234,66,28)" rx="2" ry="2" /> +<text x="873.07" y="8879.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (145 samples, 5.33%)</title><rect x="365.5" y="9861" width="62.8" height="15.0" fill="rgb(229,70,42)" rx="2" ry="2" /> +<text x="368.47" y="9871.5" >Nsfisi..</text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (5 samples, 0.18%)</title><rect x="474.3" y="9909" width="2.2" height="15.0" fill="rgb(208,166,19)" rx="2" ry="2" /> +<text x="477.28" y="9919.5" ></text> +</g> +<g > +<title><unknown> (1 samples, 0.04%)</title><rect x="1021.8" y="5653" width="0.4" height="15.0" fill="rgb(229,200,2)" rx="2" ry="2" /> +<text x="1024.80" y="5663.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="409.3" y="9045" width="0.4" height="15.0" fill="rgb(230,174,54)" rx="2" ry="2" /> +<text x="412.26" y="9055.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (6 samples, 0.22%)</title><rect x="738.7" y="10901" width="2.6" height="15.0" fill="rgb(252,166,30)" rx="2" ry="2" /> +<text x="741.72" y="10911.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="490.3" y="10597" width="0.5" height="15.0" fill="rgb(236,168,31)" rx="2" ry="2" /> +<text x="493.32" y="10607.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (561 samples, 20.61%)</title><rect x="246.7" y="10229" width="243.2" height="15.0" fill="rgb(224,229,27)" rx="2" ry="2" /> +<text x="249.69" y="10239.5" >Nsfisis\Waddiwasi\Execution\Runt..</text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="489.9" y="10117" width="0.4" height="15.0" fill="rgb(209,63,34)" rx="2" ry="2" /> +<text x="492.89" y="10127.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="867.9" y="10357" width="0.4" height="15.0" fill="rgb(215,203,10)" rx="2" ry="2" /> +<text x="870.91" y="10367.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="449.1" y="9893" width="0.5" height="15.0" fill="rgb(233,97,25)" rx="2" ry="2" /> +<text x="452.14" y="9903.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="473.4" y="9861" width="0.5" height="15.0" fill="rgb(228,7,3)" rx="2" ry="2" /> +<text x="476.42" y="9871.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (10 samples, 0.37%)</title><rect x="274.0" y="9797" width="4.3" height="15.0" fill="rgb(233,72,41)" rx="2" ry="2" /> +<text x="277.00" y="9807.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (2 samples, 0.07%)</title><rect x="381.1" y="9445" width="0.8" height="15.0" fill="rgb(226,130,9)" rx="2" ry="2" /> +<text x="384.08" y="9455.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="866.2" y="10229" width="0.4" height="15.0" fill="rgb(218,165,16)" rx="2" ry="2" /> +<text x="869.17" y="10239.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="870.1" y="9253" width="0.4" height="15.0" fill="rgb(216,91,10)" rx="2" ry="2" /> +<text x="873.07" y="9263.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (3 samples, 0.11%)</title><rect x="741.3" y="10773" width="1.3" height="15.0" fill="rgb(213,51,33)" rx="2" ry="2" /> +<text x="744.32" y="10783.5" ></text> +</g> +<g > +<title><unknown> (1 samples, 0.04%)</title><rect x="1167.0" y="11205" width="0.5" height="15.0" fill="rgb(245,85,12)" rx="2" ry="2" /> +<text x="1170.02" y="11215.5" ></text> +</g> +<g > +<title><unknown> (2 samples, 0.07%)</title><rect x="699.7" y="9941" width="0.9" height="15.0" fill="rgb(229,179,40)" rx="2" ry="2" /> +<text x="702.71" y="9951.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (7 samples, 0.26%)</title><rect x="533.7" y="10101" width="3.0" height="15.0" fill="rgb(217,39,54)" rx="2" ry="2" /> +<text x="536.67" y="10111.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (2 samples, 0.07%)</title><rect x="733.1" y="10117" width="0.9" height="15.0" fill="rgb(237,154,4)" rx="2" ry="2" /> +<text x="736.09" y="10127.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Stack::popValue (1 samples, 0.04%)</title><rect x="481.7" y="9701" width="0.4" height="15.0" fill="rgb(238,154,38)" rx="2" ry="2" /> +<text x="484.65" y="9711.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (31 samples, 1.14%)</title><rect x="1055.2" y="11125" width="13.4" height="15.0" fill="rgb(214,166,36)" rx="2" ry="2" /> +<text x="1058.18" y="11135.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (41 samples, 1.51%)</title><rect x="299.6" y="9685" width="17.8" height="15.0" fill="rgb(240,204,28)" rx="2" ry="2" /> +<text x="302.58" y="9695.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="731.8" y="9909" width="0.4" height="15.0" fill="rgb(224,211,33)" rx="2" ry="2" /> +<text x="734.79" y="9919.5" ></text> +</g> +<g > +<title><unknown> (2 samples, 0.07%)</title><rect x="1021.4" y="7877" width="0.8" height="15.0" fill="rgb(246,91,22)" rx="2" ry="2" /> +<text x="1024.37" y="7887.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="742.2" y="10501" width="0.4" height="15.0" fill="rgb(246,165,28)" rx="2" ry="2" /> +<text x="745.19" y="10511.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="337.3" y="10005" width="0.4" height="15.0" fill="rgb(207,159,27)" rx="2" ry="2" /> +<text x="340.30" y="10015.5" ></text> +</g> +<g > +<title><unknown> (2 samples, 0.07%)</title><rect x="1021.4" y="8437" width="0.8" height="15.0" fill="rgb(251,194,1)" rx="2" ry="2" /> +<text x="1024.37" y="8447.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (4 samples, 0.15%)</title><rect x="238.9" y="10917" width="1.7" height="15.0" fill="rgb(218,218,52)" rx="2" ry="2" /> +<text x="241.89" y="10927.5" ></text> +</g> +<g > +<title><unknown> (1 samples, 0.04%)</title><rect x="1021.8" y="1317" width="0.4" height="15.0" fill="rgb(211,82,38)" rx="2" ry="2" /> +<text x="1024.80" y="1327.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="270.5" y="9669" width="0.5" height="15.0" fill="rgb(229,108,35)" rx="2" ry="2" /> +<text x="273.54" y="9679.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (3 samples, 0.11%)</title><rect x="741.3" y="10757" width="1.3" height="15.0" fill="rgb(220,5,23)" rx="2" ry="2" /> +<text x="744.32" y="10767.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (151 samples, 5.55%)</title><rect x="801.1" y="10405" width="65.5" height="15.0" fill="rgb(246,203,21)" rx="2" ry="2" /> +<text x="804.15" y="10415.5" >Nsfisis..</text> +</g> +<g > +<title><unknown> (1 samples, 0.04%)</title><rect x="726.1" y="9813" width="0.5" height="15.0" fill="rgb(232,34,30)" rx="2" ry="2" /> +<text x="729.15" y="9823.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (562 samples, 20.65%)</title><rect x="246.7" y="10309" width="243.6" height="15.0" fill="rgb(230,96,28)" rx="2" ry="2" /> +<text x="249.69" y="10319.5" >Nsfisis\Waddiwasi\Execution\Runt..</text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="404.9" y="9573" width="0.5" height="15.0" fill="rgb(211,51,34)" rx="2" ry="2" /> +<text x="407.92" y="9583.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="319.1" y="9541" width="0.4" height="15.0" fill="rgb(225,33,13)" rx="2" ry="2" /> +<text x="322.09" y="9551.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (2 samples, 0.07%)</title><rect x="398.0" y="9509" width="0.9" height="15.0" fill="rgb(216,104,6)" rx="2" ry="2" /> +<text x="400.99" y="9519.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (3 samples, 0.11%)</title><rect x="1071.7" y="11157" width="1.3" height="15.0" fill="rgb(235,112,50)" rx="2" ry="2" /> +<text x="1074.65" y="11167.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="869.2" y="9925" width="0.4" height="15.0" fill="rgb(223,134,38)" rx="2" ry="2" /> +<text x="872.21" y="9935.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (2 samples, 0.07%)</title><rect x="1159.2" y="11237" width="0.9" height="15.0" fill="rgb(241,189,22)" rx="2" ry="2" /> +<text x="1162.22" y="11247.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doLoadI32 (1 samples, 0.04%)</title><rect x="771.7" y="10037" width="0.4" height="15.0" fill="rgb(240,21,11)" rx="2" ry="2" /> +<text x="774.67" y="10047.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="733.5" y="9093" width="0.5" height="15.0" fill="rgb(239,133,40)" rx="2" ry="2" /> +<text x="736.52" y="9103.5" ></text> +</g> +<g > +<title><unknown> (1 samples, 0.04%)</title><rect x="1021.8" y="1429" width="0.4" height="15.0" fill="rgb(254,25,41)" rx="2" ry="2" /> +<text x="1024.80" y="1439.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (9 samples, 0.33%)</title><rect x="498.6" y="10293" width="3.9" height="15.0" fill="rgb(246,205,25)" rx="2" ry="2" /> +<text x="501.56" y="10303.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (5 samples, 0.18%)</title><rect x="725.7" y="9909" width="2.2" height="15.0" fill="rgb(228,165,5)" rx="2" ry="2" /> +<text x="728.72" y="9919.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (3 samples, 0.11%)</title><rect x="529.8" y="10149" width="1.3" height="15.0" fill="rgb(206,13,47)" rx="2" ry="2" /> +<text x="532.77" y="10159.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (7 samples, 0.26%)</title><rect x="401.0" y="9669" width="3.1" height="15.0" fill="rgb(228,19,5)" rx="2" ry="2" /> +<text x="404.02" y="9679.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="780.3" y="10261" width="0.5" height="15.0" fill="rgb(245,83,48)" rx="2" ry="2" /> +<text x="783.34" y="10271.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="409.3" y="9477" width="0.4" height="15.0" fill="rgb(215,83,23)" rx="2" ry="2" /> +<text x="412.26" y="9487.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (3 samples, 0.11%)</title><rect x="442.2" y="9413" width="1.3" height="15.0" fill="rgb(222,154,19)" rx="2" ry="2" /> +<text x="445.20" y="9423.5" ></text> +</g> +<g > +<title><unknown> (1 samples, 0.04%)</title><rect x="320.0" y="9477" width="0.4" height="15.0" fill="rgb(229,105,20)" rx="2" ry="2" /> +<text x="322.96" y="9487.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::activateLabel (1 samples, 0.04%)</title><rect x="405.8" y="9701" width="0.4" height="15.0" fill="rgb(215,77,20)" rx="2" ry="2" /> +<text x="408.79" y="9711.5" ></text> +</g> +<g > +<title><unknown> (2 samples, 0.07%)</title><rect x="1021.4" y="7669" width="0.8" height="15.0" fill="rgb(247,197,35)" rx="2" ry="2" /> +<text x="1024.37" y="7679.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Stack::pushValue (1 samples, 0.04%)</title><rect x="1082.5" y="11205" width="0.4" height="15.0" fill="rgb(225,110,20)" rx="2" ry="2" /> +<text x="1085.49" y="11215.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="733.5" y="9781" width="0.5" height="15.0" fill="rgb(224,19,25)" rx="2" ry="2" /> +<text x="736.52" y="9791.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="439.2" y="9621" width="0.4" height="15.0" fill="rgb(228,106,22)" rx="2" ry="2" /> +<text x="442.17" y="9631.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (4 samples, 0.15%)</title><rect x="241.1" y="10725" width="1.7" height="15.0" fill="rgb(250,143,25)" rx="2" ry="2" /> +<text x="244.06" y="10735.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (2 samples, 0.07%)</title><rect x="1067.3" y="10805" width="0.9" height="15.0" fill="rgb(250,100,35)" rx="2" ry="2" /> +<text x="1070.32" y="10815.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (1 samples, 0.04%)</title><rect x="454.3" y="9445" width="0.5" height="15.0" fill="rgb(254,58,11)" rx="2" ry="2" /> +<text x="457.34" y="9455.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="318.2" y="9349" width="0.5" height="15.0" fill="rgb(252,142,12)" rx="2" ry="2" /> +<text x="321.22" y="9359.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (2 samples, 0.07%)</title><rect x="496.0" y="10133" width="0.8" height="15.0" fill="rgb(216,86,5)" rx="2" ry="2" /> +<text x="498.96" y="10143.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (26 samples, 0.96%)</title><rect x="528.5" y="10453" width="11.2" height="15.0" fill="rgb(230,82,19)" rx="2" ry="2" /> +<text x="531.47" y="10463.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (241 samples, 8.85%)</title><rect x="547.1" y="10133" width="104.5" height="15.0" fill="rgb(251,0,44)" rx="2" ry="2" /> +<text x="550.11" y="10143.5" >Nsfisis\Wadd..</text> +</g> +<g > +<title><unknown> (1 samples, 0.04%)</title><rect x="1166.2" y="11205" width="0.4" height="15.0" fill="rgb(210,209,35)" rx="2" ry="2" /> +<text x="1169.16" y="11215.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="790.3" y="10181" width="0.4" height="15.0" fill="rgb(221,202,8)" rx="2" ry="2" /> +<text x="793.31" y="10191.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (3 samples, 0.11%)</title><rect x="408.4" y="9653" width="1.3" height="15.0" fill="rgb(219,201,14)" rx="2" ry="2" /> +<text x="411.39" y="9663.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="870.1" y="9221" width="0.4" height="15.0" fill="rgb(243,180,13)" rx="2" ry="2" /> +<text x="873.07" y="9231.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (108 samples, 3.97%)</title><rect x="748.3" y="10565" width="46.8" height="15.0" fill="rgb(246,107,6)" rx="2" ry="2" /> +<text x="751.26" y="10575.5" >Nsfi..</text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="1152.7" y="11189" width="0.5" height="15.0" fill="rgb(251,143,37)" rx="2" ry="2" /> +<text x="1155.72" y="11199.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (4 samples, 0.15%)</title><rect x="1049.1" y="11141" width="1.7" height="15.0" fill="rgb(214,131,6)" rx="2" ry="2" /> +<text x="1052.11" y="11151.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="427.0" y="9253" width="0.5" height="15.0" fill="rgb(235,206,47)" rx="2" ry="2" /> +<text x="430.03" y="9263.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (3 samples, 0.11%)</title><rect x="741.3" y="11061" width="1.3" height="15.0" fill="rgb(222,197,43)" rx="2" ry="2" /> +<text x="744.32" y="11071.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (23 samples, 0.84%)</title><rect x="528.9" y="10357" width="10.0" height="15.0" fill="rgb(248,41,50)" rx="2" ry="2" /> +<text x="531.91" y="10367.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (4 samples, 0.15%)</title><rect x="742.6" y="10261" width="1.8" height="15.0" fill="rgb(207,31,48)" rx="2" ry="2" /> +<text x="745.62" y="10271.5" ></text> +</g> +<g > +<title><unknown> (2 samples, 0.07%)</title><rect x="1021.4" y="6805" width="0.8" height="15.0" fill="rgb(242,119,22)" rx="2" ry="2" /> +<text x="1024.37" y="6815.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="733.5" y="9557" width="0.5" height="15.0" fill="rgb(246,58,50)" rx="2" ry="2" /> +<text x="736.52" y="9567.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="442.2" y="8725" width="0.4" height="15.0" fill="rgb(220,198,16)" rx="2" ry="2" /> +<text x="445.20" y="8735.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="869.2" y="9829" width="0.4" height="15.0" fill="rgb(253,23,7)" rx="2" ry="2" /> +<text x="872.21" y="9839.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="866.6" y="10261" width="0.4" height="15.0" fill="rgb(230,205,24)" rx="2" ry="2" /> +<text x="869.61" y="10271.5" ></text> +</g> +<g > +<title><unknown> (2 samples, 0.07%)</title><rect x="1021.4" y="8549" width="0.8" height="15.0" fill="rgb(238,102,36)" rx="2" ry="2" /> +<text x="1024.37" y="8559.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (2 samples, 0.07%)</title><rect x="419.7" y="9413" width="0.8" height="15.0" fill="rgb(249,63,43)" rx="2" ry="2" /> +<text x="422.66" y="9423.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="870.1" y="8837" width="0.4" height="15.0" fill="rgb(229,100,11)" rx="2" ry="2" /> +<text x="873.07" y="8847.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="763.9" y="9957" width="0.4" height="15.0" fill="rgb(254,42,34)" rx="2" ry="2" /> +<text x="766.86" y="9967.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="491.6" y="10437" width="0.5" height="15.0" fill="rgb(253,186,36)" rx="2" ry="2" /> +<text x="494.62" y="10447.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="261.0" y="9573" width="0.4" height="15.0" fill="rgb(206,40,48)" rx="2" ry="2" /> +<text x="264.00" y="9583.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (4 samples, 0.15%)</title><rect x="1071.2" y="11205" width="1.8" height="15.0" fill="rgb(228,81,54)" rx="2" ry="2" /> +<text x="1074.22" y="11215.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="652.0" y="10437" width="0.5" height="15.0" fill="rgb(243,71,2)" rx="2" ry="2" /> +<text x="655.02" y="10447.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="1115.9" y="10933" width="0.4" height="15.0" fill="rgb(213,121,6)" rx="2" ry="2" /> +<text x="1118.87" y="10943.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (4 samples, 0.15%)</title><rect x="1110.7" y="10933" width="1.7" height="15.0" fill="rgb(239,75,22)" rx="2" ry="2" /> +<text x="1113.67" y="10943.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (3 samples, 0.11%)</title><rect x="423.6" y="9269" width="1.3" height="15.0" fill="rgb(205,97,42)" rx="2" ry="2" /> +<text x="426.56" y="9279.5" ></text> +</g> +<g > +<title><unknown> (2 samples, 0.07%)</title><rect x="1021.4" y="7189" width="0.8" height="15.0" fill="rgb(243,76,41)" rx="2" ry="2" /> +<text x="1024.37" y="7199.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Vals\Num::__construct (1 samples, 0.04%)</title><rect x="173.0" y="11141" width="0.4" height="15.0" fill="rgb(226,95,31)" rx="2" ry="2" /> +<text x="176.00" y="11151.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="481.2" y="9701" width="0.5" height="15.0" fill="rgb(243,213,41)" rx="2" ry="2" /> +<text x="484.22" y="9711.5" ></text> +</g> +<g > +<title><unknown> (431 samples, 15.83%)</title><rect x="941.6" y="11237" width="186.8" height="15.0" fill="rgb(246,19,38)" rx="2" ry="2" /> +<text x="944.60" y="11247.5" ><unknown></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="1141.4" y="11093" width="0.5" height="15.0" fill="rgb(238,125,21)" rx="2" ry="2" /> +<text x="1144.45" y="11103.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (1 samples, 0.04%)</title><rect x="738.3" y="10709" width="0.4" height="15.0" fill="rgb(221,175,1)" rx="2" ry="2" /> +<text x="741.29" y="10719.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Stack::popI32 (1 samples, 0.04%)</title><rect x="494.2" y="10357" width="0.5" height="15.0" fill="rgb(225,108,50)" rx="2" ry="2" /> +<text x="497.22" y="10367.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (2 samples, 0.07%)</title><rect x="467.3" y="9541" width="0.9" height="15.0" fill="rgb(227,6,48)" rx="2" ry="2" /> +<text x="470.35" y="9551.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="238.9" y="10549" width="0.4" height="15.0" fill="rgb(222,192,27)" rx="2" ry="2" /> +<text x="241.89" y="10559.5" ></text> +</g> +<g > +<title><unknown> (2 samples, 0.07%)</title><rect x="1021.4" y="9077" width="0.8" height="15.0" fill="rgb(238,16,51)" rx="2" ry="2" /> +<text x="1024.37" y="9087.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="473.4" y="9797" width="0.5" height="15.0" fill="rgb(246,50,6)" rx="2" ry="2" /> +<text x="476.42" y="9807.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (21 samples, 0.77%)</title><rect x="351.2" y="9765" width="9.1" height="15.0" fill="rgb(246,9,25)" rx="2" ry="2" /> +<text x="354.17" y="9775.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="239.8" y="10789" width="0.4" height="15.0" fill="rgb(215,115,31)" rx="2" ry="2" /> +<text x="242.76" y="10799.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (57 samples, 2.09%)</title><rect x="1044.3" y="11173" width="24.8" height="15.0" fill="rgb(242,153,4)" rx="2" ry="2" /> +<text x="1047.34" y="11183.5" >N..</text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Stack::popI32 (1 samples, 0.04%)</title><rect x="334.3" y="9877" width="0.4" height="15.0" fill="rgb(230,2,8)" rx="2" ry="2" /> +<text x="337.26" y="9887.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="536.3" y="9829" width="0.4" height="15.0" fill="rgb(241,182,0)" rx="2" ry="2" /> +<text x="539.27" y="9839.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="1036.1" y="10933" width="0.4" height="15.0" fill="rgb(233,111,37)" rx="2" ry="2" /> +<text x="1039.11" y="10943.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (3 samples, 0.11%)</title><rect x="385.0" y="9461" width="1.3" height="15.0" fill="rgb(224,109,52)" rx="2" ry="2" /> +<text x="387.98" y="9471.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (1 samples, 0.04%)</title><rect x="484.7" y="9813" width="0.4" height="15.0" fill="rgb(237,86,46)" rx="2" ry="2" /> +<text x="487.69" y="9823.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (1 samples, 0.04%)</title><rect x="739.2" y="10373" width="0.4" height="15.0" fill="rgb(205,68,48)" rx="2" ry="2" /> +<text x="742.16" y="10383.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (7 samples, 0.26%)</title><rect x="533.7" y="10181" width="3.0" height="15.0" fill="rgb(244,54,46)" rx="2" ry="2" /> +<text x="536.67" y="10191.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="744.4" y="10501" width="0.4" height="15.0" fill="rgb(243,136,48)" rx="2" ry="2" /> +<text x="747.36" y="10511.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (562 samples, 20.65%)</title><rect x="246.7" y="10453" width="243.6" height="15.0" fill="rgb(236,119,39)" rx="2" ry="2" /> +<text x="249.69" y="10463.5" >Nsfisis\Waddiwasi\Execution\Runt..</text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="1036.1" y="11093" width="0.4" height="15.0" fill="rgb(223,136,6)" rx="2" ry="2" /> +<text x="1039.11" y="11103.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (13 samples, 0.48%)</title><rect x="353.3" y="9493" width="5.7" height="15.0" fill="rgb(216,49,25)" rx="2" ry="2" /> +<text x="356.34" y="9503.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (3 samples, 0.11%)</title><rect x="717.5" y="9797" width="1.3" height="15.0" fill="rgb(224,122,32)" rx="2" ry="2" /> +<text x="720.48" y="9807.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="271.4" y="9701" width="0.4" height="15.0" fill="rgb(237,211,5)" rx="2" ry="2" /> +<text x="274.40" y="9711.5" ></text> +</g> +<g > +<title><unknown> (1 samples, 0.04%)</title><rect x="1021.8" y="2565" width="0.4" height="15.0" fill="rgb(233,190,52)" rx="2" ry="2" /> +<text x="1024.80" y="2575.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="862.3" y="10229" width="0.4" height="15.0" fill="rgb(241,162,9)" rx="2" ry="2" /> +<text x="865.27" y="10239.5" ></text> +</g> +<g > +<title><unknown> (1 samples, 0.04%)</title><rect x="1021.8" y="1589" width="0.4" height="15.0" fill="rgb(232,149,50)" rx="2" ry="2" /> +<text x="1024.80" y="1599.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (2 samples, 0.07%)</title><rect x="1115.4" y="11173" width="0.9" height="15.0" fill="rgb(241,156,34)" rx="2" ry="2" /> +<text x="1118.44" y="11183.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="475.6" y="9749" width="0.4" height="15.0" fill="rgb(205,218,38)" rx="2" ry="2" /> +<text x="478.58" y="9759.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="238.9" y="10165" width="0.4" height="15.0" fill="rgb(217,147,9)" rx="2" ry="2" /> +<text x="241.89" y="10175.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="776.0" y="10037" width="0.4" height="15.0" fill="rgb(229,125,40)" rx="2" ry="2" /> +<text x="779.00" y="10047.5" ></text> +</g> +<g > +<title><unknown> (1 samples, 0.04%)</title><rect x="1021.8" y="1717" width="0.4" height="15.0" fill="rgb(246,162,27)" rx="2" ry="2" /> +<text x="1024.80" y="1727.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (2 samples, 0.07%)</title><rect x="496.8" y="10389" width="0.9" height="15.0" fill="rgb(217,1,26)" rx="2" ry="2" /> +<text x="499.83" y="10399.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (3 samples, 0.11%)</title><rect x="493.8" y="10453" width="1.3" height="15.0" fill="rgb(213,112,31)" rx="2" ry="2" /> +<text x="496.79" y="10463.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="469.5" y="9749" width="0.4" height="15.0" fill="rgb(238,12,6)" rx="2" ry="2" /> +<text x="472.52" y="9759.5" ></text> +</g> +<g > +<title><unknown> (1 samples, 0.04%)</title><rect x="1021.8" y="4885" width="0.4" height="15.0" fill="rgb(217,201,32)" rx="2" ry="2" /> +<text x="1024.80" y="4895.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (4 samples, 0.15%)</title><rect x="380.2" y="9557" width="1.7" height="15.0" fill="rgb(223,173,27)" rx="2" ry="2" /> +<text x="383.21" y="9567.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="489.5" y="10133" width="0.4" height="15.0" fill="rgb(247,180,28)" rx="2" ry="2" /> +<text x="492.46" y="10143.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="790.7" y="10245" width="0.5" height="15.0" fill="rgb(211,161,54)" rx="2" ry="2" /> +<text x="793.74" y="10255.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="443.1" y="8485" width="0.4" height="15.0" fill="rgb(226,29,35)" rx="2" ry="2" /> +<text x="446.07" y="8495.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="409.3" y="9221" width="0.4" height="15.0" fill="rgb(216,199,54)" rx="2" ry="2" /> +<text x="412.26" y="9231.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="284.4" y="9637" width="0.4" height="15.0" fill="rgb(212,144,33)" rx="2" ry="2" /> +<text x="287.41" y="9647.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (3 samples, 0.11%)</title><rect x="739.6" y="10677" width="1.3" height="15.0" fill="rgb(231,76,27)" rx="2" ry="2" /> +<text x="742.59" y="10687.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="1168.8" y="11029" width="0.4" height="15.0" fill="rgb(251,212,41)" rx="2" ry="2" /> +<text x="1171.76" y="11039.5" ></text> +</g> +<g > +<title><unknown> (2 samples, 0.07%)</title><rect x="1021.4" y="7445" width="0.8" height="15.0" fill="rgb(229,163,18)" rx="2" ry="2" /> +<text x="1024.37" y="7455.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="867.0" y="10421" width="0.5" height="15.0" fill="rgb(231,94,35)" rx="2" ry="2" /> +<text x="870.04" y="10431.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="866.6" y="10341" width="0.4" height="15.0" fill="rgb(239,119,37)" rx="2" ry="2" /> +<text x="869.61" y="10351.5" ></text> +</g> +<g > +<title><unknown> (2 samples, 0.07%)</title><rect x="1021.4" y="6133" width="0.8" height="15.0" fill="rgb(225,17,26)" rx="2" ry="2" /> +<text x="1024.37" y="6143.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="1036.1" y="11029" width="0.4" height="15.0" fill="rgb(218,101,2)" rx="2" ry="2" /> +<text x="1039.11" y="11039.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (3 samples, 0.11%)</title><rect x="438.3" y="9877" width="1.3" height="15.0" fill="rgb(223,22,2)" rx="2" ry="2" /> +<text x="441.30" y="9887.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (241 samples, 8.85%)</title><rect x="547.1" y="10053" width="104.5" height="15.0" fill="rgb(217,31,6)" rx="2" ry="2" /> +<text x="550.11" y="10063.5" >Nsfisis\Wadd..</text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="409.3" y="9141" width="0.4" height="15.0" fill="rgb(227,23,25)" rx="2" ry="2" /> +<text x="412.26" y="9151.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1,144 samples, 42.03%)</title><rect x="242.8" y="10853" width="495.9" height="15.0" fill="rgb(213,225,18)" rx="2" ry="2" /> +<text x="245.79" y="10863.5" >Nsfisis\Waddiwasi\Execution\Runtime::execInstr</text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="1050.0" y="10997" width="0.4" height="15.0" fill="rgb(221,197,18)" rx="2" ry="2" /> +<text x="1052.98" y="11007.5" ></text> +</g> +<g > +<title><unknown> (2 samples, 0.07%)</title><rect x="1021.4" y="8037" width="0.8" height="15.0" fill="rgb(244,104,27)" rx="2" ry="2" /> +<text x="1024.37" y="8047.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (7 samples, 0.26%)</title><rect x="460.8" y="9493" width="3.1" height="15.0" fill="rgb(218,68,0)" rx="2" ry="2" /> +<text x="463.84" y="9503.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Stack::pushI32 (1 samples, 0.04%)</title><rect x="473.4" y="9877" width="0.5" height="15.0" fill="rgb(228,25,3)" rx="2" ry="2" /> +<text x="476.42" y="9887.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (290 samples, 10.65%)</title><rect x="742.6" y="10997" width="125.7" height="15.0" fill="rgb(212,172,8)" rx="2" ry="2" /> +<text x="745.62" y="11007.5" >Nsfisis\Waddiwa..</text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (2 samples, 0.07%)</title><rect x="311.3" y="9541" width="0.9" height="15.0" fill="rgb(215,105,8)" rx="2" ry="2" /> +<text x="314.29" y="9551.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (1 samples, 0.04%)</title><rect x="785.1" y="10373" width="0.4" height="15.0" fill="rgb(216,148,50)" rx="2" ry="2" /> +<text x="788.11" y="10383.5" ></text> +</g> +<g > +<title><unknown> (2 samples, 0.07%)</title><rect x="1021.4" y="9189" width="0.8" height="15.0" fill="rgb(214,93,32)" rx="2" ry="2" /> +<text x="1024.37" y="9199.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="318.2" y="9525" width="0.5" height="15.0" fill="rgb(254,152,17)" rx="2" ry="2" /> +<text x="321.22" y="9535.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="738.3" y="10373" width="0.4" height="15.0" fill="rgb(224,192,46)" rx="2" ry="2" /> +<text x="741.29" y="10383.5" ></text> +</g> +<g > +<title><unknown> (1 samples, 0.04%)</title><rect x="726.1" y="9829" width="0.5" height="15.0" fill="rgb(206,86,28)" rx="2" ry="2" /> +<text x="729.15" y="9839.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="867.9" y="9989" width="0.4" height="15.0" fill="rgb(208,205,40)" rx="2" ry="2" /> +<text x="870.91" y="9999.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (1 samples, 0.04%)</title><rect x="482.5" y="9733" width="0.5" height="15.0" fill="rgb(230,33,27)" rx="2" ry="2" /> +<text x="485.52" y="9743.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="734.0" y="10149" width="0.4" height="15.0" fill="rgb(215,34,29)" rx="2" ry="2" /> +<text x="736.95" y="10159.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (2 samples, 0.07%)</title><rect x="737.0" y="10373" width="0.9" height="15.0" fill="rgb(208,103,11)" rx="2" ry="2" /> +<text x="739.99" y="10383.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::invokeByFuncAddr (1 samples, 0.04%)</title><rect x="738.3" y="10661" width="0.4" height="15.0" fill="rgb(247,67,19)" rx="2" ry="2" /> +<text x="741.29" y="10671.5" ></text> +</g> +<g > +<title><unknown> (1 samples, 0.04%)</title><rect x="1021.8" y="837" width="0.4" height="15.0" fill="rgb(249,76,15)" rx="2" ry="2" /> +<text x="1024.80" y="847.5" ></text> +</g> +<g > +<title><unknown> (1 samples, 0.04%)</title><rect x="1021.8" y="1829" width="0.4" height="15.0" fill="rgb(216,185,24)" rx="2" ry="2" /> +<text x="1024.80" y="1839.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (124 samples, 4.56%)</title><rect x="374.6" y="9797" width="53.7" height="15.0" fill="rgb(223,220,4)" rx="2" ry="2" /> +<text x="377.58" y="9807.5" >Nsfis..</text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="238.9" y="10213" width="0.4" height="15.0" fill="rgb(237,111,14)" rx="2" ry="2" /> +<text x="241.89" y="10223.5" ></text> +</g> +<g > +<title><unknown> (650 samples, 23.88%)</title><rect x="870.9" y="11253" width="281.8" height="15.0" fill="rgb(223,64,43)" rx="2" ry="2" /> +<text x="873.94" y="11263.5" ><unknown></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (3 samples, 0.11%)</title><rect x="741.3" y="10853" width="1.3" height="15.0" fill="rgb(223,159,46)" rx="2" ry="2" /> +<text x="744.32" y="10863.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="446.1" y="9541" width="0.4" height="15.0" fill="rgb(219,88,5)" rx="2" ry="2" /> +<text x="449.11" y="9551.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="258.0" y="9829" width="0.4" height="15.0" fill="rgb(237,22,50)" rx="2" ry="2" /> +<text x="260.96" y="9839.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (185 samples, 6.80%)</title><rect x="652.0" y="10581" width="80.2" height="15.0" fill="rgb(216,206,9)" rx="2" ry="2" /> +<text x="655.02" y="10591.5" >Nsfisis\W..</text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (2 samples, 0.07%)</title><rect x="483.8" y="9797" width="0.9" height="15.0" fill="rgb(217,160,38)" rx="2" ry="2" /> +<text x="486.82" y="9807.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (290 samples, 10.65%)</title><rect x="742.6" y="10949" width="125.7" height="15.0" fill="rgb(253,92,47)" rx="2" ry="2" /> +<text x="745.62" y="10959.5" >Nsfisis\Waddiwa..</text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (2 samples, 0.07%)</title><rect x="419.7" y="9573" width="0.8" height="15.0" fill="rgb(217,103,44)" rx="2" ry="2" /> +<text x="422.66" y="9583.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="867.9" y="10581" width="0.4" height="15.0" fill="rgb(225,205,3)" rx="2" ry="2" /> +<text x="870.91" y="10591.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (3 samples, 0.11%)</title><rect x="492.5" y="10389" width="1.3" height="15.0" fill="rgb(246,59,10)" rx="2" ry="2" /> +<text x="495.49" y="10399.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (5 samples, 0.18%)</title><rect x="265.8" y="9525" width="2.1" height="15.0" fill="rgb(210,187,32)" rx="2" ry="2" /> +<text x="268.77" y="9535.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="443.1" y="8677" width="0.4" height="15.0" fill="rgb(206,84,8)" rx="2" ry="2" /> +<text x="446.07" y="8687.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (42 samples, 1.54%)</title><rect x="471.2" y="10101" width="18.3" height="15.0" fill="rgb(240,58,14)" rx="2" ry="2" /> +<text x="474.25" y="10111.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (2 samples, 0.07%)</title><rect x="408.4" y="9333" width="0.9" height="15.0" fill="rgb(249,204,27)" rx="2" ry="2" /> +<text x="411.39" y="9343.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (1 samples, 0.04%)</title><rect x="359.0" y="9509" width="0.4" height="15.0" fill="rgb(254,205,5)" rx="2" ry="2" /> +<text x="361.97" y="9519.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="733.5" y="8869" width="0.5" height="15.0" fill="rgb(234,50,3)" rx="2" ry="2" /> +<text x="736.52" y="8879.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (2 samples, 0.07%)</title><rect x="1141.9" y="11045" width="0.8" height="15.0" fill="rgb(227,186,5)" rx="2" ry="2" /> +<text x="1144.88" y="11055.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (1 samples, 0.04%)</title><rect x="399.7" y="9685" width="0.5" height="15.0" fill="rgb(254,0,9)" rx="2" ry="2" /> +<text x="402.72" y="9695.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (2 samples, 0.07%)</title><rect x="260.6" y="9637" width="0.8" height="15.0" fill="rgb(223,87,51)" rx="2" ry="2" /> +<text x="263.57" y="9647.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (6 samples, 0.22%)</title><rect x="738.7" y="10837" width="2.6" height="15.0" fill="rgb(239,28,39)" rx="2" ry="2" /> +<text x="741.72" y="10847.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="870.1" y="9813" width="0.4" height="15.0" fill="rgb(211,188,13)" rx="2" ry="2" /> +<text x="873.07" y="9823.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (16 samples, 0.59%)</title><rect x="1105.5" y="11013" width="6.9" height="15.0" fill="rgb(207,205,42)" rx="2" ry="2" /> +<text x="1108.47" y="11023.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (22 samples, 0.81%)</title><rect x="681.9" y="10085" width="9.6" height="15.0" fill="rgb(239,91,32)" rx="2" ry="2" /> +<text x="684.93" y="10095.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="848.4" y="10165" width="0.4" height="15.0" fill="rgb(250,140,39)" rx="2" ry="2" /> +<text x="851.40" y="10175.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (2 samples, 0.07%)</title><rect x="498.6" y="10021" width="0.8" height="15.0" fill="rgb(234,172,19)" rx="2" ry="2" /> +<text x="501.56" y="10031.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (13 samples, 0.48%)</title><rect x="421.8" y="9509" width="5.7" height="15.0" fill="rgb(239,122,25)" rx="2" ry="2" /> +<text x="424.83" y="9519.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (4 samples, 0.15%)</title><rect x="363.3" y="9717" width="1.7" height="15.0" fill="rgb(238,205,38)" rx="2" ry="2" /> +<text x="366.31" y="9727.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="239.8" y="10805" width="0.4" height="15.0" fill="rgb(219,57,5)" rx="2" ry="2" /> +<text x="242.76" y="10815.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="307.8" y="9429" width="0.5" height="15.0" fill="rgb(220,102,31)" rx="2" ry="2" /> +<text x="310.82" y="9439.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (3 samples, 0.11%)</title><rect x="440.5" y="9669" width="1.3" height="15.0" fill="rgb(218,169,15)" rx="2" ry="2" /> +<text x="443.47" y="9679.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (2 samples, 0.07%)</title><rect x="464.7" y="10021" width="0.9" height="15.0" fill="rgb(246,98,15)" rx="2" ry="2" /> +<text x="467.75" y="10031.5" ></text> +</g> +<g > +<title><unknown> (2 samples, 0.07%)</title><rect x="1021.4" y="6501" width="0.8" height="15.0" fill="rgb(232,49,30)" rx="2" ry="2" /> +<text x="1024.37" y="6511.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (8 samples, 0.29%)</title><rect x="773.0" y="10117" width="3.4" height="15.0" fill="rgb(234,208,33)" rx="2" ry="2" /> +<text x="775.97" y="10127.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (561 samples, 20.61%)</title><rect x="246.7" y="10213" width="243.2" height="15.0" fill="rgb(219,119,32)" rx="2" ry="2" /> +<text x="249.69" y="10223.5" >Nsfisis\Waddiwasi\Execution\Runt..</text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (1 samples, 0.04%)</title><rect x="239.8" y="10853" width="0.4" height="15.0" fill="rgb(223,84,29)" rx="2" ry="2" /> +<text x="242.76" y="10863.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (4 samples, 0.15%)</title><rect x="750.4" y="10325" width="1.8" height="15.0" fill="rgb(225,193,15)" rx="2" ry="2" /> +<text x="753.43" y="10335.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (5 samples, 0.18%)</title><rect x="773.8" y="10021" width="2.2" height="15.0" fill="rgb(221,95,44)" rx="2" ry="2" /> +<text x="776.84" y="10031.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (4 samples, 0.15%)</title><rect x="742.6" y="10293" width="1.8" height="15.0" fill="rgb(209,139,42)" rx="2" ry="2" /> +<text x="745.62" y="10303.5" ></text> +</g> +<g > +<title><unknown> (2 samples, 0.07%)</title><rect x="1021.4" y="8933" width="0.8" height="15.0" fill="rgb(235,107,28)" rx="2" ry="2" /> +<text x="1024.37" y="8943.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="392.8" y="9541" width="0.4" height="15.0" fill="rgb(215,120,0)" rx="2" ry="2" /> +<text x="395.78" y="9551.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (3 samples, 0.11%)</title><rect x="475.2" y="9829" width="1.3" height="15.0" fill="rgb(244,158,45)" rx="2" ry="2" /> +<text x="478.15" y="9839.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="870.1" y="8677" width="0.4" height="15.0" fill="rgb(220,31,32)" rx="2" ry="2" /> +<text x="873.07" y="8687.5" ></text> +</g> +<g > +<title><unknown> (2 samples, 0.07%)</title><rect x="1021.4" y="10885" width="0.8" height="15.0" fill="rgb(227,157,53)" rx="2" ry="2" /> +<text x="1024.37" y="10895.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="1169.2" y="11157" width="0.4" height="15.0" fill="rgb(245,29,18)" rx="2" ry="2" /> +<text x="1172.19" y="11167.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="412.7" y="9269" width="0.5" height="15.0" fill="rgb(217,167,47)" rx="2" ry="2" /> +<text x="415.73" y="9279.5" ></text> +</g> +<g > +<title><unknown> (2 samples, 0.07%)</title><rect x="1021.4" y="7061" width="0.8" height="15.0" fill="rgb(209,211,22)" rx="2" ry="2" /> +<text x="1024.37" y="7071.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (2 samples, 0.07%)</title><rect x="776.4" y="10469" width="0.9" height="15.0" fill="rgb(245,94,30)" rx="2" ry="2" /> +<text x="779.44" y="10479.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (571 samples, 20.98%)</title><rect x="243.2" y="10677" width="247.6" height="15.0" fill="rgb(251,185,23)" rx="2" ry="2" /> +<text x="246.23" y="10687.5" >Nsfisis\Waddiwasi\Execution\Runt..</text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="811.1" y="10213" width="0.5" height="15.0" fill="rgb(251,67,47)" rx="2" ry="2" /> +<text x="814.12" y="10223.5" ></text> +</g> +<g > +<title><unknown> (1 samples, 0.04%)</title><rect x="1021.8" y="229" width="0.4" height="15.0" fill="rgb(251,16,37)" rx="2" ry="2" /> +<text x="1024.80" y="239.5" ></text> +</g> +<g > +<title><unknown> (1 samples, 0.04%)</title><rect x="1021.8" y="2437" width="0.4" height="15.0" fill="rgb(213,72,27)" rx="2" ry="2" /> +<text x="1024.80" y="2447.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="867.9" y="10421" width="0.4" height="15.0" fill="rgb(243,136,40)" rx="2" ry="2" /> +<text x="870.91" y="10431.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Stack::pushValue (1 samples, 0.04%)</title><rect x="866.2" y="10357" width="0.4" height="15.0" fill="rgb(244,49,18)" rx="2" ry="2" /> +<text x="869.17" y="10367.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (2 samples, 0.07%)</title><rect x="486.9" y="9733" width="0.8" height="15.0" fill="rgb(216,155,37)" rx="2" ry="2" /> +<text x="489.86" y="9743.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (20 samples, 0.73%)</title><rect x="283.5" y="9765" width="8.7" height="15.0" fill="rgb(248,147,42)" rx="2" ry="2" /> +<text x="286.54" y="9775.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (4 samples, 0.15%)</title><rect x="732.2" y="10565" width="1.8" height="15.0" fill="rgb(237,141,24)" rx="2" ry="2" /> +<text x="735.22" y="10575.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (1 samples, 0.04%)</title><rect x="735.3" y="10453" width="0.4" height="15.0" fill="rgb(220,191,8)" rx="2" ry="2" /> +<text x="738.25" y="10463.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (9 samples, 0.33%)</title><rect x="498.6" y="10325" width="3.9" height="15.0" fill="rgb(236,135,11)" rx="2" ry="2" /> +<text x="501.56" y="10335.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (1 samples, 0.04%)</title><rect x="468.2" y="9877" width="0.4" height="15.0" fill="rgb(234,130,2)" rx="2" ry="2" /> +<text x="471.21" y="9887.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (29 samples, 1.07%)</title><rect x="490.8" y="10645" width="12.5" height="15.0" fill="rgb(244,189,51)" rx="2" ry="2" /> +<text x="493.76" y="10655.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="268.8" y="9397" width="0.4" height="15.0" fill="rgb(220,89,5)" rx="2" ry="2" /> +<text x="271.80" y="9407.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="733.5" y="9445" width="0.5" height="15.0" fill="rgb(216,53,26)" rx="2" ry="2" /> +<text x="736.52" y="9455.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (7 samples, 0.26%)</title><rect x="802.4" y="10341" width="3.1" height="15.0" fill="rgb(217,196,13)" rx="2" ry="2" /> +<text x="805.45" y="10351.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (14 samples, 0.51%)</title><rect x="440.5" y="9925" width="6.0" height="15.0" fill="rgb(223,82,20)" rx="2" ry="2" /> +<text x="443.47" y="9935.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (2 samples, 0.07%)</title><rect x="325.2" y="9333" width="0.8" height="15.0" fill="rgb(230,75,28)" rx="2" ry="2" /> +<text x="328.16" y="9343.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="360.3" y="9701" width="0.4" height="15.0" fill="rgb(253,215,11)" rx="2" ry="2" /> +<text x="363.27" y="9711.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (3 samples, 0.11%)</title><rect x="529.8" y="10261" width="1.3" height="15.0" fill="rgb(210,120,17)" rx="2" ry="2" /> +<text x="532.77" y="10271.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (1 samples, 0.04%)</title><rect x="724.8" y="9909" width="0.5" height="15.0" fill="rgb(209,47,41)" rx="2" ry="2" /> +<text x="727.85" y="9919.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Stack::push (3 samples, 0.11%)</title><rect x="1143.6" y="11237" width="1.3" height="15.0" fill="rgb(205,116,47)" rx="2" ry="2" /> +<text x="1146.61" y="11247.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="1115.9" y="11029" width="0.4" height="15.0" fill="rgb(240,64,12)" rx="2" ry="2" /> +<text x="1118.87" y="11039.5" ></text> +</g> +<g > +<title>{closure}(/home/ken/src/php-waddiwasi/examples/php-on-wasm/php-wasm.php:412-427) (1 samples, 0.04%)</title><rect x="734.8" y="10709" width="0.5" height="15.0" fill="rgb(236,130,16)" rx="2" ry="2" /> +<text x="737.82" y="10719.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="424.4" y="8933" width="0.5" height="15.0" fill="rgb(232,190,52)" rx="2" ry="2" /> +<text x="427.43" y="8943.5" ></text> +</g> +<g > +<title><unknown> (2 samples, 0.07%)</title><rect x="1021.4" y="9493" width="0.8" height="15.0" fill="rgb(222,21,5)" rx="2" ry="2" /> +<text x="1024.37" y="9503.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="1112.0" y="10805" width="0.4" height="15.0" fill="rgb(215,52,29)" rx="2" ry="2" /> +<text x="1114.97" y="10815.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doStoreI32 (56 samples, 2.06%)</title><rect x="145.3" y="11173" width="24.2" height="15.0" fill="rgb(227,134,7)" rx="2" ry="2" /> +<text x="148.25" y="11183.5" >N..</text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="409.3" y="9285" width="0.4" height="15.0" fill="rgb(232,211,22)" rx="2" ry="2" /> +<text x="412.26" y="9295.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="399.7" y="9653" width="0.5" height="15.0" fill="rgb(245,219,13)" rx="2" ry="2" /> +<text x="402.72" y="9663.5" ></text> +</g> +<g > +<title><unknown> (1 samples, 0.04%)</title><rect x="1021.8" y="5861" width="0.4" height="15.0" fill="rgb(242,199,28)" rx="2" ry="2" /> +<text x="1024.80" y="5871.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="691.0" y="9957" width="0.5" height="15.0" fill="rgb(253,66,23)" rx="2" ry="2" /> +<text x="694.04" y="9967.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="733.5" y="8517" width="0.5" height="15.0" fill="rgb(233,97,20)" rx="2" ry="2" /> +<text x="736.52" y="8527.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="265.3" y="9429" width="0.5" height="15.0" fill="rgb(210,188,18)" rx="2" ry="2" /> +<text x="268.33" y="9439.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (10 samples, 0.37%)</title><rect x="369.4" y="9781" width="4.3" height="15.0" fill="rgb(253,140,28)" rx="2" ry="2" /> +<text x="372.38" y="9791.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="487.7" y="9701" width="0.5" height="15.0" fill="rgb(235,185,8)" rx="2" ry="2" /> +<text x="490.72" y="9711.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\ControlFlowResult::Br (1 samples, 0.04%)</title><rect x="340.8" y="10005" width="0.4" height="15.0" fill="rgb(253,132,1)" rx="2" ry="2" /> +<text x="343.76" y="10015.5" ></text> +</g> +<g > +<title><unknown> (1 samples, 0.04%)</title><rect x="1021.8" y="117" width="0.4" height="15.0" fill="rgb(209,157,48)" rx="2" ry="2" /> +<text x="1024.80" y="127.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="1050.0" y="10949" width="0.4" height="15.0" fill="rgb(211,14,31)" rx="2" ry="2" /> +<text x="1052.98" y="10959.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="724.8" y="9781" width="0.5" height="15.0" fill="rgb(253,36,35)" rx="2" ry="2" /> +<text x="727.85" y="9791.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (2 samples, 0.07%)</title><rect x="482.1" y="9845" width="0.9" height="15.0" fill="rgb(249,169,42)" rx="2" ry="2" /> +<text x="485.09" y="9855.5" ></text> +</g> +<g > +<title><unknown> (1 samples, 0.04%)</title><rect x="1021.8" y="3189" width="0.4" height="15.0" fill="rgb(214,6,42)" rx="2" ry="2" /> +<text x="1024.80" y="3199.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="409.3" y="9381" width="0.4" height="15.0" fill="rgb(226,65,16)" rx="2" ry="2" /> +<text x="412.26" y="9391.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="870.1" y="9925" width="0.4" height="15.0" fill="rgb(230,176,40)" rx="2" ry="2" /> +<text x="873.07" y="9935.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (1 samples, 0.04%)</title><rect x="268.8" y="9525" width="0.4" height="15.0" fill="rgb(254,180,14)" rx="2" ry="2" /> +<text x="271.80" y="9535.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (7 samples, 0.26%)</title><rect x="735.3" y="10613" width="3.0" height="15.0" fill="rgb(229,98,49)" rx="2" ry="2" /> +<text x="738.25" y="10623.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (1 samples, 0.04%)</title><rect x="320.0" y="9621" width="0.4" height="15.0" fill="rgb(229,183,50)" rx="2" ry="2" /> +<text x="322.96" y="9631.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (2 samples, 0.07%)</title><rect x="734.0" y="10277" width="0.8" height="15.0" fill="rgb(239,62,14)" rx="2" ry="2" /> +<text x="736.95" y="10287.5" ></text> +</g> +<g > +<title><unknown> (1 samples, 0.04%)</title><rect x="1021.8" y="4773" width="0.4" height="15.0" fill="rgb(244,118,28)" rx="2" ry="2" /> +<text x="1024.80" y="4783.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\BinaryFormat\Decoder::{closure}(/home/ken/src/php-waddiwasi/src/BinaryFormat/Decoder.php:524-557) (1 samples, 0.04%)</title><rect x="738.3" y="10677" width="0.4" height="15.0" fill="rgb(238,127,52)" rx="2" ry="2" /> +<text x="741.29" y="10687.5" ></text> +</g> +<g > +<title><unknown> (2 samples, 0.07%)</title><rect x="1021.4" y="9877" width="0.8" height="15.0" fill="rgb(209,140,25)" rx="2" ry="2" /> +<text x="1024.37" y="9887.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="868.3" y="10885" width="0.5" height="15.0" fill="rgb(242,154,37)" rx="2" ry="2" /> +<text x="871.34" y="10895.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (2 samples, 0.07%)</title><rect x="469.9" y="9957" width="0.9" height="15.0" fill="rgb(247,42,17)" rx="2" ry="2" /> +<text x="472.95" y="9967.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (9 samples, 0.33%)</title><rect x="498.6" y="10277" width="3.9" height="15.0" fill="rgb(251,5,39)" rx="2" ry="2" /> +<text x="501.56" y="10287.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="849.7" y="10149" width="0.4" height="15.0" fill="rgb(223,6,16)" rx="2" ry="2" /> +<text x="852.70" y="10159.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (36 samples, 1.32%)</title><rect x="349.4" y="9877" width="15.6" height="15.0" fill="rgb(236,144,4)" rx="2" ry="2" /> +<text x="352.43" y="9887.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="869.2" y="10069" width="0.4" height="15.0" fill="rgb(222,60,20)" rx="2" ry="2" /> +<text x="872.21" y="10079.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (3 samples, 0.11%)</title><rect x="385.0" y="9445" width="1.3" height="15.0" fill="rgb(207,83,18)" rx="2" ry="2" /> +<text x="387.98" y="9455.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="738.3" y="10389" width="0.4" height="15.0" fill="rgb(212,48,18)" rx="2" ry="2" /> +<text x="741.29" y="10399.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="739.6" y="10149" width="0.4" height="15.0" fill="rgb(232,114,37)" rx="2" ry="2" /> +<text x="742.59" y="10159.5" ></text> +</g> +<g > +<title><unknown> (1 samples, 0.04%)</title><rect x="1021.8" y="965" width="0.4" height="15.0" fill="rgb(222,189,4)" rx="2" ry="2" /> +<text x="1024.80" y="975.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (1 samples, 0.04%)</title><rect x="780.3" y="10325" width="0.5" height="15.0" fill="rgb(220,122,6)" rx="2" ry="2" /> +<text x="783.34" y="10335.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::instantiate (520 samples, 19.10%)</title><rect x="13.5" y="11237" width="225.4" height="15.0" fill="rgb(218,87,51)" rx="2" ry="2" /> +<text x="16.47" y="11247.5" >Nsfisis\Waddiwasi\Execution\R..</text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::expandBlockType (1 samples, 0.04%)</title><rect x="691.0" y="9973" width="0.5" height="15.0" fill="rgb(247,153,37)" rx="2" ry="2" /> +<text x="694.04" y="9983.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (24 samples, 0.88%)</title><rect x="668.5" y="10037" width="10.4" height="15.0" fill="rgb(224,159,0)" rx="2" ry="2" /> +<text x="671.49" y="10047.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (3 samples, 0.11%)</title><rect x="423.6" y="9253" width="1.3" height="15.0" fill="rgb(232,224,20)" rx="2" ry="2" /> +<text x="426.56" y="9263.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="502.9" y="10213" width="0.4" height="15.0" fill="rgb(232,131,48)" rx="2" ry="2" /> +<text x="505.89" y="10223.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="238.9" y="10197" width="0.4" height="15.0" fill="rgb(233,178,29)" rx="2" ry="2" /> +<text x="241.89" y="10207.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (2 samples, 0.07%)</title><rect x="1041.3" y="11125" width="0.9" height="15.0" fill="rgb(208,124,43)" rx="2" ry="2" /> +<text x="1044.31" y="11135.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (23 samples, 0.84%)</title><rect x="418.4" y="9605" width="9.9" height="15.0" fill="rgb(216,126,9)" rx="2" ry="2" /> +<text x="421.36" y="9615.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="442.2" y="8645" width="0.4" height="15.0" fill="rgb(214,200,46)" rx="2" ry="2" /> +<text x="445.20" y="8655.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (8 samples, 0.29%)</title><rect x="400.6" y="9749" width="3.5" height="15.0" fill="rgb(205,167,1)" rx="2" ry="2" /> +<text x="403.59" y="9759.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (7 samples, 0.26%)</title><rect x="735.3" y="10549" width="3.0" height="15.0" fill="rgb(235,177,2)" rx="2" ry="2" /> +<text x="738.25" y="10559.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::deactivateLabel (1 samples, 0.04%)</title><rect x="1104.6" y="11029" width="0.4" height="15.0" fill="rgb(237,188,23)" rx="2" ry="2" /> +<text x="1107.60" y="11039.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (2 samples, 0.07%)</title><rect x="448.3" y="9861" width="0.8" height="15.0" fill="rgb(244,49,21)" rx="2" ry="2" /> +<text x="451.27" y="9871.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="739.2" y="10357" width="0.4" height="15.0" fill="rgb(247,84,54)" rx="2" ry="2" /> +<text x="742.16" y="10367.5" ></text> +</g> +<g > +<title><unknown> (2 samples, 0.07%)</title><rect x="1155.8" y="11237" width="0.8" height="15.0" fill="rgb(241,163,21)" rx="2" ry="2" /> +<text x="1158.75" y="11247.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="258.0" y="9701" width="0.4" height="15.0" fill="rgb(238,148,5)" rx="2" ry="2" /> +<text x="260.96" y="9711.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="733.5" y="10053" width="0.5" height="15.0" fill="rgb(221,77,19)" rx="2" ry="2" /> +<text x="736.52" y="10063.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (29 samples, 1.07%)</title><rect x="490.8" y="10581" width="12.5" height="15.0" fill="rgb(236,137,47)" rx="2" ry="2" /> +<text x="493.76" y="10591.5" ></text> +</g> +<g > +<title><unknown> (1 samples, 0.04%)</title><rect x="1110.2" y="10933" width="0.5" height="15.0" fill="rgb(247,116,31)" rx="2" ry="2" /> +<text x="1113.24" y="10943.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="453.5" y="9685" width="0.4" height="15.0" fill="rgb(233,200,4)" rx="2" ry="2" /> +<text x="456.48" y="9695.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (2 samples, 0.07%)</title><rect x="737.0" y="10469" width="0.9" height="15.0" fill="rgb(239,47,7)" rx="2" ry="2" /> +<text x="739.99" y="10479.5" ></text> +</g> +<g > +<title><unknown> (1 samples, 0.04%)</title><rect x="1021.8" y="3029" width="0.4" height="15.0" fill="rgb(237,1,22)" rx="2" ry="2" /> +<text x="1024.80" y="3039.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (241 samples, 8.85%)</title><rect x="547.1" y="10517" width="104.5" height="15.0" fill="rgb(208,215,4)" rx="2" ry="2" /> +<text x="550.11" y="10527.5" >Nsfisis\Wadd..</text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="733.5" y="9765" width="0.5" height="15.0" fill="rgb(251,185,6)" rx="2" ry="2" /> +<text x="736.52" y="9775.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="482.5" y="9637" width="0.5" height="15.0" fill="rgb(206,113,6)" rx="2" ry="2" /> +<text x="485.52" y="9647.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (57 samples, 2.09%)</title><rect x="503.8" y="10453" width="24.7" height="15.0" fill="rgb(218,44,39)" rx="2" ry="2" /> +<text x="506.76" y="10463.5" >N..</text> +</g> +<g > +<title><unknown> (1 samples, 0.04%)</title><rect x="1021.8" y="3589" width="0.4" height="15.0" fill="rgb(248,172,41)" rx="2" ry="2" /> +<text x="1024.80" y="3599.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (5 samples, 0.18%)</title><rect x="868.8" y="11045" width="2.1" height="15.0" fill="rgb(253,41,48)" rx="2" ry="2" /> +<text x="871.77" y="11055.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (42 samples, 1.54%)</title><rect x="1095.5" y="11141" width="18.2" height="15.0" fill="rgb(222,12,27)" rx="2" ry="2" /> +<text x="1098.50" y="11151.5" ></text> +</g> +<g > +<title><unknown> (1 samples, 0.04%)</title><rect x="1021.8" y="4613" width="0.4" height="15.0" fill="rgb(250,216,2)" rx="2" ry="2" /> +<text x="1024.80" y="4623.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="869.2" y="10005" width="0.4" height="15.0" fill="rgb(244,118,23)" rx="2" ry="2" /> +<text x="872.21" y="10015.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="780.3" y="10213" width="0.5" height="15.0" fill="rgb(225,100,41)" rx="2" ry="2" /> +<text x="783.34" y="10223.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (343 samples, 12.60%)</title><rect x="503.3" y="10677" width="148.7" height="15.0" fill="rgb(251,135,40)" rx="2" ry="2" /> +<text x="506.33" y="10687.5" >Nsfisis\Waddiwasi\E..</text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="409.3" y="9189" width="0.4" height="15.0" fill="rgb(248,39,43)" rx="2" ry="2" /> +<text x="412.26" y="9199.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="870.1" y="9013" width="0.4" height="15.0" fill="rgb(232,217,34)" rx="2" ry="2" /> +<text x="873.07" y="9023.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (6 samples, 0.22%)</title><rect x="788.1" y="10293" width="2.6" height="15.0" fill="rgb(236,29,54)" rx="2" ry="2" /> +<text x="791.14" y="10303.5" ></text> +</g> +<g > +<title><unknown> (2 samples, 0.07%)</title><rect x="1021.4" y="9653" width="0.8" height="15.0" fill="rgb(205,193,40)" rx="2" ry="2" /> +<text x="1024.37" y="9663.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="465.2" y="9893" width="0.4" height="15.0" fill="rgb(242,217,3)" rx="2" ry="2" /> +<text x="468.18" y="9903.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Stack::pushBool (1 samples, 0.04%)</title><rect x="539.3" y="10421" width="0.4" height="15.0" fill="rgb(207,227,2)" rx="2" ry="2" /> +<text x="542.31" y="10431.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (570 samples, 20.94%)</title><rect x="243.2" y="10613" width="247.1" height="15.0" fill="rgb(223,149,50)" rx="2" ry="2" /> +<text x="246.23" y="10623.5" >Nsfisis\Waddiwasi\Execution\Runt..</text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (241 samples, 8.85%)</title><rect x="547.1" y="9989" width="104.5" height="15.0" fill="rgb(209,192,1)" rx="2" ry="2" /> +<text x="550.11" y="9999.5" >Nsfisis\Wadd..</text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (16 samples, 0.59%)</title><rect x="476.5" y="9893" width="6.9" height="15.0" fill="rgb(224,140,14)" rx="2" ry="2" /> +<text x="479.45" y="9903.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (1 samples, 0.04%)</title><rect x="484.3" y="9701" width="0.4" height="15.0" fill="rgb(224,83,9)" rx="2" ry="2" /> +<text x="487.25" y="9711.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="1036.1" y="10853" width="0.4" height="15.0" fill="rgb(248,172,26)" rx="2" ry="2" /> +<text x="1039.11" y="10863.5" ></text> +</g> +<g > +<title><unknown> (1 samples, 0.04%)</title><rect x="1021.8" y="5141" width="0.4" height="15.0" fill="rgb(216,137,53)" rx="2" ry="2" /> +<text x="1024.80" y="5151.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (1 samples, 0.04%)</title><rect x="412.7" y="9285" width="0.5" height="15.0" fill="rgb(208,92,0)" rx="2" ry="2" /> +<text x="415.73" y="9295.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="494.2" y="10389" width="0.5" height="15.0" fill="rgb(220,209,26)" rx="2" ry="2" /> +<text x="497.22" y="10399.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (1 samples, 0.04%)</title><rect x="868.3" y="10853" width="0.5" height="15.0" fill="rgb(227,92,54)" rx="2" ry="2" /> +<text x="871.34" y="10863.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="442.2" y="8709" width="0.4" height="15.0" fill="rgb(251,161,14)" rx="2" ry="2" /> +<text x="445.20" y="8719.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="781.2" y="10229" width="0.4" height="15.0" fill="rgb(219,98,40)" rx="2" ry="2" /> +<text x="784.20" y="10239.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="485.1" y="9813" width="0.5" height="15.0" fill="rgb(236,124,29)" rx="2" ry="2" /> +<text x="488.12" y="9823.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Stack::pushBool (1 samples, 0.04%)</title><rect x="742.2" y="10453" width="0.4" height="15.0" fill="rgb(228,173,23)" rx="2" ry="2" /> +<text x="745.19" y="10463.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (2 samples, 0.07%)</title><rect x="307.0" y="9317" width="0.8" height="15.0" fill="rgb(236,146,25)" rx="2" ry="2" /> +<text x="309.95" y="9327.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (1 samples, 0.04%)</title><rect x="344.7" y="9925" width="0.4" height="15.0" fill="rgb(252,152,32)" rx="2" ry="2" /> +<text x="347.67" y="9935.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (1 samples, 0.04%)</title><rect x="738.3" y="10629" width="0.4" height="15.0" fill="rgb(227,196,21)" rx="2" ry="2" /> +<text x="741.29" y="10639.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (6 samples, 0.22%)</title><rect x="738.7" y="10885" width="2.6" height="15.0" fill="rgb(220,96,52)" rx="2" ry="2" /> +<text x="741.72" y="10895.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (14 samples, 0.51%)</title><rect x="440.5" y="9941" width="6.0" height="15.0" fill="rgb(232,94,42)" rx="2" ry="2" /> +<text x="443.47" y="9951.5" ></text> +</g> +<g > +<title>print_r (1 samples, 0.04%)</title><rect x="165.6" y="11125" width="0.5" height="15.0" fill="rgb(224,73,9)" rx="2" ry="2" /> +<text x="168.63" y="11135.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="486.4" y="9781" width="0.5" height="15.0" fill="rgb(222,134,1)" rx="2" ry="2" /> +<text x="489.42" y="9791.5" ></text> +</g> +<g > +<title><unknown> (4 samples, 0.15%)</title><rect x="1079.5" y="11189" width="1.7" height="15.0" fill="rgb(220,146,0)" rx="2" ry="2" /> +<text x="1082.46" y="11199.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="398.4" y="9493" width="0.5" height="15.0" fill="rgb(244,170,4)" rx="2" ry="2" /> +<text x="401.42" y="9503.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (5 samples, 0.18%)</title><rect x="738.7" y="10805" width="2.2" height="15.0" fill="rgb(253,11,19)" rx="2" ry="2" /> +<text x="741.72" y="10815.5" ></text> +</g> +<g > +<title><unknown> (1 samples, 0.04%)</title><rect x="1021.8" y="3477" width="0.4" height="15.0" fill="rgb(249,204,15)" rx="2" ry="2" /> +<text x="1024.80" y="3487.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (27 samples, 0.99%)</title><rect x="452.2" y="10069" width="11.7" height="15.0" fill="rgb(236,192,17)" rx="2" ry="2" /> +<text x="455.17" y="10079.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (24 samples, 0.88%)</title><rect x="453.5" y="9925" width="10.4" height="15.0" fill="rgb(250,192,34)" rx="2" ry="2" /> +<text x="456.48" y="9935.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (241 samples, 8.85%)</title><rect x="547.1" y="10037" width="104.5" height="15.0" fill="rgb(246,17,5)" rx="2" ry="2" /> +<text x="550.11" y="10047.5" >Nsfisis\Wadd..</text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="439.2" y="9717" width="0.4" height="15.0" fill="rgb(214,165,6)" rx="2" ry="2" /> +<text x="442.17" y="9727.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (5 samples, 0.18%)</title><rect x="295.2" y="9701" width="2.2" height="15.0" fill="rgb(241,189,18)" rx="2" ry="2" /> +<text x="298.25" y="9711.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (1 samples, 0.04%)</title><rect x="340.8" y="9957" width="0.4" height="15.0" fill="rgb(236,155,46)" rx="2" ry="2" /> +<text x="343.76" y="9967.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="739.6" y="10485" width="0.4" height="15.0" fill="rgb(225,8,35)" rx="2" ry="2" /> +<text x="742.59" y="10495.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="785.1" y="10325" width="0.4" height="15.0" fill="rgb(251,29,20)" rx="2" ry="2" /> +<text x="788.11" y="10335.5" ></text> +</g> +<g > +<title><unknown> (2 samples, 0.07%)</title><rect x="1021.4" y="9941" width="0.8" height="15.0" fill="rgb(233,26,2)" rx="2" ry="2" /> +<text x="1024.37" y="9951.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\BinaryFormat\Decoder::{closure}(/home/ken/src/php-waddiwasi/src/BinaryFormat/Decoder.php:263-266) (1,159 samples, 42.58%)</title><rect x="238.9" y="11125" width="502.4" height="15.0" fill="rgb(252,4,28)" rx="2" ry="2" /> +<text x="241.89" y="11135.5" >Nsfisis\Waddiwasi\BinaryFormat\Decoder::{closure}(/home/ken/src/php-..</text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (22 samples, 0.81%)</title><rect x="839.3" y="10213" width="9.5" height="15.0" fill="rgb(230,229,2)" rx="2" ry="2" /> +<text x="842.29" y="10223.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="668.1" y="9989" width="0.4" height="15.0" fill="rgb(232,161,19)" rx="2" ry="2" /> +<text x="671.06" y="9999.5" ></text> +</g> +<g > +<title><unknown> (1 samples, 0.04%)</title><rect x="1021.8" y="4213" width="0.4" height="15.0" fill="rgb(225,125,34)" rx="2" ry="2" /> +<text x="1024.80" y="4223.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (17 samples, 0.62%)</title><rect x="319.5" y="9637" width="7.4" height="15.0" fill="rgb(247,137,42)" rx="2" ry="2" /> +<text x="322.52" y="9647.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="870.1" y="8581" width="0.4" height="15.0" fill="rgb(244,6,8)" rx="2" ry="2" /> +<text x="873.07" y="8591.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (7 samples, 0.26%)</title><rect x="533.7" y="10117" width="3.0" height="15.0" fill="rgb(243,149,43)" rx="2" ry="2" /> +<text x="536.67" y="10127.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="733.5" y="8213" width="0.5" height="15.0" fill="rgb(233,208,16)" rx="2" ry="2" /> +<text x="736.52" y="8223.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (2 samples, 0.07%)</title><rect x="453.9" y="9573" width="0.9" height="15.0" fill="rgb(213,114,39)" rx="2" ry="2" /> +<text x="456.91" y="9583.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (184 samples, 6.76%)</title><rect x="652.5" y="10469" width="79.7" height="15.0" fill="rgb(227,216,25)" rx="2" ry="2" /> +<text x="655.45" y="10479.5" >Nsfisis\W..</text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="399.7" y="9733" width="0.5" height="15.0" fill="rgb(240,2,12)" rx="2" ry="2" /> +<text x="402.72" y="9743.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (9 samples, 0.33%)</title><rect x="254.5" y="9861" width="3.9" height="15.0" fill="rgb(227,19,52)" rx="2" ry="2" /> +<text x="257.50" y="9871.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Stack::pushValue (2 samples, 0.07%)</title><rect x="352.5" y="9397" width="0.8" height="15.0" fill="rgb(213,125,3)" rx="2" ry="2" /> +<text x="355.47" y="9407.5" ></text> +</g> +<g > +<title><unknown> (2 samples, 0.07%)</title><rect x="1021.4" y="11125" width="0.8" height="15.0" fill="rgb(237,2,49)" rx="2" ry="2" /> +<text x="1024.37" y="11135.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="733.5" y="9733" width="0.5" height="15.0" fill="rgb(238,169,24)" rx="2" ry="2" /> +<text x="736.52" y="9743.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="758.2" y="9989" width="0.5" height="15.0" fill="rgb(251,85,48)" rx="2" ry="2" /> +<text x="761.23" y="9999.5" ></text> +</g> +<g > +<title><unknown> (1 samples, 0.04%)</title><rect x="1021.8" y="5221" width="0.4" height="15.0" fill="rgb(235,135,44)" rx="2" ry="2" /> +<text x="1024.80" y="5231.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (8 samples, 0.29%)</title><rect x="485.6" y="9989" width="3.4" height="15.0" fill="rgb(231,228,6)" rx="2" ry="2" /> +<text x="488.55" y="9999.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (13 samples, 0.48%)</title><rect x="541.5" y="10469" width="5.6" height="15.0" fill="rgb(230,83,16)" rx="2" ry="2" /> +<text x="544.48" y="10479.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (12 samples, 0.44%)</title><rect x="312.2" y="9541" width="5.2" height="15.0" fill="rgb(248,210,19)" rx="2" ry="2" /> +<text x="315.15" y="9551.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="268.8" y="9461" width="0.4" height="15.0" fill="rgb(237,30,48)" rx="2" ry="2" /> +<text x="271.80" y="9471.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="245.4" y="10293" width="0.4" height="15.0" fill="rgb(238,192,29)" rx="2" ry="2" /> +<text x="248.39" y="10303.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (3 samples, 0.11%)</title><rect x="768.6" y="9861" width="1.3" height="15.0" fill="rgb(235,155,19)" rx="2" ry="2" /> +<text x="771.63" y="9871.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Stack::push (1 samples, 0.04%)</title><rect x="678.0" y="9989" width="0.5" height="15.0" fill="rgb(210,189,44)" rx="2" ry="2" /> +<text x="681.03" y="9999.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (8 samples, 0.29%)</title><rect x="1108.9" y="10949" width="3.5" height="15.0" fill="rgb(239,112,32)" rx="2" ry="2" /> +<text x="1111.93" y="10959.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (1 samples, 0.04%)</title><rect x="446.1" y="9733" width="0.4" height="15.0" fill="rgb(222,67,28)" rx="2" ry="2" /> +<text x="449.11" y="9743.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="733.5" y="8229" width="0.5" height="15.0" fill="rgb(244,176,42)" rx="2" ry="2" /> +<text x="736.52" y="8239.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="268.8" y="9413" width="0.4" height="15.0" fill="rgb(232,54,48)" rx="2" ry="2" /> +<text x="271.80" y="9423.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (3 samples, 0.11%)</title><rect x="768.6" y="9877" width="1.3" height="15.0" fill="rgb(241,29,54)" rx="2" ry="2" /> +<text x="771.63" y="9887.5" ></text> +</g> +<g > +<title><unknown> (1 samples, 0.04%)</title><rect x="1021.8" y="2917" width="0.4" height="15.0" fill="rgb(216,131,22)" rx="2" ry="2" /> +<text x="1024.80" y="2927.5" ></text> +</g> +<g > +<title><unknown> (1 samples, 0.04%)</title><rect x="1021.8" y="5045" width="0.4" height="15.0" fill="rgb(222,97,35)" rx="2" ry="2" /> +<text x="1024.80" y="5055.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (1 samples, 0.04%)</title><rect x="1139.7" y="11189" width="0.4" height="15.0" fill="rgb(228,97,11)" rx="2" ry="2" /> +<text x="1142.71" y="11199.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="543.2" y="10117" width="0.4" height="15.0" fill="rgb(251,44,24)" rx="2" ry="2" /> +<text x="546.21" y="10127.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::deactivateLabel (1 samples, 0.04%)</title><rect x="401.5" y="9637" width="0.4" height="15.0" fill="rgb(244,165,34)" rx="2" ry="2" /> +<text x="404.45" y="9647.5" ></text> +</g> +<g > +<title><unknown> (1 samples, 0.04%)</title><rect x="1021.8" y="1877" width="0.4" height="15.0" fill="rgb(209,118,17)" rx="2" ry="2" /> +<text x="1024.80" y="1887.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (1 samples, 0.04%)</title><rect x="739.2" y="10549" width="0.4" height="15.0" fill="rgb(205,162,21)" rx="2" ry="2" /> +<text x="742.16" y="10559.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="537.1" y="10021" width="0.5" height="15.0" fill="rgb(211,137,52)" rx="2" ry="2" /> +<text x="540.14" y="10031.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="740.5" y="10421" width="0.4" height="15.0" fill="rgb(238,101,7)" rx="2" ry="2" /> +<text x="743.46" y="10431.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (7 samples, 0.26%)</title><rect x="533.7" y="10149" width="3.0" height="15.0" fill="rgb(237,12,2)" rx="2" ry="2" /> +<text x="536.67" y="10159.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="734.8" y="10645" width="0.5" height="15.0" fill="rgb(212,95,52)" rx="2" ry="2" /> +<text x="737.82" y="10655.5" ></text> +</g> +<g > +<title><unknown> (4 samples, 0.15%)</title><rect x="1079.5" y="11205" width="1.7" height="15.0" fill="rgb(241,179,54)" rx="2" ry="2" /> +<text x="1082.46" y="11215.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (2 samples, 0.07%)</title><rect x="498.6" y="10085" width="0.8" height="15.0" fill="rgb(244,81,12)" rx="2" ry="2" /> +<text x="501.56" y="10095.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="870.1" y="9605" width="0.4" height="15.0" fill="rgb(222,112,48)" rx="2" ry="2" /> +<text x="873.07" y="9615.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="733.5" y="9365" width="0.5" height="15.0" fill="rgb(213,54,13)" rx="2" ry="2" /> +<text x="736.52" y="9375.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (2 samples, 0.07%)</title><rect x="486.9" y="9717" width="0.8" height="15.0" fill="rgb(224,138,43)" rx="2" ry="2" /> +<text x="489.86" y="9727.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="862.3" y="10149" width="0.4" height="15.0" fill="rgb(241,62,52)" rx="2" ry="2" /> +<text x="865.27" y="10159.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (1 samples, 0.04%)</title><rect x="238.9" y="10661" width="0.4" height="15.0" fill="rgb(242,130,36)" rx="2" ry="2" /> +<text x="241.89" y="10671.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1,144 samples, 42.03%)</title><rect x="242.8" y="10965" width="495.9" height="15.0" fill="rgb(240,76,20)" rx="2" ry="2" /> +<text x="245.79" y="10975.5" >Nsfisis\Waddiwasi\Execution\Runtime::execInstrs</text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Stack::pushValue (1 samples, 0.04%)</title><rect x="291.8" y="9717" width="0.4" height="15.0" fill="rgb(250,130,2)" rx="2" ry="2" /> +<text x="294.78" y="9727.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (35 samples, 1.29%)</title><rect x="705.3" y="9925" width="15.2" height="15.0" fill="rgb(240,110,30)" rx="2" ry="2" /> +<text x="708.34" y="9935.5" ></text> +</g> +<g > +<title><unknown> (2 samples, 0.07%)</title><rect x="1021.4" y="10773" width="0.8" height="15.0" fill="rgb(238,205,8)" rx="2" ry="2" /> +<text x="1024.37" y="10783.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="372.0" y="9541" width="0.4" height="15.0" fill="rgb(245,28,13)" rx="2" ry="2" /> +<text x="374.98" y="9551.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (183 samples, 6.72%)</title><rect x="652.9" y="10213" width="79.3" height="15.0" fill="rgb(220,111,37)" rx="2" ry="2" /> +<text x="655.89" y="10223.5" >Nsfisis\W..</text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="483.4" y="9893" width="0.4" height="15.0" fill="rgb(216,21,36)" rx="2" ry="2" /> +<text x="486.39" y="9903.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (6 samples, 0.22%)</title><rect x="434.8" y="9813" width="2.6" height="15.0" fill="rgb(240,132,31)" rx="2" ry="2" /> +<text x="437.83" y="9823.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (1 samples, 0.04%)</title><rect x="491.6" y="10469" width="0.5" height="15.0" fill="rgb(243,105,27)" rx="2" ry="2" /> +<text x="494.62" y="10479.5" ></text> +</g> +<g > +<title><unknown> (1 samples, 0.04%)</title><rect x="1155.8" y="11221" width="0.4" height="15.0" fill="rgb(245,79,50)" rx="2" ry="2" /> +<text x="1158.75" y="11231.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (2 samples, 0.07%)</title><rect x="482.1" y="9861" width="0.9" height="15.0" fill="rgb(239,166,20)" rx="2" ry="2" /> +<text x="485.09" y="9871.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (3 samples, 0.11%)</title><rect x="438.3" y="9845" width="1.3" height="15.0" fill="rgb(237,208,47)" rx="2" ry="2" /> +<text x="441.30" y="9855.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="870.1" y="8229" width="0.4" height="15.0" fill="rgb(239,39,18)" rx="2" ry="2" /> +<text x="873.07" y="8239.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="325.6" y="9269" width="0.4" height="15.0" fill="rgb(221,9,37)" rx="2" ry="2" /> +<text x="328.59" y="9279.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (2 samples, 0.07%)</title><rect x="1141.9" y="11157" width="0.8" height="15.0" fill="rgb(253,152,28)" rx="2" ry="2" /> +<text x="1144.88" y="11167.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="412.7" y="9333" width="0.5" height="15.0" fill="rgb(223,112,25)" rx="2" ry="2" /> +<text x="415.73" y="9343.5" ></text> +</g> +<g > +<title><unknown> (1 samples, 0.04%)</title><rect x="304.3" y="9269" width="0.5" height="15.0" fill="rgb(205,36,13)" rx="2" ry="2" /> +<text x="307.35" y="9279.5" ></text> +</g> +<g > +<title><unknown> (1 samples, 0.04%)</title><rect x="1021.8" y="2613" width="0.4" height="15.0" fill="rgb(249,164,24)" rx="2" ry="2" /> +<text x="1024.80" y="2623.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (1 samples, 0.04%)</title><rect x="733.5" y="8261" width="0.5" height="15.0" fill="rgb(231,152,43)" rx="2" ry="2" /> +<text x="736.52" y="8271.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="867.9" y="10565" width="0.4" height="15.0" fill="rgb(234,195,52)" rx="2" ry="2" /> +<text x="870.91" y="10575.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="386.7" y="9605" width="0.4" height="15.0" fill="rgb(233,4,8)" rx="2" ry="2" /> +<text x="389.72" y="9615.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (19 samples, 0.70%)</title><rect x="262.3" y="9669" width="8.2" height="15.0" fill="rgb(213,191,4)" rx="2" ry="2" /> +<text x="265.30" y="9679.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (13 samples, 0.48%)</title><rect x="860.5" y="10277" width="5.7" height="15.0" fill="rgb(215,33,2)" rx="2" ry="2" /> +<text x="863.54" y="10287.5" ></text> +</g> +<g > +<title><unknown> (1 samples, 0.04%)</title><rect x="1021.8" y="4517" width="0.4" height="15.0" fill="rgb(246,65,7)" rx="2" ry="2" /> +<text x="1024.80" y="4527.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (4 samples, 0.15%)</title><rect x="742.6" y="10213" width="1.8" height="15.0" fill="rgb(232,136,48)" rx="2" ry="2" /> +<text x="745.62" y="10223.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (10 samples, 0.37%)</title><rect x="360.7" y="9765" width="4.3" height="15.0" fill="rgb(216,9,27)" rx="2" ry="2" /> +<text x="363.71" y="9775.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (1 samples, 0.04%)</title><rect x="261.4" y="9701" width="0.5" height="15.0" fill="rgb(240,121,20)" rx="2" ry="2" /> +<text x="264.43" y="9711.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="777.3" y="10277" width="0.4" height="15.0" fill="rgb(225,88,10)" rx="2" ry="2" /> +<text x="780.30" y="10287.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="652.0" y="10405" width="0.5" height="15.0" fill="rgb(248,93,2)" rx="2" ry="2" /> +<text x="655.02" y="10415.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (10 samples, 0.37%)</title><rect x="369.4" y="9765" width="4.3" height="15.0" fill="rgb(249,2,47)" rx="2" ry="2" /> +<text x="372.38" y="9775.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="238.9" y="10725" width="0.4" height="15.0" fill="rgb(234,206,16)" rx="2" ry="2" /> +<text x="241.89" y="10735.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="777.3" y="10405" width="0.4" height="15.0" fill="rgb(207,98,23)" rx="2" ry="2" /> +<text x="780.30" y="10415.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Stack::pushValue (1 samples, 0.04%)</title><rect x="335.6" y="9909" width="0.4" height="15.0" fill="rgb(210,197,42)" rx="2" ry="2" /> +<text x="338.56" y="9919.5" ></text> +</g> +<g > +<title><unknown> (3 samples, 0.11%)</title><rect x="1020.9" y="11173" width="1.3" height="15.0" fill="rgb(207,117,34)" rx="2" ry="2" /> +<text x="1023.93" y="11183.5" ></text> +</g> +<g > +<title><unknown> (1 samples, 0.04%)</title><rect x="1021.8" y="6085" width="0.4" height="15.0" fill="rgb(247,38,1)" rx="2" ry="2" /> +<text x="1024.80" y="6095.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (5 samples, 0.18%)</title><rect x="773.8" y="10037" width="2.2" height="15.0" fill="rgb(224,170,2)" rx="2" ry="2" /> +<text x="776.84" y="10047.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (2 samples, 0.07%)</title><rect x="317.8" y="9573" width="0.9" height="15.0" fill="rgb(253,201,13)" rx="2" ry="2" /> +<text x="320.79" y="9583.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="261.4" y="9653" width="0.5" height="15.0" fill="rgb(234,22,26)" rx="2" ry="2" /> +<text x="264.43" y="9663.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (3 samples, 0.11%)</title><rect x="317.4" y="9653" width="1.3" height="15.0" fill="rgb(231,104,26)" rx="2" ry="2" /> +<text x="320.35" y="9663.5" ></text> +</g> +<g > +<title><unknown> (1 samples, 0.04%)</title><rect x="1021.8" y="4629" width="0.4" height="15.0" fill="rgb(228,78,10)" rx="2" ry="2" /> +<text x="1024.80" y="4639.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="1112.0" y="10853" width="0.4" height="15.0" fill="rgb(212,176,4)" rx="2" ry="2" /> +<text x="1114.97" y="10863.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="412.7" y="9093" width="0.5" height="15.0" fill="rgb(213,28,6)" rx="2" ry="2" /> +<text x="415.73" y="9103.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="870.1" y="9125" width="0.4" height="15.0" fill="rgb(242,105,15)" rx="2" ry="2" /> +<text x="873.07" y="9135.5" ></text> +</g> +<g > +<title><unknown> (1 samples, 0.04%)</title><rect x="1021.8" y="3013" width="0.4" height="15.0" fill="rgb(223,81,39)" rx="2" ry="2" /> +<text x="1024.80" y="3023.5" ></text> +</g> +<g > +<title><unknown> (1 samples, 0.04%)</title><rect x="1021.8" y="1989" width="0.4" height="15.0" fill="rgb(226,40,43)" rx="2" ry="2" /> +<text x="1024.80" y="1999.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="398.9" y="9621" width="0.4" height="15.0" fill="rgb(243,6,5)" rx="2" ry="2" /> +<text x="401.85" y="9631.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="470.4" y="9829" width="0.4" height="15.0" fill="rgb(217,84,11)" rx="2" ry="2" /> +<text x="473.38" y="9839.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (2 samples, 0.07%)</title><rect x="445.7" y="9845" width="0.8" height="15.0" fill="rgb(242,202,34)" rx="2" ry="2" /> +<text x="448.67" y="9855.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (5 samples, 0.18%)</title><rect x="411.0" y="9525" width="2.2" height="15.0" fill="rgb(251,18,33)" rx="2" ry="2" /> +<text x="413.99" y="9535.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (20 samples, 0.73%)</title><rect x="283.5" y="9797" width="8.7" height="15.0" fill="rgb(225,65,40)" rx="2" ry="2" /> +<text x="286.54" y="9807.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="409.3" y="9077" width="0.4" height="15.0" fill="rgb(212,94,1)" rx="2" ry="2" /> +<text x="412.26" y="9087.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="1071.2" y="11077" width="0.5" height="15.0" fill="rgb(242,40,43)" rx="2" ry="2" /> +<text x="1074.22" y="11087.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (63 samples, 2.31%)</title><rect x="749.1" y="10437" width="27.3" height="15.0" fill="rgb(210,118,13)" rx="2" ry="2" /> +<text x="752.13" y="10447.5" >N..</text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="345.1" y="9685" width="0.4" height="15.0" fill="rgb(242,215,37)" rx="2" ry="2" /> +<text x="348.10" y="9695.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="742.2" y="10517" width="0.4" height="15.0" fill="rgb(219,43,28)" rx="2" ry="2" /> +<text x="745.19" y="10527.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (2 samples, 0.07%)</title><rect x="419.7" y="9477" width="0.8" height="15.0" fill="rgb(247,107,52)" rx="2" ry="2" /> +<text x="422.66" y="9487.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (55 samples, 2.02%)</title><rect x="254.5" y="9957" width="23.8" height="15.0" fill="rgb(212,103,20)" rx="2" ry="2" /> +<text x="257.50" y="9967.5" >N..</text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (15 samples, 0.55%)</title><rect x="379.8" y="9637" width="6.5" height="15.0" fill="rgb(229,11,10)" rx="2" ry="2" /> +<text x="382.78" y="9647.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="733.5" y="9237" width="0.5" height="15.0" fill="rgb(240,29,46)" rx="2" ry="2" /> +<text x="736.52" y="9247.5" ></text> +</g> +<g > +<title>{closure}(/home/ken/src/php-waddiwasi/examples/php-on-wasm/php-wasm.php:332-341) (1 samples, 0.04%)</title><rect x="867.9" y="10261" width="0.4" height="15.0" fill="rgb(245,181,40)" rx="2" ry="2" /> +<text x="870.91" y="10271.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="238.9" y="10869" width="0.4" height="15.0" fill="rgb(208,184,50)" rx="2" ry="2" /> +<text x="241.89" y="10879.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="453.5" y="9349" width="0.4" height="15.0" fill="rgb(222,197,49)" rx="2" ry="2" /> +<text x="456.48" y="9359.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (16 samples, 0.59%)</title><rect x="420.5" y="9589" width="7.0" height="15.0" fill="rgb(232,54,22)" rx="2" ry="2" /> +<text x="423.53" y="9599.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (8 samples, 0.29%)</title><rect x="254.5" y="9845" width="3.5" height="15.0" fill="rgb(246,0,37)" rx="2" ry="2" /> +<text x="257.50" y="9855.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (3 samples, 0.11%)</title><rect x="735.3" y="10517" width="1.3" height="15.0" fill="rgb(250,33,38)" rx="2" ry="2" /> +<text x="738.25" y="10527.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (1 samples, 0.04%)</title><rect x="777.3" y="10469" width="0.4" height="15.0" fill="rgb(243,185,25)" rx="2" ry="2" /> +<text x="780.30" y="10479.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="739.6" y="10453" width="0.4" height="15.0" fill="rgb(216,91,39)" rx="2" ry="2" /> +<text x="742.59" y="10463.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (14 samples, 0.51%)</title><rect x="440.5" y="9893" width="6.0" height="15.0" fill="rgb(238,175,4)" rx="2" ry="2" /> +<text x="443.47" y="9903.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="862.3" y="10181" width="0.4" height="15.0" fill="rgb(211,3,43)" rx="2" ry="2" /> +<text x="865.27" y="10191.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Stack::pushI32 (1 samples, 0.04%)</title><rect x="238.9" y="10037" width="0.4" height="15.0" fill="rgb(235,141,44)" rx="2" ry="2" /> +<text x="241.89" y="10047.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\ControlFlowResults\Br::__construct (1 samples, 0.04%)</title><rect x="1068.6" y="11125" width="0.5" height="15.0" fill="rgb(251,30,1)" rx="2" ry="2" /> +<text x="1071.62" y="11135.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="516.8" y="10133" width="0.4" height="15.0" fill="rgb(230,84,0)" rx="2" ry="2" /> +<text x="519.77" y="10143.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (5 samples, 0.18%)</title><rect x="868.8" y="10405" width="2.1" height="15.0" fill="rgb(241,17,6)" rx="2" ry="2" /> +<text x="871.77" y="10415.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="345.1" y="9749" width="0.4" height="15.0" fill="rgb(218,118,22)" rx="2" ry="2" /> +<text x="348.10" y="9759.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="777.3" y="10293" width="0.4" height="15.0" fill="rgb(222,68,17)" rx="2" ry="2" /> +<text x="780.30" y="10303.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (3 samples, 0.11%)</title><rect x="466.9" y="9749" width="1.3" height="15.0" fill="rgb(210,220,42)" rx="2" ry="2" /> +<text x="469.91" y="9759.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (85 samples, 3.12%)</title><rect x="503.3" y="10533" width="36.9" height="15.0" fill="rgb(243,37,35)" rx="2" ry="2" /> +<text x="506.33" y="10543.5" >Nsf..</text> +</g> +<g > +<title><unknown> (2 samples, 0.07%)</title><rect x="1021.4" y="8709" width="0.8" height="15.0" fill="rgb(206,223,39)" rx="2" ry="2" /> +<text x="1024.37" y="8719.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="427.5" y="9237" width="0.4" height="15.0" fill="rgb(253,13,37)" rx="2" ry="2" /> +<text x="430.47" y="9247.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (3 samples, 0.11%)</title><rect x="495.5" y="10453" width="1.3" height="15.0" fill="rgb(231,47,9)" rx="2" ry="2" /> +<text x="498.53" y="10463.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (6 samples, 0.22%)</title><rect x="410.6" y="9637" width="2.6" height="15.0" fill="rgb(224,206,39)" rx="2" ry="2" /> +<text x="413.56" y="9647.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="365.0" y="9829" width="0.5" height="15.0" fill="rgb(250,53,0)" rx="2" ry="2" /> +<text x="368.04" y="9839.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (5 samples, 0.18%)</title><rect x="295.2" y="9653" width="2.2" height="15.0" fill="rgb(223,138,30)" rx="2" ry="2" /> +<text x="298.25" y="9663.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (183 samples, 6.72%)</title><rect x="652.9" y="10277" width="79.3" height="15.0" fill="rgb(251,61,33)" rx="2" ry="2" /> +<text x="655.89" y="10287.5" >Nsfisis\W..</text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="408.8" y="9285" width="0.5" height="15.0" fill="rgb(251,87,40)" rx="2" ry="2" /> +<text x="411.82" y="9295.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="372.0" y="9637" width="0.4" height="15.0" fill="rgb(249,202,48)" rx="2" ry="2" /> +<text x="374.98" y="9647.5" ></text> +</g> +<g > +<title><unknown> (1 samples, 0.04%)</title><rect x="1021.8" y="5605" width="0.4" height="15.0" fill="rgb(234,177,33)" rx="2" ry="2" /> +<text x="1024.80" y="5615.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="331.2" y="9621" width="0.5" height="15.0" fill="rgb(218,185,23)" rx="2" ry="2" /> +<text x="334.23" y="9631.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (191 samples, 7.02%)</title><rect x="345.5" y="9893" width="82.8" height="15.0" fill="rgb(245,106,30)" rx="2" ry="2" /> +<text x="348.53" y="9903.5" >Nsfisis\W..</text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="1035.7" y="11013" width="0.4" height="15.0" fill="rgb(250,5,16)" rx="2" ry="2" /> +<text x="1038.67" y="11023.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="489.5" y="10053" width="0.4" height="15.0" fill="rgb(211,212,29)" rx="2" ry="2" /> +<text x="492.46" y="10063.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="867.9" y="10629" width="0.4" height="15.0" fill="rgb(252,226,0)" rx="2" ry="2" /> +<text x="870.91" y="10639.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="325.2" y="9253" width="0.4" height="15.0" fill="rgb(232,33,13)" rx="2" ry="2" /> +<text x="328.16" y="9263.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::deactivateLabel (1 samples, 0.04%)</title><rect x="1128.9" y="11205" width="0.4" height="15.0" fill="rgb(222,150,21)" rx="2" ry="2" /> +<text x="1131.88" y="11215.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (7 samples, 0.26%)</title><rect x="735.3" y="10645" width="3.0" height="15.0" fill="rgb(237,2,19)" rx="2" ry="2" /> +<text x="738.25" y="10655.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (3 samples, 0.11%)</title><rect x="475.2" y="9813" width="1.3" height="15.0" fill="rgb(236,48,46)" rx="2" ry="2" /> +<text x="478.15" y="9823.5" ></text> +</g> +<g > +<title><unknown> (2 samples, 0.07%)</title><rect x="1021.4" y="6965" width="0.8" height="15.0" fill="rgb(206,52,25)" rx="2" ry="2" /> +<text x="1024.37" y="6975.5" ></text> +</g> +<g > +<title><unknown> (1 samples, 0.04%)</title><rect x="1021.8" y="4789" width="0.4" height="15.0" fill="rgb(241,195,2)" rx="2" ry="2" /> +<text x="1024.80" y="4799.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (2 samples, 0.07%)</title><rect x="442.2" y="8901" width="0.9" height="15.0" fill="rgb(236,166,5)" rx="2" ry="2" /> +<text x="445.20" y="8911.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="268.8" y="9557" width="0.4" height="15.0" fill="rgb(248,50,51)" rx="2" ry="2" /> +<text x="271.80" y="9567.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="740.0" y="10229" width="0.5" height="15.0" fill="rgb(209,14,51)" rx="2" ry="2" /> +<text x="743.02" y="10239.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (3 samples, 0.11%)</title><rect x="438.3" y="9797" width="1.3" height="15.0" fill="rgb(251,111,50)" rx="2" ry="2" /> +<text x="441.30" y="9807.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="271.4" y="9589" width="0.4" height="15.0" fill="rgb(249,183,42)" rx="2" ry="2" /> +<text x="274.40" y="9599.5" ></text> +</g> +<g > +<title><unknown> (1 samples, 0.04%)</title><rect x="1021.8" y="3173" width="0.4" height="15.0" fill="rgb(226,64,21)" rx="2" ry="2" /> +<text x="1024.80" y="3183.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="546.7" y="10373" width="0.4" height="15.0" fill="rgb(238,49,14)" rx="2" ry="2" /> +<text x="549.68" y="10383.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\StackEntries\Value::__construct (4 samples, 0.15%)</title><rect x="1171.8" y="11253" width="1.7" height="15.0" fill="rgb(223,76,4)" rx="2" ry="2" /> +<text x="1174.79" y="11263.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\BinaryFormat\Decoder::decodeVec (7 samples, 0.26%)</title><rect x="10.4" y="11157" width="3.1" height="15.0" fill="rgb(241,35,12)" rx="2" ry="2" /> +<text x="13.43" y="11167.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="742.2" y="10485" width="0.4" height="15.0" fill="rgb(205,201,50)" rx="2" ry="2" /> +<text x="745.19" y="10495.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (1 samples, 0.04%)</title><rect x="796.8" y="10549" width="0.4" height="15.0" fill="rgb(234,36,39)" rx="2" ry="2" /> +<text x="799.81" y="10559.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (5 samples, 0.18%)</title><rect x="868.8" y="11029" width="2.1" height="15.0" fill="rgb(254,128,49)" rx="2" ry="2" /> +<text x="871.77" y="11039.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (1 samples, 0.04%)</title><rect x="268.8" y="9573" width="0.4" height="15.0" fill="rgb(252,77,18)" rx="2" ry="2" /> +<text x="271.80" y="9583.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (2 samples, 0.07%)</title><rect x="325.2" y="9445" width="0.8" height="15.0" fill="rgb(213,31,33)" rx="2" ry="2" /> +<text x="328.16" y="9455.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="746.1" y="10645" width="0.4" height="15.0" fill="rgb(215,79,7)" rx="2" ry="2" /> +<text x="749.09" y="10655.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (5 samples, 0.18%)</title><rect x="742.6" y="10645" width="2.2" height="15.0" fill="rgb(217,164,36)" rx="2" ry="2" /> +<text x="745.62" y="10655.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Stack::popI32 (9 samples, 0.33%)</title><rect x="234.6" y="11173" width="3.9" height="15.0" fill="rgb(237,116,30)" rx="2" ry="2" /> +<text x="237.56" y="11183.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (6 samples, 0.22%)</title><rect x="857.9" y="10213" width="2.6" height="15.0" fill="rgb(220,95,52)" rx="2" ry="2" /> +<text x="860.94" y="10223.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Stack::pushValue (2 samples, 0.07%)</title><rect x="849.3" y="10229" width="0.8" height="15.0" fill="rgb(246,67,16)" rx="2" ry="2" /> +<text x="852.27" y="10239.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::deactivateLabel (1 samples, 0.04%)</title><rect x="329.5" y="9797" width="0.4" height="15.0" fill="rgb(222,180,22)" rx="2" ry="2" /> +<text x="332.49" y="9807.5" ></text> +</g> +<g > +<title>assert (1 samples, 0.04%)</title><rect x="284.0" y="9573" width="0.4" height="15.0" fill="rgb(240,178,53)" rx="2" ry="2" /> +<text x="286.98" y="9583.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (3 samples, 0.11%)</title><rect x="741.3" y="10885" width="1.3" height="15.0" fill="rgb(229,111,52)" rx="2" ry="2" /> +<text x="744.32" y="10895.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="870.1" y="9589" width="0.4" height="15.0" fill="rgb(215,61,18)" rx="2" ry="2" /> +<text x="873.07" y="9599.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\StackEntries\Value::__construct (5 samples, 0.18%)</title><rect x="1144.9" y="11237" width="2.2" height="15.0" fill="rgb(253,142,40)" rx="2" ry="2" /> +<text x="1147.92" y="11247.5" ></text> +</g> +<g > +<title><unknown> (1 samples, 0.04%)</title><rect x="466.5" y="9669" width="0.4" height="15.0" fill="rgb(234,146,33)" rx="2" ry="2" /> +<text x="469.48" y="9679.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="1067.8" y="10277" width="0.4" height="15.0" fill="rgb(231,32,25)" rx="2" ry="2" /> +<text x="1070.75" y="10287.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (15 samples, 0.55%)</title><rect x="685.0" y="10037" width="6.5" height="15.0" fill="rgb(251,227,21)" rx="2" ry="2" /> +<text x="687.97" y="10047.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="867.9" y="10005" width="0.4" height="15.0" fill="rgb(206,165,52)" rx="2" ry="2" /> +<text x="870.91" y="10015.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (2 samples, 0.07%)</title><rect x="532.8" y="10133" width="0.9" height="15.0" fill="rgb(234,9,23)" rx="2" ry="2" /> +<text x="535.81" y="10143.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (37 samples, 1.36%)</title><rect x="756.1" y="10085" width="16.0" height="15.0" fill="rgb(208,102,35)" rx="2" ry="2" /> +<text x="759.06" y="10095.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="441.3" y="9445" width="0.5" height="15.0" fill="rgb(239,59,39)" rx="2" ry="2" /> +<text x="444.34" y="9455.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (2 samples, 0.07%)</title><rect x="453.9" y="9669" width="0.9" height="15.0" fill="rgb(240,125,16)" rx="2" ry="2" /> +<text x="456.91" y="9679.5" ></text> +</g> +<g > +<title><unknown> (2 samples, 0.07%)</title><rect x="1021.4" y="8597" width="0.8" height="15.0" fill="rgb(237,45,43)" rx="2" ry="2" /> +<text x="1024.37" y="8607.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="867.0" y="10277" width="0.5" height="15.0" fill="rgb(251,211,19)" rx="2" ry="2" /> +<text x="870.04" y="10287.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (1 samples, 0.04%)</title><rect x="397.6" y="9477" width="0.4" height="15.0" fill="rgb(239,193,12)" rx="2" ry="2" /> +<text x="400.55" y="9487.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (85 samples, 3.12%)</title><rect x="503.3" y="10549" width="36.9" height="15.0" fill="rgb(218,3,5)" rx="2" ry="2" /> +<text x="506.33" y="10559.5" >Nsf..</text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (185 samples, 6.80%)</title><rect x="652.0" y="10565" width="80.2" height="15.0" fill="rgb(247,30,29)" rx="2" ry="2" /> +<text x="655.02" y="10575.5" >Nsfisis\W..</text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (162 samples, 5.95%)</title><rect x="797.2" y="10517" width="70.3" height="15.0" fill="rgb(248,227,31)" rx="2" ry="2" /> +<text x="800.24" y="10527.5" >Nsfisis..</text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="733.5" y="9637" width="0.5" height="15.0" fill="rgb(221,32,49)" rx="2" ry="2" /> +<text x="736.52" y="9647.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (200 samples, 7.35%)</title><rect x="341.6" y="9957" width="86.7" height="15.0" fill="rgb(230,53,14)" rx="2" ry="2" /> +<text x="344.63" y="9967.5" >Nsfisis\Wa..</text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (2 samples, 0.07%)</title><rect x="719.6" y="9893" width="0.9" height="15.0" fill="rgb(225,182,43)" rx="2" ry="2" /> +<text x="722.65" y="9903.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (192 samples, 7.05%)</title><rect x="252.8" y="10005" width="83.2" height="15.0" fill="rgb(227,32,43)" rx="2" ry="2" /> +<text x="255.76" y="10015.5" >Nsfisis\W..</text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="869.2" y="9909" width="0.4" height="15.0" fill="rgb(217,128,8)" rx="2" ry="2" /> +<text x="872.21" y="9919.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="238.9" y="10821" width="0.4" height="15.0" fill="rgb(216,75,12)" rx="2" ry="2" /> +<text x="241.89" y="10831.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="470.4" y="9909" width="0.4" height="15.0" fill="rgb(226,223,43)" rx="2" ry="2" /> +<text x="473.38" y="9919.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (5 samples, 0.18%)</title><rect x="466.0" y="9893" width="2.2" height="15.0" fill="rgb(245,174,35)" rx="2" ry="2" /> +<text x="469.05" y="9903.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="439.2" y="9781" width="0.4" height="15.0" fill="rgb(222,220,48)" rx="2" ry="2" /> +<text x="442.17" y="9791.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="291.3" y="9653" width="0.5" height="15.0" fill="rgb(216,90,43)" rx="2" ry="2" /> +<text x="294.34" y="9663.5" ></text> +</g> +<g > +<title><unknown> (2 samples, 0.07%)</title><rect x="1021.4" y="8949" width="0.8" height="15.0" fill="rgb(239,82,14)" rx="2" ry="2" /> +<text x="1024.37" y="8959.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (2 samples, 0.07%)</title><rect x="734.0" y="10501" width="0.8" height="15.0" fill="rgb(217,92,53)" rx="2" ry="2" /> +<text x="736.95" y="10511.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::deactivateLabel (1 samples, 0.04%)</title><rect x="513.7" y="10117" width="0.5" height="15.0" fill="rgb(221,163,39)" rx="2" ry="2" /> +<text x="516.73" y="10127.5" ></text> +</g> +<g > +<title><unknown> (2 samples, 0.07%)</title><rect x="1021.4" y="10789" width="0.8" height="15.0" fill="rgb(232,38,39)" rx="2" ry="2" /> +<text x="1024.37" y="10799.5" ></text> +</g> +<g > +<title><unknown> (1 samples, 0.04%)</title><rect x="1021.8" y="4037" width="0.4" height="15.0" fill="rgb(220,163,32)" rx="2" ry="2" /> +<text x="1024.80" y="4047.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="365.0" y="9797" width="0.5" height="15.0" fill="rgb(238,182,42)" rx="2" ry="2" /> +<text x="368.04" y="9807.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (4 samples, 0.15%)</title><rect x="768.2" y="9909" width="1.7" height="15.0" fill="rgb(252,126,21)" rx="2" ry="2" /> +<text x="771.20" y="9919.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (17 samples, 0.62%)</title><rect x="351.6" y="9541" width="7.4" height="15.0" fill="rgb(246,65,40)" rx="2" ry="2" /> +<text x="354.60" y="9551.5" ></text> +</g> +<g > +<title>array_pop (14 samples, 0.51%)</title><rect x="1176.1" y="11253" width="6.1" height="15.0" fill="rgb(243,216,28)" rx="2" ry="2" /> +<text x="1179.13" y="11263.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (8 samples, 0.29%)</title><rect x="766.9" y="9941" width="3.5" height="15.0" fill="rgb(228,159,25)" rx="2" ry="2" /> +<text x="769.90" y="9951.5" ></text> +</g> +<g > +<title><unknown> (1 samples, 0.04%)</title><rect x="1021.8" y="5381" width="0.4" height="15.0" fill="rgb(236,77,10)" rx="2" ry="2" /> +<text x="1024.80" y="5391.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (4 samples, 0.15%)</title><rect x="289.2" y="9637" width="1.7" height="15.0" fill="rgb(251,177,4)" rx="2" ry="2" /> +<text x="292.18" y="9647.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (4 samples, 0.15%)</title><rect x="541.9" y="10437" width="1.7" height="15.0" fill="rgb(249,178,26)" rx="2" ry="2" /> +<text x="544.91" y="10447.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="733.5" y="8533" width="0.5" height="15.0" fill="rgb(232,212,12)" rx="2" ry="2" /> +<text x="736.52" y="8543.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="443.1" y="8917" width="0.4" height="15.0" fill="rgb(228,52,18)" rx="2" ry="2" /> +<text x="446.07" y="8927.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="870.1" y="8917" width="0.4" height="15.0" fill="rgb(228,8,13)" rx="2" ry="2" /> +<text x="873.07" y="8927.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (10 samples, 0.37%)</title><rect x="381.9" y="9589" width="4.4" height="15.0" fill="rgb(230,18,35)" rx="2" ry="2" /> +<text x="384.95" y="9599.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="503.3" y="10389" width="0.5" height="15.0" fill="rgb(233,220,28)" rx="2" ry="2" /> +<text x="506.33" y="10399.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="867.0" y="10245" width="0.5" height="15.0" fill="rgb(231,182,38)" rx="2" ry="2" /> +<text x="870.04" y="10255.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="536.3" y="9925" width="0.4" height="15.0" fill="rgb(225,146,49)" rx="2" ry="2" /> +<text x="539.27" y="9935.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (21 samples, 0.77%)</title><rect x="283.5" y="9813" width="9.1" height="15.0" fill="rgb(254,123,0)" rx="2" ry="2" /> +<text x="286.54" y="9823.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="359.0" y="9589" width="0.4" height="15.0" fill="rgb(210,173,30)" rx="2" ry="2" /> +<text x="361.97" y="9599.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (10 samples, 0.37%)</title><rect x="264.0" y="9557" width="4.4" height="15.0" fill="rgb(206,95,25)" rx="2" ry="2" /> +<text x="267.03" y="9567.5" ></text> +</g> +<g > +<title><unknown> (1 samples, 0.04%)</title><rect x="1021.8" y="4981" width="0.4" height="15.0" fill="rgb(216,125,38)" rx="2" ry="2" /> +<text x="1024.80" y="4991.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="870.1" y="9861" width="0.4" height="15.0" fill="rgb(211,94,20)" rx="2" ry="2" /> +<text x="873.07" y="9871.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (1 samples, 0.04%)</title><rect x="734.0" y="10197" width="0.4" height="15.0" fill="rgb(214,163,30)" rx="2" ry="2" /> +<text x="736.95" y="10207.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="409.3" y="9349" width="0.4" height="15.0" fill="rgb(209,114,28)" rx="2" ry="2" /> +<text x="412.26" y="9359.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (4 samples, 0.15%)</title><rect x="726.1" y="9893" width="1.8" height="15.0" fill="rgb(253,168,0)" rx="2" ry="2" /> +<text x="729.15" y="9903.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="489.5" y="10021" width="0.4" height="15.0" fill="rgb(229,92,16)" rx="2" ry="2" /> +<text x="492.46" y="10031.5" ></text> +</g> +<g > +<title><unknown> (1 samples, 0.04%)</title><rect x="1021.8" y="5797" width="0.4" height="15.0" fill="rgb(221,184,4)" rx="2" ry="2" /> +<text x="1024.80" y="5807.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (3 samples, 0.11%)</title><rect x="462.6" y="9365" width="1.3" height="15.0" fill="rgb(253,36,21)" rx="2" ry="2" /> +<text x="465.58" y="9375.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (2 samples, 0.07%)</title><rect x="467.3" y="9653" width="0.9" height="15.0" fill="rgb(239,13,29)" rx="2" ry="2" /> +<text x="470.35" y="9663.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (4 samples, 0.15%)</title><rect x="304.3" y="9445" width="1.8" height="15.0" fill="rgb(210,196,8)" rx="2" ry="2" /> +<text x="307.35" y="9455.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\MemInst::storeI32 (4 samples, 0.15%)</title><rect x="1033.5" y="11205" width="1.7" height="15.0" fill="rgb(206,186,44)" rx="2" ry="2" /> +<text x="1036.50" y="11215.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="469.9" y="9861" width="0.5" height="15.0" fill="rgb(217,137,22)" rx="2" ry="2" /> +<text x="472.95" y="9871.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="315.6" y="9445" width="0.5" height="15.0" fill="rgb(219,8,29)" rx="2" ry="2" /> +<text x="318.62" y="9455.5" ></text> +</g> +<g > +<title><unknown> (1 samples, 0.04%)</title><rect x="1021.8" y="3429" width="0.4" height="15.0" fill="rgb(243,129,44)" rx="2" ry="2" /> +<text x="1024.80" y="3439.5" ></text> +</g> +<g > +<title><unknown> (1 samples, 0.04%)</title><rect x="382.4" y="9477" width="0.4" height="15.0" fill="rgb(213,225,48)" rx="2" ry="2" /> +<text x="385.38" y="9487.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="271.4" y="9653" width="0.4" height="15.0" fill="rgb(223,111,44)" rx="2" ry="2" /> +<text x="274.40" y="9663.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (2 samples, 0.07%)</title><rect x="486.9" y="9813" width="0.8" height="15.0" fill="rgb(207,89,54)" rx="2" ry="2" /> +<text x="489.86" y="9823.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Stack::pushValue (1 samples, 0.04%)</title><rect x="437.4" y="9813" width="0.5" height="15.0" fill="rgb(248,2,10)" rx="2" ry="2" /> +<text x="440.44" y="9823.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="261.0" y="9429" width="0.4" height="15.0" fill="rgb(208,195,11)" rx="2" ry="2" /> +<text x="264.00" y="9439.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="1036.1" y="10981" width="0.4" height="15.0" fill="rgb(225,20,28)" rx="2" ry="2" /> +<text x="1039.11" y="10991.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="271.4" y="9573" width="0.4" height="15.0" fill="rgb(244,79,33)" rx="2" ry="2" /> +<text x="274.40" y="9583.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (2 samples, 0.07%)</title><rect x="453.9" y="9717" width="0.9" height="15.0" fill="rgb(212,27,16)" rx="2" ry="2" /> +<text x="456.91" y="9727.5" ></text> +</g> +<g > +<title>print_r (24 samples, 0.88%)</title><rect x="1118.0" y="11221" width="10.4" height="15.0" fill="rgb(220,152,8)" rx="2" ry="2" /> +<text x="1121.04" y="11231.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="345.1" y="9781" width="0.4" height="15.0" fill="rgb(243,165,20)" rx="2" ry="2" /> +<text x="348.10" y="9791.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (5 samples, 0.18%)</title><rect x="244.1" y="10469" width="2.2" height="15.0" fill="rgb(246,23,20)" rx="2" ry="2" /> +<text x="247.09" y="10479.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="466.5" y="9717" width="0.4" height="15.0" fill="rgb(213,128,1)" rx="2" ry="2" /> +<text x="469.48" y="9727.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="443.1" y="8613" width="0.4" height="15.0" fill="rgb(239,101,10)" rx="2" ry="2" /> +<text x="446.07" y="8623.5" ></text> +</g> +<g > +<title><unknown> (2 samples, 0.07%)</title><rect x="1021.4" y="9605" width="0.8" height="15.0" fill="rgb(237,112,47)" rx="2" ry="2" /> +<text x="1024.37" y="9615.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (1 samples, 0.04%)</title><rect x="868.3" y="10917" width="0.5" height="15.0" fill="rgb(245,178,22)" rx="2" ry="2" /> +<text x="871.34" y="10927.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="307.8" y="9253" width="0.5" height="15.0" fill="rgb(219,115,12)" rx="2" ry="2" /> +<text x="310.82" y="9263.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (1 samples, 0.04%)</title><rect x="345.1" y="9701" width="0.4" height="15.0" fill="rgb(208,164,13)" rx="2" ry="2" /> +<text x="348.10" y="9711.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\MemInst::storeByte (1 samples, 0.04%)</title><rect x="649.4" y="9877" width="0.5" height="15.0" fill="rgb(240,7,4)" rx="2" ry="2" /> +<text x="652.42" y="9887.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (241 samples, 8.85%)</title><rect x="547.1" y="9973" width="104.5" height="15.0" fill="rgb(229,148,50)" rx="2" ry="2" /> +<text x="550.11" y="9983.5" >Nsfisis\Wadd..</text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (4 samples, 0.15%)</title><rect x="739.2" y="10709" width="1.7" height="15.0" fill="rgb(216,127,31)" rx="2" ry="2" /> +<text x="742.16" y="10719.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="271.4" y="9813" width="0.4" height="15.0" fill="rgb(243,89,23)" rx="2" ry="2" /> +<text x="274.40" y="9823.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (4 samples, 0.15%)</title><rect x="529.3" y="10293" width="1.8" height="15.0" fill="rgb(229,174,34)" rx="2" ry="2" /> +<text x="532.34" y="10303.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (17 samples, 0.62%)</title><rect x="351.6" y="9557" width="7.4" height="15.0" fill="rgb(230,168,11)" rx="2" ry="2" /> +<text x="354.60" y="9567.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (1 samples, 0.04%)</title><rect x="497.3" y="10357" width="0.4" height="15.0" fill="rgb(220,55,52)" rx="2" ry="2" /> +<text x="500.26" y="10367.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="398.4" y="9461" width="0.5" height="15.0" fill="rgb(218,49,13)" rx="2" ry="2" /> +<text x="401.42" y="9471.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (9 samples, 0.33%)</title><rect x="485.6" y="10069" width="3.9" height="15.0" fill="rgb(241,8,38)" rx="2" ry="2" /> +<text x="488.55" y="10079.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="329.1" y="9813" width="0.4" height="15.0" fill="rgb(232,164,14)" rx="2" ry="2" /> +<text x="332.06" y="9823.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (1 samples, 0.04%)</title><rect x="1071.7" y="11109" width="0.4" height="15.0" fill="rgb(210,98,8)" rx="2" ry="2" /> +<text x="1074.65" y="11119.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="441.3" y="9493" width="0.5" height="15.0" fill="rgb(242,26,31)" rx="2" ry="2" /> +<text x="444.34" y="9503.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Stack::popI32 (1 samples, 0.04%)</title><rect x="1113.7" y="11157" width="0.4" height="15.0" fill="rgb(254,21,39)" rx="2" ry="2" /> +<text x="1116.70" y="11167.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (3 samples, 0.11%)</title><rect x="741.3" y="10789" width="1.3" height="15.0" fill="rgb(213,97,26)" rx="2" ry="2" /> +<text x="744.32" y="10799.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="238.9" y="10389" width="0.4" height="15.0" fill="rgb(206,12,3)" rx="2" ry="2" /> +<text x="241.89" y="10399.5" ></text> +</g> +<g > +<title><unknown> (2 samples, 0.07%)</title><rect x="1021.4" y="7173" width="0.8" height="15.0" fill="rgb(251,78,49)" rx="2" ry="2" /> +<text x="1024.37" y="7183.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="866.2" y="10165" width="0.4" height="15.0" fill="rgb(215,87,36)" rx="2" ry="2" /> +<text x="869.17" y="10175.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="870.5" y="9781" width="0.4" height="15.0" fill="rgb(226,171,16)" rx="2" ry="2" /> +<text x="873.51" y="9791.5" ></text> +</g> +<g > +<title><unknown> (4 samples, 0.15%)</title><rect x="171.3" y="11141" width="1.7" height="15.0" fill="rgb(218,46,42)" rx="2" ry="2" /> +<text x="174.26" y="11151.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (4 samples, 0.15%)</title><rect x="869.2" y="10309" width="1.7" height="15.0" fill="rgb(222,196,17)" rx="2" ry="2" /> +<text x="872.21" y="10319.5" ></text> +</g> +<g > +<title><unknown> (2 samples, 0.07%)</title><rect x="1021.4" y="11029" width="0.8" height="15.0" fill="rgb(218,189,19)" rx="2" ry="2" /> +<text x="1024.37" y="11039.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (3 samples, 0.11%)</title><rect x="363.7" y="9557" width="1.3" height="15.0" fill="rgb(235,95,42)" rx="2" ry="2" /> +<text x="366.74" y="9567.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (18 samples, 0.66%)</title><rect x="351.6" y="9653" width="7.8" height="15.0" fill="rgb(239,2,28)" rx="2" ry="2" /> +<text x="354.60" y="9663.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (3 samples, 0.11%)</title><rect x="269.2" y="9589" width="1.3" height="15.0" fill="rgb(226,127,36)" rx="2" ry="2" /> +<text x="272.24" y="9599.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (120 samples, 4.41%)</title><rect x="680.2" y="10117" width="52.0" height="15.0" fill="rgb(219,35,15)" rx="2" ry="2" /> +<text x="683.20" y="10127.5" >Nsfis..</text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (8 samples, 0.29%)</title><rect x="400.6" y="9701" width="3.5" height="15.0" fill="rgb(232,183,50)" rx="2" ry="2" /> +<text x="403.59" y="9711.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (3 samples, 0.11%)</title><rect x="408.4" y="9541" width="1.3" height="15.0" fill="rgb(251,209,33)" rx="2" ry="2" /> +<text x="411.39" y="9551.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (141 samples, 5.18%)</title><rect x="805.5" y="10373" width="61.1" height="15.0" fill="rgb(236,187,32)" rx="2" ry="2" /> +<text x="808.48" y="10383.5" >Nsfisi..</text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="866.6" y="10245" width="0.4" height="15.0" fill="rgb(206,189,5)" rx="2" ry="2" /> +<text x="869.61" y="10255.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="546.2" y="10277" width="0.5" height="15.0" fill="rgb(225,198,30)" rx="2" ry="2" /> +<text x="549.25" y="10287.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (2 samples, 0.07%)</title><rect x="1115.4" y="11189" width="0.9" height="15.0" fill="rgb(223,29,20)" rx="2" ry="2" /> +<text x="1118.44" y="11199.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="870.1" y="9029" width="0.4" height="15.0" fill="rgb(212,99,26)" rx="2" ry="2" /> +<text x="873.07" y="9039.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (4 samples, 0.15%)</title><rect x="535.0" y="10053" width="1.7" height="15.0" fill="rgb(238,46,4)" rx="2" ry="2" /> +<text x="537.97" y="10063.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (36 samples, 1.32%)</title><rect x="507.7" y="10261" width="15.6" height="15.0" fill="rgb(205,100,18)" rx="2" ry="2" /> +<text x="510.66" y="10271.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="870.1" y="8293" width="0.4" height="15.0" fill="rgb(209,211,5)" rx="2" ry="2" /> +<text x="873.07" y="8303.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (5 samples, 0.18%)</title><rect x="868.8" y="10485" width="2.1" height="15.0" fill="rgb(225,43,43)" rx="2" ry="2" /> +<text x="871.77" y="10495.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="849.7" y="10165" width="0.4" height="15.0" fill="rgb(250,174,39)" rx="2" ry="2" /> +<text x="852.70" y="10175.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="1035.7" y="11029" width="0.4" height="15.0" fill="rgb(239,89,42)" rx="2" ry="2" /> +<text x="1038.67" y="11039.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="331.2" y="9477" width="0.5" height="15.0" fill="rgb(236,76,14)" rx="2" ry="2" /> +<text x="334.23" y="9487.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Stack::popValue (7 samples, 0.26%)</title><rect x="160.4" y="11141" width="3.1" height="15.0" fill="rgb(243,146,34)" rx="2" ry="2" /> +<text x="163.43" y="11151.5" ></text> +</g> +<g > +<title><unknown> (1 samples, 0.04%)</title><rect x="1021.8" y="4165" width="0.4" height="15.0" fill="rgb(235,103,14)" rx="2" ry="2" /> +<text x="1024.80" y="4175.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="238.9" y="10053" width="0.4" height="15.0" fill="rgb(220,141,54)" rx="2" ry="2" /> +<text x="241.89" y="10063.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (108 samples, 3.97%)</title><rect x="748.3" y="10517" width="46.8" height="15.0" fill="rgb(232,167,47)" rx="2" ry="2" /> +<text x="751.26" y="10527.5" >Nsfi..</text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="866.2" y="10309" width="0.4" height="15.0" fill="rgb(252,17,51)" rx="2" ry="2" /> +<text x="869.17" y="10319.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (241 samples, 8.85%)</title><rect x="547.1" y="10293" width="104.5" height="15.0" fill="rgb(223,143,10)" rx="2" ry="2" /> +<text x="550.11" y="10303.5" >Nsfisis\Wadd..</text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="345.1" y="9877" width="0.4" height="15.0" fill="rgb(233,179,5)" rx="2" ry="2" /> +<text x="348.10" y="9887.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (5 samples, 0.18%)</title><rect x="268.4" y="9637" width="2.1" height="15.0" fill="rgb(248,189,46)" rx="2" ry="2" /> +<text x="271.37" y="9647.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="453.5" y="9605" width="0.4" height="15.0" fill="rgb(225,19,16)" rx="2" ry="2" /> +<text x="456.48" y="9615.5" ></text> +</g> +<g > +<title><unknown> (1 samples, 0.04%)</title><rect x="1021.8" y="3317" width="0.4" height="15.0" fill="rgb(212,206,12)" rx="2" ry="2" /> +<text x="1024.80" y="3327.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (7 samples, 0.26%)</title><rect x="810.2" y="10341" width="3.1" height="15.0" fill="rgb(251,215,33)" rx="2" ry="2" /> +<text x="813.25" y="10351.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="267.1" y="9397" width="0.4" height="15.0" fill="rgb(211,69,39)" rx="2" ry="2" /> +<text x="270.07" y="9407.5" ></text> +</g> +<g > +<title><unknown> (2 samples, 0.07%)</title><rect x="1021.4" y="7541" width="0.8" height="15.0" fill="rgb(239,79,40)" rx="2" ry="2" /> +<text x="1024.37" y="7551.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (4 samples, 0.15%)</title><rect x="811.6" y="10261" width="1.7" height="15.0" fill="rgb(250,79,40)" rx="2" ry="2" /> +<text x="814.55" y="10271.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="733.5" y="8501" width="0.5" height="15.0" fill="rgb(222,198,53)" rx="2" ry="2" /> +<text x="736.52" y="8511.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (280 samples, 10.29%)</title><rect x="746.5" y="10629" width="121.4" height="15.0" fill="rgb(211,73,36)" rx="2" ry="2" /> +<text x="749.52" y="10639.5" >Nsfisis\Waddiwa..</text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="724.8" y="9861" width="0.5" height="15.0" fill="rgb(214,12,52)" rx="2" ry="2" /> +<text x="727.85" y="9871.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (4 samples, 0.15%)</title><rect x="531.9" y="10261" width="1.8" height="15.0" fill="rgb(241,12,15)" rx="2" ry="2" /> +<text x="534.94" y="10271.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (18 samples, 0.66%)</title><rect x="319.1" y="9685" width="7.8" height="15.0" fill="rgb(223,180,53)" rx="2" ry="2" /> +<text x="322.09" y="9695.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (9 samples, 0.33%)</title><rect x="441.8" y="9637" width="3.9" height="15.0" fill="rgb(215,152,8)" rx="2" ry="2" /> +<text x="444.77" y="9647.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Stack::pushI32 (1 samples, 0.04%)</title><rect x="1161.4" y="11157" width="0.4" height="15.0" fill="rgb(243,50,6)" rx="2" ry="2" /> +<text x="1164.39" y="11167.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="866.2" y="10181" width="0.4" height="15.0" fill="rgb(250,97,41)" rx="2" ry="2" /> +<text x="869.17" y="10191.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (20 samples, 0.73%)</title><rect x="308.7" y="9573" width="8.7" height="15.0" fill="rgb(207,3,19)" rx="2" ry="2" /> +<text x="311.68" y="9583.5" ></text> +</g> +<g > +<title><unknown> (1 samples, 0.04%)</title><rect x="1021.8" y="1573" width="0.4" height="15.0" fill="rgb(240,75,37)" rx="2" ry="2" /> +<text x="1024.80" y="1583.5" ></text> +</g> +<g > +<title><unknown> (2 samples, 0.07%)</title><rect x="1021.4" y="9893" width="0.8" height="15.0" fill="rgb(208,207,2)" rx="2" ry="2" /> +<text x="1024.37" y="9903.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="491.6" y="10373" width="0.5" height="15.0" fill="rgb(219,98,39)" rx="2" ry="2" /> +<text x="494.62" y="10383.5" ></text> +</g> +<g > +<title><unknown> (2 samples, 0.07%)</title><rect x="1021.4" y="7653" width="0.8" height="15.0" fill="rgb(250,92,51)" rx="2" ry="2" /> +<text x="1024.37" y="7663.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="736.1" y="10405" width="0.5" height="15.0" fill="rgb(208,107,34)" rx="2" ry="2" /> +<text x="739.12" y="10415.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Stack::popValue (1 samples, 0.04%)</title><rect x="240.2" y="10885" width="0.4" height="15.0" fill="rgb(222,152,5)" rx="2" ry="2" /> +<text x="243.19" y="10895.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="1050.4" y="11061" width="0.4" height="15.0" fill="rgb(217,21,10)" rx="2" ry="2" /> +<text x="1053.41" y="11071.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (4 samples, 0.15%)</title><rect x="742.6" y="10197" width="1.8" height="15.0" fill="rgb(254,229,21)" rx="2" ry="2" /> +<text x="745.62" y="10207.5" ></text> +</g> +<g > +<title><unknown> (2 samples, 0.07%)</title><rect x="1021.4" y="11077" width="0.8" height="15.0" fill="rgb(249,191,27)" rx="2" ry="2" /> +<text x="1024.37" y="11087.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (46 samples, 1.69%)</title><rect x="258.4" y="9909" width="19.9" height="15.0" fill="rgb(217,41,54)" rx="2" ry="2" /> +<text x="261.40" y="9919.5" ></text> +</g> +<g > +<title><unknown> (1 samples, 0.04%)</title><rect x="1021.8" y="389" width="0.4" height="15.0" fill="rgb(210,189,51)" rx="2" ry="2" /> +<text x="1024.80" y="399.5" ></text> +</g> +<g > +<title><unknown> (1 samples, 0.04%)</title><rect x="1021.8" y="1413" width="0.4" height="15.0" fill="rgb(233,180,41)" rx="2" ry="2" /> +<text x="1024.80" y="1423.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="777.3" y="10149" width="0.4" height="15.0" fill="rgb(247,182,37)" rx="2" ry="2" /> +<text x="780.30" y="10159.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (2 samples, 0.07%)</title><rect x="483.8" y="9829" width="0.9" height="15.0" fill="rgb(210,218,54)" rx="2" ry="2" /> +<text x="486.82" y="9839.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (24 samples, 0.88%)</title><rect x="855.8" y="10309" width="10.4" height="15.0" fill="rgb(211,217,30)" rx="2" ry="2" /> +<text x="858.77" y="10319.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="1137.5" y="11109" width="0.5" height="15.0" fill="rgb(226,179,0)" rx="2" ry="2" /> +<text x="1140.55" y="11119.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\ControlFlowResult::Return (7 samples, 0.26%)</title><rect x="810.2" y="10357" width="3.1" height="15.0" fill="rgb(221,227,16)" rx="2" ry="2" /> +<text x="813.25" y="10367.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (6 samples, 0.22%)</title><rect x="721.4" y="9973" width="2.6" height="15.0" fill="rgb(232,87,47)" rx="2" ry="2" /> +<text x="724.38" y="9983.5" ></text> +</g> +<g > +<title><unknown> (4 samples, 0.15%)</title><rect x="1020.5" y="11189" width="1.7" height="15.0" fill="rgb(248,97,7)" rx="2" ry="2" /> +<text x="1023.50" y="11199.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="1174.4" y="11157" width="0.4" height="15.0" fill="rgb(242,219,20)" rx="2" ry="2" /> +<text x="1177.39" y="11167.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Stack::pushI32 (1 samples, 0.04%)</title><rect x="1161.4" y="11221" width="0.4" height="15.0" fill="rgb(205,210,10)" rx="2" ry="2" /> +<text x="1164.39" y="11231.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="345.1" y="9861" width="0.4" height="15.0" fill="rgb(229,103,9)" rx="2" ry="2" /> +<text x="348.10" y="9871.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="1036.1" y="10997" width="0.4" height="15.0" fill="rgb(234,141,16)" rx="2" ry="2" /> +<text x="1039.11" y="11007.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doLoadI32 (1 samples, 0.04%)</title><rect x="365.0" y="9877" width="0.5" height="15.0" fill="rgb(216,30,52)" rx="2" ry="2" /> +<text x="368.04" y="9887.5" ></text> +</g> +<g > +<title><unknown> (2 samples, 0.07%)</title><rect x="1021.4" y="6661" width="0.8" height="15.0" fill="rgb(226,114,40)" rx="2" ry="2" /> +<text x="1024.37" y="6671.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="340.8" y="9877" width="0.4" height="15.0" fill="rgb(221,229,36)" rx="2" ry="2" /> +<text x="343.76" y="9887.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="258.0" y="9749" width="0.4" height="15.0" fill="rgb(236,185,47)" rx="2" ry="2" /> +<text x="260.96" y="9759.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (25 samples, 0.92%)</title><rect x="855.3" y="10325" width="10.9" height="15.0" fill="rgb(249,199,14)" rx="2" ry="2" /> +<text x="858.33" y="10335.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="1128.9" y="11125" width="0.4" height="15.0" fill="rgb(254,48,45)" rx="2" ry="2" /> +<text x="1131.88" y="11135.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="442.2" y="8661" width="0.4" height="15.0" fill="rgb(206,90,47)" rx="2" ry="2" /> +<text x="445.20" y="8671.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (7 samples, 0.26%)</title><rect x="533.7" y="10085" width="3.0" height="15.0" fill="rgb(253,166,41)" rx="2" ry="2" /> +<text x="536.67" y="10095.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="307.8" y="9173" width="0.5" height="15.0" fill="rgb(211,191,9)" rx="2" ry="2" /> +<text x="310.82" y="9183.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\BinaryFormat\Decoder::{closure}(/home/ken/src/php-waddiwasi/src/BinaryFormat/Decoder.php:524-557) (1 samples, 0.04%)</title><rect x="740.9" y="10741" width="0.4" height="15.0" fill="rgb(234,37,39)" rx="2" ry="2" /> +<text x="743.89" y="10751.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doLoadI32 (1 samples, 0.04%)</title><rect x="325.6" y="9173" width="0.4" height="15.0" fill="rgb(246,128,28)" rx="2" ry="2" /> +<text x="328.59" y="9183.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (2 samples, 0.07%)</title><rect x="1041.3" y="11173" width="0.9" height="15.0" fill="rgb(250,118,43)" rx="2" ry="2" /> +<text x="1044.31" y="11183.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (4 samples, 0.15%)</title><rect x="742.6" y="10517" width="1.8" height="15.0" fill="rgb(249,171,36)" rx="2" ry="2" /> +<text x="745.62" y="10527.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (2 samples, 0.07%)</title><rect x="453.9" y="9557" width="0.9" height="15.0" fill="rgb(225,94,4)" rx="2" ry="2" /> +<text x="456.91" y="9567.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (4 samples, 0.15%)</title><rect x="351.6" y="9493" width="1.7" height="15.0" fill="rgb(243,132,15)" rx="2" ry="2" /> +<text x="354.60" y="9503.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (4 samples, 0.15%)</title><rect x="351.6" y="9413" width="1.7" height="15.0" fill="rgb(226,36,38)" rx="2" ry="2" /> +<text x="354.60" y="9423.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="238.9" y="10789" width="0.4" height="15.0" fill="rgb(231,54,25)" rx="2" ry="2" /> +<text x="241.89" y="10799.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (3 samples, 0.11%)</title><rect x="722.2" y="9861" width="1.3" height="15.0" fill="rgb(230,194,22)" rx="2" ry="2" /> +<text x="725.25" y="9871.5" ></text> +</g> +<g > +<title><unknown> (1 samples, 0.04%)</title><rect x="252.3" y="10037" width="0.5" height="15.0" fill="rgb(212,31,33)" rx="2" ry="2" /> +<text x="255.33" y="10047.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (24 samples, 0.88%)</title><rect x="473.0" y="9989" width="10.4" height="15.0" fill="rgb(249,52,42)" rx="2" ry="2" /> +<text x="475.98" y="9999.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="668.1" y="9733" width="0.4" height="15.0" fill="rgb(207,100,6)" rx="2" ry="2" /> +<text x="671.06" y="9743.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="870.1" y="8773" width="0.4" height="15.0" fill="rgb(215,113,13)" rx="2" ry="2" /> +<text x="873.07" y="8783.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="1090.3" y="11109" width="0.4" height="15.0" fill="rgb(244,222,54)" rx="2" ry="2" /> +<text x="1093.29" y="11119.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (562 samples, 20.65%)</title><rect x="246.7" y="10421" width="243.6" height="15.0" fill="rgb(247,147,36)" rx="2" ry="2" /> +<text x="249.69" y="10431.5" >Nsfisis\Waddiwasi\Execution\Runt..</text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="481.2" y="9717" width="0.5" height="15.0" fill="rgb(239,4,25)" rx="2" ry="2" /> +<text x="484.22" y="9727.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (290 samples, 10.65%)</title><rect x="742.6" y="10933" width="125.7" height="15.0" fill="rgb(242,151,3)" rx="2" ry="2" /> +<text x="745.62" y="10943.5" >Nsfisis\Waddiwa..</text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (5 samples, 0.18%)</title><rect x="255.8" y="9733" width="2.2" height="15.0" fill="rgb(221,42,16)" rx="2" ry="2" /> +<text x="258.80" y="9743.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (1 samples, 0.04%)</title><rect x="466.5" y="9733" width="0.4" height="15.0" fill="rgb(214,17,15)" rx="2" ry="2" /> +<text x="469.48" y="9743.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="740.5" y="10325" width="0.4" height="15.0" fill="rgb(231,165,36)" rx="2" ry="2" /> +<text x="743.46" y="10335.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="738.3" y="10597" width="0.4" height="15.0" fill="rgb(227,93,1)" rx="2" ry="2" /> +<text x="741.29" y="10607.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (21 samples, 0.77%)</title><rect x="351.2" y="9781" width="9.1" height="15.0" fill="rgb(219,1,34)" rx="2" ry="2" /> +<text x="354.17" y="9791.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::deactivateLabel (1 samples, 0.04%)</title><rect x="336.9" y="10021" width="0.4" height="15.0" fill="rgb(233,99,46)" rx="2" ry="2" /> +<text x="339.86" y="10031.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (1 samples, 0.04%)</title><rect x="866.6" y="10421" width="0.4" height="15.0" fill="rgb(231,168,53)" rx="2" ry="2" /> +<text x="869.61" y="10431.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="398.4" y="9285" width="0.5" height="15.0" fill="rgb(248,129,52)" rx="2" ry="2" /> +<text x="401.42" y="9295.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (2 samples, 0.07%)</title><rect x="311.3" y="9525" width="0.9" height="15.0" fill="rgb(239,1,10)" rx="2" ry="2" /> +<text x="314.29" y="9535.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="392.8" y="9557" width="0.4" height="15.0" fill="rgb(223,94,29)" rx="2" ry="2" /> +<text x="395.78" y="9567.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (22 samples, 0.81%)</title><rect x="317.4" y="9717" width="9.5" height="15.0" fill="rgb(234,54,1)" rx="2" ry="2" /> +<text x="320.35" y="9727.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="869.2" y="9797" width="0.4" height="15.0" fill="rgb(221,95,23)" rx="2" ry="2" /> +<text x="872.21" y="9807.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (1 samples, 0.04%)</title><rect x="454.3" y="9461" width="0.5" height="15.0" fill="rgb(232,151,44)" rx="2" ry="2" /> +<text x="457.34" y="9471.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (4 samples, 0.15%)</title><rect x="241.1" y="10741" width="1.7" height="15.0" fill="rgb(226,53,1)" rx="2" ry="2" /> +<text x="244.06" y="10751.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (1 samples, 0.04%)</title><rect x="254.9" y="9797" width="0.5" height="15.0" fill="rgb(247,200,6)" rx="2" ry="2" /> +<text x="257.93" y="9807.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="737.9" y="10437" width="0.4" height="15.0" fill="rgb(230,197,37)" rx="2" ry="2" /> +<text x="740.85" y="10447.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (6 samples, 0.22%)</title><rect x="857.9" y="10277" width="2.6" height="15.0" fill="rgb(239,178,22)" rx="2" ry="2" /> +<text x="860.94" y="10287.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (3 samples, 0.11%)</title><rect x="536.7" y="10165" width="1.3" height="15.0" fill="rgb(238,218,22)" rx="2" ry="2" /> +<text x="539.71" y="10175.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (26 samples, 0.96%)</title><rect x="452.6" y="9957" width="11.3" height="15.0" fill="rgb(229,26,20)" rx="2" ry="2" /> +<text x="455.61" y="9967.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (3 samples, 0.11%)</title><rect x="442.2" y="9029" width="1.3" height="15.0" fill="rgb(237,117,34)" rx="2" ry="2" /> +<text x="445.20" y="9039.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="1104.6" y="11013" width="0.4" height="15.0" fill="rgb(249,134,50)" rx="2" ry="2" /> +<text x="1107.60" y="11023.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (2 samples, 0.07%)</title><rect x="453.9" y="9653" width="0.9" height="15.0" fill="rgb(216,79,0)" rx="2" ry="2" /> +<text x="456.91" y="9663.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (9 samples, 0.33%)</title><rect x="491.2" y="10549" width="3.9" height="15.0" fill="rgb(245,189,38)" rx="2" ry="2" /> +<text x="494.19" y="10559.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (1 samples, 0.04%)</title><rect x="867.0" y="10437" width="0.5" height="15.0" fill="rgb(249,16,43)" rx="2" ry="2" /> +<text x="870.04" y="10447.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="870.1" y="9685" width="0.4" height="15.0" fill="rgb(223,227,10)" rx="2" ry="2" /> +<text x="873.07" y="9695.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="733.5" y="9973" width="0.5" height="15.0" fill="rgb(240,45,41)" rx="2" ry="2" /> +<text x="736.52" y="9983.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (19 samples, 0.70%)</title><rect x="431.4" y="9941" width="8.2" height="15.0" fill="rgb(232,212,37)" rx="2" ry="2" /> +<text x="434.37" y="9951.5" ></text> +</g> +<g > +<title>assert (1 samples, 0.04%)</title><rect x="527.6" y="10309" width="0.4" height="15.0" fill="rgb(248,154,29)" rx="2" ry="2" /> +<text x="530.60" y="10319.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="360.3" y="9669" width="0.4" height="15.0" fill="rgb(252,151,15)" rx="2" ry="2" /> +<text x="363.27" y="9679.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="869.2" y="9893" width="0.4" height="15.0" fill="rgb(243,128,15)" rx="2" ry="2" /> +<text x="872.21" y="9903.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (4 samples, 0.15%)</title><rect x="1049.1" y="11125" width="1.7" height="15.0" fill="rgb(217,24,51)" rx="2" ry="2" /> +<text x="1052.11" y="11135.5" ></text> +</g> +<g > +<title><unknown> (2 samples, 0.07%)</title><rect x="1021.4" y="6901" width="0.8" height="15.0" fill="rgb(239,189,46)" rx="2" ry="2" /> +<text x="1024.37" y="6911.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="739.2" y="10501" width="0.4" height="15.0" fill="rgb(214,67,2)" rx="2" ry="2" /> +<text x="742.16" y="10511.5" ></text> +</g> +<g > +<title><unknown> (2 samples, 0.07%)</title><rect x="1021.4" y="9445" width="0.8" height="15.0" fill="rgb(244,185,28)" rx="2" ry="2" /> +<text x="1024.37" y="9455.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="543.2" y="10101" width="0.4" height="15.0" fill="rgb(231,201,19)" rx="2" ry="2" /> +<text x="546.21" y="10111.5" ></text> +</g> +<g > +<title><unknown> (1 samples, 0.04%)</title><rect x="1021.8" y="277" width="0.4" height="15.0" fill="rgb(239,222,49)" rx="2" ry="2" /> +<text x="1024.80" y="287.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (1 samples, 0.04%)</title><rect x="380.2" y="9493" width="0.4" height="15.0" fill="rgb(243,118,45)" rx="2" ry="2" /> +<text x="383.21" y="9503.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (2 samples, 0.07%)</title><rect x="734.0" y="10469" width="0.8" height="15.0" fill="rgb(247,110,12)" rx="2" ry="2" /> +<text x="736.95" y="10479.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="484.7" y="9829" width="0.4" height="15.0" fill="rgb(248,220,7)" rx="2" ry="2" /> +<text x="487.69" y="9839.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="733.5" y="9685" width="0.5" height="15.0" fill="rgb(228,186,54)" rx="2" ry="2" /> +<text x="736.52" y="9695.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="744.4" y="10405" width="0.4" height="15.0" fill="rgb(248,10,27)" rx="2" ry="2" /> +<text x="747.36" y="10415.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="777.3" y="10453" width="0.4" height="15.0" fill="rgb(220,174,36)" rx="2" ry="2" /> +<text x="780.30" y="10463.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="763.9" y="9893" width="0.4" height="15.0" fill="rgb(236,212,16)" rx="2" ry="2" /> +<text x="766.86" y="9903.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (2 samples, 0.07%)</title><rect x="734.0" y="10245" width="0.8" height="15.0" fill="rgb(231,151,19)" rx="2" ry="2" /> +<text x="736.95" y="10255.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="733.5" y="8165" width="0.5" height="15.0" fill="rgb(222,92,0)" rx="2" ry="2" /> +<text x="736.52" y="8175.5" ></text> +</g> +<g > +<title><unknown> (1 samples, 0.04%)</title><rect x="1021.8" y="1013" width="0.4" height="15.0" fill="rgb(245,117,12)" rx="2" ry="2" /> +<text x="1024.80" y="1023.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (5 samples, 0.18%)</title><rect x="868.8" y="10773" width="2.1" height="15.0" fill="rgb(244,53,7)" rx="2" ry="2" /> +<text x="871.77" y="10783.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (3 samples, 0.11%)</title><rect x="717.5" y="9781" width="1.3" height="15.0" fill="rgb(215,223,2)" rx="2" ry="2" /> +<text x="720.48" y="9791.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (513 samples, 18.85%)</title><rect x="248.9" y="10117" width="222.3" height="15.0" fill="rgb(253,80,51)" rx="2" ry="2" /> +<text x="251.86" y="10127.5" >Nsfisis\Waddiwasi\Execution\R..</text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (2 samples, 0.07%)</title><rect x="277.0" y="9733" width="0.9" height="15.0" fill="rgb(219,34,43)" rx="2" ry="2" /> +<text x="280.04" y="9743.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (1 samples, 0.04%)</title><rect x="1168.8" y="11157" width="0.4" height="15.0" fill="rgb(252,93,47)" rx="2" ry="2" /> +<text x="1171.76" y="11167.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (29 samples, 1.07%)</title><rect x="490.8" y="10565" width="12.5" height="15.0" fill="rgb(211,62,19)" rx="2" ry="2" /> +<text x="493.76" y="10575.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (11 samples, 0.40%)</title><rect x="714.0" y="9861" width="4.8" height="15.0" fill="rgb(248,70,54)" rx="2" ry="2" /> +<text x="717.01" y="9871.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (5 samples, 0.18%)</title><rect x="306.1" y="9525" width="2.2" height="15.0" fill="rgb(214,59,52)" rx="2" ry="2" /> +<text x="309.08" y="9535.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\ControlFlowResult::Br (1 samples, 0.04%)</title><rect x="1081.2" y="11205" width="0.4" height="15.0" fill="rgb(223,43,42)" rx="2" ry="2" /> +<text x="1084.19" y="11215.5" ></text> +</g> +<g > +<title><unknown> (1 samples, 0.04%)</title><rect x="1021.8" y="3237" width="0.4" height="15.0" fill="rgb(235,2,20)" rx="2" ry="2" /> +<text x="1024.80" y="3247.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Num::I32 (1 samples, 0.04%)</title><rect x="742.2" y="10421" width="0.4" height="15.0" fill="rgb(243,76,45)" rx="2" ry="2" /> +<text x="745.19" y="10431.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="1036.1" y="10869" width="0.4" height="15.0" fill="rgb(253,192,21)" rx="2" ry="2" /> +<text x="1039.11" y="10879.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="448.7" y="9765" width="0.4" height="15.0" fill="rgb(228,133,42)" rx="2" ry="2" /> +<text x="451.71" y="9775.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="739.6" y="10309" width="0.4" height="15.0" fill="rgb(234,114,14)" rx="2" ry="2" /> +<text x="742.59" y="10319.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="316.9" y="9397" width="0.5" height="15.0" fill="rgb(241,98,7)" rx="2" ry="2" /> +<text x="319.92" y="9407.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (41 samples, 1.51%)</title><rect x="505.5" y="10325" width="17.8" height="15.0" fill="rgb(251,157,45)" rx="2" ry="2" /> +<text x="508.50" y="10335.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (2 samples, 0.07%)</title><rect x="467.3" y="9589" width="0.9" height="15.0" fill="rgb(247,147,17)" rx="2" ry="2" /> +<text x="470.35" y="9599.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="261.0" y="9509" width="0.4" height="15.0" fill="rgb(236,36,9)" rx="2" ry="2" /> +<text x="264.00" y="9519.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (2 samples, 0.07%)</title><rect x="442.2" y="8853" width="0.9" height="15.0" fill="rgb(209,30,29)" rx="2" ry="2" /> +<text x="445.20" y="8863.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\ControlFlowResult::Br (1 samples, 0.04%)</title><rect x="1022.7" y="11189" width="0.4" height="15.0" fill="rgb(247,42,5)" rx="2" ry="2" /> +<text x="1025.67" y="11199.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="733.5" y="8709" width="0.5" height="15.0" fill="rgb(215,108,3)" rx="2" ry="2" /> +<text x="736.52" y="8719.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="1035.2" y="11029" width="0.5" height="15.0" fill="rgb(212,62,1)" rx="2" ry="2" /> +<text x="1038.24" y="11039.5" ></text> +</g> +<g > +<title><unknown> (1 samples, 0.04%)</title><rect x="1021.8" y="2645" width="0.4" height="15.0" fill="rgb(226,47,29)" rx="2" ry="2" /> +<text x="1024.80" y="2655.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::invokeByFuncAddr (1 samples, 0.04%)</title><rect x="740.9" y="10725" width="0.4" height="15.0" fill="rgb(233,38,19)" rx="2" ry="2" /> +<text x="743.89" y="10735.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="870.1" y="8053" width="0.4" height="15.0" fill="rgb(218,90,45)" rx="2" ry="2" /> +<text x="873.07" y="8063.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (3 samples, 0.11%)</title><rect x="529.8" y="10197" width="1.3" height="15.0" fill="rgb(218,193,20)" rx="2" ry="2" /> +<text x="532.77" y="10207.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="487.7" y="9781" width="0.5" height="15.0" fill="rgb(207,125,34)" rx="2" ry="2" /> +<text x="490.72" y="9791.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (55 samples, 2.02%)</title><rect x="752.6" y="10325" width="23.8" height="15.0" fill="rgb(214,206,33)" rx="2" ry="2" /> +<text x="755.59" y="10335.5" >N..</text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (8 samples, 0.29%)</title><rect x="543.6" y="10453" width="3.5" height="15.0" fill="rgb(247,224,27)" rx="2" ry="2" /> +<text x="546.64" y="10463.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="238.9" y="10645" width="0.4" height="15.0" fill="rgb(228,208,24)" rx="2" ry="2" /> +<text x="241.89" y="10655.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (48 samples, 1.76%)</title><rect x="658.5" y="10117" width="20.8" height="15.0" fill="rgb(218,150,14)" rx="2" ry="2" /> +<text x="661.52" y="10127.5" ></text> +</g> +<g > +<title><unknown> (1 samples, 0.04%)</title><rect x="1021.8" y="5877" width="0.4" height="15.0" fill="rgb(244,76,25)" rx="2" ry="2" /> +<text x="1024.80" y="5887.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (2 samples, 0.07%)</title><rect x="532.8" y="10165" width="0.9" height="15.0" fill="rgb(252,186,28)" rx="2" ry="2" /> +<text x="535.81" y="10175.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (289 samples, 10.62%)</title><rect x="742.6" y="10805" width="125.3" height="15.0" fill="rgb(215,50,15)" rx="2" ry="2" /> +<text x="745.62" y="10815.5" >Nsfisis\Waddiwa..</text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Stack::pushValue (1 samples, 0.04%)</title><rect x="1035.2" y="11157" width="0.5" height="15.0" fill="rgb(215,108,54)" rx="2" ry="2" /> +<text x="1038.24" y="11167.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="867.9" y="10085" width="0.4" height="15.0" fill="rgb(208,18,6)" rx="2" ry="2" /> +<text x="870.91" y="10095.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Stack::pushValue (1 samples, 0.04%)</title><rect x="771.2" y="9973" width="0.5" height="15.0" fill="rgb(223,30,2)" rx="2" ry="2" /> +<text x="774.23" y="9983.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="442.6" y="8773" width="0.5" height="15.0" fill="rgb(246,103,30)" rx="2" ry="2" /> +<text x="445.64" y="8783.5" ></text> +</g> +<g > +<title><unknown> (1 samples, 0.04%)</title><rect x="1021.8" y="101" width="0.4" height="15.0" fill="rgb(249,69,25)" rx="2" ry="2" /> +<text x="1024.80" y="111.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="734.4" y="10197" width="0.4" height="15.0" fill="rgb(254,127,17)" rx="2" ry="2" /> +<text x="737.39" y="10207.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (2 samples, 0.07%)</title><rect x="496.0" y="10229" width="0.8" height="15.0" fill="rgb(207,163,40)" rx="2" ry="2" /> +<text x="498.96" y="10239.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (2 samples, 0.07%)</title><rect x="498.6" y="10069" width="0.8" height="15.0" fill="rgb(223,40,27)" rx="2" ry="2" /> +<text x="501.56" y="10079.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (184 samples, 6.76%)</title><rect x="652.5" y="10437" width="79.7" height="15.0" fill="rgb(232,31,26)" rx="2" ry="2" /> +<text x="655.45" y="10447.5" >Nsfisis\W..</text> +</g> +<g > +<title><unknown> (2 samples, 0.07%)</title><rect x="1021.4" y="8085" width="0.8" height="15.0" fill="rgb(228,144,25)" rx="2" ry="2" /> +<text x="1024.37" y="8095.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Stack::pushValue (1 samples, 0.04%)</title><rect x="730.1" y="9877" width="0.4" height="15.0" fill="rgb(218,13,2)" rx="2" ry="2" /> +<text x="733.05" y="9887.5" ></text> +</g> +<g > +<title><unknown> (1 samples, 0.04%)</title><rect x="1021.8" y="661" width="0.4" height="15.0" fill="rgb(210,132,6)" rx="2" ry="2" /> +<text x="1024.80" y="671.5" ></text> +</g> +<g > +<title><unknown> (2 samples, 0.07%)</title><rect x="1021.4" y="10245" width="0.8" height="15.0" fill="rgb(224,223,39)" rx="2" ry="2" /> +<text x="1024.37" y="10255.5" ></text> +</g> +<g > +<title><unknown> (2 samples, 0.07%)</title><rect x="1021.4" y="6629" width="0.8" height="15.0" fill="rgb(206,218,38)" rx="2" ry="2" /> +<text x="1024.37" y="6639.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (241 samples, 8.85%)</title><rect x="547.1" y="10101" width="104.5" height="15.0" fill="rgb(225,138,47)" rx="2" ry="2" /> +<text x="550.11" y="10111.5" >Nsfisis\Wadd..</text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="485.1" y="9717" width="0.5" height="15.0" fill="rgb(233,63,45)" rx="2" ry="2" /> +<text x="488.12" y="9727.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (2 samples, 0.07%)</title><rect x="1141.9" y="11093" width="0.8" height="15.0" fill="rgb(230,177,17)" rx="2" ry="2" /> +<text x="1144.88" y="11103.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="442.2" y="8581" width="0.4" height="15.0" fill="rgb(223,59,6)" rx="2" ry="2" /> +<text x="445.20" y="8591.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (2 samples, 0.07%)</title><rect x="419.7" y="9589" width="0.8" height="15.0" fill="rgb(231,216,16)" rx="2" ry="2" /> +<text x="422.66" y="9599.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (9 samples, 0.33%)</title><rect x="498.6" y="10261" width="3.9" height="15.0" fill="rgb(215,51,12)" rx="2" ry="2" /> +<text x="501.56" y="10271.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (2 samples, 0.07%)</title><rect x="453.9" y="9605" width="0.9" height="15.0" fill="rgb(248,192,39)" rx="2" ry="2" /> +<text x="456.91" y="9615.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (22 samples, 0.81%)</title><rect x="1058.6" y="11013" width="9.6" height="15.0" fill="rgb(242,181,40)" rx="2" ry="2" /> +<text x="1061.65" y="11023.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (9 samples, 0.33%)</title><rect x="238.9" y="10997" width="3.9" height="15.0" fill="rgb(227,158,21)" rx="2" ry="2" /> +<text x="241.89" y="11007.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="318.7" y="9541" width="0.4" height="15.0" fill="rgb(218,88,18)" rx="2" ry="2" /> +<text x="321.66" y="9551.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="734.8" y="10629" width="0.5" height="15.0" fill="rgb(249,154,35)" rx="2" ry="2" /> +<text x="737.82" y="10639.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="442.2" y="8629" width="0.4" height="15.0" fill="rgb(231,186,50)" rx="2" ry="2" /> +<text x="445.20" y="8639.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="740.9" y="10373" width="0.4" height="15.0" fill="rgb(238,185,19)" rx="2" ry="2" /> +<text x="743.89" y="10383.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (17 samples, 0.62%)</title><rect x="351.6" y="9621" width="7.4" height="15.0" fill="rgb(229,44,14)" rx="2" ry="2" /> +<text x="354.60" y="9631.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="546.2" y="10213" width="0.5" height="15.0" fill="rgb(238,50,51)" rx="2" ry="2" /> +<text x="549.25" y="10223.5" ></text> +</g> +<g > +<title><unknown> (1 samples, 0.04%)</title><rect x="1021.8" y="5989" width="0.4" height="15.0" fill="rgb(239,120,13)" rx="2" ry="2" /> +<text x="1024.80" y="5999.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (3 samples, 0.11%)</title><rect x="536.7" y="10149" width="1.3" height="15.0" fill="rgb(216,157,1)" rx="2" ry="2" /> +<text x="539.71" y="10159.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (1,458 samples, 53.56%)</title><rect x="238.9" y="11221" width="632.0" height="15.0" fill="rgb(205,108,2)" rx="2" ry="2" /> +<text x="241.89" y="11231.5" >Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc</text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="870.5" y="9893" width="0.4" height="15.0" fill="rgb(253,156,48)" rx="2" ry="2" /> +<text x="873.51" y="9903.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (191 samples, 7.02%)</title><rect x="652.0" y="10645" width="82.8" height="15.0" fill="rgb(248,182,21)" rx="2" ry="2" /> +<text x="655.02" y="10655.5" >Nsfisis\W..</text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="758.2" y="9973" width="0.5" height="15.0" fill="rgb(214,208,18)" rx="2" ry="2" /> +<text x="761.23" y="9983.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Stack::popI32 (1 samples, 0.04%)</title><rect x="1157.1" y="11221" width="0.4" height="15.0" fill="rgb(226,96,35)" rx="2" ry="2" /> +<text x="1160.05" y="11231.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (2 samples, 0.07%)</title><rect x="372.8" y="9525" width="0.9" height="15.0" fill="rgb(246,115,13)" rx="2" ry="2" /> +<text x="375.84" y="9535.5" ></text> +</g> +<g > +<title><unknown> (1 samples, 0.04%)</title><rect x="1021.8" y="2389" width="0.4" height="15.0" fill="rgb(243,190,40)" rx="2" ry="2" /> +<text x="1024.80" y="2399.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="373.3" y="9413" width="0.4" height="15.0" fill="rgb(216,207,23)" rx="2" ry="2" /> +<text x="376.28" y="9423.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (42 samples, 1.54%)</title><rect x="471.2" y="10133" width="18.3" height="15.0" fill="rgb(205,202,9)" rx="2" ry="2" /> +<text x="474.25" y="10143.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (3 samples, 0.11%)</title><rect x="542.3" y="10373" width="1.3" height="15.0" fill="rgb(222,200,39)" rx="2" ry="2" /> +<text x="545.34" y="10383.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="470.8" y="10069" width="0.4" height="15.0" fill="rgb(238,123,18)" rx="2" ry="2" /> +<text x="473.82" y="10079.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="482.5" y="9765" width="0.5" height="15.0" fill="rgb(223,143,13)" rx="2" ry="2" /> +<text x="485.52" y="9775.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (55 samples, 2.02%)</title><rect x="254.5" y="9973" width="23.8" height="15.0" fill="rgb(250,53,8)" rx="2" ry="2" /> +<text x="257.50" y="9983.5" >N..</text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="870.1" y="8117" width="0.4" height="15.0" fill="rgb(243,225,52)" rx="2" ry="2" /> +<text x="873.07" y="8127.5" ></text> +</g> +<g > +<title><unknown> (2 samples, 0.07%)</title><rect x="1021.4" y="9333" width="0.8" height="15.0" fill="rgb(245,115,46)" rx="2" ry="2" /> +<text x="1024.37" y="9343.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="867.9" y="10197" width="0.4" height="15.0" fill="rgb(216,142,51)" rx="2" ry="2" /> +<text x="870.91" y="10207.5" ></text> +</g> +<g > +<title><unknown> (1 samples, 0.04%)</title><rect x="1021.8" y="3973" width="0.4" height="15.0" fill="rgb(221,189,31)" rx="2" ry="2" /> +<text x="1024.80" y="3983.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="485.1" y="9749" width="0.5" height="15.0" fill="rgb(210,165,39)" rx="2" ry="2" /> +<text x="488.12" y="9759.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (54 samples, 1.98%)</title><rect x="697.1" y="10037" width="23.4" height="15.0" fill="rgb(222,17,25)" rx="2" ry="2" /> +<text x="700.11" y="10047.5" >N..</text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Vals\Num::__construct (1 samples, 0.04%)</title><rect x="443.5" y="9397" width="0.4" height="15.0" fill="rgb(241,207,11)" rx="2" ry="2" /> +<text x="446.50" y="9407.5" ></text> +</g> +<g > +<title><unknown> (2 samples, 0.07%)</title><rect x="1021.4" y="6517" width="0.8" height="15.0" fill="rgb(238,71,18)" rx="2" ry="2" /> +<text x="1024.37" y="6527.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="1050.0" y="11029" width="0.4" height="15.0" fill="rgb(247,143,43)" rx="2" ry="2" /> +<text x="1052.98" y="11039.5" ></text> +</g> +<g > +<title><unknown> (1 samples, 0.04%)</title><rect x="1021.8" y="4341" width="0.4" height="15.0" fill="rgb(234,115,42)" rx="2" ry="2" /> +<text x="1024.80" y="4351.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (2 samples, 0.07%)</title><rect x="717.9" y="9573" width="0.9" height="15.0" fill="rgb(252,25,42)" rx="2" ry="2" /> +<text x="720.91" y="9583.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (35 samples, 1.29%)</title><rect x="413.2" y="9653" width="15.1" height="15.0" fill="rgb(206,86,51)" rx="2" ry="2" /> +<text x="416.16" y="9663.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (76 samples, 2.79%)</title><rect x="1037.0" y="11205" width="32.9" height="15.0" fill="rgb(244,46,21)" rx="2" ry="2" /> +<text x="1039.97" y="11215.5" >Ns..</text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (2 samples, 0.07%)</title><rect x="448.3" y="9909" width="0.8" height="15.0" fill="rgb(219,47,39)" rx="2" ry="2" /> +<text x="451.27" y="9919.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="398.4" y="9333" width="0.5" height="15.0" fill="rgb(252,61,3)" rx="2" ry="2" /> +<text x="401.42" y="9343.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Stack::pushValue (1 samples, 0.04%)</title><rect x="481.2" y="9685" width="0.5" height="15.0" fill="rgb(227,30,35)" rx="2" ry="2" /> +<text x="484.22" y="9695.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (2 samples, 0.07%)</title><rect x="734.0" y="10293" width="0.8" height="15.0" fill="rgb(233,183,9)" rx="2" ry="2" /> +<text x="736.95" y="10303.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Stack::popValue (1 samples, 0.04%)</title><rect x="1157.1" y="11205" width="0.4" height="15.0" fill="rgb(205,1,18)" rx="2" ry="2" /> +<text x="1160.05" y="11215.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (4 samples, 0.15%)</title><rect x="1110.7" y="10917" width="1.7" height="15.0" fill="rgb(217,33,16)" rx="2" ry="2" /> +<text x="1113.67" y="10927.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (2 samples, 0.07%)</title><rect x="532.8" y="10181" width="0.9" height="15.0" fill="rgb(240,91,5)" rx="2" ry="2" /> +<text x="535.81" y="10191.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (1 samples, 0.04%)</title><rect x="487.7" y="9813" width="0.5" height="15.0" fill="rgb(206,73,19)" rx="2" ry="2" /> +<text x="490.72" y="9823.5" ></text> +</g> +<g > +<title><unknown> (2 samples, 0.07%)</title><rect x="1021.4" y="7365" width="0.8" height="15.0" fill="rgb(250,65,22)" rx="2" ry="2" /> +<text x="1024.37" y="7375.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (1 samples, 0.04%)</title><rect x="870.1" y="9637" width="0.4" height="15.0" fill="rgb(206,110,16)" rx="2" ry="2" /> +<text x="873.07" y="9647.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Stack::popI32 (1 samples, 0.04%)</title><rect x="240.2" y="10901" width="0.4" height="15.0" fill="rgb(236,200,41)" rx="2" ry="2" /> +<text x="243.19" y="10911.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (2 samples, 0.07%)</title><rect x="483.8" y="9845" width="0.9" height="15.0" fill="rgb(224,132,5)" rx="2" ry="2" /> +<text x="486.82" y="9855.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (5 samples, 0.18%)</title><rect x="411.0" y="9573" width="2.2" height="15.0" fill="rgb(252,8,33)" rx="2" ry="2" /> +<text x="413.99" y="9583.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="870.5" y="9973" width="0.4" height="15.0" fill="rgb(243,40,35)" rx="2" ry="2" /> +<text x="873.51" y="9983.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Stack::popI32 (1 samples, 0.04%)</title><rect x="267.9" y="9525" width="0.5" height="15.0" fill="rgb(219,2,52)" rx="2" ry="2" /> +<text x="270.94" y="9535.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="373.3" y="9397" width="0.4" height="15.0" fill="rgb(231,0,49)" rx="2" ry="2" /> +<text x="376.28" y="9407.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (2 samples, 0.07%)</title><rect x="442.2" y="8821" width="0.9" height="15.0" fill="rgb(223,197,34)" rx="2" ry="2" /> +<text x="445.20" y="8831.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="468.2" y="9829" width="0.4" height="15.0" fill="rgb(212,200,3)" rx="2" ry="2" /> +<text x="471.21" y="9839.5" ></text> +</g> +<g > +<title><unknown> (1 samples, 0.04%)</title><rect x="1021.8" y="3461" width="0.4" height="15.0" fill="rgb(252,131,5)" rx="2" ry="2" /> +<text x="1024.80" y="3471.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="398.4" y="9381" width="0.5" height="15.0" fill="rgb(250,145,38)" rx="2" ry="2" /> +<text x="401.42" y="9391.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (2 samples, 0.07%)</title><rect x="735.7" y="10453" width="0.9" height="15.0" fill="rgb(218,204,46)" rx="2" ry="2" /> +<text x="738.69" y="10463.5" ></text> +</g> +<g > +<title><unknown> (1 samples, 0.04%)</title><rect x="1021.8" y="4453" width="0.4" height="15.0" fill="rgb(237,148,33)" rx="2" ry="2" /> +<text x="1024.80" y="4463.5" ></text> +</g> +<g > +<title><unknown> (2 samples, 0.07%)</title><rect x="1021.4" y="8853" width="0.8" height="15.0" fill="rgb(245,9,28)" rx="2" ry="2" /> +<text x="1024.37" y="8863.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Val::NumI32 (1 samples, 0.04%)</title><rect x="271.0" y="9733" width="0.4" height="15.0" fill="rgb(215,207,27)" rx="2" ry="2" /> +<text x="273.97" y="9743.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="427.5" y="9477" width="0.4" height="15.0" fill="rgb(239,74,47)" rx="2" ry="2" /> +<text x="430.47" y="9487.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="373.3" y="9349" width="0.4" height="15.0" fill="rgb(205,78,34)" rx="2" ry="2" /> +<text x="376.28" y="9359.5" ></text> +</g> +<g > +<title><unknown> (1 samples, 0.04%)</title><rect x="1021.8" y="2869" width="0.4" height="15.0" fill="rgb(235,15,4)" rx="2" ry="2" /> +<text x="1024.80" y="2879.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="424.4" y="9029" width="0.5" height="15.0" fill="rgb(214,201,32)" rx="2" ry="2" /> +<text x="427.43" y="9039.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (2 samples, 0.07%)</title><rect x="734.0" y="10437" width="0.8" height="15.0" fill="rgb(213,142,48)" rx="2" ry="2" /> +<text x="736.95" y="10447.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (46 samples, 1.69%)</title><rect x="830.2" y="10245" width="19.9" height="15.0" fill="rgb(237,80,23)" rx="2" ry="2" /> +<text x="833.19" y="10255.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="446.1" y="9781" width="0.4" height="15.0" fill="rgb(251,194,33)" rx="2" ry="2" /> +<text x="449.11" y="9791.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (6 samples, 0.22%)</title><rect x="410.6" y="9653" width="2.6" height="15.0" fill="rgb(254,117,32)" rx="2" ry="2" /> +<text x="413.56" y="9663.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="482.5" y="9701" width="0.5" height="15.0" fill="rgb(240,176,18)" rx="2" ry="2" /> +<text x="485.52" y="9711.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Stack::pushValue (1 samples, 0.04%)</title><rect x="427.9" y="9589" width="0.4" height="15.0" fill="rgb(246,218,49)" rx="2" ry="2" /> +<text x="430.90" y="9599.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="438.3" y="9621" width="0.4" height="15.0" fill="rgb(226,196,27)" rx="2" ry="2" /> +<text x="441.30" y="9631.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="372.0" y="9653" width="0.4" height="15.0" fill="rgb(237,172,15)" rx="2" ry="2" /> +<text x="374.98" y="9663.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (133 samples, 4.89%)</title><rect x="278.3" y="9957" width="57.7" height="15.0" fill="rgb(230,125,5)" rx="2" ry="2" /> +<text x="281.34" y="9967.5" >Nsfisi..</text> +</g> +<g > +<title><unknown> (1 samples, 0.04%)</title><rect x="1021.8" y="5237" width="0.4" height="15.0" fill="rgb(240,204,5)" rx="2" ry="2" /> +<text x="1024.80" y="5247.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (1 samples, 0.04%)</title><rect x="868.3" y="10869" width="0.5" height="15.0" fill="rgb(225,65,4)" rx="2" ry="2" /> +<text x="871.34" y="10879.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (4 samples, 0.15%)</title><rect x="304.3" y="9397" width="1.8" height="15.0" fill="rgb(217,223,13)" rx="2" ry="2" /> +<text x="307.35" y="9407.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="1090.3" y="11061" width="0.4" height="15.0" fill="rgb(206,66,38)" rx="2" ry="2" /> +<text x="1093.29" y="11071.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="1128.9" y="11157" width="0.4" height="15.0" fill="rgb(253,202,21)" rx="2" ry="2" /> +<text x="1131.88" y="11167.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="844.1" y="10101" width="0.4" height="15.0" fill="rgb(241,93,52)" rx="2" ry="2" /> +<text x="847.06" y="10111.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (2 samples, 0.07%)</title><rect x="408.4" y="9365" width="0.9" height="15.0" fill="rgb(236,157,54)" rx="2" ry="2" /> +<text x="411.39" y="9375.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (21 samples, 0.77%)</title><rect x="682.4" y="10069" width="9.1" height="15.0" fill="rgb(205,9,50)" rx="2" ry="2" /> +<text x="685.37" y="10079.5" ></text> +</g> +<g > +<title><unknown> (1 samples, 0.04%)</title><rect x="1021.8" y="2005" width="0.4" height="15.0" fill="rgb(245,137,13)" rx="2" ry="2" /> +<text x="1024.80" y="2015.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (6 samples, 0.22%)</title><rect x="738.7" y="10853" width="2.6" height="15.0" fill="rgb(249,87,7)" rx="2" ry="2" /> +<text x="741.72" y="10863.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (2 samples, 0.07%)</title><rect x="496.0" y="10309" width="0.8" height="15.0" fill="rgb(208,77,32)" rx="2" ry="2" /> +<text x="498.96" y="10319.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="489.0" y="10021" width="0.5" height="15.0" fill="rgb(247,67,19)" rx="2" ry="2" /> +<text x="492.02" y="10031.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (2 samples, 0.07%)</title><rect x="277.0" y="9669" width="0.9" height="15.0" fill="rgb(226,102,0)" rx="2" ry="2" /> +<text x="280.04" y="9679.5" ></text> +</g> +<g > +<title><unknown> (1 samples, 0.04%)</title><rect x="1101.1" y="11093" width="0.5" height="15.0" fill="rgb(239,164,42)" rx="2" ry="2" /> +<text x="1104.13" y="11103.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (2 samples, 0.07%)</title><rect x="780.8" y="10309" width="0.8" height="15.0" fill="rgb(213,91,27)" rx="2" ry="2" /> +<text x="783.77" y="10319.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="740.0" y="10389" width="0.5" height="15.0" fill="rgb(207,166,10)" rx="2" ry="2" /> +<text x="743.02" y="10399.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="443.1" y="8469" width="0.4" height="15.0" fill="rgb(237,117,37)" rx="2" ry="2" /> +<text x="446.07" y="8479.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="668.1" y="10005" width="0.4" height="15.0" fill="rgb(251,51,35)" rx="2" ry="2" /> +<text x="671.06" y="10015.5" ></text> +</g> +<g > +<title><unknown> (1 samples, 0.04%)</title><rect x="1021.8" y="3701" width="0.4" height="15.0" fill="rgb(250,95,0)" rx="2" ry="2" /> +<text x="1024.80" y="3711.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="329.1" y="9765" width="0.4" height="15.0" fill="rgb(252,138,25)" rx="2" ry="2" /> +<text x="332.06" y="9775.5" ></text> +</g> +<g > +<title><unknown> (1 samples, 0.04%)</title><rect x="404.5" y="9589" width="0.4" height="15.0" fill="rgb(226,132,42)" rx="2" ry="2" /> +<text x="407.49" y="9599.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\StackEntry::Value (11 samples, 0.40%)</title><rect x="1147.1" y="11237" width="4.8" height="15.0" fill="rgb(243,20,12)" rx="2" ry="2" /> +<text x="1150.08" y="11247.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (3 samples, 0.11%)</title><rect x="324.7" y="9557" width="1.3" height="15.0" fill="rgb(206,181,19)" rx="2" ry="2" /> +<text x="327.72" y="9567.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (2 samples, 0.07%)</title><rect x="734.0" y="10453" width="0.8" height="15.0" fill="rgb(238,166,16)" rx="2" ry="2" /> +<text x="736.95" y="10463.5" ></text> +</g> +<g > +<title>print_r (1 samples, 0.04%)</title><rect x="169.1" y="11125" width="0.4" height="15.0" fill="rgb(249,25,9)" rx="2" ry="2" /> +<text x="172.10" y="11135.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (58 samples, 2.13%)</title><rect x="375.0" y="9781" width="25.2" height="15.0" fill="rgb(217,18,47)" rx="2" ry="2" /> +<text x="378.01" y="9791.5" >N..</text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (1 samples, 0.04%)</title><rect x="739.2" y="10389" width="0.4" height="15.0" fill="rgb(210,37,43)" rx="2" ry="2" /> +<text x="742.16" y="10399.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (2 samples, 0.07%)</title><rect x="1141.9" y="11029" width="0.8" height="15.0" fill="rgb(218,109,8)" rx="2" ry="2" /> +<text x="1144.88" y="11039.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="238.9" y="10261" width="0.4" height="15.0" fill="rgb(241,36,0)" rx="2" ry="2" /> +<text x="241.89" y="10271.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (2 samples, 0.07%)</title><rect x="726.6" y="9829" width="0.9" height="15.0" fill="rgb(232,219,43)" rx="2" ry="2" /> +<text x="729.58" y="9839.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (10 samples, 0.37%)</title><rect x="523.3" y="10309" width="4.3" height="15.0" fill="rgb(222,190,30)" rx="2" ry="2" /> +<text x="526.27" y="10319.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (6 samples, 0.22%)</title><rect x="802.9" y="10309" width="2.6" height="15.0" fill="rgb(233,150,24)" rx="2" ry="2" /> +<text x="805.88" y="10319.5" ></text> +</g> +<g > +<title><unknown> (1 samples, 0.04%)</title><rect x="1021.8" y="5349" width="0.4" height="15.0" fill="rgb(212,188,37)" rx="2" ry="2" /> +<text x="1024.80" y="5359.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (1 samples, 0.04%)</title><rect x="372.4" y="9605" width="0.4" height="15.0" fill="rgb(251,111,42)" rx="2" ry="2" /> +<text x="375.41" y="9615.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (3 samples, 0.11%)</title><rect x="495.5" y="10437" width="1.3" height="15.0" fill="rgb(242,88,19)" rx="2" ry="2" /> +<text x="498.53" y="10447.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="742.2" y="10629" width="0.4" height="15.0" fill="rgb(231,93,39)" rx="2" ry="2" /> +<text x="745.19" y="10639.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="733.5" y="9349" width="0.5" height="15.0" fill="rgb(212,28,52)" rx="2" ry="2" /> +<text x="736.52" y="9359.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="258.0" y="9733" width="0.4" height="15.0" fill="rgb(228,92,6)" rx="2" ry="2" /> +<text x="260.96" y="9743.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (3 samples, 0.11%)</title><rect x="468.6" y="9877" width="1.3" height="15.0" fill="rgb(252,44,16)" rx="2" ry="2" /> +<text x="471.65" y="9887.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="254.9" y="9781" width="0.5" height="15.0" fill="rgb(244,152,5)" rx="2" ry="2" /> +<text x="257.93" y="9791.5" ></text> +</g> +<g > +<title><unknown> (1 samples, 0.04%)</title><rect x="1021.8" y="3077" width="0.4" height="15.0" fill="rgb(221,38,9)" rx="2" ry="2" /> +<text x="1024.80" y="3087.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (1 samples, 0.04%)</title><rect x="668.1" y="9973" width="0.4" height="15.0" fill="rgb(205,20,45)" rx="2" ry="2" /> +<text x="671.06" y="9983.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="360.3" y="9685" width="0.4" height="15.0" fill="rgb(230,175,22)" rx="2" ry="2" /> +<text x="363.27" y="9695.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="796.8" y="10453" width="0.4" height="15.0" fill="rgb(212,191,20)" rx="2" ry="2" /> +<text x="799.81" y="10463.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (1 samples, 0.04%)</title><rect x="439.2" y="9685" width="0.4" height="15.0" fill="rgb(242,41,16)" rx="2" ry="2" /> +<text x="442.17" y="9695.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (3 samples, 0.11%)</title><rect x="363.7" y="9669" width="1.3" height="15.0" fill="rgb(207,183,20)" rx="2" ry="2" /> +<text x="366.74" y="9679.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="449.1" y="9909" width="0.5" height="15.0" fill="rgb(230,148,52)" rx="2" ry="2" /> +<text x="452.14" y="9919.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (3 samples, 0.11%)</title><rect x="739.6" y="10597" width="1.3" height="15.0" fill="rgb(250,55,0)" rx="2" ry="2" /> +<text x="742.59" y="10607.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="331.2" y="9797" width="0.5" height="15.0" fill="rgb(247,203,52)" rx="2" ry="2" /> +<text x="334.23" y="9807.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="739.2" y="10101" width="0.4" height="15.0" fill="rgb(226,128,10)" rx="2" ry="2" /> +<text x="742.16" y="10111.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (43 samples, 1.58%)</title><rect x="471.2" y="10149" width="18.7" height="15.0" fill="rgb(220,119,8)" rx="2" ry="2" /> +<text x="474.25" y="10159.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="733.5" y="8757" width="0.5" height="15.0" fill="rgb(246,188,25)" rx="2" ry="2" /> +<text x="736.52" y="8767.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (7 samples, 0.26%)</title><rect x="486.0" y="9941" width="3.0" height="15.0" fill="rgb(242,133,4)" rx="2" ry="2" /> +<text x="488.99" y="9951.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (2 samples, 0.07%)</title><rect x="496.8" y="10421" width="0.9" height="15.0" fill="rgb(226,51,19)" rx="2" ry="2" /> +<text x="499.83" y="10431.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="734.0" y="9973" width="0.4" height="15.0" fill="rgb(217,214,31)" rx="2" ry="2" /> +<text x="736.95" y="9983.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (4 samples, 0.15%)</title><rect x="742.6" y="10341" width="1.8" height="15.0" fill="rgb(207,20,28)" rx="2" ry="2" /> +<text x="745.62" y="10351.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (12 samples, 0.44%)</title><rect x="725.3" y="9957" width="5.2" height="15.0" fill="rgb(210,222,29)" rx="2" ry="2" /> +<text x="728.28" y="9967.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="1151.0" y="11077" width="0.4" height="15.0" fill="rgb(242,132,29)" rx="2" ry="2" /> +<text x="1153.98" y="11087.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (3 samples, 0.11%)</title><rect x="542.3" y="10309" width="1.3" height="15.0" fill="rgb(232,146,40)" rx="2" ry="2" /> +<text x="545.34" y="10319.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doStoreI32 (1 samples, 0.04%)</title><rect x="385.8" y="9301" width="0.5" height="15.0" fill="rgb(242,87,17)" rx="2" ry="2" /> +<text x="388.85" y="9311.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (562 samples, 20.65%)</title><rect x="246.7" y="10485" width="243.6" height="15.0" fill="rgb(254,25,32)" rx="2" ry="2" /> +<text x="249.69" y="10495.5" >Nsfisis\Waddiwasi\Execution\Runt..</text> +</g> +<g > +<title><unknown> (1 samples, 0.04%)</title><rect x="726.1" y="9797" width="0.5" height="15.0" fill="rgb(224,202,3)" rx="2" ry="2" /> +<text x="729.15" y="9807.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="733.5" y="9253" width="0.5" height="15.0" fill="rgb(210,115,9)" rx="2" ry="2" /> +<text x="736.52" y="9263.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (2 samples, 0.07%)</title><rect x="469.9" y="10005" width="0.9" height="15.0" fill="rgb(252,47,22)" rx="2" ry="2" /> +<text x="472.95" y="10015.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (3 samples, 0.11%)</title><rect x="385.0" y="9397" width="1.3" height="15.0" fill="rgb(254,7,53)" rx="2" ry="2" /> +<text x="387.98" y="9407.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\MemInst::storeByte (2 samples, 0.07%)</title><rect x="159.6" y="11141" width="0.8" height="15.0" fill="rgb(220,18,14)" rx="2" ry="2" /> +<text x="162.56" y="11151.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="320.8" y="9541" width="0.5" height="15.0" fill="rgb(248,87,3)" rx="2" ry="2" /> +<text x="323.82" y="9551.5" ></text> +</g> +<g > +<title><unknown> (1 samples, 0.04%)</title><rect x="857.5" y="10245" width="0.4" height="15.0" fill="rgb(226,33,40)" rx="2" ry="2" /> +<text x="860.50" y="10255.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (1 samples, 0.04%)</title><rect x="740.0" y="10421" width="0.5" height="15.0" fill="rgb(238,227,21)" rx="2" ry="2" /> +<text x="743.02" y="10431.5" ></text> +</g> +<g > +<title><unknown> (2 samples, 0.07%)</title><rect x="1021.4" y="8341" width="0.8" height="15.0" fill="rgb(207,186,23)" rx="2" ry="2" /> +<text x="1024.37" y="8351.5" ></text> +</g> +<g > +<title><unknown> (1 samples, 0.04%)</title><rect x="1021.8" y="1477" width="0.4" height="15.0" fill="rgb(237,180,22)" rx="2" ry="2" /> +<text x="1024.80" y="1487.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (1 samples, 0.04%)</title><rect x="536.3" y="9973" width="0.4" height="15.0" fill="rgb(235,198,0)" rx="2" ry="2" /> +<text x="539.27" y="9983.5" ></text> +</g> +<g > +<title><unknown> (1 samples, 0.04%)</title><rect x="779.9" y="10325" width="0.4" height="15.0" fill="rgb(232,29,16)" rx="2" ry="2" /> +<text x="782.90" y="10335.5" ></text> +</g> +<g > +<title><unknown> (2 samples, 0.07%)</title><rect x="1021.4" y="7717" width="0.8" height="15.0" fill="rgb(219,99,14)" rx="2" ry="2" /> +<text x="1024.37" y="7727.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="1067.8" y="10693" width="0.4" height="15.0" fill="rgb(245,186,8)" rx="2" ry="2" /> +<text x="1070.75" y="10703.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="489.0" y="9893" width="0.5" height="15.0" fill="rgb(216,189,29)" rx="2" ry="2" /> +<text x="492.02" y="9903.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="489.9" y="10037" width="0.4" height="15.0" fill="rgb(226,50,50)" rx="2" ry="2" /> +<text x="492.89" y="10047.5" ></text> +</g> +<g > +<title><unknown> (2 samples, 0.07%)</title><rect x="1021.4" y="6453" width="0.8" height="15.0" fill="rgb(239,37,0)" rx="2" ry="2" /> +<text x="1024.37" y="6463.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="238.9" y="10453" width="0.4" height="15.0" fill="rgb(216,129,31)" rx="2" ry="2" /> +<text x="241.89" y="10463.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="318.2" y="9557" width="0.5" height="15.0" fill="rgb(222,76,9)" rx="2" ry="2" /> +<text x="321.22" y="9567.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (2 samples, 0.07%)</title><rect x="438.3" y="9717" width="0.9" height="15.0" fill="rgb(226,31,37)" rx="2" ry="2" /> +<text x="441.30" y="9727.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (1 samples, 0.04%)</title><rect x="870.1" y="8373" width="0.4" height="15.0" fill="rgb(230,212,5)" rx="2" ry="2" /> +<text x="873.07" y="8383.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="730.9" y="9893" width="0.5" height="15.0" fill="rgb(254,76,1)" rx="2" ry="2" /> +<text x="733.92" y="9903.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (7 samples, 0.26%)</title><rect x="735.3" y="10581" width="3.0" height="15.0" fill="rgb(230,49,16)" rx="2" ry="2" /> +<text x="738.25" y="10591.5" ></text> +</g> +<g > +<title><unknown> (1 samples, 0.04%)</title><rect x="726.1" y="9845" width="0.5" height="15.0" fill="rgb(238,29,48)" rx="2" ry="2" /> +<text x="729.15" y="9855.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="491.6" y="10453" width="0.5" height="15.0" fill="rgb(250,59,40)" rx="2" ry="2" /> +<text x="494.62" y="10463.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (289 samples, 10.62%)</title><rect x="742.6" y="10773" width="125.3" height="15.0" fill="rgb(210,204,45)" rx="2" ry="2" /> +<text x="745.62" y="10783.5" >Nsfisis\Waddiwa..</text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (3 samples, 0.11%)</title><rect x="289.6" y="9509" width="1.3" height="15.0" fill="rgb(215,215,41)" rx="2" ry="2" /> +<text x="292.61" y="9519.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Stack::pushValue (1 samples, 0.04%)</title><rect x="867.0" y="10453" width="0.5" height="15.0" fill="rgb(209,222,39)" rx="2" ry="2" /> +<text x="870.04" y="10463.5" ></text> +</g> +<g > +<title><unknown> (2 samples, 0.07%)</title><rect x="1021.4" y="7829" width="0.8" height="15.0" fill="rgb(216,60,9)" rx="2" ry="2" /> +<text x="1024.37" y="7839.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (4 samples, 0.15%)</title><rect x="732.2" y="10485" width="1.8" height="15.0" fill="rgb(225,147,23)" rx="2" ry="2" /> +<text x="735.22" y="10495.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (6 samples, 0.22%)</title><rect x="544.5" y="10421" width="2.6" height="15.0" fill="rgb(235,91,7)" rx="2" ry="2" /> +<text x="547.51" y="10431.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (1 samples, 0.04%)</title><rect x="331.2" y="9861" width="0.5" height="15.0" fill="rgb(253,192,19)" rx="2" ry="2" /> +<text x="334.23" y="9871.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (18 samples, 0.66%)</title><rect x="351.6" y="9637" width="7.8" height="15.0" fill="rgb(234,72,43)" rx="2" ry="2" /> +<text x="354.60" y="9647.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="720.1" y="9877" width="0.4" height="15.0" fill="rgb(240,78,35)" rx="2" ry="2" /> +<text x="723.08" y="9887.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="290.9" y="9669" width="0.4" height="15.0" fill="rgb(243,61,22)" rx="2" ry="2" /> +<text x="293.91" y="9679.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="497.3" y="9989" width="0.4" height="15.0" fill="rgb(219,97,6)" rx="2" ry="2" /> +<text x="500.26" y="9999.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (3 samples, 0.11%)</title><rect x="385.0" y="9525" width="1.3" height="15.0" fill="rgb(238,31,40)" rx="2" ry="2" /> +<text x="387.98" y="9535.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (1 samples, 0.04%)</title><rect x="483.8" y="9781" width="0.5" height="15.0" fill="rgb(223,59,16)" rx="2" ry="2" /> +<text x="486.82" y="9791.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (63 samples, 2.31%)</title><rect x="749.1" y="10405" width="27.3" height="15.0" fill="rgb(224,73,9)" rx="2" ry="2" /> +<text x="752.13" y="10415.5" >N..</text> +</g> +<g > +<title><unknown> (1 samples, 0.04%)</title><rect x="1021.8" y="1269" width="0.4" height="15.0" fill="rgb(253,99,26)" rx="2" ry="2" /> +<text x="1024.80" y="1279.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="533.2" y="10053" width="0.5" height="15.0" fill="rgb(235,50,30)" rx="2" ry="2" /> +<text x="536.24" y="10063.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="487.7" y="9733" width="0.5" height="15.0" fill="rgb(244,123,17)" rx="2" ry="2" /> +<text x="490.72" y="9743.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="325.2" y="9189" width="0.4" height="15.0" fill="rgb(207,95,29)" rx="2" ry="2" /> +<text x="328.16" y="9199.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (54 samples, 1.98%)</title><rect x="753.0" y="10293" width="23.4" height="15.0" fill="rgb(206,175,4)" rx="2" ry="2" /> +<text x="756.03" y="10303.5" >N..</text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="1137.5" y="11077" width="0.5" height="15.0" fill="rgb(218,193,4)" rx="2" ry="2" /> +<text x="1140.55" y="11087.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="497.3" y="10069" width="0.4" height="15.0" fill="rgb(205,141,25)" rx="2" ry="2" /> +<text x="500.26" y="10079.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (9 samples, 0.33%)</title><rect x="498.6" y="10181" width="3.9" height="15.0" fill="rgb(206,199,48)" rx="2" ry="2" /> +<text x="501.56" y="10191.5" ></text> +</g> +<g > +<title>print_r (7 samples, 0.26%)</title><rect x="160.4" y="11125" width="3.1" height="15.0" fill="rgb(222,133,37)" rx="2" ry="2" /> +<text x="163.43" y="11135.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (2 samples, 0.07%)</title><rect x="496.0" y="10213" width="0.8" height="15.0" fill="rgb(220,62,2)" rx="2" ry="2" /> +<text x="498.96" y="10223.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (28 samples, 1.03%)</title><rect x="782.5" y="10437" width="12.1" height="15.0" fill="rgb(253,189,3)" rx="2" ry="2" /> +<text x="785.51" y="10447.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="870.1" y="9109" width="0.4" height="15.0" fill="rgb(214,118,41)" rx="2" ry="2" /> +<text x="873.07" y="9119.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (3 samples, 0.11%)</title><rect x="316.1" y="9493" width="1.3" height="15.0" fill="rgb(230,133,21)" rx="2" ry="2" /> +<text x="319.05" y="9503.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="1071.7" y="11061" width="0.4" height="15.0" fill="rgb(221,13,12)" rx="2" ry="2" /> +<text x="1074.65" y="11071.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (9 samples, 0.33%)</title><rect x="441.8" y="9685" width="3.9" height="15.0" fill="rgb(245,187,23)" rx="2" ry="2" /> +<text x="444.77" y="9695.5" ></text> +</g> +<g > +<title><unknown> (2 samples, 0.07%)</title><rect x="1021.4" y="8421" width="0.8" height="15.0" fill="rgb(235,121,50)" rx="2" ry="2" /> +<text x="1024.37" y="8431.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (3 samples, 0.11%)</title><rect x="869.6" y="10101" width="1.3" height="15.0" fill="rgb(249,62,2)" rx="2" ry="2" /> +<text x="872.64" y="10111.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="329.1" y="9717" width="0.4" height="15.0" fill="rgb(218,187,47)" rx="2" ry="2" /> +<text x="332.06" y="9727.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (290 samples, 10.65%)</title><rect x="742.6" y="10853" width="125.7" height="15.0" fill="rgb(208,136,19)" rx="2" ry="2" /> +<text x="745.62" y="10863.5" >Nsfisis\Waddiwa..</text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (1 samples, 0.04%)</title><rect x="544.1" y="10405" width="0.4" height="15.0" fill="rgb(232,224,40)" rx="2" ry="2" /> +<text x="547.08" y="10415.5" ></text> +</g> +<g > +<title><unknown> (1 samples, 0.04%)</title><rect x="1021.8" y="405" width="0.4" height="15.0" fill="rgb(240,127,9)" rx="2" ry="2" /> +<text x="1024.80" y="415.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Stack::popValue (1 samples, 0.04%)</title><rect x="848.4" y="10197" width="0.4" height="15.0" fill="rgb(221,124,50)" rx="2" ry="2" /> +<text x="851.40" y="10207.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (11 samples, 0.40%)</title><rect x="368.9" y="9845" width="4.8" height="15.0" fill="rgb(206,127,38)" rx="2" ry="2" /> +<text x="371.94" y="9855.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (241 samples, 8.85%)</title><rect x="547.1" y="10085" width="104.5" height="15.0" fill="rgb(223,142,9)" rx="2" ry="2" /> +<text x="550.11" y="10095.5" >Nsfisis\Wadd..</text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (6 samples, 0.22%)</title><rect x="738.7" y="10965" width="2.6" height="15.0" fill="rgb(233,67,24)" rx="2" ry="2" /> +<text x="741.72" y="10975.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (4 samples, 0.15%)</title><rect x="732.2" y="10341" width="1.8" height="15.0" fill="rgb(254,5,27)" rx="2" ry="2" /> +<text x="735.22" y="10351.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="487.7" y="9765" width="0.5" height="15.0" fill="rgb(233,210,12)" rx="2" ry="2" /> +<text x="490.72" y="9775.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="502.9" y="10325" width="0.4" height="15.0" fill="rgb(205,130,0)" rx="2" ry="2" /> +<text x="505.89" y="10335.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="734.0" y="9925" width="0.4" height="15.0" fill="rgb(234,101,28)" rx="2" ry="2" /> +<text x="736.95" y="9935.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="730.9" y="9989" width="0.5" height="15.0" fill="rgb(251,43,48)" rx="2" ry="2" /> +<text x="733.92" y="9999.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (5 samples, 0.18%)</title><rect x="442.2" y="9461" width="2.2" height="15.0" fill="rgb(224,42,53)" rx="2" ry="2" /> +<text x="445.20" y="9471.5" ></text> +</g> +<g > +<title><unknown> (2 samples, 0.07%)</title><rect x="1021.4" y="10021" width="0.8" height="15.0" fill="rgb(209,74,34)" rx="2" ry="2" /> +<text x="1024.37" y="10031.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (1 samples, 0.04%)</title><rect x="739.2" y="10613" width="0.4" height="15.0" fill="rgb(229,2,54)" rx="2" ry="2" /> +<text x="742.16" y="10623.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (20 samples, 0.73%)</title><rect x="1103.7" y="11045" width="8.7" height="15.0" fill="rgb(237,194,24)" rx="2" ry="2" /> +<text x="1106.73" y="11055.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="291.3" y="9621" width="0.5" height="15.0" fill="rgb(234,85,31)" rx="2" ry="2" /> +<text x="294.34" y="9631.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeHostFunc (5 samples, 0.18%)</title><rect x="868.8" y="10853" width="2.1" height="15.0" fill="rgb(236,167,36)" rx="2" ry="2" /> +<text x="871.77" y="10863.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (2 samples, 0.07%)</title><rect x="440.9" y="9589" width="0.9" height="15.0" fill="rgb(243,62,18)" rx="2" ry="2" /> +<text x="443.90" y="9599.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Stack::popI32 (1 samples, 0.04%)</title><rect x="516.3" y="10165" width="0.5" height="15.0" fill="rgb(211,81,43)" rx="2" ry="2" /> +<text x="519.33" y="10175.5" ></text> +</g> +<g > +<title><unknown> (1 samples, 0.04%)</title><rect x="1021.8" y="789" width="0.4" height="15.0" fill="rgb(243,161,24)" rx="2" ry="2" /> +<text x="1024.80" y="799.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (9 samples, 0.33%)</title><rect x="441.8" y="9669" width="3.9" height="15.0" fill="rgb(222,207,34)" rx="2" ry="2" /> +<text x="444.77" y="9679.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (5 samples, 0.18%)</title><rect x="240.6" y="10885" width="2.2" height="15.0" fill="rgb(224,158,24)" rx="2" ry="2" /> +<text x="243.62" y="10895.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="870.1" y="9237" width="0.4" height="15.0" fill="rgb(208,201,33)" rx="2" ry="2" /> +<text x="873.07" y="9247.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="734.0" y="9957" width="0.4" height="15.0" fill="rgb(212,148,19)" rx="2" ry="2" /> +<text x="736.95" y="9967.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="291.3" y="9685" width="0.5" height="15.0" fill="rgb(229,75,40)" rx="2" ry="2" /> +<text x="294.34" y="9695.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (15 samples, 0.55%)</title><rect x="379.8" y="9605" width="6.5" height="15.0" fill="rgb(228,136,47)" rx="2" ry="2" /> +<text x="382.78" y="9615.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="484.3" y="9605" width="0.4" height="15.0" fill="rgb(214,150,42)" rx="2" ry="2" /> +<text x="487.25" y="9615.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (1 samples, 0.04%)</title><rect x="443.1" y="8885" width="0.4" height="15.0" fill="rgb(254,103,46)" rx="2" ry="2" /> +<text x="446.07" y="8895.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (1 samples, 0.04%)</title><rect x="516.8" y="10213" width="0.4" height="15.0" fill="rgb(215,179,25)" rx="2" ry="2" /> +<text x="519.77" y="10223.5" ></text> +</g> +<g > +<title><unknown> (1 samples, 0.04%)</title><rect x="1021.8" y="3765" width="0.4" height="15.0" fill="rgb(230,150,29)" rx="2" ry="2" /> +<text x="1024.80" y="3775.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (3 samples, 0.11%)</title><rect x="492.5" y="10437" width="1.3" height="15.0" fill="rgb(253,169,7)" rx="2" ry="2" /> +<text x="495.49" y="10447.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="244.5" y="10309" width="0.5" height="15.0" fill="rgb(253,190,45)" rx="2" ry="2" /> +<text x="247.53" y="10319.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (5 samples, 0.18%)</title><rect x="265.8" y="9509" width="2.1" height="15.0" fill="rgb(214,182,38)" rx="2" ry="2" /> +<text x="268.77" y="9519.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (4 samples, 0.15%)</title><rect x="869.2" y="10245" width="1.7" height="15.0" fill="rgb(219,47,52)" rx="2" ry="2" /> +<text x="872.21" y="10255.5" ></text> +</g> +<g > +<title>count (1 samples, 0.04%)</title><rect x="217.2" y="11141" width="0.4" height="15.0" fill="rgb(234,130,29)" rx="2" ry="2" /> +<text x="220.22" y="11151.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (2 samples, 0.07%)</title><rect x="545.8" y="10341" width="0.9" height="15.0" fill="rgb(216,114,31)" rx="2" ry="2" /> +<text x="548.81" y="10351.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="849.7" y="10101" width="0.4" height="15.0" fill="rgb(217,136,45)" rx="2" ry="2" /> +<text x="852.70" y="10111.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (5 samples, 0.18%)</title><rect x="495.5" y="10485" width="2.2" height="15.0" fill="rgb(224,41,20)" rx="2" ry="2" /> +<text x="498.53" y="10495.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\BinaryFormat\Decoder::{closure}(/home/ken/src/php-waddiwasi/src/BinaryFormat/Decoder.php:524-557) (7 samples, 0.26%)</title><rect x="10.4" y="11173" width="3.1" height="15.0" fill="rgb(207,158,41)" rx="2" ry="2" /> +<text x="13.43" y="11183.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (5 samples, 0.18%)</title><rect x="868.8" y="10965" width="2.1" height="15.0" fill="rgb(221,176,0)" rx="2" ry="2" /> +<text x="871.77" y="10975.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="424.4" y="8997" width="0.5" height="15.0" fill="rgb(216,49,19)" rx="2" ry="2" /> +<text x="427.43" y="9007.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="1152.7" y="11173" width="0.5" height="15.0" fill="rgb(229,114,23)" rx="2" ry="2" /> +<text x="1155.72" y="11183.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (2 samples, 0.07%)</title><rect x="464.7" y="10037" width="0.9" height="15.0" fill="rgb(239,73,13)" rx="2" ry="2" /> +<text x="467.75" y="10047.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (1,458 samples, 53.56%)</title><rect x="238.9" y="11205" width="632.0" height="15.0" fill="rgb(243,18,45)" rx="2" ry="2" /> +<text x="241.89" y="11215.5" >Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc</text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="489.9" y="10053" width="0.4" height="15.0" fill="rgb(218,186,16)" rx="2" ry="2" /> +<text x="492.89" y="10063.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (18 samples, 0.66%)</title><rect x="456.1" y="9701" width="7.8" height="15.0" fill="rgb(240,215,23)" rx="2" ry="2" /> +<text x="459.08" y="9711.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (5 samples, 0.18%)</title><rect x="483.4" y="9957" width="2.2" height="15.0" fill="rgb(205,181,41)" rx="2" ry="2" /> +<text x="486.39" y="9967.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (1 samples, 0.04%)</title><rect x="1035.2" y="11109" width="0.5" height="15.0" fill="rgb(219,110,7)" rx="2" ry="2" /> +<text x="1038.24" y="11119.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (3 samples, 0.11%)</title><rect x="442.2" y="9157" width="1.3" height="15.0" fill="rgb(250,34,3)" rx="2" ry="2" /> +<text x="445.20" y="9167.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (6 samples, 0.22%)</title><rect x="738.7" y="10949" width="2.6" height="15.0" fill="rgb(249,22,32)" rx="2" ry="2" /> +<text x="741.72" y="10959.5" ></text> +</g> +<g > +<title>assert (1 samples, 0.04%)</title><rect x="1069.9" y="11205" width="0.5" height="15.0" fill="rgb(215,30,7)" rx="2" ry="2" /> +<text x="1072.92" y="11215.5" ></text> +</g> +<g > +<title><unknown> (2 samples, 0.07%)</title><rect x="1021.4" y="7989" width="0.8" height="15.0" fill="rgb(205,43,4)" rx="2" ry="2" /> +<text x="1024.37" y="7999.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="739.2" y="10069" width="0.4" height="15.0" fill="rgb(249,19,14)" rx="2" ry="2" /> +<text x="742.16" y="10079.5" ></text> +</g> +<g > +<title><unknown> (10 samples, 0.37%)</title><rect x="1164.0" y="11237" width="4.3" height="15.0" fill="rgb(247,79,9)" rx="2" ry="2" /> +<text x="1166.99" y="11247.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (2 samples, 0.07%)</title><rect x="440.9" y="9621" width="0.9" height="15.0" fill="rgb(214,201,53)" rx="2" ry="2" /> +<text x="443.90" y="9631.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (28 samples, 1.03%)</title><rect x="854.0" y="10341" width="12.2" height="15.0" fill="rgb(232,125,0)" rx="2" ry="2" /> +<text x="857.03" y="10351.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="427.5" y="9557" width="0.4" height="15.0" fill="rgb(219,158,20)" rx="2" ry="2" /> +<text x="430.47" y="9567.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (3 samples, 0.11%)</title><rect x="536.7" y="10181" width="1.3" height="15.0" fill="rgb(233,43,18)" rx="2" ry="2" /> +<text x="539.71" y="10191.5" ></text> +</g> +<g > +<title><unknown> (1 samples, 0.04%)</title><rect x="1021.8" y="5733" width="0.4" height="15.0" fill="rgb(237,199,20)" rx="2" ry="2" /> +<text x="1024.80" y="5743.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="1067.8" y="10741" width="0.4" height="15.0" fill="rgb(224,42,21)" rx="2" ry="2" /> +<text x="1070.75" y="10751.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Stack::push (1 samples, 0.04%)</title><rect x="382.4" y="9509" width="0.4" height="15.0" fill="rgb(222,40,10)" rx="2" ry="2" /> +<text x="385.38" y="9519.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="453.5" y="9333" width="0.4" height="15.0" fill="rgb(224,37,54)" rx="2" ry="2" /> +<text x="456.48" y="9343.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (7 samples, 0.26%)</title><rect x="314.3" y="9525" width="3.1" height="15.0" fill="rgb(232,152,11)" rx="2" ry="2" /> +<text x="317.32" y="9535.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (2 samples, 0.07%)</title><rect x="810.7" y="10293" width="0.9" height="15.0" fill="rgb(208,93,35)" rx="2" ry="2" /> +<text x="813.68" y="10303.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (2 samples, 0.07%)</title><rect x="735.7" y="10421" width="0.9" height="15.0" fill="rgb(226,123,38)" rx="2" ry="2" /> +<text x="738.69" y="10431.5" ></text> +</g> +<g > +<title><unknown> (1 samples, 0.04%)</title><rect x="1094.6" y="11125" width="0.5" height="15.0" fill="rgb(223,86,24)" rx="2" ry="2" /> +<text x="1097.63" y="11135.5" ></text> +</g> +<g > +<title><unknown> (2 samples, 0.07%)</title><rect x="1021.4" y="6293" width="0.8" height="15.0" fill="rgb(235,83,3)" rx="2" ry="2" /> +<text x="1024.37" y="6303.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="453.5" y="9413" width="0.4" height="15.0" fill="rgb(219,108,47)" rx="2" ry="2" /> +<text x="456.48" y="9423.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (7 samples, 0.26%)</title><rect x="486.0" y="9973" width="3.0" height="15.0" fill="rgb(247,35,47)" rx="2" ry="2" /> +<text x="488.99" y="9983.5" ></text> +</g> +<g > +<title>print_r (1 samples, 0.04%)</title><rect x="641.2" y="9893" width="0.4" height="15.0" fill="rgb(217,222,31)" rx="2" ry="2" /> +<text x="644.18" y="9903.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="439.2" y="9605" width="0.4" height="15.0" fill="rgb(241,39,33)" rx="2" ry="2" /> +<text x="442.17" y="9615.5" ></text> +</g> +<g > +<title><unknown> (1 samples, 0.04%)</title><rect x="1021.8" y="1045" width="0.4" height="15.0" fill="rgb(217,216,47)" rx="2" ry="2" /> +<text x="1024.80" y="1055.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="744.4" y="10421" width="0.4" height="15.0" fill="rgb(240,10,10)" rx="2" ry="2" /> +<text x="747.36" y="10431.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (55 samples, 2.02%)</title><rect x="752.6" y="10309" width="23.8" height="15.0" fill="rgb(222,115,2)" rx="2" ry="2" /> +<text x="755.59" y="10319.5" >N..</text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (6 samples, 0.22%)</title><rect x="243.7" y="10549" width="2.6" height="15.0" fill="rgb(211,103,0)" rx="2" ry="2" /> +<text x="246.66" y="10559.5" ></text> +</g> +<g > +<title><unknown> (2 samples, 0.07%)</title><rect x="1021.4" y="9061" width="0.8" height="15.0" fill="rgb(254,108,53)" rx="2" ry="2" /> +<text x="1024.37" y="9071.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="453.5" y="9285" width="0.4" height="15.0" fill="rgb(205,53,8)" rx="2" ry="2" /> +<text x="456.48" y="9295.5" ></text> +</g> +<g > +<title><unknown> (1 samples, 0.04%)</title><rect x="1021.8" y="1637" width="0.4" height="15.0" fill="rgb(237,46,45)" rx="2" ry="2" /> +<text x="1024.80" y="1647.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="740.9" y="10549" width="0.4" height="15.0" fill="rgb(246,51,51)" rx="2" ry="2" /> +<text x="743.89" y="10559.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (4 samples, 0.15%)</title><rect x="732.2" y="10517" width="1.8" height="15.0" fill="rgb(227,34,36)" rx="2" ry="2" /> +<text x="735.22" y="10527.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (1 samples, 0.04%)</title><rect x="271.4" y="9781" width="0.4" height="15.0" fill="rgb(237,97,6)" rx="2" ry="2" /> +<text x="274.40" y="9791.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (192 samples, 7.05%)</title><rect x="345.1" y="9925" width="83.2" height="15.0" fill="rgb(216,73,31)" rx="2" ry="2" /> +<text x="348.10" y="9935.5" >Nsfisis\W..</text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (4 samples, 0.15%)</title><rect x="732.2" y="10469" width="1.8" height="15.0" fill="rgb(227,114,48)" rx="2" ry="2" /> +<text x="735.22" y="10479.5" ></text> +</g> +<g > +<title><unknown> (2 samples, 0.07%)</title><rect x="1021.4" y="7237" width="0.8" height="15.0" fill="rgb(211,184,39)" rx="2" ry="2" /> +<text x="1024.37" y="7247.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (57 samples, 2.09%)</title><rect x="375.0" y="9733" width="24.7" height="15.0" fill="rgb(244,208,19)" rx="2" ry="2" /> +<text x="378.01" y="9743.5" >N..</text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="758.2" y="10021" width="0.5" height="15.0" fill="rgb(215,157,21)" rx="2" ry="2" /> +<text x="761.23" y="10031.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="468.2" y="9733" width="0.4" height="15.0" fill="rgb(240,93,7)" rx="2" ry="2" /> +<text x="471.21" y="9743.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="331.2" y="9525" width="0.5" height="15.0" fill="rgb(227,112,11)" rx="2" ry="2" /> +<text x="334.23" y="9535.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (7 samples, 0.26%)</title><rect x="533.7" y="10165" width="3.0" height="15.0" fill="rgb(238,156,24)" rx="2" ry="2" /> +<text x="536.67" y="10175.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (290 samples, 10.65%)</title><rect x="742.6" y="10885" width="125.7" height="15.0" fill="rgb(239,96,9)" rx="2" ry="2" /> +<text x="745.62" y="10895.5" >Nsfisis\Waddiwa..</text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (3 samples, 0.11%)</title><rect x="411.4" y="9317" width="1.3" height="15.0" fill="rgb(225,165,26)" rx="2" ry="2" /> +<text x="414.43" y="9327.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (3 samples, 0.11%)</title><rect x="304.8" y="9349" width="1.3" height="15.0" fill="rgb(212,23,17)" rx="2" ry="2" /> +<text x="307.78" y="9359.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (17 samples, 0.62%)</title><rect x="319.5" y="9653" width="7.4" height="15.0" fill="rgb(234,155,48)" rx="2" ry="2" /> +<text x="322.52" y="9663.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="652.0" y="10469" width="0.5" height="15.0" fill="rgb(240,89,8)" rx="2" ry="2" /> +<text x="655.02" y="10479.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="870.1" y="9205" width="0.4" height="15.0" fill="rgb(214,32,27)" rx="2" ry="2" /> +<text x="873.07" y="9215.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (7 samples, 0.26%)</title><rect x="735.3" y="10533" width="3.0" height="15.0" fill="rgb(242,120,32)" rx="2" ry="2" /> +<text x="738.25" y="10543.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (3 samples, 0.11%)</title><rect x="1066.9" y="10821" width="1.3" height="15.0" fill="rgb(245,100,52)" rx="2" ry="2" /> +<text x="1069.88" y="10831.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="844.1" y="10117" width="0.4" height="15.0" fill="rgb(216,43,2)" rx="2" ry="2" /> +<text x="847.06" y="10127.5" ></text> +</g> +<g > +<title><unknown> (1 samples, 0.04%)</title><rect x="1021.8" y="1701" width="0.4" height="15.0" fill="rgb(229,40,22)" rx="2" ry="2" /> +<text x="1024.80" y="1711.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="284.4" y="9653" width="0.4" height="15.0" fill="rgb(219,34,45)" rx="2" ry="2" /> +<text x="287.41" y="9663.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="238.9" y="10581" width="0.4" height="15.0" fill="rgb(217,47,23)" rx="2" ry="2" /> +<text x="241.89" y="10591.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (6 samples, 0.22%)</title><rect x="331.7" y="9861" width="2.6" height="15.0" fill="rgb(212,141,4)" rx="2" ry="2" /> +<text x="334.66" y="9871.5" ></text> +</g> +<g > +<title><unknown> (2 samples, 0.07%)</title><rect x="1021.4" y="10405" width="0.8" height="15.0" fill="rgb(235,187,16)" rx="2" ry="2" /> +<text x="1024.37" y="10415.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="738.3" y="10325" width="0.4" height="15.0" fill="rgb(254,127,0)" rx="2" ry="2" /> +<text x="741.29" y="10335.5" ></text> +</g> +<g > +<title><unknown> (1 samples, 0.04%)</title><rect x="1021.8" y="2261" width="0.4" height="15.0" fill="rgb(244,52,31)" rx="2" ry="2" /> +<text x="1024.80" y="2271.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="336.4" y="9989" width="0.5" height="15.0" fill="rgb(245,12,2)" rx="2" ry="2" /> +<text x="339.43" y="9999.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (3 samples, 0.11%)</title><rect x="310.9" y="9557" width="1.3" height="15.0" fill="rgb(208,62,38)" rx="2" ry="2" /> +<text x="313.85" y="9567.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="738.3" y="10581" width="0.4" height="15.0" fill="rgb(230,196,33)" rx="2" ry="2" /> +<text x="741.29" y="10591.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="331.2" y="9685" width="0.5" height="15.0" fill="rgb(253,171,19)" rx="2" ry="2" /> +<text x="334.23" y="9695.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="536.3" y="10005" width="0.4" height="15.0" fill="rgb(227,64,6)" rx="2" ry="2" /> +<text x="539.27" y="10015.5" ></text> +</g> +</g> +</svg> |
