diff options
Diffstat (limited to 'traces/20240313-0941.svg')
| -rw-r--r-- | traces/20240313-0941.svg | 21412 |
1 files changed, 21412 insertions, 0 deletions
diff --git a/traces/20240313-0941.svg b/traces/20240313-0941.svg new file mode 100644 index 0000000..0603438 --- /dev/null +++ b/traces/20240313-0941.svg @@ -0,0 +1,21412 @@ +<?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="3606" onload="init(evt)" viewBox="0 0 1200 3606" 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="3606.0" fill="url(#background)" /> +<text id="title" x="600.00" y="24" >Flame Graph</text> +<text id="details" x="10.00" y="3589" > </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="3589" > </text> +<g id="frames"> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (3 samples, 0.08%)</title><rect x="266.2" y="1781" width="1.0" height="15.0" fill="rgb(238,29,54)" rx="2" ry="2" /> +<text x="269.16" y="1791.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (2 samples, 0.06%)</title><rect x="260.5" y="1861" width="0.7" height="15.0" fill="rgb(208,227,44)" rx="2" ry="2" /> +<text x="263.54" y="1871.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.03%)</title><rect x="411.6" y="1653" width="0.3" height="15.0" fill="rgb(220,197,5)" rx="2" ry="2" /> +<text x="414.60" y="1663.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (4 samples, 0.11%)</title><rect x="283.7" y="1845" width="1.3" height="15.0" fill="rgb(240,73,40)" rx="2" ry="2" /> +<text x="286.68" y="1855.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.03%)</title><rect x="341.2" y="1941" width="0.3" height="15.0" fill="rgb(248,150,28)" rx="2" ry="2" /> +<text x="344.19" y="1951.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (22 samples, 0.62%)</title><rect x="801.3" y="2357" width="7.3" height="15.0" fill="rgb(228,217,20)" rx="2" ry="2" /> +<text x="804.29" y="2367.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (2 samples, 0.06%)</title><rect x="304.5" y="1797" width="0.7" height="15.0" fill="rgb(220,11,9)" rx="2" ry="2" /> +<text x="307.50" y="1807.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (3 samples, 0.08%)</title><rect x="399.0" y="2117" width="1.0" height="15.0" fill="rgb(250,208,48)" rx="2" ry="2" /> +<text x="402.04" y="2127.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (5 samples, 0.14%)</title><rect x="796.7" y="2117" width="1.6" height="15.0" fill="rgb(205,87,21)" rx="2" ry="2" /> +<text x="799.67" y="2127.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.03%)</title><rect x="702.8" y="2389" width="0.3" height="15.0" fill="rgb(230,117,7)" rx="2" ry="2" /> +<text x="705.80" y="2399.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.03%)</title><rect x="848.2" y="2869" width="0.4" height="15.0" fill="rgb(239,187,21)" rx="2" ry="2" /> +<text x="851.23" y="2879.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.03%)</title><rect x="648.6" y="1461" width="0.3" height="15.0" fill="rgb(218,161,19)" rx="2" ry="2" /> +<text x="651.59" y="1471.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.03%)</title><rect x="307.1" y="1685" width="0.4" height="15.0" fill="rgb(227,105,48)" rx="2" ry="2" /> +<text x="310.15" y="1695.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.03%)</title><rect x="246.0" y="2901" width="0.3" height="15.0" fill="rgb(251,49,1)" rx="2" ry="2" /> +<text x="249.00" y="2911.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Stack::pushI32 (2 samples, 0.06%)</title><rect x="939.5" y="2517" width="0.6" height="15.0" fill="rgb(236,68,31)" rx="2" ry="2" /> +<text x="942.46" y="2527.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (3 samples, 0.08%)</title><rect x="848.6" y="3397" width="1.0" height="15.0" fill="rgb(219,215,32)" rx="2" ry="2" /> +<text x="851.56" y="3407.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.03%)</title><rect x="265.2" y="1685" width="0.3" height="15.0" fill="rgb(246,224,5)" rx="2" ry="2" /> +<text x="268.17" y="1695.5" ></text> +</g> +<g > +<title>{closure}(/home/ken/src/php-waddiwasi/examples/php-on-wasm/php-wasm.php:300-307) (1 samples, 0.03%)</title><rect x="955.3" y="2773" width="0.4" height="15.0" fill="rgb(210,123,20)" rx="2" ry="2" /> +<text x="958.32" y="2783.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (322 samples, 9.02%)</title><rect x="849.6" y="3445" width="106.4" height="15.0" fill="rgb(207,160,17)" rx="2" ry="2" /> +<text x="852.55" y="3455.5" >Nsfisis\Waddi..</text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (3 samples, 0.08%)</title><rect x="301.9" y="1765" width="1.0" height="15.0" fill="rgb(222,133,36)" rx="2" ry="2" /> +<text x="304.86" y="1775.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (2 samples, 0.06%)</title><rect x="697.2" y="2293" width="0.6" height="15.0" fill="rgb(219,193,9)" rx="2" ry="2" /> +<text x="700.18" y="2303.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.03%)</title><rect x="249.6" y="2709" width="0.4" height="15.0" fill="rgb(211,123,3)" rx="2" ry="2" /> +<text x="252.64" y="2719.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (64 samples, 1.79%)</title><rect x="857.5" y="2533" width="21.1" height="15.0" fill="rgb(238,80,3)" rx="2" ry="2" /> +<text x="860.48" y="2543.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="1159.3" y="3397" width="0.3" height="15.0" fill="rgb(220,213,26)" rx="2" ry="2" /> +<text x="1162.26" y="3407.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (4 samples, 0.11%)</title><rect x="954.7" y="3077" width="1.3" height="15.0" fill="rgb(222,192,25)" rx="2" ry="2" /> +<text x="957.66" y="3087.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (143 samples, 4.01%)</title><rect x="272.4" y="2245" width="47.3" height="15.0" fill="rgb(237,120,14)" rx="2" ry="2" /> +<text x="275.44" y="2255.5" >Nsfi..</text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="808.6" y="2245" width="0.3" height="15.0" fill="rgb(209,9,27)" rx="2" ry="2" /> +<text x="811.57" y="2255.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="851.2" y="2213" width="0.3" height="15.0" fill="rgb(240,169,35)" rx="2" ry="2" /> +<text x="854.20" y="2223.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doLoadI32 (1 samples, 0.03%)</title><rect x="941.8" y="2645" width="0.3" height="15.0" fill="rgb(225,161,6)" rx="2" ry="2" /> +<text x="944.77" y="2655.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (12 samples, 0.34%)</title><rect x="345.2" y="2037" width="3.9" height="15.0" fill="rgb(222,73,31)" rx="2" ry="2" /> +<text x="348.16" y="2047.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="1166.2" y="3461" width="0.3" height="15.0" fill="rgb(217,112,45)" rx="2" ry="2" /> +<text x="1169.20" y="3471.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="391.1" y="1957" width="0.3" height="15.0" fill="rgb(254,159,24)" rx="2" ry="2" /> +<text x="394.10" y="1967.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (328 samples, 9.19%)</title><rect x="676.0" y="2949" width="108.4" height="15.0" fill="rgb(226,110,28)" rx="2" ry="2" /> +<text x="679.02" y="2959.5" >Nsfisis\Waddi..</text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (8 samples, 0.22%)</title><rect x="658.2" y="2149" width="2.6" height="15.0" fill="rgb(219,156,16)" rx="2" ry="2" /> +<text x="661.17" y="2159.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (4 samples, 0.11%)</title><rect x="269.8" y="2085" width="1.3" height="15.0" fill="rgb(222,92,19)" rx="2" ry="2" /> +<text x="272.80" y="2095.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (1 samples, 0.03%)</title><rect x="954.3" y="3157" width="0.4" height="15.0" fill="rgb(233,68,38)" rx="2" ry="2" /> +<text x="957.33" y="3167.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="661.5" y="2149" width="0.3" height="15.0" fill="rgb(247,22,6)" rx="2" ry="2" /> +<text x="664.48" y="2159.5" ></text> +</g> +<g > +<title><unknown> (1 samples, 0.03%)</title><rect x="929.9" y="2517" width="0.3" height="15.0" fill="rgb(206,142,23)" rx="2" ry="2" /> +<text x="932.87" y="2527.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (1 samples, 0.03%)</title><rect x="846.6" y="2965" width="0.3" height="15.0" fill="rgb(218,173,0)" rx="2" ry="2" /> +<text x="849.58" y="2975.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="298.6" y="1573" width="0.3" height="15.0" fill="rgb(211,39,22)" rx="2" ry="2" /> +<text x="301.55" y="1583.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="391.4" y="2053" width="0.4" height="15.0" fill="rgb(222,229,50)" rx="2" ry="2" /> +<text x="394.43" y="2063.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (2 samples, 0.06%)</title><rect x="1085.9" y="3381" width="0.6" height="15.0" fill="rgb(252,99,31)" rx="2" ry="2" /> +<text x="1088.88" y="3391.5" ></text> +</g> +<g > +<title><unknown> (1 samples, 0.03%)</title><rect x="1159.3" y="3349" width="0.3" height="15.0" fill="rgb(234,3,48)" rx="2" ry="2" /> +<text x="1162.26" y="3359.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (683 samples, 19.13%)</title><rect x="422.8" y="1061" width="225.8" height="15.0" fill="rgb(239,119,34)" rx="2" ry="2" /> +<text x="425.83" y="1071.5" >Nsfisis\Waddiwasi\Execution\R..</text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (3 samples, 0.08%)</title><rect x="650.2" y="2181" width="1.0" height="15.0" fill="rgb(222,130,42)" rx="2" ry="2" /> +<text x="653.24" y="2191.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (316 samples, 8.85%)</title><rect x="849.6" y="3093" width="104.4" height="15.0" fill="rgb(205,114,34)" rx="2" ry="2" /> +<text x="852.55" y="3103.5" >Nsfisis\Wadd..</text> +</g> +<g > +<title>count (1 samples, 0.03%)</title><rect x="894.8" y="2773" width="0.4" height="15.0" fill="rgb(209,221,2)" rx="2" ry="2" /> +<text x="897.83" y="2783.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (4 samples, 0.11%)</title><rect x="954.7" y="3189" width="1.3" height="15.0" fill="rgb(249,188,40)" rx="2" ry="2" /> +<text x="957.66" y="3199.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (1 samples, 0.03%)</title><rect x="847.2" y="2693" width="0.4" height="15.0" fill="rgb(228,51,45)" rx="2" ry="2" /> +<text x="850.24" y="2703.5" ></text> +</g> +<g > +<title><unknown> (1 samples, 0.03%)</title><rect x="174.9" y="3413" width="0.4" height="15.0" fill="rgb(233,205,2)" rx="2" ry="2" /> +<text x="177.94" y="3423.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (1 samples, 0.03%)</title><rect x="946.4" y="2453" width="0.3" height="15.0" fill="rgb(215,147,25)" rx="2" ry="2" /> +<text x="949.40" y="2463.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.03%)</title><rect x="249.3" y="2869" width="0.3" height="15.0" fill="rgb(233,31,25)" rx="2" ry="2" /> +<text x="252.31" y="2879.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="843.9" y="2917" width="0.4" height="15.0" fill="rgb(219,58,44)" rx="2" ry="2" /> +<text x="846.93" y="2927.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="952.3" y="2405" width="0.4" height="15.0" fill="rgb(219,105,23)" rx="2" ry="2" /> +<text x="955.35" y="2415.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="938.8" y="2501" width="0.3" height="15.0" fill="rgb(208,199,51)" rx="2" ry="2" /> +<text x="941.80" y="2511.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="1077.3" y="3365" width="0.3" height="15.0" fill="rgb(243,63,35)" rx="2" ry="2" /> +<text x="1080.29" y="3375.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (2 samples, 0.06%)</title><rect x="1104.1" y="2821" width="0.6" height="15.0" fill="rgb(242,168,24)" rx="2" ry="2" /> +<text x="1107.06" y="2831.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (13 samples, 0.36%)</title><rect x="337.6" y="2069" width="4.3" height="15.0" fill="rgb(211,24,22)" rx="2" ry="2" /> +<text x="340.56" y="2079.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (4 samples, 0.11%)</title><rect x="844.6" y="2917" width="1.3" height="15.0" fill="rgb(237,218,13)" rx="2" ry="2" /> +<text x="847.59" y="2927.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (2 samples, 0.06%)</title><rect x="348.1" y="1909" width="0.7" height="15.0" fill="rgb(232,177,52)" rx="2" ry="2" /> +<text x="351.13" y="1919.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (6 samples, 0.17%)</title><rect x="849.6" y="2661" width="1.9" height="15.0" fill="rgb(207,84,50)" rx="2" ry="2" /> +<text x="852.55" y="2671.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.03%)</title><rect x="650.2" y="2101" width="0.4" height="15.0" fill="rgb(236,132,44)" rx="2" ry="2" /> +<text x="653.24" y="2111.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (683 samples, 19.13%)</title><rect x="422.8" y="1093" width="225.8" height="15.0" fill="rgb(244,29,43)" rx="2" ry="2" /> +<text x="425.83" y="1103.5" >Nsfisis\Waddiwasi\Execution\R..</text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (19 samples, 0.53%)</title><rect x="1131.2" y="3349" width="6.2" height="15.0" fill="rgb(252,110,48)" rx="2" ry="2" /> +<text x="1134.17" y="3359.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (3 samples, 0.08%)</title><rect x="837.7" y="2181" width="0.9" height="15.0" fill="rgb(217,17,27)" rx="2" ry="2" /> +<text x="840.65" y="2191.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.03%)</title><rect x="315.1" y="2037" width="0.3" height="15.0" fill="rgb(207,199,3)" rx="2" ry="2" /> +<text x="318.08" y="2047.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (31 samples, 0.87%)</title><rect x="293.3" y="1989" width="10.2" height="15.0" fill="rgb(237,217,39)" rx="2" ry="2" /> +<text x="296.27" y="1999.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (3 samples, 0.08%)</title><rect x="1116.6" y="3461" width="1.0" height="15.0" fill="rgb(244,1,26)" rx="2" ry="2" /> +<text x="1119.62" y="3471.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (3 samples, 0.08%)</title><rect x="841.9" y="2821" width="1.0" height="15.0" fill="rgb(205,200,17)" rx="2" ry="2" /> +<text x="844.95" y="2831.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (11 samples, 0.31%)</title><rect x="692.9" y="2517" width="3.6" height="15.0" fill="rgb(249,173,19)" rx="2" ry="2" /> +<text x="695.88" y="2527.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Stack::popI32 (1 samples, 0.03%)</title><rect x="661.1" y="2165" width="0.4" height="15.0" fill="rgb(236,183,3)" rx="2" ry="2" /> +<text x="664.15" y="2175.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (8 samples, 0.22%)</title><rect x="658.2" y="2117" width="2.6" height="15.0" fill="rgb(232,133,2)" rx="2" ry="2" /> +<text x="661.17" y="2127.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.03%)</title><rect x="838.6" y="2037" width="0.4" height="15.0" fill="rgb(210,172,9)" rx="2" ry="2" /> +<text x="841.64" y="2047.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (3 samples, 0.08%)</title><rect x="399.0" y="2021" width="1.0" height="15.0" fill="rgb(215,150,27)" rx="2" ry="2" /> +<text x="402.04" y="2031.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (19 samples, 0.53%)</title><rect x="410.9" y="2261" width="6.3" height="15.0" fill="rgb(240,229,36)" rx="2" ry="2" /> +<text x="413.94" y="2271.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="262.2" y="1893" width="0.3" height="15.0" fill="rgb(234,187,44)" rx="2" ry="2" /> +<text x="265.20" y="1903.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="316.4" y="1445" width="0.3" height="15.0" fill="rgb(231,51,22)" rx="2" ry="2" /> +<text x="319.40" y="1455.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="695.9" y="2373" width="0.3" height="15.0" fill="rgb(222,91,2)" rx="2" ry="2" /> +<text x="698.85" y="2383.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.03%)</title><rect x="881.0" y="2517" width="0.3" height="15.0" fill="rgb(237,216,42)" rx="2" ry="2" /> +<text x="883.95" y="2527.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (2 samples, 0.06%)</title><rect x="669.4" y="2741" width="0.7" height="15.0" fill="rgb(225,8,6)" rx="2" ry="2" /> +<text x="672.41" y="2751.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.03%)</title><rect x="1165.2" y="3381" width="0.3" height="15.0" fill="rgb(225,128,52)" rx="2" ry="2" /> +<text x="1168.21" y="3391.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (328 samples, 9.19%)</title><rect x="676.0" y="2885" width="108.4" height="15.0" fill="rgb(243,120,40)" rx="2" ry="2" /> +<text x="679.02" y="2895.5" >Nsfisis\Waddi..</text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (8 samples, 0.22%)</title><rect x="672.4" y="2501" width="2.6" height="15.0" fill="rgb(251,50,6)" rx="2" ry="2" /> +<text x="675.39" y="2511.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::invokeByFuncAddr (317 samples, 8.88%)</title><rect x="849.6" y="3301" width="104.7" height="15.0" fill="rgb(239,194,6)" rx="2" ry="2" /> +<text x="852.55" y="3311.5" >Nsfisis\Wadd..</text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.03%)</title><rect x="363.7" y="1557" width="0.3" height="15.0" fill="rgb(240,183,41)" rx="2" ry="2" /> +<text x="366.67" y="1567.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="833.0" y="2181" width="0.4" height="15.0" fill="rgb(211,183,11)" rx="2" ry="2" /> +<text x="836.03" y="2191.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (180 samples, 5.04%)</title><rect x="784.4" y="2917" width="59.5" height="15.0" fill="rgb(227,220,14)" rx="2" ry="2" /> +<text x="787.44" y="2927.5" >Nsfisi..</text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="702.8" y="2533" width="0.3" height="15.0" fill="rgb(214,76,10)" rx="2" ry="2" /> +<text x="705.80" y="2543.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.03%)</title><rect x="893.5" y="2581" width="0.3" height="15.0" fill="rgb(227,123,0)" rx="2" ry="2" /> +<text x="896.51" y="2591.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.03%)</title><rect x="400.4" y="1813" width="0.3" height="15.0" fill="rgb(251,165,36)" rx="2" ry="2" /> +<text x="403.36" y="1823.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (1 samples, 0.03%)</title><rect x="404.7" y="1205" width="0.3" height="15.0" fill="rgb(207,183,3)" rx="2" ry="2" /> +<text x="407.66" y="1215.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="847.9" y="2565" width="0.3" height="15.0" fill="rgb(244,188,12)" rx="2" ry="2" /> +<text x="850.90" y="2575.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="669.4" y="2405" width="0.3" height="15.0" fill="rgb(254,225,48)" rx="2" ry="2" /> +<text x="672.41" y="2415.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (201 samples, 5.63%)</title><rect x="325.7" y="2181" width="66.4" height="15.0" fill="rgb(228,135,29)" rx="2" ry="2" /> +<text x="328.66" y="2191.5" >Nsfisis..</text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (1 samples, 0.03%)</title><rect x="267.5" y="1829" width="0.3" height="15.0" fill="rgb(219,32,4)" rx="2" ry="2" /> +<text x="270.48" y="1839.5" ></text> +</g> +<g > +<title><unknown> (1 samples, 0.03%)</title><rect x="870.4" y="1685" width="0.3" height="15.0" fill="rgb(226,53,34)" rx="2" ry="2" /> +<text x="873.38" y="1695.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.03%)</title><rect x="813.9" y="2261" width="0.3" height="15.0" fill="rgb(218,74,11)" rx="2" ry="2" /> +<text x="816.85" y="2271.5" ></text> +</g> +<g > +<title><unknown> (1 samples, 0.03%)</title><rect x="870.4" y="1765" width="0.3" height="15.0" fill="rgb(237,46,17)" rx="2" ry="2" /> +<text x="873.38" y="1775.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.03%)</title><rect x="951.4" y="2613" width="0.3" height="15.0" fill="rgb(241,42,53)" rx="2" ry="2" /> +<text x="954.36" y="2623.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (14 samples, 0.39%)</title><rect x="656.9" y="2181" width="4.6" height="15.0" fill="rgb(225,173,43)" rx="2" ry="2" /> +<text x="659.85" y="2191.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (685 samples, 19.19%)</title><rect x="422.2" y="1509" width="226.4" height="15.0" fill="rgb(224,38,41)" rx="2" ry="2" /> +<text x="425.17" y="1519.5" >Nsfisis\Waddiwasi\Execution\R..</text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.03%)</title><rect x="251.9" y="2677" width="0.4" height="15.0" fill="rgb(229,177,43)" rx="2" ry="2" /> +<text x="254.95" y="2687.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.03%)</title><rect x="401.0" y="1749" width="0.4" height="15.0" fill="rgb(239,163,8)" rx="2" ry="2" /> +<text x="404.02" y="1759.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (16 samples, 0.45%)</title><rect x="331.6" y="1957" width="5.3" height="15.0" fill="rgb(223,102,34)" rx="2" ry="2" /> +<text x="334.61" y="1967.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="947.1" y="2373" width="0.3" height="15.0" fill="rgb(240,137,36)" rx="2" ry="2" /> +<text x="950.06" y="2383.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (11 samples, 0.31%)</title><rect x="264.2" y="1957" width="3.6" height="15.0" fill="rgb(238,111,28)" rx="2" ry="2" /> +<text x="267.18" y="1967.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (5 samples, 0.14%)</title><rect x="649.6" y="2293" width="1.6" height="15.0" fill="rgb(220,146,19)" rx="2" ry="2" /> +<text x="652.58" y="2303.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (3 samples, 0.08%)</title><rect x="848.6" y="3125" width="1.0" height="15.0" fill="rgb(225,65,4)" rx="2" ry="2" /> +<text x="851.56" y="3135.5" ></text> +</g> +<g > +<title><unknown> (1 samples, 0.03%)</title><rect x="870.4" y="1797" width="0.3" height="15.0" fill="rgb(250,160,53)" rx="2" ry="2" /> +<text x="873.38" y="1807.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (230 samples, 6.44%)</title><rect x="707.4" y="2517" width="76.0" height="15.0" fill="rgb(237,22,37)" rx="2" ry="2" /> +<text x="710.42" y="2527.5" >Nsfisis\..</text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (9 samples, 0.25%)</title><rect x="704.1" y="2741" width="3.0" height="15.0" fill="rgb(210,154,20)" rx="2" ry="2" /> +<text x="707.12" y="2751.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (115 samples, 3.22%)</title><rect x="275.1" y="2117" width="38.0" height="15.0" fill="rgb(205,142,35)" rx="2" ry="2" /> +<text x="278.09" y="2127.5" >Nsf..</text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="1104.7" y="3109" width="0.4" height="15.0" fill="rgb(211,123,18)" rx="2" ry="2" /> +<text x="1107.72" y="3119.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (3 samples, 0.08%)</title><rect x="848.6" y="3349" width="1.0" height="15.0" fill="rgb(222,166,12)" rx="2" ry="2" /> +<text x="851.56" y="3359.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (3 samples, 0.08%)</title><rect x="316.1" y="1685" width="1.0" height="15.0" fill="rgb(206,0,33)" rx="2" ry="2" /> +<text x="319.07" y="1695.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (16 samples, 0.45%)</title><rect x="411.9" y="2021" width="5.3" height="15.0" fill="rgb(231,79,4)" rx="2" ry="2" /> +<text x="414.93" y="2031.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (5 samples, 0.14%)</title><rect x="700.2" y="2437" width="1.6" height="15.0" fill="rgb(212,94,0)" rx="2" ry="2" /> +<text x="703.15" y="2447.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="353.1" y="1925" width="0.3" height="15.0" fill="rgb(252,223,5)" rx="2" ry="2" /> +<text x="356.09" y="1935.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="894.5" y="2501" width="0.3" height="15.0" fill="rgb(239,78,40)" rx="2" ry="2" /> +<text x="897.50" y="2511.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (8 samples, 0.22%)</title><rect x="658.2" y="2133" width="2.6" height="15.0" fill="rgb(243,57,31)" rx="2" ry="2" /> +<text x="661.17" y="2143.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (2 samples, 0.06%)</title><rect x="663.5" y="2005" width="0.6" height="15.0" fill="rgb(205,91,49)" rx="2" ry="2" /> +<text x="666.46" y="2015.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="851.2" y="2245" width="0.3" height="15.0" fill="rgb(244,80,29)" rx="2" ry="2" /> +<text x="854.20" y="2255.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="955.3" y="2661" width="0.4" height="15.0" fill="rgb(252,29,28)" rx="2" ry="2" /> +<text x="958.32" y="2671.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Stack::popI32 (1 samples, 0.03%)</title><rect x="839.6" y="2357" width="0.4" height="15.0" fill="rgb(235,188,6)" rx="2" ry="2" /> +<text x="842.64" y="2367.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="665.4" y="2309" width="0.4" height="15.0" fill="rgb(251,188,38)" rx="2" ry="2" /> +<text x="668.45" y="2319.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="954.0" y="2885" width="0.3" height="15.0" fill="rgb(246,87,51)" rx="2" ry="2" /> +<text x="957.00" y="2895.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (3 samples, 0.08%)</title><rect x="848.6" y="3061" width="1.0" height="15.0" fill="rgb(230,100,22)" rx="2" ry="2" /> +<text x="851.56" y="3071.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (31 samples, 0.87%)</title><rect x="883.6" y="2693" width="10.2" height="15.0" fill="rgb(206,191,15)" rx="2" ry="2" /> +<text x="886.60" y="2703.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (8 samples, 0.22%)</title><rect x="370.3" y="1893" width="2.6" height="15.0" fill="rgb(221,227,53)" rx="2" ry="2" /> +<text x="373.28" y="1903.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="1090.5" y="3429" width="0.3" height="15.0" fill="rgb(210,96,53)" rx="2" ry="2" /> +<text x="1093.51" y="3439.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (2 samples, 0.06%)</title><rect x="1104.1" y="2853" width="0.6" height="15.0" fill="rgb(228,120,14)" rx="2" ry="2" /> +<text x="1107.06" y="2863.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (1 samples, 0.03%)</title><rect x="783.1" y="2261" width="0.3" height="15.0" fill="rgb(216,112,44)" rx="2" ry="2" /> +<text x="786.11" y="2271.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.03%)</title><rect x="652.2" y="2389" width="0.4" height="15.0" fill="rgb(246,212,28)" rx="2" ry="2" /> +<text x="655.22" y="2399.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (17 samples, 0.48%)</title><rect x="343.5" y="2117" width="5.6" height="15.0" fill="rgb(227,10,39)" rx="2" ry="2" /> +<text x="346.51" y="2127.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (2 samples, 0.06%)</title><rect x="313.8" y="2101" width="0.6" height="15.0" fill="rgb(241,43,46)" rx="2" ry="2" /> +<text x="316.76" y="2111.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (1 samples, 0.03%)</title><rect x="328.3" y="2053" width="0.3" height="15.0" fill="rgb(206,220,9)" rx="2" ry="2" /> +<text x="331.30" y="2063.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (1 samples, 0.03%)</title><rect x="316.4" y="805" width="0.3" height="15.0" fill="rgb(245,116,15)" rx="2" ry="2" /> +<text x="319.40" y="815.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (1 samples, 0.03%)</title><rect x="406.6" y="1845" width="0.4" height="15.0" fill="rgb(228,66,47)" rx="2" ry="2" /> +<text x="409.64" y="1855.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (2 samples, 0.06%)</title><rect x="1104.1" y="2597" width="0.6" height="15.0" fill="rgb(248,108,31)" rx="2" ry="2" /> +<text x="1107.06" y="2607.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="423.2" y="709" width="0.3" height="15.0" fill="rgb(223,104,34)" rx="2" ry="2" /> +<text x="426.17" y="719.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (7 samples, 0.20%)</title><rect x="658.5" y="2101" width="2.3" height="15.0" fill="rgb(241,92,41)" rx="2" ry="2" /> +<text x="661.50" y="2111.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (1 samples, 0.03%)</title><rect x="304.8" y="1765" width="0.4" height="15.0" fill="rgb(227,111,44)" rx="2" ry="2" /> +<text x="307.83" y="1775.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (2 samples, 0.06%)</title><rect x="359.7" y="1909" width="0.7" height="15.0" fill="rgb(232,176,47)" rx="2" ry="2" /> +<text x="362.70" y="1919.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (3 samples, 0.08%)</title><rect x="698.8" y="2517" width="1.0" height="15.0" fill="rgb(232,106,31)" rx="2" ry="2" /> +<text x="701.83" y="2527.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.03%)</title><rect x="288.3" y="1909" width="0.3" height="15.0" fill="rgb(243,51,20)" rx="2" ry="2" /> +<text x="291.31" y="1919.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (5 samples, 0.14%)</title><rect x="1103.4" y="3141" width="1.7" height="15.0" fill="rgb(234,50,14)" rx="2" ry="2" /> +<text x="1106.40" y="3151.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (21 samples, 0.59%)</title><rect x="931.5" y="2501" width="7.0" height="15.0" fill="rgb(208,198,7)" rx="2" ry="2" /> +<text x="934.52" y="2511.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="954.3" y="2789" width="0.4" height="15.0" fill="rgb(238,191,10)" rx="2" ry="2" /> +<text x="957.33" y="2799.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (1,823 samples, 51.06%)</title><rect x="246.0" y="3381" width="602.6" height="15.0" fill="rgb(217,116,45)" rx="2" ry="2" /> +<text x="249.00" y="3391.5" >Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc</text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.03%)</title><rect x="783.1" y="2325" width="0.3" height="15.0" fill="rgb(249,116,53)" rx="2" ry="2" /> +<text x="786.11" y="2335.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.03%)</title><rect x="391.4" y="1749" width="0.4" height="15.0" fill="rgb(206,208,40)" rx="2" ry="2" /> +<text x="394.43" y="1759.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.03%)</title><rect x="878.3" y="2261" width="0.3" height="15.0" fill="rgb(223,174,46)" rx="2" ry="2" /> +<text x="881.31" y="2271.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.03%)</title><rect x="344.8" y="2005" width="0.4" height="15.0" fill="rgb(227,177,4)" rx="2" ry="2" /> +<text x="347.83" y="2015.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\BinaryFormat\Decoder::{closure}(/home/ken/src/php-waddiwasi/src/BinaryFormat/Decoder.php:264-267) (1,823 samples, 51.06%)</title><rect x="246.0" y="3413" width="602.6" height="15.0" fill="rgb(212,76,35)" rx="2" ry="2" /> +<text x="249.00" y="3423.5" >Nsfisis\Waddiwasi\BinaryFormat\Decoder::{closure}(/home/ken/src/php-waddiwasi/src/B..</text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (3 samples, 0.08%)</title><rect x="701.8" y="2469" width="1.0" height="15.0" fill="rgb(217,138,22)" rx="2" ry="2" /> +<text x="704.80" y="2479.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (1 samples, 0.03%)</title><rect x="880.6" y="2613" width="0.4" height="15.0" fill="rgb(242,224,19)" rx="2" ry="2" /> +<text x="883.62" y="2623.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Nums\I32::__construct (1 samples, 0.03%)</title><rect x="171.0" y="3413" width="0.3" height="15.0" fill="rgb(249,3,7)" rx="2" ry="2" /> +<text x="173.97" y="3423.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="254.3" y="2277" width="0.3" height="15.0" fill="rgb(208,91,44)" rx="2" ry="2" /> +<text x="257.26" y="2287.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Stack::popValue (1 samples, 0.03%)</title><rect x="336.2" y="1749" width="0.4" height="15.0" fill="rgb(252,75,29)" rx="2" ry="2" /> +<text x="339.24" y="1759.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="686.9" y="2389" width="0.4" height="15.0" fill="rgb(233,156,20)" rx="2" ry="2" /> +<text x="689.93" y="2399.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="846.9" y="2885" width="0.3" height="15.0" fill="rgb(254,9,33)" rx="2" ry="2" /> +<text x="849.91" y="2895.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (2 samples, 0.06%)</title><rect x="850.5" y="2341" width="0.7" height="15.0" fill="rgb(220,83,23)" rx="2" ry="2" /> +<text x="853.54" y="2351.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (22 samples, 0.62%)</title><rect x="654.2" y="2229" width="7.3" height="15.0" fill="rgb(254,75,33)" rx="2" ry="2" /> +<text x="657.21" y="2239.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (2 samples, 0.06%)</title><rect x="370.9" y="1685" width="0.7" height="15.0" fill="rgb(205,157,17)" rx="2" ry="2" /> +<text x="373.94" y="1695.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (5 samples, 0.14%)</title><rect x="796.7" y="2133" width="1.6" height="15.0" fill="rgb(249,160,6)" rx="2" ry="2" /> +<text x="799.67" y="2143.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (4 samples, 0.11%)</title><rect x="311.4" y="1701" width="1.4" height="15.0" fill="rgb(221,14,8)" rx="2" ry="2" /> +<text x="314.45" y="1711.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (3 samples, 0.08%)</title><rect x="952.0" y="2597" width="1.0" height="15.0" fill="rgb(213,40,4)" rx="2" ry="2" /> +<text x="955.02" y="2607.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (10 samples, 0.28%)</title><rect x="264.2" y="1941" width="3.3" height="15.0" fill="rgb(224,178,26)" rx="2" ry="2" /> +<text x="267.18" y="1951.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (5 samples, 0.14%)</title><rect x="249.6" y="2837" width="1.7" height="15.0" fill="rgb(236,135,7)" rx="2" ry="2" /> +<text x="252.64" y="2847.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.03%)</title><rect x="315.4" y="1685" width="0.3" height="15.0" fill="rgb(234,160,0)" rx="2" ry="2" /> +<text x="318.41" y="1695.5" ></text> +</g> +<g > +<title><unknown> (1 samples, 0.03%)</title><rect x="870.4" y="1829" width="0.3" height="15.0" fill="rgb(217,208,46)" rx="2" ry="2" /> +<text x="873.38" y="1839.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="314.1" y="1637" width="0.3" height="15.0" fill="rgb(220,32,41)" rx="2" ry="2" /> +<text x="317.09" y="1647.5" ></text> +</g> +<g > +<title><unknown> (1 samples, 0.03%)</title><rect x="870.4" y="1253" width="0.3" height="15.0" fill="rgb(219,42,20)" rx="2" ry="2" /> +<text x="873.38" y="1263.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="249.3" y="2949" width="0.3" height="15.0" fill="rgb(221,71,44)" rx="2" ry="2" /> +<text x="252.31" y="2959.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.03%)</title><rect x="1153.6" y="3381" width="0.4" height="15.0" fill="rgb(232,57,9)" rx="2" ry="2" /> +<text x="1156.64" y="3391.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (2 samples, 0.06%)</title><rect x="316.1" y="1605" width="0.6" height="15.0" fill="rgb(239,207,42)" rx="2" ry="2" /> +<text x="319.07" y="1615.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (67 samples, 1.88%)</title><rect x="856.5" y="2645" width="22.1" height="15.0" fill="rgb(251,19,25)" rx="2" ry="2" /> +<text x="859.49" y="2655.5" >N..</text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\StackEntry::Value (1 samples, 0.03%)</title><rect x="1110.7" y="3493" width="0.3" height="15.0" fill="rgb(215,104,46)" rx="2" ry="2" /> +<text x="1113.67" y="3503.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Stack::currentFrame (1 samples, 0.03%)</title><rect x="383.5" y="1813" width="0.3" height="15.0" fill="rgb(228,188,11)" rx="2" ry="2" /> +<text x="386.50" y="1823.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (1 samples, 0.03%)</title><rect x="845.6" y="2629" width="0.3" height="15.0" fill="rgb(238,49,45)" rx="2" ry="2" /> +<text x="848.59" y="2639.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (10 samples, 0.28%)</title><rect x="264.2" y="1861" width="3.3" height="15.0" fill="rgb(253,142,19)" rx="2" ry="2" /> +<text x="267.18" y="1871.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="954.0" y="2725" width="0.3" height="15.0" fill="rgb(246,135,17)" rx="2" ry="2" /> +<text x="957.00" y="2735.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (36 samples, 1.01%)</title><rect x="787.4" y="2341" width="11.9" height="15.0" fill="rgb(209,84,20)" rx="2" ry="2" /> +<text x="790.41" y="2351.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.03%)</title><rect x="316.7" y="1621" width="0.4" height="15.0" fill="rgb(247,75,20)" rx="2" ry="2" /> +<text x="319.73" y="1631.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrsForInit (538 samples, 15.07%)</title><rect x="68.2" y="3509" width="177.8" height="15.0" fill="rgb(249,129,1)" rx="2" ry="2" /> +<text x="71.17" y="3519.5" >Nsfisis\Waddiwasi\Execu..</text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (4 samples, 0.11%)</title><rect x="248.0" y="3093" width="1.3" height="15.0" fill="rgb(246,114,35)" rx="2" ry="2" /> +<text x="250.98" y="3103.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (2 samples, 0.06%)</title><rect x="954.7" y="2309" width="0.6" height="15.0" fill="rgb(241,54,14)" rx="2" ry="2" /> +<text x="957.66" y="2319.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Stack::pushBool (1 samples, 0.03%)</title><rect x="808.6" y="2229" width="0.3" height="15.0" fill="rgb(244,143,1)" rx="2" ry="2" /> +<text x="811.57" y="2239.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.03%)</title><rect x="298.6" y="1557" width="0.3" height="15.0" fill="rgb(247,119,9)" rx="2" ry="2" /> +<text x="301.55" y="1567.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Stack::popValue (2 samples, 0.06%)</title><rect x="242.0" y="3445" width="0.7" height="15.0" fill="rgb(240,177,18)" rx="2" ry="2" /> +<text x="245.03" y="3455.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="650.2" y="2117" width="0.4" height="15.0" fill="rgb(215,178,44)" rx="2" ry="2" /> +<text x="653.24" y="2127.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="1108.0" y="3237" width="0.4" height="15.0" fill="rgb(244,11,17)" rx="2" ry="2" /> +<text x="1111.03" y="3247.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (1 samples, 0.03%)</title><rect x="661.8" y="1925" width="0.3" height="15.0" fill="rgb(214,109,24)" rx="2" ry="2" /> +<text x="664.81" y="1935.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (1 samples, 0.03%)</title><rect x="249.3" y="2933" width="0.3" height="15.0" fill="rgb(229,191,14)" rx="2" ry="2" /> +<text x="252.31" y="2943.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (9 samples, 0.25%)</title><rect x="264.5" y="1829" width="3.0" height="15.0" fill="rgb(211,61,42)" rx="2" ry="2" /> +<text x="267.51" y="1839.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (4 samples, 0.11%)</title><rect x="1103.4" y="3125" width="1.3" height="15.0" fill="rgb(247,17,26)" rx="2" ry="2" /> +<text x="1106.40" y="3135.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (112 samples, 3.14%)</title><rect x="904.8" y="2645" width="37.0" height="15.0" fill="rgb(229,222,40)" rx="2" ry="2" /> +<text x="907.75" y="2655.5" >Nsf..</text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (2 samples, 0.06%)</title><rect x="954.7" y="261" width="0.6" height="15.0" fill="rgb(220,163,2)" rx="2" ry="2" /> +<text x="957.66" y="271.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (20 samples, 0.56%)</title><rect x="1111.0" y="3509" width="6.6" height="15.0" fill="rgb(237,220,8)" rx="2" ry="2" /> +<text x="1114.00" y="3519.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (16 samples, 0.45%)</title><rect x="331.6" y="1877" width="5.3" height="15.0" fill="rgb(215,37,4)" rx="2" ry="2" /> +<text x="334.61" y="1887.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="406.6" y="1797" width="0.4" height="15.0" fill="rgb(251,27,34)" rx="2" ry="2" /> +<text x="409.64" y="1807.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="947.1" y="2437" width="0.3" height="15.0" fill="rgb(235,17,49)" rx="2" ry="2" /> +<text x="950.06" y="2447.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Stack::pushValue (1 samples, 0.03%)</title><rect x="782.5" y="2181" width="0.3" height="15.0" fill="rgb(239,88,51)" rx="2" ry="2" /> +<text x="785.45" y="2191.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1,261 samples, 35.32%)</title><rect x="249.6" y="2869" width="416.8" height="15.0" fill="rgb(249,32,6)" rx="2" ry="2" /> +<text x="252.64" y="2879.5" >Nsfisis\Waddiwasi\Execution\Runtime::execInstrs</text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (7 samples, 0.20%)</title><rect x="317.1" y="2149" width="2.3" height="15.0" fill="rgb(220,201,10)" rx="2" ry="2" /> +<text x="320.06" y="2159.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (2 samples, 0.06%)</title><rect x="260.5" y="1893" width="0.7" height="15.0" fill="rgb(240,192,29)" rx="2" ry="2" /> +<text x="263.54" y="1903.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (12 samples, 0.34%)</title><rect x="337.9" y="2053" width="4.0" height="15.0" fill="rgb(215,160,4)" rx="2" ry="2" /> +<text x="340.89" y="2063.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.03%)</title><rect x="847.9" y="2613" width="0.3" height="15.0" fill="rgb(225,59,15)" rx="2" ry="2" /> +<text x="850.90" y="2623.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (2 samples, 0.06%)</title><rect x="1104.1" y="3029" width="0.6" height="15.0" fill="rgb(212,143,11)" rx="2" ry="2" /> +<text x="1107.06" y="3039.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (4 samples, 0.11%)</title><rect x="306.8" y="1861" width="1.3" height="15.0" fill="rgb(247,107,7)" rx="2" ry="2" /> +<text x="309.82" y="1871.5" ></text> +</g> +<g > +<title><unknown> (1 samples, 0.03%)</title><rect x="870.4" y="1029" width="0.3" height="15.0" fill="rgb(220,168,51)" rx="2" ry="2" /> +<text x="873.38" y="1039.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (8 samples, 0.22%)</title><rect x="370.3" y="1909" width="2.6" height="15.0" fill="rgb(252,187,1)" rx="2" ry="2" /> +<text x="373.28" y="1919.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (1 samples, 0.03%)</title><rect x="250.0" y="2725" width="0.3" height="15.0" fill="rgb(230,53,3)" rx="2" ry="2" /> +<text x="252.97" y="2735.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (1 samples, 0.03%)</title><rect x="330.9" y="1989" width="0.4" height="15.0" fill="rgb(219,93,30)" rx="2" ry="2" /> +<text x="333.95" y="1999.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.03%)</title><rect x="249.3" y="2773" width="0.3" height="15.0" fill="rgb(206,157,25)" rx="2" ry="2" /> +<text x="252.31" y="2783.5" ></text> +</g> +<g > +<title>{closure}(/home/ken/src/php-waddiwasi/examples/php-on-wasm/php-wasm.php:334-343) (1 samples, 0.03%)</title><rect x="249.3" y="3029" width="0.3" height="15.0" fill="rgb(209,151,43)" rx="2" ry="2" /> +<text x="252.31" y="3039.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (6 samples, 0.17%)</title><rect x="662.8" y="2229" width="2.0" height="15.0" fill="rgb(240,203,52)" rx="2" ry="2" /> +<text x="665.80" y="2239.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (2 samples, 0.06%)</title><rect x="954.7" y="917" width="0.6" height="15.0" fill="rgb(216,77,37)" rx="2" ry="2" /> +<text x="957.66" y="927.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="954.0" y="2981" width="0.3" height="15.0" fill="rgb(248,82,40)" rx="2" ry="2" /> +<text x="957.00" y="2991.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (22 samples, 0.62%)</title><rect x="382.5" y="1909" width="7.3" height="15.0" fill="rgb(229,22,48)" rx="2" ry="2" /> +<text x="385.51" y="1919.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.03%)</title><rect x="675.7" y="2613" width="0.3" height="15.0" fill="rgb(239,37,37)" rx="2" ry="2" /> +<text x="678.69" y="2623.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (3 samples, 0.08%)</title><rect x="841.9" y="2837" width="1.0" height="15.0" fill="rgb(226,162,51)" rx="2" ry="2" /> +<text x="844.95" y="2847.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (1 samples, 0.03%)</title><rect x="420.9" y="1973" width="0.3" height="15.0" fill="rgb(245,72,0)" rx="2" ry="2" /> +<text x="423.85" y="1983.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (1 samples, 0.03%)</title><rect x="664.5" y="2085" width="0.3" height="15.0" fill="rgb(220,27,25)" rx="2" ry="2" /> +<text x="667.45" y="2095.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (1 samples, 0.03%)</title><rect x="257.2" y="2069" width="0.4" height="15.0" fill="rgb(224,154,38)" rx="2" ry="2" /> +<text x="260.24" y="2079.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (2 samples, 0.06%)</title><rect x="672.4" y="2341" width="0.6" height="15.0" fill="rgb(225,204,11)" rx="2" ry="2" /> +<text x="675.39" y="2351.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (2 samples, 0.06%)</title><rect x="691.2" y="2293" width="0.7" height="15.0" fill="rgb(211,51,8)" rx="2" ry="2" /> +<text x="694.23" y="2303.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (4 samples, 0.11%)</title><rect x="283.7" y="1861" width="1.3" height="15.0" fill="rgb(254,174,22)" rx="2" ry="2" /> +<text x="286.68" y="1871.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (2 samples, 0.06%)</title><rect x="389.1" y="1541" width="0.7" height="15.0" fill="rgb(246,81,36)" rx="2" ry="2" /> +<text x="392.12" y="1551.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.03%)</title><rect x="1077.3" y="3381" width="0.3" height="15.0" fill="rgb(228,14,48)" rx="2" ry="2" /> +<text x="1080.29" y="3391.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="254.3" y="2213" width="0.3" height="15.0" fill="rgb(248,178,5)" rx="2" ry="2" /> +<text x="257.26" y="2223.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doLoadI32 (1 samples, 0.03%)</title><rect x="353.1" y="1909" width="0.3" height="15.0" fill="rgb(219,37,47)" rx="2" ry="2" /> +<text x="356.09" y="1919.5" ></text> +</g> +<g > +<title>Composer\Autoload\ClassLoader::loadClass (1 samples, 0.03%)</title><rect x="10.3" y="3525" width="0.4" height="15.0" fill="rgb(215,204,2)" rx="2" ry="2" /> +<text x="13.33" y="3535.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="843.6" y="2405" width="0.3" height="15.0" fill="rgb(235,168,24)" rx="2" ry="2" /> +<text x="846.60" y="2415.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="274.8" y="2117" width="0.3" height="15.0" fill="rgb(231,227,45)" rx="2" ry="2" /> +<text x="277.76" y="2127.5" ></text> +</g> +<g > +<title><unknown> (1 samples, 0.03%)</title><rect x="1176.8" y="3525" width="0.3" height="15.0" fill="rgb(235,146,51)" rx="2" ry="2" /> +<text x="1179.78" y="3535.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.03%)</title><rect x="299.9" y="1685" width="0.3" height="15.0" fill="rgb(225,162,35)" rx="2" ry="2" /> +<text x="302.88" y="1695.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (5 samples, 0.14%)</title><rect x="849.6" y="2469" width="1.6" height="15.0" fill="rgb(225,94,20)" rx="2" ry="2" /> +<text x="852.55" y="2479.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.03%)</title><rect x="707.1" y="2677" width="0.3" height="15.0" fill="rgb(239,183,14)" rx="2" ry="2" /> +<text x="710.09" y="2687.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (2 samples, 0.06%)</title><rect x="954.7" y="1029" width="0.6" height="15.0" fill="rgb(243,166,34)" rx="2" ry="2" /> +<text x="957.66" y="1039.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (2 samples, 0.06%)</title><rect x="656.2" y="2133" width="0.7" height="15.0" fill="rgb(223,64,12)" rx="2" ry="2" /> +<text x="659.19" y="2143.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="319.0" y="1925" width="0.4" height="15.0" fill="rgb(223,205,17)" rx="2" ry="2" /> +<text x="322.05" y="1935.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (125 samples, 3.50%)</title><rect x="853.8" y="2805" width="41.4" height="15.0" fill="rgb(237,79,16)" rx="2" ry="2" /> +<text x="856.85" y="2815.5" >Nsf..</text> +</g> +<g > +<title>Nsfisis\Waddiwasi\BinaryFormat\Decoder::decode (18 samples, 0.50%)</title><rect x="10.7" y="3525" width="5.9" height="15.0" fill="rgb(246,47,20)" rx="2" ry="2" /> +<text x="13.66" y="3535.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Stack::pushI32 (1 samples, 0.03%)</title><rect x="840.6" y="2389" width="0.4" height="15.0" fill="rgb(253,64,13)" rx="2" ry="2" /> +<text x="843.63" y="2399.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (4 samples, 0.11%)</title><rect x="374.9" y="1637" width="1.3" height="15.0" fill="rgb(224,190,46)" rx="2" ry="2" /> +<text x="377.91" y="1647.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (50 samples, 1.40%)</title><rect x="255.3" y="2245" width="16.5" height="15.0" fill="rgb(244,170,51)" rx="2" ry="2" /> +<text x="258.25" y="2255.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="263.8" y="1957" width="0.4" height="15.0" fill="rgb(233,212,22)" rx="2" ry="2" /> +<text x="266.85" y="1967.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (8 samples, 0.22%)</title><rect x="1102.4" y="3205" width="2.7" height="15.0" fill="rgb(235,208,9)" rx="2" ry="2" /> +<text x="1105.41" y="3215.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\BinaryFormat\Decoder::decodeInstr (2 samples, 0.06%)</title><rect x="12.3" y="3285" width="0.7" height="15.0" fill="rgb(222,147,35)" rx="2" ry="2" /> +<text x="15.31" y="3295.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.03%)</title><rect x="783.4" y="2773" width="0.4" height="15.0" fill="rgb(234,178,35)" rx="2" ry="2" /> +<text x="786.45" y="2783.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (8 samples, 0.22%)</title><rect x="370.3" y="1813" width="2.6" height="15.0" fill="rgb(254,12,4)" rx="2" ry="2" /> +<text x="373.28" y="1823.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="707.1" y="2725" width="0.3" height="15.0" fill="rgb(209,55,6)" rx="2" ry="2" /> +<text x="710.09" y="2735.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.03%)</title><rect x="360.0" y="1813" width="0.4" height="15.0" fill="rgb(232,138,19)" rx="2" ry="2" /> +<text x="363.03" y="1823.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (322 samples, 9.02%)</title><rect x="849.6" y="3429" width="106.4" height="15.0" fill="rgb(216,20,46)" rx="2" ry="2" /> +<text x="852.55" y="3439.5" >Nsfisis\Waddi..</text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.03%)</title><rect x="954.3" y="2421" width="0.4" height="15.0" fill="rgb(222,35,23)" rx="2" ry="2" /> +<text x="957.33" y="2431.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="661.8" y="1797" width="0.3" height="15.0" fill="rgb(214,152,31)" rx="2" ry="2" /> +<text x="664.81" y="1807.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="266.8" y="1477" width="0.4" height="15.0" fill="rgb(251,220,43)" rx="2" ry="2" /> +<text x="269.82" y="1487.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="360.0" y="1797" width="0.4" height="15.0" fill="rgb(244,75,54)" rx="2" ry="2" /> +<text x="363.03" y="1807.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="299.9" y="1765" width="0.3" height="15.0" fill="rgb(238,25,4)" rx="2" ry="2" /> +<text x="302.88" y="1775.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\ControlFlowResult::Return (3 samples, 0.08%)</title><rect x="903.8" y="2645" width="1.0" height="15.0" fill="rgb(247,61,46)" rx="2" ry="2" /> +<text x="906.76" y="2655.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (3 samples, 0.08%)</title><rect x="848.6" y="3141" width="1.0" height="15.0" fill="rgb(246,70,29)" rx="2" ry="2" /> +<text x="851.56" y="3151.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.03%)</title><rect x="358.4" y="1557" width="0.3" height="15.0" fill="rgb(221,110,14)" rx="2" ry="2" /> +<text x="361.38" y="1567.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="328.3" y="2021" width="0.3" height="15.0" fill="rgb(244,73,15)" rx="2" ry="2" /> +<text x="331.30" y="2031.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1,208 samples, 33.84%)</title><rect x="252.6" y="2421" width="399.3" height="15.0" fill="rgb(222,104,19)" rx="2" ry="2" /> +<text x="255.61" y="2431.5" >Nsfisis\Waddiwasi\Execution\Runtime::execInstrs</text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="421.5" y="1861" width="0.3" height="15.0" fill="rgb(241,91,30)" rx="2" ry="2" /> +<text x="424.51" y="1871.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.03%)</title><rect x="363.7" y="1781" width="0.3" height="15.0" fill="rgb(233,5,6)" rx="2" ry="2" /> +<text x="366.67" y="1791.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (2 samples, 0.06%)</title><rect x="954.7" y="949" width="0.6" height="15.0" fill="rgb(218,190,13)" rx="2" ry="2" /> +<text x="957.66" y="959.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\ControlFlowResult::Br (1 samples, 0.03%)</title><rect x="1138.4" y="3461" width="0.4" height="15.0" fill="rgb(209,219,34)" rx="2" ry="2" /> +<text x="1141.44" y="3471.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (16 samples, 0.45%)</title><rect x="932.8" y="2469" width="5.3" height="15.0" fill="rgb(224,109,12)" rx="2" ry="2" /> +<text x="935.85" y="2479.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="813.9" y="2277" width="0.3" height="15.0" fill="rgb(243,179,40)" rx="2" ry="2" /> +<text x="816.85" y="2287.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (1 samples, 0.03%)</title><rect x="315.4" y="1941" width="0.3" height="15.0" fill="rgb(211,45,13)" rx="2" ry="2" /> +<text x="318.41" y="1951.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="257.2" y="1989" width="0.4" height="15.0" fill="rgb(248,7,44)" rx="2" ry="2" /> +<text x="260.24" y="1999.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (49 samples, 1.37%)</title><rect x="858.1" y="2437" width="16.2" height="15.0" fill="rgb(206,146,3)" rx="2" ry="2" /> +<text x="861.15" y="2447.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (21 samples, 0.59%)</title><rect x="400.0" y="2197" width="7.0" height="15.0" fill="rgb(229,29,13)" rx="2" ry="2" /> +<text x="403.03" y="2207.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (3 samples, 0.08%)</title><rect x="248.0" y="2949" width="1.0" height="15.0" fill="rgb(231,143,53)" rx="2" ry="2" /> +<text x="250.98" y="2959.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.03%)</title><rect x="330.9" y="1941" width="0.4" height="15.0" fill="rgb(238,186,19)" rx="2" ry="2" /> +<text x="333.95" y="1951.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (2 samples, 0.06%)</title><rect x="844.9" y="2741" width="0.7" height="15.0" fill="rgb(228,200,48)" rx="2" ry="2" /> +<text x="847.92" y="2751.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (5 samples, 0.14%)</title><rect x="303.8" y="1893" width="1.7" height="15.0" fill="rgb(213,189,52)" rx="2" ry="2" /> +<text x="306.84" y="1903.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (2 samples, 0.06%)</title><rect x="844.9" y="2693" width="0.7" height="15.0" fill="rgb(246,72,46)" rx="2" ry="2" /> +<text x="847.92" y="2703.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="410.9" y="2021" width="0.4" height="15.0" fill="rgb(249,76,28)" rx="2" ry="2" /> +<text x="413.94" y="2031.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="1090.8" y="3397" width="0.4" height="15.0" fill="rgb(217,40,2)" rx="2" ry="2" /> +<text x="1093.84" y="3407.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (2 samples, 0.06%)</title><rect x="954.7" y="1925" width="0.6" height="15.0" fill="rgb(206,141,6)" rx="2" ry="2" /> +<text x="957.66" y="1935.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (4 samples, 0.11%)</title><rect x="696.8" y="2533" width="1.4" height="15.0" fill="rgb(250,185,3)" rx="2" ry="2" /> +<text x="699.85" y="2543.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (14 samples, 0.39%)</title><rect x="682.6" y="2485" width="4.7" height="15.0" fill="rgb(232,33,42)" rx="2" ry="2" /> +<text x="685.63" y="2495.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (2 samples, 0.06%)</title><rect x="691.2" y="2357" width="0.7" height="15.0" fill="rgb(240,81,28)" rx="2" ry="2" /> +<text x="694.23" y="2367.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.03%)</title><rect x="387.1" y="1589" width="0.4" height="15.0" fill="rgb(239,131,44)" rx="2" ry="2" /> +<text x="390.14" y="1599.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (230 samples, 6.44%)</title><rect x="707.4" y="2549" width="76.0" height="15.0" fill="rgb(249,82,30)" rx="2" ry="2" /> +<text x="710.42" y="2559.5" >Nsfisis\..</text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="954.0" y="3109" width="0.3" height="15.0" fill="rgb(231,220,26)" rx="2" ry="2" /> +<text x="957.00" y="3119.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.03%)</title><rect x="894.5" y="2549" width="0.3" height="15.0" fill="rgb(216,90,25)" rx="2" ry="2" /> +<text x="897.50" y="2559.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (2 samples, 0.06%)</title><rect x="340.9" y="1973" width="0.6" height="15.0" fill="rgb(249,119,39)" rx="2" ry="2" /> +<text x="343.86" y="1983.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (1 samples, 0.03%)</title><rect x="250.0" y="2741" width="0.3" height="15.0" fill="rgb(225,20,16)" rx="2" ry="2" /> +<text x="252.97" y="2751.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (19 samples, 0.53%)</title><rect x="802.3" y="2309" width="6.3" height="15.0" fill="rgb(208,115,33)" rx="2" ry="2" /> +<text x="805.29" y="2319.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (6 samples, 0.17%)</title><rect x="849.6" y="2709" width="1.9" height="15.0" fill="rgb(207,37,53)" rx="2" ry="2" /> +<text x="852.55" y="2719.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="790.4" y="2245" width="0.3" height="15.0" fill="rgb(232,152,36)" rx="2" ry="2" /> +<text x="793.39" y="2255.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (2 samples, 0.06%)</title><rect x="670.7" y="2533" width="0.7" height="15.0" fill="rgb(220,92,13)" rx="2" ry="2" /> +<text x="673.73" y="2543.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="249.3" y="2853" width="0.3" height="15.0" fill="rgb(234,160,21)" rx="2" ry="2" /> +<text x="252.31" y="2863.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (2 samples, 0.06%)</title><rect x="842.3" y="2565" width="0.6" height="15.0" fill="rgb(251,105,27)" rx="2" ry="2" /> +<text x="845.28" y="2575.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (5 samples, 0.14%)</title><rect x="311.1" y="1845" width="1.7" height="15.0" fill="rgb(222,6,16)" rx="2" ry="2" /> +<text x="314.11" y="1855.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::invokeByFuncAddr (1 samples, 0.03%)</title><rect x="249.3" y="3013" width="0.3" height="15.0" fill="rgb(220,67,6)" rx="2" ry="2" /> +<text x="252.31" y="3023.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (8 samples, 0.22%)</title><rect x="403.3" y="1749" width="2.7" height="15.0" fill="rgb(252,100,52)" rx="2" ry="2" /> +<text x="406.33" y="1759.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (2 samples, 0.06%)</title><rect x="954.7" y="1061" width="0.6" height="15.0" fill="rgb(238,122,20)" rx="2" ry="2" /> +<text x="957.66" y="1071.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (2 samples, 0.06%)</title><rect x="670.7" y="2405" width="0.7" height="15.0" fill="rgb(235,59,19)" rx="2" ry="2" /> +<text x="673.73" y="2415.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.03%)</title><rect x="1150.7" y="3445" width="0.3" height="15.0" fill="rgb(227,123,34)" rx="2" ry="2" /> +<text x="1153.67" y="3455.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (20 samples, 0.56%)</title><rect x="410.6" y="2325" width="6.6" height="15.0" fill="rgb(222,58,13)" rx="2" ry="2" /> +<text x="413.61" y="2335.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Stack::pushBool (1 samples, 0.03%)</title><rect x="365.7" y="1941" width="0.3" height="15.0" fill="rgb(217,143,4)" rx="2" ry="2" /> +<text x="368.65" y="1951.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.03%)</title><rect x="263.5" y="1781" width="0.3" height="15.0" fill="rgb(229,108,53)" rx="2" ry="2" /> +<text x="266.52" y="1791.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="838.6" y="2053" width="0.4" height="15.0" fill="rgb(219,113,2)" rx="2" ry="2" /> +<text x="841.64" y="2063.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (2 samples, 0.06%)</title><rect x="370.3" y="1669" width="0.6" height="15.0" fill="rgb(218,80,5)" rx="2" ry="2" /> +<text x="373.28" y="1679.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.03%)</title><rect x="1165.9" y="3477" width="0.3" height="15.0" fill="rgb(211,119,9)" rx="2" ry="2" /> +<text x="1168.87" y="3487.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="951.7" y="2661" width="0.3" height="15.0" fill="rgb(223,74,37)" rx="2" ry="2" /> +<text x="954.69" y="2671.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (22 samples, 0.62%)</title><rect x="305.5" y="1973" width="7.3" height="15.0" fill="rgb(228,84,8)" rx="2" ry="2" /> +<text x="308.50" y="1983.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (2 samples, 0.06%)</title><rect x="842.3" y="2693" width="0.6" height="15.0" fill="rgb(246,229,0)" rx="2" ry="2" /> +<text x="845.28" y="2703.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.03%)</title><rect x="953.7" y="2997" width="0.3" height="15.0" fill="rgb(228,194,37)" rx="2" ry="2" /> +<text x="956.67" y="3007.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (6 samples, 0.17%)</title><rect x="849.6" y="2997" width="1.9" height="15.0" fill="rgb(214,92,11)" rx="2" ry="2" /> +<text x="852.55" y="3007.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="847.9" y="2757" width="0.3" height="15.0" fill="rgb(212,15,47)" rx="2" ry="2" /> +<text x="850.90" y="2767.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (16 samples, 0.45%)</title><rect x="687.3" y="2517" width="5.2" height="15.0" fill="rgb(226,131,0)" rx="2" ry="2" /> +<text x="690.26" y="2527.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="702.8" y="2597" width="0.3" height="15.0" fill="rgb(252,76,4)" rx="2" ry="2" /> +<text x="705.80" y="2607.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.03%)</title><rect x="848.2" y="2709" width="0.4" height="15.0" fill="rgb(208,88,39)" rx="2" ry="2" /> +<text x="851.23" y="2719.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.03%)</title><rect x="834.0" y="2005" width="0.3" height="15.0" fill="rgb(229,200,36)" rx="2" ry="2" /> +<text x="837.02" y="2015.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (5 samples, 0.14%)</title><rect x="833.0" y="2293" width="1.7" height="15.0" fill="rgb(225,78,3)" rx="2" ry="2" /> +<text x="836.03" y="2303.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.03%)</title><rect x="364.3" y="1813" width="0.4" height="15.0" fill="rgb(229,192,23)" rx="2" ry="2" /> +<text x="367.33" y="1823.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (3 samples, 0.08%)</title><rect x="369.0" y="1909" width="0.9" height="15.0" fill="rgb(207,50,24)" rx="2" ry="2" /> +<text x="371.96" y="1919.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (2 samples, 0.06%)</title><rect x="954.7" y="1765" width="0.6" height="15.0" fill="rgb(224,79,49)" rx="2" ry="2" /> +<text x="957.66" y="1775.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (1 samples, 0.03%)</title><rect x="695.9" y="2293" width="0.3" height="15.0" fill="rgb(205,48,30)" rx="2" ry="2" /> +<text x="698.85" y="2303.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (11 samples, 0.31%)</title><rect x="947.4" y="2581" width="3.6" height="15.0" fill="rgb(206,101,54)" rx="2" ry="2" /> +<text x="950.39" y="2591.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (4 samples, 0.11%)</title><rect x="370.3" y="1765" width="1.3" height="15.0" fill="rgb(237,194,9)" rx="2" ry="2" /> +<text x="373.28" y="1775.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (1 samples, 0.03%)</title><rect x="955.0" y="117" width="0.3" height="15.0" fill="rgb(210,161,16)" rx="2" ry="2" /> +<text x="957.99" y="127.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (2 samples, 0.06%)</title><rect x="842.3" y="2517" width="0.6" height="15.0" fill="rgb(213,75,24)" rx="2" ry="2" /> +<text x="845.28" y="2527.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (3 samples, 0.08%)</title><rect x="848.6" y="3429" width="1.0" height="15.0" fill="rgb(222,95,45)" rx="2" ry="2" /> +<text x="851.56" y="3439.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (2 samples, 0.06%)</title><rect x="697.2" y="2357" width="0.6" height="15.0" fill="rgb(250,180,6)" rx="2" ry="2" /> +<text x="700.18" y="2367.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="930.2" y="2469" width="0.3" height="15.0" fill="rgb(226,126,4)" rx="2" ry="2" /> +<text x="933.20" y="2479.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.03%)</title><rect x="312.4" y="1525" width="0.4" height="15.0" fill="rgb(217,65,45)" rx="2" ry="2" /> +<text x="315.44" y="1535.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Stack::popI32 (1 samples, 0.03%)</title><rect x="1166.2" y="3477" width="0.3" height="15.0" fill="rgb(217,121,9)" rx="2" ry="2" /> +<text x="1169.20" y="3487.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (3 samples, 0.08%)</title><rect x="952.0" y="2693" width="1.0" height="15.0" fill="rgb(237,216,49)" rx="2" ry="2" /> +<text x="955.02" y="2703.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (2 samples, 0.06%)</title><rect x="954.7" y="485" width="0.6" height="15.0" fill="rgb(213,156,39)" rx="2" ry="2" /> +<text x="957.66" y="495.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.03%)</title><rect x="843.6" y="2357" width="0.3" height="15.0" fill="rgb(222,73,43)" rx="2" ry="2" /> +<text x="846.60" y="2367.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (2 samples, 0.06%)</title><rect x="697.2" y="2469" width="0.6" height="15.0" fill="rgb(224,49,5)" rx="2" ry="2" /> +<text x="700.18" y="2479.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.03%)</title><rect x="878.3" y="2197" width="0.3" height="15.0" fill="rgb(253,166,50)" rx="2" ry="2" /> +<text x="881.31" y="2207.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (2 samples, 0.06%)</title><rect x="954.7" y="613" width="0.6" height="15.0" fill="rgb(215,125,41)" rx="2" ry="2" /> +<text x="957.66" y="623.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (13 samples, 0.36%)</title><rect x="332.6" y="1781" width="4.3" height="15.0" fill="rgb(225,97,47)" rx="2" ry="2" /> +<text x="335.60" y="1791.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.03%)</title><rect x="280.0" y="1909" width="0.4" height="15.0" fill="rgb(243,77,20)" rx="2" ry="2" /> +<text x="283.04" y="1919.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (7 samples, 0.20%)</title><rect x="366.0" y="1925" width="2.3" height="15.0" fill="rgb(209,61,32)" rx="2" ry="2" /> +<text x="368.98" y="1935.5" ></text> +</g> +<g > +<title><unknown> (1 samples, 0.03%)</title><rect x="1174.8" y="3509" width="0.3" height="15.0" fill="rgb(253,126,0)" rx="2" ry="2" /> +<text x="1177.80" y="3519.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="315.1" y="1989" width="0.3" height="15.0" fill="rgb(225,11,19)" rx="2" ry="2" /> +<text x="318.08" y="1999.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="843.9" y="2789" width="0.4" height="15.0" fill="rgb(245,197,37)" rx="2" ry="2" /> +<text x="846.93" y="2799.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (2 samples, 0.06%)</title><rect x="668.1" y="2741" width="0.7" height="15.0" fill="rgb(242,197,37)" rx="2" ry="2" /> +<text x="671.09" y="2751.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.03%)</title><rect x="790.4" y="2261" width="0.3" height="15.0" fill="rgb(251,164,24)" rx="2" ry="2" /> +<text x="793.39" y="2271.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.03%)</title><rect x="313.4" y="2037" width="0.4" height="15.0" fill="rgb(215,171,4)" rx="2" ry="2" /> +<text x="316.43" y="2047.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (692 samples, 19.38%)</title><rect x="420.9" y="2245" width="228.7" height="15.0" fill="rgb(216,130,22)" rx="2" ry="2" /> +<text x="423.85" y="2255.5" >Nsfisis\Waddiwasi\Execution\Ru..</text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (2 samples, 0.06%)</title><rect x="664.1" y="2101" width="0.7" height="15.0" fill="rgb(223,185,28)" rx="2" ry="2" /> +<text x="667.12" y="2111.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (1 samples, 0.03%)</title><rect x="841.6" y="2437" width="0.3" height="15.0" fill="rgb(236,100,50)" rx="2" ry="2" /> +<text x="844.62" y="2447.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Stack::pushValue (1 samples, 0.03%)</title><rect x="895.5" y="2805" width="0.3" height="15.0" fill="rgb(254,26,24)" rx="2" ry="2" /> +<text x="898.50" y="2815.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (2 samples, 0.06%)</title><rect x="842.9" y="2581" width="0.7" height="15.0" fill="rgb(215,8,41)" rx="2" ry="2" /> +<text x="845.94" y="2591.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="401.0" y="1701" width="0.4" height="15.0" fill="rgb(251,136,45)" rx="2" ry="2" /> +<text x="404.02" y="1711.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.03%)</title><rect x="954.7" y="85" width="0.3" height="15.0" fill="rgb(216,165,49)" rx="2" ry="2" /> +<text x="957.66" y="95.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="845.6" y="2501" width="0.3" height="15.0" fill="rgb(251,193,31)" rx="2" ry="2" /> +<text x="848.59" y="2511.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (2 samples, 0.06%)</title><rect x="386.8" y="1621" width="0.7" height="15.0" fill="rgb(251,25,49)" rx="2" ry="2" /> +<text x="389.81" y="1631.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.03%)</title><rect x="894.2" y="2613" width="0.3" height="15.0" fill="rgb(207,41,37)" rx="2" ry="2" /> +<text x="897.17" y="2623.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (1 samples, 0.03%)</title><rect x="847.6" y="2693" width="0.3" height="15.0" fill="rgb(250,79,42)" rx="2" ry="2" /> +<text x="850.57" y="2703.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.03%)</title><rect x="330.9" y="1909" width="0.4" height="15.0" fill="rgb(247,152,7)" rx="2" ry="2" /> +<text x="333.95" y="1919.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (317 samples, 8.88%)</title><rect x="849.6" y="3157" width="104.7" height="15.0" fill="rgb(250,31,31)" rx="2" ry="2" /> +<text x="852.55" y="3167.5" >Nsfisis\Wadd..</text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\ControlFlowResult::Br (1 samples, 0.03%)</title><rect x="421.5" y="1813" width="0.3" height="15.0" fill="rgb(235,174,0)" rx="2" ry="2" /> +<text x="424.51" y="1823.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (2 samples, 0.06%)</title><rect x="251.3" y="2789" width="0.6" height="15.0" fill="rgb(215,87,12)" rx="2" ry="2" /> +<text x="254.29" y="2799.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (4 samples, 0.11%)</title><rect x="954.7" y="3157" width="1.3" height="15.0" fill="rgb(245,123,21)" rx="2" ry="2" /> +<text x="957.66" y="3167.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1,253 samples, 35.10%)</title><rect x="252.3" y="2661" width="414.1" height="15.0" fill="rgb(211,49,33)" rx="2" ry="2" /> +<text x="255.28" y="2671.5" >Nsfisis\Waddiwasi\Execution\Runtime::execInstr</text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="314.1" y="1733" width="0.3" height="15.0" fill="rgb(242,177,53)" rx="2" ry="2" /> +<text x="317.09" y="1743.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (2 samples, 0.06%)</title><rect x="842.3" y="2677" width="0.6" height="15.0" fill="rgb(213,53,1)" rx="2" ry="2" /> +<text x="845.28" y="2687.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.03%)</title><rect x="363.7" y="1525" width="0.3" height="15.0" fill="rgb(247,97,34)" rx="2" ry="2" /> +<text x="366.67" y="1535.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (1 samples, 0.03%)</title><rect x="316.4" y="1125" width="0.3" height="15.0" fill="rgb(208,167,2)" rx="2" ry="2" /> +<text x="319.40" y="1135.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (1,261 samples, 35.32%)</title><rect x="249.6" y="2885" width="416.8" height="15.0" fill="rgb(250,121,42)" rx="2" ry="2" /> +<text x="252.64" y="2895.5" >Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc</text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (2 samples, 0.06%)</title><rect x="954.7" y="517" width="0.6" height="15.0" fill="rgb(226,8,32)" rx="2" ry="2" /> +<text x="957.66" y="527.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (3 samples, 0.08%)</title><rect x="316.1" y="1829" width="1.0" height="15.0" fill="rgb(222,175,27)" rx="2" ry="2" /> +<text x="319.07" y="1839.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="305.2" y="1861" width="0.3" height="15.0" fill="rgb(234,92,0)" rx="2" ry="2" /> +<text x="308.17" y="1871.5" ></text> +</g> +<g > +<title><unknown> (1 samples, 0.03%)</title><rect x="946.1" y="2485" width="0.3" height="15.0" fill="rgb(206,12,27)" rx="2" ry="2" /> +<text x="949.07" y="2495.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (3 samples, 0.08%)</title><rect x="848.6" y="3269" width="1.0" height="15.0" fill="rgb(209,160,29)" rx="2" ry="2" /> +<text x="851.56" y="3279.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.03%)</title><rect x="808.6" y="2357" width="0.3" height="15.0" fill="rgb(244,67,46)" rx="2" ry="2" /> +<text x="811.57" y="2367.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (2 samples, 0.06%)</title><rect x="670.7" y="2421" width="0.7" height="15.0" fill="rgb(250,92,35)" rx="2" ry="2" /> +<text x="673.73" y="2431.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (5 samples, 0.14%)</title><rect x="655.2" y="2197" width="1.7" height="15.0" fill="rgb(238,195,13)" rx="2" ry="2" /> +<text x="658.20" y="2207.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Stack::popValue (1 samples, 0.03%)</title><rect x="940.4" y="2549" width="0.4" height="15.0" fill="rgb(217,6,31)" rx="2" ry="2" /> +<text x="943.45" y="2559.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::deactivateLabel (1 samples, 0.03%)</title><rect x="256.6" y="2197" width="0.3" height="15.0" fill="rgb(237,53,52)" rx="2" ry="2" /> +<text x="259.58" y="2207.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (2 samples, 0.06%)</title><rect x="251.3" y="2805" width="0.6" height="15.0" fill="rgb(212,143,17)" rx="2" ry="2" /> +<text x="254.29" y="2815.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (2 samples, 0.06%)</title><rect x="1104.1" y="2997" width="0.6" height="15.0" fill="rgb(239,88,49)" rx="2" ry="2" /> +<text x="1107.06" y="3007.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Stack::pushValue (1 samples, 0.03%)</title><rect x="798.0" y="2069" width="0.3" height="15.0" fill="rgb(236,51,2)" rx="2" ry="2" /> +<text x="800.99" y="2079.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (19 samples, 0.53%)</title><rect x="867.7" y="2213" width="6.3" height="15.0" fill="rgb(229,90,6)" rx="2" ry="2" /> +<text x="870.73" y="2223.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (19 samples, 0.53%)</title><rect x="696.8" y="2725" width="6.3" height="15.0" fill="rgb(248,108,21)" rx="2" ry="2" /> +<text x="699.85" y="2735.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (68 samples, 1.90%)</title><rect x="368.3" y="2021" width="22.5" height="15.0" fill="rgb(245,203,43)" rx="2" ry="2" /> +<text x="371.30" y="2031.5" >N..</text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.03%)</title><rect x="665.8" y="2325" width="0.3" height="15.0" fill="rgb(249,128,3)" rx="2" ry="2" /> +<text x="668.78" y="2335.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (16 samples, 0.45%)</title><rect x="331.6" y="1973" width="5.3" height="15.0" fill="rgb(213,117,9)" rx="2" ry="2" /> +<text x="334.61" y="1983.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (1 samples, 0.03%)</title><rect x="391.4" y="1845" width="0.4" height="15.0" fill="rgb(218,106,14)" rx="2" ry="2" /> +<text x="394.43" y="1855.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (686 samples, 19.22%)</title><rect x="422.2" y="1749" width="226.7" height="15.0" fill="rgb(235,34,6)" rx="2" ry="2" /> +<text x="425.17" y="1759.5" >Nsfisis\Waddiwasi\Execution\Ru..</text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (4 samples, 0.11%)</title><rect x="246.0" y="3237" width="1.3" height="15.0" fill="rgb(211,29,8)" rx="2" ry="2" /> +<text x="249.00" y="3247.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (2 samples, 0.06%)</title><rect x="270.5" y="2069" width="0.6" height="15.0" fill="rgb(225,77,30)" rx="2" ry="2" /> +<text x="273.46" y="2079.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (2 samples, 0.06%)</title><rect x="954.7" y="2677" width="0.6" height="15.0" fill="rgb(227,80,0)" rx="2" ry="2" /> +<text x="957.66" y="2687.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.03%)</title><rect x="270.8" y="1973" width="0.3" height="15.0" fill="rgb(221,111,42)" rx="2" ry="2" /> +<text x="273.79" y="1983.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (683 samples, 19.13%)</title><rect x="422.8" y="981" width="225.8" height="15.0" fill="rgb(210,73,37)" rx="2" ry="2" /> +<text x="425.83" y="991.5" >Nsfisis\Waddiwasi\Execution\R..</text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doLoadI32 (1 samples, 0.03%)</title><rect x="1099.1" y="3285" width="0.3" height="15.0" fill="rgb(218,229,7)" rx="2" ry="2" /> +<text x="1102.10" y="3295.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Num::I32 (2 samples, 0.06%)</title><rect x="1172.2" y="3509" width="0.6" height="15.0" fill="rgb(232,209,41)" rx="2" ry="2" /> +<text x="1175.15" y="3519.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.03%)</title><rect x="851.2" y="2293" width="0.3" height="15.0" fill="rgb(230,213,29)" rx="2" ry="2" /> +<text x="854.20" y="2303.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (1 samples, 0.03%)</title><rect x="422.8" y="933" width="0.4" height="15.0" fill="rgb(218,208,46)" rx="2" ry="2" /> +<text x="425.83" y="943.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Stack::pushValue (1 samples, 0.03%)</title><rect x="390.1" y="1941" width="0.3" height="15.0" fill="rgb(216,40,7)" rx="2" ry="2" /> +<text x="393.11" y="1951.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="847.2" y="2469" width="0.4" height="15.0" fill="rgb(234,141,37)" rx="2" ry="2" /> +<text x="850.24" y="2479.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.03%)</title><rect x="315.4" y="1781" width="0.3" height="15.0" fill="rgb(217,2,25)" rx="2" ry="2" /> +<text x="318.41" y="1791.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.03%)</title><rect x="952.3" y="2421" width="0.4" height="15.0" fill="rgb(210,126,49)" rx="2" ry="2" /> +<text x="955.35" y="2431.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Stack::pushBool (1 samples, 0.03%)</title><rect x="391.8" y="2133" width="0.3" height="15.0" fill="rgb(254,155,27)" rx="2" ry="2" /> +<text x="394.76" y="2143.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\BinaryFormat\Decoder::{closure}(/home/ken/src/php-waddiwasi/src/BinaryFormat/Decoder.php:1012-1016) (1 samples, 0.03%)</title><rect x="954.0" y="2485" width="0.3" height="15.0" fill="rgb(207,12,12)" rx="2" ry="2" /> +<text x="957.00" y="2495.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (6 samples, 0.17%)</title><rect x="849.6" y="2773" width="1.9" height="15.0" fill="rgb(221,1,8)" rx="2" ry="2" /> +<text x="852.55" y="2783.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (3 samples, 0.08%)</title><rect x="313.4" y="2181" width="1.0" height="15.0" fill="rgb(206,150,12)" rx="2" ry="2" /> +<text x="316.43" y="2191.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (2 samples, 0.06%)</title><rect x="1104.1" y="2789" width="0.6" height="15.0" fill="rgb(225,18,6)" rx="2" ry="2" /> +<text x="1107.06" y="2799.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="420.9" y="1925" width="0.3" height="15.0" fill="rgb(232,75,4)" rx="2" ry="2" /> +<text x="423.85" y="1935.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (3 samples, 0.08%)</title><rect x="940.8" y="2533" width="1.0" height="15.0" fill="rgb(205,27,54)" rx="2" ry="2" /> +<text x="943.78" y="2543.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.03%)</title><rect x="665.8" y="2389" width="0.3" height="15.0" fill="rgb(238,197,42)" rx="2" ry="2" /> +<text x="668.78" y="2399.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.03%)</title><rect x="265.2" y="1653" width="0.3" height="15.0" fill="rgb(218,176,38)" rx="2" ry="2" /> +<text x="268.17" y="1663.5" ></text> +</g> +<g > +<title>{closure}(/home/ken/src/php-waddiwasi/examples/php-on-wasm/php-wasm.php:286-297) (26 samples, 0.73%)</title><rect x="667.4" y="2997" width="8.6" height="15.0" fill="rgb(208,156,20)" rx="2" ry="2" /> +<text x="670.43" y="3007.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (5 samples, 0.14%)</title><rect x="844.3" y="2933" width="1.6" height="15.0" fill="rgb(228,54,4)" rx="2" ry="2" /> +<text x="847.26" y="2943.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (8 samples, 0.22%)</title><rect x="888.2" y="2645" width="2.7" height="15.0" fill="rgb(210,73,28)" rx="2" ry="2" /> +<text x="891.22" y="2655.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.03%)</title><rect x="398.7" y="2133" width="0.3" height="15.0" fill="rgb(218,197,9)" rx="2" ry="2" /> +<text x="401.71" y="2143.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.03%)</title><rect x="1154.6" y="3413" width="0.4" height="15.0" fill="rgb(222,94,18)" rx="2" ry="2" /> +<text x="1157.63" y="3423.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.03%)</title><rect x="410.9" y="2133" width="0.4" height="15.0" fill="rgb(226,71,48)" rx="2" ry="2" /> +<text x="413.94" y="2143.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.03%)</title><rect x="842.6" y="2389" width="0.3" height="15.0" fill="rgb(254,87,19)" rx="2" ry="2" /> +<text x="845.61" y="2399.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.03%)</title><rect x="1177.4" y="3493" width="0.4" height="15.0" fill="rgb(243,57,33)" rx="2" ry="2" /> +<text x="1180.44" y="3503.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Stack::pushValue (1 samples, 0.03%)</title><rect x="662.5" y="2229" width="0.3" height="15.0" fill="rgb(227,188,28)" rx="2" ry="2" /> +<text x="665.47" y="2239.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="399.0" y="1861" width="0.4" height="15.0" fill="rgb(210,187,9)" rx="2" ry="2" /> +<text x="402.04" y="1871.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.03%)</title><rect x="280.7" y="1909" width="0.3" height="15.0" fill="rgb(236,94,18)" rx="2" ry="2" /> +<text x="283.71" y="1919.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="411.6" y="1989" width="0.3" height="15.0" fill="rgb(208,77,3)" rx="2" ry="2" /> +<text x="414.60" y="1999.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (2 samples, 0.06%)</title><rect x="251.3" y="2757" width="0.6" height="15.0" fill="rgb(215,196,38)" rx="2" ry="2" /> +<text x="254.29" y="2767.5" ></text> +</g> +<g > +<title>{closure}(/home/ken/src/php-waddiwasi/vendor/composer/ClassLoader.php:575-577) (1 samples, 0.03%)</title><rect x="13.3" y="3269" width="0.3" height="15.0" fill="rgb(245,99,51)" rx="2" ry="2" /> +<text x="16.31" y="3279.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="1104.4" y="2437" width="0.3" height="15.0" fill="rgb(213,215,47)" rx="2" ry="2" /> +<text x="1107.39" y="2447.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.03%)</title><rect x="845.6" y="2485" width="0.3" height="15.0" fill="rgb(235,216,36)" rx="2" ry="2" /> +<text x="848.59" y="2495.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (2 samples, 0.06%)</title><rect x="1097.1" y="3317" width="0.7" height="15.0" fill="rgb(211,53,1)" rx="2" ry="2" /> +<text x="1100.12" y="3327.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (2 samples, 0.06%)</title><rect x="302.2" y="1509" width="0.7" height="15.0" fill="rgb(237,57,27)" rx="2" ry="2" /> +<text x="305.19" y="1519.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Stack::popValue (3 samples, 0.08%)</title><rect x="193.4" y="3429" width="1.0" height="15.0" fill="rgb(244,98,17)" rx="2" ry="2" /> +<text x="196.45" y="3439.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (15 samples, 0.42%)</title><rect x="803.6" y="2245" width="5.0" height="15.0" fill="rgb(231,88,16)" rx="2" ry="2" /> +<text x="806.61" y="2255.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (5 samples, 0.14%)</title><rect x="1135.5" y="3253" width="1.6" height="15.0" fill="rgb(242,169,16)" rx="2" ry="2" /> +<text x="1138.46" y="3263.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\BinaryFormat\Decoder::decodeLocalIdx (1 samples, 0.03%)</title><rect x="13.6" y="3365" width="0.4" height="15.0" fill="rgb(206,71,4)" rx="2" ry="2" /> +<text x="16.64" y="3375.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (6 samples, 0.17%)</title><rect x="849.6" y="2821" width="1.9" height="15.0" fill="rgb(228,207,9)" rx="2" ry="2" /> +<text x="852.55" y="2831.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.03%)</title><rect x="849.2" y="2805" width="0.4" height="15.0" fill="rgb(249,26,39)" rx="2" ry="2" /> +<text x="852.22" y="2815.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="256.9" y="2085" width="0.3" height="15.0" fill="rgb(246,223,4)" rx="2" ry="2" /> +<text x="259.91" y="2095.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (9 samples, 0.25%)</title><rect x="403.0" y="1845" width="3.0" height="15.0" fill="rgb(207,42,26)" rx="2" ry="2" /> +<text x="406.00" y="1855.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (1,823 samples, 51.06%)</title><rect x="246.0" y="3365" width="602.6" height="15.0" fill="rgb(214,174,18)" rx="2" ry="2" /> +<text x="249.00" y="3375.5" >Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc</text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (2 samples, 0.06%)</title><rect x="661.8" y="2117" width="0.7" height="15.0" fill="rgb(242,90,5)" rx="2" ry="2" /> +<text x="664.81" y="2127.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="411.6" y="1765" width="0.3" height="15.0" fill="rgb(229,72,40)" rx="2" ry="2" /> +<text x="414.60" y="1775.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (4 samples, 0.11%)</title><rect x="311.4" y="1653" width="1.4" height="15.0" fill="rgb(225,34,14)" rx="2" ry="2" /> +<text x="314.45" y="1663.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (129 samples, 3.61%)</title><rect x="349.1" y="2133" width="42.7" height="15.0" fill="rgb(237,73,36)" rx="2" ry="2" /> +<text x="352.13" y="2143.5" >Nsfi..</text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (38 samples, 1.06%)</title><rect x="258.9" y="2197" width="12.6" height="15.0" fill="rgb(233,153,50)" rx="2" ry="2" /> +<text x="261.89" y="2207.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.03%)</title><rect x="1165.2" y="3477" width="0.3" height="15.0" fill="rgb(241,59,41)" rx="2" ry="2" /> +<text x="1168.21" y="3487.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (144 samples, 4.03%)</title><rect x="272.1" y="2261" width="47.6" height="15.0" fill="rgb(212,102,20)" rx="2" ry="2" /> +<text x="275.11" y="2271.5" >Nsfi..</text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.03%)</title><rect x="954.3" y="2773" width="0.4" height="15.0" fill="rgb(208,85,14)" rx="2" ry="2" /> +<text x="957.33" y="2783.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (1 samples, 0.03%)</title><rect x="847.6" y="2613" width="0.3" height="15.0" fill="rgb(244,107,10)" rx="2" ry="2" /> +<text x="850.57" y="2623.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (1 samples, 0.03%)</title><rect x="325.3" y="2197" width="0.4" height="15.0" fill="rgb(241,191,42)" rx="2" ry="2" /> +<text x="328.33" y="2207.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (3 samples, 0.08%)</title><rect x="841.9" y="2869" width="1.0" height="15.0" fill="rgb(226,20,19)" rx="2" ry="2" /> +<text x="844.95" y="2879.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="706.8" y="2629" width="0.3" height="15.0" fill="rgb(213,96,44)" rx="2" ry="2" /> +<text x="709.76" y="2639.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (3 samples, 0.08%)</title><rect x="313.4" y="2149" width="1.0" height="15.0" fill="rgb(241,168,37)" rx="2" ry="2" /> +<text x="316.43" y="2159.5" ></text> +</g> +<g > +<title><unknown> (1 samples, 0.03%)</title><rect x="870.4" y="1669" width="0.3" height="15.0" fill="rgb(216,78,41)" rx="2" ry="2" /> +<text x="873.38" y="1679.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="270.8" y="1797" width="0.3" height="15.0" fill="rgb(244,15,13)" rx="2" ry="2" /> +<text x="273.79" y="1807.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Stack::popI32 (1 samples, 0.03%)</title><rect x="940.1" y="2549" width="0.3" height="15.0" fill="rgb(240,128,10)" rx="2" ry="2" /> +<text x="943.12" y="2559.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (2 samples, 0.06%)</title><rect x="316.1" y="1621" width="0.6" height="15.0" fill="rgb(238,210,54)" rx="2" ry="2" /> +<text x="319.07" y="1631.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.03%)</title><rect x="894.8" y="2645" width="0.4" height="15.0" fill="rgb(242,10,6)" rx="2" ry="2" /> +<text x="897.83" y="2655.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (208 samples, 5.83%)</title><rect x="323.3" y="2245" width="68.8" height="15.0" fill="rgb(218,190,31)" rx="2" ry="2" /> +<text x="326.34" y="2255.5" >Nsfisis..</text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Stack::pushValue (1 samples, 0.03%)</title><rect x="258.6" y="1973" width="0.3" height="15.0" fill="rgb(222,64,51)" rx="2" ry="2" /> +<text x="261.56" y="1983.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.03%)</title><rect x="407.6" y="2197" width="0.4" height="15.0" fill="rgb(213,21,7)" rx="2" ry="2" /> +<text x="410.63" y="2207.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Stack::pushI32 (1 samples, 0.03%)</title><rect x="692.2" y="2485" width="0.3" height="15.0" fill="rgb(221,61,22)" rx="2" ry="2" /> +<text x="695.22" y="2495.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (1 samples, 0.03%)</title><rect x="847.9" y="2725" width="0.3" height="15.0" fill="rgb(241,123,32)" rx="2" ry="2" /> +<text x="850.90" y="2735.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="671.4" y="2725" width="0.3" height="15.0" fill="rgb(241,68,33)" rx="2" ry="2" /> +<text x="674.39" y="2735.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (686 samples, 19.22%)</title><rect x="422.2" y="1877" width="226.7" height="15.0" fill="rgb(247,140,28)" rx="2" ry="2" /> +<text x="425.17" y="1887.5" >Nsfisis\Waddiwasi\Execution\Ru..</text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.03%)</title><rect x="839.3" y="2133" width="0.3" height="15.0" fill="rgb(247,64,1)" rx="2" ry="2" /> +<text x="842.31" y="2143.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.03%)</title><rect x="665.4" y="2357" width="0.4" height="15.0" fill="rgb(252,213,33)" rx="2" ry="2" /> +<text x="668.45" y="2367.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (12 samples, 0.34%)</title><rect x="263.8" y="1989" width="4.0" height="15.0" fill="rgb(243,155,17)" rx="2" ry="2" /> +<text x="266.85" y="1999.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (685 samples, 19.19%)</title><rect x="422.2" y="1189" width="226.4" height="15.0" fill="rgb(241,205,20)" rx="2" ry="2" /> +<text x="425.17" y="1199.5" >Nsfisis\Waddiwasi\Execution\R..</text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (229 samples, 6.41%)</title><rect x="707.4" y="2245" width="75.7" height="15.0" fill="rgb(216,10,40)" rx="2" ry="2" /> +<text x="710.42" y="2255.5" >Nsfisis\..</text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="420.2" y="2053" width="0.3" height="15.0" fill="rgb(239,215,29)" rx="2" ry="2" /> +<text x="423.19" y="2063.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="661.8" y="1957" width="0.3" height="15.0" fill="rgb(245,136,30)" rx="2" ry="2" /> +<text x="664.81" y="1967.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="301.5" y="1669" width="0.4" height="15.0" fill="rgb(242,107,6)" rx="2" ry="2" /> +<text x="304.53" y="1679.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.03%)</title><rect x="697.5" y="2101" width="0.3" height="15.0" fill="rgb(253,17,31)" rx="2" ry="2" /> +<text x="700.51" y="2111.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (3 samples, 0.08%)</title><rect x="847.2" y="2901" width="1.0" height="15.0" fill="rgb(207,181,39)" rx="2" ry="2" /> +<text x="850.24" y="2911.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="851.2" y="2533" width="0.3" height="15.0" fill="rgb(253,97,24)" rx="2" ry="2" /> +<text x="854.20" y="2543.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.03%)</title><rect x="1139.1" y="3477" width="0.3" height="15.0" fill="rgb(242,59,34)" rx="2" ry="2" /> +<text x="1142.10" y="3487.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.03%)</title><rect x="846.9" y="2837" width="0.3" height="15.0" fill="rgb(249,41,47)" rx="2" ry="2" /> +<text x="849.91" y="2847.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.03%)</title><rect x="885.2" y="2613" width="0.4" height="15.0" fill="rgb(233,31,2)" rx="2" ry="2" /> +<text x="888.25" y="2623.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.03%)</title><rect x="951.7" y="2613" width="0.3" height="15.0" fill="rgb(228,207,11)" rx="2" ry="2" /> +<text x="954.69" y="2623.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\MemInst::storeI32 (26 samples, 0.73%)</title><rect x="182.5" y="3445" width="8.6" height="15.0" fill="rgb(238,165,16)" rx="2" ry="2" /> +<text x="185.54" y="3455.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (10 samples, 0.28%)</title><rect x="246.0" y="3317" width="3.3" height="15.0" fill="rgb(241,159,18)" rx="2" ry="2" /> +<text x="249.00" y="3327.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="702.8" y="2501" width="0.3" height="15.0" fill="rgb(244,228,45)" rx="2" ry="2" /> +<text x="705.80" y="2511.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.03%)</title><rect x="372.3" y="1685" width="0.3" height="15.0" fill="rgb(249,108,9)" rx="2" ry="2" /> +<text x="375.26" y="1695.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.03%)</title><rect x="664.8" y="2261" width="0.3" height="15.0" fill="rgb(232,207,11)" rx="2" ry="2" /> +<text x="667.78" y="2271.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.03%)</title><rect x="249.3" y="2741" width="0.3" height="15.0" fill="rgb(239,84,15)" rx="2" ry="2" /> +<text x="252.31" y="2751.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.03%)</title><rect x="274.8" y="2101" width="0.3" height="15.0" fill="rgb(232,89,51)" rx="2" ry="2" /> +<text x="277.76" y="2111.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (3 samples, 0.08%)</title><rect x="650.2" y="2197" width="1.0" height="15.0" fill="rgb(242,80,0)" rx="2" ry="2" /> +<text x="653.24" y="2207.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (2 samples, 0.06%)</title><rect x="669.4" y="2725" width="0.7" height="15.0" fill="rgb(249,199,5)" rx="2" ry="2" /> +<text x="672.41" y="2735.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.03%)</title><rect x="315.1" y="2069" width="0.3" height="15.0" fill="rgb(213,38,30)" rx="2" ry="2" /> +<text x="318.08" y="2079.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.03%)</title><rect x="347.1" y="1909" width="0.4" height="15.0" fill="rgb(217,211,50)" rx="2" ry="2" /> +<text x="350.14" y="1919.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (2 samples, 0.06%)</title><rect x="699.2" y="2437" width="0.6" height="15.0" fill="rgb(233,15,3)" rx="2" ry="2" /> +<text x="702.16" y="2447.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="420.9" y="2053" width="0.3" height="15.0" fill="rgb(238,90,4)" rx="2" ry="2" /> +<text x="423.85" y="2063.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\ControlFlowResult::Br (1 samples, 0.03%)</title><rect x="873.7" y="2101" width="0.3" height="15.0" fill="rgb(243,152,20)" rx="2" ry="2" /> +<text x="876.68" y="2111.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (3 samples, 0.08%)</title><rect x="404.7" y="1445" width="0.9" height="15.0" fill="rgb(250,55,30)" rx="2" ry="2" /> +<text x="407.66" y="1455.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (685 samples, 19.19%)</title><rect x="422.2" y="1301" width="226.4" height="15.0" fill="rgb(253,2,45)" rx="2" ry="2" /> +<text x="425.17" y="1311.5" >Nsfisis\Waddiwasi\Execution\R..</text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (41 samples, 1.15%)</title><rect x="860.5" y="2309" width="13.5" height="15.0" fill="rgb(206,222,20)" rx="2" ry="2" /> +<text x="863.46" y="2319.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.03%)</title><rect x="669.1" y="2677" width="0.3" height="15.0" fill="rgb(208,189,3)" rx="2" ry="2" /> +<text x="672.08" y="2687.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\ControlFlowResult::Br (1 samples, 0.03%)</title><rect x="848.9" y="2853" width="0.3" height="15.0" fill="rgb(243,91,49)" rx="2" ry="2" /> +<text x="851.89" y="2863.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (171 samples, 4.79%)</title><rect x="896.5" y="2773" width="56.5" height="15.0" fill="rgb(230,183,38)" rx="2" ry="2" /> +<text x="899.49" y="2783.5" >Nsfis..</text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="894.8" y="2565" width="0.4" height="15.0" fill="rgb(241,137,26)" rx="2" ry="2" /> +<text x="897.83" y="2575.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (4 samples, 0.11%)</title><rect x="696.8" y="2581" width="1.4" height="15.0" fill="rgb(207,133,10)" rx="2" ry="2" /> +<text x="699.85" y="2591.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="855.8" y="2405" width="0.4" height="15.0" fill="rgb(245,180,48)" rx="2" ry="2" /> +<text x="858.83" y="2415.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (50 samples, 1.40%)</title><rect x="1121.9" y="3477" width="16.5" height="15.0" fill="rgb(208,118,54)" rx="2" ry="2" /> +<text x="1124.91" y="3487.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.03%)</title><rect x="267.5" y="1909" width="0.3" height="15.0" fill="rgb(244,130,0)" rx="2" ry="2" /> +<text x="270.48" y="1919.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.03%)</title><rect x="262.2" y="2005" width="0.3" height="15.0" fill="rgb(209,6,17)" rx="2" ry="2" /> +<text x="265.20" y="2015.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="279.4" y="1989" width="0.3" height="15.0" fill="rgb(254,15,44)" rx="2" ry="2" /> +<text x="282.38" y="1999.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="372.6" y="1669" width="0.3" height="15.0" fill="rgb(244,41,44)" rx="2" ry="2" /> +<text x="375.59" y="1679.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (1 samples, 0.03%)</title><rect x="834.0" y="2085" width="0.3" height="15.0" fill="rgb(211,202,18)" rx="2" ry="2" /> +<text x="837.02" y="2095.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.03%)</title><rect x="784.1" y="2709" width="0.3" height="15.0" fill="rgb(236,51,20)" rx="2" ry="2" /> +<text x="787.11" y="2719.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.03%)</title><rect x="267.5" y="1877" width="0.3" height="15.0" fill="rgb(220,159,50)" rx="2" ry="2" /> +<text x="270.48" y="1887.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.03%)</title><rect x="847.2" y="2613" width="0.4" height="15.0" fill="rgb(227,173,25)" rx="2" ry="2" /> +<text x="850.24" y="2623.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doLoadI32 (1 samples, 0.03%)</title><rect x="299.9" y="1845" width="0.3" height="15.0" fill="rgb(242,196,3)" rx="2" ry="2" /> +<text x="302.88" y="1855.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (230 samples, 6.44%)</title><rect x="707.4" y="2565" width="76.0" height="15.0" fill="rgb(230,31,17)" rx="2" ry="2" /> +<text x="710.42" y="2575.5" >Nsfisis\..</text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.03%)</title><rect x="954.0" y="2965" width="0.3" height="15.0" fill="rgb(209,4,49)" rx="2" ry="2" /> +<text x="957.00" y="2975.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.03%)</title><rect x="652.2" y="2421" width="0.4" height="15.0" fill="rgb(225,144,7)" rx="2" ry="2" /> +<text x="655.22" y="2431.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (2 samples, 0.06%)</title><rect x="246.3" y="3141" width="0.7" height="15.0" fill="rgb(230,4,0)" rx="2" ry="2" /> +<text x="249.33" y="3151.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (4 samples, 0.11%)</title><rect x="374.9" y="1541" width="1.3" height="15.0" fill="rgb(213,193,21)" rx="2" ry="2" /> +<text x="377.91" y="1551.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doLoadI32 (1 samples, 0.03%)</title><rect x="674.7" y="2357" width="0.3" height="15.0" fill="rgb(208,152,35)" rx="2" ry="2" /> +<text x="677.70" y="2367.5" ></text> +</g> +<g > +<title>print_r (1 samples, 0.03%)</title><rect x="883.3" y="2677" width="0.3" height="15.0" fill="rgb(210,4,10)" rx="2" ry="2" /> +<text x="886.27" y="2687.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (38 samples, 1.06%)</title><rect x="353.4" y="1973" width="12.6" height="15.0" fill="rgb(215,152,5)" rx="2" ry="2" /> +<text x="356.42" y="1983.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (4 samples, 0.11%)</title><rect x="954.7" y="2917" width="1.3" height="15.0" fill="rgb(206,179,32)" rx="2" ry="2" /> +<text x="957.66" y="2927.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="941.8" y="2565" width="0.3" height="15.0" fill="rgb(240,48,16)" rx="2" ry="2" /> +<text x="944.77" y="2575.5" ></text> +</g> +<g > +<title><unknown> (1 samples, 0.03%)</title><rect x="870.4" y="1957" width="0.3" height="15.0" fill="rgb(211,25,51)" rx="2" ry="2" /> +<text x="873.38" y="1967.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="954.7" y="101" width="0.3" height="15.0" fill="rgb(205,25,48)" rx="2" ry="2" /> +<text x="957.66" y="111.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.03%)</title><rect x="406.6" y="1877" width="0.4" height="15.0" fill="rgb(249,41,48)" rx="2" ry="2" /> +<text x="409.64" y="1887.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (1 samples, 0.03%)</title><rect x="702.8" y="2645" width="0.3" height="15.0" fill="rgb(254,17,30)" rx="2" ry="2" /> +<text x="705.80" y="2655.5" ></text> +</g> +<g > +<title><unknown> (1 samples, 0.03%)</title><rect x="870.4" y="1845" width="0.3" height="15.0" fill="rgb(206,35,5)" rx="2" ry="2" /> +<text x="873.38" y="1855.5" ></text> +</g> +<g > +<title><unknown> (1 samples, 0.03%)</title><rect x="1159.3" y="3365" width="0.3" height="15.0" fill="rgb(247,145,49)" rx="2" ry="2" /> +<text x="1162.26" y="3375.5" ></text> +</g> +<g > +<title>{closure}(/home/ken/src/php-waddiwasi/examples/php-on-wasm/php-wasm.php:346-353) (328 samples, 9.19%)</title><rect x="676.0" y="2997" width="108.4" height="15.0" fill="rgb(210,229,36)" rx="2" ry="2" /> +<text x="679.02" y="3007.5" >{closure}(/ho..</text> +</g> +<g > +<title><unknown> (1 samples, 0.03%)</title><rect x="870.4" y="1925" width="0.3" height="15.0" fill="rgb(205,188,10)" rx="2" ry="2" /> +<text x="873.38" y="1935.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (685 samples, 19.19%)</title><rect x="422.2" y="1621" width="226.4" height="15.0" fill="rgb(217,173,14)" rx="2" ry="2" /> +<text x="425.17" y="1631.5" >Nsfisis\Waddiwasi\Execution\R..</text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (1 samples, 0.03%)</title><rect x="288.3" y="1957" width="0.3" height="15.0" fill="rgb(232,154,40)" rx="2" ry="2" /> +<text x="291.31" y="1967.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (682 samples, 19.10%)</title><rect x="423.2" y="949" width="225.4" height="15.0" fill="rgb(206,75,0)" rx="2" ry="2" /> +<text x="426.17" y="959.5" >Nsfisis\Waddiwasi\Execution\R..</text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.03%)</title><rect x="649.2" y="2101" width="0.4" height="15.0" fill="rgb(237,228,46)" rx="2" ry="2" /> +<text x="652.25" y="2111.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doLoadI32 (1 samples, 0.03%)</title><rect x="790.4" y="2229" width="0.3" height="15.0" fill="rgb(208,109,27)" rx="2" ry="2" /> +<text x="793.39" y="2239.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="391.4" y="1893" width="0.4" height="15.0" fill="rgb(226,85,15)" rx="2" ry="2" /> +<text x="394.43" y="1903.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (41 samples, 1.15%)</title><rect x="860.5" y="2341" width="13.5" height="15.0" fill="rgb(226,1,45)" rx="2" ry="2" /> +<text x="863.46" y="2351.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="406.6" y="1893" width="0.4" height="15.0" fill="rgb(208,159,28)" rx="2" ry="2" /> +<text x="409.64" y="1903.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Stack::pushValue (20 samples, 0.56%)</title><rect x="1168.8" y="3541" width="6.7" height="15.0" fill="rgb(253,161,54)" rx="2" ry="2" /> +<text x="1171.85" y="3551.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="938.5" y="2437" width="0.3" height="15.0" fill="rgb(251,218,22)" rx="2" ry="2" /> +<text x="941.46" y="2447.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="783.8" y="2629" width="0.3" height="15.0" fill="rgb(248,214,5)" rx="2" ry="2" /> +<text x="786.78" y="2639.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (230 samples, 6.44%)</title><rect x="707.4" y="2373" width="76.0" height="15.0" fill="rgb(246,139,9)" rx="2" ry="2" /> +<text x="710.42" y="2383.5" >Nsfisis\..</text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (3 samples, 0.08%)</title><rect x="250.3" y="2741" width="1.0" height="15.0" fill="rgb(205,53,14)" rx="2" ry="2" /> +<text x="253.30" y="2751.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\FuncInsts\Wasm::__construct (1 samples, 0.03%)</title><rect x="67.8" y="3477" width="0.4" height="15.0" fill="rgb(214,129,31)" rx="2" ry="2" /> +<text x="70.84" y="3487.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1,263 samples, 35.38%)</title><rect x="249.6" y="2917" width="417.5" height="15.0" fill="rgb(221,5,5)" rx="2" ry="2" /> +<text x="252.64" y="2927.5" >Nsfisis\Waddiwasi\Execution\Runtime::execInstr</text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (13 samples, 0.36%)</title><rect x="671.7" y="2757" width="4.3" height="15.0" fill="rgb(237,147,4)" rx="2" ry="2" /> +<text x="674.73" y="2767.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (686 samples, 19.22%)</title><rect x="422.2" y="1925" width="226.7" height="15.0" fill="rgb(254,73,16)" rx="2" ry="2" /> +<text x="425.17" y="1935.5" >Nsfisis\Waddiwasi\Execution\Ru..</text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.03%)</title><rect x="894.8" y="2549" width="0.4" height="15.0" fill="rgb(252,150,46)" rx="2" ry="2" /> +<text x="897.83" y="2559.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="894.8" y="2629" width="0.4" height="15.0" fill="rgb(240,69,44)" rx="2" ry="2" /> +<text x="897.83" y="2639.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (305 samples, 8.54%)</title><rect x="852.9" y="2917" width="100.8" height="15.0" fill="rgb(233,109,45)" rx="2" ry="2" /> +<text x="855.86" y="2927.5" >Nsfisis\Wadd..</text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (2 samples, 0.06%)</title><rect x="839.0" y="2149" width="0.6" height="15.0" fill="rgb(238,57,43)" rx="2" ry="2" /> +<text x="841.97" y="2159.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.03%)</title><rect x="271.8" y="2229" width="0.3" height="15.0" fill="rgb(206,218,36)" rx="2" ry="2" /> +<text x="274.78" y="2239.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (6 samples, 0.17%)</title><rect x="849.6" y="2901" width="1.9" height="15.0" fill="rgb(220,13,45)" rx="2" ry="2" /> +<text x="852.55" y="2911.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="894.8" y="2501" width="0.4" height="15.0" fill="rgb(223,31,43)" rx="2" ry="2" /> +<text x="897.83" y="2511.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (14 samples, 0.39%)</title><rect x="395.4" y="2245" width="4.6" height="15.0" fill="rgb(213,102,3)" rx="2" ry="2" /> +<text x="398.40" y="2255.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Stack::popI32 (1 samples, 0.03%)</title><rect x="1105.7" y="3477" width="0.3" height="15.0" fill="rgb(253,159,38)" rx="2" ry="2" /> +<text x="1108.71" y="3487.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::expandBlockType (681 samples, 19.08%)</title><rect x="423.5" y="725" width="225.1" height="15.0" fill="rgb(229,43,1)" rx="2" ry="2" /> +<text x="426.50" y="735.5" >Nsfisis\Waddiwasi\Execution\R..</text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.03%)</title><rect x="707.1" y="2741" width="0.3" height="15.0" fill="rgb(229,0,37)" rx="2" ry="2" /> +<text x="710.09" y="2751.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.03%)</title><rect x="841.0" y="2293" width="0.3" height="15.0" fill="rgb(250,213,26)" rx="2" ry="2" /> +<text x="843.96" y="2303.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.03%)</title><rect x="314.1" y="1653" width="0.3" height="15.0" fill="rgb(210,142,47)" rx="2" ry="2" /> +<text x="317.09" y="1663.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.03%)</title><rect x="302.5" y="1365" width="0.4" height="15.0" fill="rgb(206,66,50)" rx="2" ry="2" /> +<text x="305.52" y="1375.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="307.8" y="1637" width="0.3" height="15.0" fill="rgb(238,157,50)" rx="2" ry="2" /> +<text x="310.81" y="1647.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (1 samples, 0.03%)</title><rect x="783.4" y="2693" width="0.4" height="15.0" fill="rgb(249,205,18)" rx="2" ry="2" /> +<text x="786.45" y="2703.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (3 samples, 0.08%)</title><rect x="1107.4" y="3509" width="1.0" height="15.0" fill="rgb(210,38,46)" rx="2" ry="2" /> +<text x="1110.37" y="3519.5" ></text> +</g> +<g > +<title><unknown> (1 samples, 0.03%)</title><rect x="870.4" y="1157" width="0.3" height="15.0" fill="rgb(231,181,27)" rx="2" ry="2" /> +<text x="873.38" y="1167.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="677.0" y="2725" width="0.3" height="15.0" fill="rgb(249,114,9)" rx="2" ry="2" /> +<text x="680.01" y="2735.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (1 samples, 0.03%)</title><rect x="954.0" y="2517" width="0.3" height="15.0" fill="rgb(223,143,26)" rx="2" ry="2" /> +<text x="957.00" y="2527.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Stack::pushBool (4 samples, 0.11%)</title><rect x="776.2" y="2197" width="1.3" height="15.0" fill="rgb(240,108,34)" rx="2" ry="2" /> +<text x="779.17" y="2207.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="942.4" y="2613" width="0.4" height="15.0" fill="rgb(248,98,2)" rx="2" ry="2" /> +<text x="945.43" y="2623.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (16 samples, 0.45%)</title><rect x="803.3" y="2261" width="5.3" height="15.0" fill="rgb(224,187,26)" rx="2" ry="2" /> +<text x="806.28" y="2271.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (4 samples, 0.11%)</title><rect x="315.7" y="1877" width="1.4" height="15.0" fill="rgb(246,176,7)" rx="2" ry="2" /> +<text x="318.74" y="1887.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (31 samples, 0.87%)</title><rect x="293.3" y="1957" width="10.2" height="15.0" fill="rgb(250,121,43)" rx="2" ry="2" /> +<text x="296.27" y="1967.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (2 samples, 0.06%)</title><rect x="370.9" y="1637" width="0.7" height="15.0" fill="rgb(216,31,11)" rx="2" ry="2" /> +<text x="373.94" y="1647.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.03%)</title><rect x="401.0" y="1877" width="0.4" height="15.0" fill="rgb(249,105,51)" rx="2" ry="2" /> +<text x="404.02" y="1887.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.03%)</title><rect x="411.6" y="1941" width="0.3" height="15.0" fill="rgb(227,91,27)" rx="2" ry="2" /> +<text x="414.60" y="1951.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (19 samples, 0.53%)</title><rect x="696.8" y="2741" width="6.3" height="15.0" fill="rgb(230,157,7)" rx="2" ry="2" /> +<text x="699.85" y="2751.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (7 samples, 0.20%)</title><rect x="373.9" y="1861" width="2.3" height="15.0" fill="rgb(220,85,21)" rx="2" ry="2" /> +<text x="376.92" y="1871.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (2 samples, 0.06%)</title><rect x="421.2" y="2021" width="0.6" height="15.0" fill="rgb(228,28,43)" rx="2" ry="2" /> +<text x="424.18" y="2031.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.03%)</title><rect x="847.9" y="2677" width="0.3" height="15.0" fill="rgb(224,59,34)" rx="2" ry="2" /> +<text x="850.90" y="2687.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (4 samples, 0.11%)</title><rect x="844.6" y="2885" width="1.3" height="15.0" fill="rgb(229,19,33)" rx="2" ry="2" /> +<text x="847.59" y="2895.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.03%)</title><rect x="664.5" y="1973" width="0.3" height="15.0" fill="rgb(221,214,32)" rx="2" ry="2" /> +<text x="667.45" y="1983.5" ></text> +</g> +<g > +<title><unknown> (1 samples, 0.03%)</title><rect x="870.4" y="1045" width="0.3" height="15.0" fill="rgb(233,104,23)" rx="2" ry="2" /> +<text x="873.38" y="1055.5" ></text> +</g> +<g > +<title><unknown> (1 samples, 0.03%)</title><rect x="870.4" y="1125" width="0.3" height="15.0" fill="rgb(238,169,27)" rx="2" ry="2" /> +<text x="873.38" y="1135.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.03%)</title><rect x="316.4" y="949" width="0.3" height="15.0" fill="rgb(217,210,40)" rx="2" ry="2" /> +<text x="319.40" y="959.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (16 samples, 0.45%)</title><rect x="384.5" y="1749" width="5.3" height="15.0" fill="rgb(207,64,10)" rx="2" ry="2" /> +<text x="387.49" y="1759.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (30 samples, 0.84%)</title><rect x="652.9" y="2325" width="9.9" height="15.0" fill="rgb(218,164,16)" rx="2" ry="2" /> +<text x="655.89" y="2335.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (2 samples, 0.06%)</title><rect x="663.5" y="2021" width="0.6" height="15.0" fill="rgb(217,156,20)" rx="2" ry="2" /> +<text x="666.46" y="2031.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\StackEntries\Value::__construct (1 samples, 0.03%)</title><rect x="271.5" y="2101" width="0.3" height="15.0" fill="rgb(235,229,4)" rx="2" ry="2" /> +<text x="274.45" y="2111.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.03%)</title><rect x="830.7" y="2165" width="0.3" height="15.0" fill="rgb(232,135,41)" rx="2" ry="2" /> +<text x="833.71" y="2175.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="315.4" y="1733" width="0.3" height="15.0" fill="rgb(209,22,7)" rx="2" ry="2" /> +<text x="318.41" y="1743.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.03%)</title><rect x="410.9" y="1973" width="0.4" height="15.0" fill="rgb(229,133,48)" rx="2" ry="2" /> +<text x="413.94" y="1983.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (6 samples, 0.17%)</title><rect x="673.0" y="2405" width="2.0" height="15.0" fill="rgb(218,62,22)" rx="2" ry="2" /> +<text x="676.05" y="2415.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.03%)</title><rect x="420.9" y="1813" width="0.3" height="15.0" fill="rgb(232,112,17)" rx="2" ry="2" /> +<text x="423.85" y="1823.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="1153.6" y="3237" width="0.4" height="15.0" fill="rgb(210,134,13)" rx="2" ry="2" /> +<text x="1156.64" y="3247.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.03%)</title><rect x="696.5" y="2517" width="0.3" height="15.0" fill="rgb(231,71,28)" rx="2" ry="2" /> +<text x="699.52" y="2527.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="266.8" y="1605" width="0.4" height="15.0" fill="rgb(250,156,4)" rx="2" ry="2" /> +<text x="269.82" y="1615.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.03%)</title><rect x="699.5" y="2421" width="0.3" height="15.0" fill="rgb(205,89,49)" rx="2" ry="2" /> +<text x="702.49" y="2431.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="422.8" y="837" width="0.4" height="15.0" fill="rgb(216,119,31)" rx="2" ry="2" /> +<text x="425.83" y="847.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="422.8" y="869" width="0.4" height="15.0" fill="rgb(220,49,36)" rx="2" ry="2" /> +<text x="425.83" y="879.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (2 samples, 0.06%)</title><rect x="691.2" y="2373" width="0.7" height="15.0" fill="rgb(210,107,8)" rx="2" ry="2" /> +<text x="694.23" y="2383.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="1121.6" y="3397" width="0.3" height="15.0" fill="rgb(229,123,32)" rx="2" ry="2" /> +<text x="1124.58" y="3407.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (1 samples, 0.03%)</title><rect x="411.6" y="1749" width="0.3" height="15.0" fill="rgb(205,97,14)" rx="2" ry="2" /> +<text x="414.60" y="1759.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (1 samples, 0.03%)</title><rect x="346.2" y="2005" width="0.3" height="15.0" fill="rgb(214,74,51)" rx="2" ry="2" /> +<text x="349.15" y="2015.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (4 samples, 0.11%)</title><rect x="954.7" y="2949" width="1.3" height="15.0" fill="rgb(220,228,52)" rx="2" ry="2" /> +<text x="957.66" y="2959.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.03%)</title><rect x="421.5" y="1973" width="0.3" height="15.0" fill="rgb(214,157,21)" rx="2" ry="2" /> +<text x="424.51" y="1983.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (7 samples, 0.20%)</title><rect x="288.6" y="1957" width="2.4" height="15.0" fill="rgb(226,136,10)" rx="2" ry="2" /> +<text x="291.64" y="1967.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (111 samples, 3.11%)</title><rect x="905.1" y="2597" width="36.7" height="15.0" fill="rgb(208,228,9)" rx="2" ry="2" /> +<text x="908.08" y="2607.5" >Nsf..</text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.03%)</title><rect x="270.8" y="1941" width="0.3" height="15.0" fill="rgb(245,88,20)" rx="2" ry="2" /> +<text x="273.79" y="1951.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (17 samples, 0.48%)</title><rect x="868.4" y="2197" width="5.6" height="15.0" fill="rgb(213,38,46)" rx="2" ry="2" /> +<text x="871.39" y="2207.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="316.4" y="1221" width="0.3" height="15.0" fill="rgb(212,102,40)" rx="2" ry="2" /> +<text x="319.40" y="1231.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (1 samples, 0.03%)</title><rect x="246.0" y="3189" width="0.3" height="15.0" fill="rgb(238,153,38)" rx="2" ry="2" /> +<text x="249.00" y="3199.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (6 samples, 0.17%)</title><rect x="256.9" y="2181" width="2.0" height="15.0" fill="rgb(223,147,33)" rx="2" ry="2" /> +<text x="259.91" y="2191.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (5 samples, 0.14%)</title><rect x="303.8" y="1957" width="1.7" height="15.0" fill="rgb(208,41,27)" rx="2" ry="2" /> +<text x="306.84" y="1967.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Stack::pushI32 (1 samples, 0.03%)</title><rect x="783.8" y="2805" width="0.3" height="15.0" fill="rgb(218,24,50)" rx="2" ry="2" /> +<text x="786.78" y="2815.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.03%)</title><rect x="655.9" y="2101" width="0.3" height="15.0" fill="rgb(253,182,19)" rx="2" ry="2" /> +<text x="658.86" y="2111.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="954.3" y="2629" width="0.4" height="15.0" fill="rgb(219,3,16)" rx="2" ry="2" /> +<text x="957.33" y="2639.5" ></text> +</g> +<g > +<title><unknown> (1 samples, 0.03%)</title><rect x="1182.1" y="3477" width="0.3" height="15.0" fill="rgb(218,23,33)" rx="2" ry="2" /> +<text x="1185.07" y="3487.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="1165.2" y="3397" width="0.3" height="15.0" fill="rgb(231,149,24)" rx="2" ry="2" /> +<text x="1168.21" y="3407.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="790.1" y="1829" width="0.3" height="15.0" fill="rgb(209,23,26)" rx="2" ry="2" /> +<text x="793.06" y="1839.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="391.1" y="1925" width="0.3" height="15.0" fill="rgb(238,53,46)" rx="2" ry="2" /> +<text x="394.10" y="1935.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="314.1" y="1509" width="0.3" height="15.0" fill="rgb(252,156,11)" rx="2" ry="2" /> +<text x="317.09" y="1519.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.03%)</title><rect x="1104.4" y="2517" width="0.3" height="15.0" fill="rgb(211,196,5)" rx="2" ry="2" /> +<text x="1107.39" y="2527.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (3 samples, 0.08%)</title><rect x="404.7" y="1621" width="0.9" height="15.0" fill="rgb(210,53,50)" rx="2" ry="2" /> +<text x="407.66" y="1631.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (78 samples, 2.18%)</title><rect x="677.3" y="2757" width="25.8" height="15.0" fill="rgb(218,1,42)" rx="2" ry="2" /> +<text x="680.34" y="2767.5" >N..</text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (2 samples, 0.06%)</title><rect x="954.7" y="2181" width="0.6" height="15.0" fill="rgb(229,54,13)" rx="2" ry="2" /> +<text x="957.66" y="2191.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="1104.4" y="2021" width="0.3" height="15.0" fill="rgb(254,43,37)" rx="2" ry="2" /> +<text x="1107.39" y="2031.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (2 samples, 0.06%)</title><rect x="318.7" y="2085" width="0.7" height="15.0" fill="rgb(239,200,15)" rx="2" ry="2" /> +<text x="321.72" y="2095.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="847.6" y="2533" width="0.3" height="15.0" fill="rgb(217,223,30)" rx="2" ry="2" /> +<text x="850.57" y="2543.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (3 samples, 0.08%)</title><rect x="357.4" y="1717" width="1.0" height="15.0" fill="rgb(240,215,2)" rx="2" ry="2" /> +<text x="360.39" y="1727.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="847.2" y="2725" width="0.4" height="15.0" fill="rgb(226,121,29)" rx="2" ry="2" /> +<text x="850.24" y="2735.5" ></text> +</g> +<g > +<title><unknown> (1 samples, 0.03%)</title><rect x="870.4" y="1989" width="0.3" height="15.0" fill="rgb(251,59,36)" rx="2" ry="2" /> +<text x="873.38" y="1999.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="391.4" y="1733" width="0.4" height="15.0" fill="rgb(217,46,6)" rx="2" ry="2" /> +<text x="394.43" y="1743.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (3 samples, 0.08%)</title><rect x="698.8" y="2501" width="1.0" height="15.0" fill="rgb(237,15,11)" rx="2" ry="2" /> +<text x="701.83" y="2511.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.03%)</title><rect x="314.1" y="1685" width="0.3" height="15.0" fill="rgb(230,2,11)" rx="2" ry="2" /> +<text x="317.09" y="1695.5" ></text> +</g> +<g > +<title><unknown> (1 samples, 0.03%)</title><rect x="1094.8" y="3413" width="0.3" height="15.0" fill="rgb(249,121,30)" rx="2" ry="2" /> +<text x="1097.81" y="3423.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (6 samples, 0.17%)</title><rect x="673.0" y="2373" width="2.0" height="15.0" fill="rgb(240,54,4)" rx="2" ry="2" /> +<text x="676.05" y="2383.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\MemInst::storeByte (1 samples, 0.03%)</title><rect x="775.8" y="2165" width="0.4" height="15.0" fill="rgb(244,190,14)" rx="2" ry="2" /> +<text x="778.84" y="2175.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (692 samples, 19.38%)</title><rect x="420.9" y="2293" width="228.7" height="15.0" fill="rgb(247,205,15)" rx="2" ry="2" /> +<text x="423.85" y="2303.5" >Nsfisis\Waddiwasi\Execution\Ru..</text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (2 samples, 0.06%)</title><rect x="354.4" y="1845" width="0.7" height="15.0" fill="rgb(245,130,13)" rx="2" ry="2" /> +<text x="357.41" y="1855.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.03%)</title><rect x="881.0" y="2549" width="0.3" height="15.0" fill="rgb(244,75,49)" rx="2" ry="2" /> +<text x="883.95" y="2559.5" ></text> +</g> +<g > +<title><unknown> (1 samples, 0.03%)</title><rect x="1105.4" y="3333" width="0.3" height="15.0" fill="rgb(209,11,18)" rx="2" ry="2" /> +<text x="1108.38" y="3343.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (9 samples, 0.25%)</title><rect x="875.0" y="2261" width="3.0" height="15.0" fill="rgb(232,59,13)" rx="2" ry="2" /> +<text x="878.00" y="2271.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\ControlFlowResult::Br (1 samples, 0.03%)</title><rect x="774.2" y="2181" width="0.3" height="15.0" fill="rgb(208,92,28)" rx="2" ry="2" /> +<text x="777.19" y="2191.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::invokeByFuncAddr (1,263 samples, 35.38%)</title><rect x="249.6" y="2981" width="417.5" height="15.0" fill="rgb(228,104,7)" rx="2" ry="2" /> +<text x="252.64" y="2991.5" >Nsfisis\Waddiwasi\Execution\Runtime::invokeByFuncAddr</text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.03%)</title><rect x="420.9" y="1845" width="0.3" height="15.0" fill="rgb(238,102,41)" rx="2" ry="2" /> +<text x="423.85" y="1855.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="938.8" y="2469" width="0.3" height="15.0" fill="rgb(248,163,18)" rx="2" ry="2" /> +<text x="941.80" y="2479.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="368.0" y="1893" width="0.3" height="15.0" fill="rgb(250,111,42)" rx="2" ry="2" /> +<text x="370.97" y="1903.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (2 samples, 0.06%)</title><rect x="407.0" y="2181" width="0.6" height="15.0" fill="rgb(226,128,10)" rx="2" ry="2" /> +<text x="409.97" y="2191.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="855.8" y="2437" width="0.4" height="15.0" fill="rgb(224,13,8)" rx="2" ry="2" /> +<text x="858.83" y="2447.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Stack::pushValue (1 samples, 0.03%)</title><rect x="939.8" y="2501" width="0.3" height="15.0" fill="rgb(228,86,37)" rx="2" ry="2" /> +<text x="942.79" y="2511.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.03%)</title><rect x="266.8" y="1685" width="0.4" height="15.0" fill="rgb(227,217,20)" rx="2" ry="2" /> +<text x="269.82" y="1695.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.03%)</title><rect x="298.6" y="1653" width="0.3" height="15.0" fill="rgb(232,64,43)" rx="2" ry="2" /> +<text x="301.55" y="1663.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.03%)</title><rect x="1104.4" y="1973" width="0.3" height="15.0" fill="rgb(233,110,11)" rx="2" ry="2" /> +<text x="1107.39" y="1983.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.03%)</title><rect x="314.1" y="1589" width="0.3" height="15.0" fill="rgb(214,78,20)" rx="2" ry="2" /> +<text x="317.09" y="1599.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.03%)</title><rect x="697.5" y="1909" width="0.3" height="15.0" fill="rgb(226,148,40)" rx="2" ry="2" /> +<text x="700.51" y="1919.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (6 samples, 0.17%)</title><rect x="260.2" y="1957" width="2.0" height="15.0" fill="rgb(234,179,21)" rx="2" ry="2" /> +<text x="263.21" y="1967.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="878.3" y="2245" width="0.3" height="15.0" fill="rgb(227,53,53)" rx="2" ry="2" /> +<text x="881.31" y="2255.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.03%)</title><rect x="878.3" y="2357" width="0.3" height="15.0" fill="rgb(225,25,25)" rx="2" ry="2" /> +<text x="881.31" y="2367.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (3 samples, 0.08%)</title><rect x="404.7" y="1269" width="0.9" height="15.0" fill="rgb(216,176,37)" rx="2" ry="2" /> +<text x="407.66" y="1279.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.03%)</title><rect x="702.5" y="2293" width="0.3" height="15.0" fill="rgb(254,166,27)" rx="2" ry="2" /> +<text x="705.46" y="2303.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (2 samples, 0.06%)</title><rect x="371.9" y="1749" width="0.7" height="15.0" fill="rgb(250,208,4)" rx="2" ry="2" /> +<text x="374.93" y="1759.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (174 samples, 4.87%)</title><rect x="784.4" y="2597" width="57.5" height="15.0" fill="rgb(252,206,11)" rx="2" ry="2" /> +<text x="787.44" y="2607.5" >Nsfisi..</text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="783.8" y="2725" width="0.3" height="15.0" fill="rgb(244,116,27)" rx="2" ry="2" /> +<text x="786.78" y="2735.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (2 samples, 0.06%)</title><rect x="950.0" y="2469" width="0.7" height="15.0" fill="rgb(206,131,20)" rx="2" ry="2" /> +<text x="953.03" y="2479.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (8 samples, 0.22%)</title><rect x="658.2" y="2165" width="2.6" height="15.0" fill="rgb(223,225,35)" rx="2" ry="2" /> +<text x="661.17" y="2175.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (1 samples, 0.03%)</title><rect x="661.5" y="2229" width="0.3" height="15.0" fill="rgb(238,210,19)" rx="2" ry="2" /> +<text x="664.48" y="2239.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.03%)</title><rect x="941.8" y="2549" width="0.3" height="15.0" fill="rgb(238,159,44)" rx="2" ry="2" /> +<text x="944.77" y="2559.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (5 samples, 0.14%)</title><rect x="876.3" y="2213" width="1.7" height="15.0" fill="rgb(205,206,38)" rx="2" ry="2" /> +<text x="879.32" y="2223.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="1121.6" y="3333" width="0.3" height="15.0" fill="rgb(227,191,40)" rx="2" ry="2" /> +<text x="1124.58" y="3343.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (20 samples, 0.56%)</title><rect x="313.1" y="2229" width="6.6" height="15.0" fill="rgb(240,46,48)" rx="2" ry="2" /> +<text x="316.10" y="2239.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="250.0" y="2661" width="0.3" height="15.0" fill="rgb(209,51,33)" rx="2" ry="2" /> +<text x="252.97" y="2671.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (6 samples, 0.17%)</title><rect x="662.8" y="2245" width="2.0" height="15.0" fill="rgb(205,79,14)" rx="2" ry="2" /> +<text x="665.80" y="2255.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (3 samples, 0.08%)</title><rect x="848.6" y="3253" width="1.0" height="15.0" fill="rgb(231,89,34)" rx="2" ry="2" /> +<text x="851.56" y="3263.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="670.1" y="2437" width="0.3" height="15.0" fill="rgb(227,113,1)" rx="2" ry="2" /> +<text x="673.07" y="2447.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (3 samples, 0.08%)</title><rect x="404.7" y="1653" width="0.9" height="15.0" fill="rgb(224,93,1)" rx="2" ry="2" /> +<text x="407.66" y="1663.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (1 samples, 0.03%)</title><rect x="1077.3" y="3445" width="0.3" height="15.0" fill="rgb(234,33,3)" rx="2" ry="2" /> +<text x="1080.29" y="3455.5" ></text> +</g> +<g > +<title>assert (1 samples, 0.03%)</title><rect x="939.1" y="2501" width="0.4" height="15.0" fill="rgb(248,77,29)" rx="2" ry="2" /> +<text x="942.13" y="2511.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (3 samples, 0.08%)</title><rect x="307.1" y="1765" width="1.0" height="15.0" fill="rgb(233,158,10)" rx="2" ry="2" /> +<text x="310.15" y="1775.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (4 samples, 0.11%)</title><rect x="371.6" y="1781" width="1.3" height="15.0" fill="rgb(226,180,24)" rx="2" ry="2" /> +<text x="374.60" y="1791.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\ControlFlowResult::Br (1 samples, 0.03%)</title><rect x="830.4" y="2149" width="0.3" height="15.0" fill="rgb(235,154,39)" rx="2" ry="2" /> +<text x="833.38" y="2159.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (10 samples, 0.28%)</title><rect x="268.1" y="2149" width="3.4" height="15.0" fill="rgb(250,200,23)" rx="2" ry="2" /> +<text x="271.15" y="2159.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (8 samples, 0.22%)</title><rect x="944.7" y="2581" width="2.7" height="15.0" fill="rgb(245,135,21)" rx="2" ry="2" /> +<text x="947.75" y="2591.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (2 samples, 0.06%)</title><rect x="952.0" y="2533" width="0.7" height="15.0" fill="rgb(208,103,37)" rx="2" ry="2" /> +<text x="955.02" y="2543.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (16 samples, 0.45%)</title><rect x="262.5" y="2021" width="5.3" height="15.0" fill="rgb(232,176,39)" rx="2" ry="2" /> +<text x="265.53" y="2031.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (2 samples, 0.06%)</title><rect x="370.3" y="1685" width="0.6" height="15.0" fill="rgb(211,227,17)" rx="2" ry="2" /> +<text x="373.28" y="1695.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (1 samples, 0.03%)</title><rect x="391.1" y="2053" width="0.3" height="15.0" fill="rgb(212,178,48)" rx="2" ry="2" /> +<text x="394.10" y="2063.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="648.6" y="1445" width="0.3" height="15.0" fill="rgb(240,84,43)" rx="2" ry="2" /> +<text x="651.59" y="1455.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.03%)</title><rect x="851.2" y="2421" width="0.3" height="15.0" fill="rgb(235,191,5)" rx="2" ry="2" /> +<text x="854.20" y="2431.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.03%)</title><rect x="1153.6" y="3221" width="0.4" height="15.0" fill="rgb(207,124,50)" rx="2" ry="2" /> +<text x="1156.64" y="3231.5" ></text> +</g> +<g > +<title>Composer\Autoload\ClassLoader::loadClass (1 samples, 0.03%)</title><rect x="848.9" y="2837" width="0.3" height="15.0" fill="rgb(205,18,6)" rx="2" ry="2" /> +<text x="851.89" y="2847.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (2 samples, 0.06%)</title><rect x="702.1" y="2325" width="0.7" height="15.0" fill="rgb(232,55,42)" rx="2" ry="2" /> +<text x="705.13" y="2335.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doStoreI32 (1 samples, 0.03%)</title><rect x="824.1" y="2165" width="0.3" height="15.0" fill="rgb(210,8,23)" rx="2" ry="2" /> +<text x="827.10" y="2175.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (2 samples, 0.06%)</title><rect x="302.2" y="1573" width="0.7" height="15.0" fill="rgb(238,6,31)" rx="2" ry="2" /> +<text x="305.19" y="1583.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.03%)</title><rect x="894.5" y="2485" width="0.3" height="15.0" fill="rgb(250,206,24)" rx="2" ry="2" /> +<text x="897.50" y="2495.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::expandBlockType (1 samples, 0.03%)</title><rect x="285.0" y="2005" width="0.3" height="15.0" fill="rgb(210,41,39)" rx="2" ry="2" /> +<text x="288.00" y="2015.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (2 samples, 0.06%)</title><rect x="954.7" y="2453" width="0.6" height="15.0" fill="rgb(237,117,12)" rx="2" ry="2" /> +<text x="957.66" y="2463.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (3 samples, 0.08%)</title><rect x="946.4" y="2469" width="1.0" height="15.0" fill="rgb(233,152,23)" rx="2" ry="2" /> +<text x="949.40" y="2479.5" ></text> +</g> +<g > +<title>print_r (1 samples, 0.03%)</title><rect x="1175.1" y="3509" width="0.4" height="15.0" fill="rgb(249,199,46)" rx="2" ry="2" /> +<text x="1178.13" y="3519.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (16 samples, 0.45%)</title><rect x="401.4" y="2005" width="5.2" height="15.0" fill="rgb(221,176,31)" rx="2" ry="2" /> +<text x="404.35" y="2015.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.03%)</title><rect x="702.8" y="2485" width="0.3" height="15.0" fill="rgb(231,44,22)" rx="2" ry="2" /> +<text x="705.80" y="2495.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.03%)</title><rect x="670.1" y="2709" width="0.3" height="15.0" fill="rgb(217,58,37)" rx="2" ry="2" /> +<text x="673.07" y="2719.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.03%)</title><rect x="391.1" y="1877" width="0.3" height="15.0" fill="rgb(249,209,26)" rx="2" ry="2" /> +<text x="394.10" y="1887.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (1 samples, 0.03%)</title><rect x="249.6" y="2757" width="0.4" height="15.0" fill="rgb(230,132,15)" rx="2" ry="2" /> +<text x="252.64" y="2767.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (1 samples, 0.03%)</title><rect x="263.5" y="1637" width="0.3" height="15.0" fill="rgb(254,14,38)" rx="2" ry="2" /> +<text x="266.52" y="1647.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="1153.6" y="3301" width="0.4" height="15.0" fill="rgb(212,53,49)" rx="2" ry="2" /> +<text x="1156.64" y="3311.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.03%)</title><rect x="306.2" y="1717" width="0.3" height="15.0" fill="rgb(247,229,50)" rx="2" ry="2" /> +<text x="309.16" y="1727.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="669.4" y="2533" width="0.3" height="15.0" fill="rgb(225,4,5)" rx="2" ry="2" /> +<text x="672.41" y="2543.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="406.6" y="1989" width="0.4" height="15.0" fill="rgb(220,218,37)" rx="2" ry="2" /> +<text x="409.64" y="1999.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="846.6" y="2693" width="0.3" height="15.0" fill="rgb(244,226,38)" rx="2" ry="2" /> +<text x="849.58" y="2703.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.03%)</title><rect x="407.6" y="2165" width="0.4" height="15.0" fill="rgb(229,7,16)" rx="2" ry="2" /> +<text x="410.63" y="2175.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (20 samples, 0.56%)</title><rect x="410.6" y="2341" width="6.6" height="15.0" fill="rgb(241,62,34)" rx="2" ry="2" /> +<text x="413.61" y="2351.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.03%)</title><rect x="894.5" y="2741" width="0.3" height="15.0" fill="rgb(237,22,7)" rx="2" ry="2" /> +<text x="897.50" y="2751.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (1 samples, 0.03%)</title><rect x="348.1" y="1797" width="0.4" height="15.0" fill="rgb(240,216,37)" rx="2" ry="2" /> +<text x="351.13" y="1807.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.03%)</title><rect x="661.8" y="1845" width="0.3" height="15.0" fill="rgb(218,162,2)" rx="2" ry="2" /> +<text x="664.81" y="1855.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.03%)</title><rect x="955.3" y="2709" width="0.4" height="15.0" fill="rgb(247,20,24)" rx="2" ry="2" /> +<text x="958.32" y="2719.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.03%)</title><rect x="315.4" y="1845" width="0.3" height="15.0" fill="rgb(224,105,7)" rx="2" ry="2" /> +<text x="318.41" y="1855.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="1107.4" y="3269" width="0.3" height="15.0" fill="rgb(230,196,0)" rx="2" ry="2" /> +<text x="1110.37" y="3279.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="307.5" y="1573" width="0.3" height="15.0" fill="rgb(206,224,40)" rx="2" ry="2" /> +<text x="310.48" y="1583.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (4 samples, 0.11%)</title><rect x="248.0" y="3013" width="1.3" height="15.0" fill="rgb(222,185,34)" rx="2" ry="2" /> +<text x="250.98" y="3023.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Stack::pushBool (2 samples, 0.06%)</title><rect x="1140.1" y="3509" width="0.7" height="15.0" fill="rgb(216,24,38)" rx="2" ry="2" /> +<text x="1143.09" y="3519.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (40 samples, 1.12%)</title><rect x="679.3" y="2549" width="13.2" height="15.0" fill="rgb(207,128,10)" rx="2" ry="2" /> +<text x="682.33" y="2559.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.03%)</title><rect x="391.1" y="2005" width="0.3" height="15.0" fill="rgb(225,215,40)" rx="2" ry="2" /> +<text x="394.10" y="2015.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.03%)</title><rect x="358.4" y="1461" width="0.3" height="15.0" fill="rgb(230,198,54)" rx="2" ry="2" /> +<text x="361.38" y="1471.5" ></text> +</g> +<g > +<title><unknown> (1 samples, 0.03%)</title><rect x="870.4" y="1621" width="0.3" height="15.0" fill="rgb(254,8,12)" rx="2" ry="2" /> +<text x="873.38" y="1631.5" ></text> +</g> +<g > +<title>print_r (1 samples, 0.03%)</title><rect x="834.0" y="1909" width="0.3" height="15.0" fill="rgb(207,165,32)" rx="2" ry="2" /> +<text x="837.02" y="1919.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (2 samples, 0.06%)</title><rect x="954.7" y="1109" width="0.6" height="15.0" fill="rgb(210,95,51)" rx="2" ry="2" /> +<text x="957.66" y="1119.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (3 samples, 0.08%)</title><rect x="331.6" y="1749" width="1.0" height="15.0" fill="rgb(254,3,31)" rx="2" ry="2" /> +<text x="334.61" y="1759.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.03%)</title><rect x="662.1" y="1909" width="0.4" height="15.0" fill="rgb(206,119,10)" rx="2" ry="2" /> +<text x="665.14" y="1919.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\StackEntry::Value (1 samples, 0.03%)</title><rect x="1105.4" y="3349" width="0.3" height="15.0" fill="rgb(247,32,5)" rx="2" ry="2" /> +<text x="1108.38" y="3359.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Stack::popValue (1 samples, 0.03%)</title><rect x="834.0" y="1941" width="0.3" height="15.0" fill="rgb(205,60,27)" rx="2" ry="2" /> +<text x="837.02" y="1951.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (2 samples, 0.06%)</title><rect x="839.0" y="2229" width="0.6" height="15.0" fill="rgb(227,167,27)" rx="2" ry="2" /> +<text x="841.97" y="2239.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.03%)</title><rect x="371.9" y="1653" width="0.4" height="15.0" fill="rgb(215,171,2)" rx="2" ry="2" /> +<text x="374.93" y="1663.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Stack::pushI32 (88 samples, 2.46%)</title><rect x="198.7" y="3477" width="29.1" height="15.0" fill="rgb(232,96,30)" rx="2" ry="2" /> +<text x="201.73" y="3487.5" >Ns..</text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (9 samples, 0.25%)</title><rect x="672.1" y="2677" width="2.9" height="15.0" fill="rgb(215,43,19)" rx="2" ry="2" /> +<text x="675.06" y="2687.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="1105.4" y="3429" width="0.3" height="15.0" fill="rgb(251,70,42)" rx="2" ry="2" /> +<text x="1108.38" y="3439.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (4 samples, 0.11%)</title><rect x="388.5" y="1605" width="1.3" height="15.0" fill="rgb(229,13,51)" rx="2" ry="2" /> +<text x="391.46" y="1615.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (31 samples, 0.87%)</title><rect x="652.6" y="2341" width="10.2" height="15.0" fill="rgb(237,141,21)" rx="2" ry="2" /> +<text x="655.55" y="2351.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (3 samples, 0.08%)</title><rect x="404.7" y="1301" width="0.9" height="15.0" fill="rgb(226,177,54)" rx="2" ry="2" /> +<text x="407.66" y="1311.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="251.9" y="2725" width="0.4" height="15.0" fill="rgb(239,139,29)" rx="2" ry="2" /> +<text x="254.95" y="2735.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.03%)</title><rect x="316.4" y="1461" width="0.3" height="15.0" fill="rgb(220,166,29)" rx="2" ry="2" /> +<text x="319.40" y="1471.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Stack::pushI32 (1 samples, 0.03%)</title><rect x="953.3" y="2837" width="0.4" height="15.0" fill="rgb(235,212,10)" rx="2" ry="2" /> +<text x="956.34" y="2847.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (2 samples, 0.06%)</title><rect x="849.6" y="2293" width="0.6" height="15.0" fill="rgb(217,49,18)" rx="2" ry="2" /> +<text x="852.55" y="2303.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::deactivateLabel (1 samples, 0.03%)</title><rect x="337.6" y="2053" width="0.3" height="15.0" fill="rgb(227,204,6)" rx="2" ry="2" /> +<text x="340.56" y="2063.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.03%)</title><rect x="697.5" y="2165" width="0.3" height="15.0" fill="rgb(235,92,50)" rx="2" ry="2" /> +<text x="700.51" y="2175.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (3 samples, 0.08%)</title><rect x="404.7" y="1541" width="0.9" height="15.0" fill="rgb(235,149,4)" rx="2" ry="2" /> +<text x="407.66" y="1551.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="670.1" y="2565" width="0.3" height="15.0" fill="rgb(216,181,25)" rx="2" ry="2" /> +<text x="673.07" y="2575.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="952.3" y="2469" width="0.4" height="15.0" fill="rgb(254,128,22)" rx="2" ry="2" /> +<text x="955.35" y="2479.5" ></text> +</g> +<g > +<title>Composer\Autoload\ClassLoader::loadClass (1 samples, 0.03%)</title><rect x="13.3" y="3285" width="0.3" height="15.0" fill="rgb(207,102,21)" rx="2" ry="2" /> +<text x="16.31" y="3295.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Stack::popRef (1 samples, 0.03%)</title><rect x="195.4" y="3461" width="0.4" height="15.0" fill="rgb(242,7,29)" rx="2" ry="2" /> +<text x="198.43" y="3471.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (6 samples, 0.17%)</title><rect x="846.6" y="3141" width="2.0" height="15.0" fill="rgb(224,54,16)" rx="2" ry="2" /> +<text x="849.58" y="3151.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (229 samples, 6.41%)</title><rect x="707.4" y="2261" width="75.7" height="15.0" fill="rgb(242,164,23)" rx="2" ry="2" /> +<text x="710.42" y="2271.5" >Nsfisis\..</text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="847.9" y="2661" width="0.3" height="15.0" fill="rgb(243,223,27)" rx="2" ry="2" /> +<text x="850.90" y="2671.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="790.1" y="1957" width="0.3" height="15.0" fill="rgb(214,15,19)" rx="2" ry="2" /> +<text x="793.06" y="1967.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="656.5" y="2053" width="0.4" height="15.0" fill="rgb(232,227,18)" rx="2" ry="2" /> +<text x="659.52" y="2063.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (26 samples, 0.73%)</title><rect x="667.4" y="2885" width="8.6" height="15.0" fill="rgb(239,207,23)" rx="2" ry="2" /> +<text x="670.43" y="2895.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.03%)</title><rect x="1117.3" y="3381" width="0.3" height="15.0" fill="rgb(221,46,5)" rx="2" ry="2" /> +<text x="1120.28" y="3391.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="341.2" y="1893" width="0.3" height="15.0" fill="rgb(241,183,27)" rx="2" ry="2" /> +<text x="344.19" y="1903.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (64 samples, 1.79%)</title><rect x="857.5" y="2549" width="21.1" height="15.0" fill="rgb(250,217,31)" rx="2" ry="2" /> +<text x="860.48" y="2559.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.03%)</title><rect x="314.1" y="1781" width="0.3" height="15.0" fill="rgb(206,14,47)" rx="2" ry="2" /> +<text x="317.09" y="1791.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (10 samples, 0.28%)</title><rect x="684.0" y="2421" width="3.3" height="15.0" fill="rgb(215,80,54)" rx="2" ry="2" /> +<text x="686.96" y="2431.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (6 samples, 0.17%)</title><rect x="668.8" y="2773" width="1.9" height="15.0" fill="rgb(206,187,21)" rx="2" ry="2" /> +<text x="671.75" y="2783.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (49 samples, 1.37%)</title><rect x="392.1" y="2293" width="16.2" height="15.0" fill="rgb(237,146,48)" rx="2" ry="2" /> +<text x="395.10" y="2303.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (229 samples, 6.41%)</title><rect x="707.4" y="2277" width="75.7" height="15.0" fill="rgb(219,114,4)" rx="2" ry="2" /> +<text x="710.42" y="2287.5" >Nsfisis\..</text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (2 samples, 0.06%)</title><rect x="263.2" y="1861" width="0.6" height="15.0" fill="rgb(241,229,54)" rx="2" ry="2" /> +<text x="266.19" y="1871.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (1 samples, 0.03%)</title><rect x="315.1" y="2085" width="0.3" height="15.0" fill="rgb(205,139,13)" rx="2" ry="2" /> +<text x="318.08" y="2095.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.03%)</title><rect x="251.9" y="2741" width="0.4" height="15.0" fill="rgb(218,74,6)" rx="2" ry="2" /> +<text x="254.95" y="2751.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (2 samples, 0.06%)</title><rect x="842.9" y="2469" width="0.7" height="15.0" fill="rgb(217,213,41)" rx="2" ry="2" /> +<text x="845.94" y="2479.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Stack::popValue (1 samples, 0.03%)</title><rect x="880.6" y="2485" width="0.4" height="15.0" fill="rgb(236,223,47)" rx="2" ry="2" /> +<text x="883.62" y="2495.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.03%)</title><rect x="250.0" y="2677" width="0.3" height="15.0" fill="rgb(245,183,4)" rx="2" ry="2" /> +<text x="252.97" y="2687.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1,253 samples, 35.10%)</title><rect x="252.3" y="2565" width="414.1" height="15.0" fill="rgb(237,66,37)" rx="2" ry="2" /> +<text x="255.28" y="2575.5" >Nsfisis\Waddiwasi\Execution\Runtime::execInstr</text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="316.4" y="1189" width="0.3" height="15.0" fill="rgb(232,18,13)" rx="2" ry="2" /> +<text x="319.40" y="1199.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (5 samples, 0.14%)</title><rect x="265.5" y="1813" width="1.7" height="15.0" fill="rgb(209,102,46)" rx="2" ry="2" /> +<text x="268.50" y="1823.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (8 samples, 0.22%)</title><rect x="370.3" y="1973" width="2.6" height="15.0" fill="rgb(218,15,38)" rx="2" ry="2" /> +<text x="373.28" y="1983.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (2 samples, 0.06%)</title><rect x="296.9" y="1653" width="0.7" height="15.0" fill="rgb(232,35,27)" rx="2" ry="2" /> +<text x="299.90" y="1663.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (2 samples, 0.06%)</title><rect x="954.7" y="2373" width="0.6" height="15.0" fill="rgb(253,43,40)" rx="2" ry="2" /> +<text x="957.66" y="2383.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doStoreI32 (1 samples, 0.03%)</title><rect x="807.6" y="2229" width="0.3" height="15.0" fill="rgb(207,226,0)" rx="2" ry="2" /> +<text x="810.57" y="2239.5" ></text> +</g> +<g > +<title>in_array (1 samples, 0.03%)</title><rect x="1189.7" y="3541" width="0.3" height="15.0" fill="rgb(220,201,31)" rx="2" ry="2" /> +<text x="1192.67" y="3551.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="263.5" y="1573" width="0.3" height="15.0" fill="rgb(247,101,10)" rx="2" ry="2" /> +<text x="266.52" y="1583.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (1 samples, 0.03%)</title><rect x="371.9" y="1669" width="0.4" height="15.0" fill="rgb(231,218,42)" rx="2" ry="2" /> +<text x="374.93" y="1679.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.03%)</title><rect x="280.0" y="1813" width="0.4" height="15.0" fill="rgb(210,146,24)" rx="2" ry="2" /> +<text x="283.04" y="1823.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doStoreI32 (1 samples, 0.03%)</title><rect x="686.6" y="2389" width="0.3" height="15.0" fill="rgb(235,200,42)" rx="2" ry="2" /> +<text x="689.60" y="2399.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="832.0" y="2181" width="0.4" height="15.0" fill="rgb(235,12,38)" rx="2" ry="2" /> +<text x="835.03" y="2191.5" ></text> +</g> +<g > +<title><unknown> (1 samples, 0.03%)</title><rect x="870.4" y="981" width="0.3" height="15.0" fill="rgb(231,132,48)" rx="2" ry="2" /> +<text x="873.38" y="991.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.03%)</title><rect x="1104.4" y="2229" width="0.3" height="15.0" fill="rgb(214,145,22)" rx="2" ry="2" /> +<text x="1107.39" y="2239.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.03%)</title><rect x="834.0" y="2037" width="0.3" height="15.0" fill="rgb(251,221,38)" rx="2" ry="2" /> +<text x="837.02" y="2047.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (2 samples, 0.06%)</title><rect x="1136.5" y="3109" width="0.6" height="15.0" fill="rgb(217,39,4)" rx="2" ry="2" /> +<text x="1139.45" y="3119.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="346.2" y="1957" width="0.3" height="15.0" fill="rgb(217,77,3)" rx="2" ry="2" /> +<text x="349.15" y="1967.5" ></text> +</g> +<g > +<title><unknown> (1 samples, 0.03%)</title><rect x="870.4" y="1733" width="0.3" height="15.0" fill="rgb(246,193,31)" rx="2" ry="2" /> +<text x="873.38" y="1743.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (1,807 samples, 50.62%)</title><rect x="249.3" y="3221" width="597.3" height="15.0" fill="rgb(215,10,20)" rx="2" ry="2" /> +<text x="252.31" y="3231.5" >Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc</text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.03%)</title><rect x="1104.4" y="2069" width="0.3" height="15.0" fill="rgb(222,89,39)" rx="2" ry="2" /> +<text x="1107.39" y="2079.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="661.8" y="1829" width="0.3" height="15.0" fill="rgb(252,188,43)" rx="2" ry="2" /> +<text x="664.81" y="1839.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (6 samples, 0.17%)</title><rect x="849.6" y="2629" width="1.9" height="15.0" fill="rgb(252,68,24)" rx="2" ry="2" /> +<text x="852.55" y="2639.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\ControlFlowResult::Br (1 samples, 0.03%)</title><rect x="870.4" y="2165" width="0.3" height="15.0" fill="rgb(216,40,44)" rx="2" ry="2" /> +<text x="873.38" y="2175.5" ></text> +</g> +<g > +<title><unknown> (1 samples, 0.03%)</title><rect x="705.8" y="2613" width="0.3" height="15.0" fill="rgb(249,188,27)" rx="2" ry="2" /> +<text x="708.77" y="2623.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.03%)</title><rect x="246.0" y="2997" width="0.3" height="15.0" fill="rgb(217,184,44)" rx="2" ry="2" /> +<text x="249.00" y="3007.5" ></text> +</g> +<g > +<title><unknown> (1 samples, 0.03%)</title><rect x="883.3" y="2693" width="0.3" height="15.0" fill="rgb(254,151,50)" rx="2" ry="2" /> +<text x="886.27" y="2703.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="954.0" y="2757" width="0.3" height="15.0" fill="rgb(241,87,47)" rx="2" ry="2" /> +<text x="957.00" y="2767.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Stack::pushBool (1 samples, 0.03%)</title><rect x="848.6" y="2901" width="0.3" height="15.0" fill="rgb(211,175,33)" rx="2" ry="2" /> +<text x="851.56" y="2911.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.03%)</title><rect x="265.2" y="1749" width="0.3" height="15.0" fill="rgb(233,44,43)" rx="2" ry="2" /> +<text x="268.17" y="1759.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (2 samples, 0.06%)</title><rect x="665.1" y="2421" width="0.7" height="15.0" fill="rgb(214,29,20)" rx="2" ry="2" /> +<text x="668.11" y="2431.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.03%)</title><rect x="670.1" y="2517" width="0.3" height="15.0" fill="rgb(224,187,23)" rx="2" ry="2" /> +<text x="673.07" y="2527.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="1104.4" y="2117" width="0.3" height="15.0" fill="rgb(245,89,20)" rx="2" ry="2" /> +<text x="1107.39" y="2127.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.03%)</title><rect x="405.3" y="917" width="0.3" height="15.0" fill="rgb(225,166,24)" rx="2" ry="2" /> +<text x="408.32" y="927.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (686 samples, 19.22%)</title><rect x="422.2" y="1637" width="226.7" height="15.0" fill="rgb(214,130,22)" rx="2" ry="2" /> +<text x="425.17" y="1647.5" >Nsfisis\Waddiwasi\Execution\Ru..</text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (3 samples, 0.08%)</title><rect x="369.0" y="1941" width="0.9" height="15.0" fill="rgb(240,45,9)" rx="2" ry="2" /> +<text x="371.96" y="1951.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (1 samples, 0.03%)</title><rect x="400.4" y="1909" width="0.3" height="15.0" fill="rgb(220,156,45)" rx="2" ry="2" /> +<text x="403.36" y="1919.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (17 samples, 0.48%)</title><rect x="868.4" y="2181" width="5.6" height="15.0" fill="rgb(238,151,26)" rx="2" ry="2" /> +<text x="871.39" y="2191.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (2 samples, 0.06%)</title><rect x="952.0" y="2549" width="0.7" height="15.0" fill="rgb(210,116,36)" rx="2" ry="2" /> +<text x="955.02" y="2559.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="288.3" y="1861" width="0.3" height="15.0" fill="rgb(251,71,4)" rx="2" ry="2" /> +<text x="291.31" y="1871.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (118 samples, 3.31%)</title><rect x="274.1" y="2213" width="39.0" height="15.0" fill="rgb(213,35,42)" rx="2" ry="2" /> +<text x="277.10" y="2223.5" >Nsf..</text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (2 samples, 0.06%)</title><rect x="884.9" y="2677" width="0.7" height="15.0" fill="rgb(237,157,34)" rx="2" ry="2" /> +<text x="887.92" y="2687.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1,253 samples, 35.10%)</title><rect x="252.3" y="2597" width="414.1" height="15.0" fill="rgb(214,13,2)" rx="2" ry="2" /> +<text x="255.28" y="2607.5" >Nsfisis\Waddiwasi\Execution\Runtime::execInstr</text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (6 samples, 0.17%)</title><rect x="849.6" y="2805" width="1.9" height="15.0" fill="rgb(245,25,42)" rx="2" ry="2" /> +<text x="852.55" y="2815.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="878.3" y="2213" width="0.3" height="15.0" fill="rgb(231,67,23)" rx="2" ry="2" /> +<text x="881.31" y="2223.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.03%)</title><rect x="697.8" y="2485" width="0.4" height="15.0" fill="rgb(251,90,29)" rx="2" ry="2" /> +<text x="700.84" y="2495.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.03%)</title><rect x="666.1" y="2517" width="0.3" height="15.0" fill="rgb(224,186,49)" rx="2" ry="2" /> +<text x="669.11" y="2527.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (15 samples, 0.42%)</title><rect x="682.3" y="2517" width="5.0" height="15.0" fill="rgb(240,21,32)" rx="2" ry="2" /> +<text x="685.30" y="2527.5" ></text> +</g> +<g > +<title>print_r (1 samples, 0.03%)</title><rect x="400.4" y="1557" width="0.3" height="15.0" fill="rgb(248,126,29)" rx="2" ry="2" /> +<text x="403.36" y="1567.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::deactivateLabel (1 samples, 0.03%)</title><rect x="263.8" y="1973" width="0.4" height="15.0" fill="rgb(216,212,39)" rx="2" ry="2" /> +<text x="266.85" y="1983.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (38 samples, 1.06%)</title><rect x="652.6" y="2421" width="12.5" height="15.0" fill="rgb(233,63,4)" rx="2" ry="2" /> +<text x="655.55" y="2431.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="316.4" y="1253" width="0.3" height="15.0" fill="rgb(223,15,14)" rx="2" ry="2" /> +<text x="319.40" y="1263.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\ControlFlowResult::Br (1 samples, 0.03%)</title><rect x="1151.7" y="3493" width="0.3" height="15.0" fill="rgb(218,16,50)" rx="2" ry="2" /> +<text x="1154.66" y="3503.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.03%)</title><rect x="840.6" y="2325" width="0.4" height="15.0" fill="rgb(228,17,20)" rx="2" ry="2" /> +<text x="843.63" y="2335.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (1 samples, 0.03%)</title><rect x="269.5" y="2085" width="0.3" height="15.0" fill="rgb(225,136,42)" rx="2" ry="2" /> +<text x="272.47" y="2095.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (3 samples, 0.08%)</title><rect x="262.9" y="2005" width="0.9" height="15.0" fill="rgb(246,5,5)" rx="2" ry="2" /> +<text x="265.86" y="2015.5" ></text> +</g> +<g > +<title>array_pop (16 samples, 0.45%)</title><rect x="1177.8" y="3541" width="5.3" height="15.0" fill="rgb(242,78,26)" rx="2" ry="2" /> +<text x="1180.77" y="3551.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (16 samples, 0.45%)</title><rect x="384.5" y="1781" width="5.3" height="15.0" fill="rgb(234,119,39)" rx="2" ry="2" /> +<text x="387.49" y="1791.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (12 samples, 0.34%)</title><rect x="692.5" y="2549" width="4.0" height="15.0" fill="rgb(225,165,38)" rx="2" ry="2" /> +<text x="695.55" y="2559.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="941.4" y="2501" width="0.4" height="15.0" fill="rgb(213,157,54)" rx="2" ry="2" /> +<text x="944.44" y="2511.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="265.8" y="1733" width="0.4" height="15.0" fill="rgb(247,56,29)" rx="2" ry="2" /> +<text x="268.83" y="1743.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.03%)</title><rect x="407.0" y="2101" width="0.3" height="15.0" fill="rgb(214,149,27)" rx="2" ry="2" /> +<text x="409.97" y="2111.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (6 samples, 0.17%)</title><rect x="789.1" y="2325" width="1.9" height="15.0" fill="rgb(248,30,48)" rx="2" ry="2" /> +<text x="792.06" y="2335.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.03%)</title><rect x="658.5" y="2037" width="0.3" height="15.0" fill="rgb(220,222,7)" rx="2" ry="2" /> +<text x="661.50" y="2047.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (6 samples, 0.17%)</title><rect x="849.6" y="2917" width="1.9" height="15.0" fill="rgb(246,63,42)" rx="2" ry="2" /> +<text x="852.55" y="2927.5" ></text> +</g> +<g > +<title><unknown> (1 samples, 0.03%)</title><rect x="870.4" y="2069" width="0.3" height="15.0" fill="rgb(213,209,15)" rx="2" ry="2" /> +<text x="873.38" y="2079.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (57 samples, 1.60%)</title><rect x="678.0" y="2677" width="18.8" height="15.0" fill="rgb(246,195,24)" rx="2" ry="2" /> +<text x="681.01" y="2687.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (174 samples, 4.87%)</title><rect x="784.4" y="2885" width="57.5" height="15.0" fill="rgb(254,131,22)" rx="2" ry="2" /> +<text x="787.44" y="2895.5" >Nsfisi..</text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="299.9" y="1637" width="0.3" height="15.0" fill="rgb(245,1,29)" rx="2" ry="2" /> +<text x="302.88" y="1647.5" ></text> +</g> +<g > +<title><unknown> (1 samples, 0.03%)</title><rect x="791.7" y="2309" width="0.3" height="15.0" fill="rgb(207,128,8)" rx="2" ry="2" /> +<text x="794.71" y="2319.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (18 samples, 0.50%)</title><rect x="411.3" y="2149" width="5.9" height="15.0" fill="rgb(225,38,27)" rx="2" ry="2" /> +<text x="414.27" y="2159.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="420.9" y="1797" width="0.3" height="15.0" fill="rgb(242,224,10)" rx="2" ry="2" /> +<text x="423.85" y="1807.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="1165.2" y="3461" width="0.3" height="15.0" fill="rgb(238,133,18)" rx="2" ry="2" /> +<text x="1168.21" y="3471.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.03%)</title><rect x="894.5" y="2581" width="0.3" height="15.0" fill="rgb(230,148,36)" rx="2" ry="2" /> +<text x="897.50" y="2591.5" ></text> +</g> +<g > +<title><unknown> (1 samples, 0.03%)</title><rect x="870.4" y="757" width="0.3" height="15.0" fill="rgb(252,100,31)" rx="2" ry="2" /> +<text x="873.38" y="767.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="399.0" y="1925" width="0.4" height="15.0" fill="rgb(237,79,24)" rx="2" ry="2" /> +<text x="402.04" y="1935.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (8 samples, 0.22%)</title><rect x="346.5" y="2005" width="2.6" height="15.0" fill="rgb(209,51,22)" rx="2" ry="2" /> +<text x="349.48" y="2015.5" ></text> +</g> +<g > +<title><unknown> (1 samples, 0.03%)</title><rect x="659.8" y="2005" width="0.4" height="15.0" fill="rgb(244,98,34)" rx="2" ry="2" /> +<text x="662.83" y="2015.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::deactivateLabel (1 samples, 0.03%)</title><rect x="330.6" y="2069" width="0.3" height="15.0" fill="rgb(208,32,29)" rx="2" ry="2" /> +<text x="333.62" y="2079.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (328 samples, 9.19%)</title><rect x="676.0" y="2901" width="108.4" height="15.0" fill="rgb(226,163,14)" rx="2" ry="2" /> +<text x="679.02" y="2911.5" >Nsfisis\Waddi..</text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (7 samples, 0.20%)</title><rect x="662.8" y="2309" width="2.3" height="15.0" fill="rgb(209,154,41)" rx="2" ry="2" /> +<text x="665.80" y="2319.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.03%)</title><rect x="1117.3" y="3413" width="0.3" height="15.0" fill="rgb(228,202,8)" rx="2" ry="2" /> +<text x="1120.28" y="3423.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.03%)</title><rect x="363.7" y="1685" width="0.3" height="15.0" fill="rgb(207,35,53)" rx="2" ry="2" /> +<text x="366.67" y="1695.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (2 samples, 0.06%)</title><rect x="954.7" y="2469" width="0.6" height="15.0" fill="rgb(235,222,12)" rx="2" ry="2" /> +<text x="957.66" y="2479.5" ></text> +</g> +<g > +<title>print_r (1 samples, 0.03%)</title><rect x="951.0" y="2661" width="0.4" height="15.0" fill="rgb(224,127,25)" rx="2" ry="2" /> +<text x="954.03" y="2671.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (1 samples, 0.03%)</title><rect x="246.0" y="2949" width="0.3" height="15.0" fill="rgb(221,28,1)" rx="2" ry="2" /> +<text x="249.00" y="2959.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (4 samples, 0.11%)</title><rect x="797.0" y="2101" width="1.3" height="15.0" fill="rgb(213,99,34)" rx="2" ry="2" /> +<text x="800.00" y="2111.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.03%)</title><rect x="783.4" y="2677" width="0.4" height="15.0" fill="rgb(239,165,11)" rx="2" ry="2" /> +<text x="786.45" y="2687.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="951.7" y="2597" width="0.3" height="15.0" fill="rgb(243,116,25)" rx="2" ry="2" /> +<text x="954.69" y="2607.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (2 samples, 0.06%)</title><rect x="670.7" y="2485" width="0.7" height="15.0" fill="rgb(229,225,12)" rx="2" ry="2" /> +<text x="673.73" y="2495.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (2 samples, 0.06%)</title><rect x="357.7" y="1621" width="0.7" height="15.0" fill="rgb(227,114,37)" rx="2" ry="2" /> +<text x="360.72" y="1631.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1,253 samples, 35.10%)</title><rect x="252.3" y="2549" width="414.1" height="15.0" fill="rgb(248,11,29)" rx="2" ry="2" /> +<text x="255.28" y="2559.5" >Nsfisis\Waddiwasi\Execution\Runtime::execInstrs</text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (27 samples, 0.76%)</title><rect x="258.9" y="2133" width="8.9" height="15.0" fill="rgb(206,142,18)" rx="2" ry="2" /> +<text x="261.89" y="2143.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.03%)</title><rect x="314.1" y="1877" width="0.3" height="15.0" fill="rgb(248,202,32)" rx="2" ry="2" /> +<text x="317.09" y="1887.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (4 samples, 0.11%)</title><rect x="374.9" y="1669" width="1.3" height="15.0" fill="rgb(231,218,9)" rx="2" ry="2" /> +<text x="377.91" y="1679.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (1 samples, 0.03%)</title><rect x="941.8" y="2629" width="0.3" height="15.0" fill="rgb(229,148,1)" rx="2" ry="2" /> +<text x="944.77" y="2639.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (26 samples, 0.73%)</title><rect x="667.4" y="2965" width="8.6" height="15.0" fill="rgb(217,14,51)" rx="2" ry="2" /> +<text x="670.43" y="2975.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.03%)</title><rect x="841.0" y="2389" width="0.3" height="15.0" fill="rgb(213,26,13)" rx="2" ry="2" /> +<text x="843.96" y="2399.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (2 samples, 0.06%)</title><rect x="296.9" y="1701" width="0.7" height="15.0" fill="rgb(206,24,47)" rx="2" ry="2" /> +<text x="299.90" y="1711.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (2 samples, 0.06%)</title><rect x="849.6" y="2341" width="0.6" height="15.0" fill="rgb(253,12,25)" rx="2" ry="2" /> +<text x="852.55" y="2351.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.03%)</title><rect x="1104.4" y="2101" width="0.3" height="15.0" fill="rgb(230,177,12)" rx="2" ry="2" /> +<text x="1107.39" y="2111.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (5 samples, 0.14%)</title><rect x="700.2" y="2469" width="1.6" height="15.0" fill="rgb(247,182,35)" rx="2" ry="2" /> +<text x="703.15" y="2479.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (2 samples, 0.06%)</title><rect x="839.0" y="2165" width="0.6" height="15.0" fill="rgb(209,71,2)" rx="2" ry="2" /> +<text x="841.97" y="2175.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (151 samples, 4.23%)</title><rect x="342.2" y="2165" width="49.9" height="15.0" fill="rgb(228,122,9)" rx="2" ry="2" /> +<text x="345.18" y="2175.5" >Nsfis..</text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Stack::popValue (1 samples, 0.03%)</title><rect x="692.2" y="2469" width="0.3" height="15.0" fill="rgb(253,73,53)" rx="2" ry="2" /> +<text x="695.22" y="2479.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (2 samples, 0.06%)</title><rect x="311.4" y="1589" width="0.7" height="15.0" fill="rgb(244,9,36)" rx="2" ry="2" /> +<text x="314.45" y="1599.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="846.6" y="2853" width="0.3" height="15.0" fill="rgb(210,136,18)" rx="2" ry="2" /> +<text x="849.58" y="2863.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (4 samples, 0.11%)</title><rect x="374.9" y="1653" width="1.3" height="15.0" fill="rgb(232,102,42)" rx="2" ry="2" /> +<text x="377.91" y="1663.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="280.0" y="1893" width="0.4" height="15.0" fill="rgb(228,216,1)" rx="2" ry="2" /> +<text x="283.04" y="1903.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="1107.4" y="3333" width="0.3" height="15.0" fill="rgb(228,66,19)" rx="2" ry="2" /> +<text x="1110.37" y="3343.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.03%)</title><rect x="324.0" y="2197" width="0.3" height="15.0" fill="rgb(233,192,24)" rx="2" ry="2" /> +<text x="327.01" y="2207.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doLoadI32 (1 samples, 0.03%)</title><rect x="652.2" y="2453" width="0.4" height="15.0" fill="rgb(216,14,46)" rx="2" ry="2" /> +<text x="655.22" y="2463.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.03%)</title><rect x="790.1" y="1877" width="0.3" height="15.0" fill="rgb(240,47,21)" rx="2" ry="2" /> +<text x="793.06" y="1887.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (1 samples, 0.03%)</title><rect x="353.1" y="1973" width="0.3" height="15.0" fill="rgb(245,148,43)" rx="2" ry="2" /> +<text x="356.09" y="1983.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (4 samples, 0.11%)</title><rect x="954.7" y="3317" width="1.3" height="15.0" fill="rgb(205,112,47)" rx="2" ry="2" /> +<text x="957.66" y="3327.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.03%)</title><rect x="316.4" y="1365" width="0.3" height="15.0" fill="rgb(223,80,49)" rx="2" ry="2" /> +<text x="319.40" y="1375.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (2 samples, 0.06%)</title><rect x="697.2" y="2437" width="0.6" height="15.0" fill="rgb(234,168,13)" rx="2" ry="2" /> +<text x="700.18" y="2447.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (8 samples, 0.22%)</title><rect x="414.2" y="1797" width="2.7" height="15.0" fill="rgb(237,158,40)" rx="2" ry="2" /> +<text x="417.24" y="1807.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (3 samples, 0.08%)</title><rect x="369.0" y="1893" width="0.9" height="15.0" fill="rgb(207,16,29)" rx="2" ry="2" /> +<text x="371.96" y="1903.5" ></text> +</g> +<g > +<title><unknown> (1 samples, 0.03%)</title><rect x="870.4" y="1285" width="0.3" height="15.0" fill="rgb(234,207,8)" rx="2" ry="2" /> +<text x="873.38" y="1295.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (230 samples, 6.44%)</title><rect x="707.4" y="2405" width="76.0" height="15.0" fill="rgb(227,161,45)" rx="2" ry="2" /> +<text x="710.42" y="2415.5" >Nsfisis\..</text> +</g> +<g > +<title><unknown> (1 samples, 0.03%)</title><rect x="870.4" y="1205" width="0.3" height="15.0" fill="rgb(240,177,9)" rx="2" ry="2" /> +<text x="873.38" y="1215.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="954.0" y="2373" width="0.3" height="15.0" fill="rgb(211,58,9)" rx="2" ry="2" /> +<text x="957.00" y="2383.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (4 samples, 0.11%)</title><rect x="311.4" y="1605" width="1.4" height="15.0" fill="rgb(206,127,13)" rx="2" ry="2" /> +<text x="314.45" y="1615.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (7 samples, 0.20%)</title><rect x="296.9" y="1829" width="2.3" height="15.0" fill="rgb(222,175,42)" rx="2" ry="2" /> +<text x="299.90" y="1839.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="845.6" y="2789" width="0.3" height="15.0" fill="rgb(251,205,27)" rx="2" ry="2" /> +<text x="848.59" y="2799.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (1 samples, 0.03%)</title><rect x="841.0" y="2325" width="0.3" height="15.0" fill="rgb(229,0,51)" rx="2" ry="2" /> +<text x="843.96" y="2335.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (7 samples, 0.20%)</title><rect x="366.0" y="2037" width="2.3" height="15.0" fill="rgb(211,14,45)" rx="2" ry="2" /> +<text x="368.98" y="2047.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.03%)</title><rect x="400.4" y="1653" width="0.3" height="15.0" fill="rgb(233,98,1)" rx="2" ry="2" /> +<text x="403.36" y="1663.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.03%)</title><rect x="847.2" y="2741" width="0.4" height="15.0" fill="rgb(206,190,4)" rx="2" ry="2" /> +<text x="850.24" y="2751.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (104 samples, 2.91%)</title><rect x="907.4" y="2565" width="34.4" height="15.0" fill="rgb(216,79,14)" rx="2" ry="2" /> +<text x="910.39" y="2575.5" >Ns..</text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.03%)</title><rect x="702.8" y="2613" width="0.3" height="15.0" fill="rgb(249,82,17)" rx="2" ry="2" /> +<text x="705.80" y="2623.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (21 samples, 0.59%)</title><rect x="400.0" y="2037" width="7.0" height="15.0" fill="rgb(244,5,48)" rx="2" ry="2" /> +<text x="403.03" y="2047.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (2 samples, 0.06%)</title><rect x="354.4" y="1749" width="0.7" height="15.0" fill="rgb(209,75,43)" rx="2" ry="2" /> +<text x="357.41" y="1759.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (686 samples, 19.22%)</title><rect x="422.2" y="1957" width="226.7" height="15.0" fill="rgb(228,216,23)" rx="2" ry="2" /> +<text x="425.17" y="1967.5" >Nsfisis\Waddiwasi\Execution\Ru..</text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doStoreI32 (4 samples, 0.11%)</title><rect x="1086.5" y="3477" width="1.4" height="15.0" fill="rgb(249,189,33)" rx="2" ry="2" /> +<text x="1089.54" y="3487.5" ></text> +</g> +<g > +<title><unknown> (1 samples, 0.03%)</title><rect x="870.4" y="1317" width="0.3" height="15.0" fill="rgb(242,142,23)" rx="2" ry="2" /> +<text x="873.38" y="1327.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.03%)</title><rect x="664.5" y="2005" width="0.3" height="15.0" fill="rgb(245,113,16)" rx="2" ry="2" /> +<text x="667.45" y="2015.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.03%)</title><rect x="954.0" y="3029" width="0.3" height="15.0" fill="rgb(218,32,24)" rx="2" ry="2" /> +<text x="957.00" y="3039.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (1 samples, 0.03%)</title><rect x="288.3" y="1973" width="0.3" height="15.0" fill="rgb(247,89,8)" rx="2" ry="2" /> +<text x="291.31" y="1983.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (3 samples, 0.08%)</title><rect x="399.0" y="2197" width="1.0" height="15.0" fill="rgb(248,164,41)" rx="2" ry="2" /> +<text x="402.04" y="2207.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1,807 samples, 50.62%)</title><rect x="249.3" y="3237" width="597.3" height="15.0" fill="rgb(230,225,30)" rx="2" ry="2" /> +<text x="252.31" y="3247.5" >Nsfisis\Waddiwasi\Execution\Runtime::execInstr</text> +</g> +<g > +<title><unknown> (2 samples, 0.06%)</title><rect x="1095.8" y="3381" width="0.7" height="15.0" fill="rgb(214,11,10)" rx="2" ry="2" /> +<text x="1098.80" y="3391.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (4 samples, 0.11%)</title><rect x="368.6" y="1989" width="1.3" height="15.0" fill="rgb(229,146,41)" rx="2" ry="2" /> +<text x="371.63" y="1999.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (2 samples, 0.06%)</title><rect x="263.2" y="1813" width="0.6" height="15.0" fill="rgb(244,106,37)" rx="2" ry="2" /> +<text x="266.19" y="1823.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1,807 samples, 50.62%)</title><rect x="249.3" y="3109" width="597.3" height="15.0" fill="rgb(207,66,30)" rx="2" ry="2" /> +<text x="252.31" y="3119.5" >Nsfisis\Waddiwasi\Execution\Runtime::execInstr</text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (5 samples, 0.14%)</title><rect x="876.3" y="2229" width="1.7" height="15.0" fill="rgb(248,192,21)" rx="2" ry="2" /> +<text x="879.32" y="2239.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (4 samples, 0.11%)</title><rect x="374.9" y="1717" width="1.3" height="15.0" fill="rgb(215,31,2)" rx="2" ry="2" /> +<text x="377.91" y="1727.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (2 samples, 0.06%)</title><rect x="697.2" y="2277" width="0.6" height="15.0" fill="rgb(208,153,36)" rx="2" ry="2" /> +<text x="700.18" y="2287.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="670.7" y="2341" width="0.4" height="15.0" fill="rgb(218,43,5)" rx="2" ry="2" /> +<text x="673.73" y="2351.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="270.8" y="1925" width="0.3" height="15.0" fill="rgb(229,140,12)" rx="2" ry="2" /> +<text x="273.79" y="1935.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="316.4" y="1381" width="0.3" height="15.0" fill="rgb(241,54,13)" rx="2" ry="2" /> +<text x="319.40" y="1391.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (3 samples, 0.08%)</title><rect x="650.2" y="2245" width="1.0" height="15.0" fill="rgb(248,90,14)" rx="2" ry="2" /> +<text x="653.24" y="2255.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (25 samples, 0.70%)</title><rect x="295.2" y="1893" width="8.3" height="15.0" fill="rgb(223,108,3)" rx="2" ry="2" /> +<text x="298.25" y="1903.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="1077.3" y="3461" width="0.3" height="15.0" fill="rgb(246,192,16)" rx="2" ry="2" /> +<text x="1080.29" y="3471.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.03%)</title><rect x="695.9" y="2229" width="0.3" height="15.0" fill="rgb(207,212,47)" rx="2" ry="2" /> +<text x="698.85" y="2239.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.03%)</title><rect x="257.2" y="1973" width="0.4" height="15.0" fill="rgb(244,46,51)" rx="2" ry="2" /> +<text x="260.24" y="1983.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.03%)</title><rect x="1165.2" y="3445" width="0.3" height="15.0" fill="rgb(238,36,47)" rx="2" ry="2" /> +<text x="1168.21" y="3455.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Stack::pushBool (1 samples, 0.03%)</title><rect x="390.8" y="2069" width="0.3" height="15.0" fill="rgb(249,165,19)" rx="2" ry="2" /> +<text x="393.77" y="2079.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (1 samples, 0.03%)</title><rect x="1108.0" y="3317" width="0.4" height="15.0" fill="rgb(241,80,16)" rx="2" ry="2" /> +<text x="1111.03" y="3327.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.03%)</title><rect x="834.0" y="2133" width="0.3" height="15.0" fill="rgb(205,195,40)" rx="2" ry="2" /> +<text x="837.02" y="2143.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="894.8" y="2533" width="0.4" height="15.0" fill="rgb(211,179,28)" rx="2" ry="2" /> +<text x="897.83" y="2543.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (18 samples, 0.50%)</title><rect x="306.8" y="1941" width="6.0" height="15.0" fill="rgb(216,206,40)" rx="2" ry="2" /> +<text x="309.82" y="1951.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (48 samples, 1.34%)</title><rect x="878.6" y="2773" width="15.9" height="15.0" fill="rgb(229,185,12)" rx="2" ry="2" /> +<text x="881.64" y="2783.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.03%)</title><rect x="894.8" y="2517" width="0.4" height="15.0" fill="rgb(219,187,45)" rx="2" ry="2" /> +<text x="897.83" y="2527.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="870.4" y="2117" width="0.3" height="15.0" fill="rgb(205,147,45)" rx="2" ry="2" /> +<text x="873.38" y="2127.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (11 samples, 0.31%)</title><rect x="874.7" y="2389" width="3.6" height="15.0" fill="rgb(248,134,33)" rx="2" ry="2" /> +<text x="877.67" y="2399.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.03%)</title><rect x="314.1" y="1493" width="0.3" height="15.0" fill="rgb(250,44,7)" rx="2" ry="2" /> +<text x="317.09" y="1503.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (4 samples, 0.11%)</title><rect x="949.4" y="2517" width="1.3" height="15.0" fill="rgb(251,124,37)" rx="2" ry="2" /> +<text x="952.37" y="2527.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (35 samples, 0.98%)</title><rect x="862.4" y="2261" width="11.6" height="15.0" fill="rgb(221,191,33)" rx="2" ry="2" /> +<text x="865.44" y="2271.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\StackEntries\Value::__construct (1 samples, 0.03%)</title><rect x="1155.0" y="3493" width="0.3" height="15.0" fill="rgb(231,225,8)" rx="2" ry="2" /> +<text x="1157.96" y="3503.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doStoreI32 (1 samples, 0.03%)</title><rect x="266.5" y="1749" width="0.3" height="15.0" fill="rgb(231,7,25)" rx="2" ry="2" /> +<text x="269.49" y="1759.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="652.2" y="2341" width="0.4" height="15.0" fill="rgb(212,160,36)" rx="2" ry="2" /> +<text x="655.22" y="2351.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (2 samples, 0.06%)</title><rect x="842.9" y="2597" width="0.7" height="15.0" fill="rgb(216,78,52)" rx="2" ry="2" /> +<text x="845.94" y="2607.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (10 samples, 0.28%)</title><rect x="395.4" y="2165" width="3.3" height="15.0" fill="rgb(238,116,42)" rx="2" ry="2" /> +<text x="398.40" y="2175.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (2 samples, 0.06%)</title><rect x="954.7" y="1941" width="0.6" height="15.0" fill="rgb(217,113,12)" rx="2" ry="2" /> +<text x="957.66" y="1951.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (4 samples, 0.11%)</title><rect x="954.7" y="3061" width="1.3" height="15.0" fill="rgb(234,51,24)" rx="2" ry="2" /> +<text x="957.66" y="3071.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="341.2" y="1829" width="0.3" height="15.0" fill="rgb(216,217,24)" rx="2" ry="2" /> +<text x="344.19" y="1839.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.03%)</title><rect x="808.6" y="2293" width="0.3" height="15.0" fill="rgb(207,37,27)" rx="2" ry="2" /> +<text x="811.57" y="2303.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (3 samples, 0.08%)</title><rect x="850.2" y="2357" width="1.0" height="15.0" fill="rgb(217,157,37)" rx="2" ry="2" /> +<text x="853.21" y="2367.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (2 samples, 0.06%)</title><rect x="670.7" y="2469" width="0.7" height="15.0" fill="rgb(244,163,38)" rx="2" ry="2" /> +<text x="673.73" y="2479.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (10 samples, 0.28%)</title><rect x="264.2" y="1909" width="3.3" height="15.0" fill="rgb(230,174,13)" rx="2" ry="2" /> +<text x="267.18" y="1919.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (18 samples, 0.50%)</title><rect x="383.8" y="1845" width="6.0" height="15.0" fill="rgb(239,185,13)" rx="2" ry="2" /> +<text x="386.83" y="1855.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.03%)</title><rect x="706.8" y="2613" width="0.3" height="15.0" fill="rgb(226,153,21)" rx="2" ry="2" /> +<text x="709.76" y="2623.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (1 samples, 0.03%)</title><rect x="843.9" y="2757" width="0.4" height="15.0" fill="rgb(206,79,33)" rx="2" ry="2" /> +<text x="846.93" y="2767.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.03%)</title><rect x="838.6" y="2069" width="0.4" height="15.0" fill="rgb(219,207,47)" rx="2" ry="2" /> +<text x="841.64" y="2079.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (4 samples, 0.11%)</title><rect x="311.4" y="1813" width="1.4" height="15.0" fill="rgb(246,207,2)" rx="2" ry="2" /> +<text x="314.45" y="1823.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (2 samples, 0.06%)</title><rect x="954.7" y="2709" width="0.6" height="15.0" fill="rgb(239,87,42)" rx="2" ry="2" /> +<text x="957.66" y="2719.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\MemInst::storeI32 (1 samples, 0.03%)</title><rect x="873.7" y="2085" width="0.3" height="15.0" fill="rgb(208,188,39)" rx="2" ry="2" /> +<text x="876.68" y="2095.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.03%)</title><rect x="1153.6" y="3317" width="0.4" height="15.0" fill="rgb(237,188,26)" rx="2" ry="2" /> +<text x="1156.64" y="3327.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (2 samples, 0.06%)</title><rect x="954.7" y="1381" width="0.6" height="15.0" fill="rgb(251,23,40)" rx="2" ry="2" /> +<text x="957.66" y="1391.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.03%)</title><rect x="406.6" y="1653" width="0.4" height="15.0" fill="rgb(220,123,54)" rx="2" ry="2" /> +<text x="409.64" y="1663.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.03%)</title><rect x="650.2" y="2133" width="0.4" height="15.0" fill="rgb(234,205,25)" rx="2" ry="2" /> +<text x="653.24" y="2143.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (8 samples, 0.22%)</title><rect x="1102.4" y="3221" width="2.7" height="15.0" fill="rgb(251,3,23)" rx="2" ry="2" /> +<text x="1105.41" y="3231.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (4 samples, 0.11%)</title><rect x="400.0" y="1973" width="1.4" height="15.0" fill="rgb(244,204,2)" rx="2" ry="2" /> +<text x="403.03" y="1983.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="263.5" y="1605" width="0.3" height="15.0" fill="rgb(205,45,19)" rx="2" ry="2" /> +<text x="266.52" y="1615.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\StackEntry::Label (1 samples, 0.03%)</title><rect x="390.4" y="1973" width="0.4" height="15.0" fill="rgb(219,164,31)" rx="2" ry="2" /> +<text x="393.44" y="1983.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (4 samples, 0.11%)</title><rect x="315.7" y="1893" width="1.4" height="15.0" fill="rgb(209,159,15)" rx="2" ry="2" /> +<text x="318.74" y="1903.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (1 samples, 0.03%)</title><rect x="314.1" y="2005" width="0.3" height="15.0" fill="rgb(252,228,42)" rx="2" ry="2" /> +<text x="317.09" y="2015.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (1 samples, 0.03%)</title><rect x="783.8" y="2693" width="0.3" height="15.0" fill="rgb(209,6,1)" rx="2" ry="2" /> +<text x="786.78" y="2703.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="697.5" y="2117" width="0.3" height="15.0" fill="rgb(214,22,38)" rx="2" ry="2" /> +<text x="700.51" y="2127.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (2 samples, 0.06%)</title><rect x="302.2" y="1381" width="0.7" height="15.0" fill="rgb(249,34,44)" rx="2" ry="2" /> +<text x="305.19" y="1391.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.03%)</title><rect x="955.3" y="2549" width="0.4" height="15.0" fill="rgb(250,21,48)" rx="2" ry="2" /> +<text x="958.32" y="2559.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (174 samples, 4.87%)</title><rect x="784.4" y="2741" width="57.5" height="15.0" fill="rgb(213,85,4)" rx="2" ry="2" /> +<text x="787.44" y="2751.5" >Nsfisi..</text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (1 samples, 0.03%)</title><rect x="269.5" y="2101" width="0.3" height="15.0" fill="rgb(252,126,30)" rx="2" ry="2" /> +<text x="272.47" y="2111.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (11 samples, 0.31%)</title><rect x="825.8" y="2149" width="3.6" height="15.0" fill="rgb(252,90,42)" rx="2" ry="2" /> +<text x="828.75" y="2159.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (6 samples, 0.17%)</title><rect x="662.8" y="2181" width="2.0" height="15.0" fill="rgb(205,200,50)" rx="2" ry="2" /> +<text x="665.80" y="2191.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (9 samples, 0.25%)</title><rect x="875.0" y="2309" width="3.0" height="15.0" fill="rgb(237,58,23)" rx="2" ry="2" /> +<text x="878.00" y="2319.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.03%)</title><rect x="263.5" y="1749" width="0.3" height="15.0" fill="rgb(250,93,52)" rx="2" ry="2" /> +<text x="266.52" y="1759.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.03%)</title><rect x="307.8" y="1653" width="0.3" height="15.0" fill="rgb(232,210,9)" rx="2" ry="2" /> +<text x="310.81" y="1663.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (4 samples, 0.11%)</title><rect x="954.7" y="3045" width="1.3" height="15.0" fill="rgb(240,205,48)" rx="2" ry="2" /> +<text x="957.66" y="3055.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (27 samples, 0.76%)</title><rect x="942.1" y="2629" width="8.9" height="15.0" fill="rgb(216,173,4)" rx="2" ry="2" /> +<text x="945.10" y="2639.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.03%)</title><rect x="270.8" y="1749" width="0.3" height="15.0" fill="rgb(236,90,4)" rx="2" ry="2" /> +<text x="273.79" y="1759.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (1 samples, 0.03%)</title><rect x="846.6" y="2837" width="0.3" height="15.0" fill="rgb(246,125,37)" rx="2" ry="2" /> +<text x="849.58" y="2847.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="697.5" y="1989" width="0.3" height="15.0" fill="rgb(215,131,23)" rx="2" ry="2" /> +<text x="700.51" y="1999.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (4 samples, 0.11%)</title><rect x="374.9" y="1701" width="1.3" height="15.0" fill="rgb(208,147,34)" rx="2" ry="2" /> +<text x="377.91" y="1711.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (1 samples, 0.03%)</title><rect x="249.6" y="2773" width="0.4" height="15.0" fill="rgb(231,121,5)" rx="2" ry="2" /> +<text x="252.64" y="2783.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (2 samples, 0.06%)</title><rect x="842.3" y="2661" width="0.6" height="15.0" fill="rgb(230,76,37)" rx="2" ry="2" /> +<text x="845.28" y="2671.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="840.6" y="2309" width="0.4" height="15.0" fill="rgb(218,37,39)" rx="2" ry="2" /> +<text x="843.63" y="2319.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (2 samples, 0.06%)</title><rect x="849.6" y="2357" width="0.6" height="15.0" fill="rgb(222,146,22)" rx="2" ry="2" /> +<text x="852.55" y="2367.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\MemInst::storeByte (1 samples, 0.03%)</title><rect x="1077.0" y="3477" width="0.3" height="15.0" fill="rgb(240,58,47)" rx="2" ry="2" /> +<text x="1079.96" y="3487.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.03%)</title><rect x="847.2" y="2677" width="0.4" height="15.0" fill="rgb(213,129,16)" rx="2" ry="2" /> +<text x="850.24" y="2687.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.03%)</title><rect x="946.4" y="2421" width="0.3" height="15.0" fill="rgb(223,173,4)" rx="2" ry="2" /> +<text x="949.40" y="2431.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.03%)</title><rect x="325.3" y="2165" width="0.4" height="15.0" fill="rgb(234,207,24)" rx="2" ry="2" /> +<text x="328.33" y="2175.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.03%)</title><rect x="842.6" y="2421" width="0.3" height="15.0" fill="rgb(235,30,53)" rx="2" ry="2" /> +<text x="845.61" y="2431.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.03%)</title><rect x="319.0" y="2069" width="0.4" height="15.0" fill="rgb(253,80,47)" rx="2" ry="2" /> +<text x="322.05" y="2079.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (41 samples, 1.15%)</title><rect x="860.5" y="2325" width="13.5" height="15.0" fill="rgb(228,167,42)" rx="2" ry="2" /> +<text x="863.46" y="2335.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (20 samples, 0.56%)</title><rect x="802.0" y="2325" width="6.6" height="15.0" fill="rgb(242,51,5)" rx="2" ry="2" /> +<text x="804.96" y="2335.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (3 samples, 0.08%)</title><rect x="670.7" y="2773" width="1.0" height="15.0" fill="rgb(240,218,23)" rx="2" ry="2" /> +<text x="673.73" y="2783.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (6 samples, 0.17%)</title><rect x="849.6" y="2869" width="1.9" height="15.0" fill="rgb(244,220,43)" rx="2" ry="2" /> +<text x="852.55" y="2879.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (1 samples, 0.03%)</title><rect x="265.2" y="1797" width="0.3" height="15.0" fill="rgb(228,58,18)" rx="2" ry="2" /> +<text x="268.17" y="1807.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Vals\Num::__construct (1 samples, 0.03%)</title><rect x="173.0" y="3429" width="0.3" height="15.0" fill="rgb(225,17,43)" rx="2" ry="2" /> +<text x="175.95" y="3439.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (1 samples, 0.03%)</title><rect x="670.1" y="2533" width="0.3" height="15.0" fill="rgb(227,190,10)" rx="2" ry="2" /> +<text x="673.07" y="2543.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (22 samples, 0.62%)</title><rect x="801.3" y="2373" width="7.3" height="15.0" fill="rgb(250,121,48)" rx="2" ry="2" /> +<text x="804.29" y="2383.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (8 samples, 0.22%)</title><rect x="668.1" y="2837" width="2.6" height="15.0" fill="rgb(239,30,29)" rx="2" ry="2" /> +<text x="671.09" y="2847.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (6 samples, 0.17%)</title><rect x="658.8" y="2053" width="2.0" height="15.0" fill="rgb(252,156,35)" rx="2" ry="2" /> +<text x="661.83" y="2063.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (201 samples, 5.63%)</title><rect x="325.7" y="2197" width="66.4" height="15.0" fill="rgb(232,102,0)" rx="2" ry="2" /> +<text x="328.66" y="2207.5" >Nsfisis..</text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (8 samples, 0.22%)</title><rect x="370.3" y="1845" width="2.6" height="15.0" fill="rgb(216,24,47)" rx="2" ry="2" /> +<text x="373.28" y="1855.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (1 samples, 0.03%)</title><rect x="316.4" y="981" width="0.3" height="15.0" fill="rgb(227,76,25)" rx="2" ry="2" /> +<text x="319.40" y="991.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (2 samples, 0.06%)</title><rect x="369.3" y="1845" width="0.6" height="15.0" fill="rgb(210,49,31)" rx="2" ry="2" /> +<text x="372.29" y="1855.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (6 samples, 0.17%)</title><rect x="846.6" y="3269" width="2.0" height="15.0" fill="rgb(222,8,47)" rx="2" ry="2" /> +<text x="849.58" y="3279.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.03%)</title><rect x="790.1" y="2133" width="0.3" height="15.0" fill="rgb(236,188,26)" rx="2" ry="2" /> +<text x="793.06" y="2143.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (63 samples, 1.76%)</title><rect x="857.8" y="2485" width="20.8" height="15.0" fill="rgb(228,144,13)" rx="2" ry="2" /> +<text x="860.82" y="2495.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Stack::pushValue (1 samples, 0.03%)</title><rect x="841.3" y="2421" width="0.3" height="15.0" fill="rgb(248,170,17)" rx="2" ry="2" /> +<text x="844.29" y="2431.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Stack::popI32 (1 samples, 0.03%)</title><rect x="830.7" y="2197" width="0.3" height="15.0" fill="rgb(205,134,37)" rx="2" ry="2" /> +<text x="833.71" y="2207.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="697.5" y="2181" width="0.3" height="15.0" fill="rgb(209,193,38)" rx="2" ry="2" /> +<text x="700.51" y="2191.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="848.2" y="2629" width="0.4" height="15.0" fill="rgb(227,123,39)" rx="2" ry="2" /> +<text x="851.23" y="2639.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.03%)</title><rect x="849.9" y="2261" width="0.3" height="15.0" fill="rgb(252,204,41)" rx="2" ry="2" /> +<text x="852.88" y="2271.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="838.6" y="2117" width="0.4" height="15.0" fill="rgb(245,59,44)" rx="2" ry="2" /> +<text x="841.64" y="2127.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Stack::popValue (2 samples, 0.06%)</title><rect x="226.2" y="3429" width="0.6" height="15.0" fill="rgb(231,30,1)" rx="2" ry="2" /> +<text x="229.17" y="3439.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (1 samples, 0.03%)</title><rect x="783.8" y="2709" width="0.3" height="15.0" fill="rgb(252,46,25)" rx="2" ry="2" /> +<text x="786.78" y="2719.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (1 samples, 0.03%)</title><rect x="315.4" y="1813" width="0.3" height="15.0" fill="rgb(253,138,9)" rx="2" ry="2" /> +<text x="318.41" y="1823.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (4 samples, 0.11%)</title><rect x="663.5" y="2165" width="1.3" height="15.0" fill="rgb(227,90,29)" rx="2" ry="2" /> +<text x="666.46" y="2175.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\BinaryFormat\Decoder::decodeVec (18 samples, 0.50%)</title><rect x="10.7" y="3477" width="5.9" height="15.0" fill="rgb(239,151,41)" rx="2" ry="2" /> +<text x="13.66" y="3487.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (692 samples, 19.38%)</title><rect x="420.9" y="2213" width="228.7" height="15.0" fill="rgb(242,212,28)" rx="2" ry="2" /> +<text x="423.85" y="2223.5" >Nsfisis\Waddiwasi\Execution\Ru..</text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (229 samples, 6.41%)</title><rect x="707.4" y="2309" width="75.7" height="15.0" fill="rgb(216,51,11)" rx="2" ry="2" /> +<text x="710.42" y="2319.5" >Nsfisis\..</text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="249.3" y="2757" width="0.3" height="15.0" fill="rgb(229,22,6)" rx="2" ry="2" /> +<text x="252.31" y="2767.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (13 samples, 0.36%)</title><rect x="671.7" y="2709" width="4.3" height="15.0" fill="rgb(242,143,30)" rx="2" ry="2" /> +<text x="674.73" y="2719.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\ControlFlowResult::Br (1 samples, 0.03%)</title><rect x="358.4" y="1493" width="0.3" height="15.0" fill="rgb(210,216,46)" rx="2" ry="2" /> +<text x="361.38" y="1503.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (21 samples, 0.59%)</title><rect x="654.5" y="2213" width="7.0" height="15.0" fill="rgb(234,214,37)" rx="2" ry="2" /> +<text x="657.54" y="2223.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (2 samples, 0.06%)</title><rect x="370.3" y="1621" width="0.6" height="15.0" fill="rgb(208,106,10)" rx="2" ry="2" /> +<text x="373.28" y="1631.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (686 samples, 19.22%)</title><rect x="422.2" y="1797" width="226.7" height="15.0" fill="rgb(228,225,0)" rx="2" ry="2" /> +<text x="425.17" y="1807.5" >Nsfisis\Waddiwasi\Execution\Ru..</text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.03%)</title><rect x="1077.3" y="3317" width="0.3" height="15.0" fill="rgb(223,166,52)" rx="2" ry="2" /> +<text x="1080.29" y="3327.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (2 samples, 0.06%)</title><rect x="904.1" y="2597" width="0.7" height="15.0" fill="rgb(241,2,27)" rx="2" ry="2" /> +<text x="907.09" y="2607.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (75 samples, 2.10%)</title><rect x="366.0" y="2053" width="24.8" height="15.0" fill="rgb(253,79,29)" rx="2" ry="2" /> +<text x="368.98" y="2063.5" >N..</text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="285.0" y="1989" width="0.3" height="15.0" fill="rgb(218,5,22)" rx="2" ry="2" /> +<text x="288.00" y="1999.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (2 samples, 0.06%)</title><rect x="839.0" y="2245" width="0.6" height="15.0" fill="rgb(232,76,38)" rx="2" ry="2" /> +<text x="841.97" y="2255.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (316 samples, 8.85%)</title><rect x="849.6" y="3125" width="104.4" height="15.0" fill="rgb(243,28,45)" rx="2" ry="2" /> +<text x="852.55" y="3135.5" >Nsfisis\Wadd..</text> +</g> +<g > +<title>Nsfisis\Waddiwasi\BinaryFormat\Decoder::decodeInstrsUntil (7 samples, 0.20%)</title><rect x="11.3" y="3365" width="2.3" height="15.0" fill="rgb(232,228,1)" rx="2" ry="2" /> +<text x="14.32" y="3375.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="316.4" y="1157" width="0.3" height="15.0" fill="rgb(242,14,8)" rx="2" ry="2" /> +<text x="319.40" y="1167.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="421.5" y="1957" width="0.3" height="15.0" fill="rgb(249,219,12)" rx="2" ry="2" /> +<text x="424.51" y="1967.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="666.8" y="2821" width="0.3" height="15.0" fill="rgb(217,17,33)" rx="2" ry="2" /> +<text x="669.77" y="2831.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="940.4" y="2469" width="0.4" height="15.0" fill="rgb(248,26,47)" rx="2" ry="2" /> +<text x="943.45" y="2479.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.03%)</title><rect x="675.7" y="2581" width="0.3" height="15.0" fill="rgb(230,81,30)" rx="2" ry="2" /> +<text x="678.69" y="2591.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.03%)</title><rect x="251.0" y="2581" width="0.3" height="15.0" fill="rgb(238,8,25)" rx="2" ry="2" /> +<text x="253.96" y="2591.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="316.4" y="837" width="0.3" height="15.0" fill="rgb(249,181,42)" rx="2" ry="2" /> +<text x="319.40" y="847.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="298.6" y="1541" width="0.3" height="15.0" fill="rgb(213,96,44)" rx="2" ry="2" /> +<text x="301.55" y="1551.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (11 samples, 0.31%)</title><rect x="947.4" y="2565" width="3.6" height="15.0" fill="rgb(231,99,48)" rx="2" ry="2" /> +<text x="950.39" y="2575.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (2 samples, 0.06%)</title><rect x="260.5" y="1925" width="0.7" height="15.0" fill="rgb(230,56,48)" rx="2" ry="2" /> +<text x="263.54" y="1935.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (3 samples, 0.08%)</title><rect x="847.2" y="2885" width="1.0" height="15.0" fill="rgb(236,34,16)" rx="2" ry="2" /> +<text x="850.24" y="2895.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (2 samples, 0.06%)</title><rect x="695.5" y="2437" width="0.7" height="15.0" fill="rgb(246,4,26)" rx="2" ry="2" /> +<text x="698.52" y="2447.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (1 samples, 0.03%)</title><rect x="846.6" y="2885" width="0.3" height="15.0" fill="rgb(228,103,6)" rx="2" ry="2" /> +<text x="849.58" y="2895.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.03%)</title><rect x="421.5" y="1909" width="0.3" height="15.0" fill="rgb(226,76,22)" rx="2" ry="2" /> +<text x="424.51" y="1919.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.03%)</title><rect x="363.7" y="1749" width="0.3" height="15.0" fill="rgb(252,58,2)" rx="2" ry="2" /> +<text x="366.67" y="1759.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (3 samples, 0.08%)</title><rect x="404.7" y="1701" width="0.9" height="15.0" fill="rgb(254,133,10)" rx="2" ry="2" /> +<text x="407.66" y="1711.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (682 samples, 19.10%)</title><rect x="423.2" y="821" width="225.4" height="15.0" fill="rgb(229,143,8)" rx="2" ry="2" /> +<text x="426.17" y="831.5" >Nsfisis\Waddiwasi\Execution\R..</text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (3 samples, 0.08%)</title><rect x="1085.6" y="3477" width="0.9" height="15.0" fill="rgb(248,2,51)" rx="2" ry="2" /> +<text x="1088.55" y="3487.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (124 samples, 3.47%)</title><rect x="800.0" y="2405" width="41.0" height="15.0" fill="rgb(207,88,2)" rx="2" ry="2" /> +<text x="802.97" y="2415.5" >Nsf..</text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (4 samples, 0.11%)</title><rect x="283.7" y="1781" width="1.3" height="15.0" fill="rgb(249,196,45)" rx="2" ry="2" /> +<text x="286.68" y="1791.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (12 samples, 0.34%)</title><rect x="692.5" y="2581" width="4.0" height="15.0" fill="rgb(211,80,8)" rx="2" ry="2" /> +<text x="695.55" y="2591.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (96 samples, 2.69%)</title><rect x="808.9" y="2389" width="31.7" height="15.0" fill="rgb(237,225,52)" rx="2" ry="2" /> +<text x="811.90" y="2399.5" >Ns..</text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (686 samples, 19.22%)</title><rect x="422.2" y="1765" width="226.7" height="15.0" fill="rgb(250,187,30)" rx="2" ry="2" /> +<text x="425.17" y="1775.5" >Nsfisis\Waddiwasi\Execution\Ru..</text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.03%)</title><rect x="954.3" y="3093" width="0.4" height="15.0" fill="rgb(254,132,24)" rx="2" ry="2" /> +<text x="957.33" y="3103.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (315 samples, 8.82%)</title><rect x="849.6" y="3013" width="104.1" height="15.0" fill="rgb(208,216,32)" rx="2" ry="2" /> +<text x="852.55" y="3023.5" >Nsfisis\Wadd..</text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="363.7" y="1733" width="0.3" height="15.0" fill="rgb(219,79,13)" rx="2" ry="2" /> +<text x="366.67" y="1743.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Stack::push (1 samples, 0.03%)</title><rect x="939.8" y="2485" width="0.3" height="15.0" fill="rgb(217,174,20)" rx="2" ry="2" /> +<text x="942.79" y="2495.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (7 samples, 0.20%)</title><rect x="662.8" y="2293" width="2.3" height="15.0" fill="rgb(222,75,29)" rx="2" ry="2" /> +<text x="665.80" y="2303.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (5 samples, 0.14%)</title><rect x="844.3" y="2949" width="1.6" height="15.0" fill="rgb(239,86,8)" rx="2" ry="2" /> +<text x="847.26" y="2959.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="400.4" y="1637" width="0.3" height="15.0" fill="rgb(227,46,50)" rx="2" ry="2" /> +<text x="403.36" y="1647.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (54 samples, 1.51%)</title><rect x="1087.9" y="3477" width="17.8" height="15.0" fill="rgb(224,75,44)" rx="2" ry="2" /> +<text x="1090.87" y="3487.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Stack::popValue (1 samples, 0.03%)</title><rect x="831.0" y="2197" width="0.4" height="15.0" fill="rgb(249,121,29)" rx="2" ry="2" /> +<text x="834.04" y="2207.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (2 samples, 0.06%)</title><rect x="336.9" y="1973" width="0.7" height="15.0" fill="rgb(215,123,44)" rx="2" ry="2" /> +<text x="339.90" y="1983.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (2 samples, 0.06%)</title><rect x="842.9" y="2613" width="0.7" height="15.0" fill="rgb(222,56,39)" rx="2" ry="2" /> +<text x="845.94" y="2623.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="894.5" y="2437" width="0.3" height="15.0" fill="rgb(232,187,47)" rx="2" ry="2" /> +<text x="897.50" y="2447.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (5 samples, 0.14%)</title><rect x="265.5" y="1797" width="1.7" height="15.0" fill="rgb(210,171,29)" rx="2" ry="2" /> +<text x="268.50" y="1807.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="666.1" y="2405" width="0.3" height="15.0" fill="rgb(244,41,9)" rx="2" ry="2" /> +<text x="669.11" y="2415.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (14 samples, 0.39%)</title><rect x="395.4" y="2213" width="4.6" height="15.0" fill="rgb(230,97,35)" rx="2" ry="2" /> +<text x="398.40" y="2223.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.03%)</title><rect x="951.4" y="2741" width="0.3" height="15.0" fill="rgb(221,37,8)" rx="2" ry="2" /> +<text x="954.36" y="2751.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (6 samples, 0.17%)</title><rect x="879.3" y="2677" width="2.0" height="15.0" fill="rgb(245,114,0)" rx="2" ry="2" /> +<text x="882.30" y="2687.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.03%)</title><rect x="314.1" y="1717" width="0.3" height="15.0" fill="rgb(221,180,15)" rx="2" ry="2" /> +<text x="317.09" y="1727.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.03%)</title><rect x="314.1" y="1429" width="0.3" height="15.0" fill="rgb(252,106,27)" rx="2" ry="2" /> +<text x="317.09" y="1439.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (2 samples, 0.06%)</title><rect x="954.7" y="1829" width="0.6" height="15.0" fill="rgb(215,106,22)" rx="2" ry="2" /> +<text x="957.66" y="1839.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="301.5" y="1733" width="0.4" height="15.0" fill="rgb(220,114,40)" rx="2" ry="2" /> +<text x="304.53" y="1743.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (2 samples, 0.06%)</title><rect x="362.7" y="1845" width="0.6" height="15.0" fill="rgb(210,72,38)" rx="2" ry="2" /> +<text x="365.68" y="1855.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.03%)</title><rect x="667.1" y="2901" width="0.3" height="15.0" fill="rgb(251,2,42)" rx="2" ry="2" /> +<text x="670.10" y="2911.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="894.5" y="2725" width="0.3" height="15.0" fill="rgb(239,61,36)" rx="2" ry="2" /> +<text x="897.50" y="2735.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (148 samples, 4.15%)</title><rect x="902.1" y="2661" width="48.9" height="15.0" fill="rgb(221,203,17)" rx="2" ry="2" /> +<text x="905.11" y="2671.5" >Nsfi..</text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (21 samples, 0.59%)</title><rect x="400.0" y="2101" width="7.0" height="15.0" fill="rgb(215,22,25)" rx="2" ry="2" /> +<text x="403.03" y="2111.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (2 samples, 0.06%)</title><rect x="842.3" y="2581" width="0.6" height="15.0" fill="rgb(212,19,17)" rx="2" ry="2" /> +<text x="845.28" y="2591.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.03%)</title><rect x="274.8" y="2133" width="0.3" height="15.0" fill="rgb(229,201,54)" rx="2" ry="2" /> +<text x="277.76" y="2143.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.03%)</title><rect x="666.1" y="2357" width="0.3" height="15.0" fill="rgb(223,142,7)" rx="2" ry="2" /> +<text x="669.11" y="2367.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (3 samples, 0.08%)</title><rect x="842.9" y="2757" width="1.0" height="15.0" fill="rgb(245,37,2)" rx="2" ry="2" /> +<text x="845.94" y="2767.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="894.5" y="2533" width="0.3" height="15.0" fill="rgb(228,105,27)" rx="2" ry="2" /> +<text x="897.50" y="2543.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1,253 samples, 35.10%)</title><rect x="252.3" y="2725" width="414.1" height="15.0" fill="rgb(234,202,45)" rx="2" ry="2" /> +<text x="255.28" y="2735.5" >Nsfisis\Waddiwasi\Execution\Runtime::execInstr</text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="410.9" y="1957" width="0.4" height="15.0" fill="rgb(246,138,3)" rx="2" ry="2" /> +<text x="413.94" y="1967.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.03%)</title><rect x="1150.7" y="3477" width="0.3" height="15.0" fill="rgb(246,185,20)" rx="2" ry="2" /> +<text x="1153.67" y="3487.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (2 samples, 0.06%)</title><rect x="847.2" y="2821" width="0.7" height="15.0" fill="rgb(229,190,24)" rx="2" ry="2" /> +<text x="850.24" y="2831.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (2 samples, 0.06%)</title><rect x="370.3" y="1605" width="0.6" height="15.0" fill="rgb(249,14,47)" rx="2" ry="2" /> +<text x="373.28" y="1615.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="954.3" y="2597" width="0.4" height="15.0" fill="rgb(205,112,32)" rx="2" ry="2" /> +<text x="957.33" y="2607.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (230 samples, 6.44%)</title><rect x="707.4" y="2805" width="76.0" height="15.0" fill="rgb(229,209,54)" rx="2" ry="2" /> +<text x="710.42" y="2815.5" >Nsfisis\..</text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="319.0" y="1957" width="0.4" height="15.0" fill="rgb(230,118,0)" rx="2" ry="2" /> +<text x="322.05" y="1967.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (127 samples, 3.56%)</title><rect x="853.2" y="2869" width="42.0" height="15.0" fill="rgb(244,80,46)" rx="2" ry="2" /> +<text x="856.19" y="2879.5" >Nsf..</text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.03%)</title><rect x="299.9" y="1621" width="0.3" height="15.0" fill="rgb(253,70,31)" rx="2" ry="2" /> +<text x="302.88" y="1631.5" ></text> +</g> +<g > +<title>Composer\Autoload\ClassLoader::loadClass (1 samples, 0.03%)</title><rect x="16.9" y="3509" width="0.4" height="15.0" fill="rgb(242,116,32)" rx="2" ry="2" /> +<text x="19.94" y="3519.5" ></text> +</g> +<g > +<title>assert (20 samples, 0.56%)</title><rect x="1183.1" y="3541" width="6.6" height="15.0" fill="rgb(254,105,26)" rx="2" ry="2" /> +<text x="1186.06" y="3551.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (6 samples, 0.17%)</title><rect x="269.5" y="2117" width="2.0" height="15.0" fill="rgb(253,42,23)" rx="2" ry="2" /> +<text x="272.47" y="2127.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\ControlFlowResult::Br (111 samples, 3.11%)</title><rect x="1070.0" y="3509" width="36.7" height="15.0" fill="rgb(223,32,50)" rx="2" ry="2" /> +<text x="1073.02" y="3519.5" >Nsf..</text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.03%)</title><rect x="790.1" y="2005" width="0.3" height="15.0" fill="rgb(243,81,51)" rx="2" ry="2" /> +<text x="793.06" y="2015.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (230 samples, 6.44%)</title><rect x="707.4" y="2725" width="76.0" height="15.0" fill="rgb(234,110,11)" rx="2" ry="2" /> +<text x="710.42" y="2735.5" >Nsfisis\..</text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="410.9" y="1925" width="0.4" height="15.0" fill="rgb(230,106,28)" rx="2" ry="2" /> +<text x="413.94" y="1935.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="298.6" y="1637" width="0.3" height="15.0" fill="rgb(230,194,29)" rx="2" ry="2" /> +<text x="301.55" y="1647.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="702.8" y="2341" width="0.3" height="15.0" fill="rgb(211,114,34)" rx="2" ry="2" /> +<text x="705.80" y="2351.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (2 samples, 0.06%)</title><rect x="954.7" y="2661" width="0.6" height="15.0" fill="rgb(253,24,49)" rx="2" ry="2" /> +<text x="957.66" y="2671.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="656.5" y="1989" width="0.4" height="15.0" fill="rgb(247,93,12)" rx="2" ry="2" /> +<text x="659.52" y="1999.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="411.6" y="1893" width="0.3" height="15.0" fill="rgb(223,79,20)" rx="2" ry="2" /> +<text x="414.60" y="1903.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="398.7" y="2149" width="0.3" height="15.0" fill="rgb(245,171,46)" rx="2" ry="2" /> +<text x="401.71" y="2159.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (8 samples, 0.22%)</title><rect x="888.2" y="2597" width="2.7" height="15.0" fill="rgb(236,67,23)" rx="2" ry="2" /> +<text x="891.22" y="2607.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (1 samples, 0.03%)</title><rect x="702.8" y="2581" width="0.3" height="15.0" fill="rgb(222,170,16)" rx="2" ry="2" /> +<text x="705.80" y="2591.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="658.5" y="2053" width="0.3" height="15.0" fill="rgb(224,20,16)" rx="2" ry="2" /> +<text x="661.50" y="2063.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\BinaryFormat\Decoder::decodeInstrsUntil (4 samples, 0.11%)</title><rect x="11.7" y="3301" width="1.3" height="15.0" fill="rgb(235,77,1)" rx="2" ry="2" /> +<text x="14.65" y="3311.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (2 samples, 0.06%)</title><rect x="877.3" y="2197" width="0.7" height="15.0" fill="rgb(213,201,15)" rx="2" ry="2" /> +<text x="880.32" y="2207.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Stack::pushI32 (1 samples, 0.03%)</title><rect x="930.2" y="2389" width="0.3" height="15.0" fill="rgb(241,151,41)" rx="2" ry="2" /> +<text x="933.20" y="2399.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="1110.3" y="3493" width="0.4" height="15.0" fill="rgb(214,229,36)" rx="2" ry="2" /> +<text x="1113.34" y="3503.5" ></text> +</g> +<g > +<title><unknown> (1 samples, 0.03%)</title><rect x="839.6" y="2341" width="0.4" height="15.0" fill="rgb(218,153,51)" rx="2" ry="2" /> +<text x="842.64" y="2351.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="391.4" y="1957" width="0.4" height="15.0" fill="rgb(212,59,13)" rx="2" ry="2" /> +<text x="394.43" y="1967.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (8 samples, 0.22%)</title><rect x="414.2" y="1877" width="2.7" height="15.0" fill="rgb(225,83,40)" rx="2" ry="2" /> +<text x="417.24" y="1887.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (2 samples, 0.06%)</title><rect x="954.7" y="1349" width="0.6" height="15.0" fill="rgb(248,7,13)" rx="2" ry="2" /> +<text x="957.66" y="1359.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="697.5" y="1893" width="0.3" height="15.0" fill="rgb(248,106,21)" rx="2" ry="2" /> +<text x="700.51" y="1903.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.03%)</title><rect x="941.4" y="2517" width="0.4" height="15.0" fill="rgb(207,40,51)" rx="2" ry="2" /> +<text x="944.44" y="2527.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (12 samples, 0.34%)</title><rect x="360.4" y="1893" width="3.9" height="15.0" fill="rgb(234,187,4)" rx="2" ry="2" /> +<text x="363.36" y="1903.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (2 samples, 0.06%)</title><rect x="1104.1" y="2917" width="0.6" height="15.0" fill="rgb(238,224,32)" rx="2" ry="2" /> +<text x="1107.06" y="2927.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (4 samples, 0.11%)</title><rect x="661.5" y="2245" width="1.3" height="15.0" fill="rgb(220,45,26)" rx="2" ry="2" /> +<text x="664.48" y="2255.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\BinaryFormat\Decoder::{closure}(/home/ken/src/php-waddiwasi/src/BinaryFormat/Decoder.php:518-531) (4 samples, 0.11%)</title><rect x="954.7" y="3125" width="1.3" height="15.0" fill="rgb(235,28,27)" rx="2" ry="2" /> +<text x="957.66" y="3135.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (9 samples, 0.25%)</title><rect x="672.1" y="2645" width="2.9" height="15.0" fill="rgb(231,143,19)" rx="2" ry="2" /> +<text x="675.06" y="2655.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="848.2" y="2821" width="0.4" height="15.0" fill="rgb(209,21,17)" rx="2" ry="2" /> +<text x="851.23" y="2831.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (3 samples, 0.08%)</title><rect x="701.8" y="2389" width="1.0" height="15.0" fill="rgb(234,5,48)" rx="2" ry="2" /> +<text x="704.80" y="2399.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (65 samples, 1.82%)</title><rect x="291.3" y="2053" width="21.5" height="15.0" fill="rgb(206,40,18)" rx="2" ry="2" /> +<text x="294.28" y="2063.5" >N..</text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (2 samples, 0.06%)</title><rect x="691.2" y="2485" width="0.7" height="15.0" fill="rgb(213,78,25)" rx="2" ry="2" /> +<text x="694.23" y="2495.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.03%)</title><rect x="297.6" y="1717" width="0.3" height="15.0" fill="rgb(211,217,11)" rx="2" ry="2" /> +<text x="300.56" y="1727.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (5 samples, 0.14%)</title><rect x="374.6" y="1781" width="1.6" height="15.0" fill="rgb(234,211,5)" rx="2" ry="2" /> +<text x="377.58" y="1791.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (1 samples, 0.03%)</title><rect x="847.2" y="2709" width="0.4" height="15.0" fill="rgb(231,163,37)" rx="2" ry="2" /> +<text x="850.24" y="2719.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1,261 samples, 35.32%)</title><rect x="249.6" y="2853" width="416.8" height="15.0" fill="rgb(215,37,39)" rx="2" ry="2" /> +<text x="252.64" y="2863.5" >Nsfisis\Waddiwasi\Execution\Runtime::execInstr</text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (3 samples, 0.08%)</title><rect x="316.1" y="1797" width="1.0" height="15.0" fill="rgb(229,36,19)" rx="2" ry="2" /> +<text x="319.07" y="1807.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="649.2" y="2085" width="0.4" height="15.0" fill="rgb(247,123,53)" rx="2" ry="2" /> +<text x="652.25" y="2095.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (686 samples, 19.22%)</title><rect x="422.2" y="1701" width="226.7" height="15.0" fill="rgb(227,60,14)" rx="2" ry="2" /> +<text x="425.17" y="1711.5" >Nsfisis\Waddiwasi\Execution\Ru..</text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeHostFunc (1 samples, 0.03%)</title><rect x="955.3" y="2789" width="0.4" height="15.0" fill="rgb(223,199,6)" rx="2" ry="2" /> +<text x="958.32" y="2799.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="661.8" y="1861" width="0.3" height="15.0" fill="rgb(243,28,18)" rx="2" ry="2" /> +<text x="664.81" y="1871.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (5 samples, 0.14%)</title><rect x="854.8" y="2629" width="1.7" height="15.0" fill="rgb(219,70,16)" rx="2" ry="2" /> +<text x="857.84" y="2639.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Stack::popI32 (1 samples, 0.03%)</title><rect x="783.4" y="2805" width="0.4" height="15.0" fill="rgb(243,195,35)" rx="2" ry="2" /> +<text x="786.45" y="2815.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.03%)</title><rect x="878.3" y="2293" width="0.3" height="15.0" fill="rgb(205,160,0)" rx="2" ry="2" /> +<text x="881.31" y="2303.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.03%)</title><rect x="1153.6" y="3253" width="0.4" height="15.0" fill="rgb(212,178,4)" rx="2" ry="2" /> +<text x="1156.64" y="3263.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.03%)</title><rect x="954.0" y="2421" width="0.3" height="15.0" fill="rgb(215,202,48)" rx="2" ry="2" /> +<text x="957.00" y="2431.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (2 samples, 0.06%)</title><rect x="697.2" y="2213" width="0.6" height="15.0" fill="rgb(252,174,25)" rx="2" ry="2" /> +<text x="700.18" y="2223.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (317 samples, 8.88%)</title><rect x="849.6" y="3189" width="104.7" height="15.0" fill="rgb(215,212,48)" rx="2" ry="2" /> +<text x="852.55" y="3199.5" >Nsfisis\Wadd..</text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (1 samples, 0.03%)</title><rect x="422.8" y="949" width="0.4" height="15.0" fill="rgb(242,64,54)" rx="2" ry="2" /> +<text x="425.83" y="959.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="954.3" y="2501" width="0.4" height="15.0" fill="rgb(234,21,49)" rx="2" ry="2" /> +<text x="957.33" y="2511.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (2 samples, 0.06%)</title><rect x="670.7" y="2613" width="0.7" height="15.0" fill="rgb(240,34,29)" rx="2" ry="2" /> +<text x="673.73" y="2623.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (3 samples, 0.08%)</title><rect x="404.7" y="1509" width="0.9" height="15.0" fill="rgb(226,110,2)" rx="2" ry="2" /> +<text x="407.66" y="1519.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="953.7" y="3045" width="0.3" height="15.0" fill="rgb(226,162,40)" rx="2" ry="2" /> +<text x="956.67" y="3055.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.03%)</title><rect x="265.2" y="1621" width="0.3" height="15.0" fill="rgb(248,99,18)" rx="2" ry="2" /> +<text x="268.17" y="1631.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (47 samples, 1.32%)</title><rect x="256.2" y="2213" width="15.6" height="15.0" fill="rgb(241,23,29)" rx="2" ry="2" /> +<text x="259.25" y="2223.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (1 samples, 0.03%)</title><rect x="670.1" y="2613" width="0.3" height="15.0" fill="rgb(224,147,45)" rx="2" ry="2" /> +<text x="673.07" y="2623.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (4 samples, 0.11%)</title><rect x="306.8" y="1845" width="1.3" height="15.0" fill="rgb(225,170,8)" rx="2" ry="2" /> +<text x="309.82" y="1855.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (7 samples, 0.20%)</title><rect x="1102.7" y="3173" width="2.4" height="15.0" fill="rgb(211,209,46)" rx="2" ry="2" /> +<text x="1105.74" y="3183.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (20 samples, 0.56%)</title><rect x="313.1" y="2213" width="6.6" height="15.0" fill="rgb(243,8,45)" rx="2" ry="2" /> +<text x="316.10" y="2223.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (692 samples, 19.38%)</title><rect x="420.9" y="2229" width="228.7" height="15.0" fill="rgb(219,77,13)" rx="2" ry="2" /> +<text x="423.85" y="2239.5" >Nsfisis\Waddiwasi\Execution\Ru..</text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="954.3" y="2917" width="0.4" height="15.0" fill="rgb(244,154,40)" rx="2" ry="2" /> +<text x="957.33" y="2927.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (2 samples, 0.06%)</title><rect x="849.6" y="2325" width="0.6" height="15.0" fill="rgb(254,127,50)" rx="2" ry="2" /> +<text x="852.55" y="2335.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="246.0" y="3109" width="0.3" height="15.0" fill="rgb(225,130,0)" rx="2" ry="2" /> +<text x="249.00" y="3119.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1,807 samples, 50.62%)</title><rect x="249.3" y="3093" width="597.3" height="15.0" fill="rgb(237,20,0)" rx="2" ry="2" /> +<text x="252.31" y="3103.5" >Nsfisis\Waddiwasi\Execution\Runtime::execInstrs</text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.03%)</title><rect x="954.0" y="3125" width="0.3" height="15.0" fill="rgb(212,87,14)" rx="2" ry="2" /> +<text x="957.00" y="3135.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (686 samples, 19.22%)</title><rect x="422.2" y="1973" width="226.7" height="15.0" fill="rgb(217,6,37)" rx="2" ry="2" /> +<text x="425.17" y="1983.5" >Nsfisis\Waddiwasi\Execution\Ru..</text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (6 samples, 0.17%)</title><rect x="841.9" y="2885" width="2.0" height="15.0" fill="rgb(206,1,34)" rx="2" ry="2" /> +<text x="844.95" y="2895.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (6 samples, 0.17%)</title><rect x="849.6" y="2677" width="1.9" height="15.0" fill="rgb(239,217,51)" rx="2" ry="2" /> +<text x="852.55" y="2687.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (2 samples, 0.06%)</title><rect x="954.7" y="981" width="0.6" height="15.0" fill="rgb(212,183,0)" rx="2" ry="2" /> +<text x="957.66" y="991.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (2 samples, 0.06%)</title><rect x="937.5" y="2421" width="0.6" height="15.0" fill="rgb(240,172,38)" rx="2" ry="2" /> +<text x="940.47" y="2431.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (2 samples, 0.06%)</title><rect x="954.7" y="1717" width="0.6" height="15.0" fill="rgb(227,192,44)" rx="2" ry="2" /> +<text x="957.66" y="1727.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="666.1" y="2341" width="0.3" height="15.0" fill="rgb(215,189,20)" rx="2" ry="2" /> +<text x="669.11" y="2351.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.03%)</title><rect x="411.6" y="1813" width="0.3" height="15.0" fill="rgb(226,220,32)" rx="2" ry="2" /> +<text x="414.60" y="1823.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (2 samples, 0.06%)</title><rect x="842.9" y="2389" width="0.7" height="15.0" fill="rgb(220,148,48)" rx="2" ry="2" /> +<text x="845.94" y="2399.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.03%)</title><rect x="246.0" y="3093" width="0.3" height="15.0" fill="rgb(209,7,20)" rx="2" ry="2" /> +<text x="249.00" y="3103.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (3 samples, 0.08%)</title><rect x="848.6" y="2997" width="1.0" height="15.0" fill="rgb(207,167,49)" rx="2" ry="2" /> +<text x="851.56" y="3007.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Stack::popValue (1 samples, 0.03%)</title><rect x="661.8" y="1765" width="0.3" height="15.0" fill="rgb(214,16,4)" rx="2" ry="2" /> +<text x="664.81" y="1775.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="846.6" y="2629" width="0.3" height="15.0" fill="rgb(219,206,44)" rx="2" ry="2" /> +<text x="849.58" y="2639.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\MemInst::storeI32 (1 samples, 0.03%)</title><rect x="268.1" y="1861" width="0.4" height="15.0" fill="rgb(234,48,49)" rx="2" ry="2" /> +<text x="271.15" y="1871.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (682 samples, 19.10%)</title><rect x="423.2" y="885" width="225.4" height="15.0" fill="rgb(206,53,11)" rx="2" ry="2" /> +<text x="426.17" y="895.5" >Nsfisis\Waddiwasi\Execution\R..</text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (5 samples, 0.14%)</title><rect x="700.2" y="2453" width="1.6" height="15.0" fill="rgb(254,74,27)" rx="2" ry="2" /> +<text x="703.15" y="2463.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (1 samples, 0.03%)</title><rect x="346.2" y="1989" width="0.3" height="15.0" fill="rgb(206,74,12)" rx="2" ry="2" /> +<text x="349.15" y="1999.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::deactivateFrame (1 samples, 0.03%)</title><rect x="813.9" y="2293" width="0.3" height="15.0" fill="rgb(217,55,22)" rx="2" ry="2" /> +<text x="816.85" y="2303.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (7 samples, 0.20%)</title><rect x="314.8" y="2165" width="2.3" height="15.0" fill="rgb(247,164,22)" rx="2" ry="2" /> +<text x="317.75" y="2175.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (3 samples, 0.08%)</title><rect x="307.1" y="1733" width="1.0" height="15.0" fill="rgb(237,122,37)" rx="2" ry="2" /> +<text x="310.15" y="1743.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.03%)</title><rect x="695.9" y="2325" width="0.3" height="15.0" fill="rgb(228,135,37)" rx="2" ry="2" /> +<text x="698.85" y="2335.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Stack::pushValue (1 samples, 0.03%)</title><rect x="406.3" y="1845" width="0.3" height="15.0" fill="rgb(248,181,34)" rx="2" ry="2" /> +<text x="409.31" y="1855.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (2 samples, 0.06%)</title><rect x="954.7" y="1813" width="0.6" height="15.0" fill="rgb(237,52,44)" rx="2" ry="2" /> +<text x="957.66" y="1823.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.03%)</title><rect x="790.1" y="1813" width="0.3" height="15.0" fill="rgb(230,87,35)" rx="2" ry="2" /> +<text x="793.06" y="1823.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (4 samples, 0.11%)</title><rect x="269.8" y="2101" width="1.3" height="15.0" fill="rgb(214,95,34)" rx="2" ry="2" /> +<text x="272.80" y="2111.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.03%)</title><rect x="669.4" y="2613" width="0.3" height="15.0" fill="rgb(233,82,0)" rx="2" ry="2" /> +<text x="672.41" y="2623.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="664.5" y="1989" width="0.3" height="15.0" fill="rgb(225,168,46)" rx="2" ry="2" /> +<text x="667.45" y="1999.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (4 samples, 0.11%)</title><rect x="661.5" y="2261" width="1.3" height="15.0" fill="rgb(236,157,9)" rx="2" ry="2" /> +<text x="664.48" y="2271.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (2 samples, 0.06%)</title><rect x="954.7" y="1525" width="0.6" height="15.0" fill="rgb(234,157,43)" rx="2" ry="2" /> +<text x="957.66" y="1535.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="845.3" y="2661" width="0.3" height="15.0" fill="rgb(214,214,52)" rx="2" ry="2" /> +<text x="848.25" y="2671.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (305 samples, 8.54%)</title><rect x="852.9" y="2933" width="100.8" height="15.0" fill="rgb(229,62,54)" rx="2" ry="2" /> +<text x="855.86" y="2943.5" >Nsfisis\Wadd..</text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (1 samples, 0.03%)</title><rect x="951.7" y="2629" width="0.3" height="15.0" fill="rgb(221,173,5)" rx="2" ry="2" /> +<text x="954.69" y="2639.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (2 samples, 0.06%)</title><rect x="348.1" y="1893" width="0.7" height="15.0" fill="rgb(248,51,5)" rx="2" ry="2" /> +<text x="351.13" y="1903.5" ></text> +</g> +<g > +<title><unknown> (1 samples, 0.03%)</title><rect x="870.4" y="1461" width="0.3" height="15.0" fill="rgb(241,219,15)" rx="2" ry="2" /> +<text x="873.38" y="1471.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (3 samples, 0.08%)</title><rect x="1085.6" y="3413" width="0.9" height="15.0" fill="rgb(245,84,30)" rx="2" ry="2" /> +<text x="1088.55" y="3423.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (23 samples, 0.64%)</title><rect x="885.6" y="2677" width="7.6" height="15.0" fill="rgb(247,17,43)" rx="2" ry="2" /> +<text x="888.58" y="2687.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (5 samples, 0.14%)</title><rect x="796.7" y="2181" width="1.6" height="15.0" fill="rgb(219,47,48)" rx="2" ry="2" /> +<text x="799.67" y="2191.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.03%)</title><rect x="420.2" y="2101" width="0.3" height="15.0" fill="rgb(227,76,8)" rx="2" ry="2" /> +<text x="423.19" y="2111.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="263.5" y="1765" width="0.3" height="15.0" fill="rgb(216,142,45)" rx="2" ry="2" /> +<text x="266.52" y="1775.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.03%)</title><rect x="421.5" y="1845" width="0.3" height="15.0" fill="rgb(246,96,38)" rx="2" ry="2" /> +<text x="424.51" y="1855.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (6 samples, 0.17%)</title><rect x="658.8" y="2037" width="2.0" height="15.0" fill="rgb(214,119,16)" rx="2" ry="2" /> +<text x="661.83" y="2047.5" ></text> +</g> +<g > +<title><unknown> (1 samples, 0.03%)</title><rect x="1155.0" y="3509" width="0.3" height="15.0" fill="rgb(209,111,16)" rx="2" ry="2" /> +<text x="1157.96" y="3519.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (3 samples, 0.08%)</title><rect x="331.6" y="1813" width="1.0" height="15.0" fill="rgb(211,78,34)" rx="2" ry="2" /> +<text x="334.61" y="1823.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (2 samples, 0.06%)</title><rect x="954.7" y="1205" width="0.6" height="15.0" fill="rgb(232,124,48)" rx="2" ry="2" /> +<text x="957.66" y="1215.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (1 samples, 0.03%)</title><rect x="661.8" y="1941" width="0.3" height="15.0" fill="rgb(237,149,4)" rx="2" ry="2" /> +<text x="664.81" y="1951.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="664.5" y="2053" width="0.3" height="15.0" fill="rgb(235,71,22)" rx="2" ry="2" /> +<text x="667.45" y="2063.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="952.3" y="2501" width="0.4" height="15.0" fill="rgb(224,115,6)" rx="2" ry="2" /> +<text x="955.35" y="2511.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Stack::popI32 (1 samples, 0.03%)</title><rect x="951.7" y="2741" width="0.3" height="15.0" fill="rgb(238,119,8)" rx="2" ry="2" /> +<text x="954.69" y="2751.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (4 samples, 0.11%)</title><rect x="283.7" y="1813" width="1.3" height="15.0" fill="rgb(224,169,46)" rx="2" ry="2" /> +<text x="286.68" y="1823.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.03%)</title><rect x="930.2" y="2453" width="0.3" height="15.0" fill="rgb(215,218,4)" rx="2" ry="2" /> +<text x="933.20" y="2463.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (4 samples, 0.11%)</title><rect x="248.0" y="2981" width="1.3" height="15.0" fill="rgb(249,52,47)" rx="2" ry="2" /> +<text x="250.98" y="2991.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (3 samples, 0.08%)</title><rect x="404.7" y="1285" width="0.9" height="15.0" fill="rgb(219,42,34)" rx="2" ry="2" /> +<text x="407.66" y="1295.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (2 samples, 0.06%)</title><rect x="952.0" y="2517" width="0.7" height="15.0" fill="rgb(244,98,15)" rx="2" ry="2" /> +<text x="955.02" y="2527.5" ></text> +</g> +<g > +<title><unknown> (1 samples, 0.03%)</title><rect x="870.4" y="1893" width="0.3" height="15.0" fill="rgb(205,119,20)" rx="2" ry="2" /> +<text x="873.38" y="1903.5" ></text> +</g> +<g > +<title><unknown> (1 samples, 0.03%)</title><rect x="870.4" y="1189" width="0.3" height="15.0" fill="rgb(251,212,28)" rx="2" ry="2" /> +<text x="873.38" y="1199.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="375.9" y="1381" width="0.3" height="15.0" fill="rgb(207,205,35)" rx="2" ry="2" /> +<text x="378.90" y="1391.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="266.8" y="1733" width="0.4" height="15.0" fill="rgb(220,132,35)" rx="2" ry="2" /> +<text x="269.82" y="1743.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1,823 samples, 51.06%)</title><rect x="246.0" y="3349" width="602.6" height="15.0" fill="rgb(210,102,46)" rx="2" ry="2" /> +<text x="249.00" y="3359.5" >Nsfisis\Waddiwasi\Execution\Runtime::execInstrs</text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (21 samples, 0.59%)</title><rect x="400.0" y="2069" width="7.0" height="15.0" fill="rgb(235,204,44)" rx="2" ry="2" /> +<text x="403.03" y="2079.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="1175.5" y="3525" width="0.3" height="15.0" fill="rgb(208,102,25)" rx="2" ry="2" /> +<text x="1178.46" y="3535.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (3 samples, 0.08%)</title><rect x="848.6" y="3045" width="1.0" height="15.0" fill="rgb(205,173,35)" rx="2" ry="2" /> +<text x="851.56" y="3055.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (1 samples, 0.03%)</title><rect x="358.4" y="1701" width="0.3" height="15.0" fill="rgb(239,222,21)" rx="2" ry="2" /> +<text x="361.38" y="1711.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Stack::popI64 (1 samples, 0.03%)</title><rect x="670.7" y="2325" width="0.4" height="15.0" fill="rgb(214,178,37)" rx="2" ry="2" /> +<text x="673.73" y="2335.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (2 samples, 0.06%)</title><rect x="354.4" y="1765" width="0.7" height="15.0" fill="rgb(250,172,17)" rx="2" ry="2" /> +<text x="357.41" y="1775.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (3 samples, 0.08%)</title><rect x="837.7" y="2213" width="0.9" height="15.0" fill="rgb(241,60,54)" rx="2" ry="2" /> +<text x="840.65" y="2223.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Stack::pushValue (1 samples, 0.03%)</title><rect x="391.4" y="2069" width="0.4" height="15.0" fill="rgb(243,57,13)" rx="2" ry="2" /> +<text x="394.43" y="2079.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="847.2" y="2661" width="0.4" height="15.0" fill="rgb(251,79,12)" rx="2" ry="2" /> +<text x="850.24" y="2671.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (2 samples, 0.06%)</title><rect x="950.0" y="2485" width="0.7" height="15.0" fill="rgb(234,67,48)" rx="2" ry="2" /> +<text x="953.03" y="2495.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (3 samples, 0.08%)</title><rect x="313.4" y="2165" width="1.0" height="15.0" fill="rgb(205,173,43)" rx="2" ry="2" /> +<text x="316.43" y="2175.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (23 samples, 0.64%)</title><rect x="791.0" y="2325" width="7.6" height="15.0" fill="rgb(215,44,31)" rx="2" ry="2" /> +<text x="794.05" y="2335.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (3 samples, 0.08%)</title><rect x="404.7" y="1493" width="0.9" height="15.0" fill="rgb(206,52,49)" rx="2" ry="2" /> +<text x="407.66" y="1503.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (2 samples, 0.06%)</title><rect x="363.3" y="1845" width="0.7" height="15.0" fill="rgb(221,19,23)" rx="2" ry="2" /> +<text x="366.34" y="1855.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.03%)</title><rect x="845.9" y="3029" width="0.3" height="15.0" fill="rgb(221,178,5)" rx="2" ry="2" /> +<text x="848.92" y="3039.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (2 samples, 0.06%)</title><rect x="370.9" y="1669" width="0.7" height="15.0" fill="rgb(233,184,48)" rx="2" ry="2" /> +<text x="373.94" y="1679.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (16 samples, 0.45%)</title><rect x="1099.8" y="3269" width="5.3" height="15.0" fill="rgb(215,117,35)" rx="2" ry="2" /> +<text x="1102.76" y="3279.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (174 samples, 4.87%)</title><rect x="784.4" y="2565" width="57.5" height="15.0" fill="rgb(220,166,7)" rx="2" ry="2" /> +<text x="787.44" y="2575.5" >Nsfisi..</text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (3 samples, 0.08%)</title><rect x="420.9" y="2149" width="0.9" height="15.0" fill="rgb(236,154,54)" rx="2" ry="2" /> +<text x="423.85" y="2159.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (4 samples, 0.11%)</title><rect x="279.7" y="1973" width="1.3" height="15.0" fill="rgb(236,146,50)" rx="2" ry="2" /> +<text x="282.71" y="1983.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (2 samples, 0.06%)</title><rect x="954.7" y="901" width="0.6" height="15.0" fill="rgb(252,97,8)" rx="2" ry="2" /> +<text x="957.66" y="911.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (1 samples, 0.03%)</title><rect x="383.5" y="1877" width="0.3" height="15.0" fill="rgb(230,79,39)" rx="2" ry="2" /> +<text x="386.50" y="1887.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.03%)</title><rect x="846.9" y="2869" width="0.3" height="15.0" fill="rgb(206,103,22)" rx="2" ry="2" /> +<text x="849.91" y="2879.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.03%)</title><rect x="391.4" y="1781" width="0.4" height="15.0" fill="rgb(245,185,16)" rx="2" ry="2" /> +<text x="394.43" y="1791.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.03%)</title><rect x="843.9" y="2869" width="0.4" height="15.0" fill="rgb(205,182,7)" rx="2" ry="2" /> +<text x="846.93" y="2879.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (230 samples, 6.44%)</title><rect x="707.4" y="2613" width="76.0" height="15.0" fill="rgb(209,83,1)" rx="2" ry="2" /> +<text x="710.42" y="2623.5" >Nsfisis\..</text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.03%)</title><rect x="256.9" y="2101" width="0.3" height="15.0" fill="rgb(244,82,38)" rx="2" ry="2" /> +<text x="259.91" y="2111.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.03%)</title><rect x="251.6" y="2677" width="0.3" height="15.0" fill="rgb(240,153,16)" rx="2" ry="2" /> +<text x="254.62" y="2687.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.03%)</title><rect x="697.5" y="1877" width="0.3" height="15.0" fill="rgb(206,16,15)" rx="2" ry="2" /> +<text x="700.51" y="1887.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="841.0" y="2277" width="0.3" height="15.0" fill="rgb(215,220,2)" rx="2" ry="2" /> +<text x="843.96" y="2287.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (4 samples, 0.11%)</title><rect x="250.0" y="2773" width="1.3" height="15.0" fill="rgb(208,69,39)" rx="2" ry="2" /> +<text x="252.97" y="2783.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::deactivateLabel (1 samples, 0.03%)</title><rect x="328.3" y="2165" width="0.3" height="15.0" fill="rgb(212,217,34)" rx="2" ry="2" /> +<text x="331.30" y="2175.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (5 samples, 0.14%)</title><rect x="366.3" y="1813" width="1.7" height="15.0" fill="rgb(240,92,43)" rx="2" ry="2" /> +<text x="369.31" y="1823.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (22 samples, 0.62%)</title><rect x="801.3" y="2389" width="7.3" height="15.0" fill="rgb(226,19,1)" rx="2" ry="2" /> +<text x="804.29" y="2399.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (2 samples, 0.06%)</title><rect x="370.9" y="1653" width="0.7" height="15.0" fill="rgb(240,209,28)" rx="2" ry="2" /> +<text x="373.94" y="1663.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (197 samples, 5.52%)</title><rect x="254.6" y="2293" width="65.1" height="15.0" fill="rgb(235,63,28)" rx="2" ry="2" /> +<text x="257.59" y="2303.5" >Nsfisis..</text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (1 samples, 0.03%)</title><rect x="1139.1" y="3429" width="0.3" height="15.0" fill="rgb(251,159,12)" rx="2" ry="2" /> +<text x="1142.10" y="3439.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="848.2" y="2789" width="0.4" height="15.0" fill="rgb(239,26,29)" rx="2" ry="2" /> +<text x="851.23" y="2799.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doStoreI32 (1 samples, 0.03%)</title><rect x="707.1" y="2805" width="0.3" height="15.0" fill="rgb(229,23,35)" rx="2" ry="2" /> +<text x="710.09" y="2815.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.03%)</title><rect x="390.4" y="1941" width="0.4" height="15.0" fill="rgb(210,196,0)" rx="2" ry="2" /> +<text x="393.44" y="1951.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (30 samples, 0.84%)</title><rect x="293.6" y="1941" width="9.9" height="15.0" fill="rgb(254,214,11)" rx="2" ry="2" /> +<text x="296.60" y="1951.5" ></text> +</g> +<g > +<title><unknown> (1 samples, 0.03%)</title><rect x="870.4" y="1093" width="0.3" height="15.0" fill="rgb(252,14,42)" rx="2" ry="2" /> +<text x="873.38" y="1103.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (3 samples, 0.08%)</title><rect x="296.9" y="1813" width="1.0" height="15.0" fill="rgb(237,97,2)" rx="2" ry="2" /> +<text x="299.90" y="1823.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (2 samples, 0.06%)</title><rect x="268.8" y="2021" width="0.7" height="15.0" fill="rgb(220,72,34)" rx="2" ry="2" /> +<text x="271.81" y="2031.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (2 samples, 0.06%)</title><rect x="691.2" y="2277" width="0.7" height="15.0" fill="rgb(212,10,30)" rx="2" ry="2" /> +<text x="694.23" y="2287.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (2 samples, 0.06%)</title><rect x="263.2" y="1877" width="0.6" height="15.0" fill="rgb(233,76,46)" rx="2" ry="2" /> +<text x="266.19" y="1887.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="302.9" y="1797" width="0.3" height="15.0" fill="rgb(224,184,4)" rx="2" ry="2" /> +<text x="305.85" y="1807.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.03%)</title><rect x="316.4" y="1525" width="0.3" height="15.0" fill="rgb(213,174,53)" rx="2" ry="2" /> +<text x="319.40" y="1535.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="831.4" y="2181" width="0.3" height="15.0" fill="rgb(218,208,6)" rx="2" ry="2" /> +<text x="834.37" y="2191.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="314.1" y="1381" width="0.3" height="15.0" fill="rgb(211,184,13)" rx="2" ry="2" /> +<text x="317.09" y="1391.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.03%)</title><rect x="410.9" y="2101" width="0.4" height="15.0" fill="rgb(207,13,48)" rx="2" ry="2" /> +<text x="413.94" y="2111.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\BinaryFormat\Decoder::decodeLabelIdx (1 samples, 0.03%)</title><rect x="13.0" y="3301" width="0.3" height="15.0" fill="rgb(239,55,40)" rx="2" ry="2" /> +<text x="15.97" y="3311.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.03%)</title><rect x="669.4" y="2645" width="0.3" height="15.0" fill="rgb(234,161,17)" rx="2" ry="2" /> +<text x="672.41" y="2655.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.03%)</title><rect x="843.6" y="2645" width="0.3" height="15.0" fill="rgb(210,228,47)" rx="2" ry="2" /> +<text x="846.60" y="2655.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="299.9" y="1829" width="0.3" height="15.0" fill="rgb(239,82,0)" rx="2" ry="2" /> +<text x="302.88" y="1839.5" ></text> +</g> +<g > +<title><unknown> (2 samples, 0.06%)</title><rect x="823.4" y="2133" width="0.7" height="15.0" fill="rgb(219,176,13)" rx="2" ry="2" /> +<text x="826.44" y="2143.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (2 samples, 0.06%)</title><rect x="847.2" y="2837" width="0.7" height="15.0" fill="rgb(222,188,1)" rx="2" ry="2" /> +<text x="850.24" y="2847.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.03%)</title><rect x="400.4" y="1621" width="0.3" height="15.0" fill="rgb(213,11,2)" rx="2" ry="2" /> +<text x="403.36" y="1631.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (2 samples, 0.06%)</title><rect x="954.7" y="565" width="0.6" height="15.0" fill="rgb(237,123,54)" rx="2" ry="2" /> +<text x="957.66" y="575.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="697.5" y="2053" width="0.3" height="15.0" fill="rgb(244,127,18)" rx="2" ry="2" /> +<text x="700.51" y="2063.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (20 samples, 0.56%)</title><rect x="832.4" y="2309" width="6.6" height="15.0" fill="rgb(238,140,3)" rx="2" ry="2" /> +<text x="835.36" y="2319.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\StackEntries\Value::__construct (1 samples, 0.03%)</title><rect x="1155.6" y="3525" width="0.4" height="15.0" fill="rgb(220,22,33)" rx="2" ry="2" /> +<text x="1158.62" y="3535.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (1 samples, 0.03%)</title><rect x="1077.3" y="3429" width="0.3" height="15.0" fill="rgb(220,68,37)" rx="2" ry="2" /> +<text x="1080.29" y="3439.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (2,148 samples, 60.17%)</title><rect x="246.0" y="3509" width="710.0" height="15.0" fill="rgb(238,18,27)" rx="2" ry="2" /> +<text x="249.00" y="3519.5" >Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc</text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (682 samples, 19.10%)</title><rect x="423.2" y="805" width="225.4" height="15.0" fill="rgb(239,121,9)" rx="2" ry="2" /> +<text x="426.17" y="815.5" >Nsfisis\Waddiwasi\Execution\R..</text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="358.4" y="1509" width="0.3" height="15.0" fill="rgb(210,141,30)" rx="2" ry="2" /> +<text x="361.38" y="1519.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (4 samples, 0.11%)</title><rect x="696.8" y="2517" width="1.4" height="15.0" fill="rgb(223,10,20)" rx="2" ry="2" /> +<text x="699.85" y="2527.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (1 samples, 0.03%)</title><rect x="845.6" y="2645" width="0.3" height="15.0" fill="rgb(231,136,3)" rx="2" ry="2" /> +<text x="848.59" y="2655.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (1 samples, 0.03%)</title><rect x="799.0" y="2309" width="0.3" height="15.0" fill="rgb(251,14,38)" rx="2" ry="2" /> +<text x="801.98" y="2319.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (5 samples, 0.14%)</title><rect x="257.2" y="2085" width="1.7" height="15.0" fill="rgb(226,25,34)" rx="2" ry="2" /> +<text x="260.24" y="2095.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="288.3" y="1829" width="0.3" height="15.0" fill="rgb(215,95,38)" rx="2" ry="2" /> +<text x="291.31" y="1839.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.03%)</title><rect x="347.1" y="1941" width="0.4" height="15.0" fill="rgb(225,62,24)" rx="2" ry="2" /> +<text x="350.14" y="1951.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Stack::pushValue (17 samples, 0.48%)</title><rect x="777.5" y="2197" width="5.6" height="15.0" fill="rgb(223,216,47)" rx="2" ry="2" /> +<text x="780.50" y="2207.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doStoreI32 (1 samples, 0.03%)</title><rect x="285.3" y="2101" width="0.4" height="15.0" fill="rgb(244,87,37)" rx="2" ry="2" /> +<text x="288.33" y="2111.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (230 samples, 6.44%)</title><rect x="707.4" y="2581" width="76.0" height="15.0" fill="rgb(254,17,43)" rx="2" ry="2" /> +<text x="710.42" y="2591.5" >Nsfisis\..</text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (5 samples, 0.14%)</title><rect x="374.6" y="1765" width="1.6" height="15.0" fill="rgb(215,30,34)" rx="2" ry="2" /> +<text x="377.58" y="1775.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (26 samples, 0.73%)</title><rect x="667.4" y="2853" width="8.6" height="15.0" fill="rgb(232,157,39)" rx="2" ry="2" /> +<text x="670.43" y="2863.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (4 samples, 0.11%)</title><rect x="370.3" y="1733" width="1.3" height="15.0" fill="rgb(252,188,34)" rx="2" ry="2" /> +<text x="373.28" y="1743.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (682 samples, 19.10%)</title><rect x="423.2" y="789" width="225.4" height="15.0" fill="rgb(236,220,39)" rx="2" ry="2" /> +<text x="426.17" y="799.5" >Nsfisis\Waddiwasi\Execution\R..</text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (683 samples, 19.13%)</title><rect x="422.8" y="1109" width="225.8" height="15.0" fill="rgb(206,128,14)" rx="2" ry="2" /> +<text x="425.83" y="1119.5" >Nsfisis\Waddiwasi\Execution\R..</text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (1 samples, 0.03%)</title><rect x="848.2" y="3061" width="0.4" height="15.0" fill="rgb(249,72,21)" rx="2" ry="2" /> +<text x="851.23" y="3071.5" ></text> +</g> +<g > +<title><unknown> (1 samples, 0.03%)</title><rect x="870.4" y="2021" width="0.3" height="15.0" fill="rgb(244,215,16)" rx="2" ry="2" /> +<text x="873.38" y="2031.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="951.4" y="2725" width="0.3" height="15.0" fill="rgb(227,101,9)" rx="2" ry="2" /> +<text x="954.36" y="2735.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="894.8" y="2757" width="0.4" height="15.0" fill="rgb(206,14,50)" rx="2" ry="2" /> +<text x="897.83" y="2767.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (2 samples, 0.06%)</title><rect x="702.1" y="2309" width="0.7" height="15.0" fill="rgb(241,169,45)" rx="2" ry="2" /> +<text x="705.13" y="2319.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (3 samples, 0.08%)</title><rect x="848.6" y="3381" width="1.0" height="15.0" fill="rgb(247,133,50)" rx="2" ry="2" /> +<text x="851.56" y="3391.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (151 samples, 4.23%)</title><rect x="342.2" y="2149" width="49.9" height="15.0" fill="rgb(209,126,28)" rx="2" ry="2" /> +<text x="345.18" y="2159.5" >Nsfis..</text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (1 samples, 0.03%)</title><rect x="358.4" y="1653" width="0.3" height="15.0" fill="rgb(218,90,10)" rx="2" ry="2" /> +<text x="361.38" y="1663.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (14 samples, 0.39%)</title><rect x="308.1" y="1909" width="4.7" height="15.0" fill="rgb(218,210,44)" rx="2" ry="2" /> +<text x="311.14" y="1919.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (3 samples, 0.08%)</title><rect x="331.6" y="1733" width="1.0" height="15.0" fill="rgb(251,69,49)" rx="2" ry="2" /> +<text x="334.61" y="1743.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\BinaryFormat\Decoder::decodeInstr (7 samples, 0.20%)</title><rect x="11.3" y="3349" width="2.3" height="15.0" fill="rgb(205,174,6)" rx="2" ry="2" /> +<text x="14.32" y="3359.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="845.6" y="2469" width="0.3" height="15.0" fill="rgb(206,153,6)" rx="2" ry="2" /> +<text x="848.59" y="2479.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (4 samples, 0.11%)</title><rect x="954.7" y="3093" width="1.3" height="15.0" fill="rgb(223,98,18)" rx="2" ry="2" /> +<text x="957.66" y="3103.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (2 samples, 0.06%)</title><rect x="954.7" y="1077" width="0.6" height="15.0" fill="rgb(239,79,12)" rx="2" ry="2" /> +<text x="957.66" y="1087.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (3 samples, 0.08%)</title><rect x="404.7" y="1557" width="0.9" height="15.0" fill="rgb(239,124,6)" rx="2" ry="2" /> +<text x="407.66" y="1567.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeHostFunc (5 samples, 0.14%)</title><rect x="846.6" y="3077" width="1.6" height="15.0" fill="rgb(239,175,10)" rx="2" ry="2" /> +<text x="849.58" y="3087.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.03%)</title><rect x="411.6" y="1781" width="0.3" height="15.0" fill="rgb(226,63,21)" rx="2" ry="2" /> +<text x="414.60" y="1791.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.03%)</title><rect x="847.9" y="2869" width="0.3" height="15.0" fill="rgb(209,91,28)" rx="2" ry="2" /> +<text x="850.90" y="2879.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="843.6" y="2565" width="0.3" height="15.0" fill="rgb(219,38,2)" rx="2" ry="2" /> +<text x="846.60" y="2575.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.03%)</title><rect x="1087.5" y="3445" width="0.4" height="15.0" fill="rgb(232,66,51)" rx="2" ry="2" /> +<text x="1090.54" y="3455.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (2 samples, 0.06%)</title><rect x="844.9" y="2805" width="0.7" height="15.0" fill="rgb(220,182,16)" rx="2" ry="2" /> +<text x="847.92" y="2815.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Stack::popI32 (1 samples, 0.03%)</title><rect x="391.4" y="2101" width="0.4" height="15.0" fill="rgb(216,79,3)" rx="2" ry="2" /> +<text x="394.43" y="2111.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="1153.6" y="3205" width="0.4" height="15.0" fill="rgb(235,54,17)" rx="2" ry="2" /> +<text x="1156.64" y="3215.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1,807 samples, 50.62%)</title><rect x="249.3" y="3077" width="597.3" height="15.0" fill="rgb(246,122,7)" rx="2" ry="2" /> +<text x="252.31" y="3087.5" >Nsfisis\Waddiwasi\Execution\Runtime::execInstr</text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.03%)</title><rect x="951.7" y="2677" width="0.3" height="15.0" fill="rgb(250,198,29)" rx="2" ry="2" /> +<text x="954.69" y="2687.5" ></text> +</g> +<g > +<title><unknown> (1 samples, 0.03%)</title><rect x="937.1" y="2405" width="0.4" height="15.0" fill="rgb(222,228,12)" rx="2" ry="2" /> +<text x="940.14" y="2415.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="422.8" y="741" width="0.4" height="15.0" fill="rgb(254,200,23)" rx="2" ry="2" /> +<text x="425.83" y="751.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="405.3" y="901" width="0.3" height="15.0" fill="rgb(215,192,22)" rx="2" ry="2" /> +<text x="408.32" y="911.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (4 samples, 0.11%)</title><rect x="248.0" y="3061" width="1.3" height="15.0" fill="rgb(216,56,29)" rx="2" ry="2" /> +<text x="250.98" y="3071.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Stack::currentFrame (1 samples, 0.03%)</title><rect x="408.0" y="2229" width="0.3" height="15.0" fill="rgb(241,42,43)" rx="2" ry="2" /> +<text x="410.96" y="2239.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Stack::pushI32 (1 samples, 0.03%)</title><rect x="829.7" y="2165" width="0.4" height="15.0" fill="rgb(244,112,9)" rx="2" ry="2" /> +<text x="832.72" y="2175.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="1165.2" y="3365" width="0.3" height="15.0" fill="rgb(228,155,37)" rx="2" ry="2" /> +<text x="1168.21" y="3375.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.03%)</title><rect x="407.3" y="2101" width="0.3" height="15.0" fill="rgb(244,173,54)" rx="2" ry="2" /> +<text x="410.30" y="2111.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (1 samples, 0.03%)</title><rect x="666.1" y="2373" width="0.3" height="15.0" fill="rgb(231,167,45)" rx="2" ry="2" /> +<text x="669.11" y="2383.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (174 samples, 4.87%)</title><rect x="784.4" y="2901" width="57.5" height="15.0" fill="rgb(210,29,47)" rx="2" ry="2" /> +<text x="787.44" y="2911.5" >Nsfisi..</text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (5 samples, 0.14%)</title><rect x="900.1" y="2629" width="1.7" height="15.0" fill="rgb(227,76,23)" rx="2" ry="2" /> +<text x="903.12" y="2639.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (3 samples, 0.08%)</title><rect x="844.9" y="2821" width="1.0" height="15.0" fill="rgb(205,25,27)" rx="2" ry="2" /> +<text x="847.92" y="2831.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.03%)</title><rect x="878.3" y="2229" width="0.3" height="15.0" fill="rgb(233,101,10)" rx="2" ry="2" /> +<text x="881.31" y="2239.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (4 samples, 0.11%)</title><rect x="400.0" y="1925" width="1.4" height="15.0" fill="rgb(219,127,36)" rx="2" ry="2" /> +<text x="403.03" y="1935.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (1 samples, 0.03%)</title><rect x="695.9" y="2357" width="0.3" height="15.0" fill="rgb(245,111,35)" rx="2" ry="2" /> +<text x="698.85" y="2367.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (31 samples, 0.87%)</title><rect x="652.6" y="2357" width="10.2" height="15.0" fill="rgb(219,129,28)" rx="2" ry="2" /> +<text x="655.55" y="2367.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (5 samples, 0.14%)</title><rect x="303.8" y="1925" width="1.7" height="15.0" fill="rgb(209,5,18)" rx="2" ry="2" /> +<text x="306.84" y="1935.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="1177.4" y="3509" width="0.4" height="15.0" fill="rgb(215,189,52)" rx="2" ry="2" /> +<text x="1180.44" y="3519.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Stack::pushValue (1 samples, 0.03%)</title><rect x="398.4" y="2101" width="0.3" height="15.0" fill="rgb(217,170,31)" rx="2" ry="2" /> +<text x="401.38" y="2111.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (3 samples, 0.08%)</title><rect x="357.4" y="1733" width="1.0" height="15.0" fill="rgb(250,221,34)" rx="2" ry="2" /> +<text x="360.39" y="1743.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="251.0" y="2565" width="0.3" height="15.0" fill="rgb(212,197,36)" rx="2" ry="2" /> +<text x="253.96" y="2575.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.03%)</title><rect x="316.4" y="1013" width="0.3" height="15.0" fill="rgb(224,226,22)" rx="2" ry="2" /> +<text x="319.40" y="1023.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="881.0" y="2501" width="0.3" height="15.0" fill="rgb(235,225,22)" rx="2" ry="2" /> +<text x="883.95" y="2511.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.03%)</title><rect x="842.6" y="2453" width="0.3" height="15.0" fill="rgb(254,210,23)" rx="2" ry="2" /> +<text x="845.61" y="2463.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (2 samples, 0.06%)</title><rect x="405.0" y="965" width="0.6" height="15.0" fill="rgb(219,115,22)" rx="2" ry="2" /> +<text x="407.99" y="975.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.03%)</title><rect x="406.6" y="1813" width="0.4" height="15.0" fill="rgb(227,153,3)" rx="2" ry="2" /> +<text x="409.64" y="1823.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (686 samples, 19.22%)</title><rect x="422.2" y="1941" width="226.7" height="15.0" fill="rgb(233,132,9)" rx="2" ry="2" /> +<text x="425.17" y="1951.5" >Nsfisis\Waddiwasi\Execution\Ru..</text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (1 samples, 0.03%)</title><rect x="707.1" y="2709" width="0.3" height="15.0" fill="rgb(208,39,52)" rx="2" ry="2" /> +<text x="710.09" y="2719.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (15 samples, 0.42%)</title><rect x="687.6" y="2501" width="4.9" height="15.0" fill="rgb(212,98,1)" rx="2" ry="2" /> +<text x="690.59" y="2511.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.03%)</title><rect x="843.3" y="2293" width="0.3" height="15.0" fill="rgb(212,52,31)" rx="2" ry="2" /> +<text x="846.27" y="2303.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="280.0" y="1765" width="0.4" height="15.0" fill="rgb(218,80,35)" rx="2" ry="2" /> +<text x="283.04" y="1775.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (1 samples, 0.03%)</title><rect x="298.6" y="1701" width="0.3" height="15.0" fill="rgb(243,143,26)" rx="2" ry="2" /> +<text x="301.55" y="1711.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (6 samples, 0.17%)</title><rect x="283.0" y="1957" width="2.0" height="15.0" fill="rgb(205,117,5)" rx="2" ry="2" /> +<text x="286.02" y="1967.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (4 samples, 0.11%)</title><rect x="954.7" y="3269" width="1.3" height="15.0" fill="rgb(237,227,27)" rx="2" ry="2" /> +<text x="957.66" y="3279.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.03%)</title><rect x="848.2" y="2805" width="0.4" height="15.0" fill="rgb(241,48,1)" rx="2" ry="2" /> +<text x="851.23" y="2815.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (2 samples, 0.06%)</title><rect x="650.6" y="2149" width="0.6" height="15.0" fill="rgb(210,146,10)" rx="2" ry="2" /> +<text x="653.57" y="2159.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (1 samples, 0.03%)</title><rect x="256.9" y="2117" width="0.3" height="15.0" fill="rgb(237,103,29)" rx="2" ry="2" /> +<text x="259.91" y="2127.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (230 samples, 6.44%)</title><rect x="707.4" y="2533" width="76.0" height="15.0" fill="rgb(217,90,11)" rx="2" ry="2" /> +<text x="710.42" y="2543.5" >Nsfisis\..</text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.03%)</title><rect x="903.8" y="2581" width="0.3" height="15.0" fill="rgb(245,158,16)" rx="2" ry="2" /> +<text x="906.76" y="2591.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="406.6" y="1733" width="0.4" height="15.0" fill="rgb(212,180,23)" rx="2" ry="2" /> +<text x="409.64" y="1743.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="411.6" y="1861" width="0.3" height="15.0" fill="rgb(227,75,32)" rx="2" ry="2" /> +<text x="414.60" y="1871.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="1153.6" y="3269" width="0.4" height="15.0" fill="rgb(222,200,45)" rx="2" ry="2" /> +<text x="1156.64" y="3279.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (686 samples, 19.22%)</title><rect x="422.2" y="2117" width="226.7" height="15.0" fill="rgb(206,113,23)" rx="2" ry="2" /> +<text x="425.17" y="2127.5" >Nsfisis\Waddiwasi\Execution\Ru..</text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (2 samples, 0.06%)</title><rect x="844.9" y="2757" width="0.7" height="15.0" fill="rgb(252,119,34)" rx="2" ry="2" /> +<text x="847.92" y="2767.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (2 samples, 0.06%)</title><rect x="848.9" y="2901" width="0.7" height="15.0" fill="rgb(213,1,10)" rx="2" ry="2" /> +<text x="851.89" y="2911.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.03%)</title><rect x="316.4" y="1493" width="0.3" height="15.0" fill="rgb(240,223,35)" rx="2" ry="2" /> +<text x="319.40" y="1503.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (1 samples, 0.03%)</title><rect x="843.9" y="2709" width="0.4" height="15.0" fill="rgb(244,143,24)" rx="2" ry="2" /> +<text x="846.93" y="2719.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (174 samples, 4.87%)</title><rect x="784.4" y="2837" width="57.5" height="15.0" fill="rgb(211,68,18)" rx="2" ry="2" /> +<text x="787.44" y="2847.5" >Nsfisi..</text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (2 samples, 0.06%)</title><rect x="250.6" y="2677" width="0.7" height="15.0" fill="rgb(219,74,41)" rx="2" ry="2" /> +<text x="253.63" y="2687.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (17 samples, 0.48%)</title><rect x="343.5" y="2133" width="5.6" height="15.0" fill="rgb(227,4,49)" rx="2" ry="2" /> +<text x="346.51" y="2143.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="270.8" y="1701" width="0.3" height="15.0" fill="rgb(240,47,5)" rx="2" ry="2" /> +<text x="273.79" y="1711.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.03%)</title><rect x="270.8" y="1685" width="0.3" height="15.0" fill="rgb(210,130,23)" rx="2" ry="2" /> +<text x="273.79" y="1695.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.03%)</title><rect x="790.1" y="1973" width="0.3" height="15.0" fill="rgb(219,229,49)" rx="2" ry="2" /> +<text x="793.06" y="1983.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (2 samples, 0.06%)</title><rect x="248.3" y="2933" width="0.7" height="15.0" fill="rgb(251,225,29)" rx="2" ry="2" /> +<text x="251.31" y="2943.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::deactivateLabel (1 samples, 0.03%)</title><rect x="824.1" y="2149" width="0.3" height="15.0" fill="rgb(229,8,35)" rx="2" ry="2" /> +<text x="827.10" y="2159.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (2 samples, 0.06%)</title><rect x="954.7" y="1493" width="0.6" height="15.0" fill="rgb(237,106,43)" rx="2" ry="2" /> +<text x="957.66" y="1503.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (2 samples, 0.06%)</title><rect x="954.7" y="1317" width="0.6" height="15.0" fill="rgb(230,96,44)" rx="2" ry="2" /> +<text x="957.66" y="1327.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (2 samples, 0.06%)</title><rect x="954.7" y="1429" width="0.6" height="15.0" fill="rgb(229,3,28)" rx="2" ry="2" /> +<text x="957.66" y="1439.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (1 samples, 0.03%)</title><rect x="1121.6" y="3461" width="0.3" height="15.0" fill="rgb(215,222,3)" rx="2" ry="2" /> +<text x="1124.58" y="3471.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Stack::pushValue (1 samples, 0.03%)</title><rect x="249.6" y="2677" width="0.4" height="15.0" fill="rgb(226,123,8)" rx="2" ry="2" /> +<text x="252.64" y="2687.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (689 samples, 19.30%)</title><rect x="421.8" y="2181" width="227.8" height="15.0" fill="rgb(250,214,34)" rx="2" ry="2" /> +<text x="424.84" y="2191.5" >Nsfisis\Waddiwasi\Execution\Ru..</text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (5 samples, 0.14%)</title><rect x="315.4" y="1973" width="1.7" height="15.0" fill="rgb(216,229,30)" rx="2" ry="2" /> +<text x="318.41" y="1983.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.03%)</title><rect x="954.3" y="2837" width="0.4" height="15.0" fill="rgb(236,215,41)" rx="2" ry="2" /> +<text x="957.33" y="2847.5" ></text> +</g> +<g > +<title><unknown> (1 samples, 0.03%)</title><rect x="1176.4" y="3525" width="0.4" height="15.0" fill="rgb(220,144,12)" rx="2" ry="2" /> +<text x="1179.45" y="3535.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Stack::pushI32 (1 samples, 0.03%)</title><rect x="831.4" y="2197" width="0.3" height="15.0" fill="rgb(230,184,54)" rx="2" ry="2" /> +<text x="834.37" y="2207.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Stack::pushBool (1 samples, 0.03%)</title><rect x="1155.3" y="3525" width="0.3" height="15.0" fill="rgb(229,33,5)" rx="2" ry="2" /> +<text x="1158.29" y="3535.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (1 samples, 0.03%)</title><rect x="683.6" y="2437" width="0.4" height="15.0" fill="rgb(229,123,41)" rx="2" ry="2" /> +<text x="686.62" y="2447.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.03%)</title><rect x="790.1" y="2197" width="0.3" height="15.0" fill="rgb(244,80,28)" rx="2" ry="2" /> +<text x="793.06" y="2207.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="315.4" y="1605" width="0.3" height="15.0" fill="rgb(208,142,42)" rx="2" ry="2" /> +<text x="318.41" y="1615.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.03%)</title><rect x="1077.3" y="3349" width="0.3" height="15.0" fill="rgb(237,176,40)" rx="2" ry="2" /> +<text x="1080.29" y="3359.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (1 samples, 0.03%)</title><rect x="421.5" y="1925" width="0.3" height="15.0" fill="rgb(216,169,16)" rx="2" ry="2" /> +<text x="424.51" y="1935.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\StackEntry::Value (1 samples, 0.03%)</title><rect x="353.1" y="1893" width="0.3" height="15.0" fill="rgb(239,115,25)" rx="2" ry="2" /> +<text x="356.09" y="1903.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.03%)</title><rect x="661.8" y="1877" width="0.3" height="15.0" fill="rgb(241,159,22)" rx="2" ry="2" /> +<text x="664.81" y="1887.5" ></text> +</g> +<g > +<title>Composer\Autoload\ClassLoader::loadClass (1 samples, 0.03%)</title><rect x="17.3" y="3477" width="0.3" height="15.0" fill="rgb(243,193,47)" rx="2" ry="2" /> +<text x="20.27" y="3487.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\StackEntry::Value (1 samples, 0.03%)</title><rect x="254.3" y="2149" width="0.3" height="15.0" fill="rgb(239,15,21)" rx="2" ry="2" /> +<text x="257.26" y="2159.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (2 samples, 0.06%)</title><rect x="421.2" y="2085" width="0.6" height="15.0" fill="rgb(231,127,24)" rx="2" ry="2" /> +<text x="424.18" y="2095.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\ControlFlowResult::Br (1 samples, 0.03%)</title><rect x="1096.8" y="3349" width="0.3" height="15.0" fill="rgb(254,178,19)" rx="2" ry="2" /> +<text x="1099.79" y="3359.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="383.5" y="1797" width="0.3" height="15.0" fill="rgb(207,202,22)" rx="2" ry="2" /> +<text x="386.50" y="1807.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (2 samples, 0.06%)</title><rect x="855.5" y="2517" width="0.7" height="15.0" fill="rgb(249,40,8)" rx="2" ry="2" /> +<text x="858.50" y="2527.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (686 samples, 19.22%)</title><rect x="422.2" y="1717" width="226.7" height="15.0" fill="rgb(252,7,51)" rx="2" ry="2" /> +<text x="425.17" y="1727.5" >Nsfisis\Waddiwasi\Execution\Ru..</text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (1 samples, 0.03%)</title><rect x="954.3" y="2549" width="0.4" height="15.0" fill="rgb(234,187,22)" rx="2" ry="2" /> +<text x="957.33" y="2559.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.03%)</title><rect x="954.0" y="3093" width="0.3" height="15.0" fill="rgb(250,12,53)" rx="2" ry="2" /> +<text x="957.00" y="3103.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (2 samples, 0.06%)</title><rect x="954.7" y="1189" width="0.6" height="15.0" fill="rgb(254,114,40)" rx="2" ry="2" /> +<text x="957.66" y="1199.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (2 samples, 0.06%)</title><rect x="954.7" y="1477" width="0.6" height="15.0" fill="rgb(207,25,25)" rx="2" ry="2" /> +<text x="957.66" y="1487.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (3 samples, 0.08%)</title><rect x="420.9" y="2117" width="0.9" height="15.0" fill="rgb(226,75,52)" rx="2" ry="2" /> +<text x="423.85" y="2127.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\BinaryFormat\Decoder::{closure}(/home/ken/src/php-waddiwasi/src/BinaryFormat/Decoder.php:1012-1016) (317 samples, 8.88%)</title><rect x="849.6" y="3317" width="104.7" height="15.0" fill="rgb(209,214,8)" rx="2" ry="2" /> +<text x="852.55" y="3327.5" >Nsfisis\Wadd..</text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (1 samples, 0.03%)</title><rect x="301.5" y="1781" width="0.4" height="15.0" fill="rgb(213,4,41)" rx="2" ry="2" /> +<text x="304.53" y="1791.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.03%)</title><rect x="319.0" y="1909" width="0.4" height="15.0" fill="rgb(222,128,44)" rx="2" ry="2" /> +<text x="322.05" y="1919.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Num::F64 (1 samples, 0.03%)</title><rect x="846.2" y="3013" width="0.4" height="15.0" fill="rgb(211,172,2)" rx="2" ry="2" /> +<text x="849.25" y="3023.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (2 samples, 0.06%)</title><rect x="670.7" y="2581" width="0.7" height="15.0" fill="rgb(229,77,46)" rx="2" ry="2" /> +<text x="673.73" y="2591.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="878.3" y="2149" width="0.3" height="15.0" fill="rgb(242,110,34)" rx="2" ry="2" /> +<text x="881.31" y="2159.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.03%)</title><rect x="847.2" y="2453" width="0.4" height="15.0" fill="rgb(226,126,7)" rx="2" ry="2" /> +<text x="850.24" y="2463.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (2 samples, 0.06%)</title><rect x="842.9" y="2405" width="0.7" height="15.0" fill="rgb(241,49,52)" rx="2" ry="2" /> +<text x="845.94" y="2415.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (685 samples, 19.19%)</title><rect x="422.2" y="1333" width="226.4" height="15.0" fill="rgb(218,10,29)" rx="2" ry="2" /> +<text x="425.17" y="1343.5" >Nsfisis\Waddiwasi\Execution\R..</text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::invokeByFuncAddr (2 samples, 0.06%)</title><rect x="954.7" y="2789" width="0.6" height="15.0" fill="rgb(229,6,30)" rx="2" ry="2" /> +<text x="957.66" y="2799.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\ControlFlowResult::Br (1 samples, 0.03%)</title><rect x="1090.5" y="3445" width="0.3" height="15.0" fill="rgb(249,147,1)" rx="2" ry="2" /> +<text x="1093.51" y="3455.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (43 samples, 1.20%)</title><rect x="351.8" y="2021" width="14.2" height="15.0" fill="rgb(244,35,28)" rx="2" ry="2" /> +<text x="354.77" y="2031.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (1 samples, 0.03%)</title><rect x="1153.6" y="3349" width="0.4" height="15.0" fill="rgb(254,94,23)" rx="2" ry="2" /> +<text x="1156.64" y="3359.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.03%)</title><rect x="847.6" y="2581" width="0.3" height="15.0" fill="rgb(213,45,47)" rx="2" ry="2" /> +<text x="850.57" y="2591.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\StackEntries\Frame::__construct (1 samples, 0.03%)</title><rect x="422.2" y="1093" width="0.3" height="15.0" fill="rgb(247,60,6)" rx="2" ry="2" /> +<text x="425.17" y="1103.5" ></text> +</g> +<g > +<title><unknown> (73 samples, 2.04%)</title><rect x="151.1" y="3461" width="24.2" height="15.0" fill="rgb(225,4,25)" rx="2" ry="2" /> +<text x="154.14" y="3471.5" ><..</text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (16 samples, 0.45%)</title><rect x="331.6" y="1845" width="5.3" height="15.0" fill="rgb(242,32,16)" rx="2" ry="2" /> +<text x="334.61" y="1855.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\MemInst::storeI32 (1 samples, 0.03%)</title><rect x="1159.9" y="3525" width="0.4" height="15.0" fill="rgb(244,221,26)" rx="2" ry="2" /> +<text x="1162.92" y="3535.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="847.6" y="2485" width="0.3" height="15.0" fill="rgb(244,169,3)" rx="2" ry="2" /> +<text x="850.57" y="2495.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.03%)</title><rect x="702.8" y="2453" width="0.3" height="15.0" fill="rgb(246,114,3)" rx="2" ry="2" /> +<text x="705.80" y="2463.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.03%)</title><rect x="274.8" y="2069" width="0.3" height="15.0" fill="rgb(237,53,17)" rx="2" ry="2" /> +<text x="277.76" y="2079.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (2 samples, 0.06%)</title><rect x="954.7" y="933" width="0.6" height="15.0" fill="rgb(245,11,24)" rx="2" ry="2" /> +<text x="957.66" y="943.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="843.9" y="2821" width="0.4" height="15.0" fill="rgb(251,196,2)" rx="2" ry="2" /> +<text x="846.93" y="2831.5" ></text> +</g> +<g > +<title><unknown> (1 samples, 0.03%)</title><rect x="870.4" y="1301" width="0.3" height="15.0" fill="rgb(214,189,30)" rx="2" ry="2" /> +<text x="873.38" y="1311.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (3 samples, 0.08%)</title><rect x="842.9" y="2837" width="1.0" height="15.0" fill="rgb(246,155,38)" rx="2" ry="2" /> +<text x="845.94" y="2847.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (230 samples, 6.44%)</title><rect x="707.4" y="2485" width="76.0" height="15.0" fill="rgb(243,38,26)" rx="2" ry="2" /> +<text x="710.42" y="2495.5" >Nsfisis\..</text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (1 samples, 0.03%)</title><rect x="266.8" y="1525" width="0.4" height="15.0" fill="rgb(207,197,37)" rx="2" ry="2" /> +<text x="269.82" y="1535.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (685 samples, 19.19%)</title><rect x="422.2" y="1589" width="226.4" height="15.0" fill="rgb(238,119,19)" rx="2" ry="2" /> +<text x="425.17" y="1599.5" >Nsfisis\Waddiwasi\Execution\R..</text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doLoadI32 (1 samples, 0.03%)</title><rect x="828.7" y="2133" width="0.4" height="15.0" fill="rgb(240,24,31)" rx="2" ry="2" /> +<text x="831.73" y="2143.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (2 samples, 0.06%)</title><rect x="691.2" y="2421" width="0.7" height="15.0" fill="rgb(214,165,4)" rx="2" ry="2" /> +<text x="694.23" y="2431.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="1153.6" y="3173" width="0.4" height="15.0" fill="rgb(237,84,26)" rx="2" ry="2" /> +<text x="1156.64" y="3183.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.03%)</title><rect x="940.4" y="2485" width="0.4" height="15.0" fill="rgb(229,27,28)" rx="2" ry="2" /> +<text x="943.45" y="2495.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="316.4" y="1413" width="0.3" height="15.0" fill="rgb(254,152,23)" rx="2" ry="2" /> +<text x="319.40" y="1423.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (3 samples, 0.08%)</title><rect x="262.9" y="1989" width="0.9" height="15.0" fill="rgb(219,30,39)" rx="2" ry="2" /> +<text x="265.86" y="1999.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (21 samples, 0.59%)</title><rect x="1098.1" y="3333" width="7.0" height="15.0" fill="rgb(247,79,18)" rx="2" ry="2" /> +<text x="1101.11" y="3343.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="697.5" y="2021" width="0.3" height="15.0" fill="rgb(227,46,45)" rx="2" ry="2" /> +<text x="700.51" y="2031.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.03%)</title><rect x="656.5" y="2069" width="0.4" height="15.0" fill="rgb(228,98,30)" rx="2" ry="2" /> +<text x="659.52" y="2079.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (8 samples, 0.22%)</title><rect x="888.2" y="2581" width="2.7" height="15.0" fill="rgb(234,15,0)" rx="2" ry="2" /> +<text x="891.22" y="2591.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.03%)</title><rect x="391.4" y="1909" width="0.4" height="15.0" fill="rgb(251,145,17)" rx="2" ry="2" /> +<text x="394.43" y="1919.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (2 samples, 0.06%)</title><rect x="1104.1" y="2837" width="0.6" height="15.0" fill="rgb(211,129,6)" rx="2" ry="2" /> +<text x="1107.06" y="2847.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (4 samples, 0.11%)</title><rect x="279.7" y="2005" width="1.3" height="15.0" fill="rgb(254,181,42)" rx="2" ry="2" /> +<text x="282.71" y="2015.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.03%)</title><rect x="316.4" y="1077" width="0.3" height="15.0" fill="rgb(239,125,19)" rx="2" ry="2" /> +<text x="319.40" y="1087.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (5 samples, 0.14%)</title><rect x="366.3" y="1845" width="1.7" height="15.0" fill="rgb(245,227,34)" rx="2" ry="2" /> +<text x="369.31" y="1855.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="307.1" y="1637" width="0.4" height="15.0" fill="rgb(223,163,23)" rx="2" ry="2" /> +<text x="310.15" y="1647.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (174 samples, 4.87%)</title><rect x="784.4" y="2869" width="57.5" height="15.0" fill="rgb(226,183,42)" rx="2" ry="2" /> +<text x="787.44" y="2879.5" >Nsfisi..</text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (48 samples, 1.34%)</title><rect x="878.6" y="2757" width="15.9" height="15.0" fill="rgb(252,69,50)" rx="2" ry="2" /> +<text x="881.64" y="2767.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="954.3" y="2725" width="0.4" height="15.0" fill="rgb(251,224,23)" rx="2" ry="2" /> +<text x="957.33" y="2735.5" ></text> +</g> +<g > +<title><unknown> (1 samples, 0.03%)</title><rect x="870.4" y="1349" width="0.3" height="15.0" fill="rgb(219,184,45)" rx="2" ry="2" /> +<text x="873.38" y="1359.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (11 samples, 0.31%)</title><rect x="874.7" y="2373" width="3.6" height="15.0" fill="rgb(250,57,7)" rx="2" ry="2" /> +<text x="877.67" y="2383.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (14 samples, 0.39%)</title><rect x="395.4" y="2229" width="4.6" height="15.0" fill="rgb(226,123,42)" rx="2" ry="2" /> +<text x="398.40" y="2239.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (2 samples, 0.06%)</title><rect x="298.6" y="1733" width="0.6" height="15.0" fill="rgb(217,212,45)" rx="2" ry="2" /> +<text x="301.55" y="1743.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (2 samples, 0.06%)</title><rect x="954.7" y="997" width="0.6" height="15.0" fill="rgb(235,40,54)" rx="2" ry="2" /> +<text x="957.66" y="1007.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (2 samples, 0.06%)</title><rect x="954.7" y="1125" width="0.6" height="15.0" fill="rgb(221,3,31)" rx="2" ry="2" /> +<text x="957.66" y="1135.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="661.5" y="2181" width="0.3" height="15.0" fill="rgb(250,63,14)" rx="2" ry="2" /> +<text x="664.48" y="2191.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.03%)</title><rect x="790.1" y="2101" width="0.3" height="15.0" fill="rgb(217,34,5)" rx="2" ry="2" /> +<text x="793.06" y="2111.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="790.1" y="2213" width="0.3" height="15.0" fill="rgb(247,106,16)" rx="2" ry="2" /> +<text x="793.06" y="2223.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.03%)</title><rect x="683.6" y="2421" width="0.4" height="15.0" fill="rgb(242,159,26)" rx="2" ry="2" /> +<text x="686.62" y="2431.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="667.1" y="2917" width="0.3" height="15.0" fill="rgb(208,144,54)" rx="2" ry="2" /> +<text x="670.10" y="2927.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (8 samples, 0.22%)</title><rect x="944.7" y="2517" width="2.7" height="15.0" fill="rgb(223,227,4)" rx="2" ry="2" /> +<text x="947.75" y="2527.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.03%)</title><rect x="364.3" y="1845" width="0.4" height="15.0" fill="rgb(208,161,20)" rx="2" ry="2" /> +<text x="367.33" y="1855.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="1153.6" y="3397" width="0.4" height="15.0" fill="rgb(209,77,46)" rx="2" ry="2" /> +<text x="1156.64" y="3407.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (38 samples, 1.06%)</title><rect x="652.6" y="2405" width="12.5" height="15.0" fill="rgb(237,45,8)" rx="2" ry="2" /> +<text x="655.55" y="2415.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (20 samples, 0.56%)</title><rect x="330.9" y="2021" width="6.7" height="15.0" fill="rgb(246,139,23)" rx="2" ry="2" /> +<text x="333.95" y="2031.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (1 samples, 0.03%)</title><rect x="843.9" y="2885" width="0.4" height="15.0" fill="rgb(222,181,40)" rx="2" ry="2" /> +<text x="846.93" y="2895.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="648.6" y="1509" width="0.3" height="15.0" fill="rgb(225,1,8)" rx="2" ry="2" /> +<text x="651.59" y="1519.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (3 samples, 0.08%)</title><rect x="307.1" y="1749" width="1.0" height="15.0" fill="rgb(249,70,16)" rx="2" ry="2" /> +<text x="310.15" y="1759.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="840.6" y="2341" width="0.4" height="15.0" fill="rgb(222,169,40)" rx="2" ry="2" /> +<text x="843.63" y="2351.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.03%)</title><rect x="246.3" y="3093" width="0.4" height="15.0" fill="rgb(239,123,18)" rx="2" ry="2" /> +<text x="249.33" y="3103.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (1 samples, 0.03%)</title><rect x="307.5" y="1669" width="0.3" height="15.0" fill="rgb(247,151,52)" rx="2" ry="2" /> +<text x="310.48" y="1679.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (30 samples, 0.84%)</title><rect x="652.9" y="2309" width="9.9" height="15.0" fill="rgb(237,180,27)" rx="2" ry="2" /> +<text x="655.89" y="2319.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (5 samples, 0.14%)</title><rect x="415.2" y="1637" width="1.7" height="15.0" fill="rgb(234,224,3)" rx="2" ry="2" /> +<text x="418.23" y="1647.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (317 samples, 8.88%)</title><rect x="849.6" y="3205" width="104.7" height="15.0" fill="rgb(209,40,8)" rx="2" ry="2" /> +<text x="852.55" y="3215.5" >Nsfisis\Wadd..</text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (10 samples, 0.28%)</title><rect x="395.4" y="2149" width="3.3" height="15.0" fill="rgb(226,47,28)" rx="2" ry="2" /> +<text x="398.40" y="2159.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (7 samples, 0.20%)</title><rect x="314.8" y="2133" width="2.3" height="15.0" fill="rgb(229,103,45)" rx="2" ry="2" /> +<text x="317.75" y="2143.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::deactivateLabel (1 samples, 0.03%)</title><rect x="1086.2" y="3301" width="0.3" height="15.0" fill="rgb(250,129,12)" rx="2" ry="2" /> +<text x="1089.21" y="3311.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.03%)</title><rect x="400.4" y="1685" width="0.3" height="15.0" fill="rgb(217,155,40)" rx="2" ry="2" /> +<text x="403.36" y="1695.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (172 samples, 4.82%)</title><rect x="896.2" y="2805" width="56.8" height="15.0" fill="rgb(232,27,48)" rx="2" ry="2" /> +<text x="899.16" y="2815.5" >Nsfisi..</text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (686 samples, 19.22%)</title><rect x="422.2" y="1893" width="226.7" height="15.0" fill="rgb(217,224,42)" rx="2" ry="2" /> +<text x="425.17" y="1903.5" >Nsfisis\Waddiwasi\Execution\Ru..</text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.03%)</title><rect x="422.8" y="821" width="0.4" height="15.0" fill="rgb(223,18,2)" rx="2" ry="2" /> +<text x="425.83" y="831.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (11 samples, 0.31%)</title><rect x="835.0" y="2245" width="3.6" height="15.0" fill="rgb(207,41,19)" rx="2" ry="2" /> +<text x="838.01" y="2255.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.03%)</title><rect x="407.3" y="2133" width="0.3" height="15.0" fill="rgb(236,190,15)" rx="2" ry="2" /> +<text x="410.30" y="2143.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::deactivateLabel (1 samples, 0.03%)</title><rect x="1116.3" y="3493" width="0.3" height="15.0" fill="rgb(210,170,18)" rx="2" ry="2" /> +<text x="1119.29" y="3503.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="666.8" y="2853" width="0.3" height="15.0" fill="rgb(207,40,19)" rx="2" ry="2" /> +<text x="669.77" y="2863.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (63 samples, 1.76%)</title><rect x="369.9" y="2005" width="20.9" height="15.0" fill="rgb(222,138,14)" rx="2" ry="2" /> +<text x="372.95" y="2015.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.03%)</title><rect x="878.0" y="2325" width="0.3" height="15.0" fill="rgb(243,92,8)" rx="2" ry="2" /> +<text x="880.98" y="2335.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (3 samples, 0.08%)</title><rect x="848.6" y="3157" width="1.0" height="15.0" fill="rgb(218,62,23)" rx="2" ry="2" /> +<text x="851.56" y="3167.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.03%)</title><rect x="364.3" y="1877" width="0.4" height="15.0" fill="rgb(217,159,41)" rx="2" ry="2" /> +<text x="367.33" y="1887.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.03%)</title><rect x="314.1" y="1621" width="0.3" height="15.0" fill="rgb(206,95,31)" rx="2" ry="2" /> +<text x="317.09" y="1631.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::activateLabel (1 samples, 0.03%)</title><rect x="280.7" y="1893" width="0.3" height="15.0" fill="rgb(244,50,19)" rx="2" ry="2" /> +<text x="283.71" y="1903.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (230 samples, 6.44%)</title><rect x="707.4" y="2453" width="76.0" height="15.0" fill="rgb(229,195,48)" rx="2" ry="2" /> +<text x="710.42" y="2463.5" >Nsfisis\..</text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (2 samples, 0.06%)</title><rect x="302.2" y="1653" width="0.7" height="15.0" fill="rgb(236,53,53)" rx="2" ry="2" /> +<text x="305.19" y="1663.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="263.5" y="1701" width="0.3" height="15.0" fill="rgb(250,68,36)" rx="2" ry="2" /> +<text x="266.52" y="1711.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.03%)</title><rect x="304.8" y="1653" width="0.4" height="15.0" fill="rgb(207,111,30)" rx="2" ry="2" /> +<text x="307.83" y="1663.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="846.6" y="2565" width="0.3" height="15.0" fill="rgb(247,80,50)" rx="2" ry="2" /> +<text x="849.58" y="2575.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="954.3" y="2853" width="0.4" height="15.0" fill="rgb(242,228,53)" rx="2" ry="2" /> +<text x="957.33" y="2863.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (6 samples, 0.17%)</title><rect x="673.0" y="2389" width="2.0" height="15.0" fill="rgb(215,180,1)" rx="2" ry="2" /> +<text x="676.05" y="2399.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="845.6" y="2437" width="0.3" height="15.0" fill="rgb(253,26,33)" rx="2" ry="2" /> +<text x="848.59" y="2447.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.03%)</title><rect x="1130.8" y="3317" width="0.4" height="15.0" fill="rgb(216,133,50)" rx="2" ry="2" /> +<text x="1133.83" y="3327.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (1 samples, 0.03%)</title><rect x="667.1" y="2853" width="0.3" height="15.0" fill="rgb(206,151,17)" rx="2" ry="2" /> +<text x="670.10" y="2863.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (11 samples, 0.31%)</title><rect x="794.7" y="2293" width="3.6" height="15.0" fill="rgb(237,207,26)" rx="2" ry="2" /> +<text x="797.68" y="2303.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (48 samples, 1.34%)</title><rect x="255.9" y="2229" width="15.9" height="15.0" fill="rgb(239,70,43)" rx="2" ry="2" /> +<text x="258.92" y="2239.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (2 samples, 0.06%)</title><rect x="954.7" y="277" width="0.6" height="15.0" fill="rgb(231,49,23)" rx="2" ry="2" /> +<text x="957.66" y="287.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (1 samples, 0.03%)</title><rect x="314.1" y="2069" width="0.3" height="15.0" fill="rgb(231,172,42)" rx="2" ry="2" /> +<text x="317.09" y="2079.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (18 samples, 0.50%)</title><rect x="696.8" y="2629" width="6.0" height="15.0" fill="rgb(211,102,3)" rx="2" ry="2" /> +<text x="699.85" y="2639.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (2 samples, 0.06%)</title><rect x="844.9" y="2789" width="0.7" height="15.0" fill="rgb(218,130,31)" rx="2" ry="2" /> +<text x="847.92" y="2799.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (2 samples, 0.06%)</title><rect x="1104.1" y="2885" width="0.6" height="15.0" fill="rgb(232,65,28)" rx="2" ry="2" /> +<text x="1107.06" y="2895.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (4 samples, 0.11%)</title><rect x="833.4" y="2261" width="1.3" height="15.0" fill="rgb(234,29,41)" rx="2" ry="2" /> +<text x="836.36" y="2271.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (9 samples, 0.25%)</title><rect x="413.9" y="1941" width="3.0" height="15.0" fill="rgb(221,175,16)" rx="2" ry="2" /> +<text x="416.91" y="1951.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (1 samples, 0.03%)</title><rect x="954.3" y="2453" width="0.4" height="15.0" fill="rgb(247,155,28)" rx="2" ry="2" /> +<text x="957.33" y="2463.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (3 samples, 0.08%)</title><rect x="305.8" y="1733" width="1.0" height="15.0" fill="rgb(239,178,52)" rx="2" ry="2" /> +<text x="308.83" y="1743.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="845.6" y="2405" width="0.3" height="15.0" fill="rgb(232,1,12)" rx="2" ry="2" /> +<text x="848.59" y="2415.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (230 samples, 6.44%)</title><rect x="707.4" y="2661" width="76.0" height="15.0" fill="rgb(246,201,31)" rx="2" ry="2" /> +<text x="710.42" y="2671.5" >Nsfisis\..</text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="363.7" y="1765" width="0.3" height="15.0" fill="rgb(245,188,1)" rx="2" ry="2" /> +<text x="366.67" y="1775.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.03%)</title><rect x="946.4" y="2389" width="0.3" height="15.0" fill="rgb(253,133,33)" rx="2" ry="2" /> +<text x="949.40" y="2399.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="1165.9" y="3461" width="0.3" height="15.0" fill="rgb(250,13,42)" rx="2" ry="2" /> +<text x="1168.87" y="3471.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.03%)</title><rect x="268.1" y="1941" width="0.4" height="15.0" fill="rgb(242,214,15)" rx="2" ry="2" /> +<text x="271.15" y="1951.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (2 samples, 0.06%)</title><rect x="848.9" y="2885" width="0.7" height="15.0" fill="rgb(205,90,25)" rx="2" ry="2" /> +<text x="851.89" y="2895.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (9 samples, 0.25%)</title><rect x="403.0" y="1829" width="3.0" height="15.0" fill="rgb(238,19,20)" rx="2" ry="2" /> +<text x="406.00" y="1839.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (4 samples, 0.11%)</title><rect x="248.0" y="3045" width="1.3" height="15.0" fill="rgb(214,124,24)" rx="2" ry="2" /> +<text x="250.98" y="3055.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (1 samples, 0.03%)</title><rect x="666.1" y="2485" width="0.3" height="15.0" fill="rgb(234,27,26)" rx="2" ry="2" /> +<text x="669.11" y="2495.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (37 samples, 1.04%)</title><rect x="787.4" y="2357" width="12.2" height="15.0" fill="rgb(211,70,16)" rx="2" ry="2" /> +<text x="790.41" y="2367.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (2 samples, 0.06%)</title><rect x="695.5" y="2453" width="0.7" height="15.0" fill="rgb(238,13,0)" rx="2" ry="2" /> +<text x="698.52" y="2463.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (6 samples, 0.17%)</title><rect x="374.2" y="1797" width="2.0" height="15.0" fill="rgb(227,122,46)" rx="2" ry="2" /> +<text x="377.25" y="1807.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.03%)</title><rect x="702.8" y="2517" width="0.3" height="15.0" fill="rgb(238,74,29)" rx="2" ry="2" /> +<text x="705.80" y="2527.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="847.9" y="2597" width="0.3" height="15.0" fill="rgb(231,228,28)" rx="2" ry="2" /> +<text x="850.90" y="2607.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (74 samples, 2.07%)</title><rect x="854.2" y="2693" width="24.4" height="15.0" fill="rgb(205,111,1)" rx="2" ry="2" /> +<text x="857.18" y="2703.5" >N..</text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.03%)</title><rect x="353.1" y="1941" width="0.3" height="15.0" fill="rgb(248,47,34)" rx="2" ry="2" /> +<text x="356.09" y="1951.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (8 samples, 0.22%)</title><rect x="672.4" y="2581" width="2.6" height="15.0" fill="rgb(222,102,7)" rx="2" ry="2" /> +<text x="675.39" y="2591.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (1 samples, 0.03%)</title><rect x="648.6" y="1573" width="0.3" height="15.0" fill="rgb(239,4,41)" rx="2" ry="2" /> +<text x="651.59" y="1583.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="257.2" y="1957" width="0.4" height="15.0" fill="rgb(207,193,18)" rx="2" ry="2" /> +<text x="260.24" y="1967.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="271.8" y="2149" width="0.3" height="15.0" fill="rgb(240,163,3)" rx="2" ry="2" /> +<text x="274.78" y="2159.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.03%)</title><rect x="938.8" y="2485" width="0.3" height="15.0" fill="rgb(214,7,24)" rx="2" ry="2" /> +<text x="941.80" y="2495.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (1 samples, 0.03%)</title><rect x="683.6" y="2453" width="0.4" height="15.0" fill="rgb(234,180,49)" rx="2" ry="2" /> +<text x="686.62" y="2463.5" ></text> +</g> +<g > +<title>print_r (10 samples, 0.28%)</title><rect x="187.2" y="3413" width="3.3" height="15.0" fill="rgb(216,138,29)" rx="2" ry="2" /> +<text x="190.17" y="3423.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="390.1" y="1925" width="0.3" height="15.0" fill="rgb(252,199,12)" rx="2" ry="2" /> +<text x="393.11" y="1935.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.03%)</title><rect x="666.8" y="2837" width="0.3" height="15.0" fill="rgb(233,32,28)" rx="2" ry="2" /> +<text x="669.77" y="2847.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="941.8" y="2533" width="0.3" height="15.0" fill="rgb(245,173,10)" rx="2" ry="2" /> +<text x="944.77" y="2543.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (682 samples, 19.10%)</title><rect x="423.2" y="917" width="225.4" height="15.0" fill="rgb(232,200,51)" rx="2" ry="2" /> +<text x="426.17" y="927.5" >Nsfisis\Waddiwasi\Execution\R..</text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Stack::push (1 samples, 0.03%)</title><rect x="782.1" y="2181" width="0.4" height="15.0" fill="rgb(218,114,13)" rx="2" ry="2" /> +<text x="785.12" y="2191.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.03%)</title><rect x="400.4" y="1845" width="0.3" height="15.0" fill="rgb(232,106,3)" rx="2" ry="2" /> +<text x="403.36" y="1855.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (3 samples, 0.08%)</title><rect x="1107.4" y="3429" width="1.0" height="15.0" fill="rgb(240,41,22)" rx="2" ry="2" /> +<text x="1110.37" y="3439.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="410.9" y="1893" width="0.4" height="15.0" fill="rgb(213,152,51)" rx="2" ry="2" /> +<text x="413.94" y="1903.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (1 samples, 0.03%)</title><rect x="878.3" y="2309" width="0.3" height="15.0" fill="rgb(247,187,34)" rx="2" ry="2" /> +<text x="881.31" y="2319.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="307.5" y="1541" width="0.3" height="15.0" fill="rgb(253,58,41)" rx="2" ry="2" /> +<text x="310.48" y="1551.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (1 samples, 0.03%)</title><rect x="702.8" y="2629" width="0.3" height="15.0" fill="rgb(209,141,34)" rx="2" ry="2" /> +<text x="705.80" y="2639.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (16 samples, 0.45%)</title><rect x="331.6" y="1829" width="5.3" height="15.0" fill="rgb(243,103,3)" rx="2" ry="2" /> +<text x="334.61" y="1839.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.03%)</title><rect x="307.5" y="1653" width="0.3" height="15.0" fill="rgb(239,122,17)" rx="2" ry="2" /> +<text x="310.48" y="1663.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (2 samples, 0.06%)</title><rect x="833.7" y="2149" width="0.6" height="15.0" fill="rgb(242,20,39)" rx="2" ry="2" /> +<text x="836.69" y="2159.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="790.1" y="1989" width="0.3" height="15.0" fill="rgb(249,16,26)" rx="2" ry="2" /> +<text x="793.06" y="1999.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="847.2" y="2757" width="0.4" height="15.0" fill="rgb(206,146,25)" rx="2" ry="2" /> +<text x="850.24" y="2767.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\ControlFlowResults\Br::__construct (1 samples, 0.03%)</title><rect x="830.4" y="2133" width="0.3" height="15.0" fill="rgb(234,59,54)" rx="2" ry="2" /> +<text x="833.38" y="2143.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (3 samples, 0.08%)</title><rect x="301.9" y="1781" width="1.0" height="15.0" fill="rgb(210,135,21)" rx="2" ry="2" /> +<text x="304.86" y="1791.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="316.4" y="901" width="0.3" height="15.0" fill="rgb(235,229,16)" rx="2" ry="2" /> +<text x="319.40" y="911.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (2 samples, 0.06%)</title><rect x="842.3" y="2725" width="0.6" height="15.0" fill="rgb(212,6,49)" rx="2" ry="2" /> +<text x="845.28" y="2735.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::deactivateLabel (1 samples, 0.03%)</title><rect x="285.7" y="2085" width="0.3" height="15.0" fill="rgb(246,18,4)" rx="2" ry="2" /> +<text x="288.66" y="2095.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (6 samples, 0.17%)</title><rect x="849.6" y="2741" width="1.9" height="15.0" fill="rgb(234,187,47)" rx="2" ry="2" /> +<text x="852.55" y="2751.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.03%)</title><rect x="829.1" y="2133" width="0.3" height="15.0" fill="rgb(252,31,46)" rx="2" ry="2" /> +<text x="832.06" y="2143.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (3 samples, 0.08%)</title><rect x="848.6" y="3029" width="1.0" height="15.0" fill="rgb(240,204,48)" rx="2" ry="2" /> +<text x="851.56" y="3039.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="783.8" y="2661" width="0.3" height="15.0" fill="rgb(206,189,7)" rx="2" ry="2" /> +<text x="786.78" y="2671.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (44 samples, 1.23%)</title><rect x="351.4" y="2053" width="14.6" height="15.0" fill="rgb(209,73,47)" rx="2" ry="2" /> +<text x="354.44" y="2063.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Val::NumI32 (1 samples, 0.03%)</title><rect x="227.5" y="3461" width="0.3" height="15.0" fill="rgb(233,197,5)" rx="2" ry="2" /> +<text x="230.49" y="3471.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="315.4" y="1829" width="0.3" height="15.0" fill="rgb(252,73,35)" rx="2" ry="2" /> +<text x="318.41" y="1839.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="930.2" y="2405" width="0.3" height="15.0" fill="rgb(233,182,43)" rx="2" ry="2" /> +<text x="933.20" y="2415.5" ></text> +</g> +<g > +<title><unknown> (1 samples, 0.03%)</title><rect x="870.4" y="1525" width="0.3" height="15.0" fill="rgb(208,204,20)" rx="2" ry="2" /> +<text x="873.38" y="1535.5" ></text> +</g> +<g > +<title><unknown> (1 samples, 0.03%)</title><rect x="870.4" y="1605" width="0.3" height="15.0" fill="rgb(239,66,39)" rx="2" ry="2" /> +<text x="873.38" y="1615.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeHostFunc (1,804 samples, 50.53%)</title><rect x="249.6" y="3013" width="596.3" height="15.0" fill="rgb(206,58,21)" rx="2" ry="2" /> +<text x="252.64" y="3023.5" >Nsfisis\Waddiwasi\Execution\Runtime::doInvokeHostFunc</text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="955.3" y="2597" width="0.4" height="15.0" fill="rgb(218,218,12)" rx="2" ry="2" /> +<text x="958.32" y="2607.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (3 samples, 0.08%)</title><rect x="404.7" y="1221" width="0.9" height="15.0" fill="rgb(250,192,41)" rx="2" ry="2" /> +<text x="407.66" y="1231.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="314.1" y="1797" width="0.3" height="15.0" fill="rgb(224,158,17)" rx="2" ry="2" /> +<text x="317.09" y="1807.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (8 samples, 0.22%)</title><rect x="300.2" y="1845" width="2.7" height="15.0" fill="rgb(228,161,47)" rx="2" ry="2" /> +<text x="303.21" y="1855.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (1 samples, 0.03%)</title><rect x="298.9" y="1637" width="0.3" height="15.0" fill="rgb(222,221,32)" rx="2" ry="2" /> +<text x="301.89" y="1647.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (9 samples, 0.25%)</title><rect x="795.3" y="2245" width="3.0" height="15.0" fill="rgb(221,123,52)" rx="2" ry="2" /> +<text x="798.34" y="2255.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::deactivateLabel (1 samples, 0.03%)</title><rect x="830.1" y="2149" width="0.3" height="15.0" fill="rgb(207,114,38)" rx="2" ry="2" /> +<text x="833.05" y="2159.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (8 samples, 0.22%)</title><rect x="414.2" y="1861" width="2.7" height="15.0" fill="rgb(206,31,35)" rx="2" ry="2" /> +<text x="417.24" y="1871.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (1 samples, 0.03%)</title><rect x="847.6" y="2597" width="0.3" height="15.0" fill="rgb(225,123,1)" rx="2" ry="2" /> +<text x="850.57" y="2607.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="954.0" y="2949" width="0.3" height="15.0" fill="rgb(213,154,13)" rx="2" ry="2" /> +<text x="957.00" y="2959.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (2 samples, 0.06%)</title><rect x="302.2" y="1701" width="0.7" height="15.0" fill="rgb(242,166,19)" rx="2" ry="2" /> +<text x="305.19" y="1711.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (4 samples, 0.11%)</title><rect x="311.4" y="1781" width="1.4" height="15.0" fill="rgb(207,86,38)" rx="2" ry="2" /> +<text x="314.45" y="1791.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.03%)</title><rect x="893.5" y="2549" width="0.3" height="15.0" fill="rgb(234,139,7)" rx="2" ry="2" /> +<text x="896.51" y="2559.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (2 samples, 0.06%)</title><rect x="260.5" y="1877" width="0.7" height="15.0" fill="rgb(227,86,16)" rx="2" ry="2" /> +<text x="263.54" y="1887.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="890.2" y="2533" width="0.3" height="15.0" fill="rgb(236,228,47)" rx="2" ry="2" /> +<text x="893.21" y="2543.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="1117.3" y="3365" width="0.3" height="15.0" fill="rgb(215,7,4)" rx="2" ry="2" /> +<text x="1120.28" y="3375.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (1 samples, 0.03%)</title><rect x="846.6" y="2757" width="0.3" height="15.0" fill="rgb(215,101,25)" rx="2" ry="2" /> +<text x="849.58" y="2767.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="314.1" y="1701" width="0.3" height="15.0" fill="rgb(217,86,54)" rx="2" ry="2" /> +<text x="317.09" y="1711.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="954.0" y="3013" width="0.3" height="15.0" fill="rgb(219,76,20)" rx="2" ry="2" /> +<text x="957.00" y="3023.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.03%)</title><rect x="1108.0" y="3221" width="0.4" height="15.0" fill="rgb(216,25,11)" rx="2" ry="2" /> +<text x="1111.03" y="3231.5" ></text> +</g> +<g > +<title>count (1 samples, 0.03%)</title><rect x="398.7" y="2165" width="0.3" height="15.0" fill="rgb(235,116,15)" rx="2" ry="2" /> +<text x="401.71" y="2175.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.03%)</title><rect x="319.0" y="2005" width="0.4" height="15.0" fill="rgb(209,177,31)" rx="2" ry="2" /> +<text x="322.05" y="2015.5" ></text> +</g> +<g > +<title><unknown> (1 samples, 0.03%)</title><rect x="870.4" y="1637" width="0.3" height="15.0" fill="rgb(215,165,19)" rx="2" ry="2" /> +<text x="873.38" y="1647.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (6 samples, 0.17%)</title><rect x="662.8" y="2197" width="2.0" height="15.0" fill="rgb(219,195,4)" rx="2" ry="2" /> +<text x="665.80" y="2207.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (4 samples, 0.11%)</title><rect x="248.0" y="3029" width="1.3" height="15.0" fill="rgb(219,219,21)" rx="2" ry="2" /> +<text x="250.98" y="3039.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (7 samples, 0.20%)</title><rect x="662.8" y="2277" width="2.3" height="15.0" fill="rgb(206,96,19)" rx="2" ry="2" /> +<text x="665.80" y="2287.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (1 samples, 0.03%)</title><rect x="706.8" y="2661" width="0.3" height="15.0" fill="rgb(220,90,51)" rx="2" ry="2" /> +<text x="709.76" y="2671.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (5 samples, 0.14%)</title><rect x="415.2" y="1701" width="1.7" height="15.0" fill="rgb(225,93,2)" rx="2" ry="2" /> +<text x="418.23" y="1711.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.03%)</title><rect x="702.8" y="2325" width="0.3" height="15.0" fill="rgb(209,34,32)" rx="2" ry="2" /> +<text x="705.80" y="2335.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (309 samples, 8.66%)</title><rect x="851.5" y="2981" width="102.2" height="15.0" fill="rgb(248,31,32)" rx="2" ry="2" /> +<text x="854.54" y="2991.5" >Nsfisis\Wadd..</text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (686 samples, 19.22%)</title><rect x="422.2" y="2005" width="226.7" height="15.0" fill="rgb(213,80,50)" rx="2" ry="2" /> +<text x="425.17" y="2015.5" >Nsfisis\Waddiwasi\Execution\Ru..</text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (1 samples, 0.03%)</title><rect x="675.7" y="2629" width="0.3" height="15.0" fill="rgb(240,151,5)" rx="2" ry="2" /> +<text x="678.69" y="2639.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="790.1" y="1861" width="0.3" height="15.0" fill="rgb(224,199,34)" rx="2" ry="2" /> +<text x="793.06" y="1871.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (1 samples, 0.03%)</title><rect x="266.8" y="1717" width="0.4" height="15.0" fill="rgb(222,56,12)" rx="2" ry="2" /> +<text x="269.82" y="1727.5" ></text> +</g> +<g > +<title><unknown> (1 samples, 0.03%)</title><rect x="783.4" y="2789" width="0.4" height="15.0" fill="rgb(221,83,14)" rx="2" ry="2" /> +<text x="786.45" y="2799.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.03%)</title><rect x="263.5" y="1717" width="0.3" height="15.0" fill="rgb(240,113,13)" rx="2" ry="2" /> +<text x="266.52" y="1727.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="669.7" y="2629" width="0.4" height="15.0" fill="rgb(238,132,26)" rx="2" ry="2" /> +<text x="672.74" y="2639.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.03%)</title><rect x="790.1" y="1845" width="0.3" height="15.0" fill="rgb(243,68,25)" rx="2" ry="2" /> +<text x="793.06" y="1855.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="951.7" y="2693" width="0.3" height="15.0" fill="rgb(242,151,18)" rx="2" ry="2" /> +<text x="954.69" y="2703.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (2 samples, 0.06%)</title><rect x="954.7" y="325" width="0.6" height="15.0" fill="rgb(226,225,2)" rx="2" ry="2" /> +<text x="957.66" y="335.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (2 samples, 0.06%)</title><rect x="954.7" y="1557" width="0.6" height="15.0" fill="rgb(219,115,28)" rx="2" ry="2" /> +<text x="957.66" y="1567.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.03%)</title><rect x="319.0" y="1877" width="0.4" height="15.0" fill="rgb(248,126,49)" rx="2" ry="2" /> +<text x="322.05" y="1887.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\ControlFlowResult::Br (1 samples, 0.03%)</title><rect x="1130.8" y="3349" width="0.4" height="15.0" fill="rgb(251,96,39)" rx="2" ry="2" /> +<text x="1133.83" y="3359.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="406.3" y="1829" width="0.3" height="15.0" fill="rgb(245,62,24)" rx="2" ry="2" /> +<text x="409.31" y="1839.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (1 samples, 0.03%)</title><rect x="847.2" y="2789" width="0.4" height="15.0" fill="rgb(221,39,5)" rx="2" ry="2" /> +<text x="850.24" y="2799.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\ControlFlowResult::Br (1 samples, 0.03%)</title><rect x="895.8" y="2821" width="0.4" height="15.0" fill="rgb(243,174,39)" rx="2" ry="2" /> +<text x="898.83" y="2831.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (5 samples, 0.14%)</title><rect x="303.8" y="1909" width="1.7" height="15.0" fill="rgb(240,58,51)" rx="2" ry="2" /> +<text x="306.84" y="1919.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doLoadI32 (1 samples, 0.03%)</title><rect x="954.3" y="2325" width="0.4" height="15.0" fill="rgb(239,85,32)" rx="2" ry="2" /> +<text x="957.33" y="2335.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (2 samples, 0.06%)</title><rect x="304.5" y="1845" width="0.7" height="15.0" fill="rgb(244,157,16)" rx="2" ry="2" /> +<text x="307.50" y="1855.5" ></text> +</g> +<g > +<title><unknown> (1 samples, 0.03%)</title><rect x="870.4" y="997" width="0.3" height="15.0" fill="rgb(229,17,45)" rx="2" ry="2" /> +<text x="873.38" y="1007.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (7 samples, 0.20%)</title><rect x="662.8" y="2341" width="2.3" height="15.0" fill="rgb(224,172,34)" rx="2" ry="2" /> +<text x="665.80" y="2351.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="263.5" y="1669" width="0.3" height="15.0" fill="rgb(250,47,0)" rx="2" ry="2" /> +<text x="266.52" y="1679.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Stack::popI32 (1 samples, 0.03%)</title><rect x="247.0" y="3157" width="0.3" height="15.0" fill="rgb(235,139,19)" rx="2" ry="2" /> +<text x="249.99" y="3167.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.03%)</title><rect x="422.8" y="885" width="0.4" height="15.0" fill="rgb(236,149,42)" rx="2" ry="2" /> +<text x="425.83" y="895.5" ></text> +</g> +<g > +<title><unknown> (1 samples, 0.03%)</title><rect x="870.4" y="885" width="0.3" height="15.0" fill="rgb(211,184,0)" rx="2" ry="2" /> +<text x="873.38" y="895.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.03%)</title><rect x="706.8" y="2645" width="0.3" height="15.0" fill="rgb(220,224,16)" rx="2" ry="2" /> +<text x="709.76" y="2655.5" ></text> +</g> +<g > +<title><unknown> (1 samples, 0.03%)</title><rect x="870.4" y="965" width="0.3" height="15.0" fill="rgb(249,144,34)" rx="2" ry="2" /> +<text x="873.38" y="975.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.03%)</title><rect x="315.4" y="1877" width="0.3" height="15.0" fill="rgb(222,220,3)" rx="2" ry="2" /> +<text x="318.41" y="1887.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.03%)</title><rect x="298.6" y="1589" width="0.3" height="15.0" fill="rgb(212,44,16)" rx="2" ry="2" /> +<text x="301.55" y="1599.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="954.0" y="2693" width="0.3" height="15.0" fill="rgb(248,58,42)" rx="2" ry="2" /> +<text x="957.00" y="2703.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (1 samples, 0.03%)</title><rect x="358.4" y="1717" width="0.3" height="15.0" fill="rgb(251,84,39)" rx="2" ry="2" /> +<text x="361.38" y="1727.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (14 samples, 0.39%)</title><rect x="698.2" y="2565" width="4.6" height="15.0" fill="rgb(218,16,35)" rx="2" ry="2" /> +<text x="701.17" y="2575.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (3 samples, 0.08%)</title><rect x="1103.7" y="3077" width="1.0" height="15.0" fill="rgb(250,183,43)" rx="2" ry="2" /> +<text x="1106.73" y="3087.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (177 samples, 4.96%)</title><rect x="895.2" y="2869" width="58.5" height="15.0" fill="rgb(247,194,14)" rx="2" ry="2" /> +<text x="898.17" y="2879.5" >Nsfisi..</text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="250.0" y="2693" width="0.3" height="15.0" fill="rgb(220,96,30)" rx="2" ry="2" /> +<text x="252.97" y="2703.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (2 samples, 0.06%)</title><rect x="842.9" y="2485" width="0.7" height="15.0" fill="rgb(219,194,19)" rx="2" ry="2" /> +<text x="845.94" y="2495.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (2 samples, 0.06%)</title><rect x="937.5" y="2405" width="0.6" height="15.0" fill="rgb(219,216,46)" rx="2" ry="2" /> +<text x="940.47" y="2415.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (3 samples, 0.08%)</title><rect x="420.9" y="2197" width="0.9" height="15.0" fill="rgb(247,94,18)" rx="2" ry="2" /> +<text x="423.85" y="2207.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.03%)</title><rect x="954.3" y="2869" width="0.4" height="15.0" fill="rgb(224,173,33)" rx="2" ry="2" /> +<text x="957.33" y="2879.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.03%)</title><rect x="400.7" y="1845" width="0.3" height="15.0" fill="rgb(218,39,37)" rx="2" ry="2" /> +<text x="403.69" y="1855.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.03%)</title><rect x="667.1" y="2837" width="0.3" height="15.0" fill="rgb(239,152,16)" rx="2" ry="2" /> +<text x="670.10" y="2847.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (4 samples, 0.11%)</title><rect x="661.5" y="2277" width="1.3" height="15.0" fill="rgb(242,18,43)" rx="2" ry="2" /> +<text x="664.48" y="2287.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="955.7" y="2789" width="0.3" height="15.0" fill="rgb(236,33,26)" rx="2" ry="2" /> +<text x="958.65" y="2799.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.03%)</title><rect x="410.9" y="1877" width="0.4" height="15.0" fill="rgb(221,146,52)" rx="2" ry="2" /> +<text x="413.94" y="1887.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::deactivateFrame (1 samples, 0.03%)</title><rect x="254.3" y="2293" width="0.3" height="15.0" fill="rgb(218,206,54)" rx="2" ry="2" /> +<text x="257.26" y="2303.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (2 samples, 0.06%)</title><rect x="263.2" y="1925" width="0.6" height="15.0" fill="rgb(248,177,14)" rx="2" ry="2" /> +<text x="266.19" y="1935.5" ></text> +</g> +<g > +<title>assert (1 samples, 0.03%)</title><rect x="792.0" y="2277" width="0.4" height="15.0" fill="rgb(205,124,44)" rx="2" ry="2" /> +<text x="795.04" y="2287.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (230 samples, 6.44%)</title><rect x="707.4" y="2693" width="76.0" height="15.0" fill="rgb(211,60,21)" rx="2" ry="2" /> +<text x="710.42" y="2703.5" >Nsfisis\..</text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::deactivateLabel (1 samples, 0.03%)</title><rect x="341.9" y="2053" width="0.3" height="15.0" fill="rgb(234,167,20)" rx="2" ry="2" /> +<text x="344.85" y="2063.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="337.2" y="1957" width="0.4" height="15.0" fill="rgb(223,121,16)" rx="2" ry="2" /> +<text x="340.23" y="1967.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (683 samples, 19.13%)</title><rect x="422.8" y="965" width="225.8" height="15.0" fill="rgb(213,88,22)" rx="2" ry="2" /> +<text x="425.83" y="975.5" >Nsfisis\Waddiwasi\Execution\R..</text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="846.6" y="2917" width="0.3" height="15.0" fill="rgb(217,224,42)" rx="2" ry="2" /> +<text x="849.58" y="2927.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="808.6" y="2341" width="0.3" height="15.0" fill="rgb(222,71,21)" rx="2" ry="2" /> +<text x="811.57" y="2351.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\StackEntry::Value (3 samples, 0.08%)</title><rect x="1175.8" y="3541" width="1.0" height="15.0" fill="rgb(230,26,29)" rx="2" ry="2" /> +<text x="1178.79" y="3551.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (4 samples, 0.11%)</title><rect x="833.4" y="2213" width="1.3" height="15.0" fill="rgb(224,38,51)" rx="2" ry="2" /> +<text x="836.36" y="2223.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (685 samples, 19.19%)</title><rect x="422.2" y="1557" width="226.4" height="15.0" fill="rgb(247,198,2)" rx="2" ry="2" /> +<text x="425.17" y="1567.5" >Nsfisis\Waddiwasi\Execution\R..</text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (2 samples, 0.06%)</title><rect x="263.2" y="1957" width="0.6" height="15.0" fill="rgb(220,218,34)" rx="2" ry="2" /> +<text x="266.19" y="1967.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.03%)</title><rect x="953.7" y="2965" width="0.3" height="15.0" fill="rgb(238,101,17)" rx="2" ry="2" /> +<text x="956.67" y="2975.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.03%)</title><rect x="307.1" y="1589" width="0.4" height="15.0" fill="rgb(245,102,19)" rx="2" ry="2" /> +<text x="310.15" y="1599.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (19 samples, 0.53%)</title><rect x="410.9" y="2245" width="6.3" height="15.0" fill="rgb(233,6,53)" rx="2" ry="2" /> +<text x="413.94" y="2255.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (16 samples, 0.45%)</title><rect x="401.4" y="1989" width="5.2" height="15.0" fill="rgb(250,14,5)" rx="2" ry="2" /> +<text x="404.35" y="1999.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.03%)</title><rect x="1104.4" y="2485" width="0.3" height="15.0" fill="rgb(217,163,3)" rx="2" ry="2" /> +<text x="1107.39" y="2495.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="406.0" y="1829" width="0.3" height="15.0" fill="rgb(207,187,43)" rx="2" ry="2" /> +<text x="408.98" y="1839.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="845.6" y="2725" width="0.3" height="15.0" fill="rgb(212,95,3)" rx="2" ry="2" /> +<text x="848.59" y="2735.5" ></text> +</g> +<g > +<title><unknown> (1 samples, 0.03%)</title><rect x="705.8" y="2597" width="0.3" height="15.0" fill="rgb(234,145,41)" rx="2" ry="2" /> +<text x="708.77" y="2607.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\ControlFlowResult::Br (2 samples, 0.06%)</title><rect x="781.1" y="2181" width="0.7" height="15.0" fill="rgb(243,116,8)" rx="2" ry="2" /> +<text x="784.13" y="2191.5" ></text> +</g> +<g > +<title><unknown> (2 samples, 0.06%)</title><rect x="1156.9" y="3509" width="0.7" height="15.0" fill="rgb(205,156,52)" rx="2" ry="2" /> +<text x="1159.95" y="3519.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (5 samples, 0.14%)</title><rect x="303.8" y="1941" width="1.7" height="15.0" fill="rgb(214,77,3)" rx="2" ry="2" /> +<text x="306.84" y="1951.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="325.3" y="2117" width="0.4" height="15.0" fill="rgb(220,116,42)" rx="2" ry="2" /> +<text x="328.33" y="2127.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (2 samples, 0.06%)</title><rect x="847.2" y="2853" width="0.7" height="15.0" fill="rgb(253,115,20)" rx="2" ry="2" /> +<text x="850.24" y="2863.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Nums\I32::__construct (1 samples, 0.03%)</title><rect x="221.5" y="3413" width="0.4" height="15.0" fill="rgb(223,152,51)" rx="2" ry="2" /> +<text x="224.54" y="3423.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.03%)</title><rect x="670.1" y="2645" width="0.3" height="15.0" fill="rgb(246,227,12)" rx="2" ry="2" /> +<text x="673.07" y="2655.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="870.4" y="2101" width="0.3" height="15.0" fill="rgb(240,129,35)" rx="2" ry="2" /> +<text x="873.38" y="2111.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (1 samples, 0.03%)</title><rect x="843.9" y="2949" width="0.4" height="15.0" fill="rgb(227,209,47)" rx="2" ry="2" /> +<text x="846.93" y="2959.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="391.1" y="1861" width="0.3" height="15.0" fill="rgb(210,200,13)" rx="2" ry="2" /> +<text x="394.10" y="1871.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (1 samples, 0.03%)</title><rect x="695.9" y="2277" width="0.3" height="15.0" fill="rgb(254,222,8)" rx="2" ry="2" /> +<text x="698.85" y="2287.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.03%)</title><rect x="842.6" y="2485" width="0.3" height="15.0" fill="rgb(246,80,0)" rx="2" ry="2" /> +<text x="845.61" y="2495.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Stack::popValue (3 samples, 0.08%)</title><rect x="1139.1" y="3509" width="1.0" height="15.0" fill="rgb(235,25,54)" rx="2" ry="2" /> +<text x="1142.10" y="3519.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (685 samples, 19.19%)</title><rect x="422.2" y="1573" width="226.4" height="15.0" fill="rgb(253,36,34)" rx="2" ry="2" /> +<text x="425.17" y="1583.5" >Nsfisis\Waddiwasi\Execution\R..</text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (4 samples, 0.11%)</title><rect x="1103.4" y="3109" width="1.3" height="15.0" fill="rgb(207,8,22)" rx="2" ry="2" /> +<text x="1106.40" y="3119.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (4 samples, 0.11%)</title><rect x="374.9" y="1557" width="1.3" height="15.0" fill="rgb(237,223,30)" rx="2" ry="2" /> +<text x="377.91" y="1567.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (2 samples, 0.06%)</title><rect x="691.2" y="2405" width="0.7" height="15.0" fill="rgb(220,107,27)" rx="2" ry="2" /> +<text x="694.23" y="2415.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (6 samples, 0.17%)</title><rect x="849.6" y="2581" width="1.9" height="15.0" fill="rgb(211,212,18)" rx="2" ry="2" /> +<text x="852.55" y="2591.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Stack::popI64 (1 samples, 0.03%)</title><rect x="781.8" y="2181" width="0.3" height="15.0" fill="rgb(221,52,50)" rx="2" ry="2" /> +<text x="784.79" y="2191.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\ControlFlowResult::Br (1 samples, 0.03%)</title><rect x="775.5" y="2181" width="0.3" height="15.0" fill="rgb(214,67,35)" rx="2" ry="2" /> +<text x="778.51" y="2191.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="246.0" y="2885" width="0.3" height="15.0" fill="rgb(232,205,48)" rx="2" ry="2" /> +<text x="249.00" y="2895.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.03%)</title><rect x="878.3" y="2133" width="0.3" height="15.0" fill="rgb(245,78,26)" rx="2" ry="2" /> +<text x="881.31" y="2143.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (2 samples, 0.06%)</title><rect x="954.7" y="1989" width="0.6" height="15.0" fill="rgb(206,176,19)" rx="2" ry="2" /> +<text x="957.66" y="1999.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.03%)</title><rect x="246.0" y="3125" width="0.3" height="15.0" fill="rgb(231,119,16)" rx="2" ry="2" /> +<text x="249.00" y="3135.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (5 samples, 0.14%)</title><rect x="247.7" y="3205" width="1.6" height="15.0" fill="rgb(248,124,33)" rx="2" ry="2" /> +<text x="250.65" y="3215.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.03%)</title><rect x="661.5" y="2197" width="0.3" height="15.0" fill="rgb(236,223,13)" rx="2" ry="2" /> +<text x="664.48" y="2207.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (1 samples, 0.03%)</title><rect x="372.6" y="1717" width="0.3" height="15.0" fill="rgb(228,168,46)" rx="2" ry="2" /> +<text x="375.59" y="1727.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (2 samples, 0.06%)</title><rect x="661.8" y="2165" width="0.7" height="15.0" fill="rgb(206,49,16)" rx="2" ry="2" /> +<text x="664.81" y="2175.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (1 samples, 0.03%)</title><rect x="1108.0" y="3301" width="0.4" height="15.0" fill="rgb(248,1,10)" rx="2" ry="2" /> +<text x="1111.03" y="3311.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="390.4" y="1925" width="0.4" height="15.0" fill="rgb(245,7,20)" rx="2" ry="2" /> +<text x="393.44" y="1935.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (2 samples, 0.06%)</title><rect x="697.2" y="2229" width="0.6" height="15.0" fill="rgb(219,114,1)" rx="2" ry="2" /> +<text x="700.18" y="2239.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (2 samples, 0.06%)</title><rect x="849.6" y="2277" width="0.6" height="15.0" fill="rgb(252,71,40)" rx="2" ry="2" /> +<text x="852.55" y="2287.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (2 samples, 0.06%)</title><rect x="954.7" y="2757" width="0.6" height="15.0" fill="rgb(218,73,53)" rx="2" ry="2" /> +<text x="957.66" y="2767.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.03%)</title><rect x="783.8" y="2741" width="0.3" height="15.0" fill="rgb(238,94,28)" rx="2" ry="2" /> +<text x="786.78" y="2751.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (3 samples, 0.08%)</title><rect x="399.0" y="2165" width="1.0" height="15.0" fill="rgb(216,108,25)" rx="2" ry="2" /> +<text x="402.04" y="2175.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (2 samples, 0.06%)</title><rect x="849.6" y="2421" width="0.6" height="15.0" fill="rgb(214,196,32)" rx="2" ry="2" /> +<text x="852.55" y="2431.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (6 samples, 0.17%)</title><rect x="835.7" y="2197" width="2.0" height="15.0" fill="rgb(207,173,34)" rx="2" ry="2" /> +<text x="838.67" y="2207.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.03%)</title><rect x="405.3" y="885" width="0.3" height="15.0" fill="rgb(205,220,30)" rx="2" ry="2" /> +<text x="408.32" y="895.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (2 samples, 0.06%)</title><rect x="302.2" y="1557" width="0.7" height="15.0" fill="rgb(239,139,23)" rx="2" ry="2" /> +<text x="305.19" y="1567.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.03%)</title><rect x="667.1" y="2805" width="0.3" height="15.0" fill="rgb(249,77,18)" rx="2" ry="2" /> +<text x="670.10" y="2815.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (4 samples, 0.11%)</title><rect x="880.0" y="2629" width="1.3" height="15.0" fill="rgb(232,20,35)" rx="2" ry="2" /> +<text x="882.96" y="2639.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (19 samples, 0.53%)</title><rect x="802.3" y="2293" width="6.3" height="15.0" fill="rgb(223,83,18)" rx="2" ry="2" /> +<text x="805.29" y="2303.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (2 samples, 0.06%)</title><rect x="313.8" y="2117" width="0.6" height="15.0" fill="rgb(232,14,13)" rx="2" ry="2" /> +<text x="316.76" y="2127.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="954.0" y="3077" width="0.3" height="15.0" fill="rgb(229,130,14)" rx="2" ry="2" /> +<text x="957.00" y="3087.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (3 samples, 0.08%)</title><rect x="307.1" y="1781" width="1.0" height="15.0" fill="rgb(232,124,8)" rx="2" ry="2" /> +<text x="310.15" y="1791.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="790.1" y="2021" width="0.3" height="15.0" fill="rgb(223,1,53)" rx="2" ry="2" /> +<text x="793.06" y="2031.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="314.1" y="1925" width="0.3" height="15.0" fill="rgb(242,128,16)" rx="2" ry="2" /> +<text x="317.09" y="1935.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (4 samples, 0.11%)</title><rect x="1135.8" y="3221" width="1.3" height="15.0" fill="rgb(209,58,31)" rx="2" ry="2" /> +<text x="1138.79" y="3231.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (2 samples, 0.06%)</title><rect x="842.3" y="2741" width="0.6" height="15.0" fill="rgb(235,111,13)" rx="2" ry="2" /> +<text x="845.28" y="2751.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Stack::popI32 (1 samples, 0.03%)</title><rect x="670.4" y="2741" width="0.3" height="15.0" fill="rgb(228,173,22)" rx="2" ry="2" /> +<text x="673.40" y="2751.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (2 samples, 0.06%)</title><rect x="359.7" y="1877" width="0.7" height="15.0" fill="rgb(239,33,18)" rx="2" ry="2" /> +<text x="362.70" y="1887.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="267.5" y="1861" width="0.3" height="15.0" fill="rgb(216,136,27)" rx="2" ry="2" /> +<text x="270.48" y="1871.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (2 samples, 0.06%)</title><rect x="268.1" y="1989" width="0.7" height="15.0" fill="rgb(225,126,53)" rx="2" ry="2" /> +<text x="271.15" y="1999.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (1 samples, 0.03%)</title><rect x="421.5" y="1989" width="0.3" height="15.0" fill="rgb(224,19,28)" rx="2" ry="2" /> +<text x="424.51" y="1999.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (4 samples, 0.11%)</title><rect x="833.4" y="2245" width="1.3" height="15.0" fill="rgb(243,169,2)" rx="2" ry="2" /> +<text x="836.36" y="2255.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (2 samples, 0.06%)</title><rect x="302.2" y="1477" width="0.7" height="15.0" fill="rgb(225,115,19)" rx="2" ry="2" /> +<text x="305.19" y="1487.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (4 samples, 0.11%)</title><rect x="340.2" y="2005" width="1.3" height="15.0" fill="rgb(253,32,4)" rx="2" ry="2" /> +<text x="343.20" y="2015.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="830.4" y="2181" width="0.3" height="15.0" fill="rgb(249,90,54)" rx="2" ry="2" /> +<text x="833.38" y="2191.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (2 samples, 0.06%)</title><rect x="697.2" y="2389" width="0.6" height="15.0" fill="rgb(213,66,28)" rx="2" ry="2" /> +<text x="700.18" y="2399.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (2 samples, 0.06%)</title><rect x="954.7" y="693" width="0.6" height="15.0" fill="rgb(246,142,0)" rx="2" ry="2" /> +<text x="957.66" y="703.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="1104.4" y="2277" width="0.3" height="15.0" fill="rgb(232,181,18)" rx="2" ry="2" /> +<text x="1107.39" y="2287.5" ></text> +</g> +<g > +<title><unknown> (1 samples, 0.03%)</title><rect x="870.4" y="1445" width="0.3" height="15.0" fill="rgb(220,120,47)" rx="2" ry="2" /> +<text x="873.38" y="1455.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="930.2" y="2501" width="0.3" height="15.0" fill="rgb(248,81,24)" rx="2" ry="2" /> +<text x="933.20" y="2511.5" ></text> +</g> +<g > +<title><unknown> (1 samples, 0.03%)</title><rect x="870.4" y="1365" width="0.3" height="15.0" fill="rgb(234,219,28)" rx="2" ry="2" /> +<text x="873.38" y="1375.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (1 samples, 0.03%)</title><rect x="1107.4" y="3365" width="0.3" height="15.0" fill="rgb(207,5,34)" rx="2" ry="2" /> +<text x="1110.37" y="3375.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="398.7" y="2117" width="0.3" height="15.0" fill="rgb(209,35,43)" rx="2" ry="2" /> +<text x="401.71" y="2127.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="314.1" y="1765" width="0.3" height="15.0" fill="rgb(223,149,9)" rx="2" ry="2" /> +<text x="317.09" y="1775.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (2 samples, 0.06%)</title><rect x="884.9" y="2645" width="0.7" height="15.0" fill="rgb(228,210,44)" rx="2" ry="2" /> +<text x="887.92" y="2655.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (2 samples, 0.06%)</title><rect x="668.1" y="2773" width="0.7" height="15.0" fill="rgb(234,87,43)" rx="2" ry="2" /> +<text x="671.09" y="2783.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="1107.4" y="3205" width="0.3" height="15.0" fill="rgb(238,75,22)" rx="2" ry="2" /> +<text x="1110.37" y="3215.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.03%)</title><rect x="894.5" y="2453" width="0.3" height="15.0" fill="rgb(246,53,34)" rx="2" ry="2" /> +<text x="897.50" y="2463.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (2 samples, 0.06%)</title><rect x="405.0" y="981" width="0.6" height="15.0" fill="rgb(248,10,2)" rx="2" ry="2" /> +<text x="407.99" y="991.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (468 samples, 13.11%)</title><rect x="254.3" y="2357" width="154.7" height="15.0" fill="rgb(246,131,36)" rx="2" ry="2" /> +<text x="257.26" y="2367.5" >Nsfisis\Waddiwasi\E..</text> +</g> +<g > +<title><unknown> (1 samples, 0.03%)</title><rect x="870.4" y="1477" width="0.3" height="15.0" fill="rgb(248,215,28)" rx="2" ry="2" /> +<text x="873.38" y="1487.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (7 samples, 0.20%)</title><rect x="288.6" y="1973" width="2.4" height="15.0" fill="rgb(221,185,37)" rx="2" ry="2" /> +<text x="291.64" y="1983.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="304.8" y="1701" width="0.4" height="15.0" fill="rgb(239,105,12)" rx="2" ry="2" /> +<text x="307.83" y="1711.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="314.1" y="1829" width="0.3" height="15.0" fill="rgb(219,188,16)" rx="2" ry="2" /> +<text x="317.09" y="1839.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.03%)</title><rect x="947.1" y="2389" width="0.3" height="15.0" fill="rgb(244,53,25)" rx="2" ry="2" /> +<text x="950.06" y="2399.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.03%)</title><rect x="893.5" y="2613" width="0.3" height="15.0" fill="rgb(224,112,1)" rx="2" ry="2" /> +<text x="896.51" y="2623.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.03%)</title><rect x="422.8" y="757" width="0.4" height="15.0" fill="rgb(207,64,4)" rx="2" ry="2" /> +<text x="425.83" y="767.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (6 samples, 0.17%)</title><rect x="256.9" y="2149" width="2.0" height="15.0" fill="rgb(212,227,22)" rx="2" ry="2" /> +<text x="259.91" y="2159.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (57 samples, 1.60%)</title><rect x="678.0" y="2661" width="18.8" height="15.0" fill="rgb(205,196,3)" rx="2" ry="2" /> +<text x="681.01" y="2671.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\StackEntries\Value::__construct (2 samples, 0.06%)</title><rect x="171.6" y="3429" width="0.7" height="15.0" fill="rgb(238,10,28)" rx="2" ry="2" /> +<text x="174.63" y="3439.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Stack::pushI32 (1 samples, 0.03%)</title><rect x="267.2" y="1813" width="0.3" height="15.0" fill="rgb(248,121,44)" rx="2" ry="2" /> +<text x="270.15" y="1823.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (1 samples, 0.03%)</title><rect x="847.6" y="2773" width="0.3" height="15.0" fill="rgb(206,168,33)" rx="2" ry="2" /> +<text x="850.57" y="2783.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Stack::popI32 (1 samples, 0.03%)</title><rect x="299.9" y="1589" width="0.3" height="15.0" fill="rgb(213,42,45)" rx="2" ry="2" /> +<text x="302.88" y="1599.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (1 samples, 0.03%)</title><rect x="1150.7" y="3493" width="0.3" height="15.0" fill="rgb(209,156,30)" rx="2" ry="2" /> +<text x="1153.67" y="3503.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.03%)</title><rect x="271.5" y="2165" width="0.3" height="15.0" fill="rgb(242,83,1)" rx="2" ry="2" /> +<text x="274.45" y="2175.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::deactivateLabel (1 samples, 0.03%)</title><rect x="279.4" y="2005" width="0.3" height="15.0" fill="rgb(238,112,22)" rx="2" ry="2" /> +<text x="282.38" y="2015.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (5 samples, 0.14%)</title><rect x="366.3" y="1733" width="1.7" height="15.0" fill="rgb(242,210,1)" rx="2" ry="2" /> +<text x="369.31" y="1743.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.03%)</title><rect x="664.5" y="2069" width="0.3" height="15.0" fill="rgb(231,135,16)" rx="2" ry="2" /> +<text x="667.45" y="2079.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeHostFunc (1,823 samples, 51.06%)</title><rect x="246.0" y="3429" width="602.6" height="15.0" fill="rgb(250,26,32)" rx="2" ry="2" /> +<text x="249.00" y="3439.5" >Nsfisis\Waddiwasi\Execution\Runtime::doInvokeHostFunc</text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Stack::pushValue (1 samples, 0.03%)</title><rect x="1105.1" y="3413" width="0.3" height="15.0" fill="rgb(212,215,47)" rx="2" ry="2" /> +<text x="1108.05" y="3423.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (12 samples, 0.34%)</title><rect x="692.5" y="2613" width="4.0" height="15.0" fill="rgb(235,127,50)" rx="2" ry="2" /> +<text x="695.55" y="2623.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="406.6" y="1605" width="0.4" height="15.0" fill="rgb(230,45,14)" rx="2" ry="2" /> +<text x="409.64" y="1615.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.03%)</title><rect x="270.8" y="2005" width="0.3" height="15.0" fill="rgb(247,212,4)" rx="2" ry="2" /> +<text x="273.79" y="2015.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Nums\I32::__construct (1 samples, 0.03%)</title><rect x="790.7" y="2277" width="0.3" height="15.0" fill="rgb(211,175,21)" rx="2" ry="2" /> +<text x="793.72" y="2287.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (19 samples, 0.53%)</title><rect x="802.3" y="2277" width="6.3" height="15.0" fill="rgb(227,101,38)" rx="2" ry="2" /> +<text x="805.29" y="2287.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (1 samples, 0.03%)</title><rect x="893.5" y="2645" width="0.3" height="15.0" fill="rgb(220,209,49)" rx="2" ry="2" /> +<text x="896.51" y="2655.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="838.6" y="2277" width="0.4" height="15.0" fill="rgb(243,61,42)" rx="2" ry="2" /> +<text x="841.64" y="2287.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Stack::pushI32 (1 samples, 0.03%)</title><rect x="952.7" y="2517" width="0.3" height="15.0" fill="rgb(225,170,51)" rx="2" ry="2" /> +<text x="955.68" y="2527.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (2 samples, 0.06%)</title><rect x="397.7" y="2101" width="0.7" height="15.0" fill="rgb(217,74,28)" rx="2" ry="2" /> +<text x="400.71" y="2111.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (1 samples, 0.03%)</title><rect x="783.8" y="2789" width="0.3" height="15.0" fill="rgb(236,17,32)" rx="2" ry="2" /> +<text x="786.78" y="2799.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (685 samples, 19.19%)</title><rect x="422.2" y="1253" width="226.4" height="15.0" fill="rgb(237,177,33)" rx="2" ry="2" /> +<text x="425.17" y="1263.5" >Nsfisis\Waddiwasi\Execution\R..</text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (2 samples, 0.06%)</title><rect x="839.0" y="2277" width="0.6" height="15.0" fill="rgb(240,215,43)" rx="2" ry="2" /> +<text x="841.97" y="2287.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Stack::popI32 (1 samples, 0.03%)</title><rect x="354.7" y="1717" width="0.4" height="15.0" fill="rgb(236,91,20)" rx="2" ry="2" /> +<text x="357.75" y="1727.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="302.9" y="1829" width="0.3" height="15.0" fill="rgb(218,121,46)" rx="2" ry="2" /> +<text x="305.85" y="1839.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (2 samples, 0.06%)</title><rect x="263.2" y="1829" width="0.6" height="15.0" fill="rgb(234,21,53)" rx="2" ry="2" /> +<text x="266.19" y="1839.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (12 samples, 0.34%)</title><rect x="1133.5" y="3269" width="3.9" height="15.0" fill="rgb(218,50,19)" rx="2" ry="2" /> +<text x="1136.48" y="3279.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.03%)</title><rect x="954.3" y="2677" width="0.4" height="15.0" fill="rgb(224,96,29)" rx="2" ry="2" /> +<text x="957.33" y="2687.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="315.4" y="1893" width="0.3" height="15.0" fill="rgb(240,146,37)" rx="2" ry="2" /> +<text x="318.41" y="1903.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.03%)</title><rect x="880.6" y="2517" width="0.4" height="15.0" fill="rgb(234,14,42)" rx="2" ry="2" /> +<text x="883.62" y="2527.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (3 samples, 0.08%)</title><rect x="701.8" y="2453" width="1.0" height="15.0" fill="rgb(229,55,23)" rx="2" ry="2" /> +<text x="704.80" y="2463.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Stack::popI32 (1 samples, 0.03%)</title><rect x="1138.8" y="3509" width="0.3" height="15.0" fill="rgb(240,11,6)" rx="2" ry="2" /> +<text x="1141.77" y="3519.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="807.9" y="2213" width="0.3" height="15.0" fill="rgb(232,45,23)" rx="2" ry="2" /> +<text x="810.90" y="2223.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (1 samples, 0.03%)</title><rect x="662.1" y="1973" width="0.4" height="15.0" fill="rgb(245,101,53)" rx="2" ry="2" /> +<text x="665.14" y="1983.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (1 samples, 0.03%)</title><rect x="790.1" y="2245" width="0.3" height="15.0" fill="rgb(226,183,41)" rx="2" ry="2" /> +<text x="793.06" y="2255.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (11 samples, 0.31%)</title><rect x="299.5" y="1861" width="3.7" height="15.0" fill="rgb(232,71,36)" rx="2" ry="2" /> +<text x="302.55" y="1871.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="940.4" y="2533" width="0.4" height="15.0" fill="rgb(238,148,9)" rx="2" ry="2" /> +<text x="943.45" y="2543.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (23 samples, 0.64%)</title><rect x="653.9" y="2277" width="7.6" height="15.0" fill="rgb(207,105,22)" rx="2" ry="2" /> +<text x="656.88" y="2287.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.03%)</title><rect x="851.2" y="2229" width="0.3" height="15.0" fill="rgb(249,201,21)" rx="2" ry="2" /> +<text x="854.20" y="2239.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (2 samples, 0.06%)</title><rect x="954.7" y="2117" width="0.6" height="15.0" fill="rgb(216,99,13)" rx="2" ry="2" /> +<text x="957.66" y="2127.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (23 samples, 0.64%)</title><rect x="653.9" y="2261" width="7.6" height="15.0" fill="rgb(247,158,20)" rx="2" ry="2" /> +<text x="656.88" y="2271.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.03%)</title><rect x="372.6" y="1685" width="0.3" height="15.0" fill="rgb(237,164,0)" rx="2" ry="2" /> +<text x="375.59" y="1695.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="903.8" y="2533" width="0.3" height="15.0" fill="rgb(228,151,9)" rx="2" ry="2" /> +<text x="906.76" y="2543.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (2 samples, 0.06%)</title><rect x="670.7" y="2677" width="0.7" height="15.0" fill="rgb(219,73,51)" rx="2" ry="2" /> +<text x="673.73" y="2687.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (5 samples, 0.14%)</title><rect x="247.7" y="3173" width="1.6" height="15.0" fill="rgb(209,184,2)" rx="2" ry="2" /> +<text x="250.65" y="3183.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (42 samples, 1.18%)</title><rect x="678.7" y="2581" width="13.8" height="15.0" fill="rgb(215,84,49)" rx="2" ry="2" /> +<text x="681.67" y="2591.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="268.1" y="1893" width="0.4" height="15.0" fill="rgb(242,26,3)" rx="2" ry="2" /> +<text x="271.15" y="1903.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (3 samples, 0.08%)</title><rect x="246.3" y="3189" width="1.0" height="15.0" fill="rgb(222,140,15)" rx="2" ry="2" /> +<text x="249.33" y="3199.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (8 samples, 0.22%)</title><rect x="672.4" y="2469" width="2.6" height="15.0" fill="rgb(245,166,43)" rx="2" ry="2" /> +<text x="675.39" y="2479.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doStoreI32 (1 samples, 0.03%)</title><rect x="261.2" y="1941" width="0.3" height="15.0" fill="rgb(253,55,23)" rx="2" ry="2" /> +<text x="264.20" y="1951.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (2 samples, 0.06%)</title><rect x="842.3" y="2613" width="0.6" height="15.0" fill="rgb(242,105,38)" rx="2" ry="2" /> +<text x="845.28" y="2623.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="344.8" y="1989" width="0.4" height="15.0" fill="rgb(241,16,17)" rx="2" ry="2" /> +<text x="347.83" y="1999.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (685 samples, 19.19%)</title><rect x="422.2" y="1429" width="226.4" height="15.0" fill="rgb(230,168,54)" rx="2" ry="2" /> +<text x="425.17" y="1439.5" >Nsfisis\Waddiwasi\Execution\R..</text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="315.4" y="1861" width="0.3" height="15.0" fill="rgb(214,194,24)" rx="2" ry="2" /> +<text x="318.41" y="1871.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (5 samples, 0.14%)</title><rect x="900.1" y="2661" width="1.7" height="15.0" fill="rgb(234,75,12)" rx="2" ry="2" /> +<text x="903.12" y="2671.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (685 samples, 19.19%)</title><rect x="422.2" y="1525" width="226.4" height="15.0" fill="rgb(223,200,37)" rx="2" ry="2" /> +<text x="425.17" y="1535.5" >Nsfisis\Waddiwasi\Execution\R..</text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (3 samples, 0.08%)</title><rect x="837.7" y="2197" width="0.9" height="15.0" fill="rgb(221,192,18)" rx="2" ry="2" /> +<text x="840.65" y="2207.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.03%)</title><rect x="1077.3" y="3285" width="0.3" height="15.0" fill="rgb(228,155,0)" rx="2" ry="2" /> +<text x="1080.29" y="3295.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (10 samples, 0.28%)</title><rect x="264.2" y="1925" width="3.3" height="15.0" fill="rgb(241,144,35)" rx="2" ry="2" /> +<text x="267.18" y="1935.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (21 samples, 0.59%)</title><rect x="1130.5" y="3381" width="6.9" height="15.0" fill="rgb(218,20,43)" rx="2" ry="2" /> +<text x="1133.50" y="3391.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="697.8" y="2437" width="0.4" height="15.0" fill="rgb(208,144,29)" rx="2" ry="2" /> +<text x="700.84" y="2447.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="330.9" y="1893" width="0.4" height="15.0" fill="rgb(252,105,28)" rx="2" ry="2" /> +<text x="333.95" y="1903.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (5 samples, 0.14%)</title><rect x="247.7" y="3221" width="1.6" height="15.0" fill="rgb(241,137,14)" rx="2" ry="2" /> +<text x="250.65" y="3231.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.03%)</title><rect x="1108.0" y="3189" width="0.4" height="15.0" fill="rgb(239,166,7)" rx="2" ry="2" /> +<text x="1111.03" y="3199.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Stack::pushValue (1 samples, 0.03%)</title><rect x="1110.0" y="3493" width="0.3" height="15.0" fill="rgb(225,84,15)" rx="2" ry="2" /> +<text x="1113.01" y="3503.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="783.1" y="2277" width="0.3" height="15.0" fill="rgb(226,156,49)" rx="2" ry="2" /> +<text x="786.11" y="2287.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="299.9" y="1797" width="0.3" height="15.0" fill="rgb(228,195,53)" rx="2" ry="2" /> +<text x="302.88" y="1807.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (1 samples, 0.03%)</title><rect x="847.2" y="2549" width="0.4" height="15.0" fill="rgb(239,157,48)" rx="2" ry="2" /> +<text x="850.24" y="2559.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (2,148 samples, 60.17%)</title><rect x="246.0" y="3477" width="710.0" height="15.0" fill="rgb(235,206,24)" rx="2" ry="2" /> +<text x="249.00" y="3487.5" >Nsfisis\Waddiwasi\Execution\Runtime::execInstrs</text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (2 samples, 0.06%)</title><rect x="842.9" y="2533" width="0.7" height="15.0" fill="rgb(240,105,18)" rx="2" ry="2" /> +<text x="845.94" y="2543.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="314.1" y="1573" width="0.3" height="15.0" fill="rgb(243,153,54)" rx="2" ry="2" /> +<text x="317.09" y="1583.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (2 samples, 0.06%)</title><rect x="1104.1" y="2869" width="0.6" height="15.0" fill="rgb(235,213,30)" rx="2" ry="2" /> +<text x="1107.06" y="2879.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="847.9" y="2853" width="0.3" height="15.0" fill="rgb(233,184,17)" rx="2" ry="2" /> +<text x="850.90" y="2863.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="1154.6" y="3397" width="0.4" height="15.0" fill="rgb(243,154,47)" rx="2" ry="2" /> +<text x="1157.63" y="3407.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (2 samples, 0.06%)</title><rect x="954.7" y="1893" width="0.6" height="15.0" fill="rgb(221,99,0)" rx="2" ry="2" /> +<text x="957.66" y="1903.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (1 samples, 0.03%)</title><rect x="406.6" y="1701" width="0.4" height="15.0" fill="rgb(251,26,18)" rx="2" ry="2" /> +<text x="409.64" y="1711.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (3 samples, 0.08%)</title><rect x="420.9" y="2165" width="0.9" height="15.0" fill="rgb(207,62,39)" rx="2" ry="2" /> +<text x="423.85" y="2175.5" ></text> +</g> +<g > +<title><unknown> (1 samples, 0.03%)</title><rect x="870.4" y="2053" width="0.3" height="15.0" fill="rgb(246,28,4)" rx="2" ry="2" /> +<text x="873.38" y="2063.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="666.1" y="2437" width="0.3" height="15.0" fill="rgb(217,90,7)" rx="2" ry="2" /> +<text x="669.11" y="2447.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (1 samples, 0.03%)</title><rect x="894.2" y="2629" width="0.3" height="15.0" fill="rgb(213,178,40)" rx="2" ry="2" /> +<text x="897.17" y="2639.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (2 samples, 0.06%)</title><rect x="954.7" y="1253" width="0.6" height="15.0" fill="rgb(240,23,38)" rx="2" ry="2" /> +<text x="957.66" y="1263.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1,807 samples, 50.62%)</title><rect x="249.3" y="3189" width="597.3" height="15.0" fill="rgb(224,29,0)" rx="2" ry="2" /> +<text x="252.31" y="3199.5" >Nsfisis\Waddiwasi\Execution\Runtime::execInstrs</text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (8 samples, 0.22%)</title><rect x="888.2" y="2629" width="2.7" height="15.0" fill="rgb(228,49,0)" rx="2" ry="2" /> +<text x="891.22" y="2639.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="843.6" y="2597" width="0.3" height="15.0" fill="rgb(238,52,13)" rx="2" ry="2" /> +<text x="846.60" y="2607.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (322 samples, 9.02%)</title><rect x="849.6" y="3365" width="106.4" height="15.0" fill="rgb(242,197,10)" rx="2" ry="2" /> +<text x="852.55" y="3375.5" >Nsfisis\Waddi..</text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="251.0" y="2597" width="0.3" height="15.0" fill="rgb(235,200,38)" rx="2" ry="2" /> +<text x="253.96" y="2607.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.03%)</title><rect x="666.8" y="2869" width="0.3" height="15.0" fill="rgb(212,101,53)" rx="2" ry="2" /> +<text x="669.77" y="2879.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::activateLabel (1 samples, 0.03%)</title><rect x="848.6" y="2917" width="0.3" height="15.0" fill="rgb(233,38,24)" rx="2" ry="2" /> +<text x="851.56" y="2927.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (23 samples, 0.64%)</title><rect x="653.9" y="2245" width="7.6" height="15.0" fill="rgb(225,135,43)" rx="2" ry="2" /> +<text x="656.88" y="2255.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (9 samples, 0.25%)</title><rect x="948.1" y="2549" width="2.9" height="15.0" fill="rgb(242,8,29)" rx="2" ry="2" /> +<text x="951.05" y="2559.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="702.8" y="2693" width="0.3" height="15.0" fill="rgb(242,39,40)" rx="2" ry="2" /> +<text x="705.80" y="2703.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.03%)</title><rect x="346.2" y="1973" width="0.3" height="15.0" fill="rgb(223,199,43)" rx="2" ry="2" /> +<text x="349.15" y="1983.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\StackEntry::Value (1 samples, 0.03%)</title><rect x="271.5" y="2117" width="0.3" height="15.0" fill="rgb(249,150,41)" rx="2" ry="2" /> +<text x="274.45" y="2127.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (1 samples, 0.03%)</title><rect x="846.6" y="2901" width="0.3" height="15.0" fill="rgb(234,197,16)" rx="2" ry="2" /> +<text x="849.58" y="2911.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (3 samples, 0.08%)</title><rect x="707.8" y="2213" width="0.9" height="15.0" fill="rgb(219,167,3)" rx="2" ry="2" /> +<text x="710.75" y="2223.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (1,209 samples, 33.87%)</title><rect x="252.6" y="2453" width="399.6" height="15.0" fill="rgb(233,92,44)" rx="2" ry="2" /> +<text x="255.61" y="2463.5" >Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc</text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (5 samples, 0.14%)</title><rect x="415.2" y="1717" width="1.7" height="15.0" fill="rgb(228,89,7)" rx="2" ry="2" /> +<text x="418.23" y="1727.5" ></text> +</g> +<g > +<title>{closure}(/home/ken/src/php-waddiwasi/examples/php-on-wasm/php-wasm.php:286-297) (2 samples, 0.06%)</title><rect x="954.7" y="2805" width="0.6" height="15.0" fill="rgb(220,94,1)" rx="2" ry="2" /> +<text x="957.66" y="2815.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.03%)</title><rect x="697.5" y="2069" width="0.3" height="15.0" fill="rgb(212,34,53)" rx="2" ry="2" /> +<text x="700.51" y="2079.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Stack::pushValue (1 samples, 0.03%)</title><rect x="798.3" y="2293" width="0.3" height="15.0" fill="rgb(236,178,6)" rx="2" ry="2" /> +<text x="801.32" y="2303.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.03%)</title><rect x="400.4" y="1877" width="0.3" height="15.0" fill="rgb(219,6,42)" rx="2" ry="2" /> +<text x="403.36" y="1887.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (2 samples, 0.06%)</title><rect x="354.4" y="1861" width="0.7" height="15.0" fill="rgb(229,72,35)" rx="2" ry="2" /> +<text x="357.41" y="1871.5" ></text> +</g> +<g > +<title><unknown> (1 samples, 0.03%)</title><rect x="682.0" y="2517" width="0.3" height="15.0" fill="rgb(208,46,25)" rx="2" ry="2" /> +<text x="684.97" y="2527.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (317 samples, 8.88%)</title><rect x="849.6" y="3221" width="104.7" height="15.0" fill="rgb(230,36,23)" rx="2" ry="2" /> +<text x="852.55" y="3231.5" >Nsfisis\Wadd..</text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="656.5" y="1957" width="0.4" height="15.0" fill="rgb(232,46,43)" rx="2" ry="2" /> +<text x="659.52" y="1967.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (2 samples, 0.06%)</title><rect x="954.7" y="2517" width="0.6" height="15.0" fill="rgb(214,164,36)" rx="2" ry="2" /> +<text x="957.66" y="2527.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.03%)</title><rect x="954.0" y="2549" width="0.3" height="15.0" fill="rgb(211,46,28)" rx="2" ry="2" /> +<text x="957.00" y="2559.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="851.2" y="2437" width="0.3" height="15.0" fill="rgb(243,210,36)" rx="2" ry="2" /> +<text x="854.20" y="2447.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (75 samples, 2.10%)</title><rect x="366.0" y="2069" width="24.8" height="15.0" fill="rgb(243,161,40)" rx="2" ry="2" /> +<text x="368.98" y="2079.5" >N..</text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (3 samples, 0.08%)</title><rect x="357.4" y="1685" width="1.0" height="15.0" fill="rgb(234,131,37)" rx="2" ry="2" /> +<text x="360.39" y="1695.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.03%)</title><rect x="847.6" y="2805" width="0.3" height="15.0" fill="rgb(236,160,21)" rx="2" ry="2" /> +<text x="850.57" y="2815.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="702.8" y="2405" width="0.3" height="15.0" fill="rgb(232,95,49)" rx="2" ry="2" /> +<text x="705.80" y="2415.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (1 samples, 0.03%)</title><rect x="846.6" y="2661" width="0.3" height="15.0" fill="rgb(235,134,27)" rx="2" ry="2" /> +<text x="849.58" y="2671.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (28 samples, 0.78%)</title><rect x="1128.5" y="3413" width="9.3" height="15.0" fill="rgb(254,227,38)" rx="2" ry="2" /> +<text x="1131.52" y="3423.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (5 samples, 0.14%)</title><rect x="846.6" y="3013" width="1.6" height="15.0" fill="rgb(231,163,5)" rx="2" ry="2" /> +<text x="849.58" y="3023.5" ></text> +</g> +<g > +<title>assert (1 samples, 0.03%)</title><rect x="245.0" y="3445" width="0.3" height="15.0" fill="rgb(235,185,30)" rx="2" ry="2" /> +<text x="248.01" y="3455.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.03%)</title><rect x="846.6" y="2933" width="0.3" height="15.0" fill="rgb(210,138,51)" rx="2" ry="2" /> +<text x="849.58" y="2943.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.03%)</title><rect x="662.1" y="1941" width="0.4" height="15.0" fill="rgb(214,229,21)" rx="2" ry="2" /> +<text x="665.14" y="1951.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="405.3" y="933" width="0.3" height="15.0" fill="rgb(247,46,49)" rx="2" ry="2" /> +<text x="408.32" y="943.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Stack::popI64 (1 samples, 0.03%)</title><rect x="671.1" y="2389" width="0.3" height="15.0" fill="rgb(251,27,26)" rx="2" ry="2" /> +<text x="674.06" y="2399.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="1104.4" y="2309" width="0.3" height="15.0" fill="rgb(240,148,45)" rx="2" ry="2" /> +<text x="1107.39" y="2319.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="1104.4" y="2373" width="0.3" height="15.0" fill="rgb(208,8,39)" rx="2" ry="2" /> +<text x="1107.39" y="2383.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (8 samples, 0.22%)</title><rect x="373.6" y="1909" width="2.6" height="15.0" fill="rgb(225,203,53)" rx="2" ry="2" /> +<text x="376.59" y="1919.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (2 samples, 0.06%)</title><rect x="844.9" y="2725" width="0.7" height="15.0" fill="rgb(226,198,40)" rx="2" ry="2" /> +<text x="847.92" y="2735.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.03%)</title><rect x="670.1" y="2453" width="0.3" height="15.0" fill="rgb(235,211,21)" rx="2" ry="2" /> +<text x="673.07" y="2463.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (26 samples, 0.73%)</title><rect x="667.4" y="2901" width="8.6" height="15.0" fill="rgb(242,121,45)" rx="2" ry="2" /> +<text x="670.43" y="2911.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (21 samples, 0.59%)</title><rect x="400.0" y="2181" width="7.0" height="15.0" fill="rgb(253,79,4)" rx="2" ry="2" /> +<text x="403.03" y="2191.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="319.0" y="1989" width="0.4" height="15.0" fill="rgb(225,171,28)" rx="2" ry="2" /> +<text x="322.05" y="1999.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="364.3" y="1861" width="0.4" height="15.0" fill="rgb(236,89,48)" rx="2" ry="2" /> +<text x="367.33" y="1871.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (685 samples, 19.19%)</title><rect x="422.2" y="1237" width="226.4" height="15.0" fill="rgb(224,180,30)" rx="2" ry="2" /> +<text x="425.17" y="1247.5" >Nsfisis\Waddiwasi\Execution\R..</text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\MemInst::storeI64 (1 samples, 0.03%)</title><rect x="777.2" y="2181" width="0.3" height="15.0" fill="rgb(222,114,16)" rx="2" ry="2" /> +<text x="780.17" y="2191.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="701.5" y="2149" width="0.3" height="15.0" fill="rgb(217,133,50)" rx="2" ry="2" /> +<text x="704.47" y="2159.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (2 samples, 0.06%)</title><rect x="386.8" y="1605" width="0.7" height="15.0" fill="rgb(235,138,26)" rx="2" ry="2" /> +<text x="389.81" y="1615.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.03%)</title><rect x="783.8" y="2677" width="0.3" height="15.0" fill="rgb(230,59,4)" rx="2" ry="2" /> +<text x="786.78" y="2687.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (1 samples, 0.03%)</title><rect x="410.9" y="2165" width="0.4" height="15.0" fill="rgb(247,8,53)" rx="2" ry="2" /> +<text x="413.94" y="2175.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="1087.5" y="3461" width="0.4" height="15.0" fill="rgb(215,15,24)" rx="2" ry="2" /> +<text x="1090.54" y="3471.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (3 samples, 0.08%)</title><rect x="848.6" y="3237" width="1.0" height="15.0" fill="rgb(215,141,50)" rx="2" ry="2" /> +<text x="851.56" y="3247.5" ></text> +</g> +<g > +<title><unknown> (1 samples, 0.03%)</title><rect x="870.4" y="1509" width="0.3" height="15.0" fill="rgb(243,14,7)" rx="2" ry="2" /> +<text x="873.38" y="1519.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (3 samples, 0.08%)</title><rect x="296.9" y="1781" width="1.0" height="15.0" fill="rgb(241,95,28)" rx="2" ry="2" /> +<text x="299.90" y="1791.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="941.4" y="2437" width="0.4" height="15.0" fill="rgb(228,204,32)" rx="2" ry="2" /> +<text x="944.44" y="2447.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (3 samples, 0.08%)</title><rect x="842.9" y="2773" width="1.0" height="15.0" fill="rgb(209,54,13)" rx="2" ry="2" /> +<text x="845.94" y="2783.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Stack::currentFrame (1 samples, 0.03%)</title><rect x="841.3" y="2389" width="0.3" height="15.0" fill="rgb(216,196,40)" rx="2" ry="2" /> +<text x="844.29" y="2399.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.03%)</title><rect x="346.2" y="1877" width="0.3" height="15.0" fill="rgb(248,34,27)" rx="2" ry="2" /> +<text x="349.15" y="1887.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (2 samples, 0.06%)</title><rect x="889.9" y="2549" width="0.6" height="15.0" fill="rgb(226,23,43)" rx="2" ry="2" /> +<text x="892.88" y="2559.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (21 samples, 0.59%)</title><rect x="278.4" y="2021" width="6.9" height="15.0" fill="rgb(212,117,16)" rx="2" ry="2" /> +<text x="281.39" y="2031.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (2 samples, 0.06%)</title><rect x="1104.1" y="3061" width="0.6" height="15.0" fill="rgb(236,126,1)" rx="2" ry="2" /> +<text x="1107.06" y="3071.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (686 samples, 19.22%)</title><rect x="422.2" y="1829" width="226.7" height="15.0" fill="rgb(233,69,11)" rx="2" ry="2" /> +<text x="425.17" y="1839.5" >Nsfisis\Waddiwasi\Execution\Ru..</text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="314.1" y="2021" width="0.3" height="15.0" fill="rgb(235,65,29)" rx="2" ry="2" /> +<text x="317.09" y="2031.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="307.5" y="1637" width="0.3" height="15.0" fill="rgb(246,67,18)" rx="2" ry="2" /> +<text x="310.48" y="1647.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="358.4" y="1477" width="0.3" height="15.0" fill="rgb(253,6,9)" rx="2" ry="2" /> +<text x="361.38" y="1487.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (3 samples, 0.08%)</title><rect x="298.2" y="1781" width="1.0" height="15.0" fill="rgb(235,110,24)" rx="2" ry="2" /> +<text x="301.22" y="1791.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.03%)</title><rect x="307.5" y="1589" width="0.3" height="15.0" fill="rgb(245,109,50)" rx="2" ry="2" /> +<text x="310.48" y="1599.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="1137.1" y="3237" width="0.3" height="15.0" fill="rgb(242,173,30)" rx="2" ry="2" /> +<text x="1140.11" y="3247.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="246.0" y="2981" width="0.3" height="15.0" fill="rgb(210,118,27)" rx="2" ry="2" /> +<text x="249.00" y="2991.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (2 samples, 0.06%)</title><rect x="954.7" y="2645" width="0.6" height="15.0" fill="rgb(248,219,3)" rx="2" ry="2" /> +<text x="957.66" y="2655.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (12 samples, 0.34%)</title><rect x="281.0" y="2005" width="4.0" height="15.0" fill="rgb(238,167,22)" rx="2" ry="2" /> +<text x="284.04" y="2015.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.03%)</title><rect x="954.0" y="2645" width="0.3" height="15.0" fill="rgb(251,47,9)" rx="2" ry="2" /> +<text x="957.00" y="2655.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="265.2" y="1701" width="0.3" height="15.0" fill="rgb(230,33,43)" rx="2" ry="2" /> +<text x="268.17" y="1711.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="299.9" y="1605" width="0.3" height="15.0" fill="rgb(242,202,22)" rx="2" ry="2" /> +<text x="302.88" y="1615.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (2 samples, 0.06%)</title><rect x="954.7" y="293" width="0.6" height="15.0" fill="rgb(212,80,36)" rx="2" ry="2" /> +<text x="957.66" y="303.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (9 samples, 0.25%)</title><rect x="875.0" y="2277" width="3.0" height="15.0" fill="rgb(233,6,15)" rx="2" ry="2" /> +<text x="878.00" y="2287.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (3 samples, 0.08%)</title><rect x="848.6" y="3413" width="1.0" height="15.0" fill="rgb(247,220,47)" rx="2" ry="2" /> +<text x="851.56" y="3423.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (1 samples, 0.03%)</title><rect x="266.8" y="1701" width="0.4" height="15.0" fill="rgb(208,3,17)" rx="2" ry="2" /> +<text x="269.82" y="1711.5" ></text> +</g> +<g > +<title><unknown> (1 samples, 0.03%)</title><rect x="870.4" y="869" width="0.3" height="15.0" fill="rgb(247,221,53)" rx="2" ry="2" /> +<text x="873.38" y="879.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (2 samples, 0.06%)</title><rect x="1104.1" y="2949" width="0.6" height="15.0" fill="rgb(233,184,16)" rx="2" ry="2" /> +<text x="1107.06" y="2959.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (2 samples, 0.06%)</title><rect x="661.8" y="2037" width="0.7" height="15.0" fill="rgb(237,78,36)" rx="2" ry="2" /> +<text x="664.81" y="2047.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (2 samples, 0.06%)</title><rect x="405.0" y="1157" width="0.6" height="15.0" fill="rgb(242,22,28)" rx="2" ry="2" /> +<text x="407.99" y="1167.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.03%)</title><rect x="314.1" y="1845" width="0.3" height="15.0" fill="rgb(225,102,26)" rx="2" ry="2" /> +<text x="317.09" y="1855.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.03%)</title><rect x="254.3" y="2229" width="0.3" height="15.0" fill="rgb(221,126,17)" rx="2" ry="2" /> +<text x="257.26" y="2239.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Stack::pushI32 (1 samples, 0.03%)</title><rect x="878.3" y="2421" width="0.3" height="15.0" fill="rgb(231,138,20)" rx="2" ry="2" /> +<text x="881.31" y="2431.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (1 samples, 0.03%)</title><rect x="652.2" y="2437" width="0.4" height="15.0" fill="rgb(232,75,35)" rx="2" ry="2" /> +<text x="655.22" y="2447.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (8 samples, 0.22%)</title><rect x="396.1" y="2117" width="2.6" height="15.0" fill="rgb(252,89,46)" rx="2" ry="2" /> +<text x="399.06" y="2127.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.03%)</title><rect x="955.0" y="149" width="0.3" height="15.0" fill="rgb(205,9,46)" rx="2" ry="2" /> +<text x="957.99" y="159.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Stack::popValue (2 samples, 0.06%)</title><rect x="244.3" y="3445" width="0.7" height="15.0" fill="rgb(205,14,22)" rx="2" ry="2" /> +<text x="247.35" y="3455.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="391.8" y="2117" width="0.3" height="15.0" fill="rgb(211,215,3)" rx="2" ry="2" /> +<text x="394.76" y="2127.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1,253 samples, 35.10%)</title><rect x="252.3" y="2741" width="414.1" height="15.0" fill="rgb(211,189,35)" rx="2" ry="2" /> +<text x="255.28" y="2751.5" >Nsfisis\Waddiwasi\Execution\Runtime::execInstrs</text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.03%)</title><rect x="369.6" y="1781" width="0.3" height="15.0" fill="rgb(241,35,28)" rx="2" ry="2" /> +<text x="372.62" y="1791.5" ></text> +</g> +<g > +<title>Composer\Autoload\ClassLoader::findFileWithExtension (1 samples, 0.03%)</title><rect x="17.9" y="3445" width="0.4" height="15.0" fill="rgb(218,164,16)" rx="2" ry="2" /> +<text x="20.93" y="3455.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="408.6" y="2277" width="0.4" height="15.0" fill="rgb(250,188,11)" rx="2" ry="2" /> +<text x="411.62" y="2287.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\StackEntry::Value (1 samples, 0.03%)</title><rect x="775.2" y="2181" width="0.3" height="15.0" fill="rgb(230,127,35)" rx="2" ry="2" /> +<text x="778.18" y="2191.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="312.4" y="1477" width="0.4" height="15.0" fill="rgb(220,219,49)" rx="2" ry="2" /> +<text x="315.44" y="1487.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="655.9" y="2085" width="0.3" height="15.0" fill="rgb(207,176,6)" rx="2" ry="2" /> +<text x="658.86" y="2095.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.03%)</title><rect x="1077.3" y="3253" width="0.3" height="15.0" fill="rgb(233,112,52)" rx="2" ry="2" /> +<text x="1080.29" y="3263.5" ></text> +</g> +<g > +<title>print_r (1 samples, 0.03%)</title><rect x="939.1" y="2485" width="0.4" height="15.0" fill="rgb(251,171,3)" rx="2" ry="2" /> +<text x="942.13" y="2495.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (230 samples, 6.44%)</title><rect x="707.4" y="2709" width="76.0" height="15.0" fill="rgb(233,47,6)" rx="2" ry="2" /> +<text x="710.42" y="2719.5" >Nsfisis\..</text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (12 samples, 0.34%)</title><rect x="263.8" y="2005" width="4.0" height="15.0" fill="rgb(229,33,24)" rx="2" ry="2" /> +<text x="266.85" y="2015.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (9 samples, 0.25%)</title><rect x="875.0" y="2325" width="3.0" height="15.0" fill="rgb(245,228,54)" rx="2" ry="2" /> +<text x="878.00" y="2335.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (4 samples, 0.11%)</title><rect x="400.0" y="1941" width="1.4" height="15.0" fill="rgb(226,207,2)" rx="2" ry="2" /> +<text x="403.03" y="1951.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.03%)</title><rect x="316.4" y="1301" width="0.3" height="15.0" fill="rgb(237,19,28)" rx="2" ry="2" /> +<text x="319.40" y="1311.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::deactivateFrame (1 samples, 0.03%)</title><rect x="833.0" y="2261" width="0.4" height="15.0" fill="rgb(227,217,53)" rx="2" ry="2" /> +<text x="836.03" y="2271.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Stack::pushValue (1 samples, 0.03%)</title><rect x="952.3" y="2389" width="0.4" height="15.0" fill="rgb(245,162,36)" rx="2" ry="2" /> +<text x="955.35" y="2399.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.03%)</title><rect x="697.5" y="2005" width="0.3" height="15.0" fill="rgb(238,5,24)" rx="2" ry="2" /> +<text x="700.51" y="2015.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (2 samples, 0.06%)</title><rect x="298.6" y="1749" width="0.6" height="15.0" fill="rgb(254,87,20)" rx="2" ry="2" /> +<text x="301.55" y="1759.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="341.2" y="1861" width="0.3" height="15.0" fill="rgb(240,102,51)" rx="2" ry="2" /> +<text x="344.19" y="1871.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Val::Num (1 samples, 0.03%)</title><rect x="1168.2" y="3525" width="0.3" height="15.0" fill="rgb(205,202,10)" rx="2" ry="2" /> +<text x="1171.18" y="3535.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (3 samples, 0.08%)</title><rect x="305.8" y="1749" width="1.0" height="15.0" fill="rgb(225,130,4)" rx="2" ry="2" /> +<text x="308.83" y="1759.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (4 samples, 0.11%)</title><rect x="283.7" y="1797" width="1.3" height="15.0" fill="rgb(207,138,6)" rx="2" ry="2" /> +<text x="286.68" y="1807.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (1 samples, 0.03%)</title><rect x="371.9" y="1685" width="0.4" height="15.0" fill="rgb(228,5,50)" rx="2" ry="2" /> +<text x="374.93" y="1695.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (2 samples, 0.06%)</title><rect x="419.9" y="2293" width="0.6" height="15.0" fill="rgb(225,30,12)" rx="2" ry="2" /> +<text x="422.86" y="2303.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (172 samples, 4.82%)</title><rect x="784.8" y="2437" width="56.8" height="15.0" fill="rgb(224,89,14)" rx="2" ry="2" /> +<text x="787.77" y="2447.5" >Nsfisi..</text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (2 samples, 0.06%)</title><rect x="954.7" y="1173" width="0.6" height="15.0" fill="rgb(236,23,32)" rx="2" ry="2" /> +<text x="957.66" y="1183.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (3 samples, 0.08%)</title><rect x="848.6" y="3365" width="1.0" height="15.0" fill="rgb(234,198,9)" rx="2" ry="2" /> +<text x="851.56" y="3375.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.03%)</title><rect x="954.3" y="3253" width="0.4" height="15.0" fill="rgb(210,28,37)" rx="2" ry="2" /> +<text x="957.33" y="3263.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (3 samples, 0.08%)</title><rect x="305.8" y="1829" width="1.0" height="15.0" fill="rgb(217,195,49)" rx="2" ry="2" /> +<text x="308.83" y="1839.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.03%)</title><rect x="954.3" y="2357" width="0.4" height="15.0" fill="rgb(240,143,13)" rx="2" ry="2" /> +<text x="957.33" y="2367.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Stack::pushBool (1 samples, 0.03%)</title><rect x="249.0" y="2965" width="0.3" height="15.0" fill="rgb(233,179,3)" rx="2" ry="2" /> +<text x="251.97" y="2975.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (2 samples, 0.06%)</title><rect x="699.2" y="2453" width="0.6" height="15.0" fill="rgb(231,122,35)" rx="2" ry="2" /> +<text x="702.16" y="2463.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.03%)</title><rect x="304.8" y="1685" width="0.4" height="15.0" fill="rgb(246,115,11)" rx="2" ry="2" /> +<text x="307.83" y="1695.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="841.6" y="2405" width="0.3" height="15.0" fill="rgb(216,42,4)" rx="2" ry="2" /> +<text x="844.62" y="2415.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (40 samples, 1.12%)</title><rect x="329.0" y="2101" width="13.2" height="15.0" fill="rgb(213,31,42)" rx="2" ry="2" /> +<text x="331.96" y="2111.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (2 samples, 0.06%)</title><rect x="268.8" y="2037" width="0.7" height="15.0" fill="rgb(229,16,9)" rx="2" ry="2" /> +<text x="271.81" y="2047.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (1 samples, 0.03%)</title><rect x="1121.6" y="3477" width="0.3" height="15.0" fill="rgb(229,40,12)" rx="2" ry="2" /> +<text x="1124.58" y="3487.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (25 samples, 0.70%)</title><rect x="400.0" y="2245" width="8.3" height="15.0" fill="rgb(218,0,42)" rx="2" ry="2" /> +<text x="403.03" y="2255.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (709 samples, 19.86%)</title><rect x="417.2" y="2341" width="234.4" height="15.0" fill="rgb(237,43,7)" rx="2" ry="2" /> +<text x="420.22" y="2351.5" >Nsfisis\Waddiwasi\Execution\Run..</text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.03%)</title><rect x="391.1" y="1973" width="0.3" height="15.0" fill="rgb(209,54,25)" rx="2" ry="2" /> +<text x="394.10" y="1983.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (3 samples, 0.08%)</title><rect x="650.2" y="2213" width="1.0" height="15.0" fill="rgb(212,128,13)" rx="2" ry="2" /> +<text x="653.24" y="2223.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (13 samples, 0.36%)</title><rect x="671.7" y="2741" width="4.3" height="15.0" fill="rgb(242,152,42)" rx="2" ry="2" /> +<text x="674.73" y="2751.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (19 samples, 0.53%)</title><rect x="410.9" y="2229" width="6.3" height="15.0" fill="rgb(215,183,5)" rx="2" ry="2" /> +<text x="413.94" y="2239.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doLoadI32 (1 samples, 0.03%)</title><rect x="400.4" y="1589" width="0.3" height="15.0" fill="rgb(236,203,15)" rx="2" ry="2" /> +<text x="403.36" y="1599.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::instantiate (694 samples, 19.44%)</title><rect x="16.6" y="3525" width="229.4" height="15.0" fill="rgb(227,128,32)" rx="2" ry="2" /> +<text x="19.61" y="3535.5" >Nsfisis\Waddiwasi\Execution\Ru..</text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.03%)</title><rect x="319.0" y="2037" width="0.4" height="15.0" fill="rgb(243,59,15)" rx="2" ry="2" /> +<text x="322.05" y="2047.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (3 samples, 0.08%)</title><rect x="331.6" y="1797" width="1.0" height="15.0" fill="rgb(252,19,47)" rx="2" ry="2" /> +<text x="334.61" y="1807.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="401.0" y="1829" width="0.4" height="15.0" fill="rgb(223,67,38)" rx="2" ry="2" /> +<text x="404.02" y="1839.5" ></text> +</g> +<g > +<title>assert (1 samples, 0.03%)</title><rect x="1175.1" y="3525" width="0.4" height="15.0" fill="rgb(217,195,13)" rx="2" ry="2" /> +<text x="1178.13" y="3535.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.03%)</title><rect x="955.3" y="2613" width="0.4" height="15.0" fill="rgb(231,192,48)" rx="2" ry="2" /> +<text x="958.32" y="2623.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (2 samples, 0.06%)</title><rect x="670.7" y="2709" width="0.7" height="15.0" fill="rgb(222,76,6)" rx="2" ry="2" /> +<text x="673.73" y="2719.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (2 samples, 0.06%)</title><rect x="954.7" y="1957" width="0.6" height="15.0" fill="rgb(243,102,8)" rx="2" ry="2" /> +<text x="957.66" y="1967.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doStoreI32 (1 samples, 0.03%)</title><rect x="808.6" y="2389" width="0.3" height="15.0" fill="rgb(247,183,23)" rx="2" ry="2" /> +<text x="811.57" y="2399.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.03%)</title><rect x="313.4" y="2069" width="0.4" height="15.0" fill="rgb(205,219,9)" rx="2" ry="2" /> +<text x="316.43" y="2079.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="346.2" y="1925" width="0.3" height="15.0" fill="rgb(225,56,21)" rx="2" ry="2" /> +<text x="349.15" y="1935.5" ></text> +</g> +<g > +<title><unknown> (1 samples, 0.03%)</title><rect x="1096.1" y="3365" width="0.4" height="15.0" fill="rgb(231,16,50)" rx="2" ry="2" /> +<text x="1099.13" y="3375.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (21 samples, 0.59%)</title><rect x="305.8" y="1957" width="7.0" height="15.0" fill="rgb(241,221,18)" rx="2" ry="2" /> +<text x="308.83" y="1967.5" ></text> +</g> +<g > +<title>{closure}(/home/ken/src/php-waddiwasi/examples/php-on-wasm/php-wasm.php:356-361) (180 samples, 5.04%)</title><rect x="784.4" y="2997" width="59.5" height="15.0" fill="rgb(254,163,20)" rx="2" ry="2" /> +<text x="787.44" y="3007.5" >{closu..</text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (10 samples, 0.28%)</title><rect x="875.0" y="2341" width="3.3" height="15.0" fill="rgb(233,28,21)" rx="2" ry="2" /> +<text x="878.00" y="2351.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="841.0" y="2341" width="0.3" height="15.0" fill="rgb(249,80,45)" rx="2" ry="2" /> +<text x="843.96" y="2351.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (3 samples, 0.08%)</title><rect x="844.9" y="2837" width="1.0" height="15.0" fill="rgb(238,30,31)" rx="2" ry="2" /> +<text x="847.92" y="2847.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="267.2" y="1797" width="0.3" height="15.0" fill="rgb(226,22,25)" rx="2" ry="2" /> +<text x="270.15" y="1807.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (2 samples, 0.06%)</title><rect x="954.7" y="2533" width="0.6" height="15.0" fill="rgb(211,131,15)" rx="2" ry="2" /> +<text x="957.66" y="2543.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::invokeByFuncAddr (1 samples, 0.03%)</title><rect x="667.1" y="2981" width="0.3" height="15.0" fill="rgb(249,162,18)" rx="2" ry="2" /> +<text x="670.10" y="2991.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (1 samples, 0.03%)</title><rect x="851.2" y="2197" width="0.3" height="15.0" fill="rgb(221,12,14)" rx="2" ry="2" /> +<text x="854.20" y="2207.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="315.4" y="1669" width="0.3" height="15.0" fill="rgb(247,214,20)" rx="2" ry="2" /> +<text x="318.41" y="1679.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="313.4" y="2085" width="0.4" height="15.0" fill="rgb(210,101,52)" rx="2" ry="2" /> +<text x="316.43" y="2095.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (2 samples, 0.06%)</title><rect x="405.0" y="1061" width="0.6" height="15.0" fill="rgb(217,111,52)" rx="2" ry="2" /> +<text x="407.99" y="1071.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.03%)</title><rect x="246.0" y="3157" width="0.3" height="15.0" fill="rgb(218,101,9)" rx="2" ry="2" /> +<text x="249.00" y="3167.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (6 samples, 0.17%)</title><rect x="662.8" y="2261" width="2.0" height="15.0" fill="rgb(231,183,52)" rx="2" ry="2" /> +<text x="665.80" y="2271.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (5 samples, 0.14%)</title><rect x="339.9" y="2021" width="1.6" height="15.0" fill="rgb(245,197,26)" rx="2" ry="2" /> +<text x="342.87" y="2031.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (2 samples, 0.06%)</title><rect x="407.0" y="2197" width="0.6" height="15.0" fill="rgb(242,147,15)" rx="2" ry="2" /> +<text x="409.97" y="2207.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.03%)</title><rect x="325.3" y="2133" width="0.4" height="15.0" fill="rgb(232,13,8)" rx="2" ry="2" /> +<text x="328.33" y="2143.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (1,807 samples, 50.62%)</title><rect x="249.3" y="3285" width="597.3" height="15.0" fill="rgb(238,160,6)" rx="2" ry="2" /> +<text x="252.31" y="3295.5" >Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc</text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (2 samples, 0.06%)</title><rect x="363.3" y="1797" width="0.7" height="15.0" fill="rgb(225,202,20)" rx="2" ry="2" /> +<text x="366.34" y="1807.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (17 samples, 0.48%)</title><rect x="411.6" y="2053" width="5.6" height="15.0" fill="rgb(253,147,27)" rx="2" ry="2" /> +<text x="414.60" y="2063.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (1 samples, 0.03%)</title><rect x="400.7" y="1861" width="0.3" height="15.0" fill="rgb(222,170,41)" rx="2" ry="2" /> +<text x="403.69" y="1871.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (6 samples, 0.17%)</title><rect x="846.6" y="3173" width="2.0" height="15.0" fill="rgb(213,138,40)" rx="2" ry="2" /> +<text x="849.58" y="3183.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="364.3" y="1829" width="0.4" height="15.0" fill="rgb(251,139,11)" rx="2" ry="2" /> +<text x="367.33" y="1839.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (1 samples, 0.03%)</title><rect x="662.1" y="1957" width="0.4" height="15.0" fill="rgb(247,202,21)" rx="2" ry="2" /> +<text x="665.14" y="1967.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="407.6" y="2149" width="0.4" height="15.0" fill="rgb(244,158,28)" rx="2" ry="2" /> +<text x="410.63" y="2159.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.03%)</title><rect x="701.5" y="2101" width="0.3" height="15.0" fill="rgb(235,152,53)" rx="2" ry="2" /> +<text x="704.47" y="2111.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (4 samples, 0.11%)</title><rect x="649.9" y="2277" width="1.3" height="15.0" fill="rgb(232,190,41)" rx="2" ry="2" /> +<text x="652.91" y="2287.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (1 samples, 0.03%)</title><rect x="838.6" y="2245" width="0.4" height="15.0" fill="rgb(220,73,46)" rx="2" ry="2" /> +<text x="841.64" y="2255.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (18 samples, 0.50%)</title><rect x="383.8" y="1877" width="6.0" height="15.0" fill="rgb(232,80,29)" rx="2" ry="2" /> +<text x="386.83" y="1887.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (2 samples, 0.06%)</title><rect x="263.2" y="1909" width="0.6" height="15.0" fill="rgb(252,116,35)" rx="2" ry="2" /> +<text x="266.19" y="1919.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (58 samples, 1.62%)</title><rect x="677.7" y="2725" width="19.1" height="15.0" fill="rgb(238,140,49)" rx="2" ry="2" /> +<text x="680.68" y="2735.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="706.8" y="2597" width="0.3" height="15.0" fill="rgb(210,170,5)" rx="2" ry="2" /> +<text x="709.76" y="2607.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="307.1" y="1573" width="0.4" height="15.0" fill="rgb(211,148,26)" rx="2" ry="2" /> +<text x="310.15" y="1583.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.03%)</title><rect x="843.3" y="2229" width="0.3" height="15.0" fill="rgb(237,78,4)" rx="2" ry="2" /> +<text x="846.27" y="2239.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="1159.3" y="3461" width="0.3" height="15.0" fill="rgb(251,77,6)" rx="2" ry="2" /> +<text x="1162.26" y="3471.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (2 samples, 0.06%)</title><rect x="405.0" y="1077" width="0.6" height="15.0" fill="rgb(227,29,5)" rx="2" ry="2" /> +<text x="407.99" y="1087.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (63 samples, 1.76%)</title><rect x="857.8" y="2469" width="20.8" height="15.0" fill="rgb(245,192,26)" rx="2" ry="2" /> +<text x="860.82" y="2479.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (230 samples, 6.44%)</title><rect x="707.4" y="2629" width="76.0" height="15.0" fill="rgb(249,186,4)" rx="2" ry="2" /> +<text x="710.42" y="2639.5" >Nsfisis\..</text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (246 samples, 6.89%)</title><rect x="703.1" y="2837" width="81.3" height="15.0" fill="rgb(206,196,43)" rx="2" ry="2" /> +<text x="706.13" y="2847.5" >Nsfisis\W..</text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (9 samples, 0.25%)</title><rect x="264.5" y="1845" width="3.0" height="15.0" fill="rgb(210,165,5)" rx="2" ry="2" /> +<text x="267.51" y="1855.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Val::NumF64 (1 samples, 0.03%)</title><rect x="846.2" y="3029" width="0.4" height="15.0" fill="rgb(207,152,29)" rx="2" ry="2" /> +<text x="849.25" y="3039.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="251.6" y="2661" width="0.3" height="15.0" fill="rgb(208,9,10)" rx="2" ry="2" /> +<text x="254.62" y="2671.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\ControlFlowResults\Br::__construct (1 samples, 0.03%)</title><rect x="1149.3" y="3509" width="0.4" height="15.0" fill="rgb(241,116,31)" rx="2" ry="2" /> +<text x="1152.34" y="3519.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\BinaryFormat\Decoder::decodeExpr (9 samples, 0.25%)</title><rect x="11.0" y="3445" width="3.0" height="15.0" fill="rgb(233,108,23)" rx="2" ry="2" /> +<text x="13.99" y="3455.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (1 samples, 0.03%)</title><rect x="702.8" y="2565" width="0.3" height="15.0" fill="rgb(232,176,4)" rx="2" ry="2" /> +<text x="705.80" y="2575.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="652.2" y="2373" width="0.4" height="15.0" fill="rgb(212,93,47)" rx="2" ry="2" /> +<text x="655.22" y="2383.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="695.9" y="2245" width="0.3" height="15.0" fill="rgb(243,39,45)" rx="2" ry="2" /> +<text x="698.85" y="2255.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (2 samples, 0.06%)</title><rect x="842.3" y="2501" width="0.6" height="15.0" fill="rgb(236,164,53)" rx="2" ry="2" /> +<text x="845.28" y="2511.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.03%)</title><rect x="1104.4" y="2453" width="0.3" height="15.0" fill="rgb(228,178,48)" rx="2" ry="2" /> +<text x="1107.39" y="2463.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (2 samples, 0.06%)</title><rect x="839.0" y="2309" width="0.6" height="15.0" fill="rgb(227,127,46)" rx="2" ry="2" /> +<text x="841.97" y="2319.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (2 samples, 0.06%)</title><rect x="316.1" y="1541" width="0.6" height="15.0" fill="rgb(231,27,19)" rx="2" ry="2" /> +<text x="319.07" y="1551.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (4 samples, 0.11%)</title><rect x="311.4" y="1797" width="1.4" height="15.0" fill="rgb(216,200,54)" rx="2" ry="2" /> +<text x="314.45" y="1807.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (4 samples, 0.11%)</title><rect x="370.3" y="1749" width="1.3" height="15.0" fill="rgb(230,45,28)" rx="2" ry="2" /> +<text x="373.28" y="1759.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (1 samples, 0.03%)</title><rect x="1077.3" y="3493" width="0.3" height="15.0" fill="rgb(231,61,25)" rx="2" ry="2" /> +<text x="1080.29" y="3503.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (2 samples, 0.06%)</title><rect x="954.7" y="469" width="0.6" height="15.0" fill="rgb(216,140,1)" rx="2" ry="2" /> +<text x="957.66" y="479.5" ></text> +</g> +<g > +<title>{closure}(/home/ken/src/php-waddiwasi/examples/php-on-wasm/php-wasm.php:516-533) (5 samples, 0.14%)</title><rect x="844.3" y="2997" width="1.6" height="15.0" fill="rgb(239,32,6)" rx="2" ry="2" /> +<text x="847.26" y="3007.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (2 samples, 0.06%)</title><rect x="697.2" y="2261" width="0.6" height="15.0" fill="rgb(216,124,15)" rx="2" ry="2" /> +<text x="700.18" y="2271.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Stack::push (1 samples, 0.03%)</title><rect x="1141.1" y="3493" width="0.3" height="15.0" fill="rgb(210,127,2)" rx="2" ry="2" /> +<text x="1144.08" y="3503.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.03%)</title><rect x="363.0" y="1813" width="0.3" height="15.0" fill="rgb(234,155,19)" rx="2" ry="2" /> +<text x="366.01" y="1823.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="954.0" y="2629" width="0.3" height="15.0" fill="rgb(210,195,46)" rx="2" ry="2" /> +<text x="957.00" y="2639.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="371.9" y="1637" width="0.4" height="15.0" fill="rgb(206,190,28)" rx="2" ry="2" /> +<text x="374.93" y="1647.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (2 samples, 0.06%)</title><rect x="421.2" y="2053" width="0.6" height="15.0" fill="rgb(231,74,30)" rx="2" ry="2" /> +<text x="424.18" y="2063.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.03%)</title><rect x="847.6" y="2517" width="0.3" height="15.0" fill="rgb(212,8,16)" rx="2" ry="2" /> +<text x="850.57" y="2527.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (2 samples, 0.06%)</title><rect x="842.3" y="2629" width="0.6" height="15.0" fill="rgb(222,101,17)" rx="2" ry="2" /> +<text x="845.28" y="2639.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (3 samples, 0.08%)</title><rect x="675.0" y="2677" width="1.0" height="15.0" fill="rgb(254,3,32)" rx="2" ry="2" /> +<text x="678.03" y="2687.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (49 samples, 1.37%)</title><rect x="858.1" y="2453" width="16.2" height="15.0" fill="rgb(245,159,2)" rx="2" ry="2" /> +<text x="861.15" y="2463.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="1108.0" y="3205" width="0.4" height="15.0" fill="rgb(231,44,8)" rx="2" ry="2" /> +<text x="1111.03" y="3215.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (2 samples, 0.06%)</title><rect x="954.7" y="869" width="0.6" height="15.0" fill="rgb(253,152,30)" rx="2" ry="2" /> +<text x="957.66" y="879.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (2 samples, 0.06%)</title><rect x="954.7" y="229" width="0.6" height="15.0" fill="rgb(250,3,21)" rx="2" ry="2" /> +<text x="957.66" y="239.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (2 samples, 0.06%)</title><rect x="697.2" y="2373" width="0.6" height="15.0" fill="rgb(236,202,48)" rx="2" ry="2" /> +<text x="700.18" y="2383.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (1 samples, 0.03%)</title><rect x="301.5" y="1701" width="0.4" height="15.0" fill="rgb(233,163,26)" rx="2" ry="2" /> +<text x="304.53" y="1711.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (1 samples, 0.03%)</title><rect x="695.9" y="2341" width="0.3" height="15.0" fill="rgb(223,72,49)" rx="2" ry="2" /> +<text x="698.85" y="2351.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (2 samples, 0.06%)</title><rect x="954.7" y="2245" width="0.6" height="15.0" fill="rgb(222,143,48)" rx="2" ry="2" /> +<text x="957.66" y="2255.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (316 samples, 8.85%)</title><rect x="849.6" y="3077" width="104.4" height="15.0" fill="rgb(239,207,41)" rx="2" ry="2" /> +<text x="852.55" y="3087.5" >Nsfisis\Wadd..</text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (2 samples, 0.06%)</title><rect x="954.7" y="1669" width="0.6" height="15.0" fill="rgb(233,81,29)" rx="2" ry="2" /> +<text x="957.66" y="1679.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (1 samples, 0.03%)</title><rect x="256.9" y="2133" width="0.3" height="15.0" fill="rgb(252,218,51)" rx="2" ry="2" /> +<text x="259.91" y="2143.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (2 samples, 0.06%)</title><rect x="357.7" y="1605" width="0.7" height="15.0" fill="rgb(215,208,22)" rx="2" ry="2" /> +<text x="360.72" y="1615.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (62 samples, 1.74%)</title><rect x="1118.3" y="3493" width="20.5" height="15.0" fill="rgb(228,36,41)" rx="2" ry="2" /> +<text x="1121.27" y="3503.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1,807 samples, 50.62%)</title><rect x="249.3" y="3125" width="597.3" height="15.0" fill="rgb(207,196,22)" rx="2" ry="2" /> +<text x="252.31" y="3135.5" >Nsfisis\Waddiwasi\Execution\Runtime::execInstrs</text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (2 samples, 0.06%)</title><rect x="670.7" y="2453" width="0.7" height="15.0" fill="rgb(239,92,8)" rx="2" ry="2" /> +<text x="673.73" y="2463.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (5 samples, 0.14%)</title><rect x="247.7" y="3125" width="1.6" height="15.0" fill="rgb(251,111,34)" rx="2" ry="2" /> +<text x="250.65" y="3135.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (3 samples, 0.08%)</title><rect x="1109.0" y="3493" width="1.0" height="15.0" fill="rgb(213,135,30)" rx="2" ry="2" /> +<text x="1112.02" y="3503.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (1 samples, 0.03%)</title><rect x="330.9" y="2005" width="0.4" height="15.0" fill="rgb(245,83,16)" rx="2" ry="2" /> +<text x="333.95" y="2015.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.03%)</title><rect x="848.2" y="2773" width="0.4" height="15.0" fill="rgb(215,55,4)" rx="2" ry="2" /> +<text x="851.23" y="2783.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.03%)</title><rect x="652.2" y="2357" width="0.4" height="15.0" fill="rgb(217,87,21)" rx="2" ry="2" /> +<text x="655.22" y="2367.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doLoadI32 (1 samples, 0.03%)</title><rect x="382.2" y="1909" width="0.3" height="15.0" fill="rgb(249,118,12)" rx="2" ry="2" /> +<text x="385.18" y="1919.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (129 samples, 3.61%)</title><rect x="349.1" y="2117" width="42.7" height="15.0" fill="rgb(232,14,30)" rx="2" ry="2" /> +<text x="352.13" y="2127.5" >Nsfi..</text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="701.5" y="2309" width="0.3" height="15.0" fill="rgb(228,72,28)" rx="2" ry="2" /> +<text x="704.47" y="2319.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (468 samples, 13.11%)</title><rect x="254.3" y="2341" width="154.7" height="15.0" fill="rgb(246,65,6)" rx="2" ry="2" /> +<text x="257.26" y="2351.5" >Nsfisis\Waddiwasi\E..</text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (2 samples, 0.06%)</title><rect x="307.5" y="1717" width="0.6" height="15.0" fill="rgb(253,197,50)" rx="2" ry="2" /> +<text x="310.48" y="1727.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (686 samples, 19.22%)</title><rect x="422.2" y="1909" width="226.7" height="15.0" fill="rgb(239,206,23)" rx="2" ry="2" /> +<text x="425.17" y="1919.5" >Nsfisis\Waddiwasi\Execution\Ru..</text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (1 samples, 0.03%)</title><rect x="315.4" y="1637" width="0.3" height="15.0" fill="rgb(232,131,20)" rx="2" ry="2" /> +<text x="318.41" y="1647.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.03%)</title><rect x="262.2" y="1909" width="0.3" height="15.0" fill="rgb(209,211,52)" rx="2" ry="2" /> +<text x="265.20" y="1919.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (1 samples, 0.03%)</title><rect x="846.6" y="2949" width="0.3" height="15.0" fill="rgb(243,36,12)" rx="2" ry="2" /> +<text x="849.58" y="2959.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (2 samples, 0.06%)</title><rect x="954.7" y="2629" width="0.6" height="15.0" fill="rgb(225,110,52)" rx="2" ry="2" /> +<text x="957.66" y="2639.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="954.0" y="2789" width="0.3" height="15.0" fill="rgb(232,199,44)" rx="2" ry="2" /> +<text x="957.00" y="2799.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (5 samples, 0.14%)</title><rect x="854.8" y="2597" width="1.7" height="15.0" fill="rgb(211,45,46)" rx="2" ry="2" /> +<text x="857.84" y="2607.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="847.6" y="2789" width="0.3" height="15.0" fill="rgb(218,180,20)" rx="2" ry="2" /> +<text x="850.57" y="2799.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="783.1" y="2213" width="0.3" height="15.0" fill="rgb(217,222,14)" rx="2" ry="2" /> +<text x="786.11" y="2223.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.03%)</title><rect x="790.1" y="2037" width="0.3" height="15.0" fill="rgb(206,138,50)" rx="2" ry="2" /> +<text x="793.06" y="2047.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="661.8" y="1893" width="0.3" height="15.0" fill="rgb(254,200,20)" rx="2" ry="2" /> +<text x="664.81" y="1903.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.03%)</title><rect x="401.0" y="1717" width="0.4" height="15.0" fill="rgb(238,27,36)" rx="2" ry="2" /> +<text x="404.02" y="1727.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.03%)</title><rect x="313.4" y="2005" width="0.4" height="15.0" fill="rgb(210,21,7)" rx="2" ry="2" /> +<text x="316.43" y="2015.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="298.6" y="1669" width="0.3" height="15.0" fill="rgb(212,207,25)" rx="2" ry="2" /> +<text x="301.55" y="1679.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (2 samples, 0.06%)</title><rect x="316.1" y="1573" width="0.6" height="15.0" fill="rgb(215,75,38)" rx="2" ry="2" /> +<text x="319.07" y="1583.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (28 samples, 0.78%)</title><rect x="303.5" y="2005" width="9.3" height="15.0" fill="rgb(206,99,24)" rx="2" ry="2" /> +<text x="306.51" y="2015.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Stack::pushValue (1 samples, 0.03%)</title><rect x="1104.7" y="3125" width="0.4" height="15.0" fill="rgb(229,31,43)" rx="2" ry="2" /> +<text x="1107.72" y="3135.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (2 samples, 0.06%)</title><rect x="691.2" y="2309" width="0.7" height="15.0" fill="rgb(250,118,22)" rx="2" ry="2" /> +<text x="694.23" y="2319.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (2 samples, 0.06%)</title><rect x="691.2" y="2389" width="0.7" height="15.0" fill="rgb(240,102,7)" rx="2" ry="2" /> +<text x="694.23" y="2399.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (2 samples, 0.06%)</title><rect x="664.1" y="2133" width="0.7" height="15.0" fill="rgb(217,108,34)" rx="2" ry="2" /> +<text x="667.12" y="2143.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (14 samples, 0.39%)</title><rect x="412.3" y="2005" width="4.6" height="15.0" fill="rgb(219,58,41)" rx="2" ry="2" /> +<text x="415.26" y="2015.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Stack::push (1 samples, 0.03%)</title><rect x="1155.0" y="3525" width="0.3" height="15.0" fill="rgb(215,114,35)" rx="2" ry="2" /> +<text x="1157.96" y="3535.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (4 samples, 0.11%)</title><rect x="370.3" y="1701" width="1.3" height="15.0" fill="rgb(251,143,15)" rx="2" ry="2" /> +<text x="373.28" y="1711.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (2 samples, 0.06%)</title><rect x="1097.1" y="3333" width="0.7" height="15.0" fill="rgb(243,220,6)" rx="2" ry="2" /> +<text x="1100.12" y="3343.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (1 samples, 0.03%)</title><rect x="375.9" y="1445" width="0.3" height="15.0" fill="rgb(218,183,3)" rx="2" ry="2" /> +<text x="378.90" y="1455.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (3 samples, 0.08%)</title><rect x="399.0" y="2133" width="1.0" height="15.0" fill="rgb(237,118,13)" rx="2" ry="2" /> +<text x="402.04" y="2143.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\ControlFlowResult::Br (1 samples, 0.03%)</title><rect x="1149.3" y="3525" width="0.4" height="15.0" fill="rgb(229,39,6)" rx="2" ry="2" /> +<text x="1152.34" y="3535.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (3 samples, 0.08%)</title><rect x="357.4" y="1765" width="1.0" height="15.0" fill="rgb(227,141,48)" rx="2" ry="2" /> +<text x="360.39" y="1775.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (11 samples, 0.31%)</title><rect x="395.4" y="2197" width="3.6" height="15.0" fill="rgb(253,176,40)" rx="2" ry="2" /> +<text x="398.40" y="2207.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="391.4" y="1989" width="0.4" height="15.0" fill="rgb(249,79,1)" rx="2" ry="2" /> +<text x="394.43" y="1999.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (5 samples, 0.14%)</title><rect x="796.7" y="2149" width="1.6" height="15.0" fill="rgb(245,65,40)" rx="2" ry="2" /> +<text x="799.67" y="2159.5" ></text> +</g> +<g > +<title><unknown> (3 samples, 0.08%)</title><rect x="220.9" y="3429" width="1.0" height="15.0" fill="rgb(235,184,53)" rx="2" ry="2" /> +<text x="223.88" y="3439.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (2 samples, 0.06%)</title><rect x="1165.9" y="3493" width="0.6" height="15.0" fill="rgb(239,92,51)" rx="2" ry="2" /> +<text x="1168.87" y="3503.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (13 samples, 0.36%)</title><rect x="874.3" y="2453" width="4.3" height="15.0" fill="rgb(251,2,9)" rx="2" ry="2" /> +<text x="877.34" y="2463.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (2 samples, 0.06%)</title><rect x="375.6" y="1477" width="0.6" height="15.0" fill="rgb(247,143,11)" rx="2" ry="2" /> +<text x="378.57" y="1487.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Stack::pushBool (1 samples, 0.03%)</title><rect x="1090.5" y="3413" width="0.3" height="15.0" fill="rgb(217,157,40)" rx="2" ry="2" /> +<text x="1093.51" y="3423.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Stack::pushI32 (3 samples, 0.08%)</title><rect x="952.0" y="2741" width="1.0" height="15.0" fill="rgb(225,40,33)" rx="2" ry="2" /> +<text x="955.02" y="2751.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\BinaryFormat\Decoder::decodeInstr (9 samples, 0.25%)</title><rect x="11.0" y="3413" width="3.0" height="15.0" fill="rgb(248,214,23)" rx="2" ry="2" /> +<text x="13.99" y="3423.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.03%)</title><rect x="941.8" y="2485" width="0.3" height="15.0" fill="rgb(209,128,26)" rx="2" ry="2" /> +<text x="944.77" y="2495.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="372.3" y="1669" width="0.3" height="15.0" fill="rgb(234,128,14)" rx="2" ry="2" /> +<text x="375.26" y="1679.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="878.3" y="2181" width="0.3" height="15.0" fill="rgb(248,125,36)" rx="2" ry="2" /> +<text x="881.31" y="2191.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (1 samples, 0.03%)</title><rect x="266.8" y="1573" width="0.4" height="15.0" fill="rgb(251,141,42)" rx="2" ry="2" /> +<text x="269.82" y="1583.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (1 samples, 0.03%)</title><rect x="410.9" y="2149" width="0.4" height="15.0" fill="rgb(230,197,47)" rx="2" ry="2" /> +<text x="413.94" y="2159.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (16 samples, 0.45%)</title><rect x="331.6" y="1925" width="5.3" height="15.0" fill="rgb(217,197,19)" rx="2" ry="2" /> +<text x="334.61" y="1935.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (174 samples, 4.87%)</title><rect x="784.4" y="2821" width="57.5" height="15.0" fill="rgb(237,210,27)" rx="2" ry="2" /> +<text x="787.44" y="2831.5" >Nsfisi..</text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (61 samples, 1.71%)</title><rect x="292.6" y="2021" width="20.2" height="15.0" fill="rgb(247,113,40)" rx="2" ry="2" /> +<text x="295.61" y="2031.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="420.9" y="1829" width="0.3" height="15.0" fill="rgb(252,210,46)" rx="2" ry="2" /> +<text x="423.85" y="1839.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1,823 samples, 51.06%)</title><rect x="246.0" y="3333" width="602.6" height="15.0" fill="rgb(220,163,36)" rx="2" ry="2" /> +<text x="249.00" y="3343.5" >Nsfisis\Waddiwasi\Execution\Runtime::execInstr</text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::invokeByFuncAddr (328 samples, 9.19%)</title><rect x="676.0" y="2981" width="108.4" height="15.0" fill="rgb(243,166,4)" rx="2" ry="2" /> +<text x="679.02" y="2991.5" >Nsfisis\Waddi..</text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="696.2" y="2469" width="0.3" height="15.0" fill="rgb(215,192,28)" rx="2" ry="2" /> +<text x="699.18" y="2479.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (685 samples, 19.19%)</title><rect x="422.2" y="1157" width="226.4" height="15.0" fill="rgb(212,40,17)" rx="2" ry="2" /> +<text x="425.17" y="1167.5" >Nsfisis\Waddiwasi\Execution\R..</text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (2 samples, 0.06%)</title><rect x="407.0" y="2165" width="0.6" height="15.0" fill="rgb(247,101,45)" rx="2" ry="2" /> +<text x="409.97" y="2175.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (4 samples, 0.11%)</title><rect x="289.6" y="1925" width="1.4" height="15.0" fill="rgb(237,212,28)" rx="2" ry="2" /> +<text x="292.63" y="1935.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Stack::popValue (2 samples, 0.06%)</title><rect x="775.5" y="2197" width="0.7" height="15.0" fill="rgb(234,43,25)" rx="2" ry="2" /> +<text x="778.51" y="2207.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (2 samples, 0.06%)</title><rect x="697.2" y="2245" width="0.6" height="15.0" fill="rgb(220,150,12)" rx="2" ry="2" /> +<text x="700.18" y="2255.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (2 samples, 0.06%)</title><rect x="312.1" y="1573" width="0.7" height="15.0" fill="rgb(221,223,8)" rx="2" ry="2" /> +<text x="315.11" y="1583.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.03%)</title><rect x="670.1" y="2581" width="0.3" height="15.0" fill="rgb(251,43,27)" rx="2" ry="2" /> +<text x="673.07" y="2591.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (3 samples, 0.08%)</title><rect x="1116.6" y="3445" width="1.0" height="15.0" fill="rgb(216,150,54)" rx="2" ry="2" /> +<text x="1119.62" y="3455.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.03%)</title><rect x="656.5" y="1909" width="0.4" height="15.0" fill="rgb(230,178,11)" rx="2" ry="2" /> +<text x="659.52" y="1919.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="843.9" y="2853" width="0.4" height="15.0" fill="rgb(251,103,19)" rx="2" ry="2" /> +<text x="846.93" y="2863.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (16 samples, 0.45%)</title><rect x="384.5" y="1733" width="5.3" height="15.0" fill="rgb(205,1,30)" rx="2" ry="2" /> +<text x="387.49" y="1743.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (1 samples, 0.03%)</title><rect x="314.1" y="1989" width="0.3" height="15.0" fill="rgb(252,115,26)" rx="2" ry="2" /> +<text x="317.09" y="1999.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (685 samples, 19.19%)</title><rect x="422.2" y="1285" width="226.4" height="15.0" fill="rgb(233,94,4)" rx="2" ry="2" /> +<text x="425.17" y="1295.5" >Nsfisis\Waddiwasi\Execution\R..</text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (2 samples, 0.06%)</title><rect x="954.7" y="1877" width="0.6" height="15.0" fill="rgb(217,83,38)" rx="2" ry="2" /> +<text x="957.66" y="1887.5" ></text> +</g> +<g > +<title><unknown> (1 samples, 0.03%)</title><rect x="870.4" y="1781" width="0.3" height="15.0" fill="rgb(252,211,29)" rx="2" ry="2" /> +<text x="873.38" y="1791.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="669.4" y="2501" width="0.3" height="15.0" fill="rgb(244,111,27)" rx="2" ry="2" /> +<text x="672.41" y="2511.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="940.4" y="2501" width="0.4" height="15.0" fill="rgb(218,18,14)" rx="2" ry="2" /> +<text x="943.45" y="2511.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (6 samples, 0.17%)</title><rect x="849.6" y="2933" width="1.9" height="15.0" fill="rgb(251,76,15)" rx="2" ry="2" /> +<text x="852.55" y="2943.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (5 samples, 0.14%)</title><rect x="854.8" y="2565" width="1.7" height="15.0" fill="rgb(217,215,53)" rx="2" ry="2" /> +<text x="857.84" y="2575.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (8 samples, 0.22%)</title><rect x="414.2" y="1829" width="2.7" height="15.0" fill="rgb(206,208,7)" rx="2" ry="2" /> +<text x="417.24" y="1839.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (2 samples, 0.06%)</title><rect x="661.8" y="2149" width="0.7" height="15.0" fill="rgb(240,40,47)" rx="2" ry="2" /> +<text x="664.81" y="2159.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\MemInst::storeByte (3 samples, 0.08%)</title><rect x="241.0" y="3445" width="1.0" height="15.0" fill="rgb(214,207,50)" rx="2" ry="2" /> +<text x="244.04" y="3455.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (1,253 samples, 35.10%)</title><rect x="252.3" y="2629" width="414.1" height="15.0" fill="rgb(246,48,16)" rx="2" ry="2" /> +<text x="255.28" y="2639.5" >Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc</text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (1 samples, 0.03%)</title><rect x="419.9" y="2245" width="0.3" height="15.0" fill="rgb(250,196,14)" rx="2" ry="2" /> +<text x="422.86" y="2255.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.03%)</title><rect x="410.9" y="2069" width="0.4" height="15.0" fill="rgb(239,169,30)" rx="2" ry="2" /> +<text x="413.94" y="2079.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (2 samples, 0.06%)</title><rect x="954.7" y="1045" width="0.6" height="15.0" fill="rgb(243,37,18)" rx="2" ry="2" /> +<text x="957.66" y="1055.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (25 samples, 0.70%)</title><rect x="400.0" y="2261" width="8.3" height="15.0" fill="rgb(229,143,46)" rx="2" ry="2" /> +<text x="403.03" y="2271.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="314.1" y="1413" width="0.3" height="15.0" fill="rgb(225,206,17)" rx="2" ry="2" /> +<text x="317.09" y="1423.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.03%)</title><rect x="661.8" y="1813" width="0.3" height="15.0" fill="rgb(234,228,27)" rx="2" ry="2" /> +<text x="664.81" y="1823.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (2 samples, 0.06%)</title><rect x="873.4" y="2117" width="0.6" height="15.0" fill="rgb(249,210,32)" rx="2" ry="2" /> +<text x="876.35" y="2127.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.03%)</title><rect x="848.2" y="2837" width="0.4" height="15.0" fill="rgb(231,90,28)" rx="2" ry="2" /> +<text x="851.23" y="2847.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="872.7" y="2133" width="0.3" height="15.0" fill="rgb(253,159,37)" rx="2" ry="2" /> +<text x="875.69" y="2143.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="847.6" y="2725" width="0.3" height="15.0" fill="rgb(240,163,13)" rx="2" ry="2" /> +<text x="850.57" y="2735.5" ></text> +</g> +<g > +<title><unknown> (1 samples, 0.03%)</title><rect x="870.4" y="2037" width="0.3" height="15.0" fill="rgb(229,161,11)" rx="2" ry="2" /> +<text x="873.38" y="2047.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="246.3" y="3109" width="0.4" height="15.0" fill="rgb(205,226,47)" rx="2" ry="2" /> +<text x="249.33" y="3119.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (1 samples, 0.03%)</title><rect x="706.8" y="2677" width="0.3" height="15.0" fill="rgb(254,169,8)" rx="2" ry="2" /> +<text x="709.76" y="2687.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (2 samples, 0.06%)</title><rect x="954.7" y="2277" width="0.6" height="15.0" fill="rgb(220,221,22)" rx="2" ry="2" /> +<text x="957.66" y="2287.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (682 samples, 19.10%)</title><rect x="423.2" y="853" width="225.4" height="15.0" fill="rgb(251,154,2)" rx="2" ry="2" /> +<text x="426.17" y="863.5" >Nsfisis\Waddiwasi\Execution\R..</text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (27 samples, 0.76%)</title><rect x="258.9" y="2117" width="8.9" height="15.0" fill="rgb(230,127,24)" rx="2" ry="2" /> +<text x="261.89" y="2127.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (17 samples, 0.48%)</title><rect x="343.5" y="2085" width="5.6" height="15.0" fill="rgb(213,99,29)" rx="2" ry="2" /> +<text x="346.51" y="2095.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.03%)</title><rect x="847.6" y="2645" width="0.3" height="15.0" fill="rgb(223,72,48)" rx="2" ry="2" /> +<text x="850.57" y="2655.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (685 samples, 19.19%)</title><rect x="422.2" y="1397" width="226.4" height="15.0" fill="rgb(219,55,21)" rx="2" ry="2" /> +<text x="425.17" y="1407.5" >Nsfisis\Waddiwasi\Execution\R..</text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (1 samples, 0.03%)</title><rect x="249.3" y="2917" width="0.3" height="15.0" fill="rgb(216,74,50)" rx="2" ry="2" /> +<text x="252.31" y="2927.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="656.5" y="1861" width="0.4" height="15.0" fill="rgb(243,225,31)" rx="2" ry="2" /> +<text x="659.52" y="1871.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (6 samples, 0.17%)</title><rect x="387.8" y="1621" width="2.0" height="15.0" fill="rgb(225,208,1)" rx="2" ry="2" /> +<text x="390.80" y="1631.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (1 samples, 0.03%)</title><rect x="419.9" y="2261" width="0.3" height="15.0" fill="rgb(251,41,16)" rx="2" ry="2" /> +<text x="422.86" y="2271.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="411.3" y="2053" width="0.3" height="15.0" fill="rgb(233,187,9)" rx="2" ry="2" /> +<text x="414.27" y="2063.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="784.1" y="2693" width="0.3" height="15.0" fill="rgb(245,66,16)" rx="2" ry="2" /> +<text x="787.11" y="2703.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.03%)</title><rect x="1104.4" y="2037" width="0.3" height="15.0" fill="rgb(238,99,47)" rx="2" ry="2" /> +<text x="1107.39" y="2047.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doStoreI32 (3 samples, 0.08%)</title><rect x="917.0" y="2549" width="1.0" height="15.0" fill="rgb(248,11,23)" rx="2" ry="2" /> +<text x="919.98" y="2559.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.03%)</title><rect x="665.4" y="2325" width="0.4" height="15.0" fill="rgb(252,219,45)" rx="2" ry="2" /> +<text x="668.45" y="2335.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="837.3" y="2117" width="0.4" height="15.0" fill="rgb(248,109,33)" rx="2" ry="2" /> +<text x="840.32" y="2127.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (13 samples, 0.36%)</title><rect x="671.7" y="2773" width="4.3" height="15.0" fill="rgb(219,120,2)" rx="2" ry="2" /> +<text x="674.73" y="2783.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::invokeByFuncAddr (4 samples, 0.11%)</title><rect x="954.7" y="3109" width="1.3" height="15.0" fill="rgb(252,151,4)" rx="2" ry="2" /> +<text x="957.66" y="3119.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="878.3" y="2277" width="0.3" height="15.0" fill="rgb(229,144,20)" rx="2" ry="2" /> +<text x="881.31" y="2287.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (5 samples, 0.14%)</title><rect x="1103.4" y="3157" width="1.7" height="15.0" fill="rgb(219,152,24)" rx="2" ry="2" /> +<text x="1106.40" y="3167.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.03%)</title><rect x="1104.4" y="2293" width="0.3" height="15.0" fill="rgb(216,20,14)" rx="2" ry="2" /> +<text x="1107.39" y="2303.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (5 samples, 0.14%)</title><rect x="849.6" y="2453" width="1.6" height="15.0" fill="rgb(252,214,5)" rx="2" ry="2" /> +<text x="852.55" y="2463.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.03%)</title><rect x="954.3" y="3189" width="0.4" height="15.0" fill="rgb(229,134,50)" rx="2" ry="2" /> +<text x="957.33" y="3199.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="346.2" y="1893" width="0.3" height="15.0" fill="rgb(230,141,9)" rx="2" ry="2" /> +<text x="349.15" y="1903.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.03%)</title><rect x="843.6" y="2485" width="0.3" height="15.0" fill="rgb(212,8,43)" rx="2" ry="2" /> +<text x="846.60" y="2495.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (3 samples, 0.08%)</title><rect x="842.9" y="2709" width="1.0" height="15.0" fill="rgb(253,23,43)" rx="2" ry="2" /> +<text x="845.94" y="2719.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (1 samples, 0.03%)</title><rect x="846.9" y="2933" width="0.3" height="15.0" fill="rgb(241,21,13)" rx="2" ry="2" /> +<text x="849.91" y="2943.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (1 samples, 0.03%)</title><rect x="313.4" y="2133" width="0.4" height="15.0" fill="rgb(223,42,4)" rx="2" ry="2" /> +<text x="316.43" y="2143.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.03%)</title><rect x="894.8" y="2485" width="0.4" height="15.0" fill="rgb(236,227,31)" rx="2" ry="2" /> +<text x="897.83" y="2495.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (4 samples, 0.11%)</title><rect x="279.7" y="1989" width="1.3" height="15.0" fill="rgb(229,15,5)" rx="2" ry="2" /> +<text x="282.71" y="1999.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (3 samples, 0.08%)</title><rect x="700.8" y="2389" width="1.0" height="15.0" fill="rgb(248,176,52)" rx="2" ry="2" /> +<text x="703.81" y="2399.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="893.5" y="2533" width="0.3" height="15.0" fill="rgb(227,166,54)" rx="2" ry="2" /> +<text x="896.51" y="2543.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.03%)</title><rect x="420.2" y="2069" width="0.3" height="15.0" fill="rgb(240,178,28)" rx="2" ry="2" /> +<text x="423.19" y="2079.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.03%)</title><rect x="298.9" y="1621" width="0.3" height="15.0" fill="rgb(242,28,0)" rx="2" ry="2" /> +<text x="301.89" y="1631.5" ></text> +</g> +<g > +<title><unknown> (1 samples, 0.03%)</title><rect x="870.4" y="789" width="0.3" height="15.0" fill="rgb(229,196,40)" rx="2" ry="2" /> +<text x="873.38" y="799.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (18 samples, 0.50%)</title><rect x="696.8" y="2645" width="6.0" height="15.0" fill="rgb(225,33,14)" rx="2" ry="2" /> +<text x="699.85" y="2655.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (8 samples, 0.22%)</title><rect x="403.3" y="1765" width="2.7" height="15.0" fill="rgb(222,137,43)" rx="2" ry="2" /> +<text x="406.33" y="1775.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (43 samples, 1.20%)</title><rect x="1091.2" y="3445" width="14.2" height="15.0" fill="rgb(246,207,37)" rx="2" ry="2" /> +<text x="1094.17" y="3455.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Stack::pushValue (1 samples, 0.03%)</title><rect x="271.5" y="2133" width="0.3" height="15.0" fill="rgb(227,229,21)" rx="2" ry="2" /> +<text x="274.45" y="2143.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="695.9" y="2213" width="0.3" height="15.0" fill="rgb(206,2,29)" rx="2" ry="2" /> +<text x="698.85" y="2223.5" ></text> +</g> +<g > +<title>count (1 samples, 0.03%)</title><rect x="241.7" y="3429" width="0.3" height="15.0" fill="rgb(248,146,28)" rx="2" ry="2" /> +<text x="244.70" y="3439.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (3 samples, 0.08%)</title><rect x="850.2" y="2373" width="1.0" height="15.0" fill="rgb(242,18,28)" rx="2" ry="2" /> +<text x="853.21" y="2383.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (1 samples, 0.03%)</title><rect x="843.6" y="2437" width="0.3" height="15.0" fill="rgb(247,48,35)" rx="2" ry="2" /> +<text x="846.60" y="2447.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (2 samples, 0.06%)</title><rect x="954.7" y="197" width="0.6" height="15.0" fill="rgb(211,191,27)" rx="2" ry="2" /> +<text x="957.66" y="207.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="894.2" y="2661" width="0.3" height="15.0" fill="rgb(244,58,31)" rx="2" ry="2" /> +<text x="897.17" y="2671.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.03%)</title><rect x="938.5" y="2421" width="0.3" height="15.0" fill="rgb(239,152,4)" rx="2" ry="2" /> +<text x="941.46" y="2431.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (3 samples, 0.08%)</title><rect x="305.8" y="1765" width="1.0" height="15.0" fill="rgb(254,152,45)" rx="2" ry="2" /> +<text x="308.83" y="1775.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="358.4" y="1605" width="0.3" height="15.0" fill="rgb(245,24,20)" rx="2" ry="2" /> +<text x="361.38" y="1615.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="683.6" y="2405" width="0.4" height="15.0" fill="rgb(251,216,37)" rx="2" ry="2" /> +<text x="686.62" y="2415.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Stack::pushValue (1 samples, 0.03%)</title><rect x="1086.2" y="3317" width="0.3" height="15.0" fill="rgb(245,15,3)" rx="2" ry="2" /> +<text x="1089.21" y="3327.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (2 samples, 0.06%)</title><rect x="363.3" y="1829" width="0.7" height="15.0" fill="rgb(206,126,35)" rx="2" ry="2" /> +<text x="366.34" y="1839.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (203 samples, 5.69%)</title><rect x="325.0" y="2213" width="67.1" height="15.0" fill="rgb(224,22,52)" rx="2" ry="2" /> +<text x="328.00" y="2223.5" >Nsfisis..</text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (2 samples, 0.06%)</title><rect x="954.7" y="1781" width="0.6" height="15.0" fill="rgb(205,174,22)" rx="2" ry="2" /> +<text x="957.66" y="1791.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1,253 samples, 35.10%)</title><rect x="252.3" y="2613" width="414.1" height="15.0" fill="rgb(213,98,0)" rx="2" ry="2" /> +<text x="255.28" y="2623.5" >Nsfisis\Waddiwasi\Execution\Runtime::execInstrs</text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (3 samples, 0.08%)</title><rect x="357.4" y="1701" width="1.0" height="15.0" fill="rgb(218,225,29)" rx="2" ry="2" /> +<text x="360.39" y="1711.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (1 samples, 0.03%)</title><rect x="833.4" y="2197" width="0.3" height="15.0" fill="rgb(238,1,30)" rx="2" ry="2" /> +<text x="836.36" y="2207.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (23 samples, 0.64%)</title><rect x="943.4" y="2597" width="7.6" height="15.0" fill="rgb(230,202,14)" rx="2" ry="2" /> +<text x="946.42" y="2607.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.03%)</title><rect x="1121.6" y="3381" width="0.3" height="15.0" fill="rgb(208,72,49)" rx="2" ry="2" /> +<text x="1124.58" y="3391.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (8 samples, 0.22%)</title><rect x="944.7" y="2501" width="2.7" height="15.0" fill="rgb(240,195,36)" rx="2" ry="2" /> +<text x="947.75" y="2511.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\BinaryFormat\Decoder::decodeSection (18 samples, 0.50%)</title><rect x="10.7" y="3509" width="5.9" height="15.0" fill="rgb(216,151,23)" rx="2" ry="2" /> +<text x="13.66" y="3519.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="662.1" y="1925" width="0.4" height="15.0" fill="rgb(232,8,46)" rx="2" ry="2" /> +<text x="665.14" y="1935.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (40 samples, 1.12%)</title><rect x="881.3" y="2741" width="13.2" height="15.0" fill="rgb(235,93,31)" rx="2" ry="2" /> +<text x="884.28" y="2751.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (2 samples, 0.06%)</title><rect x="348.1" y="1925" width="0.7" height="15.0" fill="rgb(242,59,54)" rx="2" ry="2" /> +<text x="351.13" y="1935.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="280.0" y="1861" width="0.4" height="15.0" fill="rgb(246,101,30)" rx="2" ry="2" /> +<text x="283.04" y="1871.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="834.0" y="1957" width="0.3" height="15.0" fill="rgb(243,119,16)" rx="2" ry="2" /> +<text x="837.02" y="1967.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="1153.6" y="3365" width="0.4" height="15.0" fill="rgb(212,210,43)" rx="2" ry="2" /> +<text x="1156.64" y="3375.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (2 samples, 0.06%)</title><rect x="364.7" y="1861" width="0.6" height="15.0" fill="rgb(231,23,37)" rx="2" ry="2" /> +<text x="367.66" y="1871.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (2 samples, 0.06%)</title><rect x="263.2" y="1941" width="0.6" height="15.0" fill="rgb(224,192,2)" rx="2" ry="2" /> +<text x="266.19" y="1951.5" ></text> +</g> +<g > +<title>{closure}(/home/ken/src/php-waddiwasi/vendor/composer/ClassLoader.php:575-577) (1 samples, 0.03%)</title><rect x="16.9" y="3493" width="0.4" height="15.0" fill="rgb(208,144,9)" rx="2" ry="2" /> +<text x="19.94" y="3503.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (2 samples, 0.06%)</title><rect x="954.7" y="1157" width="0.6" height="15.0" fill="rgb(246,130,34)" rx="2" ry="2" /> +<text x="957.66" y="1167.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="246.0" y="3013" width="0.3" height="15.0" fill="rgb(233,145,27)" rx="2" ry="2" /> +<text x="249.00" y="3023.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (1 samples, 0.03%)</title><rect x="410.9" y="2005" width="0.4" height="15.0" fill="rgb(242,214,22)" rx="2" ry="2" /> +<text x="413.94" y="2015.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.03%)</title><rect x="314.1" y="1813" width="0.3" height="15.0" fill="rgb(229,53,28)" rx="2" ry="2" /> +<text x="317.09" y="1823.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.03%)</title><rect x="391.1" y="1845" width="0.3" height="15.0" fill="rgb(231,148,37)" rx="2" ry="2" /> +<text x="394.10" y="1855.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (1 samples, 0.03%)</title><rect x="325.3" y="2181" width="0.4" height="15.0" fill="rgb(251,226,31)" rx="2" ry="2" /> +<text x="328.33" y="2191.5" ></text> +</g> +<g > +<title><unknown> (1 samples, 0.03%)</title><rect x="870.4" y="1573" width="0.3" height="15.0" fill="rgb(211,38,35)" rx="2" ry="2" /> +<text x="873.38" y="1583.5" ></text> +</g> +<g > +<title>{closure}(/home/ken/src/php-waddiwasi/vendor/composer/ClassLoader.php:575-577) (1 samples, 0.03%)</title><rect x="18.3" y="3461" width="0.3" height="15.0" fill="rgb(236,20,39)" rx="2" ry="2" /> +<text x="21.26" y="3471.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (2 samples, 0.06%)</title><rect x="421.2" y="2037" width="0.6" height="15.0" fill="rgb(253,50,33)" rx="2" ry="2" /> +<text x="424.18" y="2047.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="1104.4" y="2501" width="0.3" height="15.0" fill="rgb(254,29,34)" rx="2" ry="2" /> +<text x="1107.39" y="2511.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (7 samples, 0.20%)</title><rect x="366.0" y="2005" width="2.3" height="15.0" fill="rgb(211,69,5)" rx="2" ry="2" /> +<text x="368.98" y="2015.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Stack::pushValue (1 samples, 0.03%)</title><rect x="950.7" y="2517" width="0.3" height="15.0" fill="rgb(229,81,29)" rx="2" ry="2" /> +<text x="953.69" y="2527.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="405.3" y="869" width="0.3" height="15.0" fill="rgb(248,40,17)" rx="2" ry="2" /> +<text x="408.32" y="879.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\ControlFlowResult::Br (1 samples, 0.03%)</title><rect x="258.6" y="1957" width="0.3" height="15.0" fill="rgb(208,175,1)" rx="2" ry="2" /> +<text x="261.56" y="1967.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (2 samples, 0.06%)</title><rect x="246.3" y="3157" width="0.7" height="15.0" fill="rgb(213,177,24)" rx="2" ry="2" /> +<text x="249.33" y="3167.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="697.5" y="1925" width="0.3" height="15.0" fill="rgb(251,165,37)" rx="2" ry="2" /> +<text x="700.51" y="1935.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\BinaryFormat\Decoder::{closure}(/home/ken/src/php-waddiwasi/src/BinaryFormat/Decoder.php:1012-1016) (1,263 samples, 35.38%)</title><rect x="249.6" y="2997" width="417.5" height="15.0" fill="rgb(247,148,27)" rx="2" ry="2" /> +<text x="252.64" y="3007.5" >Nsfisis\Waddiwasi\BinaryFormat\Decoder::{closure}(/home/..</text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (2 samples, 0.06%)</title><rect x="1107.7" y="3381" width="0.7" height="15.0" fill="rgb(215,119,18)" rx="2" ry="2" /> +<text x="1110.70" y="3391.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (269 samples, 7.54%)</title><rect x="320.0" y="2309" width="89.0" height="15.0" fill="rgb(254,38,12)" rx="2" ry="2" /> +<text x="323.04" y="2319.5" >Nsfisis\Wa..</text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (468 samples, 13.11%)</title><rect x="254.3" y="2389" width="154.7" height="15.0" fill="rgb(219,199,54)" rx="2" ry="2" /> +<text x="257.26" y="2399.5" >Nsfisis\Waddiwasi\E..</text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.03%)</title><rect x="894.5" y="2709" width="0.3" height="15.0" fill="rgb(251,127,6)" rx="2" ry="2" /> +<text x="897.50" y="2719.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="268.5" y="1925" width="0.3" height="15.0" fill="rgb(213,164,53)" rx="2" ry="2" /> +<text x="271.48" y="1935.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.03%)</title><rect x="941.8" y="2581" width="0.3" height="15.0" fill="rgb(209,173,42)" rx="2" ry="2" /> +<text x="944.77" y="2591.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (2 samples, 0.06%)</title><rect x="1104.1" y="2629" width="0.6" height="15.0" fill="rgb(229,131,6)" rx="2" ry="2" /> +<text x="1107.06" y="2639.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Structure\Instructions\Instrs\Memory\I32Store8::opName (1 samples, 0.03%)</title><rect x="198.4" y="3461" width="0.3" height="15.0" fill="rgb(229,78,38)" rx="2" ry="2" /> +<text x="201.40" y="3471.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (1 samples, 0.03%)</title><rect x="666.1" y="2469" width="0.3" height="15.0" fill="rgb(236,186,23)" rx="2" ry="2" /> +<text x="669.11" y="2479.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (328 samples, 9.19%)</title><rect x="676.0" y="2933" width="108.4" height="15.0" fill="rgb(212,207,4)" rx="2" ry="2" /> +<text x="679.02" y="2943.5" >Nsfisis\Waddi..</text> +</g> +<g > +<title>print_r (1 samples, 0.03%)</title><rect x="1140.4" y="3477" width="0.4" height="15.0" fill="rgb(237,59,8)" rx="2" ry="2" /> +<text x="1143.42" y="3487.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.03%)</title><rect x="650.2" y="2069" width="0.4" height="15.0" fill="rgb(235,79,18)" rx="2" ry="2" /> +<text x="653.24" y="2079.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (2 samples, 0.06%)</title><rect x="904.1" y="2613" width="0.7" height="15.0" fill="rgb(215,115,33)" rx="2" ry="2" /> +<text x="907.09" y="2623.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="951.7" y="2565" width="0.3" height="15.0" fill="rgb(222,136,8)" rx="2" ry="2" /> +<text x="954.69" y="2575.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.03%)</title><rect x="420.9" y="1877" width="0.3" height="15.0" fill="rgb(237,52,46)" rx="2" ry="2" /> +<text x="423.85" y="1887.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doLoadI32 (1 samples, 0.03%)</title><rect x="357.1" y="1813" width="0.3" height="15.0" fill="rgb(234,173,20)" rx="2" ry="2" /> +<text x="360.06" y="1823.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="878.3" y="2117" width="0.3" height="15.0" fill="rgb(244,103,53)" rx="2" ry="2" /> +<text x="881.31" y="2127.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.03%)</title><rect x="855.8" y="2421" width="0.4" height="15.0" fill="rgb(240,179,40)" rx="2" ry="2" /> +<text x="858.83" y="2431.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="874.0" y="2341" width="0.3" height="15.0" fill="rgb(216,140,3)" rx="2" ry="2" /> +<text x="877.01" y="2351.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="955.7" y="2757" width="0.3" height="15.0" fill="rgb(241,94,52)" rx="2" ry="2" /> +<text x="958.65" y="2767.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\StackEntries\Value::__construct (1 samples, 0.03%)</title><rect x="872.7" y="2101" width="0.3" height="15.0" fill="rgb(243,25,9)" rx="2" ry="2" /> +<text x="875.69" y="2111.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (13 samples, 0.36%)</title><rect x="671.7" y="2725" width="4.3" height="15.0" fill="rgb(233,106,18)" rx="2" ry="2" /> +<text x="674.73" y="2735.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="1104.4" y="2341" width="0.3" height="15.0" fill="rgb(206,113,25)" rx="2" ry="2" /> +<text x="1107.39" y="2351.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.03%)</title><rect x="954.0" y="2901" width="0.3" height="15.0" fill="rgb(216,193,27)" rx="2" ry="2" /> +<text x="957.00" y="2911.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.03%)</title><rect x="847.6" y="2741" width="0.3" height="15.0" fill="rgb(212,107,51)" rx="2" ry="2" /> +<text x="850.57" y="2751.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (2 samples, 0.06%)</title><rect x="371.9" y="1733" width="0.7" height="15.0" fill="rgb(226,56,26)" rx="2" ry="2" /> +<text x="374.93" y="1743.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (7 samples, 0.20%)</title><rect x="366.0" y="1957" width="2.3" height="15.0" fill="rgb(247,166,5)" rx="2" ry="2" /> +<text x="368.98" y="1967.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="1150.7" y="3461" width="0.3" height="15.0" fill="rgb(225,162,41)" rx="2" ry="2" /> +<text x="1153.67" y="3471.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="328.3" y="2149" width="0.3" height="15.0" fill="rgb(245,172,54)" rx="2" ry="2" /> +<text x="331.30" y="2159.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="834.0" y="2021" width="0.3" height="15.0" fill="rgb(253,107,22)" rx="2" ry="2" /> +<text x="837.02" y="2031.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.03%)</title><rect x="249.3" y="2805" width="0.3" height="15.0" fill="rgb(241,209,14)" rx="2" ry="2" /> +<text x="252.31" y="2815.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="307.1" y="1669" width="0.4" height="15.0" fill="rgb(217,30,22)" rx="2" ry="2" /> +<text x="310.15" y="1679.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (4 samples, 0.11%)</title><rect x="954.7" y="3173" width="1.3" height="15.0" fill="rgb(218,146,17)" rx="2" ry="2" /> +<text x="957.66" y="3183.5" ></text> +</g> +<g > +<title>print_r (1 samples, 0.03%)</title><rect x="194.4" y="3413" width="0.4" height="15.0" fill="rgb(245,18,40)" rx="2" ry="2" /> +<text x="197.44" y="3423.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (5 samples, 0.14%)</title><rect x="415.2" y="1669" width="1.7" height="15.0" fill="rgb(222,27,45)" rx="2" ry="2" /> +<text x="418.23" y="1679.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (1 samples, 0.03%)</title><rect x="265.8" y="1765" width="0.4" height="15.0" fill="rgb(216,4,44)" rx="2" ry="2" /> +<text x="268.83" y="1775.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="954.3" y="2405" width="0.4" height="15.0" fill="rgb(238,196,10)" rx="2" ry="2" /> +<text x="957.33" y="2415.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.03%)</title><rect x="391.4" y="1717" width="0.4" height="15.0" fill="rgb(217,38,8)" rx="2" ry="2" /> +<text x="394.43" y="1727.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="1108.0" y="3173" width="0.4" height="15.0" fill="rgb(209,217,0)" rx="2" ry="2" /> +<text x="1111.03" y="3183.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (2 samples, 0.06%)</title><rect x="302.2" y="1685" width="0.7" height="15.0" fill="rgb(206,39,11)" rx="2" ry="2" /> +<text x="305.19" y="1695.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.03%)</title><rect x="271.8" y="2069" width="0.3" height="15.0" fill="rgb(240,148,34)" rx="2" ry="2" /> +<text x="274.78" y="2079.5" ></text> +</g> +<g > +<title><unknown> (1 samples, 0.03%)</title><rect x="870.4" y="933" width="0.3" height="15.0" fill="rgb(250,217,10)" rx="2" ry="2" /> +<text x="873.38" y="943.5" ></text> +</g> +<g > +<title><unknown> (2 samples, 0.06%)</title><rect x="823.4" y="2165" width="0.7" height="15.0" fill="rgb(241,135,46)" rx="2" ry="2" /> +<text x="826.44" y="2175.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (2 samples, 0.06%)</title><rect x="954.7" y="2565" width="0.6" height="15.0" fill="rgb(241,191,3)" rx="2" ry="2" /> +<text x="957.66" y="2575.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.03%)</title><rect x="263.5" y="1685" width="0.3" height="15.0" fill="rgb(221,0,49)" rx="2" ry="2" /> +<text x="266.52" y="1695.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.03%)</title><rect x="847.9" y="2773" width="0.3" height="15.0" fill="rgb(221,89,10)" rx="2" ry="2" /> +<text x="850.90" y="2783.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (230 samples, 6.44%)</title><rect x="707.4" y="2789" width="76.0" height="15.0" fill="rgb(227,100,32)" rx="2" ry="2" /> +<text x="710.42" y="2799.5" >Nsfisis\..</text> +</g> +<g > +<title><unknown> (432 samples, 12.10%)</title><rect x="1006.6" y="3525" width="142.7" height="15.0" fill="rgb(241,148,32)" rx="2" ry="2" /> +<text x="1009.55" y="3535.5" ><unknown></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="371.9" y="1605" width="0.4" height="15.0" fill="rgb(237,165,18)" rx="2" ry="2" /> +<text x="374.93" y="1615.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (2 samples, 0.06%)</title><rect x="954.7" y="1397" width="0.6" height="15.0" fill="rgb(221,190,41)" rx="2" ry="2" /> +<text x="957.66" y="1407.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="851.2" y="2341" width="0.3" height="15.0" fill="rgb(219,80,22)" rx="2" ry="2" /> +<text x="854.20" y="2351.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (3 samples, 0.08%)</title><rect x="655.9" y="2149" width="1.0" height="15.0" fill="rgb(251,22,33)" rx="2" ry="2" /> +<text x="658.86" y="2159.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (2 samples, 0.06%)</title><rect x="842.3" y="2533" width="0.6" height="15.0" fill="rgb(220,195,28)" rx="2" ry="2" /> +<text x="845.28" y="2543.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Stack::pushValue (2 samples, 0.06%)</title><rect x="831.7" y="2197" width="0.7" height="15.0" fill="rgb(226,214,16)" rx="2" ry="2" /> +<text x="834.70" y="2207.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\StackEntry::Frame (1 samples, 0.03%)</title><rect x="1175.5" y="3541" width="0.3" height="15.0" fill="rgb(251,43,44)" rx="2" ry="2" /> +<text x="1178.46" y="3551.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (1,261 samples, 35.32%)</title><rect x="249.6" y="2901" width="416.8" height="15.0" fill="rgb(249,142,19)" rx="2" ry="2" /> +<text x="252.64" y="2911.5" >Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc</text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="249.3" y="2789" width="0.3" height="15.0" fill="rgb(242,187,44)" rx="2" ry="2" /> +<text x="252.31" y="2799.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.03%)</title><rect x="669.4" y="2485" width="0.3" height="15.0" fill="rgb(227,54,11)" rx="2" ry="2" /> +<text x="672.41" y="2495.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (12 samples, 0.34%)</title><rect x="360.4" y="1909" width="3.9" height="15.0" fill="rgb(237,183,5)" rx="2" ry="2" /> +<text x="363.36" y="1919.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (2 samples, 0.06%)</title><rect x="839.0" y="2197" width="0.6" height="15.0" fill="rgb(229,202,20)" rx="2" ry="2" /> +<text x="841.97" y="2207.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="848.9" y="2869" width="0.3" height="15.0" fill="rgb(244,127,4)" rx="2" ry="2" /> +<text x="851.89" y="2879.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.03%)</title><rect x="1139.1" y="3413" width="0.3" height="15.0" fill="rgb(240,15,32)" rx="2" ry="2" /> +<text x="1142.10" y="3423.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="842.6" y="2405" width="0.3" height="15.0" fill="rgb(210,115,9)" rx="2" ry="2" /> +<text x="845.61" y="2415.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="1165.2" y="3493" width="0.3" height="15.0" fill="rgb(211,150,33)" rx="2" ry="2" /> +<text x="1168.21" y="3503.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="1130.8" y="3333" width="0.4" height="15.0" fill="rgb(232,130,31)" rx="2" ry="2" /> +<text x="1133.83" y="3343.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (4 samples, 0.11%)</title><rect x="289.6" y="1941" width="1.4" height="15.0" fill="rgb(254,107,9)" rx="2" ry="2" /> +<text x="292.63" y="1951.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (1 samples, 0.03%)</title><rect x="843.9" y="2901" width="0.4" height="15.0" fill="rgb(216,96,52)" rx="2" ry="2" /> +<text x="846.93" y="2911.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="784.1" y="2757" width="0.3" height="15.0" fill="rgb(240,55,45)" rx="2" ry="2" /> +<text x="787.11" y="2767.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="834.0" y="2117" width="0.3" height="15.0" fill="rgb(240,50,22)" rx="2" ry="2" /> +<text x="837.02" y="2127.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (6 samples, 0.17%)</title><rect x="849.6" y="2565" width="1.9" height="15.0" fill="rgb(212,132,14)" rx="2" ry="2" /> +<text x="852.55" y="2575.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (1 samples, 0.03%)</title><rect x="667.1" y="2869" width="0.3" height="15.0" fill="rgb(235,194,40)" rx="2" ry="2" /> +<text x="670.10" y="2879.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (1 samples, 0.03%)</title><rect x="847.9" y="2837" width="0.3" height="15.0" fill="rgb(248,134,50)" rx="2" ry="2" /> +<text x="850.90" y="2847.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="365.7" y="1925" width="0.3" height="15.0" fill="rgb(211,150,39)" rx="2" ry="2" /> +<text x="368.65" y="1935.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (315 samples, 8.82%)</title><rect x="849.6" y="3061" width="104.1" height="15.0" fill="rgb(240,219,28)" rx="2" ry="2" /> +<text x="852.55" y="3071.5" >Nsfisis\Wadd..</text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Structure\Modules\Func::__construct (1 samples, 0.03%)</title><rect x="1177.1" y="3541" width="0.3" height="15.0" fill="rgb(216,128,21)" rx="2" ry="2" /> +<text x="1180.11" y="3551.5" ></text> +</g> +<g > +<title><unknown> (1 samples, 0.03%)</title><rect x="887.9" y="2629" width="0.3" height="15.0" fill="rgb(219,7,15)" rx="2" ry="2" /> +<text x="890.89" y="2639.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Stack::popI32 (2 samples, 0.06%)</title><rect x="798.6" y="2325" width="0.7" height="15.0" fill="rgb(222,200,4)" rx="2" ry="2" /> +<text x="801.65" y="2335.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (2 samples, 0.06%)</title><rect x="672.4" y="2309" width="0.6" height="15.0" fill="rgb(234,220,36)" rx="2" ry="2" /> +<text x="675.39" y="2319.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (17 samples, 0.48%)</title><rect x="1099.4" y="3285" width="5.7" height="15.0" fill="rgb(206,4,17)" rx="2" ry="2" /> +<text x="1102.43" y="3295.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (2 samples, 0.06%)</title><rect x="954.7" y="1445" width="0.6" height="15.0" fill="rgb(216,14,32)" rx="2" ry="2" /> +<text x="957.66" y="1455.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (3 samples, 0.08%)</title><rect x="848.6" y="3013" width="1.0" height="15.0" fill="rgb(221,196,34)" rx="2" ry="2" /> +<text x="851.56" y="3023.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (30 samples, 0.84%)</title><rect x="293.6" y="1925" width="9.9" height="15.0" fill="rgb(212,151,0)" rx="2" ry="2" /> +<text x="296.60" y="1935.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (2 samples, 0.06%)</title><rect x="672.4" y="2373" width="0.6" height="15.0" fill="rgb(235,111,10)" rx="2" ry="2" /> +<text x="675.39" y="2383.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (8 samples, 0.22%)</title><rect x="672.4" y="2437" width="2.6" height="15.0" fill="rgb(225,109,47)" rx="2" ry="2" /> +<text x="675.39" y="2447.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (149 samples, 4.17%)</title><rect x="901.8" y="2677" width="49.2" height="15.0" fill="rgb(205,60,34)" rx="2" ry="2" /> +<text x="904.78" y="2687.5" >Nsfi..</text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (1 samples, 0.03%)</title><rect x="677.0" y="2757" width="0.3" height="15.0" fill="rgb(248,145,5)" rx="2" ry="2" /> +<text x="680.01" y="2767.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Stack::popI32 (2 samples, 0.06%)</title><rect x="774.9" y="2197" width="0.6" height="15.0" fill="rgb(223,176,24)" rx="2" ry="2" /> +<text x="777.85" y="2207.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (3 samples, 0.08%)</title><rect x="1085.6" y="3429" width="0.9" height="15.0" fill="rgb(251,6,9)" rx="2" ry="2" /> +<text x="1088.55" y="3439.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (19 samples, 0.53%)</title><rect x="410.9" y="2197" width="6.3" height="15.0" fill="rgb(231,69,45)" rx="2" ry="2" /> +<text x="413.94" y="2207.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.03%)</title><rect x="930.2" y="2421" width="0.3" height="15.0" fill="rgb(227,135,29)" rx="2" ry="2" /> +<text x="933.20" y="2431.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.03%)</title><rect x="841.0" y="2357" width="0.3" height="15.0" fill="rgb(218,129,47)" rx="2" ry="2" /> +<text x="843.96" y="2367.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.03%)</title><rect x="663.1" y="2133" width="0.4" height="15.0" fill="rgb(228,157,35)" rx="2" ry="2" /> +<text x="666.13" y="2143.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\StackEntry::Value (1 samples, 0.03%)</title><rect x="227.8" y="3461" width="0.4" height="15.0" fill="rgb(227,91,18)" rx="2" ry="2" /> +<text x="230.82" y="3471.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (2 samples, 0.06%)</title><rect x="954.7" y="2581" width="0.6" height="15.0" fill="rgb(224,67,49)" rx="2" ry="2" /> +<text x="957.66" y="2591.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (8 samples, 0.22%)</title><rect x="370.3" y="1925" width="2.6" height="15.0" fill="rgb(242,23,15)" rx="2" ry="2" /> +<text x="373.28" y="1935.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="847.6" y="2565" width="0.3" height="15.0" fill="rgb(251,69,45)" rx="2" ry="2" /> +<text x="850.57" y="2575.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (16 samples, 0.45%)</title><rect x="411.9" y="2037" width="5.3" height="15.0" fill="rgb(244,186,33)" rx="2" ry="2" /> +<text x="414.93" y="2047.5" ></text> +</g> +<g > +<title><unknown> (12 samples, 0.34%)</title><rect x="218.2" y="3445" width="4.0" height="15.0" fill="rgb(210,209,45)" rx="2" ry="2" /> +<text x="221.24" y="3455.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="1139.1" y="3461" width="0.3" height="15.0" fill="rgb(209,55,42)" rx="2" ry="2" /> +<text x="1142.10" y="3471.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (8 samples, 0.22%)</title><rect x="414.2" y="1893" width="2.7" height="15.0" fill="rgb(210,118,54)" rx="2" ry="2" /> +<text x="417.24" y="1903.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (1 samples, 0.03%)</title><rect x="954.3" y="3205" width="0.4" height="15.0" fill="rgb(212,71,37)" rx="2" ry="2" /> +<text x="957.33" y="3215.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (173 samples, 4.85%)</title><rect x="896.2" y="2837" width="57.1" height="15.0" fill="rgb(251,55,40)" rx="2" ry="2" /> +<text x="899.16" y="2847.5" >Nsfisi..</text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (4 samples, 0.11%)</title><rect x="388.5" y="1589" width="1.3" height="15.0" fill="rgb(206,86,39)" rx="2" ry="2" /> +<text x="391.46" y="1599.5" ></text> +</g> +<g > +<title>print_r (1 samples, 0.03%)</title><rect x="953.0" y="2821" width="0.3" height="15.0" fill="rgb(254,144,28)" rx="2" ry="2" /> +<text x="956.01" y="2831.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="856.2" y="2533" width="0.3" height="15.0" fill="rgb(218,220,51)" rx="2" ry="2" /> +<text x="859.16" y="2543.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (1 samples, 0.03%)</title><rect x="841.6" y="2517" width="0.3" height="15.0" fill="rgb(244,161,30)" rx="2" ry="2" /> +<text x="844.62" y="2527.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Stack::pushValue (1 samples, 0.03%)</title><rect x="1105.4" y="3365" width="0.3" height="15.0" fill="rgb(253,15,3)" rx="2" ry="2" /> +<text x="1108.38" y="3375.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.03%)</title><rect x="648.6" y="1557" width="0.3" height="15.0" fill="rgb(213,37,0)" rx="2" ry="2" /> +<text x="651.59" y="1567.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (21 samples, 0.59%)</title><rect x="278.4" y="2069" width="6.9" height="15.0" fill="rgb(229,167,20)" rx="2" ry="2" /> +<text x="281.39" y="2079.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="658.5" y="2021" width="0.3" height="15.0" fill="rgb(248,60,20)" rx="2" ry="2" /> +<text x="661.50" y="2031.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (3 samples, 0.08%)</title><rect x="705.1" y="2709" width="1.0" height="15.0" fill="rgb(228,171,39)" rx="2" ry="2" /> +<text x="708.11" y="2719.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (3 samples, 0.08%)</title><rect x="399.0" y="2181" width="1.0" height="15.0" fill="rgb(230,125,8)" rx="2" ry="2" /> +<text x="402.04" y="2191.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="347.1" y="1829" width="0.4" height="15.0" fill="rgb(247,151,20)" rx="2" ry="2" /> +<text x="350.14" y="1839.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (1 samples, 0.03%)</title><rect x="701.5" y="2197" width="0.3" height="15.0" fill="rgb(239,42,33)" rx="2" ry="2" /> +<text x="704.47" y="2207.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (1 samples, 0.03%)</title><rect x="666.1" y="2389" width="0.3" height="15.0" fill="rgb(243,30,35)" rx="2" ry="2" /> +<text x="669.11" y="2399.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (3 samples, 0.08%)</title><rect x="399.0" y="2053" width="1.0" height="15.0" fill="rgb(221,59,22)" rx="2" ry="2" /> +<text x="402.04" y="2063.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (3 samples, 0.08%)</title><rect x="848.6" y="3301" width="1.0" height="15.0" fill="rgb(227,140,1)" rx="2" ry="2" /> +<text x="851.56" y="3311.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (20 samples, 0.56%)</title><rect x="358.7" y="1941" width="6.6" height="15.0" fill="rgb(205,165,28)" rx="2" ry="2" /> +<text x="361.71" y="1951.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (2 samples, 0.06%)</title><rect x="650.6" y="2165" width="0.6" height="15.0" fill="rgb(217,108,54)" rx="2" ry="2" /> +<text x="653.57" y="2175.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (1 samples, 0.03%)</title><rect x="953.7" y="3029" width="0.3" height="15.0" fill="rgb(230,78,7)" rx="2" ry="2" /> +<text x="956.67" y="3039.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::deactivateLabel (1 samples, 0.03%)</title><rect x="790.4" y="2213" width="0.3" height="15.0" fill="rgb(210,139,33)" rx="2" ry="2" /> +<text x="793.39" y="2223.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="903.8" y="2501" width="0.3" height="15.0" fill="rgb(248,65,52)" rx="2" ry="2" /> +<text x="906.76" y="2511.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (4 samples, 0.11%)</title><rect x="315.7" y="1925" width="1.4" height="15.0" fill="rgb(231,226,39)" rx="2" ry="2" /> +<text x="318.74" y="1935.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (2 samples, 0.06%)</title><rect x="842.3" y="2549" width="0.6" height="15.0" fill="rgb(209,31,19)" rx="2" ry="2" /> +<text x="845.28" y="2559.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (4 samples, 0.11%)</title><rect x="283.7" y="1893" width="1.3" height="15.0" fill="rgb(208,117,1)" rx="2" ry="2" /> +<text x="286.68" y="1903.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (4 samples, 0.11%)</title><rect x="374.9" y="1589" width="1.3" height="15.0" fill="rgb(249,165,52)" rx="2" ry="2" /> +<text x="377.91" y="1599.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (2 samples, 0.06%)</title><rect x="954.7" y="2725" width="0.6" height="15.0" fill="rgb(234,91,17)" rx="2" ry="2" /> +<text x="957.66" y="2735.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (1 samples, 0.03%)</title><rect x="347.1" y="1973" width="0.4" height="15.0" fill="rgb(246,102,49)" rx="2" ry="2" /> +<text x="350.14" y="1983.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (2 samples, 0.06%)</title><rect x="839.0" y="2181" width="0.6" height="15.0" fill="rgb(234,129,5)" rx="2" ry="2" /> +<text x="841.97" y="2191.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="847.2" y="2437" width="0.4" height="15.0" fill="rgb(217,154,24)" rx="2" ry="2" /> +<text x="850.24" y="2447.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (2 samples, 0.06%)</title><rect x="280.4" y="1941" width="0.6" height="15.0" fill="rgb(249,92,9)" rx="2" ry="2" /> +<text x="283.38" y="1951.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (2 samples, 0.06%)</title><rect x="842.9" y="2629" width="0.7" height="15.0" fill="rgb(231,40,21)" rx="2" ry="2" /> +<text x="845.94" y="2639.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="670.1" y="2469" width="0.3" height="15.0" fill="rgb(222,129,0)" rx="2" ry="2" /> +<text x="673.07" y="2479.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (63 samples, 1.76%)</title><rect x="369.9" y="1989" width="20.9" height="15.0" fill="rgb(216,178,46)" rx="2" ry="2" /> +<text x="372.95" y="1999.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="843.6" y="2629" width="0.3" height="15.0" fill="rgb(254,208,0)" rx="2" ry="2" /> +<text x="846.60" y="2639.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (3 samples, 0.08%)</title><rect x="316.1" y="1701" width="1.0" height="15.0" fill="rgb(215,111,26)" rx="2" ry="2" /> +<text x="319.07" y="1711.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (1 samples, 0.03%)</title><rect x="400.7" y="1877" width="0.3" height="15.0" fill="rgb(238,178,9)" rx="2" ry="2" /> +<text x="403.69" y="1887.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="1105.4" y="3397" width="0.3" height="15.0" fill="rgb(254,184,31)" rx="2" ry="2" /> +<text x="1108.38" y="3407.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (2 samples, 0.06%)</title><rect x="697.2" y="2453" width="0.6" height="15.0" fill="rgb(221,70,43)" rx="2" ry="2" /> +<text x="700.18" y="2463.5" ></text> +</g> +<g > +<title><unknown> (1 samples, 0.03%)</title><rect x="870.4" y="1413" width="0.3" height="15.0" fill="rgb(221,3,5)" rx="2" ry="2" /> +<text x="873.38" y="1423.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (2 samples, 0.06%)</title><rect x="839.0" y="2213" width="0.6" height="15.0" fill="rgb(248,120,17)" rx="2" ry="2" /> +<text x="841.97" y="2223.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (2 samples, 0.06%)</title><rect x="824.4" y="2165" width="0.7" height="15.0" fill="rgb(246,223,30)" rx="2" ry="2" /> +<text x="827.43" y="2175.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (4 samples, 0.11%)</title><rect x="303.8" y="1861" width="1.4" height="15.0" fill="rgb(209,182,37)" rx="2" ry="2" /> +<text x="306.84" y="1871.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (309 samples, 8.66%)</title><rect x="851.5" y="2997" width="102.2" height="15.0" fill="rgb(222,22,26)" rx="2" ry="2" /> +<text x="854.54" y="3007.5" >Nsfisis\Wadd..</text> +</g> +<g > +<title>Nsfisis\Waddiwasi\BinaryFormat\Decoder::{closure}(/home/ken/src/php-waddiwasi/src/BinaryFormat/Decoder.php:518-531) (1 samples, 0.03%)</title><rect x="848.2" y="3029" width="0.4" height="15.0" fill="rgb(233,58,40)" rx="2" ry="2" /> +<text x="851.23" y="3039.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="325.3" y="2149" width="0.4" height="15.0" fill="rgb(253,42,34)" rx="2" ry="2" /> +<text x="328.33" y="2159.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (2 samples, 0.06%)</title><rect x="842.3" y="2709" width="0.6" height="15.0" fill="rgb(231,125,50)" rx="2" ry="2" /> +<text x="845.28" y="2719.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (6 samples, 0.17%)</title><rect x="662.8" y="2213" width="2.0" height="15.0" fill="rgb(211,141,36)" rx="2" ry="2" /> +<text x="665.80" y="2223.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (2 samples, 0.06%)</title><rect x="656.2" y="2085" width="0.7" height="15.0" fill="rgb(225,16,5)" rx="2" ry="2" /> +<text x="659.19" y="2095.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Stack::pushValue (1 samples, 0.03%)</title><rect x="1106.0" y="3477" width="0.4" height="15.0" fill="rgb(245,147,35)" rx="2" ry="2" /> +<text x="1109.04" y="3487.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (2 samples, 0.06%)</title><rect x="407.0" y="2149" width="0.6" height="15.0" fill="rgb(240,119,35)" rx="2" ry="2" /> +<text x="409.97" y="2159.5" ></text> +</g> +<g > +<title>assert (1 samples, 0.03%)</title><rect x="1141.4" y="3509" width="0.3" height="15.0" fill="rgb(209,132,41)" rx="2" ry="2" /> +<text x="1144.41" y="3519.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="856.2" y="2501" width="0.3" height="15.0" fill="rgb(212,117,6)" rx="2" ry="2" /> +<text x="859.16" y="2511.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (306 samples, 8.57%)</title><rect x="852.5" y="2965" width="101.2" height="15.0" fill="rgb(221,18,24)" rx="2" ry="2" /> +<text x="855.53" y="2975.5" >Nsfisis\Wadd..</text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (1 samples, 0.03%)</title><rect x="894.5" y="2645" width="0.3" height="15.0" fill="rgb(227,112,12)" rx="2" ry="2" /> +<text x="897.50" y="2655.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.03%)</title><rect x="313.4" y="2101" width="0.4" height="15.0" fill="rgb(226,216,6)" rx="2" ry="2" /> +<text x="316.43" y="2111.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (5 samples, 0.14%)</title><rect x="315.4" y="2069" width="1.7" height="15.0" fill="rgb(236,155,52)" rx="2" ry="2" /> +<text x="318.41" y="2079.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="697.5" y="2085" width="0.3" height="15.0" fill="rgb(209,142,53)" rx="2" ry="2" /> +<text x="700.51" y="2095.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (16 samples, 0.45%)</title><rect x="1132.2" y="3301" width="5.2" height="15.0" fill="rgb(208,173,36)" rx="2" ry="2" /> +<text x="1135.16" y="3311.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (2 samples, 0.06%)</title><rect x="357.7" y="1653" width="0.7" height="15.0" fill="rgb(216,29,51)" rx="2" ry="2" /> +<text x="360.72" y="1663.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (2 samples, 0.06%)</title><rect x="419.9" y="2277" width="0.6" height="15.0" fill="rgb(228,114,8)" rx="2" ry="2" /> +<text x="422.86" y="2287.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (317 samples, 8.88%)</title><rect x="849.6" y="3269" width="104.7" height="15.0" fill="rgb(244,186,13)" rx="2" ry="2" /> +<text x="852.55" y="3279.5" >Nsfisis\Wadd..</text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (6 samples, 0.17%)</title><rect x="849.6" y="2885" width="1.9" height="15.0" fill="rgb(246,194,48)" rx="2" ry="2" /> +<text x="852.55" y="2895.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="799.0" y="2245" width="0.3" height="15.0" fill="rgb(235,44,33)" rx="2" ry="2" /> +<text x="801.98" y="2255.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="841.3" y="2357" width="0.3" height="15.0" fill="rgb(233,177,4)" rx="2" ry="2" /> +<text x="844.29" y="2367.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="847.9" y="2629" width="0.3" height="15.0" fill="rgb(208,139,30)" rx="2" ry="2" /> +<text x="850.90" y="2639.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (2 samples, 0.06%)</title><rect x="697.2" y="2325" width="0.6" height="15.0" fill="rgb(252,62,23)" rx="2" ry="2" /> +<text x="700.18" y="2335.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.03%)</title><rect x="847.9" y="2645" width="0.3" height="15.0" fill="rgb(252,103,0)" rx="2" ry="2" /> +<text x="850.90" y="2655.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Stack::currentFrame (1 samples, 0.03%)</title><rect x="406.6" y="2005" width="0.4" height="15.0" fill="rgb(248,16,50)" rx="2" ry="2" /> +<text x="409.64" y="2015.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (3 samples, 0.08%)</title><rect x="952.0" y="2677" width="1.0" height="15.0" fill="rgb(233,61,33)" rx="2" ry="2" /> +<text x="955.02" y="2687.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\StackEntry::Value (3 samples, 0.08%)</title><rect x="222.2" y="3445" width="1.0" height="15.0" fill="rgb(214,151,19)" rx="2" ry="2" /> +<text x="225.20" y="3455.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="1154.6" y="3333" width="0.4" height="15.0" fill="rgb(240,47,35)" rx="2" ry="2" /> +<text x="1157.63" y="3343.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.03%)</title><rect x="955.3" y="2677" width="0.4" height="15.0" fill="rgb(221,6,49)" rx="2" ry="2" /> +<text x="958.32" y="2687.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (5 samples, 0.14%)</title><rect x="339.9" y="2037" width="1.6" height="15.0" fill="rgb(230,114,51)" rx="2" ry="2" /> +<text x="342.87" y="2047.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (12 samples, 0.34%)</title><rect x="834.7" y="2293" width="3.9" height="15.0" fill="rgb(232,202,3)" rx="2" ry="2" /> +<text x="837.68" y="2303.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (28 samples, 0.78%)</title><rect x="303.5" y="1989" width="9.3" height="15.0" fill="rgb(249,11,6)" rx="2" ry="2" /> +<text x="306.51" y="1999.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (173 samples, 4.85%)</title><rect x="784.4" y="2533" width="57.2" height="15.0" fill="rgb(222,34,53)" rx="2" ry="2" /> +<text x="787.44" y="2543.5" >Nsfisi..</text> +</g> +<g > +<title><unknown> (1 samples, 0.03%)</title><rect x="870.4" y="1941" width="0.3" height="15.0" fill="rgb(230,188,20)" rx="2" ry="2" /> +<text x="873.38" y="1951.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (5 samples, 0.14%)</title><rect x="366.3" y="1781" width="1.7" height="15.0" fill="rgb(246,0,14)" rx="2" ry="2" /> +<text x="369.31" y="1791.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (2 samples, 0.06%)</title><rect x="954.7" y="773" width="0.6" height="15.0" fill="rgb(225,174,36)" rx="2" ry="2" /> +<text x="957.66" y="783.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="297.6" y="1701" width="0.3" height="15.0" fill="rgb(252,75,51)" rx="2" ry="2" /> +<text x="300.56" y="1711.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="938.1" y="2437" width="0.4" height="15.0" fill="rgb(240,164,27)" rx="2" ry="2" /> +<text x="941.13" y="2447.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (2 samples, 0.06%)</title><rect x="296.9" y="1637" width="0.7" height="15.0" fill="rgb(226,118,22)" rx="2" ry="2" /> +<text x="299.90" y="1647.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (13 samples, 0.36%)</title><rect x="671.7" y="2789" width="4.3" height="15.0" fill="rgb(237,106,14)" rx="2" ry="2" /> +<text x="674.73" y="2799.5" ></text> +</g> +<g > +<title><unknown> (1 samples, 0.03%)</title><rect x="937.1" y="2421" width="0.4" height="15.0" fill="rgb(241,227,16)" rx="2" ry="2" /> +<text x="940.14" y="2431.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.03%)</title><rect x="314.1" y="1525" width="0.3" height="15.0" fill="rgb(217,100,45)" rx="2" ry="2" /> +<text x="317.09" y="1535.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (8 samples, 0.22%)</title><rect x="888.2" y="2613" width="2.7" height="15.0" fill="rgb(241,160,21)" rx="2" ry="2" /> +<text x="891.22" y="2623.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="670.1" y="2725" width="0.3" height="15.0" fill="rgb(227,41,20)" rx="2" ry="2" /> +<text x="673.07" y="2735.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (1 samples, 0.03%)</title><rect x="298.9" y="1653" width="0.3" height="15.0" fill="rgb(250,227,15)" rx="2" ry="2" /> +<text x="301.89" y="1663.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.03%)</title><rect x="254.3" y="2197" width="0.3" height="15.0" fill="rgb(227,22,24)" rx="2" ry="2" /> +<text x="257.26" y="2207.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Stack::popI32 (1 samples, 0.03%)</title><rect x="938.8" y="2517" width="0.3" height="15.0" fill="rgb(234,56,0)" rx="2" ry="2" /> +<text x="941.80" y="2527.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (3 samples, 0.08%)</title><rect x="848.6" y="3333" width="1.0" height="15.0" fill="rgb(210,70,11)" rx="2" ry="2" /> +<text x="851.56" y="3343.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (1 samples, 0.03%)</title><rect x="301.5" y="1717" width="0.4" height="15.0" fill="rgb(244,113,44)" rx="2" ry="2" /> +<text x="304.53" y="1727.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="847.2" y="2597" width="0.4" height="15.0" fill="rgb(241,222,36)" rx="2" ry="2" /> +<text x="850.24" y="2607.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="954.0" y="3045" width="0.3" height="15.0" fill="rgb(207,12,20)" rx="2" ry="2" /> +<text x="957.00" y="3055.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="954.3" y="2757" width="0.4" height="15.0" fill="rgb(206,145,54)" rx="2" ry="2" /> +<text x="957.33" y="2767.5" ></text> +</g> +<g > +<title><unknown> (1 samples, 0.03%)</title><rect x="386.5" y="1653" width="0.3" height="15.0" fill="rgb(209,46,53)" rx="2" ry="2" /> +<text x="389.48" y="1663.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (10 samples, 0.28%)</title><rect x="355.4" y="1845" width="3.3" height="15.0" fill="rgb(212,137,49)" rx="2" ry="2" /> +<text x="358.41" y="1855.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::deactivateFrame (1 samples, 0.03%)</title><rect x="941.8" y="2613" width="0.3" height="15.0" fill="rgb(253,173,25)" rx="2" ry="2" /> +<text x="944.77" y="2623.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (2 samples, 0.06%)</title><rect x="348.1" y="1957" width="0.7" height="15.0" fill="rgb(244,173,6)" rx="2" ry="2" /> +<text x="351.13" y="1967.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="954.3" y="3237" width="0.4" height="15.0" fill="rgb(237,109,30)" rx="2" ry="2" /> +<text x="957.33" y="3247.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\ControlFlowResults\Br::__construct (1 samples, 0.03%)</title><rect x="1116.0" y="3477" width="0.3" height="15.0" fill="rgb(228,159,27)" rx="2" ry="2" /> +<text x="1118.96" y="3487.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (6 samples, 0.17%)</title><rect x="247.3" y="3253" width="2.0" height="15.0" fill="rgb(219,148,11)" rx="2" ry="2" /> +<text x="250.32" y="3263.5" ></text> +</g> +<g > +<title><unknown> (5 samples, 0.14%)</title><rect x="1114.3" y="3477" width="1.7" height="15.0" fill="rgb(221,25,35)" rx="2" ry="2" /> +<text x="1117.31" y="3487.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (1 samples, 0.03%)</title><rect x="954.3" y="3013" width="0.4" height="15.0" fill="rgb(227,64,39)" rx="2" ry="2" /> +<text x="957.33" y="3023.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (40 samples, 1.12%)</title><rect x="1125.2" y="3429" width="13.2" height="15.0" fill="rgb(205,26,20)" rx="2" ry="2" /> +<text x="1128.22" y="3439.5" ></text> +</g> +<g > +<title><unknown> (1 samples, 0.03%)</title><rect x="705.8" y="2645" width="0.3" height="15.0" fill="rgb(209,135,26)" rx="2" ry="2" /> +<text x="708.77" y="2655.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (1 samples, 0.03%)</title><rect x="363.0" y="1829" width="0.3" height="15.0" fill="rgb(215,140,0)" rx="2" ry="2" /> +<text x="366.01" y="1839.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Stack::pushValue (1 samples, 0.03%)</title><rect x="364.0" y="1845" width="0.3" height="15.0" fill="rgb(221,226,46)" rx="2" ry="2" /> +<text x="367.00" y="1855.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.03%)</title><rect x="877.6" y="2165" width="0.4" height="15.0" fill="rgb(242,144,42)" rx="2" ry="2" /> +<text x="880.65" y="2175.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (2 samples, 0.06%)</title><rect x="954.7" y="789" width="0.6" height="15.0" fill="rgb(224,25,34)" rx="2" ry="2" /> +<text x="957.66" y="799.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (2 samples, 0.06%)</title><rect x="302.2" y="1541" width="0.7" height="15.0" fill="rgb(205,23,37)" rx="2" ry="2" /> +<text x="305.19" y="1551.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="315.4" y="1509" width="0.3" height="15.0" fill="rgb(206,110,54)" rx="2" ry="2" /> +<text x="318.41" y="1519.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (3 samples, 0.08%)</title><rect x="307.1" y="1797" width="1.0" height="15.0" fill="rgb(232,159,28)" rx="2" ry="2" /> +<text x="310.15" y="1807.5" ></text> +</g> +<g > +<title><unknown> (59 samples, 1.65%)</title><rect x="153.8" y="3445" width="19.5" height="15.0" fill="rgb(224,96,45)" rx="2" ry="2" /> +<text x="156.78" y="3455.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (328 samples, 9.19%)</title><rect x="676.0" y="2869" width="108.4" height="15.0" fill="rgb(232,213,32)" rx="2" ry="2" /> +<text x="679.02" y="2879.5" >Nsfisis\Waddi..</text> +</g> +<g > +<title><unknown> (1 samples, 0.03%)</title><rect x="870.4" y="1141" width="0.3" height="15.0" fill="rgb(222,82,35)" rx="2" ry="2" /> +<text x="873.38" y="1151.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="420.2" y="2245" width="0.3" height="15.0" fill="rgb(232,181,43)" rx="2" ry="2" /> +<text x="423.19" y="2255.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (12 samples, 0.34%)</title><rect x="402.7" y="1877" width="3.9" height="15.0" fill="rgb(221,214,43)" rx="2" ry="2" /> +<text x="405.67" y="1887.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (7 samples, 0.20%)</title><rect x="890.9" y="2645" width="2.3" height="15.0" fill="rgb(231,87,51)" rx="2" ry="2" /> +<text x="893.87" y="2655.5" ></text> +</g> +<g > +<title><unknown> (1 samples, 0.03%)</title><rect x="197.1" y="3429" width="0.3" height="15.0" fill="rgb(239,87,48)" rx="2" ry="2" /> +<text x="200.08" y="3439.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.03%)</title><rect x="299.9" y="1781" width="0.3" height="15.0" fill="rgb(239,0,6)" rx="2" ry="2" /> +<text x="302.88" y="1791.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="954.3" y="3045" width="0.4" height="15.0" fill="rgb(251,141,52)" rx="2" ry="2" /> +<text x="957.33" y="3055.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="299.9" y="1669" width="0.3" height="15.0" fill="rgb(252,125,46)" rx="2" ry="2" /> +<text x="302.88" y="1679.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.03%)</title><rect x="288.3" y="1845" width="0.3" height="15.0" fill="rgb(227,174,21)" rx="2" ry="2" /> +<text x="291.31" y="1855.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (692 samples, 19.38%)</title><rect x="420.9" y="2277" width="228.7" height="15.0" fill="rgb(250,106,50)" rx="2" ry="2" /> +<text x="423.85" y="2287.5" >Nsfisis\Waddiwasi\Execution\Ru..</text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.03%)</title><rect x="251.6" y="2709" width="0.3" height="15.0" fill="rgb(242,133,45)" rx="2" ry="2" /> +<text x="254.62" y="2719.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (6 samples, 0.17%)</title><rect x="374.2" y="1829" width="2.0" height="15.0" fill="rgb(206,90,42)" rx="2" ry="2" /> +<text x="377.25" y="1839.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.03%)</title><rect x="299.9" y="1813" width="0.3" height="15.0" fill="rgb(241,164,40)" rx="2" ry="2" /> +<text x="302.88" y="1823.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (2 samples, 0.06%)</title><rect x="370.3" y="1637" width="0.6" height="15.0" fill="rgb(209,83,1)" rx="2" ry="2" /> +<text x="373.28" y="1647.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (1 samples, 0.03%)</title><rect x="892.5" y="2581" width="0.4" height="15.0" fill="rgb(245,97,45)" rx="2" ry="2" /> +<text x="895.52" y="2591.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="1153.6" y="3429" width="0.4" height="15.0" fill="rgb(221,136,0)" rx="2" ry="2" /> +<text x="1156.64" y="3439.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (67 samples, 1.88%)</title><rect x="856.5" y="2629" width="22.1" height="15.0" fill="rgb(215,2,52)" rx="2" ry="2" /> +<text x="859.49" y="2639.5" >N..</text> +</g> +<g > +<title>Nsfisis\Waddiwasi\BinaryFormat\Decoder::decodeInstr (2 samples, 0.06%)</title><rect x="12.3" y="3253" width="0.7" height="15.0" fill="rgb(225,128,11)" rx="2" ry="2" /> +<text x="15.31" y="3263.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (1 samples, 0.03%)</title><rect x="404.7" y="1189" width="0.3" height="15.0" fill="rgb(231,82,5)" rx="2" ry="2" /> +<text x="407.66" y="1199.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="251.9" y="2661" width="0.4" height="15.0" fill="rgb(206,4,13)" rx="2" ry="2" /> +<text x="254.95" y="2671.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::invokeByFuncAddr (1 samples, 0.03%)</title><rect x="955.3" y="2757" width="0.4" height="15.0" fill="rgb(209,114,33)" rx="2" ry="2" /> +<text x="958.32" y="2767.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Stack::popValue (1 samples, 0.03%)</title><rect x="247.0" y="3141" width="0.3" height="15.0" fill="rgb(210,133,28)" rx="2" ry="2" /> +<text x="249.99" y="3151.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="249.3" y="2725" width="0.3" height="15.0" fill="rgb(225,81,11)" rx="2" ry="2" /> +<text x="252.31" y="2735.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.03%)</title><rect x="701.5" y="2325" width="0.3" height="15.0" fill="rgb(222,119,16)" rx="2" ry="2" /> +<text x="704.47" y="2335.5" ></text> +</g> +<g > +<title>{closure}(/home/ken/src/php-waddiwasi/examples/php-on-wasm/php-wasm.php:286-297) (1 samples, 0.03%)</title><rect x="954.3" y="3317" width="0.4" height="15.0" fill="rgb(215,92,34)" rx="2" ry="2" /> +<text x="957.33" y="3327.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (2 samples, 0.06%)</title><rect x="304.5" y="1829" width="0.7" height="15.0" fill="rgb(215,121,30)" rx="2" ry="2" /> +<text x="307.50" y="1839.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.03%)</title><rect x="954.0" y="2805" width="0.3" height="15.0" fill="rgb(242,218,46)" rx="2" ry="2" /> +<text x="957.00" y="2815.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="358.4" y="1445" width="0.3" height="15.0" fill="rgb(234,118,35)" rx="2" ry="2" /> +<text x="361.38" y="1455.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (22 samples, 0.62%)</title><rect x="823.1" y="2181" width="7.3" height="15.0" fill="rgb(208,188,9)" rx="2" ry="2" /> +<text x="826.11" y="2191.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (5 samples, 0.14%)</title><rect x="796.7" y="2229" width="1.6" height="15.0" fill="rgb(205,154,25)" rx="2" ry="2" /> +<text x="799.67" y="2239.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.03%)</title><rect x="1090.8" y="3413" width="0.4" height="15.0" fill="rgb(233,138,0)" rx="2" ry="2" /> +<text x="1093.84" y="3423.5" ></text> +</g> +<g > +<title><unknown> (1 samples, 0.03%)</title><rect x="947.7" y="2549" width="0.4" height="15.0" fill="rgb(221,138,29)" rx="2" ry="2" /> +<text x="950.72" y="2559.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (6 samples, 0.17%)</title><rect x="879.3" y="2693" width="2.0" height="15.0" fill="rgb(216,217,51)" rx="2" ry="2" /> +<text x="882.30" y="2703.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (2 samples, 0.06%)</title><rect x="842.9" y="2565" width="0.7" height="15.0" fill="rgb(207,172,47)" rx="2" ry="2" /> +<text x="845.94" y="2575.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.03%)</title><rect x="697.5" y="2037" width="0.3" height="15.0" fill="rgb(246,215,31)" rx="2" ry="2" /> +<text x="700.51" y="2047.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="894.8" y="2661" width="0.4" height="15.0" fill="rgb(222,143,10)" rx="2" ry="2" /> +<text x="897.83" y="2671.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (5 samples, 0.14%)</title><rect x="366.3" y="1701" width="1.7" height="15.0" fill="rgb(210,70,7)" rx="2" ry="2" /> +<text x="369.31" y="1711.5" ></text> +</g> +<g > +<title>file_exists (1 samples, 0.03%)</title><rect x="846.2" y="2949" width="0.4" height="15.0" fill="rgb(210,40,36)" rx="2" ry="2" /> +<text x="849.25" y="2959.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::invokeByFuncAddr (1 samples, 0.03%)</title><rect x="954.0" y="2469" width="0.3" height="15.0" fill="rgb(251,164,22)" rx="2" ry="2" /> +<text x="957.00" y="2479.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (2 samples, 0.06%)</title><rect x="1104.1" y="2693" width="0.6" height="15.0" fill="rgb(227,123,3)" rx="2" ry="2" /> +<text x="1107.06" y="2703.5" ></text> +</g> +<g > +<title><unknown> (1 samples, 0.03%)</title><rect x="1096.1" y="3349" width="0.4" height="15.0" fill="rgb(222,202,47)" rx="2" ry="2" /> +<text x="1099.13" y="3359.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (2 samples, 0.06%)</title><rect x="369.3" y="1861" width="0.6" height="15.0" fill="rgb(205,14,1)" rx="2" ry="2" /> +<text x="372.29" y="1871.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="670.1" y="2693" width="0.3" height="15.0" fill="rgb(221,52,36)" rx="2" ry="2" /> +<text x="673.07" y="2703.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (1 samples, 0.03%)</title><rect x="316.4" y="965" width="0.3" height="15.0" fill="rgb(211,191,7)" rx="2" ry="2" /> +<text x="319.40" y="975.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="302.5" y="1349" width="0.4" height="15.0" fill="rgb(248,122,48)" rx="2" ry="2" /> +<text x="305.52" y="1359.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="677.0" y="2661" width="0.3" height="15.0" fill="rgb(212,169,19)" rx="2" ry="2" /> +<text x="680.01" y="2671.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.03%)</title><rect x="298.6" y="1621" width="0.3" height="15.0" fill="rgb(242,58,51)" rx="2" ry="2" /> +<text x="301.55" y="1631.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.03%)</title><rect x="316.4" y="853" width="0.3" height="15.0" fill="rgb(245,224,16)" rx="2" ry="2" /> +<text x="319.40" y="863.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.03%)</title><rect x="1136.8" y="3093" width="0.3" height="15.0" fill="rgb(251,17,15)" rx="2" ry="2" /> +<text x="1139.78" y="3103.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.03%)</title><rect x="298.9" y="1717" width="0.3" height="15.0" fill="rgb(224,23,0)" rx="2" ry="2" /> +<text x="301.89" y="1727.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (8 samples, 0.22%)</title><rect x="944.7" y="2549" width="2.7" height="15.0" fill="rgb(235,202,5)" rx="2" ry="2" /> +<text x="947.75" y="2559.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.03%)</title><rect x="954.0" y="2613" width="0.3" height="15.0" fill="rgb(231,225,49)" rx="2" ry="2" /> +<text x="957.00" y="2623.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.03%)</title><rect x="328.3" y="2133" width="0.3" height="15.0" fill="rgb(210,222,16)" rx="2" ry="2" /> +<text x="331.30" y="2143.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (3 samples, 0.08%)</title><rect x="298.2" y="1765" width="1.0" height="15.0" fill="rgb(207,191,52)" rx="2" ry="2" /> +<text x="301.22" y="1775.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="406.6" y="1765" width="0.4" height="15.0" fill="rgb(236,156,11)" rx="2" ry="2" /> +<text x="409.64" y="1775.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="847.9" y="2693" width="0.3" height="15.0" fill="rgb(241,85,24)" rx="2" ry="2" /> +<text x="850.90" y="2703.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (2 samples, 0.06%)</title><rect x="1104.1" y="2933" width="0.6" height="15.0" fill="rgb(210,147,47)" rx="2" ry="2" /> +<text x="1107.06" y="2943.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (4 samples, 0.11%)</title><rect x="844.6" y="2869" width="1.3" height="15.0" fill="rgb(245,65,29)" rx="2" ry="2" /> +<text x="847.59" y="2879.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\MemInst::storeByte (1 samples, 0.03%)</title><rect x="1162.9" y="3493" width="0.3" height="15.0" fill="rgb(254,151,17)" rx="2" ry="2" /> +<text x="1165.90" y="3503.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::invokeByFuncAddr (5 samples, 0.14%)</title><rect x="846.6" y="3045" width="1.6" height="15.0" fill="rgb(231,33,51)" rx="2" ry="2" /> +<text x="849.58" y="3055.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (4 samples, 0.11%)</title><rect x="306.8" y="1909" width="1.3" height="15.0" fill="rgb(209,218,49)" rx="2" ry="2" /> +<text x="309.82" y="1919.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (7 samples, 0.20%)</title><rect x="658.5" y="2085" width="2.3" height="15.0" fill="rgb(228,3,9)" rx="2" ry="2" /> +<text x="661.50" y="2095.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (1 samples, 0.03%)</title><rect x="1090.8" y="3429" width="0.4" height="15.0" fill="rgb(216,96,30)" rx="2" ry="2" /> +<text x="1093.84" y="3439.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (5 samples, 0.14%)</title><rect x="311.1" y="1829" width="1.7" height="15.0" fill="rgb(205,192,26)" rx="2" ry="2" /> +<text x="314.11" y="1839.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="790.1" y="1797" width="0.3" height="15.0" fill="rgb(212,179,51)" rx="2" ry="2" /> +<text x="793.06" y="1807.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (2 samples, 0.06%)</title><rect x="668.1" y="2757" width="0.7" height="15.0" fill="rgb(205,137,6)" rx="2" ry="2" /> +<text x="671.09" y="2767.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Stack::currentFrame (1 samples, 0.03%)</title><rect x="341.9" y="2069" width="0.3" height="15.0" fill="rgb(244,93,28)" rx="2" ry="2" /> +<text x="344.85" y="2079.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (2 samples, 0.06%)</title><rect x="691.2" y="2325" width="0.7" height="15.0" fill="rgb(206,4,46)" rx="2" ry="2" /> +<text x="694.23" y="2335.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.03%)</title><rect x="1159.3" y="3477" width="0.3" height="15.0" fill="rgb(210,47,24)" rx="2" ry="2" /> +<text x="1162.26" y="3487.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (2 samples, 0.06%)</title><rect x="954.7" y="309" width="0.6" height="15.0" fill="rgb(251,112,42)" rx="2" ry="2" /> +<text x="957.66" y="319.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (5 samples, 0.14%)</title><rect x="846.6" y="2981" width="1.6" height="15.0" fill="rgb(210,190,41)" rx="2" ry="2" /> +<text x="849.58" y="2991.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (3 samples, 0.08%)</title><rect x="842.9" y="2661" width="1.0" height="15.0" fill="rgb(240,20,29)" rx="2" ry="2" /> +<text x="845.94" y="2671.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="347.1" y="1925" width="0.4" height="15.0" fill="rgb(244,62,3)" rx="2" ry="2" /> +<text x="350.14" y="1935.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Nums\I32::__construct (2 samples, 0.06%)</title><rect x="1106.7" y="3509" width="0.7" height="15.0" fill="rgb(219,6,49)" rx="2" ry="2" /> +<text x="1109.71" y="3519.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (1 samples, 0.03%)</title><rect x="661.8" y="2005" width="0.3" height="15.0" fill="rgb(213,78,6)" rx="2" ry="2" /> +<text x="664.81" y="2015.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (11 samples, 0.31%)</title><rect x="281.4" y="1989" width="3.6" height="15.0" fill="rgb(243,158,17)" rx="2" ry="2" /> +<text x="284.37" y="1999.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (12 samples, 0.34%)</title><rect x="834.7" y="2277" width="3.9" height="15.0" fill="rgb(254,25,39)" rx="2" ry="2" /> +<text x="837.68" y="2287.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1,256 samples, 35.18%)</title><rect x="251.3" y="2821" width="415.1" height="15.0" fill="rgb(254,213,19)" rx="2" ry="2" /> +<text x="254.29" y="2831.5" >Nsfisis\Waddiwasi\Execution\Runtime::execInstr</text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.03%)</title><rect x="790.1" y="2165" width="0.3" height="15.0" fill="rgb(233,133,48)" rx="2" ry="2" /> +<text x="793.06" y="2175.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (2 samples, 0.06%)</title><rect x="954.7" y="1605" width="0.6" height="15.0" fill="rgb(215,185,35)" rx="2" ry="2" /> +<text x="957.66" y="1615.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="306.5" y="1701" width="0.3" height="15.0" fill="rgb(241,58,25)" rx="2" ry="2" /> +<text x="309.49" y="1711.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (74 samples, 2.07%)</title><rect x="854.2" y="2725" width="24.4" height="15.0" fill="rgb(212,84,53)" rx="2" ry="2" /> +<text x="857.18" y="2735.5" >N..</text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (10 samples, 0.28%)</title><rect x="870.7" y="2165" width="3.3" height="15.0" fill="rgb(234,51,36)" rx="2" ry="2" /> +<text x="873.71" y="2175.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (3 samples, 0.08%)</title><rect x="404.7" y="1669" width="0.9" height="15.0" fill="rgb(216,201,15)" rx="2" ry="2" /> +<text x="407.66" y="1679.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (4 samples, 0.11%)</title><rect x="954.7" y="2981" width="1.3" height="15.0" fill="rgb(238,97,40)" rx="2" ry="2" /> +<text x="957.66" y="2991.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (1 samples, 0.03%)</title><rect x="294.6" y="1893" width="0.3" height="15.0" fill="rgb(218,59,28)" rx="2" ry="2" /> +<text x="297.59" y="1903.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.03%)</title><rect x="666.1" y="2325" width="0.3" height="15.0" fill="rgb(246,3,16)" rx="2" ry="2" /> +<text x="669.11" y="2335.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\StackEntry::Value (6 samples, 0.17%)</title><rect x="173.3" y="3445" width="2.0" height="15.0" fill="rgb(251,16,0)" rx="2" ry="2" /> +<text x="176.28" y="3455.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.03%)</title><rect x="847.9" y="2709" width="0.3" height="15.0" fill="rgb(205,51,44)" rx="2" ry="2" /> +<text x="850.90" y="2719.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="363.7" y="1669" width="0.3" height="15.0" fill="rgb(215,227,44)" rx="2" ry="2" /> +<text x="366.67" y="1679.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (18 samples, 0.50%)</title><rect x="696.8" y="2597" width="6.0" height="15.0" fill="rgb(246,185,19)" rx="2" ry="2" /> +<text x="699.85" y="2607.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (44 samples, 1.23%)</title><rect x="351.4" y="2037" width="14.6" height="15.0" fill="rgb(217,76,15)" rx="2" ry="2" /> +<text x="354.44" y="2047.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.03%)</title><rect x="299.9" y="1749" width="0.3" height="15.0" fill="rgb(247,172,21)" rx="2" ry="2" /> +<text x="302.88" y="1759.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (7 samples, 0.20%)</title><rect x="890.9" y="2629" width="2.3" height="15.0" fill="rgb(223,144,49)" rx="2" ry="2" /> +<text x="893.87" y="2639.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (16 samples, 0.45%)</title><rect x="314.4" y="2197" width="5.3" height="15.0" fill="rgb(209,210,23)" rx="2" ry="2" /> +<text x="317.42" y="2207.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (2 samples, 0.06%)</title><rect x="691.2" y="2453" width="0.7" height="15.0" fill="rgb(237,171,14)" rx="2" ry="2" /> +<text x="694.23" y="2463.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (1 samples, 0.03%)</title><rect x="954.0" y="2453" width="0.3" height="15.0" fill="rgb(238,197,22)" rx="2" ry="2" /> +<text x="957.00" y="2463.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (8 samples, 0.22%)</title><rect x="373.6" y="1941" width="2.6" height="15.0" fill="rgb(221,155,50)" rx="2" ry="2" /> +<text x="376.59" y="1951.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (3 samples, 0.08%)</title><rect x="357.4" y="1749" width="1.0" height="15.0" fill="rgb(251,165,44)" rx="2" ry="2" /> +<text x="360.39" y="1759.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="298.9" y="1605" width="0.3" height="15.0" fill="rgb(224,51,4)" rx="2" ry="2" /> +<text x="301.89" y="1615.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (115 samples, 3.22%)</title><rect x="275.1" y="2165" width="38.0" height="15.0" fill="rgb(206,37,54)" rx="2" ry="2" /> +<text x="278.09" y="2175.5" >Nsf..</text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.03%)</title><rect x="401.0" y="1845" width="0.4" height="15.0" fill="rgb(214,37,50)" rx="2" ry="2" /> +<text x="404.02" y="1855.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="391.4" y="1701" width="0.4" height="15.0" fill="rgb(230,113,9)" rx="2" ry="2" /> +<text x="394.43" y="1711.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::deactivateLabel (1 samples, 0.03%)</title><rect x="1182.7" y="3525" width="0.4" height="15.0" fill="rgb(224,213,3)" rx="2" ry="2" /> +<text x="1185.73" y="3535.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="954.3" y="2981" width="0.4" height="15.0" fill="rgb(235,115,54)" rx="2" ry="2" /> +<text x="957.33" y="2991.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (685 samples, 19.19%)</title><rect x="422.2" y="1541" width="226.4" height="15.0" fill="rgb(206,207,45)" rx="2" ry="2" /> +<text x="425.17" y="1551.5" >Nsfisis\Waddiwasi\Execution\R..</text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (3 samples, 0.08%)</title><rect x="903.8" y="2629" width="1.0" height="15.0" fill="rgb(224,166,15)" rx="2" ry="2" /> +<text x="906.76" y="2639.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (4 samples, 0.11%)</title><rect x="833.4" y="2229" width="1.3" height="15.0" fill="rgb(221,195,27)" rx="2" ry="2" /> +<text x="836.36" y="2239.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.03%)</title><rect x="851.2" y="2453" width="0.3" height="15.0" fill="rgb(242,130,36)" rx="2" ry="2" /> +<text x="854.20" y="2463.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="274.8" y="2085" width="0.3" height="15.0" fill="rgb(236,199,33)" rx="2" ry="2" /> +<text x="277.76" y="2095.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.03%)</title><rect x="661.8" y="1909" width="0.3" height="15.0" fill="rgb(217,83,19)" rx="2" ry="2" /> +<text x="664.81" y="1919.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Stack::pushValue (1 samples, 0.03%)</title><rect x="952.7" y="2549" width="0.3" height="15.0" fill="rgb(250,171,14)" rx="2" ry="2" /> +<text x="955.68" y="2559.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="315.4" y="1541" width="0.3" height="15.0" fill="rgb(223,84,32)" rx="2" ry="2" /> +<text x="318.41" y="1551.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (2 samples, 0.06%)</title><rect x="695.5" y="2469" width="0.7" height="15.0" fill="rgb(254,191,16)" rx="2" ry="2" /> +<text x="698.52" y="2479.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (16 samples, 0.45%)</title><rect x="331.6" y="1861" width="5.3" height="15.0" fill="rgb(254,68,52)" rx="2" ry="2" /> +<text x="334.61" y="1871.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (1 samples, 0.03%)</title><rect x="665.4" y="2389" width="0.4" height="15.0" fill="rgb(216,41,1)" rx="2" ry="2" /> +<text x="668.45" y="2399.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="658.5" y="1989" width="0.3" height="15.0" fill="rgb(243,84,8)" rx="2" ry="2" /> +<text x="661.50" y="1999.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.03%)</title><rect x="270.8" y="1813" width="0.3" height="15.0" fill="rgb(229,222,51)" rx="2" ry="2" /> +<text x="273.79" y="1823.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (3 samples, 0.08%)</title><rect x="257.9" y="2021" width="1.0" height="15.0" fill="rgb(241,189,19)" rx="2" ry="2" /> +<text x="260.90" y="2031.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (2 samples, 0.06%)</title><rect x="954.7" y="1509" width="0.6" height="15.0" fill="rgb(207,216,44)" rx="2" ry="2" /> +<text x="957.66" y="1519.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="934.8" y="2437" width="0.4" height="15.0" fill="rgb(240,76,33)" rx="2" ry="2" /> +<text x="937.83" y="2447.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (26 samples, 0.73%)</title><rect x="667.4" y="2933" width="8.6" height="15.0" fill="rgb(211,1,54)" rx="2" ry="2" /> +<text x="670.43" y="2943.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="1130.8" y="3301" width="0.4" height="15.0" fill="rgb(226,56,50)" rx="2" ry="2" /> +<text x="1133.83" y="3311.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="855.8" y="2501" width="0.4" height="15.0" fill="rgb(240,24,53)" rx="2" ry="2" /> +<text x="858.83" y="2511.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\ControlFlowResult::Br (2 samples, 0.06%)</title><rect x="934.5" y="2453" width="0.7" height="15.0" fill="rgb(221,160,52)" rx="2" ry="2" /> +<text x="937.50" y="2463.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (11 samples, 0.31%)</title><rect x="874.7" y="2421" width="3.6" height="15.0" fill="rgb(254,50,16)" rx="2" ry="2" /> +<text x="877.67" y="2431.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doLoadI32 (6 samples, 0.17%)</title><rect x="1108.4" y="3509" width="1.9" height="15.0" fill="rgb(250,7,42)" rx="2" ry="2" /> +<text x="1111.36" y="3519.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (3 samples, 0.08%)</title><rect x="842.9" y="2789" width="1.0" height="15.0" fill="rgb(215,178,41)" rx="2" ry="2" /> +<text x="845.94" y="2799.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (7 samples, 0.20%)</title><rect x="314.8" y="2149" width="2.3" height="15.0" fill="rgb(248,89,46)" rx="2" ry="2" /> +<text x="317.75" y="2159.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (82 samples, 2.30%)</title><rect x="286.0" y="2085" width="27.1" height="15.0" fill="rgb(244,33,15)" rx="2" ry="2" /> +<text x="288.99" y="2095.5" >N..</text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.03%)</title><rect x="670.1" y="2741" width="0.3" height="15.0" fill="rgb(221,102,0)" rx="2" ry="2" /> +<text x="673.07" y="2751.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\BinaryFormat\Decoder::decodeInstr (6 samples, 0.17%)</title><rect x="11.7" y="3317" width="1.9" height="15.0" fill="rgb(234,82,33)" rx="2" ry="2" /> +<text x="14.65" y="3327.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.03%)</title><rect x="670.4" y="2709" width="0.3" height="15.0" fill="rgb(221,63,12)" rx="2" ry="2" /> +<text x="673.40" y="2719.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="346.2" y="1861" width="0.3" height="15.0" fill="rgb(244,212,25)" rx="2" ry="2" /> +<text x="349.15" y="1871.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="881.0" y="2597" width="0.3" height="15.0" fill="rgb(233,53,26)" rx="2" ry="2" /> +<text x="883.95" y="2607.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (7 samples, 0.20%)</title><rect x="296.9" y="1845" width="2.3" height="15.0" fill="rgb(213,224,24)" rx="2" ry="2" /> +<text x="299.90" y="1855.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Stack::pushValue (1 samples, 0.03%)</title><rect x="306.5" y="1717" width="0.3" height="15.0" fill="rgb(211,26,53)" rx="2" ry="2" /> +<text x="309.49" y="1727.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="670.1" y="2501" width="0.3" height="15.0" fill="rgb(251,115,54)" rx="2" ry="2" /> +<text x="673.07" y="2511.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (3 samples, 0.08%)</title><rect x="404.7" y="1573" width="0.9" height="15.0" fill="rgb(206,165,18)" rx="2" ry="2" /> +<text x="407.66" y="1583.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Stack::pushBool (1 samples, 0.03%)</title><rect x="348.8" y="1973" width="0.3" height="15.0" fill="rgb(206,103,45)" rx="2" ry="2" /> +<text x="351.80" y="1983.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (1 samples, 0.03%)</title><rect x="375.9" y="1461" width="0.3" height="15.0" fill="rgb(229,56,17)" rx="2" ry="2" /> +<text x="378.90" y="1471.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="312.4" y="1541" width="0.4" height="15.0" fill="rgb(241,45,23)" rx="2" ry="2" /> +<text x="315.44" y="1551.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.03%)</title><rect x="648.6" y="1525" width="0.3" height="15.0" fill="rgb(207,178,8)" rx="2" ry="2" /> +<text x="651.59" y="1535.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (1 samples, 0.03%)</title><rect x="249.3" y="2837" width="0.3" height="15.0" fill="rgb(240,84,45)" rx="2" ry="2" /> +<text x="252.31" y="2847.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="878.0" y="2309" width="0.3" height="15.0" fill="rgb(214,76,0)" rx="2" ry="2" /> +<text x="880.98" y="2319.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\BinaryFormat\Decoder::decodeInstrsUntil (2 samples, 0.06%)</title><rect x="12.3" y="3269" width="0.7" height="15.0" fill="rgb(225,29,6)" rx="2" ry="2" /> +<text x="15.31" y="3279.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (11 samples, 0.31%)</title><rect x="413.2" y="1973" width="3.7" height="15.0" fill="rgb(232,75,17)" rx="2" ry="2" /> +<text x="416.25" y="1983.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (38 samples, 1.06%)</title><rect x="652.6" y="2389" width="12.5" height="15.0" fill="rgb(207,219,17)" rx="2" ry="2" /> +<text x="655.55" y="2399.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="843.9" y="2661" width="0.4" height="15.0" fill="rgb(220,202,52)" rx="2" ry="2" /> +<text x="846.93" y="2671.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::deactivateLabel (1 samples, 0.03%)</title><rect x="829.4" y="2149" width="0.3" height="15.0" fill="rgb(232,150,44)" rx="2" ry="2" /> +<text x="832.39" y="2159.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="650.2" y="2085" width="0.4" height="15.0" fill="rgb(252,89,39)" rx="2" ry="2" /> +<text x="653.24" y="2095.5" ></text> +</g> +<g > +<title><unknown> (1 samples, 0.03%)</title><rect x="1182.1" y="3445" width="0.3" height="15.0" fill="rgb(219,223,39)" rx="2" ry="2" /> +<text x="1185.07" y="3455.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="954.3" y="2341" width="0.4" height="15.0" fill="rgb(226,83,5)" rx="2" ry="2" /> +<text x="957.33" y="2351.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (8 samples, 0.22%)</title><rect x="672.4" y="2565" width="2.6" height="15.0" fill="rgb(237,213,14)" rx="2" ry="2" /> +<text x="675.39" y="2575.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (4 samples, 0.11%)</title><rect x="388.5" y="1573" width="1.3" height="15.0" fill="rgb(227,174,6)" rx="2" ry="2" /> +<text x="391.46" y="1583.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (4 samples, 0.11%)</title><rect x="268.1" y="2101" width="1.4" height="15.0" fill="rgb(232,173,5)" rx="2" ry="2" /> +<text x="271.15" y="2111.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (2 samples, 0.06%)</title><rect x="369.3" y="1797" width="0.6" height="15.0" fill="rgb(231,4,40)" rx="2" ry="2" /> +<text x="372.29" y="1807.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="894.5" y="2597" width="0.3" height="15.0" fill="rgb(242,213,7)" rx="2" ry="2" /> +<text x="897.50" y="2607.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (16 samples, 0.45%)</title><rect x="384.5" y="1765" width="5.3" height="15.0" fill="rgb(217,214,0)" rx="2" ry="2" /> +<text x="387.49" y="1775.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.03%)</title><rect x="391.4" y="1973" width="0.4" height="15.0" fill="rgb(237,65,24)" rx="2" ry="2" /> +<text x="394.43" y="1983.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.03%)</title><rect x="411.6" y="1685" width="0.3" height="15.0" fill="rgb(224,147,40)" rx="2" ry="2" /> +<text x="414.60" y="1695.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (3 samples, 0.08%)</title><rect x="706.1" y="2693" width="1.0" height="15.0" fill="rgb(209,137,15)" rx="2" ry="2" /> +<text x="709.10" y="2703.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="955.3" y="2693" width="0.4" height="15.0" fill="rgb(223,27,38)" rx="2" ry="2" /> +<text x="958.32" y="2703.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="391.1" y="1893" width="0.3" height="15.0" fill="rgb(252,207,47)" rx="2" ry="2" /> +<text x="394.10" y="1903.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (3 samples, 0.08%)</title><rect x="850.2" y="2389" width="1.0" height="15.0" fill="rgb(226,65,45)" rx="2" ry="2" /> +<text x="853.21" y="2399.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="648.6" y="1541" width="0.3" height="15.0" fill="rgb(211,96,32)" rx="2" ry="2" /> +<text x="651.59" y="1551.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (2 samples, 0.06%)</title><rect x="672.4" y="2405" width="0.6" height="15.0" fill="rgb(210,167,5)" rx="2" ry="2" /> +<text x="675.39" y="2415.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (1 samples, 0.03%)</title><rect x="420.2" y="2165" width="0.3" height="15.0" fill="rgb(221,105,37)" rx="2" ry="2" /> +<text x="423.19" y="2175.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (1 samples, 0.03%)</title><rect x="707.1" y="2789" width="0.3" height="15.0" fill="rgb(253,61,49)" rx="2" ry="2" /> +<text x="710.09" y="2799.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (2 samples, 0.06%)</title><rect x="302.2" y="1493" width="0.7" height="15.0" fill="rgb(205,154,20)" rx="2" ry="2" /> +<text x="305.19" y="1503.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Allocator::allocMem (152 samples, 4.26%)</title><rect x="17.6" y="3493" width="50.2" height="15.0" fill="rgb(231,198,15)" rx="2" ry="2" /> +<text x="20.60" y="3503.5" >Nsfis..</text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Stack::popI32 (1 samples, 0.03%)</title><rect x="341.5" y="2037" width="0.4" height="15.0" fill="rgb(209,183,7)" rx="2" ry="2" /> +<text x="344.52" y="2047.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.03%)</title><rect x="269.5" y="2037" width="0.3" height="15.0" fill="rgb(221,198,36)" rx="2" ry="2" /> +<text x="272.47" y="2047.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (41 samples, 1.15%)</title><rect x="328.6" y="2165" width="13.6" height="15.0" fill="rgb(253,107,36)" rx="2" ry="2" /> +<text x="331.63" y="2175.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (174 samples, 4.87%)</title><rect x="784.4" y="2789" width="57.5" height="15.0" fill="rgb(206,137,30)" rx="2" ry="2" /> +<text x="787.44" y="2799.5" >Nsfisi..</text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\StackEntry::Value (3 samples, 0.08%)</title><rect x="1174.1" y="3525" width="1.0" height="15.0" fill="rgb(250,8,12)" rx="2" ry="2" /> +<text x="1177.13" y="3535.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (2 samples, 0.06%)</title><rect x="954.7" y="1541" width="0.6" height="15.0" fill="rgb(241,70,19)" rx="2" ry="2" /> +<text x="957.66" y="1551.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (1 samples, 0.03%)</title><rect x="262.2" y="1941" width="0.3" height="15.0" fill="rgb(217,97,54)" rx="2" ry="2" /> +<text x="265.20" y="1951.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\MemInst::storeByte (1 samples, 0.03%)</title><rect x="781.8" y="2165" width="0.3" height="15.0" fill="rgb(238,73,0)" rx="2" ry="2" /> +<text x="784.79" y="2175.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (686 samples, 19.22%)</title><rect x="422.2" y="1733" width="226.7" height="15.0" fill="rgb(239,116,20)" rx="2" ry="2" /> +<text x="425.17" y="1743.5" >Nsfisis\Waddiwasi\Execution\Ru..</text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.03%)</title><rect x="954.0" y="2933" width="0.3" height="15.0" fill="rgb(220,95,18)" rx="2" ry="2" /> +<text x="957.00" y="2943.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (219 samples, 6.13%)</title><rect x="710.7" y="2213" width="72.4" height="15.0" fill="rgb(237,114,40)" rx="2" ry="2" /> +<text x="713.73" y="2223.5" >Nsfisis\..</text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (5 samples, 0.14%)</title><rect x="415.2" y="1653" width="1.7" height="15.0" fill="rgb(218,171,36)" rx="2" ry="2" /> +<text x="418.23" y="1663.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (18 samples, 0.50%)</title><rect x="696.8" y="2661" width="6.0" height="15.0" fill="rgb(213,163,40)" rx="2" ry="2" /> +<text x="699.85" y="2671.5" ></text> +</g> +<g > +<title>Composer\Autoload\ClassLoader::findFileWithExtension (1 samples, 0.03%)</title><rect x="846.2" y="2965" width="0.4" height="15.0" fill="rgb(252,26,28)" rx="2" ry="2" /> +<text x="849.25" y="2975.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="783.8" y="2757" width="0.3" height="15.0" fill="rgb(237,227,35)" rx="2" ry="2" /> +<text x="786.78" y="2767.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (1 samples, 0.03%)</title><rect x="251.0" y="2629" width="0.3" height="15.0" fill="rgb(210,30,54)" rx="2" ry="2" /> +<text x="253.96" y="2639.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (4 samples, 0.11%)</title><rect x="954.7" y="3221" width="1.3" height="15.0" fill="rgb(218,228,7)" rx="2" ry="2" /> +<text x="957.66" y="3231.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="662.1" y="1893" width="0.4" height="15.0" fill="rgb(224,47,11)" rx="2" ry="2" /> +<text x="665.14" y="1903.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (4 samples, 0.11%)</title><rect x="954.7" y="3285" width="1.3" height="15.0" fill="rgb(246,214,32)" rx="2" ry="2" /> +<text x="957.66" y="3295.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (3 samples, 0.08%)</title><rect x="1107.4" y="3445" width="1.0" height="15.0" fill="rgb(229,198,24)" rx="2" ry="2" /> +<text x="1110.37" y="3455.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="407.3" y="2085" width="0.3" height="15.0" fill="rgb(231,147,37)" rx="2" ry="2" /> +<text x="410.30" y="2095.5" ></text> +</g> +<g > +<title><unknown> (6 samples, 0.17%)</title><rect x="1114.0" y="3493" width="2.0" height="15.0" fill="rgb(209,173,25)" rx="2" ry="2" /> +<text x="1116.98" y="3503.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (1,263 samples, 35.38%)</title><rect x="249.6" y="2949" width="417.5" height="15.0" fill="rgb(250,6,9)" rx="2" ry="2" /> +<text x="252.64" y="2959.5" >Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc</text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.03%)</title><rect x="391.4" y="1941" width="0.4" height="15.0" fill="rgb(248,172,9)" rx="2" ry="2" /> +<text x="394.43" y="1951.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (3 samples, 0.08%)</title><rect x="305.8" y="1877" width="1.0" height="15.0" fill="rgb(252,10,10)" rx="2" ry="2" /> +<text x="308.83" y="1887.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.03%)</title><rect x="304.8" y="1717" width="0.4" height="15.0" fill="rgb(240,206,7)" rx="2" ry="2" /> +<text x="307.83" y="1727.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="266.8" y="1637" width="0.4" height="15.0" fill="rgb(242,107,18)" rx="2" ry="2" /> +<text x="269.82" y="1647.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doStoreI32 (2 samples, 0.06%)</title><rect x="1162.6" y="3525" width="0.6" height="15.0" fill="rgb(223,218,35)" rx="2" ry="2" /> +<text x="1165.57" y="3535.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (20 samples, 0.56%)</title><rect x="410.6" y="2357" width="6.6" height="15.0" fill="rgb(230,104,17)" rx="2" ry="2" /> +<text x="413.61" y="2367.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doLoadI32 (1 samples, 0.03%)</title><rect x="258.2" y="2005" width="0.4" height="15.0" fill="rgb(234,190,8)" rx="2" ry="2" /> +<text x="261.23" y="2015.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (2 samples, 0.06%)</title><rect x="954.7" y="2693" width="0.6" height="15.0" fill="rgb(233,66,40)" rx="2" ry="2" /> +<text x="957.66" y="2703.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (1 samples, 0.03%)</title><rect x="421.5" y="2005" width="0.3" height="15.0" fill="rgb(227,166,34)" rx="2" ry="2" /> +<text x="424.51" y="2015.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (7 samples, 0.20%)</title><rect x="259.9" y="1989" width="2.3" height="15.0" fill="rgb(250,146,48)" rx="2" ry="2" /> +<text x="262.88" y="1999.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (5 samples, 0.14%)</title><rect x="891.5" y="2613" width="1.7" height="15.0" fill="rgb(239,173,44)" rx="2" ry="2" /> +<text x="894.53" y="2623.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.03%)</title><rect x="953.7" y="3061" width="0.3" height="15.0" fill="rgb(238,227,9)" rx="2" ry="2" /> +<text x="956.67" y="3071.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.03%)</title><rect x="314.1" y="1461" width="0.3" height="15.0" fill="rgb(211,214,16)" rx="2" ry="2" /> +<text x="317.09" y="1471.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (1 samples, 0.03%)</title><rect x="246.0" y="3045" width="0.3" height="15.0" fill="rgb(215,22,40)" rx="2" ry="2" /> +<text x="249.00" y="3055.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (18 samples, 0.50%)</title><rect x="932.2" y="2485" width="5.9" height="15.0" fill="rgb(243,142,21)" rx="2" ry="2" /> +<text x="935.18" y="2495.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="845.6" y="2661" width="0.3" height="15.0" fill="rgb(239,204,46)" rx="2" ry="2" /> +<text x="848.59" y="2671.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (2,148 samples, 60.17%)</title><rect x="246.0" y="3461" width="710.0" height="15.0" fill="rgb(234,2,44)" rx="2" ry="2" /> +<text x="249.00" y="3471.5" >Nsfisis\Waddiwasi\Execution\Runtime::execInstr</text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (53 samples, 1.48%)</title><rect x="372.9" y="1973" width="17.5" height="15.0" fill="rgb(221,69,23)" rx="2" ry="2" /> +<text x="375.92" y="1983.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Stack::popValue (1 samples, 0.03%)</title><rect x="917.6" y="2517" width="0.4" height="15.0" fill="rgb(245,11,39)" rx="2" ry="2" /> +<text x="920.64" y="2527.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="369.6" y="1765" width="0.3" height="15.0" fill="rgb(221,136,45)" rx="2" ry="2" /> +<text x="372.62" y="1775.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeHostFunc (1 samples, 0.03%)</title><rect x="954.0" y="2501" width="0.3" height="15.0" fill="rgb(237,80,1)" rx="2" ry="2" /> +<text x="957.00" y="2511.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (2 samples, 0.06%)</title><rect x="954.7" y="501" width="0.6" height="15.0" fill="rgb(253,70,51)" rx="2" ry="2" /> +<text x="957.66" y="511.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (8 samples, 0.22%)</title><rect x="373.6" y="1925" width="2.6" height="15.0" fill="rgb(219,33,34)" rx="2" ry="2" /> +<text x="376.59" y="1935.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (39 samples, 1.09%)</title><rect x="679.7" y="2533" width="12.8" height="15.0" fill="rgb(212,119,52)" rx="2" ry="2" /> +<text x="682.66" y="2543.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (1 samples, 0.03%)</title><rect x="650.2" y="2149" width="0.4" height="15.0" fill="rgb(214,25,7)" rx="2" ry="2" /> +<text x="653.24" y="2159.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (1 samples, 0.03%)</title><rect x="1159.3" y="3525" width="0.3" height="15.0" fill="rgb(212,43,33)" rx="2" ry="2" /> +<text x="1162.26" y="3535.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Stack::popI32 (1 samples, 0.03%)</title><rect x="1166.5" y="3525" width="0.4" height="15.0" fill="rgb(209,87,5)" rx="2" ry="2" /> +<text x="1169.53" y="3535.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (322 samples, 9.02%)</title><rect x="849.6" y="3413" width="106.4" height="15.0" fill="rgb(230,100,9)" rx="2" ry="2" /> +<text x="852.55" y="3423.5" >Nsfisis\Waddi..</text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="665.8" y="2309" width="0.3" height="15.0" fill="rgb(251,19,18)" rx="2" ry="2" /> +<text x="668.78" y="2319.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\StackEntry::Value (1 samples, 0.03%)</title><rect x="197.7" y="3445" width="0.4" height="15.0" fill="rgb(233,80,10)" rx="2" ry="2" /> +<text x="200.74" y="3455.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.03%)</title><rect x="365.7" y="1909" width="0.3" height="15.0" fill="rgb(252,30,35)" rx="2" ry="2" /> +<text x="368.65" y="1919.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="1182.7" y="3477" width="0.4" height="15.0" fill="rgb(240,156,25)" rx="2" ry="2" /> +<text x="1185.73" y="3487.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.03%)</title><rect x="328.3" y="2037" width="0.3" height="15.0" fill="rgb(240,133,3)" rx="2" ry="2" /> +<text x="331.30" y="2047.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (685 samples, 19.19%)</title><rect x="422.2" y="1221" width="226.4" height="15.0" fill="rgb(234,229,14)" rx="2" ry="2" /> +<text x="425.17" y="1231.5" >Nsfisis\Waddiwasi\Execution\R..</text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (6 samples, 0.17%)</title><rect x="849.6" y="2597" width="1.9" height="15.0" fill="rgb(236,77,3)" rx="2" ry="2" /> +<text x="852.55" y="2607.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="893.5" y="2661" width="0.3" height="15.0" fill="rgb(237,136,38)" rx="2" ry="2" /> +<text x="896.51" y="2671.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.03%)</title><rect x="423.2" y="725" width="0.3" height="15.0" fill="rgb(220,163,38)" rx="2" ry="2" /> +<text x="426.17" y="735.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (40 samples, 1.12%)</title><rect x="652.6" y="2453" width="13.2" height="15.0" fill="rgb(238,68,12)" rx="2" ry="2" /> +<text x="655.55" y="2463.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="344.8" y="1957" width="0.4" height="15.0" fill="rgb(245,90,52)" rx="2" ry="2" /> +<text x="347.83" y="1967.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="697.5" y="1957" width="0.3" height="15.0" fill="rgb(236,224,1)" rx="2" ry="2" /> +<text x="700.51" y="1967.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.03%)</title><rect x="894.8" y="2677" width="0.4" height="15.0" fill="rgb(226,74,42)" rx="2" ry="2" /> +<text x="897.83" y="2687.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (318 samples, 8.91%)</title><rect x="849.6" y="3349" width="105.1" height="15.0" fill="rgb(229,54,41)" rx="2" ry="2" /> +<text x="852.55" y="3359.5" >Nsfisis\Wadd..</text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (2 samples, 0.06%)</title><rect x="419.9" y="2309" width="0.6" height="15.0" fill="rgb(225,164,4)" rx="2" ry="2" /> +<text x="422.86" y="2319.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (26 samples, 0.73%)</title><rect x="1096.5" y="3365" width="8.6" height="15.0" fill="rgb(240,198,24)" rx="2" ry="2" /> +<text x="1099.46" y="3375.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (2 samples, 0.06%)</title><rect x="954.7" y="645" width="0.6" height="15.0" fill="rgb(237,173,24)" rx="2" ry="2" /> +<text x="957.66" y="655.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.03%)</title><rect x="697.5" y="1973" width="0.3" height="15.0" fill="rgb(251,188,0)" rx="2" ry="2" /> +<text x="700.51" y="1983.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (2 samples, 0.06%)</title><rect x="954.7" y="1413" width="0.6" height="15.0" fill="rgb(233,223,40)" rx="2" ry="2" /> +<text x="957.66" y="1423.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.03%)</title><rect x="846.6" y="2709" width="0.3" height="15.0" fill="rgb(235,177,37)" rx="2" ry="2" /> +<text x="849.58" y="2719.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="358.4" y="1573" width="0.3" height="15.0" fill="rgb(253,191,16)" rx="2" ry="2" /> +<text x="361.38" y="1583.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.03%)</title><rect x="341.2" y="1909" width="0.3" height="15.0" fill="rgb(220,128,0)" rx="2" ry="2" /> +<text x="344.19" y="1919.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (685 samples, 19.19%)</title><rect x="422.2" y="1365" width="226.4" height="15.0" fill="rgb(242,161,50)" rx="2" ry="2" /> +<text x="425.17" y="1375.5" >Nsfisis\Waddiwasi\Execution\R..</text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.03%)</title><rect x="954.0" y="2677" width="0.3" height="15.0" fill="rgb(249,110,33)" rx="2" ry="2" /> +<text x="957.00" y="2687.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="319.0" y="2053" width="0.4" height="15.0" fill="rgb(221,211,45)" rx="2" ry="2" /> +<text x="322.05" y="2063.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (4 samples, 0.11%)</title><rect x="1135.8" y="3189" width="1.3" height="15.0" fill="rgb(247,41,24)" rx="2" ry="2" /> +<text x="1138.79" y="3199.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (686 samples, 19.22%)</title><rect x="422.2" y="1781" width="226.7" height="15.0" fill="rgb(252,179,43)" rx="2" ry="2" /> +<text x="425.17" y="1791.5" >Nsfisis\Waddiwasi\Execution\Ru..</text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (689 samples, 19.30%)</title><rect x="421.8" y="2197" width="227.8" height="15.0" fill="rgb(242,188,2)" rx="2" ry="2" /> +<text x="424.84" y="2207.5" >Nsfisis\Waddiwasi\Execution\Ru..</text> +</g> +<g > +<title><unknown> (1 samples, 0.03%)</title><rect x="870.4" y="1861" width="0.3" height="15.0" fill="rgb(211,157,32)" rx="2" ry="2" /> +<text x="873.38" y="1871.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.03%)</title><rect x="271.8" y="2133" width="0.3" height="15.0" fill="rgb(210,43,54)" rx="2" ry="2" /> +<text x="274.78" y="2143.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="938.5" y="2501" width="0.3" height="15.0" fill="rgb(232,223,19)" rx="2" ry="2" /> +<text x="941.46" y="2511.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (3 samples, 0.08%)</title><rect x="952.0" y="2661" width="1.0" height="15.0" fill="rgb(231,145,29)" rx="2" ry="2" /> +<text x="955.02" y="2671.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="270.8" y="1733" width="0.3" height="15.0" fill="rgb(221,89,30)" rx="2" ry="2" /> +<text x="273.79" y="1743.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.03%)</title><rect x="649.2" y="2069" width="0.4" height="15.0" fill="rgb(250,158,52)" rx="2" ry="2" /> +<text x="652.25" y="2079.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.03%)</title><rect x="410.9" y="1909" width="0.4" height="15.0" fill="rgb(238,202,16)" rx="2" ry="2" /> +<text x="413.94" y="1919.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (2 samples, 0.06%)</title><rect x="954.7" y="2021" width="0.6" height="15.0" fill="rgb(234,56,36)" rx="2" ry="2" /> +<text x="957.66" y="2031.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (12 samples, 0.34%)</title><rect x="299.2" y="1877" width="4.0" height="15.0" fill="rgb(248,145,48)" rx="2" ry="2" /> +<text x="302.22" y="1887.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (1 samples, 0.03%)</title><rect x="838.6" y="2197" width="0.4" height="15.0" fill="rgb(246,172,15)" rx="2" ry="2" /> +<text x="841.64" y="2207.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.03%)</title><rect x="938.5" y="2453" width="0.3" height="15.0" fill="rgb(248,142,42)" rx="2" ry="2" /> +<text x="941.46" y="2463.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (1 samples, 0.03%)</title><rect x="894.5" y="2757" width="0.3" height="15.0" fill="rgb(232,81,41)" rx="2" ry="2" /> +<text x="897.50" y="2767.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (82 samples, 2.30%)</title><rect x="676.0" y="2837" width="27.1" height="15.0" fill="rgb(241,41,5)" rx="2" ry="2" /> +<text x="679.02" y="2847.5" >N..</text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (3 samples, 0.08%)</title><rect x="420.9" y="2133" width="0.9" height="15.0" fill="rgb(215,92,19)" rx="2" ry="2" /> +<text x="423.85" y="2143.5" ></text> +</g> +<g > +<title><unknown> (1 samples, 0.03%)</title><rect x="946.1" y="2469" width="0.3" height="15.0" fill="rgb(252,154,5)" rx="2" ry="2" /> +<text x="949.07" y="2479.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.03%)</title><rect x="1104.4" y="2389" width="0.3" height="15.0" fill="rgb(225,18,36)" rx="2" ry="2" /> +<text x="1107.39" y="2399.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (685 samples, 19.19%)</title><rect x="422.2" y="1381" width="226.4" height="15.0" fill="rgb(236,167,18)" rx="2" ry="2" /> +<text x="425.17" y="1391.5" >Nsfisis\Waddiwasi\Execution\R..</text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (322 samples, 9.02%)</title><rect x="849.6" y="3381" width="106.4" height="15.0" fill="rgb(243,190,28)" rx="2" ry="2" /> +<text x="852.55" y="3391.5" >Nsfisis\Waddi..</text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (1 samples, 0.03%)</title><rect x="848.2" y="2997" width="0.4" height="15.0" fill="rgb(217,216,28)" rx="2" ry="2" /> +<text x="851.23" y="3007.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (1 samples, 0.03%)</title><rect x="251.0" y="2645" width="0.3" height="15.0" fill="rgb(224,162,50)" rx="2" ry="2" /> +<text x="253.96" y="2655.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (1 samples, 0.03%)</title><rect x="411.6" y="1733" width="0.3" height="15.0" fill="rgb(214,167,46)" rx="2" ry="2" /> +<text x="414.60" y="1743.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="341.2" y="1925" width="0.3" height="15.0" fill="rgb(208,137,27)" rx="2" ry="2" /> +<text x="344.19" y="1935.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (3 samples, 0.08%)</title><rect x="399.0" y="2069" width="1.0" height="15.0" fill="rgb(211,100,13)" rx="2" ry="2" /> +<text x="402.04" y="2079.5" ></text> +</g> +<g > +<title>count (1 samples, 0.03%)</title><rect x="186.8" y="3413" width="0.4" height="15.0" fill="rgb(251,140,40)" rx="2" ry="2" /> +<text x="189.83" y="3423.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.03%)</title><rect x="257.2" y="2005" width="0.4" height="15.0" fill="rgb(232,83,44)" rx="2" ry="2" /> +<text x="260.24" y="2015.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (2 samples, 0.06%)</title><rect x="672.4" y="2357" width="0.6" height="15.0" fill="rgb(245,9,32)" rx="2" ry="2" /> +<text x="675.39" y="2367.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.03%)</title><rect x="701.5" y="2165" width="0.3" height="15.0" fill="rgb(242,192,0)" rx="2" ry="2" /> +<text x="704.47" y="2175.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.03%)</title><rect x="1104.4" y="2261" width="0.3" height="15.0" fill="rgb(233,40,45)" rx="2" ry="2" /> +<text x="1107.39" y="2271.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (4 samples, 0.11%)</title><rect x="954.7" y="3301" width="1.3" height="15.0" fill="rgb(219,222,10)" rx="2" ry="2" /> +<text x="957.66" y="3311.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="663.1" y="2117" width="0.4" height="15.0" fill="rgb(206,200,24)" rx="2" ry="2" /> +<text x="666.13" y="2127.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (23 samples, 0.64%)</title><rect x="653.9" y="2293" width="7.6" height="15.0" fill="rgb(243,69,34)" rx="2" ry="2" /> +<text x="656.88" y="2303.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="360.0" y="1829" width="0.4" height="15.0" fill="rgb(207,17,36)" rx="2" ry="2" /> +<text x="363.03" y="1839.5" ></text> +</g> +<g > +<title><unknown> (1 samples, 0.03%)</title><rect x="353.8" y="1941" width="0.3" height="15.0" fill="rgb(217,74,30)" rx="2" ry="2" /> +<text x="356.75" y="1951.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="848.2" y="2885" width="0.4" height="15.0" fill="rgb(225,55,44)" rx="2" ry="2" /> +<text x="851.23" y="2895.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (2 samples, 0.06%)</title><rect x="954.7" y="1221" width="0.6" height="15.0" fill="rgb(213,69,14)" rx="2" ry="2" /> +<text x="957.66" y="1231.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.03%)</title><rect x="266.8" y="1493" width="0.4" height="15.0" fill="rgb(227,8,33)" rx="2" ry="2" /> +<text x="269.82" y="1503.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (169 samples, 4.73%)</title><rect x="897.1" y="2757" width="55.9" height="15.0" fill="rgb(228,151,33)" rx="2" ry="2" /> +<text x="900.15" y="2767.5" >Nsfis..</text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (2 samples, 0.06%)</title><rect x="844.9" y="2773" width="0.7" height="15.0" fill="rgb(218,84,26)" rx="2" ry="2" /> +<text x="847.92" y="2783.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="941.8" y="2437" width="0.3" height="15.0" fill="rgb(224,165,17)" rx="2" ry="2" /> +<text x="944.77" y="2447.5" ></text> +</g> +<g > +<title><unknown> (1 samples, 0.03%)</title><rect x="905.7" y="2565" width="0.4" height="15.0" fill="rgb(245,213,11)" rx="2" ry="2" /> +<text x="908.74" y="2575.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (21 samples, 0.59%)</title><rect x="1130.5" y="3365" width="6.9" height="15.0" fill="rgb(250,105,21)" rx="2" ry="2" /> +<text x="1133.50" y="3375.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Stack::currentFrame (2 samples, 0.06%)</title><rect x="191.1" y="3445" width="0.7" height="15.0" fill="rgb(229,182,30)" rx="2" ry="2" /> +<text x="194.13" y="3455.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.03%)</title><rect x="1104.4" y="2005" width="0.3" height="15.0" fill="rgb(248,13,24)" rx="2" ry="2" /> +<text x="1107.39" y="2015.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (2 samples, 0.06%)</title><rect x="405.0" y="1029" width="0.6" height="15.0" fill="rgb(250,1,40)" rx="2" ry="2" /> +<text x="407.99" y="1039.5" ></text> +</g> +<g > +<title><unknown> (1 samples, 0.03%)</title><rect x="870.4" y="1061" width="0.3" height="15.0" fill="rgb(244,190,19)" rx="2" ry="2" /> +<text x="873.38" y="1071.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="955.0" y="133" width="0.3" height="15.0" fill="rgb(215,226,5)" rx="2" ry="2" /> +<text x="957.99" y="143.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="400.4" y="1701" width="0.3" height="15.0" fill="rgb(248,191,9)" rx="2" ry="2" /> +<text x="403.36" y="1711.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (13 samples, 0.36%)</title><rect x="402.3" y="1941" width="4.3" height="15.0" fill="rgb(225,83,29)" rx="2" ry="2" /> +<text x="405.34" y="1951.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.03%)</title><rect x="371.9" y="1621" width="0.4" height="15.0" fill="rgb(212,51,5)" rx="2" ry="2" /> +<text x="374.93" y="1631.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (3 samples, 0.08%)</title><rect x="404.7" y="1317" width="0.9" height="15.0" fill="rgb(220,194,23)" rx="2" ry="2" /> +<text x="407.66" y="1327.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Stack::popValue (1 samples, 0.03%)</title><rect x="848.6" y="2885" width="0.3" height="15.0" fill="rgb(253,133,37)" rx="2" ry="2" /> +<text x="851.56" y="2895.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (3 samples, 0.08%)</title><rect x="305.8" y="1781" width="1.0" height="15.0" fill="rgb(250,121,22)" rx="2" ry="2" /> +<text x="308.83" y="1791.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="849.2" y="2789" width="0.4" height="15.0" fill="rgb(212,205,25)" rx="2" ry="2" /> +<text x="852.22" y="2799.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (3 samples, 0.08%)</title><rect x="701.8" y="2357" width="1.0" height="15.0" fill="rgb(233,217,40)" rx="2" ry="2" /> +<text x="704.80" y="2367.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (2 samples, 0.06%)</title><rect x="650.6" y="2117" width="0.6" height="15.0" fill="rgb(242,172,25)" rx="2" ry="2" /> +<text x="653.57" y="2127.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (1 samples, 0.03%)</title><rect x="669.4" y="2677" width="0.3" height="15.0" fill="rgb(212,4,23)" rx="2" ry="2" /> +<text x="672.41" y="2687.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (7 samples, 0.20%)</title><rect x="366.0" y="2021" width="2.3" height="15.0" fill="rgb(205,186,50)" rx="2" ry="2" /> +<text x="368.98" y="2031.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (13 samples, 0.36%)</title><rect x="402.3" y="1893" width="4.3" height="15.0" fill="rgb(247,134,19)" rx="2" ry="2" /> +<text x="405.34" y="1903.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="406.6" y="1957" width="0.4" height="15.0" fill="rgb(239,32,12)" rx="2" ry="2" /> +<text x="409.64" y="1967.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="954.0" y="2597" width="0.3" height="15.0" fill="rgb(210,62,5)" rx="2" ry="2" /> +<text x="957.00" y="2607.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.03%)</title><rect x="845.6" y="2741" width="0.3" height="15.0" fill="rgb(214,125,9)" rx="2" ry="2" /> +<text x="848.59" y="2751.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (2 samples, 0.06%)</title><rect x="260.5" y="1909" width="0.7" height="15.0" fill="rgb(247,111,6)" rx="2" ry="2" /> +<text x="263.54" y="1919.5" ></text> +</g> +<g > +<title><unknown> (1 samples, 0.03%)</title><rect x="789.7" y="2261" width="0.4" height="15.0" fill="rgb(220,180,27)" rx="2" ry="2" /> +<text x="792.73" y="2271.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (158 samples, 4.43%)</title><rect x="899.1" y="2725" width="52.3" height="15.0" fill="rgb(208,171,38)" rx="2" ry="2" /> +<text x="902.13" y="2735.5" >Nsfis..</text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="669.4" y="2565" width="0.3" height="15.0" fill="rgb(244,118,22)" rx="2" ry="2" /> +<text x="672.41" y="2575.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.03%)</title><rect x="848.2" y="2645" width="0.4" height="15.0" fill="rgb(213,102,53)" rx="2" ry="2" /> +<text x="851.23" y="2655.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="1117.3" y="3397" width="0.3" height="15.0" fill="rgb(246,108,39)" rx="2" ry="2" /> +<text x="1120.28" y="3407.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (685 samples, 19.19%)</title><rect x="422.2" y="1445" width="226.4" height="15.0" fill="rgb(254,183,39)" rx="2" ry="2" /> +<text x="425.17" y="1455.5" >Nsfisis\Waddiwasi\Execution\R..</text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.03%)</title><rect x="315.4" y="1909" width="0.3" height="15.0" fill="rgb(211,2,17)" rx="2" ry="2" /> +<text x="318.41" y="1919.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (27 samples, 0.76%)</title><rect x="258.9" y="2149" width="8.9" height="15.0" fill="rgb(246,163,30)" rx="2" ry="2" /> +<text x="261.89" y="2159.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (1 samples, 0.03%)</title><rect x="841.0" y="2309" width="0.3" height="15.0" fill="rgb(214,0,41)" rx="2" ry="2" /> +<text x="843.96" y="2319.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.03%)</title><rect x="655.9" y="2069" width="0.3" height="15.0" fill="rgb(234,203,41)" rx="2" ry="2" /> +<text x="658.86" y="2079.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Stack::pushValue (1 samples, 0.03%)</title><rect x="1141.1" y="3509" width="0.3" height="15.0" fill="rgb(240,158,5)" rx="2" ry="2" /> +<text x="1144.08" y="3519.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (699 samples, 19.58%)</title><rect x="420.5" y="2325" width="231.1" height="15.0" fill="rgb(209,70,51)" rx="2" ry="2" /> +<text x="423.52" y="2335.5" >Nsfisis\Waddiwasi\Execution\Ru..</text> +</g> +<g > +<title><unknown> (1 samples, 0.03%)</title><rect x="870.4" y="1109" width="0.3" height="15.0" fill="rgb(212,111,4)" rx="2" ry="2" /> +<text x="873.38" y="1119.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (174 samples, 4.87%)</title><rect x="784.4" y="2709" width="57.5" height="15.0" fill="rgb(250,211,17)" rx="2" ry="2" /> +<text x="787.44" y="2719.5" >Nsfisi..</text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (2 samples, 0.06%)</title><rect x="656.2" y="2101" width="0.7" height="15.0" fill="rgb(224,66,42)" rx="2" ry="2" /> +<text x="659.19" y="2111.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (1 samples, 0.03%)</title><rect x="406.6" y="1925" width="0.4" height="15.0" fill="rgb(254,34,29)" rx="2" ry="2" /> +<text x="409.64" y="1935.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (4 samples, 0.11%)</title><rect x="357.4" y="1813" width="1.3" height="15.0" fill="rgb(254,46,20)" rx="2" ry="2" /> +<text x="360.39" y="1823.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\BinaryFormat\Decoder::decodeInstr (1 samples, 0.03%)</title><rect x="12.3" y="3221" width="0.3" height="15.0" fill="rgb(219,218,37)" rx="2" ry="2" /> +<text x="15.31" y="3231.5" ></text> +</g> +<g > +<title><main> (2,862 samples, 80.17%)</title><rect x="10.0" y="3541" width="946.0" height="15.0" fill="rgb(206,154,0)" rx="2" ry="2" /> +<text x="13.00" y="3551.5" ><main></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\ControlFlowResult::Br (1 samples, 0.03%)</title><rect x="1177.4" y="3525" width="0.4" height="15.0" fill="rgb(244,122,0)" rx="2" ry="2" /> +<text x="1180.44" y="3535.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.03%)</title><rect x="954.3" y="2709" width="0.4" height="15.0" fill="rgb(252,79,3)" rx="2" ry="2" /> +<text x="957.33" y="2719.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (173 samples, 4.85%)</title><rect x="784.4" y="2501" width="57.2" height="15.0" fill="rgb(235,66,10)" rx="2" ry="2" /> +<text x="787.44" y="2511.5" >Nsfisi..</text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="955.3" y="2565" width="0.4" height="15.0" fill="rgb(236,150,16)" rx="2" ry="2" /> +<text x="958.32" y="2575.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (2 samples, 0.06%)</title><rect x="954.7" y="1301" width="0.6" height="15.0" fill="rgb(231,172,0)" rx="2" ry="2" /> +<text x="957.66" y="1311.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (4 samples, 0.11%)</title><rect x="374.9" y="1733" width="1.3" height="15.0" fill="rgb(248,82,38)" rx="2" ry="2" /> +<text x="377.91" y="1743.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (2 samples, 0.06%)</title><rect x="954.7" y="741" width="0.6" height="15.0" fill="rgb(211,147,32)" rx="2" ry="2" /> +<text x="957.66" y="751.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1,813 samples, 50.78%)</title><rect x="249.3" y="3301" width="599.3" height="15.0" fill="rgb(249,223,48)" rx="2" ry="2" /> +<text x="252.31" y="3311.5" >Nsfisis\Waddiwasi\Execution\Runtime::execInstr</text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="315.1" y="2021" width="0.3" height="15.0" fill="rgb(254,185,31)" rx="2" ry="2" /> +<text x="318.08" y="2031.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (6 samples, 0.17%)</title><rect x="256.9" y="2165" width="2.0" height="15.0" fill="rgb(212,155,12)" rx="2" ry="2" /> +<text x="259.91" y="2175.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (16 samples, 0.45%)</title><rect x="331.6" y="1909" width="5.3" height="15.0" fill="rgb(208,141,17)" rx="2" ry="2" /> +<text x="334.61" y="1919.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (3 samples, 0.08%)</title><rect x="404.7" y="1461" width="0.9" height="15.0" fill="rgb(232,148,52)" rx="2" ry="2" /> +<text x="407.66" y="1471.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (4 samples, 0.11%)</title><rect x="655.5" y="2181" width="1.4" height="15.0" fill="rgb(243,76,37)" rx="2" ry="2" /> +<text x="658.53" y="2191.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.03%)</title><rect x="422.8" y="789" width="0.4" height="15.0" fill="rgb(246,18,24)" rx="2" ry="2" /> +<text x="425.83" y="799.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (18 samples, 0.50%)</title><rect x="696.8" y="2709" width="6.0" height="15.0" fill="rgb(240,215,53)" rx="2" ry="2" /> +<text x="699.85" y="2719.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (8 samples, 0.22%)</title><rect x="935.5" y="2437" width="2.6" height="15.0" fill="rgb(217,59,26)" rx="2" ry="2" /> +<text x="938.49" y="2447.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (1 samples, 0.03%)</title><rect x="670.1" y="2597" width="0.3" height="15.0" fill="rgb(245,80,6)" rx="2" ry="2" /> +<text x="673.07" y="2607.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="400.7" y="1829" width="0.3" height="15.0" fill="rgb(212,23,35)" rx="2" ry="2" /> +<text x="403.69" y="1839.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (21 samples, 0.59%)</title><rect x="278.4" y="2037" width="6.9" height="15.0" fill="rgb(212,89,4)" rx="2" ry="2" /> +<text x="281.39" y="2047.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\StackEntry::Value (1 samples, 0.03%)</title><rect x="774.5" y="2181" width="0.4" height="15.0" fill="rgb(205,225,37)" rx="2" ry="2" /> +<text x="777.52" y="2191.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (2 samples, 0.06%)</title><rect x="363.3" y="1813" width="0.7" height="15.0" fill="rgb(254,196,7)" rx="2" ry="2" /> +<text x="366.34" y="1823.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (4 samples, 0.11%)</title><rect x="374.9" y="1685" width="1.3" height="15.0" fill="rgb(241,51,26)" rx="2" ry="2" /> +<text x="377.91" y="1695.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (174 samples, 4.87%)</title><rect x="784.4" y="2645" width="57.5" height="15.0" fill="rgb(217,116,46)" rx="2" ry="2" /> +<text x="787.44" y="2655.5" >Nsfisi..</text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\ControlFlowResult::Br (1 samples, 0.03%)</title><rect x="877.6" y="2133" width="0.4" height="15.0" fill="rgb(248,188,26)" rx="2" ry="2" /> +<text x="880.65" y="2143.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.03%)</title><rect x="1077.3" y="3477" width="0.3" height="15.0" fill="rgb(219,62,21)" rx="2" ry="2" /> +<text x="1080.29" y="3487.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (2 samples, 0.06%)</title><rect x="663.5" y="2037" width="0.6" height="15.0" fill="rgb(206,156,18)" rx="2" ry="2" /> +<text x="666.46" y="2047.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (49 samples, 1.37%)</title><rect x="1122.2" y="3461" width="16.2" height="15.0" fill="rgb(205,76,38)" rx="2" ry="2" /> +<text x="1125.24" y="3471.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="808.6" y="2277" width="0.3" height="15.0" fill="rgb(246,168,27)" rx="2" ry="2" /> +<text x="811.57" y="2287.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="841.3" y="2373" width="0.3" height="15.0" fill="rgb(239,210,14)" rx="2" ry="2" /> +<text x="844.29" y="2383.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (2 samples, 0.06%)</title><rect x="954.7" y="2549" width="0.6" height="15.0" fill="rgb(242,214,24)" rx="2" ry="2" /> +<text x="957.66" y="2559.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (1 samples, 0.03%)</title><rect x="420.2" y="2149" width="0.3" height="15.0" fill="rgb(231,3,37)" rx="2" ry="2" /> +<text x="423.19" y="2159.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="894.8" y="2693" width="0.4" height="15.0" fill="rgb(222,103,31)" rx="2" ry="2" /> +<text x="897.83" y="2703.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\ControlFlowResult::Br (1 samples, 0.03%)</title><rect x="895.5" y="2837" width="0.3" height="15.0" fill="rgb(207,80,21)" rx="2" ry="2" /> +<text x="898.50" y="2847.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (27 samples, 0.76%)</title><rect x="258.9" y="2165" width="8.9" height="15.0" fill="rgb(218,177,34)" rx="2" ry="2" /> +<text x="261.89" y="2175.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (2 samples, 0.06%)</title><rect x="419.9" y="2325" width="0.6" height="15.0" fill="rgb(245,148,19)" rx="2" ry="2" /> +<text x="422.86" y="2335.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.03%)</title><rect x="954.0" y="2837" width="0.3" height="15.0" fill="rgb(246,126,13)" rx="2" ry="2" /> +<text x="957.00" y="2847.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="364.0" y="1829" width="0.3" height="15.0" fill="rgb(228,63,47)" rx="2" ry="2" /> +<text x="367.00" y="1839.5" ></text> +</g> +<g > +<title><unknown> (1 samples, 0.03%)</title><rect x="870.4" y="1909" width="0.3" height="15.0" fill="rgb(248,181,6)" rx="2" ry="2" /> +<text x="873.38" y="1919.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (5 samples, 0.14%)</title><rect x="846.6" y="2997" width="1.6" height="15.0" fill="rgb(248,153,38)" rx="2" ry="2" /> +<text x="849.58" y="3007.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (4 samples, 0.11%)</title><rect x="836.3" y="2149" width="1.4" height="15.0" fill="rgb(247,45,23)" rx="2" ry="2" /> +<text x="839.33" y="2159.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="663.8" y="1989" width="0.3" height="15.0" fill="rgb(212,124,1)" rx="2" ry="2" /> +<text x="666.79" y="1999.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (18 samples, 0.50%)</title><rect x="411.3" y="2085" width="5.9" height="15.0" fill="rgb(253,224,29)" rx="2" ry="2" /> +<text x="414.27" y="2095.5" ></text> +</g> +<g > +<title><unknown> (1 samples, 0.03%)</title><rect x="870.4" y="1397" width="0.3" height="15.0" fill="rgb(234,224,37)" rx="2" ry="2" /> +<text x="873.38" y="1407.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (2 samples, 0.06%)</title><rect x="663.5" y="2133" width="0.6" height="15.0" fill="rgb(219,189,46)" rx="2" ry="2" /> +<text x="666.46" y="2143.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.03%)</title><rect x="399.0" y="1909" width="0.4" height="15.0" fill="rgb(218,40,22)" rx="2" ry="2" /> +<text x="402.04" y="1919.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (2 samples, 0.06%)</title><rect x="304.5" y="1813" width="0.7" height="15.0" fill="rgb(245,115,10)" rx="2" ry="2" /> +<text x="307.50" y="1823.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="885.2" y="2597" width="0.4" height="15.0" fill="rgb(222,56,16)" rx="2" ry="2" /> +<text x="888.25" y="2607.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::wasmI32ToPhpInt (1 samples, 0.03%)</title><rect x="422.8" y="725" width="0.4" height="15.0" fill="rgb(228,201,10)" rx="2" ry="2" /> +<text x="425.83" y="735.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (174 samples, 4.87%)</title><rect x="784.4" y="2629" width="57.5" height="15.0" fill="rgb(222,21,21)" rx="2" ry="2" /> +<text x="787.44" y="2639.5" >Nsfisi..</text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doStoreI64 (9 samples, 0.25%)</title><rect x="770.2" y="2197" width="3.0" height="15.0" fill="rgb(209,102,27)" rx="2" ry="2" /> +<text x="773.22" y="2207.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="1139.1" y="3365" width="0.3" height="15.0" fill="rgb(233,59,9)" rx="2" ry="2" /> +<text x="1142.10" y="3375.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (8 samples, 0.22%)</title><rect x="370.3" y="1877" width="2.6" height="15.0" fill="rgb(217,72,37)" rx="2" ry="2" /> +<text x="373.28" y="1887.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::deactivateFrame (1 samples, 0.03%)</title><rect x="658.5" y="2069" width="0.3" height="15.0" fill="rgb(242,109,49)" rx="2" ry="2" /> +<text x="661.50" y="2079.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (2 samples, 0.06%)</title><rect x="389.1" y="1557" width="0.7" height="15.0" fill="rgb(234,133,38)" rx="2" ry="2" /> +<text x="392.12" y="1567.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.03%)</title><rect x="843.6" y="2581" width="0.3" height="15.0" fill="rgb(250,17,0)" rx="2" ry="2" /> +<text x="846.60" y="2591.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.03%)</title><rect x="347.1" y="1877" width="0.4" height="15.0" fill="rgb(218,168,13)" rx="2" ry="2" /> +<text x="350.14" y="1887.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (14 samples, 0.39%)</title><rect x="682.6" y="2469" width="4.7" height="15.0" fill="rgb(213,22,34)" rx="2" ry="2" /> +<text x="685.63" y="2479.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="304.8" y="1637" width="0.4" height="15.0" fill="rgb(223,128,13)" rx="2" ry="2" /> +<text x="307.83" y="1647.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (57 samples, 1.60%)</title><rect x="678.0" y="2629" width="18.8" height="15.0" fill="rgb(239,203,0)" rx="2" ry="2" /> +<text x="681.01" y="2639.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="893.5" y="2565" width="0.3" height="15.0" fill="rgb(221,22,25)" rx="2" ry="2" /> +<text x="896.51" y="2575.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (3 samples, 0.08%)</title><rect x="842.9" y="2693" width="1.0" height="15.0" fill="rgb(210,136,12)" rx="2" ry="2" /> +<text x="845.94" y="2703.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.03%)</title><rect x="265.8" y="1749" width="0.4" height="15.0" fill="rgb(219,8,26)" rx="2" ry="2" /> +<text x="268.83" y="1759.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (33 samples, 0.92%)</title><rect x="882.9" y="2709" width="10.9" height="15.0" fill="rgb(251,159,46)" rx="2" ry="2" /> +<text x="885.94" y="2719.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.03%)</title><rect x="280.0" y="1845" width="0.4" height="15.0" fill="rgb(239,122,32)" rx="2" ry="2" /> +<text x="283.04" y="1855.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="849.2" y="2821" width="0.4" height="15.0" fill="rgb(241,169,49)" rx="2" ry="2" /> +<text x="852.22" y="2831.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (1 samples, 0.03%)</title><rect x="843.3" y="2309" width="0.3" height="15.0" fill="rgb(212,121,51)" rx="2" ry="2" /> +<text x="846.27" y="2319.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (1,807 samples, 50.62%)</title><rect x="249.3" y="3205" width="597.3" height="15.0" fill="rgb(232,84,36)" rx="2" ry="2" /> +<text x="252.31" y="3215.5" >Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc</text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.03%)</title><rect x="1182.7" y="3493" width="0.4" height="15.0" fill="rgb(249,91,21)" rx="2" ry="2" /> +<text x="1185.73" y="3503.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="363.0" y="1797" width="0.3" height="15.0" fill="rgb(245,108,3)" rx="2" ry="2" /> +<text x="366.01" y="1807.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="1104.4" y="2405" width="0.3" height="15.0" fill="rgb(220,179,23)" rx="2" ry="2" /> +<text x="1107.39" y="2415.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (4 samples, 0.11%)</title><rect x="246.0" y="3221" width="1.3" height="15.0" fill="rgb(227,113,16)" rx="2" ry="2" /> +<text x="249.00" y="3231.5" ></text> +</g> +<g > +<title><unknown> (1 samples, 0.03%)</title><rect x="870.4" y="2005" width="0.3" height="15.0" fill="rgb(246,204,29)" rx="2" ry="2" /> +<text x="873.38" y="2015.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Stack::popI32 (1 samples, 0.03%)</title><rect x="834.3" y="2165" width="0.4" height="15.0" fill="rgb(227,105,51)" rx="2" ry="2" /> +<text x="837.35" y="2175.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (686 samples, 19.22%)</title><rect x="422.2" y="1685" width="226.7" height="15.0" fill="rgb(218,151,21)" rx="2" ry="2" /> +<text x="425.17" y="1695.5" >Nsfisis\Waddiwasi\Execution\Ru..</text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.03%)</title><rect x="316.4" y="1397" width="0.3" height="15.0" fill="rgb(249,77,48)" rx="2" ry="2" /> +<text x="319.40" y="1407.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="304.8" y="1733" width="0.4" height="15.0" fill="rgb(239,115,36)" rx="2" ry="2" /> +<text x="307.83" y="1743.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Structure\Instructions\Instrs\Memory\I32Store8::__construct (2 samples, 0.06%)</title><rect x="194.8" y="3445" width="0.6" height="15.0" fill="rgb(244,147,26)" rx="2" ry="2" /> +<text x="197.77" y="3455.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (8 samples, 0.22%)</title><rect x="944.7" y="2533" width="2.7" height="15.0" fill="rgb(206,139,29)" rx="2" ry="2" /> +<text x="947.75" y="2543.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (2 samples, 0.06%)</title><rect x="405.0" y="1141" width="0.6" height="15.0" fill="rgb(213,146,23)" rx="2" ry="2" /> +<text x="407.99" y="1151.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.03%)</title><rect x="1116.3" y="3477" width="0.3" height="15.0" fill="rgb(209,165,53)" rx="2" ry="2" /> +<text x="1119.29" y="3487.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.03%)</title><rect x="406.6" y="1973" width="0.4" height="15.0" fill="rgb(230,144,14)" rx="2" ry="2" /> +<text x="409.64" y="1983.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (682 samples, 19.10%)</title><rect x="423.2" y="741" width="225.4" height="15.0" fill="rgb(231,71,3)" rx="2" ry="2" /> +<text x="426.17" y="751.5" >Nsfisis\Waddiwasi\Execution\R..</text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (4 samples, 0.11%)</title><rect x="1135.8" y="3173" width="1.3" height="15.0" fill="rgb(231,205,35)" rx="2" ry="2" /> +<text x="1138.79" y="3183.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (14 samples, 0.39%)</title><rect x="354.1" y="1925" width="4.6" height="15.0" fill="rgb(246,182,3)" rx="2" ry="2" /> +<text x="357.08" y="1935.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.03%)</title><rect x="260.9" y="1845" width="0.3" height="15.0" fill="rgb(216,116,51)" rx="2" ry="2" /> +<text x="263.87" y="1855.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.03%)</title><rect x="846.6" y="2805" width="0.3" height="15.0" fill="rgb(243,11,37)" rx="2" ry="2" /> +<text x="849.58" y="2815.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (3 samples, 0.08%)</title><rect x="399.0" y="2085" width="1.0" height="15.0" fill="rgb(225,69,49)" rx="2" ry="2" /> +<text x="402.04" y="2095.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.03%)</title><rect x="843.3" y="2261" width="0.3" height="15.0" fill="rgb(214,114,23)" rx="2" ry="2" /> +<text x="846.27" y="2271.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="324.0" y="2181" width="0.3" height="15.0" fill="rgb(211,30,47)" rx="2" ry="2" /> +<text x="327.01" y="2191.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.03%)</title><rect x="855.8" y="2485" width="0.4" height="15.0" fill="rgb(227,127,11)" rx="2" ry="2" /> +<text x="858.83" y="2495.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (2 samples, 0.06%)</title><rect x="405.0" y="997" width="0.6" height="15.0" fill="rgb(238,107,24)" rx="2" ry="2" /> +<text x="407.99" y="1007.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (3 samples, 0.08%)</title><rect x="1107.4" y="3461" width="1.0" height="15.0" fill="rgb(254,188,7)" rx="2" ry="2" /> +<text x="1110.37" y="3471.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (5 samples, 0.14%)</title><rect x="283.4" y="1925" width="1.6" height="15.0" fill="rgb(239,16,54)" rx="2" ry="2" /> +<text x="286.35" y="1935.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (1 samples, 0.03%)</title><rect x="846.6" y="2677" width="0.3" height="15.0" fill="rgb(236,80,47)" rx="2" ry="2" /> +<text x="849.58" y="2687.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.03%)</title><rect x="375.9" y="1333" width="0.3" height="15.0" fill="rgb(237,170,1)" rx="2" ry="2" /> +<text x="378.90" y="1343.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Stack::push (1 samples, 0.03%)</title><rect x="1139.8" y="3493" width="0.3" height="15.0" fill="rgb(248,52,10)" rx="2" ry="2" /> +<text x="1142.76" y="3503.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="262.2" y="1989" width="0.3" height="15.0" fill="rgb(230,158,14)" rx="2" ry="2" /> +<text x="265.20" y="1999.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (1 samples, 0.03%)</title><rect x="846.9" y="2917" width="0.3" height="15.0" fill="rgb(220,85,34)" rx="2" ry="2" /> +<text x="849.91" y="2927.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="845.6" y="2533" width="0.3" height="15.0" fill="rgb(242,210,35)" rx="2" ry="2" /> +<text x="848.59" y="2543.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (2 samples, 0.06%)</title><rect x="954.7" y="2773" width="0.6" height="15.0" fill="rgb(220,47,25)" rx="2" ry="2" /> +<text x="957.66" y="2783.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="699.5" y="2405" width="0.3" height="15.0" fill="rgb(210,7,23)" rx="2" ry="2" /> +<text x="702.49" y="2415.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (2 samples, 0.06%)</title><rect x="954.7" y="373" width="0.6" height="15.0" fill="rgb(212,162,38)" rx="2" ry="2" /> +<text x="957.66" y="383.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (2 samples, 0.06%)</title><rect x="954.7" y="549" width="0.6" height="15.0" fill="rgb(220,225,23)" rx="2" ry="2" /> +<text x="957.66" y="559.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (20 samples, 0.56%)</title><rect x="1098.4" y="3301" width="6.7" height="15.0" fill="rgb(239,225,34)" rx="2" ry="2" /> +<text x="1101.44" y="3311.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (10 samples, 0.28%)</title><rect x="870.7" y="2149" width="3.3" height="15.0" fill="rgb(251,97,3)" rx="2" ry="2" /> +<text x="873.71" y="2159.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (22 samples, 0.62%)</title><rect x="382.5" y="1893" width="7.3" height="15.0" fill="rgb(243,222,40)" rx="2" ry="2" /> +<text x="385.51" y="1903.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (1 samples, 0.03%)</title><rect x="951.7" y="2645" width="0.3" height="15.0" fill="rgb(208,38,32)" rx="2" ry="2" /> +<text x="954.69" y="2655.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (4 samples, 0.11%)</title><rect x="248.0" y="2997" width="1.3" height="15.0" fill="rgb(232,103,2)" rx="2" ry="2" /> +<text x="250.98" y="3007.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (5 samples, 0.14%)</title><rect x="257.2" y="2133" width="1.7" height="15.0" fill="rgb(221,58,12)" rx="2" ry="2" /> +<text x="260.24" y="2143.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (2 samples, 0.06%)</title><rect x="954.7" y="581" width="0.6" height="15.0" fill="rgb(216,161,36)" rx="2" ry="2" /> +<text x="957.66" y="591.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1,807 samples, 50.62%)</title><rect x="249.3" y="3157" width="597.3" height="15.0" fill="rgb(248,177,53)" rx="2" ry="2" /> +<text x="252.31" y="3167.5" >Nsfisis\Waddiwasi\Execution\Runtime::execInstrs</text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (54 samples, 1.51%)</title><rect x="814.5" y="2277" width="17.9" height="15.0" fill="rgb(238,67,22)" rx="2" ry="2" /> +<text x="817.52" y="2287.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (2 samples, 0.06%)</title><rect x="399.4" y="1957" width="0.6" height="15.0" fill="rgb(243,126,31)" rx="2" ry="2" /> +<text x="402.37" y="1967.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (40 samples, 1.12%)</title><rect x="329.0" y="2085" width="13.2" height="15.0" fill="rgb(233,84,10)" rx="2" ry="2" /> +<text x="331.96" y="2095.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (1 samples, 0.03%)</title><rect x="421.5" y="1941" width="0.3" height="15.0" fill="rgb(215,185,0)" rx="2" ry="2" /> +<text x="424.51" y="1951.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Allocator::allocElem (1 samples, 0.03%)</title><rect x="17.3" y="3493" width="0.3" height="15.0" fill="rgb(224,144,3)" rx="2" ry="2" /> +<text x="20.27" y="3503.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.03%)</title><rect x="420.9" y="2005" width="0.3" height="15.0" fill="rgb(234,95,2)" rx="2" ry="2" /> +<text x="423.85" y="2015.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="411.6" y="1957" width="0.3" height="15.0" fill="rgb(254,126,25)" rx="2" ry="2" /> +<text x="414.60" y="1967.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="401.0" y="1733" width="0.4" height="15.0" fill="rgb(239,42,13)" rx="2" ry="2" /> +<text x="404.02" y="1743.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="829.7" y="2149" width="0.4" height="15.0" fill="rgb(243,215,33)" rx="2" ry="2" /> +<text x="832.72" y="2159.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.03%)</title><rect x="1153.6" y="3189" width="0.4" height="15.0" fill="rgb(240,162,23)" rx="2" ry="2" /> +<text x="1156.64" y="3199.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (2 samples, 0.06%)</title><rect x="954.7" y="2389" width="0.6" height="15.0" fill="rgb(251,166,40)" rx="2" ry="2" /> +<text x="957.66" y="2399.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.03%)</title><rect x="307.5" y="1557" width="0.3" height="15.0" fill="rgb(218,198,39)" rx="2" ry="2" /> +<text x="310.48" y="1567.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="656.5" y="1893" width="0.4" height="15.0" fill="rgb(230,108,4)" rx="2" ry="2" /> +<text x="659.52" y="1903.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.03%)</title><rect x="847.2" y="2485" width="0.4" height="15.0" fill="rgb(243,120,5)" rx="2" ry="2" /> +<text x="850.24" y="2495.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (8 samples, 0.22%)</title><rect x="672.4" y="2453" width="2.6" height="15.0" fill="rgb(253,210,48)" rx="2" ry="2" /> +<text x="675.39" y="2463.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="271.8" y="2085" width="0.3" height="15.0" fill="rgb(227,100,16)" rx="2" ry="2" /> +<text x="274.78" y="2095.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (5 samples, 0.14%)</title><rect x="366.3" y="1909" width="1.7" height="15.0" fill="rgb(252,2,52)" rx="2" ry="2" /> +<text x="369.31" y="1919.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (2 samples, 0.06%)</title><rect x="666.4" y="2885" width="0.7" height="15.0" fill="rgb(208,158,10)" rx="2" ry="2" /> +<text x="669.44" y="2895.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.03%)</title><rect x="880.6" y="2549" width="0.4" height="15.0" fill="rgb(215,33,12)" rx="2" ry="2" /> +<text x="883.62" y="2559.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Stack::pushValue (3 samples, 0.08%)</title><rect x="940.8" y="2549" width="1.0" height="15.0" fill="rgb(224,162,21)" rx="2" ry="2" /> +<text x="943.78" y="2559.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (180 samples, 5.04%)</title><rect x="784.4" y="2949" width="59.5" height="15.0" fill="rgb(234,97,30)" rx="2" ry="2" /> +<text x="787.44" y="2959.5" >Nsfisi..</text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="372.3" y="1637" width="0.3" height="15.0" fill="rgb(235,164,47)" rx="2" ry="2" /> +<text x="375.26" y="1647.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (1 samples, 0.03%)</title><rect x="894.8" y="2725" width="0.4" height="15.0" fill="rgb(221,176,41)" rx="2" ry="2" /> +<text x="897.83" y="2735.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="1077.3" y="3237" width="0.3" height="15.0" fill="rgb(220,193,11)" rx="2" ry="2" /> +<text x="1080.29" y="3247.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="314.1" y="1957" width="0.3" height="15.0" fill="rgb(241,207,35)" rx="2" ry="2" /> +<text x="317.09" y="1967.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (2 samples, 0.06%)</title><rect x="954.7" y="1749" width="0.6" height="15.0" fill="rgb(219,6,15)" rx="2" ry="2" /> +<text x="957.66" y="1759.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (2 samples, 0.06%)</title><rect x="1097.1" y="3301" width="0.7" height="15.0" fill="rgb(238,191,32)" rx="2" ry="2" /> +<text x="1100.12" y="3311.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.03%)</title><rect x="701.5" y="2357" width="0.3" height="15.0" fill="rgb(252,69,10)" rx="2" ry="2" /> +<text x="704.47" y="2367.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (322 samples, 9.02%)</title><rect x="849.6" y="3397" width="106.4" height="15.0" fill="rgb(251,226,1)" rx="2" ry="2" /> +<text x="852.55" y="3407.5" >Nsfisis\Waddi..</text> +</g> +<g > +<title><unknown> (1 samples, 0.03%)</title><rect x="870.4" y="1653" width="0.3" height="15.0" fill="rgb(223,152,49)" rx="2" ry="2" /> +<text x="873.38" y="1663.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (685 samples, 19.19%)</title><rect x="422.2" y="1413" width="226.4" height="15.0" fill="rgb(224,109,53)" rx="2" ry="2" /> +<text x="425.17" y="1423.5" >Nsfisis\Waddiwasi\Execution\R..</text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.03%)</title><rect x="955.3" y="2581" width="0.4" height="15.0" fill="rgb(206,76,10)" rx="2" ry="2" /> +<text x="958.32" y="2591.5" ></text> +</g> +<g > +<title><unknown> (1 samples, 0.03%)</title><rect x="172.0" y="3413" width="0.3" height="15.0" fill="rgb(214,46,18)" rx="2" ry="2" /> +<text x="174.96" y="3423.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Val::Num (1 samples, 0.03%)</title><rect x="1176.8" y="3541" width="0.3" height="15.0" fill="rgb(216,225,41)" rx="2" ry="2" /> +<text x="1179.78" y="3551.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (685 samples, 19.19%)</title><rect x="422.2" y="1269" width="226.4" height="15.0" fill="rgb(231,64,47)" rx="2" ry="2" /> +<text x="425.17" y="1279.5" >Nsfisis\Waddiwasi\Execution\R..</text> +</g> +<g > +<title><unknown> (1 samples, 0.03%)</title><rect x="870.4" y="1013" width="0.3" height="15.0" fill="rgb(238,219,40)" rx="2" ry="2" /> +<text x="873.38" y="1023.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="695.9" y="2309" width="0.3" height="15.0" fill="rgb(213,216,15)" rx="2" ry="2" /> +<text x="698.85" y="2319.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (1 samples, 0.03%)</title><rect x="893.5" y="2629" width="0.3" height="15.0" fill="rgb(208,110,8)" rx="2" ry="2" /> +<text x="896.51" y="2639.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.03%)</title><rect x="401.0" y="1685" width="0.4" height="15.0" fill="rgb(206,129,44)" rx="2" ry="2" /> +<text x="404.02" y="1695.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.03%)</title><rect x="846.9" y="2901" width="0.3" height="15.0" fill="rgb(239,175,41)" rx="2" ry="2" /> +<text x="849.91" y="2911.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (1 samples, 0.03%)</title><rect x="1139.1" y="3493" width="0.3" height="15.0" fill="rgb(205,89,41)" rx="2" ry="2" /> +<text x="1142.10" y="3503.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="358.4" y="1765" width="0.3" height="15.0" fill="rgb(249,14,47)" rx="2" ry="2" /> +<text x="361.38" y="1775.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.03%)</title><rect x="878.3" y="2165" width="0.3" height="15.0" fill="rgb(208,20,23)" rx="2" ry="2" /> +<text x="881.31" y="2175.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.03%)</title><rect x="669.7" y="2677" width="0.4" height="15.0" fill="rgb(221,158,15)" rx="2" ry="2" /> +<text x="672.74" y="2687.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (1 samples, 0.03%)</title><rect x="353.1" y="1957" width="0.3" height="15.0" fill="rgb(215,200,33)" rx="2" ry="2" /> +<text x="356.09" y="1967.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (2 samples, 0.06%)</title><rect x="848.9" y="2917" width="0.7" height="15.0" fill="rgb(245,221,47)" rx="2" ry="2" /> +<text x="851.89" y="2927.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (40 samples, 1.12%)</title><rect x="652.6" y="2437" width="13.2" height="15.0" fill="rgb(225,53,33)" rx="2" ry="2" /> +<text x="655.55" y="2447.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (3 samples, 0.08%)</title><rect x="305.8" y="1861" width="1.0" height="15.0" fill="rgb(212,45,6)" rx="2" ry="2" /> +<text x="308.83" y="1871.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (2 samples, 0.06%)</title><rect x="670.7" y="2437" width="0.7" height="15.0" fill="rgb(228,226,41)" rx="2" ry="2" /> +<text x="673.73" y="2447.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="669.1" y="2693" width="0.3" height="15.0" fill="rgb(226,100,20)" rx="2" ry="2" /> +<text x="672.08" y="2703.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.03%)</title><rect x="662.1" y="2005" width="0.4" height="15.0" fill="rgb(230,99,22)" rx="2" ry="2" /> +<text x="665.14" y="2015.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.03%)</title><rect x="270.8" y="1717" width="0.3" height="15.0" fill="rgb(214,133,23)" rx="2" ry="2" /> +<text x="273.79" y="1727.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (6 samples, 0.17%)</title><rect x="414.9" y="1749" width="2.0" height="15.0" fill="rgb(241,2,3)" rx="2" ry="2" /> +<text x="417.90" y="1759.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.03%)</title><rect x="316.4" y="1269" width="0.3" height="15.0" fill="rgb(241,104,33)" rx="2" ry="2" /> +<text x="319.40" y="1279.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="954.0" y="2821" width="0.3" height="15.0" fill="rgb(225,118,32)" rx="2" ry="2" /> +<text x="957.00" y="2831.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (2 samples, 0.06%)</title><rect x="954.7" y="533" width="0.6" height="15.0" fill="rgb(223,140,25)" rx="2" ry="2" /> +<text x="957.66" y="543.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (1 samples, 0.03%)</title><rect x="316.4" y="821" width="0.3" height="15.0" fill="rgb(230,135,32)" rx="2" ry="2" /> +<text x="319.40" y="831.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.03%)</title><rect x="701.5" y="2133" width="0.3" height="15.0" fill="rgb(245,195,17)" rx="2" ry="2" /> +<text x="704.47" y="2143.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="280.0" y="1797" width="0.4" height="15.0" fill="rgb(237,197,29)" rx="2" ry="2" /> +<text x="283.04" y="1807.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (6 samples, 0.17%)</title><rect x="835.7" y="2229" width="2.0" height="15.0" fill="rgb(253,192,52)" rx="2" ry="2" /> +<text x="838.67" y="2239.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="834.0" y="1989" width="0.3" height="15.0" fill="rgb(251,81,33)" rx="2" ry="2" /> +<text x="837.02" y="1999.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="954.7" y="69" width="0.3" height="15.0" fill="rgb(217,102,46)" rx="2" ry="2" /> +<text x="957.66" y="79.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (53 samples, 1.48%)</title><rect x="1088.2" y="3461" width="17.5" height="15.0" fill="rgb(227,65,49)" rx="2" ry="2" /> +<text x="1091.20" y="3471.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.03%)</title><rect x="845.6" y="2389" width="0.3" height="15.0" fill="rgb(245,192,2)" rx="2" ry="2" /> +<text x="848.59" y="2399.5" ></text> +</g> +<g > +<title>print_r (1 samples, 0.03%)</title><rect x="847.6" y="2469" width="0.3" height="15.0" fill="rgb(221,113,5)" rx="2" ry="2" /> +<text x="850.57" y="2479.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="348.5" y="1797" width="0.3" height="15.0" fill="rgb(223,10,17)" rx="2" ry="2" /> +<text x="351.46" y="1807.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\MemInst::storeI32 (26 samples, 0.73%)</title><rect x="234.1" y="3461" width="8.6" height="15.0" fill="rgb(239,45,15)" rx="2" ry="2" /> +<text x="237.10" y="3471.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="784.1" y="2725" width="0.3" height="15.0" fill="rgb(252,17,21)" rx="2" ry="2" /> +<text x="787.11" y="2735.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.03%)</title><rect x="1153.6" y="3285" width="0.4" height="15.0" fill="rgb(219,181,15)" rx="2" ry="2" /> +<text x="1156.64" y="3295.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (2 samples, 0.06%)</title><rect x="954.7" y="2101" width="0.6" height="15.0" fill="rgb(236,131,21)" rx="2" ry="2" /> +<text x="957.66" y="2111.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="1159.3" y="3493" width="0.3" height="15.0" fill="rgb(248,197,53)" rx="2" ry="2" /> +<text x="1162.26" y="3503.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (5 samples, 0.14%)</title><rect x="249.6" y="2789" width="1.7" height="15.0" fill="rgb(223,55,28)" rx="2" ry="2" /> +<text x="252.64" y="2799.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (1 samples, 0.03%)</title><rect x="790.1" y="2261" width="0.3" height="15.0" fill="rgb(251,68,14)" rx="2" ry="2" /> +<text x="793.06" y="2271.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (4 samples, 0.11%)</title><rect x="954.7" y="2885" width="1.3" height="15.0" fill="rgb(229,184,27)" rx="2" ry="2" /> +<text x="957.66" y="2895.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (3 samples, 0.08%)</title><rect x="850.2" y="2421" width="1.0" height="15.0" fill="rgb(253,157,42)" rx="2" ry="2" /> +<text x="853.21" y="2431.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (1 samples, 0.03%)</title><rect x="663.1" y="2165" width="0.4" height="15.0" fill="rgb(212,32,47)" rx="2" ry="2" /> +<text x="666.13" y="2175.5" ></text> +</g> +<g > +<title><unknown> (1 samples, 0.03%)</title><rect x="870.4" y="917" width="0.3" height="15.0" fill="rgb(209,25,51)" rx="2" ry="2" /> +<text x="873.38" y="927.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (1 samples, 0.03%)</title><rect x="665.8" y="2341" width="0.3" height="15.0" fill="rgb(254,52,10)" rx="2" ry="2" /> +<text x="668.78" y="2351.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (5 samples, 0.14%)</title><rect x="891.5" y="2597" width="1.7" height="15.0" fill="rgb(253,225,21)" rx="2" ry="2" /> +<text x="894.53" y="2607.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (2 samples, 0.06%)</title><rect x="954.7" y="2421" width="0.6" height="15.0" fill="rgb(221,110,27)" rx="2" ry="2" /> +<text x="957.66" y="2431.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.03%)</title><rect x="669.4" y="2517" width="0.3" height="15.0" fill="rgb(215,114,25)" rx="2" ry="2" /> +<text x="672.41" y="2527.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (2 samples, 0.06%)</title><rect x="1136.5" y="3125" width="0.6" height="15.0" fill="rgb(218,218,51)" rx="2" ry="2" /> +<text x="1139.45" y="3135.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (2,148 samples, 60.17%)</title><rect x="246.0" y="3493" width="710.0" height="15.0" fill="rgb(222,58,38)" rx="2" ry="2" /> +<text x="249.00" y="3503.5" >Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc</text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (10 samples, 0.28%)</title><rect x="703.8" y="2773" width="3.3" height="15.0" fill="rgb(208,203,16)" rx="2" ry="2" /> +<text x="706.79" y="2783.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (46 samples, 1.29%)</title><rect x="859.1" y="2389" width="15.2" height="15.0" fill="rgb(246,187,46)" rx="2" ry="2" /> +<text x="862.14" y="2399.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="251.6" y="2693" width="0.3" height="15.0" fill="rgb(236,163,28)" rx="2" ry="2" /> +<text x="254.62" y="2703.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (3 samples, 0.08%)</title><rect x="1107.4" y="3397" width="1.0" height="15.0" fill="rgb(233,23,18)" rx="2" ry="2" /> +<text x="1110.37" y="3407.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="315.1" y="2053" width="0.3" height="15.0" fill="rgb(248,178,30)" rx="2" ry="2" /> +<text x="318.08" y="2063.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1,253 samples, 35.10%)</title><rect x="252.3" y="2581" width="414.1" height="15.0" fill="rgb(244,224,1)" rx="2" ry="2" /> +<text x="255.28" y="2591.5" >Nsfisis\Waddiwasi\Execution\Runtime::execInstrs</text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.03%)</title><rect x="954.3" y="2997" width="0.4" height="15.0" fill="rgb(248,212,48)" rx="2" ry="2" /> +<text x="957.33" y="3007.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (1 samples, 0.03%)</title><rect x="401.0" y="1797" width="0.4" height="15.0" fill="rgb(232,188,36)" rx="2" ry="2" /> +<text x="404.02" y="1807.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (3 samples, 0.08%)</title><rect x="698.8" y="2549" width="1.0" height="15.0" fill="rgb(208,135,13)" rx="2" ry="2" /> +<text x="701.83" y="2559.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (10 samples, 0.28%)</title><rect x="703.8" y="2805" width="3.3" height="15.0" fill="rgb(214,178,27)" rx="2" ry="2" /> +<text x="706.79" y="2815.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.03%)</title><rect x="1159.3" y="3509" width="0.3" height="15.0" fill="rgb(251,26,24)" rx="2" ry="2" /> +<text x="1162.26" y="3519.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (17 samples, 0.48%)</title><rect x="384.2" y="1829" width="5.6" height="15.0" fill="rgb(240,142,3)" rx="2" ry="2" /> +<text x="387.16" y="1839.5" ></text> +</g> +<g > +<title><unknown> (1 samples, 0.03%)</title><rect x="870.4" y="1813" width="0.3" height="15.0" fill="rgb(229,103,42)" rx="2" ry="2" /> +<text x="873.38" y="1823.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="1136.8" y="3077" width="0.3" height="15.0" fill="rgb(251,210,37)" rx="2" ry="2" /> +<text x="1139.78" y="3087.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (3 samples, 0.08%)</title><rect x="404.7" y="1685" width="0.9" height="15.0" fill="rgb(230,102,21)" rx="2" ry="2" /> +<text x="407.66" y="1695.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (1 samples, 0.03%)</title><rect x="954.3" y="3285" width="0.4" height="15.0" fill="rgb(251,16,12)" rx="2" ry="2" /> +<text x="957.33" y="3295.5" ></text> +</g> +<g > +<title><unknown> (1 samples, 0.03%)</title><rect x="870.4" y="1557" width="0.3" height="15.0" fill="rgb(252,105,3)" rx="2" ry="2" /> +<text x="873.38" y="1567.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.03%)</title><rect x="954.7" y="53" width="0.3" height="15.0" fill="rgb(211,61,27)" rx="2" ry="2" /> +<text x="957.66" y="63.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (2 samples, 0.06%)</title><rect x="371.9" y="1701" width="0.7" height="15.0" fill="rgb(232,226,14)" rx="2" ry="2" /> +<text x="374.93" y="1711.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (6 samples, 0.17%)</title><rect x="849.6" y="2725" width="1.9" height="15.0" fill="rgb(205,165,51)" rx="2" ry="2" /> +<text x="852.55" y="2735.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (9 samples, 0.25%)</title><rect x="699.8" y="2549" width="3.0" height="15.0" fill="rgb(224,216,45)" rx="2" ry="2" /> +<text x="702.82" y="2559.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Stack::popValue (1 samples, 0.03%)</title><rect x="665.8" y="2453" width="0.3" height="15.0" fill="rgb(225,229,44)" rx="2" ry="2" /> +<text x="668.78" y="2463.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (173 samples, 4.85%)</title><rect x="784.4" y="2517" width="57.2" height="15.0" fill="rgb(246,56,39)" rx="2" ry="2" /> +<text x="787.44" y="2527.5" >Nsfisi..</text> +</g> +<g > +<title><unknown> (2 samples, 0.06%)</title><rect x="1181.7" y="3509" width="0.7" height="15.0" fill="rgb(251,197,11)" rx="2" ry="2" /> +<text x="1184.74" y="3519.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.03%)</title><rect x="304.8" y="1749" width="0.4" height="15.0" fill="rgb(216,11,41)" rx="2" ry="2" /> +<text x="307.83" y="1759.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.03%)</title><rect x="660.8" y="2165" width="0.3" height="15.0" fill="rgb(252,7,32)" rx="2" ry="2" /> +<text x="663.82" y="2175.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.03%)</title><rect x="903.8" y="2549" width="0.3" height="15.0" fill="rgb(249,197,51)" rx="2" ry="2" /> +<text x="906.76" y="2559.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="790.1" y="2117" width="0.3" height="15.0" fill="rgb(252,139,40)" rx="2" ry="2" /> +<text x="793.06" y="2127.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.03%)</title><rect x="1165.2" y="3509" width="0.3" height="15.0" fill="rgb(230,83,37)" rx="2" ry="2" /> +<text x="1168.21" y="3519.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.03%)</title><rect x="951.7" y="2581" width="0.3" height="15.0" fill="rgb(245,88,14)" rx="2" ry="2" /> +<text x="954.69" y="2591.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (2 samples, 0.06%)</title><rect x="261.5" y="1925" width="0.7" height="15.0" fill="rgb(227,108,20)" rx="2" ry="2" /> +<text x="264.54" y="1935.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="391.4" y="1797" width="0.4" height="15.0" fill="rgb(238,93,19)" rx="2" ry="2" /> +<text x="394.43" y="1807.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (1 samples, 0.03%)</title><rect x="246.0" y="2965" width="0.3" height="15.0" fill="rgb(218,179,17)" rx="2" ry="2" /> +<text x="249.00" y="2975.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (5 samples, 0.14%)</title><rect x="900.1" y="2677" width="1.7" height="15.0" fill="rgb(225,175,36)" rx="2" ry="2" /> +<text x="903.12" y="2687.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (4 samples, 0.11%)</title><rect x="306.8" y="1893" width="1.3" height="15.0" fill="rgb(242,145,26)" rx="2" ry="2" /> +<text x="309.82" y="1903.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="358.4" y="1733" width="0.3" height="15.0" fill="rgb(231,195,30)" rx="2" ry="2" /> +<text x="361.38" y="1743.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.03%)</title><rect x="341.2" y="1877" width="0.3" height="15.0" fill="rgb(227,109,6)" rx="2" ry="2" /> +<text x="344.19" y="1887.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="314.1" y="1605" width="0.3" height="15.0" fill="rgb(241,111,49)" rx="2" ry="2" /> +<text x="317.09" y="1615.5" ></text> +</g> +<g > +<title><unknown> (1 samples, 0.03%)</title><rect x="173.0" y="3413" width="0.3" height="15.0" fill="rgb(248,204,6)" rx="2" ry="2" /> +<text x="175.95" y="3423.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (3 samples, 0.08%)</title><rect x="357.4" y="1781" width="1.0" height="15.0" fill="rgb(210,23,34)" rx="2" ry="2" /> +<text x="360.39" y="1791.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (11 samples, 0.31%)</title><rect x="395.4" y="2181" width="3.6" height="15.0" fill="rgb(253,140,14)" rx="2" ry="2" /> +<text x="398.40" y="2191.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.03%)</title><rect x="246.3" y="3125" width="0.4" height="15.0" fill="rgb(219,167,50)" rx="2" ry="2" /> +<text x="249.33" y="3135.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="669.7" y="2661" width="0.4" height="15.0" fill="rgb(223,169,8)" rx="2" ry="2" /> +<text x="672.74" y="2671.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.03%)</title><rect x="315.4" y="1589" width="0.3" height="15.0" fill="rgb(243,54,25)" rx="2" ry="2" /> +<text x="318.41" y="1599.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (2 samples, 0.06%)</title><rect x="348.1" y="1877" width="0.7" height="15.0" fill="rgb(208,61,51)" rx="2" ry="2" /> +<text x="351.13" y="1887.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="783.4" y="2757" width="0.4" height="15.0" fill="rgb(226,114,3)" rx="2" ry="2" /> +<text x="786.45" y="2767.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.03%)</title><rect x="669.1" y="2709" width="0.3" height="15.0" fill="rgb(230,136,33)" rx="2" ry="2" /> +<text x="672.08" y="2719.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (230 samples, 6.44%)</title><rect x="707.4" y="2421" width="76.0" height="15.0" fill="rgb(250,85,17)" rx="2" ry="2" /> +<text x="710.42" y="2431.5" >Nsfisis\..</text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (3 samples, 0.08%)</title><rect x="701.8" y="2437" width="1.0" height="15.0" fill="rgb(231,148,39)" rx="2" ry="2" /> +<text x="704.80" y="2447.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="702.8" y="2309" width="0.3" height="15.0" fill="rgb(254,41,44)" rx="2" ry="2" /> +<text x="705.80" y="2319.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (41 samples, 1.15%)</title><rect x="352.4" y="2005" width="13.6" height="15.0" fill="rgb(234,175,24)" rx="2" ry="2" /> +<text x="355.43" y="2015.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.03%)</title><rect x="1121.6" y="3413" width="0.3" height="15.0" fill="rgb(225,46,11)" rx="2" ry="2" /> +<text x="1124.58" y="3423.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (2 samples, 0.06%)</title><rect x="386.8" y="1637" width="0.7" height="15.0" fill="rgb(205,151,12)" rx="2" ry="2" /> +<text x="389.81" y="1647.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (63 samples, 1.76%)</title><rect x="857.8" y="2517" width="20.8" height="15.0" fill="rgb(217,66,4)" rx="2" ry="2" /> +<text x="860.82" y="2527.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (115 samples, 3.22%)</title><rect x="275.1" y="2149" width="38.0" height="15.0" fill="rgb(235,63,41)" rx="2" ry="2" /> +<text x="278.09" y="2159.5" >Nsf..</text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (4 samples, 0.11%)</title><rect x="696.8" y="2565" width="1.4" height="15.0" fill="rgb(254,58,48)" rx="2" ry="2" /> +<text x="699.85" y="2575.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (2 samples, 0.06%)</title><rect x="844.9" y="2709" width="0.7" height="15.0" fill="rgb(244,162,20)" rx="2" ry="2" /> +<text x="847.92" y="2719.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.03%)</title><rect x="838.6" y="2229" width="0.4" height="15.0" fill="rgb(241,149,20)" rx="2" ry="2" /> +<text x="841.64" y="2239.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (3 samples, 0.08%)</title><rect x="848.6" y="3173" width="1.0" height="15.0" fill="rgb(227,77,14)" rx="2" ry="2" /> +<text x="851.56" y="3183.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="411.3" y="2037" width="0.3" height="15.0" fill="rgb(226,76,36)" rx="2" ry="2" /> +<text x="414.27" y="2047.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (1 samples, 0.03%)</title><rect x="894.2" y="2645" width="0.3" height="15.0" fill="rgb(220,95,37)" rx="2" ry="2" /> +<text x="897.17" y="2655.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (5 samples, 0.14%)</title><rect x="247.7" y="3157" width="1.6" height="15.0" fill="rgb(214,67,4)" rx="2" ry="2" /> +<text x="250.65" y="3167.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (172 samples, 4.82%)</title><rect x="784.8" y="2453" width="56.8" height="15.0" fill="rgb(226,161,48)" rx="2" ry="2" /> +<text x="787.77" y="2463.5" >Nsfisi..</text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="250.0" y="2629" width="0.3" height="15.0" fill="rgb(238,199,1)" rx="2" ry="2" /> +<text x="252.97" y="2639.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="702.8" y="2469" width="0.3" height="15.0" fill="rgb(219,48,51)" rx="2" ry="2" /> +<text x="705.80" y="2479.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.03%)</title><rect x="316.4" y="1045" width="0.3" height="15.0" fill="rgb(205,86,48)" rx="2" ry="2" /> +<text x="319.40" y="1055.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (21 samples, 0.59%)</title><rect x="400.0" y="2021" width="7.0" height="15.0" fill="rgb(233,105,3)" rx="2" ry="2" /> +<text x="403.03" y="2031.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="422.8" y="805" width="0.4" height="15.0" fill="rgb(253,140,39)" rx="2" ry="2" /> +<text x="425.83" y="815.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (5 samples, 0.14%)</title><rect x="796.7" y="2165" width="1.6" height="15.0" fill="rgb(245,74,10)" rx="2" ry="2" /> +<text x="799.67" y="2175.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (7 samples, 0.20%)</title><rect x="259.9" y="2021" width="2.3" height="15.0" fill="rgb(205,6,19)" rx="2" ry="2" /> +<text x="262.88" y="2031.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (2 samples, 0.06%)</title><rect x="268.8" y="2053" width="0.7" height="15.0" fill="rgb(243,88,19)" rx="2" ry="2" /> +<text x="271.81" y="2063.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (1,804 samples, 50.53%)</title><rect x="249.6" y="3029" width="596.3" height="15.0" fill="rgb(223,147,6)" rx="2" ry="2" /> +<text x="252.64" y="3039.5" >Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc</text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\StackEntries\Value::__construct (1 samples, 0.03%)</title><rect x="1076.0" y="3461" width="0.3" height="15.0" fill="rgb(206,55,48)" rx="2" ry="2" /> +<text x="1078.97" y="3471.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="315.4" y="1765" width="0.3" height="15.0" fill="rgb(253,204,32)" rx="2" ry="2" /> +<text x="318.41" y="1775.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (1 samples, 0.03%)</title><rect x="307.1" y="1701" width="0.4" height="15.0" fill="rgb(251,162,28)" rx="2" ry="2" /> +<text x="310.15" y="1711.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="954.0" y="2661" width="0.3" height="15.0" fill="rgb(253,94,9)" rx="2" ry="2" /> +<text x="957.00" y="2671.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (5 samples, 0.14%)</title><rect x="257.2" y="2101" width="1.7" height="15.0" fill="rgb(247,138,0)" rx="2" ry="2" /> +<text x="260.24" y="2111.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (1 samples, 0.03%)</title><rect x="784.1" y="2789" width="0.3" height="15.0" fill="rgb(222,14,31)" rx="2" ry="2" /> +<text x="787.11" y="2799.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Stack::popI32 (1 samples, 0.03%)</title><rect x="246.7" y="3125" width="0.3" height="15.0" fill="rgb(249,191,2)" rx="2" ry="2" /> +<text x="249.66" y="3135.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="648.6" y="1477" width="0.3" height="15.0" fill="rgb(215,131,43)" rx="2" ry="2" /> +<text x="651.59" y="1487.5" ></text> +</g> +<g > +<title><unknown> (1 samples, 0.03%)</title><rect x="870.4" y="821" width="0.3" height="15.0" fill="rgb(218,120,0)" rx="2" ry="2" /> +<text x="873.38" y="831.5" ></text> +</g> +<g > +<title><unknown> (3 samples, 0.08%)</title><rect x="1069.0" y="3509" width="1.0" height="15.0" fill="rgb(251,177,20)" rx="2" ry="2" /> +<text x="1072.03" y="3519.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (1 samples, 0.03%)</title><rect x="364.3" y="1893" width="0.4" height="15.0" fill="rgb(222,15,44)" rx="2" ry="2" /> +<text x="367.33" y="1903.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (4 samples, 0.11%)</title><rect x="663.5" y="2149" width="1.3" height="15.0" fill="rgb(241,220,18)" rx="2" ry="2" /> +<text x="666.46" y="2159.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\BinaryFormat\Decoder::{closure}(/home/ken/src/php-waddiwasi/src/BinaryFormat/Decoder.php:518-531) (18 samples, 0.50%)</title><rect x="10.7" y="3461" width="5.9" height="15.0" fill="rgb(234,192,48)" rx="2" ry="2" /> +<text x="13.66" y="3471.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (4 samples, 0.11%)</title><rect x="374.9" y="1573" width="1.3" height="15.0" fill="rgb(243,56,29)" rx="2" ry="2" /> +<text x="377.91" y="1583.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (19 samples, 0.53%)</title><rect x="410.9" y="2181" width="6.3" height="15.0" fill="rgb(215,28,54)" rx="2" ry="2" /> +<text x="413.94" y="2191.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (74 samples, 2.07%)</title><rect x="854.2" y="2741" width="24.4" height="15.0" fill="rgb(237,10,46)" rx="2" ry="2" /> +<text x="857.18" y="2751.5" >N..</text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (4 samples, 0.11%)</title><rect x="415.6" y="1605" width="1.3" height="15.0" fill="rgb(207,7,38)" rx="2" ry="2" /> +<text x="418.56" y="1615.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="667.1" y="2757" width="0.3" height="15.0" fill="rgb(243,228,20)" rx="2" ry="2" /> +<text x="670.10" y="2767.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (13 samples, 0.36%)</title><rect x="332.6" y="1765" width="4.3" height="15.0" fill="rgb(245,60,20)" rx="2" ry="2" /> +<text x="335.60" y="1775.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="411.6" y="1797" width="0.3" height="15.0" fill="rgb(231,18,25)" rx="2" ry="2" /> +<text x="414.60" y="1807.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.03%)</title><rect x="670.1" y="2677" width="0.3" height="15.0" fill="rgb(209,61,20)" rx="2" ry="2" /> +<text x="673.07" y="2687.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (8 samples, 0.22%)</title><rect x="370.3" y="1941" width="2.6" height="15.0" fill="rgb(241,161,23)" rx="2" ry="2" /> +<text x="373.28" y="1951.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Stack::pushValue (1 samples, 0.03%)</title><rect x="1105.4" y="3445" width="0.3" height="15.0" fill="rgb(217,207,8)" rx="2" ry="2" /> +<text x="1108.38" y="3455.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (682 samples, 19.10%)</title><rect x="423.2" y="901" width="225.4" height="15.0" fill="rgb(206,188,19)" rx="2" ry="2" /> +<text x="426.17" y="911.5" >Nsfisis\Waddiwasi\Execution\R..</text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (3 samples, 0.08%)</title><rect x="848.6" y="3285" width="1.0" height="15.0" fill="rgb(221,11,14)" rx="2" ry="2" /> +<text x="851.56" y="3295.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="833.0" y="2213" width="0.4" height="15.0" fill="rgb(228,26,11)" rx="2" ry="2" /> +<text x="836.03" y="2223.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.03%)</title><rect x="1153.6" y="3413" width="0.4" height="15.0" fill="rgb(214,155,2)" rx="2" ry="2" /> +<text x="1156.64" y="3423.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="947.1" y="2405" width="0.3" height="15.0" fill="rgb(249,89,9)" rx="2" ry="2" /> +<text x="950.06" y="2415.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.03%)</title><rect x="391.1" y="2037" width="0.3" height="15.0" fill="rgb(243,203,4)" rx="2" ry="2" /> +<text x="394.10" y="2047.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (2 samples, 0.06%)</title><rect x="954.7" y="213" width="0.6" height="15.0" fill="rgb(226,7,1)" rx="2" ry="2" /> +<text x="957.66" y="223.5" ></text> +</g> +<g > +<title><unknown> (1 samples, 0.03%)</title><rect x="253.9" y="2373" width="0.4" height="15.0" fill="rgb(254,28,9)" rx="2" ry="2" /> +<text x="256.93" y="2383.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (3 samples, 0.08%)</title><rect x="1116.6" y="3493" width="1.0" height="15.0" fill="rgb(217,186,21)" rx="2" ry="2" /> +<text x="1119.62" y="3503.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.03%)</title><rect x="1107.4" y="3349" width="0.3" height="15.0" fill="rgb(245,50,50)" rx="2" ry="2" /> +<text x="1110.37" y="3359.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (2 samples, 0.06%)</title><rect x="263.2" y="1893" width="0.6" height="15.0" fill="rgb(221,61,44)" rx="2" ry="2" /> +<text x="266.19" y="1903.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.03%)</title><rect x="411.6" y="1717" width="0.3" height="15.0" fill="rgb(240,35,12)" rx="2" ry="2" /> +<text x="414.60" y="1727.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (38 samples, 1.06%)</title><rect x="353.4" y="1957" width="12.6" height="15.0" fill="rgb(230,204,47)" rx="2" ry="2" /> +<text x="356.42" y="1967.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (11 samples, 0.31%)</title><rect x="287.3" y="2037" width="3.7" height="15.0" fill="rgb(215,173,14)" rx="2" ry="2" /> +<text x="290.32" y="2047.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.03%)</title><rect x="843.6" y="2421" width="0.3" height="15.0" fill="rgb(243,14,12)" rx="2" ry="2" /> +<text x="846.60" y="2431.5" ></text> +</g> +<g > +<title><unknown> (1 samples, 0.03%)</title><rect x="221.9" y="3413" width="0.3" height="15.0" fill="rgb(211,57,28)" rx="2" ry="2" /> +<text x="224.87" y="3423.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (3 samples, 0.08%)</title><rect x="706.1" y="2709" width="1.0" height="15.0" fill="rgb(208,13,1)" rx="2" ry="2" /> +<text x="709.10" y="2719.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (4 samples, 0.11%)</title><rect x="954.7" y="3349" width="1.3" height="15.0" fill="rgb(227,94,52)" rx="2" ry="2" /> +<text x="957.66" y="3359.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.03%)</title><rect x="348.5" y="1813" width="0.3" height="15.0" fill="rgb(254,5,12)" rx="2" ry="2" /> +<text x="351.46" y="1823.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\ControlFlowResults\Br::__construct (1 samples, 0.03%)</title><rect x="895.8" y="2805" width="0.4" height="15.0" fill="rgb(252,8,49)" rx="2" ry="2" /> +<text x="898.83" y="2815.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.03%)</title><rect x="845.6" y="2421" width="0.3" height="15.0" fill="rgb(213,11,46)" rx="2" ry="2" /> +<text x="848.59" y="2431.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (2 samples, 0.06%)</title><rect x="672.4" y="2325" width="0.6" height="15.0" fill="rgb(210,35,30)" rx="2" ry="2" /> +<text x="675.39" y="2335.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (3 samples, 0.08%)</title><rect x="855.2" y="2549" width="1.0" height="15.0" fill="rgb(238,181,2)" rx="2" ry="2" /> +<text x="858.17" y="2559.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.03%)</title><rect x="298.9" y="1685" width="0.3" height="15.0" fill="rgb(248,143,51)" rx="2" ry="2" /> +<text x="301.89" y="1695.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="316.4" y="1093" width="0.3" height="15.0" fill="rgb(232,202,43)" rx="2" ry="2" /> +<text x="319.40" y="1103.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.03%)</title><rect x="314.1" y="1941" width="0.3" height="15.0" fill="rgb(239,116,47)" rx="2" ry="2" /> +<text x="317.09" y="1951.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::expandBlockType (1 samples, 0.03%)</title><rect x="254.3" y="2261" width="0.3" height="15.0" fill="rgb(218,214,39)" rx="2" ry="2" /> +<text x="257.26" y="2271.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (2 samples, 0.06%)</title><rect x="954.7" y="2501" width="0.6" height="15.0" fill="rgb(246,206,25)" rx="2" ry="2" /> +<text x="957.66" y="2511.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (2 samples, 0.06%)</title><rect x="904.1" y="2581" width="0.7" height="15.0" fill="rgb(221,185,4)" rx="2" ry="2" /> +<text x="907.09" y="2591.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (3 samples, 0.08%)</title><rect x="848.6" y="3077" width="1.0" height="15.0" fill="rgb(244,104,31)" rx="2" ry="2" /> +<text x="851.56" y="3087.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1,263 samples, 35.38%)</title><rect x="249.6" y="2933" width="417.5" height="15.0" fill="rgb(217,6,26)" rx="2" ry="2" /> +<text x="252.64" y="2943.5" >Nsfisis\Waddiwasi\Execution\Runtime::execInstrs</text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.03%)</title><rect x="315.4" y="1621" width="0.3" height="15.0" fill="rgb(205,62,30)" rx="2" ry="2" /> +<text x="318.41" y="1631.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="410.9" y="2085" width="0.4" height="15.0" fill="rgb(228,173,20)" rx="2" ry="2" /> +<text x="413.94" y="2095.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (2 samples, 0.06%)</title><rect x="311.4" y="1557" width="0.7" height="15.0" fill="rgb(241,209,20)" rx="2" ry="2" /> +<text x="314.45" y="1567.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (3 samples, 0.08%)</title><rect x="848.6" y="2949" width="1.0" height="15.0" fill="rgb(231,228,5)" rx="2" ry="2" /> +<text x="851.56" y="2959.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (2 samples, 0.06%)</title><rect x="1165.9" y="3509" width="0.6" height="15.0" fill="rgb(215,114,25)" rx="2" ry="2" /> +<text x="1168.87" y="3519.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (1 samples, 0.03%)</title><rect x="1107.4" y="3381" width="0.3" height="15.0" fill="rgb(221,174,21)" rx="2" ry="2" /> +<text x="1110.37" y="3391.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.03%)</title><rect x="670.7" y="2357" width="0.4" height="15.0" fill="rgb(219,43,36)" rx="2" ry="2" /> +<text x="673.73" y="2367.5" ></text> +</g> +<g > +<title><unknown> (1 samples, 0.03%)</title><rect x="870.4" y="1749" width="0.3" height="15.0" fill="rgb(220,208,9)" rx="2" ry="2" /> +<text x="873.38" y="1759.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (3 samples, 0.08%)</title><rect x="842.9" y="2725" width="1.0" height="15.0" fill="rgb(253,41,42)" rx="2" ry="2" /> +<text x="845.94" y="2735.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="941.8" y="2597" width="0.3" height="15.0" fill="rgb(237,186,19)" rx="2" ry="2" /> +<text x="944.77" y="2607.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.03%)</title><rect x="319.0" y="1973" width="0.4" height="15.0" fill="rgb(207,78,29)" rx="2" ry="2" /> +<text x="322.05" y="1983.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::expandBlockType (1 samples, 0.03%)</title><rect x="696.5" y="2613" width="0.3" height="15.0" fill="rgb(233,13,33)" rx="2" ry="2" /> +<text x="699.52" y="2623.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.03%)</title><rect x="848.2" y="2901" width="0.4" height="15.0" fill="rgb(245,122,4)" rx="2" ry="2" /> +<text x="851.23" y="2911.5" ></text> +</g> +<g > +<title>print_r (1 samples, 0.03%)</title><rect x="651.9" y="2405" width="0.3" height="15.0" fill="rgb(208,229,50)" rx="2" ry="2" /> +<text x="654.89" y="2415.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (2 samples, 0.06%)</title><rect x="955.3" y="2821" width="0.7" height="15.0" fill="rgb(208,173,21)" rx="2" ry="2" /> +<text x="958.32" y="2831.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (4 samples, 0.11%)</title><rect x="368.6" y="1957" width="1.3" height="15.0" fill="rgb(207,80,10)" rx="2" ry="2" /> +<text x="371.63" y="1967.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.03%)</title><rect x="845.6" y="2773" width="0.3" height="15.0" fill="rgb(239,127,43)" rx="2" ry="2" /> +<text x="848.59" y="2783.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.03%)</title><rect x="842.6" y="2325" width="0.3" height="15.0" fill="rgb(253,195,29)" rx="2" ry="2" /> +<text x="845.61" y="2335.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (26 samples, 0.73%)</title><rect x="1096.5" y="3381" width="8.6" height="15.0" fill="rgb(241,112,4)" rx="2" ry="2" /> +<text x="1099.46" y="3391.5" ></text> +</g> +<g > +<title><unknown> (1 samples, 0.03%)</title><rect x="789.7" y="2197" width="0.4" height="15.0" fill="rgb(221,5,6)" rx="2" ry="2" /> +<text x="792.73" y="2207.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (159 samples, 4.45%)</title><rect x="898.8" y="2741" width="52.6" height="15.0" fill="rgb(249,160,39)" rx="2" ry="2" /> +<text x="901.80" y="2751.5" >Nsfis..</text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::activateLabel (1 samples, 0.03%)</title><rect x="1099.1" y="3269" width="0.3" height="15.0" fill="rgb(229,78,44)" rx="2" ry="2" /> +<text x="1102.10" y="3279.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (1 samples, 0.03%)</title><rect x="344.8" y="2021" width="0.4" height="15.0" fill="rgb(233,217,27)" rx="2" ry="2" /> +<text x="347.83" y="2031.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.03%)</title><rect x="1090.8" y="3381" width="0.4" height="15.0" fill="rgb(231,117,20)" rx="2" ry="2" /> +<text x="1093.84" y="3391.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.03%)</title><rect x="930.2" y="2485" width="0.3" height="15.0" fill="rgb(231,94,34)" rx="2" ry="2" /> +<text x="933.20" y="2495.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (1 samples, 0.03%)</title><rect x="265.2" y="1813" width="0.3" height="15.0" fill="rgb(228,12,16)" rx="2" ry="2" /> +<text x="268.17" y="1823.5" ></text> +</g> +<g > +<title><unknown> (5 samples, 0.14%)</title><rect x="196.1" y="3445" width="1.6" height="15.0" fill="rgb(232,98,35)" rx="2" ry="2" /> +<text x="199.09" y="3455.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.03%)</title><rect x="849.2" y="2869" width="0.4" height="15.0" fill="rgb(253,94,17)" rx="2" ry="2" /> +<text x="852.22" y="2879.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (2 samples, 0.06%)</title><rect x="954.7" y="2293" width="0.6" height="15.0" fill="rgb(215,141,0)" rx="2" ry="2" /> +<text x="957.66" y="2303.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Structure\Instructions\Instrs\Memory\I32Store8::__construct (2 samples, 0.06%)</title><rect x="245.3" y="3461" width="0.7" height="15.0" fill="rgb(243,168,35)" rx="2" ry="2" /> +<text x="248.34" y="3471.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (3 samples, 0.08%)</title><rect x="316.1" y="1781" width="1.0" height="15.0" fill="rgb(205,221,27)" rx="2" ry="2" /> +<text x="319.07" y="1791.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (11 samples, 0.31%)</title><rect x="874.7" y="2405" width="3.6" height="15.0" fill="rgb(244,87,29)" rx="2" ry="2" /> +<text x="877.67" y="2415.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="298.9" y="1701" width="0.3" height="15.0" fill="rgb(208,52,51)" rx="2" ry="2" /> +<text x="301.89" y="1711.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="848.2" y="2757" width="0.4" height="15.0" fill="rgb(247,46,54)" rx="2" ry="2" /> +<text x="851.23" y="2767.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (1 samples, 0.03%)</title><rect x="843.6" y="2453" width="0.3" height="15.0" fill="rgb(245,37,32)" rx="2" ry="2" /> +<text x="846.60" y="2463.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (4 samples, 0.11%)</title><rect x="257.6" y="2069" width="1.3" height="15.0" fill="rgb(254,15,47)" rx="2" ry="2" /> +<text x="260.57" y="2079.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.03%)</title><rect x="840.6" y="2357" width="0.4" height="15.0" fill="rgb(226,12,23)" rx="2" ry="2" /> +<text x="843.63" y="2367.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\ControlFlowResult::Return (1 samples, 0.03%)</title><rect x="315.4" y="1653" width="0.3" height="15.0" fill="rgb(214,131,23)" rx="2" ry="2" /> +<text x="318.41" y="1663.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (174 samples, 4.87%)</title><rect x="784.4" y="2581" width="57.5" height="15.0" fill="rgb(251,215,28)" rx="2" ry="2" /> +<text x="787.44" y="2591.5" >Nsfisi..</text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="881.0" y="2533" width="0.3" height="15.0" fill="rgb(227,139,13)" rx="2" ry="2" /> +<text x="883.95" y="2543.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (2 samples, 0.06%)</title><rect x="421.2" y="2069" width="0.6" height="15.0" fill="rgb(250,228,38)" rx="2" ry="2" /> +<text x="424.18" y="2079.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="838.6" y="2149" width="0.4" height="15.0" fill="rgb(244,226,32)" rx="2" ry="2" /> +<text x="841.64" y="2159.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Stack::pushBool (1 samples, 0.03%)</title><rect x="830.1" y="2133" width="0.3" height="15.0" fill="rgb(222,41,8)" rx="2" ry="2" /> +<text x="833.05" y="2143.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (2 samples, 0.06%)</title><rect x="695.5" y="2485" width="0.7" height="15.0" fill="rgb(205,151,1)" rx="2" ry="2" /> +<text x="698.52" y="2495.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (2 samples, 0.06%)</title><rect x="954.7" y="165" width="0.6" height="15.0" fill="rgb(230,181,5)" rx="2" ry="2" /> +<text x="957.66" y="175.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\BinaryFormat\Decoder::decodeVec (8 samples, 0.22%)</title><rect x="14.0" y="3445" width="2.6" height="15.0" fill="rgb(251,88,22)" rx="2" ry="2" /> +<text x="16.97" y="3455.5" ></text> +</g> +<g > +<title><unknown> (1 samples, 0.03%)</title><rect x="870.4" y="1701" width="0.3" height="15.0" fill="rgb(243,146,15)" rx="2" ry="2" /> +<text x="873.38" y="1711.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (2 samples, 0.06%)</title><rect x="954.7" y="1797" width="0.6" height="15.0" fill="rgb(212,66,16)" rx="2" ry="2" /> +<text x="957.66" y="1807.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (6 samples, 0.17%)</title><rect x="414.9" y="1765" width="2.0" height="15.0" fill="rgb(252,129,21)" rx="2" ry="2" /> +<text x="417.90" y="1775.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.03%)</title><rect x="1104.4" y="2357" width="0.3" height="15.0" fill="rgb(248,149,45)" rx="2" ry="2" /> +<text x="1107.39" y="2367.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="411.6" y="1701" width="0.3" height="15.0" fill="rgb(210,48,22)" rx="2" ry="2" /> +<text x="414.60" y="1711.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (2 samples, 0.06%)</title><rect x="1104.1" y="2709" width="0.6" height="15.0" fill="rgb(252,207,0)" rx="2" ry="2" /> +<text x="1107.06" y="2719.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.03%)</title><rect x="1121.6" y="3445" width="0.3" height="15.0" fill="rgb(230,81,0)" rx="2" ry="2" /> +<text x="1124.58" y="3455.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (1 samples, 0.03%)</title><rect x="847.9" y="2741" width="0.3" height="15.0" fill="rgb(249,206,7)" rx="2" ry="2" /> +<text x="850.90" y="2751.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1,253 samples, 35.10%)</title><rect x="252.3" y="2677" width="414.1" height="15.0" fill="rgb(221,223,10)" rx="2" ry="2" /> +<text x="255.28" y="2687.5" >Nsfisis\Waddiwasi\Execution\Runtime::execInstrs</text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (1,826 samples, 51.15%)</title><rect x="246.0" y="3445" width="603.6" height="15.0" fill="rgb(225,59,43)" rx="2" ry="2" /> +<text x="249.00" y="3455.5" >Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc</text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (688 samples, 19.27%)</title><rect x="422.2" y="2149" width="227.4" height="15.0" fill="rgb(228,138,41)" rx="2" ry="2" /> +<text x="425.17" y="2159.5" >Nsfisis\Waddiwasi\Execution\Ru..</text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.03%)</title><rect x="799.0" y="2229" width="0.3" height="15.0" fill="rgb(220,95,32)" rx="2" ry="2" /> +<text x="801.98" y="2239.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1,254 samples, 35.13%)</title><rect x="251.9" y="2805" width="414.5" height="15.0" fill="rgb(246,223,8)" rx="2" ry="2" /> +<text x="254.95" y="2815.5" >Nsfisis\Waddiwasi\Execution\Runtime::execInstrs</text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (2 samples, 0.06%)</title><rect x="261.5" y="1941" width="0.7" height="15.0" fill="rgb(233,141,18)" rx="2" ry="2" /> +<text x="264.54" y="1951.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="848.2" y="2725" width="0.4" height="15.0" fill="rgb(219,169,7)" rx="2" ry="2" /> +<text x="851.23" y="2735.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="375.9" y="1413" width="0.3" height="15.0" fill="rgb(223,2,46)" rx="2" ry="2" /> +<text x="378.90" y="1423.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="313.4" y="2053" width="0.4" height="15.0" fill="rgb(224,10,17)" rx="2" ry="2" /> +<text x="316.43" y="2063.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (2 samples, 0.06%)</title><rect x="697.2" y="2309" width="0.6" height="15.0" fill="rgb(209,94,32)" rx="2" ry="2" /> +<text x="700.18" y="2319.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (8 samples, 0.22%)</title><rect x="414.2" y="1845" width="2.7" height="15.0" fill="rgb(250,216,28)" rx="2" ry="2" /> +<text x="417.24" y="1855.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (1 samples, 0.03%)</title><rect x="249.3" y="3061" width="0.3" height="15.0" fill="rgb(244,118,7)" rx="2" ry="2" /> +<text x="252.31" y="3071.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (1 samples, 0.03%)</title><rect x="307.5" y="1685" width="0.3" height="15.0" fill="rgb(237,130,30)" rx="2" ry="2" /> +<text x="310.48" y="1695.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (21 samples, 0.59%)</title><rect x="400.0" y="2053" width="7.0" height="15.0" fill="rgb(212,46,25)" rx="2" ry="2" /> +<text x="403.03" y="2063.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.03%)</title><rect x="669.4" y="2421" width="0.3" height="15.0" fill="rgb(245,206,11)" rx="2" ry="2" /> +<text x="672.41" y="2431.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (4 samples, 0.11%)</title><rect x="311.4" y="1765" width="1.4" height="15.0" fill="rgb(221,102,0)" rx="2" ry="2" /> +<text x="314.45" y="1775.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (4 samples, 0.11%)</title><rect x="374.9" y="1621" width="1.3" height="15.0" fill="rgb(209,176,19)" rx="2" ry="2" /> +<text x="377.91" y="1631.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="410.9" y="1861" width="0.4" height="15.0" fill="rgb(249,141,22)" rx="2" ry="2" /> +<text x="413.94" y="1871.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="847.6" y="2501" width="0.3" height="15.0" fill="rgb(226,129,48)" rx="2" ry="2" /> +<text x="850.57" y="2511.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (4 samples, 0.11%)</title><rect x="797.0" y="2085" width="1.3" height="15.0" fill="rgb(208,154,1)" rx="2" ry="2" /> +<text x="800.00" y="2095.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.03%)</title><rect x="951.4" y="2645" width="0.3" height="15.0" fill="rgb(226,79,16)" rx="2" ry="2" /> +<text x="954.36" y="2655.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.03%)</title><rect x="383.5" y="1845" width="0.3" height="15.0" fill="rgb(229,88,33)" rx="2" ry="2" /> +<text x="386.50" y="1855.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.03%)</title><rect x="420.2" y="2037" width="0.3" height="15.0" fill="rgb(224,172,28)" rx="2" ry="2" /> +<text x="423.19" y="2047.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (686 samples, 19.22%)</title><rect x="422.2" y="2021" width="226.7" height="15.0" fill="rgb(246,216,31)" rx="2" ry="2" /> +<text x="425.17" y="2031.5" >Nsfisis\Waddiwasi\Execution\Ru..</text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (16 samples, 0.45%)</title><rect x="343.8" y="2053" width="5.3" height="15.0" fill="rgb(235,147,33)" rx="2" ry="2" /> +<text x="346.84" y="2063.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeHostFunc (1 samples, 0.03%)</title><rect x="249.3" y="3045" width="0.3" height="15.0" fill="rgb(229,173,29)" rx="2" ry="2" /> +<text x="252.31" y="3055.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (2 samples, 0.06%)</title><rect x="954.7" y="181" width="0.6" height="15.0" fill="rgb(249,170,8)" rx="2" ry="2" /> +<text x="957.66" y="191.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (735 samples, 20.59%)</title><rect x="409.0" y="2373" width="242.9" height="15.0" fill="rgb(225,182,40)" rx="2" ry="2" /> +<text x="411.95" y="2383.5" >Nsfisis\Waddiwasi\Execution\Runt..</text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (2 samples, 0.06%)</title><rect x="405.0" y="1045" width="0.6" height="15.0" fill="rgb(226,32,45)" rx="2" ry="2" /> +<text x="407.99" y="1055.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (2 samples, 0.06%)</title><rect x="669.4" y="2709" width="0.7" height="15.0" fill="rgb(222,189,49)" rx="2" ry="2" /> +<text x="672.41" y="2719.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (684 samples, 19.16%)</title><rect x="422.5" y="1141" width="226.1" height="15.0" fill="rgb(223,12,39)" rx="2" ry="2" /> +<text x="425.50" y="1151.5" >Nsfisis\Waddiwasi\Execution\R..</text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (2 samples, 0.06%)</title><rect x="369.3" y="1877" width="0.6" height="15.0" fill="rgb(246,215,8)" rx="2" ry="2" /> +<text x="372.29" y="1887.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="420.2" y="2085" width="0.3" height="15.0" fill="rgb(217,21,52)" rx="2" ry="2" /> +<text x="423.19" y="2095.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (125 samples, 3.50%)</title><rect x="350.1" y="2101" width="41.3" height="15.0" fill="rgb(214,217,19)" rx="2" ry="2" /> +<text x="353.12" y="2111.5" >Nsf..</text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (4 samples, 0.11%)</title><rect x="954.7" y="3237" width="1.3" height="15.0" fill="rgb(237,87,12)" rx="2" ry="2" /> +<text x="957.66" y="3247.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Stack::popValue (10 samples, 0.28%)</title><rect x="187.2" y="3429" width="3.3" height="15.0" fill="rgb(221,103,46)" rx="2" ry="2" /> +<text x="190.17" y="3439.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (1 samples, 0.03%)</title><rect x="407.0" y="2117" width="0.3" height="15.0" fill="rgb(232,118,18)" rx="2" ry="2" /> +<text x="409.97" y="2127.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="847.2" y="2565" width="0.4" height="15.0" fill="rgb(240,144,37)" rx="2" ry="2" /> +<text x="850.24" y="2575.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (1 samples, 0.03%)</title><rect x="422.2" y="1125" width="0.3" height="15.0" fill="rgb(237,62,25)" rx="2" ry="2" /> +<text x="425.17" y="1135.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (8 samples, 0.22%)</title><rect x="700.2" y="2501" width="2.6" height="15.0" fill="rgb(234,65,21)" rx="2" ry="2" /> +<text x="703.15" y="2511.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Stack::push (1 samples, 0.03%)</title><rect x="1110.0" y="3477" width="0.3" height="15.0" fill="rgb(220,173,6)" rx="2" ry="2" /> +<text x="1113.01" y="3487.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (1 samples, 0.03%)</title><rect x="262.2" y="1925" width="0.3" height="15.0" fill="rgb(254,198,27)" rx="2" ry="2" /> +<text x="265.20" y="1935.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.03%)</title><rect x="267.5" y="1941" width="0.3" height="15.0" fill="rgb(224,177,37)" rx="2" ry="2" /> +<text x="270.48" y="1951.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (3 samples, 0.08%)</title><rect x="789.7" y="2277" width="1.0" height="15.0" fill="rgb(251,67,0)" rx="2" ry="2" /> +<text x="792.73" y="2287.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.03%)</title><rect x="268.5" y="1941" width="0.3" height="15.0" fill="rgb(226,37,21)" rx="2" ry="2" /> +<text x="271.48" y="1951.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (5 samples, 0.14%)</title><rect x="366.3" y="1749" width="1.7" height="15.0" fill="rgb(212,153,11)" rx="2" ry="2" /> +<text x="369.31" y="1759.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Stack::popI32 (1 samples, 0.03%)</title><rect x="1108.0" y="3157" width="0.4" height="15.0" fill="rgb(220,54,26)" rx="2" ry="2" /> +<text x="1111.03" y="3167.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (3 samples, 0.08%)</title><rect x="848.6" y="2965" width="1.0" height="15.0" fill="rgb(236,123,30)" rx="2" ry="2" /> +<text x="851.56" y="2975.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (11 samples, 0.31%)</title><rect x="386.1" y="1669" width="3.7" height="15.0" fill="rgb(244,34,23)" rx="2" ry="2" /> +<text x="389.15" y="1679.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Stack::pushValue (1 samples, 0.03%)</title><rect x="784.1" y="2805" width="0.3" height="15.0" fill="rgb(209,223,27)" rx="2" ry="2" /> +<text x="787.11" y="2815.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.03%)</title><rect x="847.9" y="2581" width="0.3" height="15.0" fill="rgb(217,84,49)" rx="2" ry="2" /> +<text x="850.90" y="2591.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (4 samples, 0.11%)</title><rect x="246.0" y="3253" width="1.3" height="15.0" fill="rgb(213,221,27)" rx="2" ry="2" /> +<text x="249.00" y="3263.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (22 samples, 0.62%)</title><rect x="1097.8" y="3349" width="7.3" height="15.0" fill="rgb(246,182,10)" rx="2" ry="2" /> +<text x="1100.78" y="3359.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (2 samples, 0.06%)</title><rect x="954.7" y="421" width="0.6" height="15.0" fill="rgb(208,84,42)" rx="2" ry="2" /> +<text x="957.66" y="431.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="330.9" y="1925" width="0.4" height="15.0" fill="rgb(219,20,47)" rx="2" ry="2" /> +<text x="333.95" y="1935.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (40 samples, 1.12%)</title><rect x="376.9" y="1925" width="13.2" height="15.0" fill="rgb(215,91,12)" rx="2" ry="2" /> +<text x="379.89" y="1935.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="903.8" y="2469" width="0.3" height="15.0" fill="rgb(241,218,29)" rx="2" ry="2" /> +<text x="906.76" y="2479.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (3 samples, 0.08%)</title><rect x="305.8" y="1845" width="1.0" height="15.0" fill="rgb(230,122,38)" rx="2" ry="2" /> +<text x="308.83" y="1855.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (7 samples, 0.20%)</title><rect x="662.8" y="2325" width="2.3" height="15.0" fill="rgb(250,77,19)" rx="2" ry="2" /> +<text x="665.80" y="2335.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (64 samples, 1.79%)</title><rect x="1117.6" y="3509" width="21.2" height="15.0" fill="rgb(232,113,29)" rx="2" ry="2" /> +<text x="1120.61" y="3519.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Stack::popValue (1 samples, 0.03%)</title><rect x="938.1" y="2485" width="0.4" height="15.0" fill="rgb(219,156,29)" rx="2" ry="2" /> +<text x="941.13" y="2495.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (1 samples, 0.03%)</title><rect x="316.4" y="1317" width="0.3" height="15.0" fill="rgb(232,128,21)" rx="2" ry="2" /> +<text x="319.40" y="1327.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (10 samples, 0.28%)</title><rect x="684.0" y="2437" width="3.3" height="15.0" fill="rgb(219,119,6)" rx="2" ry="2" /> +<text x="686.96" y="2447.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (1 samples, 0.03%)</title><rect x="848.2" y="2917" width="0.4" height="15.0" fill="rgb(241,181,8)" rx="2" ry="2" /> +<text x="851.23" y="2927.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.03%)</title><rect x="947.1" y="2421" width="0.3" height="15.0" fill="rgb(245,66,15)" rx="2" ry="2" /> +<text x="950.06" y="2431.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.03%)</title><rect x="894.8" y="2581" width="0.4" height="15.0" fill="rgb(207,37,21)" rx="2" ry="2" /> +<text x="897.83" y="2591.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (10 samples, 0.28%)</title><rect x="684.0" y="2453" width="3.3" height="15.0" fill="rgb(247,24,20)" rx="2" ry="2" /> +<text x="686.96" y="2463.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (2 samples, 0.06%)</title><rect x="842.9" y="2437" width="0.7" height="15.0" fill="rgb(220,35,1)" rx="2" ry="2" /> +<text x="845.94" y="2447.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (2 samples, 0.06%)</title><rect x="405.0" y="1189" width="0.6" height="15.0" fill="rgb(216,186,46)" rx="2" ry="2" /> +<text x="407.99" y="1199.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="661.5" y="2117" width="0.3" height="15.0" fill="rgb(236,220,5)" rx="2" ry="2" /> +<text x="664.48" y="2127.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (3 samples, 0.08%)</title><rect x="952.0" y="2581" width="1.0" height="15.0" fill="rgb(213,10,53)" rx="2" ry="2" /> +<text x="955.02" y="2591.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (5 samples, 0.14%)</title><rect x="849.6" y="2501" width="1.6" height="15.0" fill="rgb(216,149,13)" rx="2" ry="2" /> +<text x="852.55" y="2511.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (2 samples, 0.06%)</title><rect x="661.8" y="2197" width="0.7" height="15.0" fill="rgb(240,165,42)" rx="2" ry="2" /> +<text x="664.81" y="2207.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doStoreI32 (1 samples, 0.03%)</title><rect x="411.3" y="2069" width="0.3" height="15.0" fill="rgb(229,35,9)" rx="2" ry="2" /> +<text x="414.27" y="2079.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.03%)</title><rect x="404.7" y="1173" width="0.3" height="15.0" fill="rgb(248,228,42)" rx="2" ry="2" /> +<text x="407.66" y="1183.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (2 samples, 0.06%)</title><rect x="849.6" y="2373" width="0.6" height="15.0" fill="rgb(218,201,0)" rx="2" ry="2" /> +<text x="852.55" y="2383.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (12 samples, 0.34%)</title><rect x="1133.5" y="3285" width="3.9" height="15.0" fill="rgb(235,177,34)" rx="2" ry="2" /> +<text x="1136.48" y="3295.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Val::Num (2 samples, 0.06%)</title><rect x="172.3" y="3429" width="0.7" height="15.0" fill="rgb(216,12,1)" rx="2" ry="2" /> +<text x="175.29" y="3439.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (3 samples, 0.08%)</title><rect x="841.9" y="2789" width="1.0" height="15.0" fill="rgb(248,113,39)" rx="2" ry="2" /> +<text x="844.95" y="2799.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.03%)</title><rect x="358.4" y="1621" width="0.3" height="15.0" fill="rgb(238,21,50)" rx="2" ry="2" /> +<text x="361.38" y="1631.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="666.1" y="2501" width="0.3" height="15.0" fill="rgb(213,93,4)" rx="2" ry="2" /> +<text x="669.11" y="2511.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Num::I32 (1 samples, 0.03%)</title><rect x="782.5" y="2165" width="0.3" height="15.0" fill="rgb(206,185,47)" rx="2" ry="2" /> +<text x="785.45" y="2175.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (5 samples, 0.14%)</title><rect x="700.2" y="2485" width="1.6" height="15.0" fill="rgb(243,108,39)" rx="2" ry="2" /> +<text x="703.15" y="2495.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.03%)</title><rect x="250.0" y="2709" width="0.3" height="15.0" fill="rgb(240,227,47)" rx="2" ry="2" /> +<text x="252.97" y="2719.5" ></text> +</g> +<g > +<title><unknown> (1 samples, 0.03%)</title><rect x="905.7" y="2549" width="0.4" height="15.0" fill="rgb(228,156,6)" rx="2" ry="2" /> +<text x="908.74" y="2559.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="246.0" y="3077" width="0.3" height="15.0" fill="rgb(212,41,32)" rx="2" ry="2" /> +<text x="249.00" y="3087.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.03%)</title><rect x="790.1" y="1909" width="0.3" height="15.0" fill="rgb(224,109,50)" rx="2" ry="2" /> +<text x="793.06" y="1919.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="851.2" y="2373" width="0.3" height="15.0" fill="rgb(214,9,36)" rx="2" ry="2" /> +<text x="854.20" y="2383.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (4 samples, 0.11%)</title><rect x="954.7" y="3029" width="1.3" height="15.0" fill="rgb(237,94,13)" rx="2" ry="2" /> +<text x="957.66" y="3039.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="670.4" y="2725" width="0.3" height="15.0" fill="rgb(223,127,52)" rx="2" ry="2" /> +<text x="673.40" y="2735.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="656.5" y="1925" width="0.4" height="15.0" fill="rgb(212,139,40)" rx="2" ry="2" /> +<text x="659.52" y="1935.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (3 samples, 0.08%)</title><rect x="917.0" y="2533" width="1.0" height="15.0" fill="rgb(219,222,26)" rx="2" ry="2" /> +<text x="919.98" y="2543.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.03%)</title><rect x="702.8" y="2549" width="0.3" height="15.0" fill="rgb(229,54,38)" rx="2" ry="2" /> +<text x="705.80" y="2559.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (2 samples, 0.06%)</title><rect x="669.4" y="2693" width="0.7" height="15.0" fill="rgb(218,25,21)" rx="2" ry="2" /> +<text x="672.41" y="2703.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.03%)</title><rect x="954.3" y="2645" width="0.4" height="15.0" fill="rgb(223,26,0)" rx="2" ry="2" /> +<text x="957.33" y="2655.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="842.6" y="2437" width="0.3" height="15.0" fill="rgb(243,101,4)" rx="2" ry="2" /> +<text x="845.61" y="2447.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (230 samples, 6.44%)</title><rect x="707.4" y="2741" width="76.0" height="15.0" fill="rgb(206,117,13)" rx="2" ry="2" /> +<text x="710.42" y="2751.5" >Nsfisis\..</text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (1 samples, 0.03%)</title><rect x="344.8" y="2037" width="0.4" height="15.0" fill="rgb(232,229,33)" rx="2" ry="2" /> +<text x="347.83" y="2047.5" ></text> +</g> +<g > +<title>print_r (1 samples, 0.03%)</title><rect x="242.4" y="3429" width="0.3" height="15.0" fill="rgb(225,78,38)" rx="2" ry="2" /> +<text x="245.36" y="3439.5" ></text> +</g> +<g > +<title><unknown> (1 samples, 0.03%)</title><rect x="398.4" y="2085" width="0.3" height="15.0" fill="rgb(215,17,8)" rx="2" ry="2" /> +<text x="401.38" y="2095.5" ></text> +</g> +<g > +<title><unknown> (1 samples, 0.03%)</title><rect x="813.5" y="2325" width="0.4" height="15.0" fill="rgb(214,97,30)" rx="2" ry="2" /> +<text x="816.52" y="2335.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="391.4" y="1925" width="0.4" height="15.0" fill="rgb(215,136,30)" rx="2" ry="2" /> +<text x="394.43" y="1935.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="845.6" y="2757" width="0.3" height="15.0" fill="rgb(254,164,19)" rx="2" ry="2" /> +<text x="848.59" y="2767.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.03%)</title><rect x="307.1" y="1621" width="0.4" height="15.0" fill="rgb(229,124,3)" rx="2" ry="2" /> +<text x="310.15" y="1631.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (6 samples, 0.17%)</title><rect x="835.7" y="2181" width="2.0" height="15.0" fill="rgb(226,153,25)" rx="2" ry="2" /> +<text x="838.67" y="2191.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (3 samples, 0.08%)</title><rect x="946.4" y="2485" width="1.0" height="15.0" fill="rgb(242,156,14)" rx="2" ry="2" /> +<text x="949.40" y="2495.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (3 samples, 0.08%)</title><rect x="407.0" y="2229" width="1.0" height="15.0" fill="rgb(245,80,38)" rx="2" ry="2" /> +<text x="409.97" y="2239.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (8 samples, 0.22%)</title><rect x="288.3" y="2005" width="2.7" height="15.0" fill="rgb(237,102,46)" rx="2" ry="2" /> +<text x="291.31" y="2015.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (6 samples, 0.17%)</title><rect x="849.6" y="2853" width="1.9" height="15.0" fill="rgb(234,158,6)" rx="2" ry="2" /> +<text x="852.55" y="2863.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (6 samples, 0.17%)</title><rect x="846.6" y="3125" width="2.0" height="15.0" fill="rgb(251,228,34)" rx="2" ry="2" /> +<text x="849.58" y="3135.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (19 samples, 0.53%)</title><rect x="867.7" y="2229" width="6.3" height="15.0" fill="rgb(223,128,29)" rx="2" ry="2" /> +<text x="870.73" y="2239.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (3 samples, 0.08%)</title><rect x="701.8" y="2485" width="1.0" height="15.0" fill="rgb(210,73,8)" rx="2" ry="2" /> +<text x="704.80" y="2495.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (3 samples, 0.08%)</title><rect x="670.7" y="2805" width="1.0" height="15.0" fill="rgb(232,74,17)" rx="2" ry="2" /> +<text x="673.73" y="2815.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (1 samples, 0.03%)</title><rect x="848.2" y="2677" width="0.4" height="15.0" fill="rgb(244,198,37)" rx="2" ry="2" /> +<text x="851.23" y="2687.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (5 samples, 0.14%)</title><rect x="849.6" y="2437" width="1.6" height="15.0" fill="rgb(246,83,31)" rx="2" ry="2" /> +<text x="852.55" y="2447.5" ></text> +</g> +<g > +<title>Composer\Autoload\ClassLoader::loadClass (1 samples, 0.03%)</title><rect x="846.2" y="2997" width="0.4" height="15.0" fill="rgb(209,32,11)" rx="2" ry="2" /> +<text x="849.25" y="3007.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (1 samples, 0.03%)</title><rect x="847.2" y="2645" width="0.4" height="15.0" fill="rgb(227,71,31)" rx="2" ry="2" /> +<text x="850.24" y="2655.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (1 samples, 0.03%)</title><rect x="808.6" y="2373" width="0.3" height="15.0" fill="rgb(246,139,23)" rx="2" ry="2" /> +<text x="811.57" y="2383.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="838.6" y="2085" width="0.4" height="15.0" fill="rgb(250,84,49)" rx="2" ry="2" /> +<text x="841.64" y="2095.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="410.9" y="2117" width="0.4" height="15.0" fill="rgb(250,30,26)" rx="2" ry="2" /> +<text x="413.94" y="2127.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (21 samples, 0.59%)</title><rect x="278.4" y="2085" width="6.9" height="15.0" fill="rgb(216,162,37)" rx="2" ry="2" /> +<text x="281.39" y="2095.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.03%)</title><rect x="807.9" y="2229" width="0.3" height="15.0" fill="rgb(238,126,35)" rx="2" ry="2" /> +<text x="810.90" y="2239.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (5 samples, 0.14%)</title><rect x="315.4" y="1989" width="1.7" height="15.0" fill="rgb(205,138,51)" rx="2" ry="2" /> +<text x="318.41" y="1999.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doStoreI32 (61 samples, 1.71%)</title><rect x="175.3" y="3461" width="20.1" height="15.0" fill="rgb(249,207,17)" rx="2" ry="2" /> +<text x="178.27" y="3471.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="842.6" y="2373" width="0.3" height="15.0" fill="rgb(245,82,10)" rx="2" ry="2" /> +<text x="845.61" y="2383.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (85 samples, 2.38%)</title><rect x="811.5" y="2341" width="28.1" height="15.0" fill="rgb(228,210,38)" rx="2" ry="2" /> +<text x="814.54" y="2351.5" >N..</text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="830.7" y="2149" width="0.3" height="15.0" fill="rgb(234,83,29)" rx="2" ry="2" /> +<text x="833.71" y="2159.5" ></text> +</g> +<g > +<title>{closure}(/home/ken/src/php-waddiwasi/vendor/composer/ClassLoader.php:575-577) (1 samples, 0.03%)</title><rect x="10.3" y="3509" width="0.4" height="15.0" fill="rgb(229,13,12)" rx="2" ry="2" /> +<text x="13.33" y="3519.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="422.8" y="773" width="0.4" height="15.0" fill="rgb(227,217,27)" rx="2" ry="2" /> +<text x="425.83" y="783.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.03%)</title><rect x="843.9" y="2805" width="0.4" height="15.0" fill="rgb(252,148,25)" rx="2" ry="2" /> +<text x="846.93" y="2815.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (19 samples, 0.53%)</title><rect x="331.3" y="1989" width="6.3" height="15.0" fill="rgb(251,74,9)" rx="2" ry="2" /> +<text x="334.28" y="1999.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (27 samples, 0.76%)</title><rect x="258.9" y="2085" width="8.9" height="15.0" fill="rgb(228,24,12)" rx="2" ry="2" /> +<text x="261.89" y="2095.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (3 samples, 0.08%)</title><rect x="369.0" y="1925" width="0.9" height="15.0" fill="rgb(244,0,22)" rx="2" ry="2" /> +<text x="371.96" y="1935.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.03%)</title><rect x="420.9" y="1909" width="0.3" height="15.0" fill="rgb(251,207,51)" rx="2" ry="2" /> +<text x="423.85" y="1919.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (1 samples, 0.03%)</title><rect x="280.0" y="1925" width="0.4" height="15.0" fill="rgb(254,48,19)" rx="2" ry="2" /> +<text x="283.04" y="1935.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Stack::pushI32 (1 samples, 0.03%)</title><rect x="271.5" y="2197" width="0.3" height="15.0" fill="rgb(249,6,16)" rx="2" ry="2" /> +<text x="274.45" y="2207.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (12 samples, 0.34%)</title><rect x="308.8" y="1861" width="4.0" height="15.0" fill="rgb(228,42,50)" rx="2" ry="2" /> +<text x="311.80" y="1871.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Stack::popValue (1 samples, 0.03%)</title><rect x="312.8" y="2069" width="0.3" height="15.0" fill="rgb(236,43,53)" rx="2" ry="2" /> +<text x="315.77" y="2079.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (74 samples, 2.07%)</title><rect x="854.2" y="2709" width="24.4" height="15.0" fill="rgb(254,228,35)" rx="2" ry="2" /> +<text x="857.18" y="2719.5" >N..</text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (20 samples, 0.56%)</title><rect x="358.7" y="1925" width="6.6" height="15.0" fill="rgb(208,55,11)" rx="2" ry="2" /> +<text x="361.71" y="1935.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.03%)</title><rect x="658.5" y="2005" width="0.3" height="15.0" fill="rgb(227,18,44)" rx="2" ry="2" /> +<text x="661.50" y="2015.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="270.8" y="1669" width="0.3" height="15.0" fill="rgb(227,48,9)" rx="2" ry="2" /> +<text x="273.79" y="1679.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="664.5" y="1957" width="0.3" height="15.0" fill="rgb(246,91,23)" rx="2" ry="2" /> +<text x="667.45" y="1967.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (1 samples, 0.03%)</title><rect x="954.0" y="2437" width="0.3" height="15.0" fill="rgb(235,223,45)" rx="2" ry="2" /> +<text x="957.00" y="2447.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (682 samples, 19.10%)</title><rect x="423.2" y="773" width="225.4" height="15.0" fill="rgb(220,206,39)" rx="2" ry="2" /> +<text x="426.17" y="783.5" >Nsfisis\Waddiwasi\Execution\R..</text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.03%)</title><rect x="695.9" y="2389" width="0.3" height="15.0" fill="rgb(250,121,8)" rx="2" ry="2" /> +<text x="698.85" y="2399.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (1 samples, 0.03%)</title><rect x="410.9" y="1941" width="0.4" height="15.0" fill="rgb(214,224,18)" rx="2" ry="2" /> +<text x="413.94" y="1951.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (3 samples, 0.08%)</title><rect x="848.6" y="2981" width="1.0" height="15.0" fill="rgb(245,180,25)" rx="2" ry="2" /> +<text x="851.56" y="2991.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Stack::pushValue (7 samples, 0.20%)</title><rect x="195.8" y="3461" width="2.3" height="15.0" fill="rgb(241,130,16)" rx="2" ry="2" /> +<text x="198.76" y="3471.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (1 samples, 0.03%)</title><rect x="878.3" y="2325" width="0.3" height="15.0" fill="rgb(243,29,50)" rx="2" ry="2" /> +<text x="881.31" y="2335.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (4 samples, 0.11%)</title><rect x="315.7" y="1861" width="1.4" height="15.0" fill="rgb(214,214,21)" rx="2" ry="2" /> +<text x="318.74" y="1871.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="1165.2" y="3429" width="0.3" height="15.0" fill="rgb(238,104,48)" rx="2" ry="2" /> +<text x="1168.21" y="3439.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (2 samples, 0.06%)</title><rect x="954.7" y="661" width="0.6" height="15.0" fill="rgb(221,130,49)" rx="2" ry="2" /> +<text x="957.66" y="671.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (125 samples, 3.50%)</title><rect x="350.1" y="2085" width="41.3" height="15.0" fill="rgb(220,131,49)" rx="2" ry="2" /> +<text x="353.12" y="2095.5" >Nsf..</text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (18 samples, 0.50%)</title><rect x="411.3" y="2133" width="5.9" height="15.0" fill="rgb(219,13,53)" rx="2" ry="2" /> +<text x="414.27" y="2143.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (6 samples, 0.17%)</title><rect x="849.6" y="2965" width="1.9" height="15.0" fill="rgb(206,173,6)" rx="2" ry="2" /> +<text x="852.55" y="2975.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (13 samples, 0.36%)</title><rect x="671.7" y="2693" width="4.3" height="15.0" fill="rgb(226,49,29)" rx="2" ry="2" /> +<text x="674.73" y="2703.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (2 samples, 0.06%)</title><rect x="331.9" y="1701" width="0.7" height="15.0" fill="rgb(246,26,37)" rx="2" ry="2" /> +<text x="334.94" y="1711.5" ></text> +</g> +<g > +<title><unknown> (1 samples, 0.03%)</title><rect x="182.2" y="3445" width="0.3" height="15.0" fill="rgb(228,101,13)" rx="2" ry="2" /> +<text x="185.21" y="3455.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Stack::popValue (1 samples, 0.03%)</title><rect x="840.0" y="2357" width="0.3" height="15.0" fill="rgb(224,19,8)" rx="2" ry="2" /> +<text x="842.97" y="2367.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.03%)</title><rect x="894.5" y="2613" width="0.3" height="15.0" fill="rgb(244,27,22)" rx="2" ry="2" /> +<text x="897.50" y="2623.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.03%)</title><rect x="954.3" y="3061" width="0.4" height="15.0" fill="rgb(212,55,4)" rx="2" ry="2" /> +<text x="957.33" y="3071.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (5 samples, 0.14%)</title><rect x="854.8" y="2581" width="1.7" height="15.0" fill="rgb(226,99,5)" rx="2" ry="2" /> +<text x="857.84" y="2591.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="841.6" y="2469" width="0.3" height="15.0" fill="rgb(250,110,26)" rx="2" ry="2" /> +<text x="844.62" y="2479.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (5 samples, 0.14%)</title><rect x="849.6" y="2549" width="1.6" height="15.0" fill="rgb(225,185,9)" rx="2" ry="2" /> +<text x="852.55" y="2559.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="895.8" y="2837" width="0.4" height="15.0" fill="rgb(212,13,9)" rx="2" ry="2" /> +<text x="898.83" y="2847.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (9 samples, 0.25%)</title><rect x="795.3" y="2261" width="3.0" height="15.0" fill="rgb(207,6,39)" rx="2" ry="2" /> +<text x="798.34" y="2271.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.03%)</title><rect x="799.0" y="2293" width="0.3" height="15.0" fill="rgb(207,3,28)" rx="2" ry="2" /> +<text x="801.98" y="2303.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="1177.4" y="3461" width="0.4" height="15.0" fill="rgb(249,43,22)" rx="2" ry="2" /> +<text x="1180.44" y="3471.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (1 samples, 0.03%)</title><rect x="880.6" y="2597" width="0.4" height="15.0" fill="rgb(219,181,19)" rx="2" ry="2" /> +<text x="883.62" y="2607.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.03%)</title><rect x="702.8" y="2677" width="0.3" height="15.0" fill="rgb(221,42,30)" rx="2" ry="2" /> +<text x="705.80" y="2687.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.03%)</title><rect x="411.6" y="1877" width="0.3" height="15.0" fill="rgb(209,76,35)" rx="2" ry="2" /> +<text x="414.60" y="1887.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\ControlFlowResult::Br (1 samples, 0.03%)</title><rect x="834.3" y="2149" width="0.4" height="15.0" fill="rgb(252,115,26)" rx="2" ry="2" /> +<text x="837.35" y="2159.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (225 samples, 6.30%)</title><rect x="708.7" y="2229" width="74.4" height="15.0" fill="rgb(240,87,54)" rx="2" ry="2" /> +<text x="711.75" y="2239.5" >Nsfisis\..</text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (2 samples, 0.06%)</title><rect x="1085.9" y="3349" width="0.6" height="15.0" fill="rgb(221,81,21)" rx="2" ry="2" /> +<text x="1088.88" y="3359.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="319.0" y="1893" width="0.4" height="15.0" fill="rgb(244,70,29)" rx="2" ry="2" /> +<text x="322.05" y="1903.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Stack::pushI32 (1 samples, 0.03%)</title><rect x="1168.5" y="3541" width="0.3" height="15.0" fill="rgb(210,158,1)" rx="2" ry="2" /> +<text x="1171.52" y="3551.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (5 samples, 0.14%)</title><rect x="849.6" y="2517" width="1.6" height="15.0" fill="rgb(218,201,7)" rx="2" ry="2" /> +<text x="852.55" y="2527.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (683 samples, 19.13%)</title><rect x="422.8" y="1029" width="225.8" height="15.0" fill="rgb(220,99,1)" rx="2" ry="2" /> +<text x="425.83" y="1039.5" >Nsfisis\Waddiwasi\Execution\R..</text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="1090.8" y="3365" width="0.4" height="15.0" fill="rgb(214,216,8)" rx="2" ry="2" /> +<text x="1093.84" y="3375.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\ControlFlowResult::Br (1 samples, 0.03%)</title><rect x="941.4" y="2453" width="0.4" height="15.0" fill="rgb(212,101,47)" rx="2" ry="2" /> +<text x="944.44" y="2463.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.03%)</title><rect x="358.4" y="1749" width="0.3" height="15.0" fill="rgb(216,138,43)" rx="2" ry="2" /> +<text x="361.38" y="1759.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="363.7" y="1701" width="0.3" height="15.0" fill="rgb(209,140,28)" rx="2" ry="2" /> +<text x="366.67" y="1711.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (2 samples, 0.06%)</title><rect x="268.1" y="2053" width="0.7" height="15.0" fill="rgb(227,124,50)" rx="2" ry="2" /> +<text x="271.15" y="2063.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (5 samples, 0.14%)</title><rect x="844.3" y="2965" width="1.6" height="15.0" fill="rgb(236,98,43)" rx="2" ry="2" /> +<text x="847.26" y="2975.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (2 samples, 0.06%)</title><rect x="302.2" y="1637" width="0.7" height="15.0" fill="rgb(210,202,33)" rx="2" ry="2" /> +<text x="305.19" y="1647.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (1 samples, 0.03%)</title><rect x="347.1" y="1957" width="0.4" height="15.0" fill="rgb(221,195,1)" rx="2" ry="2" /> +<text x="350.14" y="1967.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.03%)</title><rect x="391.1" y="1941" width="0.3" height="15.0" fill="rgb(231,93,54)" rx="2" ry="2" /> +<text x="394.10" y="1951.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="363.7" y="1605" width="0.3" height="15.0" fill="rgb(232,18,1)" rx="2" ry="2" /> +<text x="366.67" y="1615.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (1 samples, 0.03%)</title><rect x="313.4" y="2117" width="0.4" height="15.0" fill="rgb(245,84,44)" rx="2" ry="2" /> +<text x="316.43" y="2127.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.03%)</title><rect x="406.6" y="1685" width="0.4" height="15.0" fill="rgb(218,46,32)" rx="2" ry="2" /> +<text x="409.64" y="1695.5" ></text> +</g> +<g > +<title><unknown> (1 samples, 0.03%)</title><rect x="870.4" y="1173" width="0.3" height="15.0" fill="rgb(226,81,28)" rx="2" ry="2" /> +<text x="873.38" y="1183.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="669.1" y="2725" width="0.3" height="15.0" fill="rgb(238,84,35)" rx="2" ry="2" /> +<text x="672.08" y="2735.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\ControlFlowResult::Br (1 samples, 0.03%)</title><rect x="1116.0" y="3493" width="0.3" height="15.0" fill="rgb(243,106,26)" rx="2" ry="2" /> +<text x="1118.96" y="3503.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="406.6" y="1861" width="0.4" height="15.0" fill="rgb(230,22,35)" rx="2" ry="2" /> +<text x="409.64" y="1871.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (2 samples, 0.06%)</title><rect x="369.3" y="1829" width="0.6" height="15.0" fill="rgb(222,117,25)" rx="2" ry="2" /> +<text x="372.29" y="1839.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.03%)</title><rect x="954.0" y="2581" width="0.3" height="15.0" fill="rgb(226,19,15)" rx="2" ry="2" /> +<text x="957.00" y="2591.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (5 samples, 0.14%)</title><rect x="315.4" y="2005" width="1.7" height="15.0" fill="rgb(211,83,41)" rx="2" ry="2" /> +<text x="318.41" y="2015.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (1 samples, 0.03%)</title><rect x="324.0" y="2229" width="0.3" height="15.0" fill="rgb(244,215,52)" rx="2" ry="2" /> +<text x="327.01" y="2239.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (2 samples, 0.06%)</title><rect x="954.7" y="757" width="0.6" height="15.0" fill="rgb(219,198,28)" rx="2" ry="2" /> +<text x="957.66" y="767.5" ></text> +</g> +<g > +<title>{closure}(/home/ken/src/php-waddiwasi/vendor/composer/ClassLoader.php:575-577) (1 samples, 0.03%)</title><rect x="848.9" y="2821" width="0.3" height="15.0" fill="rgb(241,157,28)" rx="2" ry="2" /> +<text x="851.89" y="2831.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (1 samples, 0.03%)</title><rect x="954.3" y="2437" width="0.4" height="15.0" fill="rgb(223,29,40)" rx="2" ry="2" /> +<text x="957.33" y="2447.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (2 samples, 0.06%)</title><rect x="954.7" y="1685" width="0.6" height="15.0" fill="rgb(229,83,38)" rx="2" ry="2" /> +<text x="957.66" y="1695.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (5 samples, 0.14%)</title><rect x="283.4" y="1941" width="1.6" height="15.0" fill="rgb(219,120,3)" rx="2" ry="2" /> +<text x="286.35" y="1951.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="938.1" y="2405" width="0.4" height="15.0" fill="rgb(236,39,17)" rx="2" ry="2" /> +<text x="941.13" y="2415.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (81 samples, 2.27%)</title><rect x="676.4" y="2789" width="26.7" height="15.0" fill="rgb(239,68,41)" rx="2" ry="2" /> +<text x="679.35" y="2799.5" >N..</text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (66 samples, 1.85%)</title><rect x="856.8" y="2597" width="21.8" height="15.0" fill="rgb(224,174,46)" rx="2" ry="2" /> +<text x="859.82" y="2607.5" >N..</text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (1 samples, 0.03%)</title><rect x="834.0" y="2101" width="0.3" height="15.0" fill="rgb(230,175,44)" rx="2" ry="2" /> +<text x="837.02" y="2111.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (6 samples, 0.17%)</title><rect x="658.8" y="2069" width="2.0" height="15.0" fill="rgb(212,60,17)" rx="2" ry="2" /> +<text x="661.83" y="2079.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (1 samples, 0.03%)</title><rect x="851.2" y="2501" width="0.3" height="15.0" fill="rgb(245,46,41)" rx="2" ry="2" /> +<text x="854.20" y="2511.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::expandBlockType (1 samples, 0.03%)</title><rect x="364.3" y="1909" width="0.4" height="15.0" fill="rgb(243,228,46)" rx="2" ry="2" /> +<text x="367.33" y="1919.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (41 samples, 1.15%)</title><rect x="328.6" y="2149" width="13.6" height="15.0" fill="rgb(226,98,30)" rx="2" ry="2" /> +<text x="331.63" y="2159.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Stack::popValue (1 samples, 0.03%)</title><rect x="368.0" y="1909" width="0.3" height="15.0" fill="rgb(219,23,17)" rx="2" ry="2" /> +<text x="370.97" y="1919.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (2 samples, 0.06%)</title><rect x="663.5" y="2053" width="0.6" height="15.0" fill="rgb(236,145,3)" rx="2" ry="2" /> +<text x="666.46" y="2063.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="420.2" y="2213" width="0.3" height="15.0" fill="rgb(253,198,46)" rx="2" ry="2" /> +<text x="423.19" y="2223.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="1077.3" y="3269" width="0.3" height="15.0" fill="rgb(210,11,12)" rx="2" ry="2" /> +<text x="1080.29" y="3279.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Stack::pushValue (1 samples, 0.03%)</title><rect x="838.6" y="2261" width="0.4" height="15.0" fill="rgb(229,24,22)" rx="2" ry="2" /> +<text x="841.64" y="2271.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (4 samples, 0.11%)</title><rect x="248.0" y="3109" width="1.3" height="15.0" fill="rgb(247,167,1)" rx="2" ry="2" /> +<text x="250.98" y="3119.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (5 samples, 0.14%)</title><rect x="315.4" y="2053" width="1.7" height="15.0" fill="rgb(251,124,14)" rx="2" ry="2" /> +<text x="318.41" y="2063.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.03%)</title><rect x="845.6" y="2517" width="0.3" height="15.0" fill="rgb(207,157,11)" rx="2" ry="2" /> +<text x="848.59" y="2527.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.03%)</title><rect x="1077.3" y="3413" width="0.3" height="15.0" fill="rgb(243,45,53)" rx="2" ry="2" /> +<text x="1080.29" y="3423.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="894.5" y="2693" width="0.3" height="15.0" fill="rgb(236,177,18)" rx="2" ry="2" /> +<text x="897.50" y="2703.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (8 samples, 0.22%)</title><rect x="370.3" y="1797" width="2.6" height="15.0" fill="rgb(216,57,41)" rx="2" ry="2" /> +<text x="373.28" y="1807.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (30 samples, 0.84%)</title><rect x="1095.1" y="3413" width="10.0" height="15.0" fill="rgb(230,174,7)" rx="2" ry="2" /> +<text x="1098.14" y="3423.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (315 samples, 8.82%)</title><rect x="849.6" y="3045" width="104.1" height="15.0" fill="rgb(211,35,5)" rx="2" ry="2" /> +<text x="852.55" y="3055.5" >Nsfisis\Wadd..</text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (1,253 samples, 35.10%)</title><rect x="252.3" y="2693" width="414.1" height="15.0" fill="rgb(254,92,20)" rx="2" ry="2" /> +<text x="255.28" y="2703.5" >Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc</text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Stack::pushI32 (2 samples, 0.06%)</title><rect x="364.7" y="1909" width="0.6" height="15.0" fill="rgb(209,145,39)" rx="2" ry="2" /> +<text x="367.66" y="1919.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.03%)</title><rect x="420.9" y="1941" width="0.3" height="15.0" fill="rgb(244,125,11)" rx="2" ry="2" /> +<text x="423.85" y="1951.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (1 samples, 0.03%)</title><rect x="251.9" y="2709" width="0.4" height="15.0" fill="rgb(241,165,30)" rx="2" ry="2" /> +<text x="254.95" y="2719.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (3 samples, 0.08%)</title><rect x="257.9" y="2037" width="1.0" height="15.0" fill="rgb(234,4,22)" rx="2" ry="2" /> +<text x="260.90" y="2047.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\StackEntries\Value::__construct (1 samples, 0.03%)</title><rect x="772.5" y="2149" width="0.4" height="15.0" fill="rgb(221,139,44)" rx="2" ry="2" /> +<text x="775.54" y="2159.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (4 samples, 0.11%)</title><rect x="357.4" y="1797" width="1.3" height="15.0" fill="rgb(247,205,26)" rx="2" ry="2" /> +<text x="360.39" y="1807.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (11 samples, 0.31%)</title><rect x="287.3" y="2021" width="3.7" height="15.0" fill="rgb(217,51,23)" rx="2" ry="2" /> +<text x="290.32" y="2031.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="829.1" y="2117" width="0.3" height="15.0" fill="rgb(206,30,35)" rx="2" ry="2" /> +<text x="832.06" y="2127.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="383.5" y="1829" width="0.3" height="15.0" fill="rgb(242,16,7)" rx="2" ry="2" /> +<text x="386.50" y="1839.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (2 samples, 0.06%)</title><rect x="354.4" y="1733" width="0.7" height="15.0" fill="rgb(229,196,19)" rx="2" ry="2" /> +<text x="357.41" y="1743.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (10 samples, 0.28%)</title><rect x="703.8" y="2757" width="3.3" height="15.0" fill="rgb(222,72,26)" rx="2" ry="2" /> +<text x="706.79" y="2767.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.03%)</title><rect x="315.4" y="1749" width="0.3" height="15.0" fill="rgb(226,201,31)" rx="2" ry="2" /> +<text x="318.41" y="1759.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.03%)</title><rect x="783.8" y="2773" width="0.3" height="15.0" fill="rgb(252,73,32)" rx="2" ry="2" /> +<text x="786.78" y="2783.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.03%)</title><rect x="648.6" y="1493" width="0.3" height="15.0" fill="rgb(207,215,19)" rx="2" ry="2" /> +<text x="651.59" y="1503.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.03%)</title><rect x="1104.4" y="2165" width="0.3" height="15.0" fill="rgb(237,67,45)" rx="2" ry="2" /> +<text x="1107.39" y="2175.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (1 samples, 0.03%)</title><rect x="391.4" y="2037" width="0.4" height="15.0" fill="rgb(240,130,19)" rx="2" ry="2" /> +<text x="394.43" y="2047.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.03%)</title><rect x="846.6" y="2869" width="0.3" height="15.0" fill="rgb(207,159,14)" rx="2" ry="2" /> +<text x="849.58" y="2879.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.03%)</title><rect x="420.2" y="2261" width="0.3" height="15.0" fill="rgb(205,2,52)" rx="2" ry="2" /> +<text x="423.19" y="2271.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (40 samples, 1.12%)</title><rect x="860.8" y="2277" width="13.2" height="15.0" fill="rgb(236,3,24)" rx="2" ry="2" /> +<text x="863.79" y="2287.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="265.2" y="1765" width="0.3" height="15.0" fill="rgb(214,25,10)" rx="2" ry="2" /> +<text x="268.17" y="1775.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (1 samples, 0.03%)</title><rect x="847.6" y="2709" width="0.3" height="15.0" fill="rgb(206,113,36)" rx="2" ry="2" /> +<text x="850.57" y="2719.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="271.8" y="2213" width="0.3" height="15.0" fill="rgb(208,184,35)" rx="2" ry="2" /> +<text x="274.78" y="2223.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.03%)</title><rect x="363.7" y="1621" width="0.3" height="15.0" fill="rgb(242,217,32)" rx="2" ry="2" /> +<text x="366.67" y="1631.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (3 samples, 0.08%)</title><rect x="305.8" y="1893" width="1.0" height="15.0" fill="rgb(254,114,50)" rx="2" ry="2" /> +<text x="308.83" y="1903.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (5 samples, 0.14%)</title><rect x="900.1" y="2613" width="1.7" height="15.0" fill="rgb(216,117,3)" rx="2" ry="2" /> +<text x="903.12" y="2623.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (3 samples, 0.08%)</title><rect x="701.8" y="2405" width="1.0" height="15.0" fill="rgb(221,49,18)" rx="2" ry="2" /> +<text x="704.80" y="2415.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.03%)</title><rect x="845.6" y="2549" width="0.3" height="15.0" fill="rgb(234,132,7)" rx="2" ry="2" /> +<text x="848.59" y="2559.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (4 samples, 0.11%)</title><rect x="400.0" y="2005" width="1.4" height="15.0" fill="rgb(238,72,43)" rx="2" ry="2" /> +<text x="403.03" y="2015.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.03%)</title><rect x="399.0" y="1877" width="0.4" height="15.0" fill="rgb(224,114,53)" rx="2" ry="2" /> +<text x="402.04" y="1887.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (6 samples, 0.17%)</title><rect x="849.6" y="2837" width="1.9" height="15.0" fill="rgb(252,209,54)" rx="2" ry="2" /> +<text x="852.55" y="2847.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.03%)</title><rect x="420.9" y="2037" width="0.3" height="15.0" fill="rgb(214,178,9)" rx="2" ry="2" /> +<text x="423.85" y="2047.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (2 samples, 0.06%)</title><rect x="691.2" y="2469" width="0.7" height="15.0" fill="rgb(223,34,12)" rx="2" ry="2" /> +<text x="694.23" y="2479.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (16 samples, 0.45%)</title><rect x="1149.7" y="3525" width="5.3" height="15.0" fill="rgb(250,135,38)" rx="2" ry="2" /> +<text x="1152.68" y="3535.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (56 samples, 1.57%)</title><rect x="813.9" y="2325" width="18.5" height="15.0" fill="rgb(216,144,20)" rx="2" ry="2" /> +<text x="816.85" y="2335.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Stack::pushI32 (1 samples, 0.03%)</title><rect x="1139.1" y="3349" width="0.3" height="15.0" fill="rgb(227,156,17)" rx="2" ry="2" /> +<text x="1142.10" y="3359.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.03%)</title><rect x="954.0" y="2741" width="0.3" height="15.0" fill="rgb(248,193,29)" rx="2" ry="2" /> +<text x="957.00" y="2751.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (8 samples, 0.22%)</title><rect x="888.2" y="2565" width="2.7" height="15.0" fill="rgb(225,129,33)" rx="2" ry="2" /> +<text x="891.22" y="2575.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="697.5" y="2149" width="0.3" height="15.0" fill="rgb(220,76,1)" rx="2" ry="2" /> +<text x="700.51" y="2159.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.03%)</title><rect x="347.1" y="1845" width="0.4" height="15.0" fill="rgb(230,138,11)" rx="2" ry="2" /> +<text x="350.14" y="1855.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1,253 samples, 35.10%)</title><rect x="252.3" y="2773" width="414.1" height="15.0" fill="rgb(247,220,43)" rx="2" ry="2" /> +<text x="255.28" y="2783.5" >Nsfisis\Waddiwasi\Execution\Runtime::execInstrs</text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.03%)</title><rect x="271.8" y="2197" width="0.3" height="15.0" fill="rgb(249,34,2)" rx="2" ry="2" /> +<text x="274.78" y="2207.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Stack::pushValue (1 samples, 0.03%)</title><rect x="336.6" y="1749" width="0.3" height="15.0" fill="rgb(226,40,41)" rx="2" ry="2" /> +<text x="339.57" y="1759.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (2 samples, 0.06%)</title><rect x="697.2" y="2405" width="0.6" height="15.0" fill="rgb(239,66,29)" rx="2" ry="2" /> +<text x="700.18" y="2415.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="1104.4" y="2469" width="0.3" height="15.0" fill="rgb(217,108,39)" rx="2" ry="2" /> +<text x="1107.39" y="2479.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (1 samples, 0.03%)</title><rect x="307.1" y="1717" width="0.4" height="15.0" fill="rgb(247,169,51)" rx="2" ry="2" /> +<text x="310.15" y="1727.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="846.6" y="2789" width="0.3" height="15.0" fill="rgb(249,87,31)" rx="2" ry="2" /> +<text x="849.58" y="2799.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (2 samples, 0.06%)</title><rect x="661.8" y="2133" width="0.7" height="15.0" fill="rgb(223,167,15)" rx="2" ry="2" /> +<text x="664.81" y="2143.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (8 samples, 0.22%)</title><rect x="370.3" y="1861" width="2.6" height="15.0" fill="rgb(228,197,24)" rx="2" ry="2" /> +<text x="373.28" y="1871.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="288.3" y="1893" width="0.3" height="15.0" fill="rgb(250,51,38)" rx="2" ry="2" /> +<text x="291.31" y="1903.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (1 samples, 0.03%)</title><rect x="954.7" y="149" width="0.3" height="15.0" fill="rgb(235,223,21)" rx="2" ry="2" /> +<text x="957.66" y="159.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (9 samples, 0.25%)</title><rect x="699.8" y="2533" width="3.0" height="15.0" fill="rgb(233,140,46)" rx="2" ry="2" /> +<text x="702.82" y="2543.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (684 samples, 19.16%)</title><rect x="422.5" y="1125" width="226.1" height="15.0" fill="rgb(224,109,25)" rx="2" ry="2" /> +<text x="425.50" y="1135.5" >Nsfisis\Waddiwasi\Execution\R..</text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Stack::popValue (1 samples, 0.03%)</title><rect x="893.5" y="2677" width="0.3" height="15.0" fill="rgb(253,43,45)" rx="2" ry="2" /> +<text x="896.51" y="2687.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (686 samples, 19.22%)</title><rect x="422.2" y="1669" width="226.7" height="15.0" fill="rgb(237,229,20)" rx="2" ry="2" /> +<text x="425.17" y="1679.5" >Nsfisis\Waddiwasi\Execution\Ru..</text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="870.4" y="2149" width="0.3" height="15.0" fill="rgb(232,218,19)" rx="2" ry="2" /> +<text x="873.38" y="2159.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (20 samples, 0.56%)</title><rect x="330.9" y="2053" width="6.7" height="15.0" fill="rgb(236,177,18)" rx="2" ry="2" /> +<text x="333.95" y="2063.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (1 samples, 0.03%)</title><rect x="843.9" y="2965" width="0.4" height="15.0" fill="rgb(219,37,12)" rx="2" ry="2" /> +<text x="846.93" y="2975.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (1 samples, 0.03%)</title><rect x="946.4" y="2437" width="0.3" height="15.0" fill="rgb(224,24,29)" rx="2" ry="2" /> +<text x="949.40" y="2447.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="650.2" y="2053" width="0.4" height="15.0" fill="rgb(243,54,15)" rx="2" ry="2" /> +<text x="653.24" y="2063.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="841.0" y="2373" width="0.3" height="15.0" fill="rgb(252,90,39)" rx="2" ry="2" /> +<text x="843.96" y="2383.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (2 samples, 0.06%)</title><rect x="650.6" y="2133" width="0.6" height="15.0" fill="rgb(226,170,54)" rx="2" ry="2" /> +<text x="653.57" y="2143.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="1150.7" y="3397" width="0.3" height="15.0" fill="rgb(241,91,26)" rx="2" ry="2" /> +<text x="1153.67" y="3407.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (5 samples, 0.14%)</title><rect x="900.1" y="2597" width="1.7" height="15.0" fill="rgb(205,212,18)" rx="2" ry="2" /> +<text x="903.12" y="2607.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="665.8" y="2373" width="0.3" height="15.0" fill="rgb(233,154,50)" rx="2" ry="2" /> +<text x="668.78" y="2383.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (3 samples, 0.08%)</title><rect x="841.9" y="2853" width="1.0" height="15.0" fill="rgb(247,2,23)" rx="2" ry="2" /> +<text x="844.95" y="2863.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (6 samples, 0.17%)</title><rect x="668.8" y="2757" width="1.9" height="15.0" fill="rgb(208,94,30)" rx="2" ry="2" /> +<text x="671.75" y="2767.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (40 samples, 1.12%)</title><rect x="860.8" y="2293" width="13.2" height="15.0" fill="rgb(211,180,2)" rx="2" ry="2" /> +<text x="863.79" y="2303.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1,253 samples, 35.10%)</title><rect x="252.3" y="2757" width="414.1" height="15.0" fill="rgb(244,94,28)" rx="2" ry="2" /> +<text x="255.28" y="2767.5" >Nsfisis\Waddiwasi\Execution\Runtime::execInstr</text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="696.5" y="2597" width="0.3" height="15.0" fill="rgb(221,28,6)" rx="2" ry="2" /> +<text x="699.52" y="2607.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1,254 samples, 35.13%)</title><rect x="251.9" y="2789" width="414.5" height="15.0" fill="rgb(222,35,16)" rx="2" ry="2" /> +<text x="254.95" y="2799.5" >Nsfisis\Waddiwasi\Execution\Runtime::execInstr</text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (16 samples, 0.45%)</title><rect x="401.4" y="1973" width="5.2" height="15.0" fill="rgb(214,76,32)" rx="2" ry="2" /> +<text x="404.35" y="1983.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="894.2" y="2565" width="0.3" height="15.0" fill="rgb(224,112,31)" rx="2" ry="2" /> +<text x="897.17" y="2575.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\StackEntry::Value (2 samples, 0.06%)</title><rect x="1075.6" y="3477" width="0.7" height="15.0" fill="rgb(222,189,4)" rx="2" ry="2" /> +<text x="1078.64" y="3487.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (65 samples, 1.82%)</title><rect x="857.2" y="2565" width="21.4" height="15.0" fill="rgb(249,80,9)" rx="2" ry="2" /> +<text x="860.15" y="2575.5" >N..</text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\StackEntry::Value (1 samples, 0.03%)</title><rect x="1141.1" y="3477" width="0.3" height="15.0" fill="rgb(253,188,45)" rx="2" ry="2" /> +<text x="1144.08" y="3487.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (4 samples, 0.11%)</title><rect x="368.6" y="1973" width="1.3" height="15.0" fill="rgb(243,225,9)" rx="2" ry="2" /> +<text x="371.63" y="1983.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (3 samples, 0.08%)</title><rect x="399.0" y="2149" width="1.0" height="15.0" fill="rgb(252,32,52)" rx="2" ry="2" /> +<text x="402.04" y="2159.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (2 samples, 0.06%)</title><rect x="954.7" y="709" width="0.6" height="15.0" fill="rgb(221,146,25)" rx="2" ry="2" /> +<text x="957.66" y="719.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="848.2" y="3077" width="0.4" height="15.0" fill="rgb(227,140,47)" rx="2" ry="2" /> +<text x="851.23" y="3087.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.03%)</title><rect x="894.2" y="2581" width="0.3" height="15.0" fill="rgb(224,189,2)" rx="2" ry="2" /> +<text x="897.17" y="2591.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (7 samples, 0.20%)</title><rect x="366.0" y="1989" width="2.3" height="15.0" fill="rgb(213,112,17)" rx="2" ry="2" /> +<text x="368.98" y="1999.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (3 samples, 0.08%)</title><rect x="842.9" y="2677" width="1.0" height="15.0" fill="rgb(214,161,25)" rx="2" ry="2" /> +<text x="845.94" y="2687.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="702.8" y="2661" width="0.3" height="15.0" fill="rgb(240,227,43)" rx="2" ry="2" /> +<text x="705.80" y="2671.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.03%)</title><rect x="938.1" y="2453" width="0.4" height="15.0" fill="rgb(211,34,14)" rx="2" ry="2" /> +<text x="941.13" y="2463.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="400.4" y="1861" width="0.3" height="15.0" fill="rgb(222,149,1)" rx="2" ry="2" /> +<text x="403.36" y="1871.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.03%)</title><rect x="833.0" y="2197" width="0.4" height="15.0" fill="rgb(248,12,4)" rx="2" ry="2" /> +<text x="836.03" y="2207.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (2 samples, 0.06%)</title><rect x="1104.1" y="3013" width="0.6" height="15.0" fill="rgb(219,98,14)" rx="2" ry="2" /> +<text x="1107.06" y="3023.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.03%)</title><rect x="695.9" y="2261" width="0.3" height="15.0" fill="rgb(229,161,39)" rx="2" ry="2" /> +<text x="698.85" y="2271.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (58 samples, 1.62%)</title><rect x="677.7" y="2709" width="19.1" height="15.0" fill="rgb(246,161,29)" rx="2" ry="2" /> +<text x="680.68" y="2719.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (9 samples, 0.25%)</title><rect x="403.0" y="1797" width="3.0" height="15.0" fill="rgb(215,2,53)" rx="2" ry="2" /> +<text x="406.00" y="1807.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (1 samples, 0.03%)</title><rect x="847.6" y="2757" width="0.3" height="15.0" fill="rgb(239,78,53)" rx="2" ry="2" /> +<text x="850.57" y="2767.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="266.8" y="1669" width="0.4" height="15.0" fill="rgb(253,215,54)" rx="2" ry="2" /> +<text x="269.82" y="1679.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="831.0" y="2181" width="0.4" height="15.0" fill="rgb(208,184,15)" rx="2" ry="2" /> +<text x="834.04" y="2191.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (157 samples, 4.40%)</title><rect x="899.5" y="2693" width="51.9" height="15.0" fill="rgb(248,5,33)" rx="2" ry="2" /> +<text x="902.46" y="2703.5" >Nsfis..</text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.03%)</title><rect x="319.0" y="1941" width="0.4" height="15.0" fill="rgb(221,140,10)" rx="2" ry="2" /> +<text x="322.05" y="1951.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="669.4" y="2469" width="0.3" height="15.0" fill="rgb(251,99,37)" rx="2" ry="2" /> +<text x="672.41" y="2479.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="954.3" y="2661" width="0.4" height="15.0" fill="rgb(249,38,4)" rx="2" ry="2" /> +<text x="957.33" y="2671.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.03%)</title><rect x="669.7" y="2645" width="0.4" height="15.0" fill="rgb(219,175,16)" rx="2" ry="2" /> +<text x="672.74" y="2655.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (1 samples, 0.03%)</title><rect x="420.9" y="2101" width="0.3" height="15.0" fill="rgb(210,59,30)" rx="2" ry="2" /> +<text x="423.85" y="2111.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.03%)</title><rect x="901.4" y="2581" width="0.4" height="15.0" fill="rgb(251,42,43)" rx="2" ry="2" /> +<text x="904.45" y="2591.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (2 samples, 0.06%)</title><rect x="661.8" y="2021" width="0.7" height="15.0" fill="rgb(229,151,25)" rx="2" ry="2" /> +<text x="664.81" y="2031.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.03%)</title><rect x="344.8" y="1973" width="0.4" height="15.0" fill="rgb(247,78,48)" rx="2" ry="2" /> +<text x="347.83" y="1983.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="365.3" y="1925" width="0.4" height="15.0" fill="rgb(235,68,34)" rx="2" ry="2" /> +<text x="368.32" y="1935.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\BinaryFormat\Decoder::decodeInstrsUntil (9 samples, 0.25%)</title><rect x="11.0" y="3429" width="3.0" height="15.0" fill="rgb(230,4,39)" rx="2" ry="2" /> +<text x="13.99" y="3439.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (2 samples, 0.06%)</title><rect x="421.2" y="2101" width="0.6" height="15.0" fill="rgb(217,18,41)" rx="2" ry="2" /> +<text x="424.18" y="2111.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (685 samples, 19.19%)</title><rect x="422.2" y="1173" width="226.4" height="15.0" fill="rgb(220,118,19)" rx="2" ry="2" /> +<text x="425.17" y="1183.5" >Nsfisis\Waddiwasi\Execution\R..</text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (2 samples, 0.06%)</title><rect x="348.1" y="1861" width="0.7" height="15.0" fill="rgb(206,211,34)" rx="2" ry="2" /> +<text x="351.13" y="1871.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (5 samples, 0.14%)</title><rect x="854.8" y="2613" width="1.7" height="15.0" fill="rgb(210,70,46)" rx="2" ry="2" /> +<text x="857.84" y="2623.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (2 samples, 0.06%)</title><rect x="663.5" y="2117" width="0.6" height="15.0" fill="rgb(239,176,46)" rx="2" ry="2" /> +<text x="666.46" y="2127.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Structure\Instructions\Instrs\Table\TableSet::__construct (1 samples, 0.03%)</title><rect x="195.4" y="3445" width="0.4" height="15.0" fill="rgb(233,16,48)" rx="2" ry="2" /> +<text x="198.43" y="3455.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (1 samples, 0.03%)</title><rect x="406.6" y="1829" width="0.4" height="15.0" fill="rgb(212,228,46)" rx="2" ry="2" /> +<text x="409.64" y="1839.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="285.3" y="2085" width="0.4" height="15.0" fill="rgb(250,146,50)" rx="2" ry="2" /> +<text x="288.33" y="2095.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (17 samples, 0.48%)</title><rect x="384.2" y="1813" width="5.6" height="15.0" fill="rgb(207,85,14)" rx="2" ry="2" /> +<text x="387.16" y="1823.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (317 samples, 8.88%)</title><rect x="849.6" y="3285" width="104.7" height="15.0" fill="rgb(240,170,29)" rx="2" ry="2" /> +<text x="852.55" y="3295.5" >Nsfisis\Wadd..</text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.03%)</title><rect x="270.8" y="1781" width="0.3" height="15.0" fill="rgb(211,48,51)" rx="2" ry="2" /> +<text x="273.79" y="1791.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (30 samples, 0.84%)</title><rect x="864.1" y="2245" width="9.9" height="15.0" fill="rgb(249,153,44)" rx="2" ry="2" /> +<text x="867.10" y="2255.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.03%)</title><rect x="406.6" y="1781" width="0.4" height="15.0" fill="rgb(205,207,39)" rx="2" ry="2" /> +<text x="409.64" y="1791.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (3 samples, 0.08%)</title><rect x="855.2" y="2533" width="1.0" height="15.0" fill="rgb(251,148,19)" rx="2" ry="2" /> +<text x="858.17" y="2543.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="877.6" y="2181" width="0.4" height="15.0" fill="rgb(229,136,49)" rx="2" ry="2" /> +<text x="880.65" y="2191.5" ></text> +</g> +<g > +<title><unknown> (1 samples, 0.03%)</title><rect x="895.5" y="2821" width="0.3" height="15.0" fill="rgb(245,76,45)" rx="2" ry="2" /> +<text x="898.50" y="2831.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Stack::popI32 (1 samples, 0.03%)</title><rect x="892.9" y="2581" width="0.3" height="15.0" fill="rgb(224,7,17)" rx="2" ry="2" /> +<text x="895.85" y="2591.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="701.5" y="2117" width="0.3" height="15.0" fill="rgb(232,3,27)" rx="2" ry="2" /> +<text x="704.47" y="2127.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="358.4" y="1669" width="0.3" height="15.0" fill="rgb(235,182,22)" rx="2" ry="2" /> +<text x="361.38" y="1679.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (3 samples, 0.08%)</title><rect x="848.6" y="3221" width="1.0" height="15.0" fill="rgb(236,127,36)" rx="2" ry="2" /> +<text x="851.56" y="3231.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (8 samples, 0.22%)</title><rect x="300.2" y="1829" width="2.7" height="15.0" fill="rgb(231,145,11)" rx="2" ry="2" /> +<text x="303.21" y="1839.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (1 samples, 0.03%)</title><rect x="1153.6" y="3461" width="0.4" height="15.0" fill="rgb(237,142,14)" rx="2" ry="2" /> +<text x="1156.64" y="3471.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (1,252 samples, 35.07%)</title><rect x="252.3" y="2501" width="413.8" height="15.0" fill="rgb(225,214,35)" rx="2" ry="2" /> +<text x="255.28" y="2511.5" >Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc</text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="783.1" y="2309" width="0.3" height="15.0" fill="rgb(207,58,28)" rx="2" ry="2" /> +<text x="786.11" y="2319.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.03%)</title><rect x="843.6" y="2517" width="0.3" height="15.0" fill="rgb(245,58,15)" rx="2" ry="2" /> +<text x="846.60" y="2527.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="249.6" y="2725" width="0.4" height="15.0" fill="rgb(207,141,32)" rx="2" ry="2" /> +<text x="252.64" y="2735.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (686 samples, 19.22%)</title><rect x="422.2" y="2053" width="226.7" height="15.0" fill="rgb(222,133,44)" rx="2" ry="2" /> +<text x="425.17" y="2063.5" >Nsfisis\Waddiwasi\Execution\Ru..</text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::deactivateLabel (3 samples, 0.08%)</title><rect x="707.8" y="2229" width="0.9" height="15.0" fill="rgb(234,6,5)" rx="2" ry="2" /> +<text x="710.75" y="2239.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Allocator::allocModule (154 samples, 4.31%)</title><rect x="17.3" y="3509" width="50.9" height="15.0" fill="rgb(241,177,27)" rx="2" ry="2" /> +<text x="20.27" y="3519.5" >Nsfis..</text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (50 samples, 1.40%)</title><rect x="815.8" y="2229" width="16.6" height="15.0" fill="rgb(217,6,48)" rx="2" ry="2" /> +<text x="818.84" y="2239.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.03%)</title><rect x="952.3" y="2453" width="0.4" height="15.0" fill="rgb(210,46,52)" rx="2" ry="2" /> +<text x="955.35" y="2463.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Stack::popI32 (1 samples, 0.03%)</title><rect x="792.0" y="2293" width="0.4" height="15.0" fill="rgb(243,124,20)" rx="2" ry="2" /> +<text x="795.04" y="2303.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Stack::pushValue (1 samples, 0.03%)</title><rect x="830.4" y="2165" width="0.3" height="15.0" fill="rgb(248,209,24)" rx="2" ry="2" /> +<text x="833.38" y="2175.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (5 samples, 0.14%)</title><rect x="315.4" y="2101" width="1.7" height="15.0" fill="rgb(208,0,6)" rx="2" ry="2" /> +<text x="318.41" y="2111.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.03%)</title><rect x="648.6" y="1621" width="0.3" height="15.0" fill="rgb(238,3,26)" rx="2" ry="2" /> +<text x="651.59" y="1631.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (4 samples, 0.11%)</title><rect x="954.7" y="2997" width="1.3" height="15.0" fill="rgb(242,138,31)" rx="2" ry="2" /> +<text x="957.66" y="3007.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (111 samples, 3.11%)</title><rect x="905.1" y="2613" width="36.7" height="15.0" fill="rgb(221,88,20)" rx="2" ry="2" /> +<text x="908.08" y="2623.5" >Nsf..</text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.03%)</title><rect x="951.7" y="2709" width="0.3" height="15.0" fill="rgb(239,5,0)" rx="2" ry="2" /> +<text x="954.69" y="2719.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (198 samples, 5.55%)</title><rect x="254.3" y="2309" width="65.4" height="15.0" fill="rgb(205,104,39)" rx="2" ry="2" /> +<text x="257.26" y="2319.5" >Nsfisis..</text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Stack::pushValue (1 samples, 0.03%)</title><rect x="268.5" y="1909" width="0.3" height="15.0" fill="rgb(227,105,17)" rx="2" ry="2" /> +<text x="271.48" y="1919.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="952.7" y="2533" width="0.3" height="15.0" fill="rgb(252,53,2)" rx="2" ry="2" /> +<text x="955.68" y="2543.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (18 samples, 0.50%)</title><rect x="383.8" y="1861" width="6.0" height="15.0" fill="rgb(251,181,5)" rx="2" ry="2" /> +<text x="386.83" y="1871.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (4 samples, 0.11%)</title><rect x="303.8" y="1877" width="1.4" height="15.0" fill="rgb(245,140,37)" rx="2" ry="2" /> +<text x="306.84" y="1887.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (5 samples, 0.14%)</title><rect x="854.8" y="2645" width="1.7" height="15.0" fill="rgb(242,1,34)" rx="2" ry="2" /> +<text x="857.84" y="2655.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (1 samples, 0.03%)</title><rect x="655.9" y="2133" width="0.3" height="15.0" fill="rgb(219,52,17)" rx="2" ry="2" /> +<text x="658.86" y="2143.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (1 samples, 0.03%)</title><rect x="955.3" y="2645" width="0.4" height="15.0" fill="rgb(211,86,15)" rx="2" ry="2" /> +<text x="958.32" y="2655.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (2 samples, 0.06%)</title><rect x="954.7" y="1365" width="0.6" height="15.0" fill="rgb(240,156,10)" rx="2" ry="2" /> +<text x="957.66" y="1375.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Structure\Instructions\Instr::F32ConvertI32U (1 samples, 0.03%)</title><rect x="13.3" y="3301" width="0.3" height="15.0" fill="rgb(226,58,1)" rx="2" ry="2" /> +<text x="16.31" y="3311.5" ></text> +</g> +<g > +<title><unknown> (1 samples, 0.03%)</title><rect x="789.7" y="2213" width="0.4" height="15.0" fill="rgb(247,43,29)" rx="2" ry="2" /> +<text x="792.73" y="2223.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\FuncInst::Wasm (1 samples, 0.03%)</title><rect x="67.8" y="3493" width="0.4" height="15.0" fill="rgb(209,205,14)" rx="2" ry="2" /> +<text x="70.84" y="3503.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (4 samples, 0.11%)</title><rect x="311.4" y="1717" width="1.4" height="15.0" fill="rgb(254,170,29)" rx="2" ry="2" /> +<text x="314.45" y="1727.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (1 samples, 0.03%)</title><rect x="315.4" y="1797" width="0.3" height="15.0" fill="rgb(232,58,10)" rx="2" ry="2" /> +<text x="318.41" y="1807.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.03%)</title><rect x="841.6" y="2549" width="0.3" height="15.0" fill="rgb(230,221,51)" rx="2" ry="2" /> +<text x="844.62" y="2559.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.03%)</title><rect x="847.6" y="2549" width="0.3" height="15.0" fill="rgb(242,196,39)" rx="2" ry="2" /> +<text x="850.57" y="2559.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="954.3" y="3077" width="0.4" height="15.0" fill="rgb(218,56,38)" rx="2" ry="2" /> +<text x="957.33" y="3087.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\StackEntry::Frame (1 samples, 0.03%)</title><rect x="422.2" y="1109" width="0.3" height="15.0" fill="rgb(218,215,3)" rx="2" ry="2" /> +<text x="425.17" y="1119.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="670.1" y="2661" width="0.3" height="15.0" fill="rgb(244,121,6)" rx="2" ry="2" /> +<text x="673.07" y="2671.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (4 samples, 0.11%)</title><rect x="279.7" y="1957" width="1.3" height="15.0" fill="rgb(213,121,47)" rx="2" ry="2" /> +<text x="282.71" y="1967.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="316.4" y="1061" width="0.3" height="15.0" fill="rgb(230,36,6)" rx="2" ry="2" /> +<text x="319.40" y="1071.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (2 samples, 0.06%)</title><rect x="405.0" y="1093" width="0.6" height="15.0" fill="rgb(231,160,7)" rx="2" ry="2" /> +<text x="407.99" y="1103.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Structure\Types\FuncType::__construct (1 samples, 0.03%)</title><rect x="799.3" y="2341" width="0.3" height="15.0" fill="rgb(216,202,14)" rx="2" ry="2" /> +<text x="802.31" y="2351.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (2 samples, 0.06%)</title><rect x="954.7" y="2741" width="0.6" height="15.0" fill="rgb(219,21,36)" rx="2" ry="2" /> +<text x="957.66" y="2751.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.03%)</title><rect x="706.8" y="2581" width="0.3" height="15.0" fill="rgb(237,49,48)" rx="2" ry="2" /> +<text x="709.76" y="2591.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (3 samples, 0.08%)</title><rect x="1154.0" y="3461" width="1.0" height="15.0" fill="rgb(210,40,17)" rx="2" ry="2" /> +<text x="1156.97" y="3471.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.03%)</title><rect x="894.2" y="2677" width="0.3" height="15.0" fill="rgb(244,197,40)" rx="2" ry="2" /> +<text x="897.17" y="2687.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (8 samples, 0.22%)</title><rect x="672.4" y="2517" width="2.6" height="15.0" fill="rgb(254,64,7)" rx="2" ry="2" /> +<text x="675.39" y="2527.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (11 samples, 0.31%)</title><rect x="692.9" y="2501" width="3.6" height="15.0" fill="rgb(249,162,5)" rx="2" ry="2" /> +<text x="695.88" y="2511.5" ></text> +</g> +<g > +<title>assert (1 samples, 0.03%)</title><rect x="1140.4" y="3493" width="0.4" height="15.0" fill="rgb(241,197,45)" rx="2" ry="2" /> +<text x="1143.42" y="3503.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (67 samples, 1.88%)</title><rect x="918.0" y="2549" width="22.1" height="15.0" fill="rgb(234,12,35)" rx="2" ry="2" /> +<text x="920.97" y="2559.5" >N..</text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (2 samples, 0.06%)</title><rect x="311.4" y="1541" width="0.7" height="15.0" fill="rgb(212,159,18)" rx="2" ry="2" /> +<text x="314.45" y="1551.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Stack::popI32 (8 samples, 0.22%)</title><rect x="242.7" y="3461" width="2.6" height="15.0" fill="rgb(249,172,50)" rx="2" ry="2" /> +<text x="245.69" y="3471.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (58 samples, 1.62%)</title><rect x="677.7" y="2693" width="19.1" height="15.0" fill="rgb(211,115,31)" rx="2" ry="2" /> +<text x="680.68" y="2703.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\ControlFlowResults\Br::__construct (4 samples, 0.11%)</title><rect x="1075.0" y="3493" width="1.3" height="15.0" fill="rgb(240,132,28)" rx="2" ry="2" /> +<text x="1077.97" y="3503.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.03%)</title><rect x="1104.4" y="2197" width="0.3" height="15.0" fill="rgb(251,43,35)" rx="2" ry="2" /> +<text x="1107.39" y="2207.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (8 samples, 0.22%)</title><rect x="370.3" y="1957" width="2.6" height="15.0" fill="rgb(254,152,30)" rx="2" ry="2" /> +<text x="373.28" y="1967.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (7 samples, 0.20%)</title><rect x="317.1" y="2165" width="2.3" height="15.0" fill="rgb(207,136,24)" rx="2" ry="2" /> +<text x="320.06" y="2175.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="406.6" y="1669" width="0.4" height="15.0" fill="rgb(221,56,10)" rx="2" ry="2" /> +<text x="409.64" y="1679.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="265.2" y="1733" width="0.3" height="15.0" fill="rgb(232,141,21)" rx="2" ry="2" /> +<text x="268.17" y="1743.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.03%)</title><rect x="954.0" y="2869" width="0.3" height="15.0" fill="rgb(225,5,42)" rx="2" ry="2" /> +<text x="957.00" y="2879.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (2 samples, 0.06%)</title><rect x="954.7" y="1973" width="0.6" height="15.0" fill="rgb(245,38,10)" rx="2" ry="2" /> +<text x="957.66" y="1983.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="249.6" y="2693" width="0.4" height="15.0" fill="rgb(224,204,33)" rx="2" ry="2" /> +<text x="252.64" y="2703.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="951.4" y="2597" width="0.3" height="15.0" fill="rgb(238,43,38)" rx="2" ry="2" /> +<text x="954.36" y="2607.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (1 samples, 0.03%)</title><rect x="954.3" y="3269" width="0.4" height="15.0" fill="rgb(236,114,14)" rx="2" ry="2" /> +<text x="957.33" y="3279.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="938.1" y="2469" width="0.4" height="15.0" fill="rgb(223,60,14)" rx="2" ry="2" /> +<text x="941.13" y="2479.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="391.4" y="1765" width="0.4" height="15.0" fill="rgb(220,226,25)" rx="2" ry="2" /> +<text x="394.43" y="1775.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (4 samples, 0.11%)</title><rect x="297.9" y="1797" width="1.3" height="15.0" fill="rgb(226,141,3)" rx="2" ry="2" /> +<text x="300.89" y="1807.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (230 samples, 6.44%)</title><rect x="707.4" y="2469" width="76.0" height="15.0" fill="rgb(226,37,16)" rx="2" ry="2" /> +<text x="710.42" y="2479.5" >Nsfisis\..</text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (2 samples, 0.06%)</title><rect x="954.7" y="2325" width="0.6" height="15.0" fill="rgb(246,36,49)" rx="2" ry="2" /> +<text x="957.66" y="2335.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (1 samples, 0.03%)</title><rect x="783.1" y="2245" width="0.3" height="15.0" fill="rgb(228,98,20)" rx="2" ry="2" /> +<text x="786.11" y="2255.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Stack::pushValue (1 samples, 0.03%)</title><rect x="1106.4" y="3493" width="0.3" height="15.0" fill="rgb(251,112,28)" rx="2" ry="2" /> +<text x="1109.38" y="3503.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="662.1" y="1989" width="0.4" height="15.0" fill="rgb(224,65,53)" rx="2" ry="2" /> +<text x="665.14" y="1999.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Stack::pushI32 (1 samples, 0.03%)</title><rect x="315.1" y="1973" width="0.3" height="15.0" fill="rgb(248,172,26)" rx="2" ry="2" /> +<text x="318.08" y="1983.5" ></text> +</g> +<g > +<title><unknown> (1 samples, 0.03%)</title><rect x="1172.8" y="3493" width="0.3" height="15.0" fill="rgb(211,158,43)" rx="2" ry="2" /> +<text x="1175.81" y="3503.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.03%)</title><rect x="249.3" y="2901" width="0.3" height="15.0" fill="rgb(205,145,49)" rx="2" ry="2" /> +<text x="252.31" y="2911.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Val::NumI32 (1 samples, 0.03%)</title><rect x="198.1" y="3461" width="0.3" height="15.0" fill="rgb(239,86,6)" rx="2" ry="2" /> +<text x="201.07" y="3471.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (31 samples, 0.87%)</title><rect x="293.3" y="1973" width="10.2" height="15.0" fill="rgb(248,50,38)" rx="2" ry="2" /> +<text x="296.27" y="1983.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (2 samples, 0.06%)</title><rect x="302.2" y="1429" width="0.7" height="15.0" fill="rgb(239,95,23)" rx="2" ry="2" /> +<text x="305.19" y="1439.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="270.8" y="1893" width="0.3" height="15.0" fill="rgb(239,126,3)" rx="2" ry="2" /> +<text x="273.79" y="1903.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (3 samples, 0.08%)</title><rect x="296.9" y="1765" width="1.0" height="15.0" fill="rgb(239,172,30)" rx="2" ry="2" /> +<text x="299.90" y="1775.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (1 samples, 0.03%)</title><rect x="407.0" y="2133" width="0.3" height="15.0" fill="rgb(228,66,10)" rx="2" ry="2" /> +<text x="409.97" y="2143.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (11 samples, 0.31%)</title><rect x="874.7" y="2357" width="3.6" height="15.0" fill="rgb(253,136,40)" rx="2" ry="2" /> +<text x="877.67" y="2367.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (6 samples, 0.17%)</title><rect x="846.6" y="3205" width="2.0" height="15.0" fill="rgb(213,82,42)" rx="2" ry="2" /> +<text x="849.58" y="3215.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.03%)</title><rect x="363.7" y="1717" width="0.3" height="15.0" fill="rgb(225,17,15)" rx="2" ry="2" /> +<text x="366.67" y="1727.5" ></text> +</g> +<g > +<title><unknown> (17 samples, 0.48%)</title><rect x="217.6" y="3461" width="5.6" height="15.0" fill="rgb(249,21,9)" rx="2" ry="2" /> +<text x="220.57" y="3471.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (1 samples, 0.03%)</title><rect x="670.1" y="2549" width="0.3" height="15.0" fill="rgb(224,109,48)" rx="2" ry="2" /> +<text x="673.07" y="2559.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (2 samples, 0.06%)</title><rect x="695.5" y="2421" width="0.7" height="15.0" fill="rgb(239,93,22)" rx="2" ry="2" /> +<text x="698.52" y="2431.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (74 samples, 2.07%)</title><rect x="854.2" y="2773" width="24.4" height="15.0" fill="rgb(245,210,54)" rx="2" ry="2" /> +<text x="857.18" y="2783.5" >N..</text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (2 samples, 0.06%)</title><rect x="648.9" y="2133" width="0.7" height="15.0" fill="rgb(213,116,53)" rx="2" ry="2" /> +<text x="651.92" y="2143.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (18 samples, 0.50%)</title><rect x="411.3" y="2165" width="5.9" height="15.0" fill="rgb(211,148,46)" rx="2" ry="2" /> +<text x="414.27" y="2175.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="358.4" y="1541" width="0.3" height="15.0" fill="rgb(254,3,26)" rx="2" ry="2" /> +<text x="361.38" y="1551.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (2 samples, 0.06%)</title><rect x="296.9" y="1685" width="0.7" height="15.0" fill="rgb(209,153,14)" rx="2" ry="2" /> +<text x="299.90" y="1695.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::wasmI32ToPhpInt (11 samples, 0.31%)</title><rect x="1163.2" y="3541" width="3.7" height="15.0" fill="rgb(209,182,10)" rx="2" ry="2" /> +<text x="1166.23" y="3551.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (11 samples, 0.31%)</title><rect x="355.1" y="1877" width="3.6" height="15.0" fill="rgb(235,148,47)" rx="2" ry="2" /> +<text x="358.08" y="1887.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (39 samples, 1.09%)</title><rect x="786.8" y="2389" width="12.8" height="15.0" fill="rgb(210,152,25)" rx="2" ry="2" /> +<text x="789.75" y="2399.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (3 samples, 0.08%)</title><rect x="357.4" y="1669" width="1.0" height="15.0" fill="rgb(252,93,44)" rx="2" ry="2" /> +<text x="360.39" y="1679.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (3 samples, 0.08%)</title><rect x="701.8" y="2421" width="1.0" height="15.0" fill="rgb(230,85,5)" rx="2" ry="2" /> +<text x="704.80" y="2431.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.03%)</title><rect x="846.6" y="2645" width="0.3" height="15.0" fill="rgb(222,120,10)" rx="2" ry="2" /> +<text x="849.58" y="2655.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (2 samples, 0.06%)</title><rect x="668.1" y="2725" width="0.7" height="15.0" fill="rgb(230,92,40)" rx="2" ry="2" /> +<text x="671.09" y="2735.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (21 samples, 0.59%)</title><rect x="278.4" y="2101" width="6.9" height="15.0" fill="rgb(248,213,49)" rx="2" ry="2" /> +<text x="281.39" y="2111.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.03%)</title><rect x="314.1" y="1749" width="0.3" height="15.0" fill="rgb(227,19,7)" rx="2" ry="2" /> +<text x="317.09" y="1759.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (158 samples, 4.43%)</title><rect x="899.1" y="2709" width="52.3" height="15.0" fill="rgb(205,25,37)" rx="2" ry="2" /> +<text x="902.13" y="2719.5" >Nsfis..</text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (127 samples, 3.56%)</title><rect x="853.2" y="2821" width="42.0" height="15.0" fill="rgb(244,90,52)" rx="2" ry="2" /> +<text x="856.19" y="2831.5" >Nsf..</text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (1 samples, 0.03%)</title><rect x="294.6" y="1909" width="0.3" height="15.0" fill="rgb(239,201,22)" rx="2" ry="2" /> +<text x="297.59" y="1919.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (4 samples, 0.11%)</title><rect x="846.9" y="2949" width="1.3" height="15.0" fill="rgb(208,97,8)" rx="2" ry="2" /> +<text x="849.91" y="2959.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.03%)</title><rect x="1150.7" y="3413" width="0.3" height="15.0" fill="rgb(243,10,3)" rx="2" ry="2" /> +<text x="1153.67" y="3423.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (358 samples, 10.03%)</title><rect x="80.4" y="3477" width="118.3" height="15.0" fill="rgb(211,197,13)" rx="2" ry="2" /> +<text x="83.40" y="3487.5" >Nsfisis\Waddiw..</text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (3 samples, 0.08%)</title><rect x="305.8" y="1797" width="1.0" height="15.0" fill="rgb(222,54,16)" rx="2" ry="2" /> +<text x="308.83" y="1807.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::invokeByFuncAddr (1 samples, 0.03%)</title><rect x="848.2" y="3013" width="0.4" height="15.0" fill="rgb(211,71,45)" rx="2" ry="2" /> +<text x="851.23" y="3023.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.03%)</title><rect x="954.0" y="2389" width="0.3" height="15.0" fill="rgb(238,166,35)" rx="2" ry="2" /> +<text x="957.00" y="2399.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doStoreI32 (1 samples, 0.03%)</title><rect x="254.3" y="2165" width="0.3" height="15.0" fill="rgb(210,97,3)" rx="2" ry="2" /> +<text x="257.26" y="2175.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (25 samples, 0.70%)</title><rect x="822.1" y="2197" width="8.3" height="15.0" fill="rgb(240,150,52)" rx="2" ry="2" /> +<text x="825.12" y="2207.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (1 samples, 0.03%)</title><rect x="410.9" y="1989" width="0.4" height="15.0" fill="rgb(249,8,29)" rx="2" ry="2" /> +<text x="413.94" y="1999.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (1 samples, 0.03%)</title><rect x="399.0" y="1973" width="0.4" height="15.0" fill="rgb(229,76,35)" rx="2" ry="2" /> +<text x="402.04" y="1983.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="670.4" y="2693" width="0.3" height="15.0" fill="rgb(235,77,18)" rx="2" ry="2" /> +<text x="673.40" y="2703.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.03%)</title><rect x="847.2" y="2581" width="0.4" height="15.0" fill="rgb(215,97,51)" rx="2" ry="2" /> +<text x="850.24" y="2591.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (39 samples, 1.09%)</title><rect x="786.8" y="2405" width="12.8" height="15.0" fill="rgb(228,58,38)" rx="2" ry="2" /> +<text x="789.75" y="2415.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="790.1" y="1925" width="0.3" height="15.0" fill="rgb(234,31,11)" rx="2" ry="2" /> +<text x="793.06" y="1935.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (3 samples, 0.08%)</title><rect x="1107.4" y="3477" width="1.0" height="15.0" fill="rgb(217,218,43)" rx="2" ry="2" /> +<text x="1110.37" y="3487.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="954.3" y="2949" width="0.4" height="15.0" fill="rgb(248,103,21)" rx="2" ry="2" /> +<text x="957.33" y="2959.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (14 samples, 0.39%)</title><rect x="354.1" y="1893" width="4.6" height="15.0" fill="rgb(253,87,1)" rx="2" ry="2" /> +<text x="357.08" y="1903.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="312.4" y="1509" width="0.4" height="15.0" fill="rgb(239,17,48)" rx="2" ry="2" /> +<text x="315.44" y="1519.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="846.6" y="2597" width="0.3" height="15.0" fill="rgb(246,34,4)" rx="2" ry="2" /> +<text x="849.58" y="2607.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::deactivateLabel (1 samples, 0.03%)</title><rect x="830.7" y="2181" width="0.3" height="15.0" fill="rgb(205,205,31)" rx="2" ry="2" /> +<text x="833.71" y="2191.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (14 samples, 0.39%)</title><rect x="308.1" y="1893" width="4.7" height="15.0" fill="rgb(217,159,48)" rx="2" ry="2" /> +<text x="311.14" y="1903.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="406.3" y="1813" width="0.3" height="15.0" fill="rgb(219,219,46)" rx="2" ry="2" /> +<text x="409.31" y="1823.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (8 samples, 0.22%)</title><rect x="1152.3" y="3493" width="2.7" height="15.0" fill="rgb(246,130,40)" rx="2" ry="2" /> +<text x="1155.32" y="3503.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Stack::popValue (1 samples, 0.03%)</title><rect x="849.2" y="2773" width="0.4" height="15.0" fill="rgb(253,28,15)" rx="2" ry="2" /> +<text x="852.22" y="2783.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (270 samples, 7.56%)</title><rect x="319.7" y="2325" width="89.3" height="15.0" fill="rgb(207,86,2)" rx="2" ry="2" /> +<text x="322.71" y="2335.5" >Nsfisis\Wa..</text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="941.8" y="2501" width="0.3" height="15.0" fill="rgb(250,60,42)" rx="2" ry="2" /> +<text x="944.77" y="2511.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (11 samples, 0.31%)</title><rect x="835.0" y="2261" width="3.6" height="15.0" fill="rgb(229,62,17)" rx="2" ry="2" /> +<text x="838.01" y="2271.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (1 samples, 0.03%)</title><rect x="271.8" y="2245" width="0.3" height="15.0" fill="rgb(234,151,49)" rx="2" ry="2" /> +<text x="274.78" y="2255.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="420.9" y="2021" width="0.3" height="15.0" fill="rgb(213,60,39)" rx="2" ry="2" /> +<text x="423.85" y="2031.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (2 samples, 0.06%)</title><rect x="954.7" y="2053" width="0.6" height="15.0" fill="rgb(242,229,49)" rx="2" ry="2" /> +<text x="957.66" y="2063.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (2 samples, 0.06%)</title><rect x="296.9" y="1669" width="0.7" height="15.0" fill="rgb(232,187,6)" rx="2" ry="2" /> +<text x="299.90" y="1679.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.03%)</title><rect x="695.9" y="2197" width="0.3" height="15.0" fill="rgb(213,132,47)" rx="2" ry="2" /> +<text x="698.85" y="2207.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (10 samples, 0.28%)</title><rect x="795.0" y="2277" width="3.3" height="15.0" fill="rgb(214,216,6)" rx="2" ry="2" /> +<text x="798.01" y="2287.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (1 samples, 0.03%)</title><rect x="251.9" y="2773" width="0.4" height="15.0" fill="rgb(245,163,23)" rx="2" ry="2" /> +<text x="254.95" y="2783.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (2 samples, 0.06%)</title><rect x="369.3" y="1813" width="0.6" height="15.0" fill="rgb(237,208,13)" rx="2" ry="2" /> +<text x="372.29" y="1823.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Stack::pushI32 (1 samples, 0.03%)</title><rect x="1140.8" y="3509" width="0.3" height="15.0" fill="rgb(247,52,5)" rx="2" ry="2" /> +<text x="1143.75" y="3519.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (197 samples, 5.52%)</title><rect x="254.6" y="2277" width="65.1" height="15.0" fill="rgb(214,61,25)" rx="2" ry="2" /> +<text x="257.59" y="2287.5" >Nsfisis..</text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (2 samples, 0.06%)</title><rect x="302.2" y="1461" width="0.7" height="15.0" fill="rgb(217,37,38)" rx="2" ry="2" /> +<text x="305.19" y="1471.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.03%)</title><rect x="316.4" y="1109" width="0.3" height="15.0" fill="rgb(245,44,42)" rx="2" ry="2" /> +<text x="319.40" y="1119.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1,813 samples, 50.78%)</title><rect x="249.3" y="3317" width="599.3" height="15.0" fill="rgb(230,120,24)" rx="2" ry="2" /> +<text x="252.31" y="3327.5" >Nsfisis\Waddiwasi\Execution\Runtime::execInstrs</text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (1 samples, 0.03%)</title><rect x="701.5" y="2245" width="0.3" height="15.0" fill="rgb(212,161,54)" rx="2" ry="2" /> +<text x="704.47" y="2255.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.03%)</title><rect x="294.6" y="1877" width="0.3" height="15.0" fill="rgb(216,154,15)" rx="2" ry="2" /> +<text x="297.59" y="1887.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (2 samples, 0.06%)</title><rect x="954.7" y="1861" width="0.6" height="15.0" fill="rgb(241,58,46)" rx="2" ry="2" /> +<text x="957.66" y="1871.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.03%)</title><rect x="316.4" y="1205" width="0.3" height="15.0" fill="rgb(246,132,49)" rx="2" ry="2" /> +<text x="319.40" y="1215.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (2 samples, 0.06%)</title><rect x="316.1" y="1557" width="0.6" height="15.0" fill="rgb(251,60,13)" rx="2" ry="2" /> +<text x="319.07" y="1567.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\BinaryFormat\Decoder::decodeInstr (8 samples, 0.22%)</title><rect x="11.3" y="3381" width="2.7" height="15.0" fill="rgb(209,54,7)" rx="2" ry="2" /> +<text x="14.32" y="3391.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (4 samples, 0.11%)</title><rect x="1135.8" y="3237" width="1.3" height="15.0" fill="rgb(212,66,44)" rx="2" ry="2" /> +<text x="1138.79" y="3247.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="419.9" y="2213" width="0.3" height="15.0" fill="rgb(205,95,26)" rx="2" ry="2" /> +<text x="422.86" y="2223.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (316 samples, 8.85%)</title><rect x="849.6" y="3109" width="104.4" height="15.0" fill="rgb(213,112,25)" rx="2" ry="2" /> +<text x="852.55" y="3119.5" >Nsfisis\Wadd..</text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (685 samples, 19.19%)</title><rect x="422.2" y="1349" width="226.4" height="15.0" fill="rgb(248,147,15)" rx="2" ry="2" /> +<text x="425.17" y="1359.5" >Nsfisis\Waddiwasi\Execution\R..</text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (1 samples, 0.03%)</title><rect x="954.3" y="2533" width="0.4" height="15.0" fill="rgb(214,198,40)" rx="2" ry="2" /> +<text x="957.33" y="2543.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (2 samples, 0.06%)</title><rect x="311.4" y="1573" width="0.7" height="15.0" fill="rgb(228,72,8)" rx="2" ry="2" /> +<text x="314.45" y="1583.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (3 samples, 0.08%)</title><rect x="305.8" y="1909" width="1.0" height="15.0" fill="rgb(215,104,31)" rx="2" ry="2" /> +<text x="308.83" y="1919.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (4 samples, 0.11%)</title><rect x="257.6" y="2053" width="1.3" height="15.0" fill="rgb(215,25,5)" rx="2" ry="2" /> +<text x="260.57" y="2063.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (17 samples, 0.48%)</title><rect x="343.5" y="2101" width="5.6" height="15.0" fill="rgb(213,68,17)" rx="2" ry="2" /> +<text x="346.51" y="2111.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (10 samples, 0.28%)</title><rect x="703.8" y="2789" width="3.3" height="15.0" fill="rgb(234,188,19)" rx="2" ry="2" /> +<text x="706.79" y="2799.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="707.1" y="2661" width="0.3" height="15.0" fill="rgb(245,12,3)" rx="2" ry="2" /> +<text x="710.09" y="2671.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.03%)</title><rect x="316.4" y="1429" width="0.3" height="15.0" fill="rgb(218,102,25)" rx="2" ry="2" /> +<text x="319.40" y="1439.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="938.5" y="2405" width="0.3" height="15.0" fill="rgb(221,183,4)" rx="2" ry="2" /> +<text x="941.46" y="2415.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Stack::pushValue (1 samples, 0.03%)</title><rect x="784.1" y="2677" width="0.3" height="15.0" fill="rgb(224,220,52)" rx="2" ry="2" /> +<text x="787.11" y="2687.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="843.6" y="2309" width="0.3" height="15.0" fill="rgb(239,61,41)" rx="2" ry="2" /> +<text x="846.60" y="2319.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="701.5" y="2085" width="0.3" height="15.0" fill="rgb(235,165,21)" rx="2" ry="2" /> +<text x="704.47" y="2095.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (1 samples, 0.03%)</title><rect x="878.3" y="2405" width="0.3" height="15.0" fill="rgb(218,101,37)" rx="2" ry="2" /> +<text x="881.31" y="2415.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::wasmI32ToPhpInt (1 samples, 0.03%)</title><rect x="938.5" y="2517" width="0.3" height="15.0" fill="rgb(205,131,31)" rx="2" ry="2" /> +<text x="941.46" y="2527.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.03%)</title><rect x="954.0" y="2997" width="0.3" height="15.0" fill="rgb(249,169,33)" rx="2" ry="2" /> +<text x="957.00" y="3007.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (5 samples, 0.14%)</title><rect x="247.7" y="3189" width="1.6" height="15.0" fill="rgb(238,114,53)" rx="2" ry="2" /> +<text x="250.65" y="3199.5" ></text> +</g> +<g > +<title>{closure}(/home/ken/src/php-waddiwasi/vendor/composer/ClassLoader.php:575-577) (1 samples, 0.03%)</title><rect x="17.3" y="3461" width="0.3" height="15.0" fill="rgb(249,8,51)" rx="2" ry="2" /> +<text x="20.27" y="3471.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (20 samples, 0.56%)</title><rect x="330.9" y="2037" width="6.7" height="15.0" fill="rgb(212,65,18)" rx="2" ry="2" /> +<text x="333.95" y="2047.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (229 samples, 6.41%)</title><rect x="707.4" y="2325" width="75.7" height="15.0" fill="rgb(229,0,18)" rx="2" ry="2" /> +<text x="710.42" y="2335.5" >Nsfisis\..</text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.03%)</title><rect x="702.8" y="2357" width="0.3" height="15.0" fill="rgb(207,49,9)" rx="2" ry="2" /> +<text x="705.80" y="2367.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (20 samples, 0.56%)</title><rect x="330.9" y="2069" width="6.7" height="15.0" fill="rgb(230,43,33)" rx="2" ry="2" /> +<text x="333.95" y="2079.5" ></text> +</g> +<g > +<title><unknown> (1 samples, 0.03%)</title><rect x="672.1" y="2613" width="0.3" height="15.0" fill="rgb(232,121,42)" rx="2" ry="2" /> +<text x="675.06" y="2623.5" ></text> +</g> +<g > +<title>array_fill (149 samples, 4.17%)</title><rect x="18.6" y="3477" width="49.2" height="15.0" fill="rgb(243,42,30)" rx="2" ry="2" /> +<text x="21.59" y="3487.5" >arra..</text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (1 samples, 0.03%)</title><rect x="669.4" y="2661" width="0.3" height="15.0" fill="rgb(205,195,37)" rx="2" ry="2" /> +<text x="672.41" y="2671.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="405.6" y="1701" width="0.4" height="15.0" fill="rgb(224,24,18)" rx="2" ry="2" /> +<text x="408.65" y="1711.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (2 samples, 0.06%)</title><rect x="386.8" y="1653" width="0.7" height="15.0" fill="rgb(212,43,12)" rx="2" ry="2" /> +<text x="389.81" y="1663.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (3 samples, 0.08%)</title><rect x="1116.6" y="3477" width="1.0" height="15.0" fill="rgb(251,172,43)" rx="2" ry="2" /> +<text x="1119.62" y="3487.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (1 samples, 0.03%)</title><rect x="851.2" y="2517" width="0.3" height="15.0" fill="rgb(213,100,1)" rx="2" ry="2" /> +<text x="854.20" y="2527.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="364.3" y="1797" width="0.4" height="15.0" fill="rgb(223,50,46)" rx="2" ry="2" /> +<text x="367.33" y="1807.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (2 samples, 0.06%)</title><rect x="307.5" y="1701" width="0.6" height="15.0" fill="rgb(254,24,47)" rx="2" ry="2" /> +<text x="310.48" y="1711.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="941.4" y="2469" width="0.4" height="15.0" fill="rgb(229,122,31)" rx="2" ry="2" /> +<text x="944.44" y="2479.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="954.3" y="2565" width="0.4" height="15.0" fill="rgb(232,131,15)" rx="2" ry="2" /> +<text x="957.33" y="2575.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.03%)</title><rect x="846.6" y="2613" width="0.3" height="15.0" fill="rgb(244,166,43)" rx="2" ry="2" /> +<text x="849.58" y="2623.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (108 samples, 3.03%)</title><rect x="906.1" y="2581" width="35.7" height="15.0" fill="rgb(232,208,13)" rx="2" ry="2" /> +<text x="909.07" y="2591.5" >Nsf..</text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.03%)</title><rect x="363.7" y="1589" width="0.3" height="15.0" fill="rgb(209,171,17)" rx="2" ry="2" /> +<text x="366.67" y="1599.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (2 samples, 0.06%)</title><rect x="954.7" y="2165" width="0.6" height="15.0" fill="rgb(240,7,44)" rx="2" ry="2" /> +<text x="957.66" y="2175.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (1 samples, 0.03%)</title><rect x="846.6" y="2821" width="0.3" height="15.0" fill="rgb(237,197,19)" rx="2" ry="2" /> +<text x="849.58" y="2831.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (208 samples, 5.83%)</title><rect x="323.3" y="2293" width="68.8" height="15.0" fill="rgb(224,190,9)" rx="2" ry="2" /> +<text x="326.34" y="2303.5" >Nsfisis..</text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (1 samples, 0.03%)</title><rect x="670.7" y="2389" width="0.4" height="15.0" fill="rgb(235,56,12)" rx="2" ry="2" /> +<text x="673.73" y="2399.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (3 samples, 0.08%)</title><rect x="842.9" y="2853" width="1.0" height="15.0" fill="rgb(205,149,34)" rx="2" ry="2" /> +<text x="845.94" y="2863.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\BinaryFormat\Decoder::{closure}(/home/ken/src/php-waddiwasi/src/BinaryFormat/Decoder.php:264-267) (18 samples, 0.50%)</title><rect x="10.7" y="3493" width="5.9" height="15.0" fill="rgb(230,132,53)" rx="2" ry="2" /> +<text x="13.66" y="3503.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="842.6" y="2469" width="0.3" height="15.0" fill="rgb(217,81,9)" rx="2" ry="2" /> +<text x="845.61" y="2479.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.03%)</title><rect x="1104.4" y="2325" width="0.3" height="15.0" fill="rgb(214,137,39)" rx="2" ry="2" /> +<text x="1107.39" y="2335.5" ></text> +</g> +<g > +<title><unknown> (1 samples, 0.03%)</title><rect x="386.5" y="1637" width="0.3" height="15.0" fill="rgb(220,17,29)" rx="2" ry="2" /> +<text x="389.48" y="1647.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (3 samples, 0.08%)</title><rect x="404.7" y="1253" width="0.9" height="15.0" fill="rgb(237,170,29)" rx="2" ry="2" /> +<text x="407.66" y="1263.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.03%)</title><rect x="270.8" y="1877" width="0.3" height="15.0" fill="rgb(236,181,33)" rx="2" ry="2" /> +<text x="273.79" y="1887.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (4 samples, 0.11%)</title><rect x="954.7" y="2853" width="1.3" height="15.0" fill="rgb(252,39,20)" rx="2" ry="2" /> +<text x="957.66" y="2863.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (3 samples, 0.08%)</title><rect x="420.9" y="2181" width="0.9" height="15.0" fill="rgb(205,76,27)" rx="2" ry="2" /> +<text x="423.85" y="2191.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (173 samples, 4.85%)</title><rect x="784.4" y="2549" width="57.2" height="15.0" fill="rgb(243,177,39)" rx="2" ry="2" /> +<text x="787.44" y="2559.5" >Nsfisi..</text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (2 samples, 0.06%)</title><rect x="661.8" y="2181" width="0.7" height="15.0" fill="rgb(253,43,22)" rx="2" ry="2" /> +<text x="664.81" y="2191.5" ></text> +</g> +<g > +<title><unknown> (1 samples, 0.03%)</title><rect x="870.4" y="1221" width="0.3" height="15.0" fill="rgb(240,21,50)" rx="2" ry="2" /> +<text x="873.38" y="1231.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.03%)</title><rect x="249.6" y="2741" width="0.4" height="15.0" fill="rgb(245,42,34)" rx="2" ry="2" /> +<text x="252.64" y="2751.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (9 samples, 0.25%)</title><rect x="1152.0" y="3509" width="3.0" height="15.0" fill="rgb(227,179,22)" rx="2" ry="2" /> +<text x="1154.99" y="3519.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Stack::popI32 (1 samples, 0.03%)</title><rect x="855.8" y="2389" width="0.4" height="15.0" fill="rgb(253,126,4)" rx="2" ry="2" /> +<text x="858.83" y="2399.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (124 samples, 3.47%)</title><rect x="854.2" y="2789" width="41.0" height="15.0" fill="rgb(222,76,33)" rx="2" ry="2" /> +<text x="857.18" y="2799.5" >Nsf..</text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="696.5" y="2501" width="0.3" height="15.0" fill="rgb(211,120,7)" rx="2" ry="2" /> +<text x="699.52" y="2511.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (14 samples, 0.39%)</title><rect x="656.9" y="2197" width="4.6" height="15.0" fill="rgb(218,135,23)" rx="2" ry="2" /> +<text x="659.85" y="2207.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (3 samples, 0.08%)</title><rect x="848.6" y="3317" width="1.0" height="15.0" fill="rgb(230,117,41)" rx="2" ry="2" /> +<text x="851.56" y="3327.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.03%)</title><rect x="328.3" y="2005" width="0.3" height="15.0" fill="rgb(231,177,47)" rx="2" ry="2" /> +<text x="331.30" y="2015.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="316.4" y="997" width="0.3" height="15.0" fill="rgb(220,135,16)" rx="2" ry="2" /> +<text x="319.40" y="1007.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (3 samples, 0.08%)</title><rect x="842.9" y="2821" width="1.0" height="15.0" fill="rgb(225,52,40)" rx="2" ry="2" /> +<text x="845.94" y="2831.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="1182.7" y="3509" width="0.4" height="15.0" fill="rgb(229,17,53)" rx="2" ry="2" /> +<text x="1185.73" y="3519.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="260.5" y="1845" width="0.4" height="15.0" fill="rgb(242,136,12)" rx="2" ry="2" /> +<text x="263.54" y="1855.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (4 samples, 0.11%)</title><rect x="954.7" y="3013" width="1.3" height="15.0" fill="rgb(212,122,38)" rx="2" ry="2" /> +<text x="957.66" y="3023.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="677.0" y="2693" width="0.3" height="15.0" fill="rgb(218,44,4)" rx="2" ry="2" /> +<text x="680.01" y="2703.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="843.9" y="2629" width="0.4" height="15.0" fill="rgb(223,124,2)" rx="2" ry="2" /> +<text x="846.93" y="2639.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (27 samples, 0.76%)</title><rect x="258.9" y="2101" width="8.9" height="15.0" fill="rgb(223,177,18)" rx="2" ry="2" /> +<text x="261.89" y="2111.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (31 samples, 0.87%)</title><rect x="293.3" y="2005" width="10.2" height="15.0" fill="rgb(210,170,3)" rx="2" ry="2" /> +<text x="296.27" y="2015.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1,252 samples, 35.07%)</title><rect x="252.3" y="2485" width="413.8" height="15.0" fill="rgb(238,162,38)" rx="2" ry="2" /> +<text x="255.28" y="2495.5" >Nsfisis\Waddiwasi\Execution\Runtime::execInstrs</text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (6 samples, 0.17%)</title><rect x="846.6" y="3189" width="2.0" height="15.0" fill="rgb(249,44,15)" rx="2" ry="2" /> +<text x="849.58" y="3199.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (5 samples, 0.14%)</title><rect x="315.4" y="2021" width="1.7" height="15.0" fill="rgb(206,109,5)" rx="2" ry="2" /> +<text x="318.41" y="2031.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\BinaryFormat\Decoder::decodeInstrsUntil (8 samples, 0.22%)</title><rect x="11.3" y="3397" width="2.7" height="15.0" fill="rgb(245,5,52)" rx="2" ry="2" /> +<text x="14.32" y="3407.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (1 samples, 0.03%)</title><rect x="271.5" y="2181" width="0.3" height="15.0" fill="rgb(241,179,18)" rx="2" ry="2" /> +<text x="274.45" y="2191.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (230 samples, 6.44%)</title><rect x="707.4" y="2389" width="76.0" height="15.0" fill="rgb(244,35,52)" rx="2" ry="2" /> +<text x="710.42" y="2399.5" >Nsfisis\..</text> +</g> +<g > +<title><unknown> (1 samples, 0.03%)</title><rect x="1155.3" y="3509" width="0.3" height="15.0" fill="rgb(223,69,35)" rx="2" ry="2" /> +<text x="1158.29" y="3519.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (2 samples, 0.06%)</title><rect x="660.2" y="1989" width="0.6" height="15.0" fill="rgb(217,95,7)" rx="2" ry="2" /> +<text x="663.16" y="1999.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (41 samples, 1.15%)</title><rect x="328.6" y="2117" width="13.6" height="15.0" fill="rgb(217,91,53)" rx="2" ry="2" /> +<text x="331.63" y="2127.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.03%)</title><rect x="878.3" y="2389" width="0.3" height="15.0" fill="rgb(240,193,11)" rx="2" ry="2" /> +<text x="881.31" y="2399.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="667.1" y="2821" width="0.3" height="15.0" fill="rgb(228,32,39)" rx="2" ry="2" /> +<text x="670.10" y="2831.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (11 samples, 0.31%)</title><rect x="267.8" y="2165" width="3.7" height="15.0" fill="rgb(234,156,20)" rx="2" ry="2" /> +<text x="270.82" y="2175.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (3 samples, 0.08%)</title><rect x="404.7" y="1589" width="0.9" height="15.0" fill="rgb(221,98,43)" rx="2" ry="2" /> +<text x="407.66" y="1599.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="316.4" y="869" width="0.3" height="15.0" fill="rgb(254,37,47)" rx="2" ry="2" /> +<text x="319.40" y="879.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (3 samples, 0.08%)</title><rect x="1173.1" y="3525" width="1.0" height="15.0" fill="rgb(219,113,31)" rx="2" ry="2" /> +<text x="1176.14" y="3535.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (1 samples, 0.03%)</title><rect x="951.4" y="2677" width="0.3" height="15.0" fill="rgb(227,57,30)" rx="2" ry="2" /> +<text x="954.36" y="2687.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (3 samples, 0.08%)</title><rect x="404.7" y="1637" width="0.9" height="15.0" fill="rgb(250,93,38)" rx="2" ry="2" /> +<text x="407.66" y="1647.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (2 samples, 0.06%)</title><rect x="1104.1" y="2677" width="0.6" height="15.0" fill="rgb(250,127,16)" rx="2" ry="2" /> +<text x="1107.06" y="2687.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="1104.4" y="2053" width="0.3" height="15.0" fill="rgb(229,212,53)" rx="2" ry="2" /> +<text x="1107.39" y="2063.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.03%)</title><rect x="266.8" y="1653" width="0.4" height="15.0" fill="rgb(210,141,43)" rx="2" ry="2" /> +<text x="269.82" y="1663.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.03%)</title><rect x="1154.6" y="3349" width="0.4" height="15.0" fill="rgb(226,50,17)" rx="2" ry="2" /> +<text x="1157.63" y="3359.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Stack::pushValue (1 samples, 0.03%)</title><rect x="651.6" y="2357" width="0.3" height="15.0" fill="rgb(234,48,24)" rx="2" ry="2" /> +<text x="654.56" y="2367.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="1077.3" y="3301" width="0.3" height="15.0" fill="rgb(246,92,14)" rx="2" ry="2" /> +<text x="1080.29" y="3311.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="420.9" y="1989" width="0.3" height="15.0" fill="rgb(224,41,10)" rx="2" ry="2" /> +<text x="423.85" y="1999.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (10 samples, 0.28%)</title><rect x="1101.7" y="3237" width="3.4" height="15.0" fill="rgb(212,71,6)" rx="2" ry="2" /> +<text x="1104.75" y="3247.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (3 samples, 0.08%)</title><rect x="1085.6" y="3397" width="0.9" height="15.0" fill="rgb(252,188,15)" rx="2" ry="2" /> +<text x="1088.55" y="3407.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (2 samples, 0.06%)</title><rect x="954.7" y="725" width="0.6" height="15.0" fill="rgb(242,186,29)" rx="2" ry="2" /> +<text x="957.66" y="735.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="849.9" y="2245" width="0.3" height="15.0" fill="rgb(241,20,49)" rx="2" ry="2" /> +<text x="852.88" y="2255.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (683 samples, 19.13%)</title><rect x="422.8" y="1045" width="225.8" height="15.0" fill="rgb(219,206,12)" rx="2" ry="2" /> +<text x="425.83" y="1055.5" >Nsfisis\Waddiwasi\Execution\R..</text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="372.6" y="1637" width="0.3" height="15.0" fill="rgb(251,118,50)" rx="2" ry="2" /> +<text x="375.59" y="1647.5" ></text> +</g> +<g > +<title>print_r (23 samples, 0.64%)</title><rect x="1141.7" y="3509" width="7.6" height="15.0" fill="rgb(214,136,25)" rx="2" ry="2" /> +<text x="1144.74" y="3519.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="262.2" y="1957" width="0.3" height="15.0" fill="rgb(209,200,45)" rx="2" ry="2" /> +<text x="265.20" y="1967.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (3 samples, 0.08%)</title><rect x="1103.7" y="3093" width="1.0" height="15.0" fill="rgb(217,96,44)" rx="2" ry="2" /> +<text x="1106.73" y="3103.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (15 samples, 0.42%)</title><rect x="682.3" y="2501" width="5.0" height="15.0" fill="rgb(218,152,54)" rx="2" ry="2" /> +<text x="685.30" y="2511.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (2 samples, 0.06%)</title><rect x="849.6" y="2405" width="0.6" height="15.0" fill="rgb(250,147,20)" rx="2" ry="2" /> +<text x="852.55" y="2415.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="372.6" y="1733" width="0.3" height="15.0" fill="rgb(219,138,35)" rx="2" ry="2" /> +<text x="375.59" y="1743.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.03%)</title><rect x="951.4" y="2709" width="0.3" height="15.0" fill="rgb(243,52,4)" rx="2" ry="2" /> +<text x="954.36" y="2719.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.03%)</title><rect x="302.9" y="1813" width="0.3" height="15.0" fill="rgb(230,28,2)" rx="2" ry="2" /> +<text x="305.85" y="1823.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (1 samples, 0.03%)</title><rect x="677.0" y="2773" width="0.3" height="15.0" fill="rgb(212,208,7)" rx="2" ry="2" /> +<text x="680.01" y="2783.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (21 samples, 0.59%)</title><rect x="400.0" y="2117" width="7.0" height="15.0" fill="rgb(210,221,1)" rx="2" ry="2" /> +<text x="403.03" y="2127.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="316.4" y="1029" width="0.3" height="15.0" fill="rgb(213,207,15)" rx="2" ry="2" /> +<text x="319.40" y="1039.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (208 samples, 5.83%)</title><rect x="323.3" y="2277" width="68.8" height="15.0" fill="rgb(245,68,54)" rx="2" ry="2" /> +<text x="326.34" y="2287.5" >Nsfisis..</text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (1 samples, 0.03%)</title><rect x="299.9" y="1717" width="0.3" height="15.0" fill="rgb(231,34,28)" rx="2" ry="2" /> +<text x="302.88" y="1727.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.03%)</title><rect x="656.5" y="1973" width="0.4" height="15.0" fill="rgb(209,208,54)" rx="2" ry="2" /> +<text x="659.52" y="1983.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="938.5" y="2469" width="0.3" height="15.0" fill="rgb(245,128,53)" rx="2" ry="2" /> +<text x="941.46" y="2479.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (18 samples, 0.50%)</title><rect x="696.8" y="2613" width="6.0" height="15.0" fill="rgb(222,47,19)" rx="2" ry="2" /> +<text x="699.85" y="2623.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (4 samples, 0.11%)</title><rect x="371.6" y="1765" width="1.3" height="15.0" fill="rgb(254,191,53)" rx="2" ry="2" /> +<text x="374.60" y="1775.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (49 samples, 1.37%)</title><rect x="392.1" y="2277" width="16.2" height="15.0" fill="rgb(220,81,53)" rx="2" ry="2" /> +<text x="395.10" y="2287.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.03%)</title><rect x="301.5" y="1685" width="0.4" height="15.0" fill="rgb(233,60,4)" rx="2" ry="2" /> +<text x="304.53" y="1695.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (2 samples, 0.06%)</title><rect x="670.7" y="2645" width="0.7" height="15.0" fill="rgb(239,12,36)" rx="2" ry="2" /> +<text x="673.73" y="2655.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.03%)</title><rect x="954.0" y="3061" width="0.3" height="15.0" fill="rgb(235,105,46)" rx="2" ry="2" /> +<text x="957.00" y="3071.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (4 samples, 0.11%)</title><rect x="789.4" y="2293" width="1.3" height="15.0" fill="rgb(232,208,54)" rx="2" ry="2" /> +<text x="792.39" y="2303.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Stack::currentFrame (1 samples, 0.03%)</title><rect x="838.6" y="2293" width="0.4" height="15.0" fill="rgb(251,171,50)" rx="2" ry="2" /> +<text x="841.64" y="2303.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (1 samples, 0.03%)</title><rect x="263.5" y="1653" width="0.3" height="15.0" fill="rgb(240,183,22)" rx="2" ry="2" /> +<text x="266.52" y="1663.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.03%)</title><rect x="784.1" y="2773" width="0.3" height="15.0" fill="rgb(211,72,9)" rx="2" ry="2" /> +<text x="787.11" y="2783.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (2 samples, 0.06%)</title><rect x="954.7" y="805" width="0.6" height="15.0" fill="rgb(223,106,41)" rx="2" ry="2" /> +<text x="957.66" y="815.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (2 samples, 0.06%)</title><rect x="1104.1" y="2965" width="0.6" height="15.0" fill="rgb(230,178,50)" rx="2" ry="2" /> +<text x="1107.06" y="2975.5" ></text> +</g> +<g > +<title>all (3,570 samples, 100%)</title><rect x="10.0" y="3557" width="1180.0" height="15.0" fill="rgb(239,116,39)" rx="2" ry="2" /> +<text x="13.00" y="3567.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (8 samples, 0.22%)</title><rect x="875.3" y="2245" width="2.7" height="15.0" fill="rgb(254,52,10)" rx="2" ry="2" /> +<text x="878.33" y="2255.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::deactivateLabel (1 samples, 0.03%)</title><rect x="930.2" y="2517" width="0.3" height="15.0" fill="rgb(226,178,52)" rx="2" ry="2" /> +<text x="933.20" y="2527.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (1 samples, 0.03%)</title><rect x="894.8" y="2597" width="0.4" height="15.0" fill="rgb(247,144,38)" rx="2" ry="2" /> +<text x="897.83" y="2607.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.03%)</title><rect x="851.2" y="2389" width="0.3" height="15.0" fill="rgb(225,127,28)" rx="2" ry="2" /> +<text x="854.20" y="2399.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::invokeByFuncAddr (1,823 samples, 51.06%)</title><rect x="246.0" y="3397" width="602.6" height="15.0" fill="rgb(234,190,38)" rx="2" ry="2" /> +<text x="249.00" y="3407.5" >Nsfisis\Waddiwasi\Execution\Runtime::invokeByFuncAddr</text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.03%)</title><rect x="257.2" y="2037" width="0.4" height="15.0" fill="rgb(247,182,31)" rx="2" ry="2" /> +<text x="260.24" y="2047.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1,806 samples, 50.59%)</title><rect x="249.6" y="3045" width="597.0" height="15.0" fill="rgb(224,165,31)" rx="2" ry="2" /> +<text x="252.64" y="3055.5" >Nsfisis\Waddiwasi\Execution\Runtime::execInstr</text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.03%)</title><rect x="410.9" y="1845" width="0.4" height="15.0" fill="rgb(231,135,25)" rx="2" ry="2" /> +<text x="413.94" y="1855.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (3 samples, 0.08%)</title><rect x="318.4" y="2133" width="1.0" height="15.0" fill="rgb(234,65,3)" rx="2" ry="2" /> +<text x="321.39" y="2143.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (19 samples, 0.53%)</title><rect x="792.4" y="2309" width="6.2" height="15.0" fill="rgb(227,17,24)" rx="2" ry="2" /> +<text x="795.37" y="2319.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (46 samples, 1.29%)</title><rect x="859.1" y="2373" width="15.2" height="15.0" fill="rgb(207,113,33)" rx="2" ry="2" /> +<text x="862.14" y="2383.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\StackEntry::Value (1 samples, 0.03%)</title><rect x="772.9" y="2181" width="0.3" height="15.0" fill="rgb(208,123,1)" rx="2" ry="2" /> +<text x="775.87" y="2191.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.03%)</title><rect x="696.5" y="2549" width="0.3" height="15.0" fill="rgb(229,14,25)" rx="2" ry="2" /> +<text x="699.52" y="2559.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (3 samples, 0.08%)</title><rect x="1136.1" y="3141" width="1.0" height="15.0" fill="rgb(221,150,39)" rx="2" ry="2" /> +<text x="1139.12" y="3151.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (2 samples, 0.06%)</title><rect x="954.7" y="629" width="0.6" height="15.0" fill="rgb(227,212,53)" rx="2" ry="2" /> +<text x="957.66" y="639.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.03%)</title><rect x="246.0" y="3029" width="0.3" height="15.0" fill="rgb(247,172,16)" rx="2" ry="2" /> +<text x="249.00" y="3039.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\MemInst::storeByte (5 samples, 0.14%)</title><rect x="185.5" y="3429" width="1.7" height="15.0" fill="rgb(240,77,48)" rx="2" ry="2" /> +<text x="188.51" y="3439.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.03%)</title><rect x="952.3" y="2485" width="0.4" height="15.0" fill="rgb(219,226,12)" rx="2" ry="2" /> +<text x="955.35" y="2495.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (686 samples, 19.22%)</title><rect x="422.2" y="1861" width="226.7" height="15.0" fill="rgb(241,183,7)" rx="2" ry="2" /> +<text x="425.17" y="1871.5" >Nsfisis\Waddiwasi\Execution\Ru..</text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (3 samples, 0.08%)</title><rect x="404.7" y="1477" width="0.9" height="15.0" fill="rgb(224,151,31)" rx="2" ry="2" /> +<text x="407.66" y="1487.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (2 samples, 0.06%)</title><rect x="648.9" y="2117" width="0.7" height="15.0" fill="rgb(209,205,42)" rx="2" ry="2" /> +<text x="651.92" y="2127.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (5 samples, 0.14%)</title><rect x="366.3" y="1893" width="1.7" height="15.0" fill="rgb(222,93,15)" rx="2" ry="2" /> +<text x="369.31" y="1903.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.03%)</title><rect x="701.5" y="2293" width="0.3" height="15.0" fill="rgb(208,12,8)" rx="2" ry="2" /> +<text x="704.47" y="2303.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (172 samples, 4.82%)</title><rect x="896.2" y="2789" width="56.8" height="15.0" fill="rgb(238,78,4)" rx="2" ry="2" /> +<text x="899.16" y="2799.5" >Nsfisi..</text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.03%)</title><rect x="262.2" y="1973" width="0.3" height="15.0" fill="rgb(239,60,23)" rx="2" ry="2" /> +<text x="265.20" y="1983.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="901.4" y="2565" width="0.4" height="15.0" fill="rgb(254,211,5)" rx="2" ry="2" /> +<text x="904.45" y="2575.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (10 samples, 0.28%)</title><rect x="246.0" y="3285" width="3.3" height="15.0" fill="rgb(241,75,26)" rx="2" ry="2" /> +<text x="249.00" y="3295.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (2 samples, 0.06%)</title><rect x="313.8" y="2133" width="0.6" height="15.0" fill="rgb(206,41,19)" rx="2" ry="2" /> +<text x="316.76" y="2143.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (3 samples, 0.08%)</title><rect x="698.8" y="2485" width="1.0" height="15.0" fill="rgb(244,206,9)" rx="2" ry="2" /> +<text x="701.83" y="2495.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (2 samples, 0.06%)</title><rect x="837.0" y="2133" width="0.7" height="15.0" fill="rgb(233,185,12)" rx="2" ry="2" /> +<text x="839.99" y="2143.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (9 samples, 0.25%)</title><rect x="672.1" y="2629" width="2.9" height="15.0" fill="rgb(212,117,20)" rx="2" ry="2" /> +<text x="675.06" y="2639.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (13 samples, 0.36%)</title><rect x="825.1" y="2165" width="4.3" height="15.0" fill="rgb(251,56,26)" rx="2" ry="2" /> +<text x="828.09" y="2175.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (8 samples, 0.22%)</title><rect x="700.2" y="2517" width="2.6" height="15.0" fill="rgb(217,79,17)" rx="2" ry="2" /> +<text x="703.15" y="2527.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (306 samples, 8.57%)</title><rect x="852.5" y="2949" width="101.2" height="15.0" fill="rgb(216,81,41)" rx="2" ry="2" /> +<text x="855.53" y="2959.5" >Nsfisis\Wadd..</text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.03%)</title><rect x="314.1" y="1397" width="0.3" height="15.0" fill="rgb(234,97,24)" rx="2" ry="2" /> +<text x="317.09" y="1407.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="855.8" y="2469" width="0.4" height="15.0" fill="rgb(208,186,48)" rx="2" ry="2" /> +<text x="858.83" y="2479.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.03%)</title><rect x="420.2" y="2229" width="0.3" height="15.0" fill="rgb(250,52,34)" rx="2" ry="2" /> +<text x="423.19" y="2239.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="319.0" y="1861" width="0.4" height="15.0" fill="rgb(209,180,35)" rx="2" ry="2" /> +<text x="322.05" y="1871.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (4 samples, 0.11%)</title><rect x="368.6" y="2005" width="1.3" height="15.0" fill="rgb(216,81,20)" rx="2" ry="2" /> +<text x="371.63" y="2015.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (246 samples, 6.89%)</title><rect x="703.1" y="2821" width="81.3" height="15.0" fill="rgb(208,65,24)" rx="2" ry="2" /> +<text x="706.13" y="2831.5" >Nsfisis\W..</text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="790.1" y="2149" width="0.3" height="15.0" fill="rgb(252,207,12)" rx="2" ry="2" /> +<text x="793.06" y="2159.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (2 samples, 0.06%)</title><rect x="670.7" y="2565" width="0.7" height="15.0" fill="rgb(211,151,30)" rx="2" ry="2" /> +<text x="673.73" y="2575.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (5 samples, 0.14%)</title><rect x="846.6" y="3093" width="1.6" height="15.0" fill="rgb(229,126,1)" rx="2" ry="2" /> +<text x="849.58" y="3103.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="365.7" y="1893" width="0.3" height="15.0" fill="rgb(216,25,53)" rx="2" ry="2" /> +<text x="368.65" y="1903.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (1 samples, 0.03%)</title><rect x="665.8" y="2357" width="0.3" height="15.0" fill="rgb(251,103,22)" rx="2" ry="2" /> +<text x="668.78" y="2367.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (2 samples, 0.06%)</title><rect x="359.7" y="1893" width="0.7" height="15.0" fill="rgb(211,202,2)" rx="2" ry="2" /> +<text x="362.70" y="1903.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.03%)</title><rect x="1107.4" y="3285" width="0.3" height="15.0" fill="rgb(205,196,23)" rx="2" ry="2" /> +<text x="1110.37" y="3295.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (2 samples, 0.06%)</title><rect x="842.3" y="2773" width="0.6" height="15.0" fill="rgb(228,39,25)" rx="2" ry="2" /> +<text x="845.28" y="2783.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (8 samples, 0.22%)</title><rect x="948.4" y="2533" width="2.6" height="15.0" fill="rgb(246,208,1)" rx="2" ry="2" /> +<text x="951.38" y="2543.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (13 samples, 0.36%)</title><rect x="874.3" y="2437" width="4.3" height="15.0" fill="rgb(219,31,14)" rx="2" ry="2" /> +<text x="877.34" y="2447.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="946.4" y="2405" width="0.3" height="15.0" fill="rgb(236,148,43)" rx="2" ry="2" /> +<text x="949.40" y="2415.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (53 samples, 1.48%)</title><rect x="372.9" y="1957" width="17.5" height="15.0" fill="rgb(244,114,37)" rx="2" ry="2" /> +<text x="375.92" y="1967.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="783.4" y="2661" width="0.4" height="15.0" fill="rgb(226,157,42)" rx="2" ry="2" /> +<text x="786.45" y="2671.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="363.7" y="1541" width="0.3" height="15.0" fill="rgb(237,76,40)" rx="2" ry="2" /> +<text x="366.67" y="1551.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (21 samples, 0.59%)</title><rect x="400.0" y="2085" width="7.0" height="15.0" fill="rgb(220,80,45)" rx="2" ry="2" /> +<text x="403.03" y="2095.5" ></text> +</g> +<g > +<title><unknown> (1 samples, 0.03%)</title><rect x="870.4" y="1269" width="0.3" height="15.0" fill="rgb(239,187,22)" rx="2" ry="2" /> +<text x="873.38" y="1279.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="421.5" y="1829" width="0.3" height="15.0" fill="rgb(210,93,14)" rx="2" ry="2" /> +<text x="424.51" y="1839.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (3 samples, 0.08%)</title><rect x="305.8" y="1941" width="1.0" height="15.0" fill="rgb(243,130,9)" rx="2" ry="2" /> +<text x="308.83" y="1951.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.03%)</title><rect x="316.4" y="885" width="0.3" height="15.0" fill="rgb(240,7,18)" rx="2" ry="2" /> +<text x="319.40" y="895.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.03%)</title><rect x="851.2" y="2357" width="0.3" height="15.0" fill="rgb(212,190,43)" rx="2" ry="2" /> +<text x="854.20" y="2367.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="400.4" y="1605" width="0.3" height="15.0" fill="rgb(243,77,39)" rx="2" ry="2" /> +<text x="403.36" y="1615.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (44 samples, 1.23%)</title><rect x="351.4" y="2069" width="14.6" height="15.0" fill="rgb(215,171,36)" rx="2" ry="2" /> +<text x="354.44" y="2079.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.03%)</title><rect x="315.4" y="1717" width="0.3" height="15.0" fill="rgb(253,50,52)" rx="2" ry="2" /> +<text x="318.41" y="1727.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (12 samples, 0.34%)</title><rect x="402.7" y="1861" width="3.9" height="15.0" fill="rgb(210,98,2)" rx="2" ry="2" /> +<text x="405.67" y="1871.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="316.4" y="1285" width="0.3" height="15.0" fill="rgb(207,195,8)" rx="2" ry="2" /> +<text x="319.40" y="1295.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (3 samples, 0.08%)</title><rect x="952.0" y="2629" width="1.0" height="15.0" fill="rgb(225,163,8)" rx="2" ry="2" /> +<text x="955.02" y="2639.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (5 samples, 0.14%)</title><rect x="366.3" y="1765" width="1.7" height="15.0" fill="rgb(216,88,25)" rx="2" ry="2" /> +<text x="369.31" y="1775.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (2 samples, 0.06%)</title><rect x="1107.7" y="3333" width="0.7" height="15.0" fill="rgb(229,84,35)" rx="2" ry="2" /> +<text x="1110.70" y="3343.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (12 samples, 0.34%)</title><rect x="692.5" y="2565" width="4.0" height="15.0" fill="rgb(209,147,13)" rx="2" ry="2" /> +<text x="695.55" y="2575.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (127 samples, 3.56%)</title><rect x="853.2" y="2837" width="42.0" height="15.0" fill="rgb(207,192,15)" rx="2" ry="2" /> +<text x="856.19" y="2847.5" >Nsf..</text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (3 samples, 0.08%)</title><rect x="407.0" y="2213" width="1.0" height="15.0" fill="rgb(248,74,13)" rx="2" ry="2" /> +<text x="409.97" y="2223.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (2 samples, 0.06%)</title><rect x="672.4" y="2389" width="0.6" height="15.0" fill="rgb(245,63,43)" rx="2" ry="2" /> +<text x="675.39" y="2399.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (40 samples, 1.12%)</title><rect x="352.8" y="1989" width="13.2" height="15.0" fill="rgb(205,197,6)" rx="2" ry="2" /> +<text x="355.76" y="1999.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (2 samples, 0.06%)</title><rect x="1104.1" y="2741" width="0.6" height="15.0" fill="rgb(254,89,21)" rx="2" ry="2" /> +<text x="1107.06" y="2751.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="246.0" y="2917" width="0.3" height="15.0" fill="rgb(251,106,17)" rx="2" ry="2" /> +<text x="249.00" y="2927.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (19 samples, 0.53%)</title><rect x="1131.2" y="3333" width="6.2" height="15.0" fill="rgb(252,61,41)" rx="2" ry="2" /> +<text x="1134.17" y="3343.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (5 samples, 0.14%)</title><rect x="249.6" y="2821" width="1.7" height="15.0" fill="rgb(215,102,10)" rx="2" ry="2" /> +<text x="252.64" y="2831.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (4 samples, 0.11%)</title><rect x="311.4" y="1637" width="1.4" height="15.0" fill="rgb(227,160,50)" rx="2" ry="2" /> +<text x="314.45" y="1647.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (2 samples, 0.06%)</title><rect x="263.2" y="1797" width="0.6" height="15.0" fill="rgb(222,27,4)" rx="2" ry="2" /> +<text x="266.19" y="1807.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="271.8" y="2053" width="0.3" height="15.0" fill="rgb(220,22,19)" rx="2" ry="2" /> +<text x="274.78" y="2063.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="298.9" y="1669" width="0.3" height="15.0" fill="rgb(237,124,29)" rx="2" ry="2" /> +<text x="301.89" y="1679.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.03%)</title><rect x="1154.6" y="3445" width="0.4" height="15.0" fill="rgb(254,195,37)" rx="2" ry="2" /> +<text x="1157.63" y="3455.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="954.0" y="2405" width="0.3" height="15.0" fill="rgb(240,146,27)" rx="2" ry="2" /> +<text x="957.00" y="2415.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="955.3" y="2533" width="0.4" height="15.0" fill="rgb(241,207,39)" rx="2" ry="2" /> +<text x="958.32" y="2543.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (1 samples, 0.03%)</title><rect x="324.0" y="2213" width="0.3" height="15.0" fill="rgb(215,148,0)" rx="2" ry="2" /> +<text x="327.01" y="2223.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (1 samples, 0.03%)</title><rect x="280.0" y="1941" width="0.4" height="15.0" fill="rgb(248,105,9)" rx="2" ry="2" /> +<text x="283.04" y="1951.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (1 samples, 0.03%)</title><rect x="312.8" y="2053" width="0.3" height="15.0" fill="rgb(207,13,2)" rx="2" ry="2" /> +<text x="315.77" y="2063.5" ></text> +</g> +<g > +<title><unknown> (614 samples, 17.20%)</title><rect x="956.0" y="3541" width="202.9" height="15.0" fill="rgb(227,12,30)" rx="2" ry="2" /> +<text x="958.98" y="3551.5" ><unknown></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Stack::pushBool (1 samples, 0.03%)</title><rect x="1137.4" y="3381" width="0.4" height="15.0" fill="rgb(224,217,21)" rx="2" ry="2" /> +<text x="1140.45" y="3391.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (230 samples, 6.44%)</title><rect x="707.4" y="2597" width="76.0" height="15.0" fill="rgb(213,14,53)" rx="2" ry="2" /> +<text x="710.42" y="2607.5" >Nsfisis\..</text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (2 samples, 0.06%)</title><rect x="316.1" y="1637" width="0.6" height="15.0" fill="rgb(253,17,15)" rx="2" ry="2" /> +<text x="319.07" y="1647.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (230 samples, 6.44%)</title><rect x="707.4" y="2757" width="76.0" height="15.0" fill="rgb(233,10,41)" rx="2" ry="2" /> +<text x="710.42" y="2767.5" >Nsfisis\..</text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\MemInst::storeByte (1 samples, 0.03%)</title><rect x="1158.9" y="3541" width="0.4" height="15.0" fill="rgb(245,49,25)" rx="2" ry="2" /> +<text x="1161.93" y="3551.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (16 samples, 0.45%)</title><rect x="343.8" y="2069" width="5.3" height="15.0" fill="rgb(241,52,54)" rx="2" ry="2" /> +<text x="346.84" y="2079.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (3 samples, 0.08%)</title><rect x="307.1" y="1829" width="1.0" height="15.0" fill="rgb(228,36,54)" rx="2" ry="2" /> +<text x="310.15" y="1839.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="400.4" y="1669" width="0.3" height="15.0" fill="rgb(207,138,28)" rx="2" ry="2" /> +<text x="403.36" y="1679.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (5 samples, 0.14%)</title><rect x="366.3" y="1861" width="1.7" height="15.0" fill="rgb(249,8,53)" rx="2" ry="2" /> +<text x="369.31" y="1871.5" ></text> +</g> +<g > +<title><unknown> (4 samples, 0.11%)</title><rect x="173.9" y="3429" width="1.4" height="15.0" fill="rgb(212,195,54)" rx="2" ry="2" /> +<text x="176.94" y="3439.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (5 samples, 0.14%)</title><rect x="833.0" y="2277" width="1.7" height="15.0" fill="rgb(206,137,45)" rx="2" ry="2" /> +<text x="836.03" y="2287.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (3 samples, 0.08%)</title><rect x="347.8" y="1973" width="1.0" height="15.0" fill="rgb(233,159,50)" rx="2" ry="2" /> +<text x="350.80" y="1983.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (2 samples, 0.06%)</title><rect x="697.2" y="2341" width="0.6" height="15.0" fill="rgb(210,196,22)" rx="2" ry="2" /> +<text x="700.18" y="2351.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.03%)</title><rect x="855.8" y="2453" width="0.4" height="15.0" fill="rgb(211,112,23)" rx="2" ry="2" /> +<text x="858.83" y="2463.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (1 samples, 0.03%)</title><rect x="411.6" y="1845" width="0.3" height="15.0" fill="rgb(210,212,13)" rx="2" ry="2" /> +<text x="414.60" y="1855.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="314.1" y="1893" width="0.3" height="15.0" fill="rgb(242,226,22)" rx="2" ry="2" /> +<text x="317.09" y="1903.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (3 samples, 0.08%)</title><rect x="313.4" y="2197" width="1.0" height="15.0" fill="rgb(225,77,45)" rx="2" ry="2" /> +<text x="316.43" y="2207.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (174 samples, 4.87%)</title><rect x="784.4" y="2677" width="57.5" height="15.0" fill="rgb(234,119,20)" rx="2" ry="2" /> +<text x="787.44" y="2687.5" >Nsfisi..</text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.03%)</title><rect x="666.1" y="2453" width="0.3" height="15.0" fill="rgb(243,138,39)" rx="2" ry="2" /> +<text x="669.11" y="2463.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (14 samples, 0.39%)</title><rect x="354.1" y="1909" width="4.6" height="15.0" fill="rgb(214,68,22)" rx="2" ry="2" /> +<text x="357.08" y="1919.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.03%)</title><rect x="360.0" y="1845" width="0.4" height="15.0" fill="rgb(239,8,7)" rx="2" ry="2" /> +<text x="363.03" y="1855.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (328 samples, 9.19%)</title><rect x="676.0" y="2965" width="108.4" height="15.0" fill="rgb(227,3,12)" rx="2" ry="2" /> +<text x="679.02" y="2975.5" >Nsfisis\Waddi..</text> +</g> +<g > +<title><unknown> (1 samples, 0.03%)</title><rect x="676.7" y="2773" width="0.3" height="15.0" fill="rgb(243,159,9)" rx="2" ry="2" /> +<text x="679.68" y="2783.5" ></text> +</g> +<g > +<title>print_r (2 samples, 0.06%)</title><rect x="226.2" y="3413" width="0.6" height="15.0" fill="rgb(244,16,30)" rx="2" ry="2" /> +<text x="229.17" y="3423.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.03%)</title><rect x="251.0" y="2613" width="0.3" height="15.0" fill="rgb(252,54,2)" rx="2" ry="2" /> +<text x="253.96" y="2623.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (42 samples, 1.18%)</title><rect x="376.2" y="1941" width="13.9" height="15.0" fill="rgb(234,180,41)" rx="2" ry="2" /> +<text x="379.23" y="1951.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (1 samples, 0.03%)</title><rect x="266.8" y="1589" width="0.4" height="15.0" fill="rgb(218,96,23)" rx="2" ry="2" /> +<text x="269.82" y="1599.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (4 samples, 0.11%)</title><rect x="696.8" y="2549" width="1.4" height="15.0" fill="rgb(236,117,21)" rx="2" ry="2" /> +<text x="699.85" y="2559.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.03%)</title><rect x="411.6" y="1909" width="0.3" height="15.0" fill="rgb(239,114,33)" rx="2" ry="2" /> +<text x="414.60" y="1919.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (2 samples, 0.06%)</title><rect x="280.4" y="1925" width="0.6" height="15.0" fill="rgb(205,165,18)" rx="2" ry="2" /> +<text x="283.38" y="1935.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (8 samples, 0.22%)</title><rect x="1102.4" y="3189" width="2.7" height="15.0" fill="rgb(217,106,42)" rx="2" ry="2" /> +<text x="1105.41" y="3199.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (2 samples, 0.06%)</title><rect x="1104.1" y="2773" width="0.6" height="15.0" fill="rgb(221,229,38)" rx="2" ry="2" /> +<text x="1107.06" y="2783.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (42 samples, 1.18%)</title><rect x="678.7" y="2565" width="13.8" height="15.0" fill="rgb(244,226,7)" rx="2" ry="2" /> +<text x="681.67" y="2575.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="328.3" y="1989" width="0.3" height="15.0" fill="rgb(216,140,50)" rx="2" ry="2" /> +<text x="331.30" y="1999.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (686 samples, 19.22%)</title><rect x="422.2" y="1653" width="226.7" height="15.0" fill="rgb(216,90,50)" rx="2" ry="2" /> +<text x="425.17" y="1663.5" >Nsfisis\Waddiwasi\Execution\Ru..</text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::deactivateLabel (1 samples, 0.03%)</title><rect x="792.0" y="2309" width="0.4" height="15.0" fill="rgb(234,197,10)" rx="2" ry="2" /> +<text x="795.04" y="2319.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.03%)</title><rect x="268.5" y="1973" width="0.3" height="15.0" fill="rgb(220,31,8)" rx="2" ry="2" /> +<text x="271.48" y="1983.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.03%)</title><rect x="851.2" y="2325" width="0.3" height="15.0" fill="rgb(219,137,9)" rx="2" ry="2" /> +<text x="854.20" y="2335.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (9 samples, 0.25%)</title><rect x="413.9" y="1925" width="3.0" height="15.0" fill="rgb(253,184,5)" rx="2" ry="2" /> +<text x="416.91" y="1935.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (4 samples, 0.11%)</title><rect x="400.0" y="1989" width="1.4" height="15.0" fill="rgb(226,91,14)" rx="2" ry="2" /> +<text x="403.03" y="1999.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (3 samples, 0.08%)</title><rect x="873.0" y="2133" width="1.0" height="15.0" fill="rgb(229,103,6)" rx="2" ry="2" /> +<text x="876.02" y="2143.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (686 samples, 19.22%)</title><rect x="422.2" y="1845" width="226.7" height="15.0" fill="rgb(241,142,24)" rx="2" ry="2" /> +<text x="425.17" y="1855.5" >Nsfisis\Waddiwasi\Execution\Ru..</text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (305 samples, 8.54%)</title><rect x="852.9" y="2901" width="100.8" height="15.0" fill="rgb(219,170,38)" rx="2" ry="2" /> +<text x="855.86" y="2911.5" >Nsfisis\Wadd..</text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (2 samples, 0.06%)</title><rect x="954.7" y="1573" width="0.6" height="15.0" fill="rgb(247,141,27)" rx="2" ry="2" /> +<text x="957.66" y="1583.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="707.1" y="2757" width="0.3" height="15.0" fill="rgb(223,185,37)" rx="2" ry="2" /> +<text x="710.09" y="2767.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (1 samples, 0.03%)</title><rect x="848.2" y="2933" width="0.4" height="15.0" fill="rgb(240,62,53)" rx="2" ry="2" /> +<text x="851.23" y="2943.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (3 samples, 0.08%)</title><rect x="1136.1" y="3157" width="1.0" height="15.0" fill="rgb(244,42,45)" rx="2" ry="2" /> +<text x="1139.12" y="3167.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (3 samples, 0.08%)</title><rect x="316.1" y="1717" width="1.0" height="15.0" fill="rgb(249,81,3)" rx="2" ry="2" /> +<text x="319.07" y="1727.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="847.2" y="2501" width="0.4" height="15.0" fill="rgb(229,199,28)" rx="2" ry="2" /> +<text x="850.24" y="2511.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (6 samples, 0.17%)</title><rect x="846.6" y="3285" width="2.0" height="15.0" fill="rgb(207,90,15)" rx="2" ry="2" /> +<text x="849.58" y="3295.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\StackEntry::Value (1 samples, 0.03%)</title><rect x="266.5" y="1733" width="0.3" height="15.0" fill="rgb(222,204,1)" rx="2" ry="2" /> +<text x="269.49" y="1743.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (19 samples, 0.53%)</title><rect x="410.9" y="2293" width="6.3" height="15.0" fill="rgb(242,197,54)" rx="2" ry="2" /> +<text x="413.94" y="2303.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (230 samples, 6.44%)</title><rect x="707.4" y="2773" width="76.0" height="15.0" fill="rgb(241,117,29)" rx="2" ry="2" /> +<text x="710.42" y="2783.5" >Nsfisis\..</text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="652.2" y="2405" width="0.4" height="15.0" fill="rgb(205,50,34)" rx="2" ry="2" /> +<text x="655.22" y="2415.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (2 samples, 0.06%)</title><rect x="364.7" y="1877" width="0.6" height="15.0" fill="rgb(218,74,54)" rx="2" ry="2" /> +<text x="367.66" y="1887.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.03%)</title><rect x="358.4" y="1781" width="0.3" height="15.0" fill="rgb(216,216,0)" rx="2" ry="2" /> +<text x="361.38" y="1791.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (2 samples, 0.06%)</title><rect x="302.2" y="1589" width="0.7" height="15.0" fill="rgb(219,13,13)" rx="2" ry="2" /> +<text x="305.19" y="1599.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.03%)</title><rect x="664.5" y="2037" width="0.3" height="15.0" fill="rgb(237,21,53)" rx="2" ry="2" /> +<text x="667.45" y="2047.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (6 samples, 0.17%)</title><rect x="879.3" y="2709" width="2.0" height="15.0" fill="rgb(254,56,32)" rx="2" ry="2" /> +<text x="882.30" y="2719.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Stack::currentFrame (1 samples, 0.03%)</title><rect x="406.0" y="1845" width="0.3" height="15.0" fill="rgb(246,221,1)" rx="2" ry="2" /> +<text x="408.98" y="1855.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (1,263 samples, 35.38%)</title><rect x="249.6" y="2965" width="417.5" height="15.0" fill="rgb(226,48,28)" rx="2" ry="2" /> +<text x="252.64" y="2975.5" >Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc</text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\StackEntries\Value::__construct (1 samples, 0.03%)</title><rect x="172.6" y="3413" width="0.4" height="15.0" fill="rgb(205,44,30)" rx="2" ry="2" /> +<text x="175.62" y="3423.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (117 samples, 3.28%)</title><rect x="274.4" y="2197" width="38.7" height="15.0" fill="rgb(240,86,33)" rx="2" ry="2" /> +<text x="277.43" y="2207.5" >Nsf..</text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (2 samples, 0.06%)</title><rect x="954.7" y="2213" width="0.6" height="15.0" fill="rgb(210,197,8)" rx="2" ry="2" /> +<text x="957.66" y="2223.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (28 samples, 0.78%)</title><rect x="1128.5" y="3397" width="9.3" height="15.0" fill="rgb(214,7,38)" rx="2" ry="2" /> +<text x="1131.52" y="3407.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (4 samples, 0.11%)</title><rect x="954.7" y="2965" width="1.3" height="15.0" fill="rgb(205,82,21)" rx="2" ry="2" /> +<text x="957.66" y="2975.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="269.5" y="2021" width="0.3" height="15.0" fill="rgb(229,216,37)" rx="2" ry="2" /> +<text x="272.47" y="2031.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (683 samples, 19.13%)</title><rect x="422.8" y="997" width="225.8" height="15.0" fill="rgb(208,6,44)" rx="2" ry="2" /> +<text x="425.83" y="1007.5" >Nsfisis\Waddiwasi\Execution\R..</text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::deactivateLabel (1 samples, 0.03%)</title><rect x="821.8" y="2197" width="0.3" height="15.0" fill="rgb(244,189,14)" rx="2" ry="2" /> +<text x="824.79" y="2207.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (26 samples, 0.73%)</title><rect x="294.9" y="1909" width="8.6" height="15.0" fill="rgb(206,174,53)" rx="2" ry="2" /> +<text x="297.92" y="1919.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (112 samples, 3.14%)</title><rect x="904.8" y="2629" width="37.0" height="15.0" fill="rgb(245,1,20)" rx="2" ry="2" /> +<text x="907.75" y="2639.5" >Nsf..</text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (3 samples, 0.08%)</title><rect x="301.9" y="1733" width="1.0" height="15.0" fill="rgb(209,2,38)" rx="2" ry="2" /> +<text x="304.86" y="1743.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (686 samples, 19.22%)</title><rect x="422.2" y="2085" width="226.7" height="15.0" fill="rgb(232,37,5)" rx="2" ry="2" /> +<text x="425.17" y="2095.5" >Nsfisis\Waddiwasi\Execution\Ru..</text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="1177.4" y="3477" width="0.4" height="15.0" fill="rgb(210,109,46)" rx="2" ry="2" /> +<text x="1180.44" y="3487.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.03%)</title><rect x="849.2" y="2837" width="0.4" height="15.0" fill="rgb(205,197,36)" rx="2" ry="2" /> +<text x="852.22" y="2847.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (2 samples, 0.06%)</title><rect x="661.8" y="2069" width="0.7" height="15.0" fill="rgb(231,64,42)" rx="2" ry="2" /> +<text x="664.81" y="2079.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (3 samples, 0.08%)</title><rect x="404.7" y="1605" width="0.9" height="15.0" fill="rgb(219,158,54)" rx="2" ry="2" /> +<text x="407.66" y="1615.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.03%)</title><rect x="391.4" y="1813" width="0.4" height="15.0" fill="rgb(225,52,6)" rx="2" ry="2" /> +<text x="394.43" y="1823.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="1150.7" y="3429" width="0.3" height="15.0" fill="rgb(253,28,33)" rx="2" ry="2" /> +<text x="1153.67" y="3439.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (5 samples, 0.14%)</title><rect x="900.1" y="2645" width="1.7" height="15.0" fill="rgb(243,204,39)" rx="2" ry="2" /> +<text x="903.12" y="2655.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (3 samples, 0.08%)</title><rect x="248.0" y="2965" width="1.0" height="15.0" fill="rgb(216,208,48)" rx="2" ry="2" /> +<text x="250.98" y="2975.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (685 samples, 19.19%)</title><rect x="422.2" y="1317" width="226.4" height="15.0" fill="rgb(235,77,49)" rx="2" ry="2" /> +<text x="425.17" y="1327.5" >Nsfisis\Waddiwasi\Execution\R..</text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="847.6" y="2661" width="0.3" height="15.0" fill="rgb(228,135,9)" rx="2" ry="2" /> +<text x="850.57" y="2671.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::invoke (2,148 samples, 60.17%)</title><rect x="246.0" y="3525" width="710.0" height="15.0" fill="rgb(244,76,39)" rx="2" ry="2" /> +<text x="249.00" y="3535.5" >Nsfisis\Waddiwasi\Execution\Runtime::invoke</text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\StackEntry::Value (1 samples, 0.03%)</title><rect x="227.2" y="3445" width="0.3" height="15.0" fill="rgb(250,79,7)" rx="2" ry="2" /> +<text x="230.16" y="3455.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.03%)</title><rect x="1108.0" y="3253" width="0.4" height="15.0" fill="rgb(233,176,33)" rx="2" ry="2" /> +<text x="1111.03" y="3263.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="421.5" y="1893" width="0.3" height="15.0" fill="rgb(206,227,31)" rx="2" ry="2" /> +<text x="424.51" y="1903.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (68 samples, 1.90%)</title><rect x="368.3" y="2037" width="22.5" height="15.0" fill="rgb(218,92,18)" rx="2" ry="2" /> +<text x="371.30" y="2047.5" >N..</text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (2 samples, 0.06%)</title><rect x="318.7" y="2101" width="0.7" height="15.0" fill="rgb(219,90,9)" rx="2" ry="2" /> +<text x="321.72" y="2111.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="262.2" y="1861" width="0.3" height="15.0" fill="rgb(243,143,53)" rx="2" ry="2" /> +<text x="265.20" y="1871.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (1 samples, 0.03%)</title><rect x="391.4" y="1829" width="0.4" height="15.0" fill="rgb(253,92,19)" rx="2" ry="2" /> +<text x="394.43" y="1839.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (3 samples, 0.08%)</title><rect x="701.8" y="2341" width="1.0" height="15.0" fill="rgb(249,33,44)" rx="2" ry="2" /> +<text x="704.80" y="2351.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (2 samples, 0.06%)</title><rect x="954.7" y="2837" width="0.6" height="15.0" fill="rgb(233,137,49)" rx="2" ry="2" /> +<text x="957.66" y="2847.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (4 samples, 0.11%)</title><rect x="954.7" y="3253" width="1.3" height="15.0" fill="rgb(241,112,50)" rx="2" ry="2" /> +<text x="957.66" y="3263.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (230 samples, 6.44%)</title><rect x="707.4" y="2357" width="76.0" height="15.0" fill="rgb(218,206,26)" rx="2" ry="2" /> +<text x="710.42" y="2367.5" >Nsfisis\..</text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.03%)</title><rect x="667.1" y="2773" width="0.3" height="15.0" fill="rgb(221,41,23)" rx="2" ry="2" /> +<text x="670.10" y="2783.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (13 samples, 0.36%)</title><rect x="332.6" y="1813" width="4.3" height="15.0" fill="rgb(232,49,30)" rx="2" ry="2" /> +<text x="335.60" y="1823.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (8 samples, 0.22%)</title><rect x="672.4" y="2613" width="2.6" height="15.0" fill="rgb(233,29,49)" rx="2" ry="2" /> +<text x="675.39" y="2623.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (208 samples, 5.83%)</title><rect x="323.3" y="2261" width="68.8" height="15.0" fill="rgb(245,79,51)" rx="2" ry="2" /> +<text x="326.34" y="2271.5" >Nsfisis..</text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.03%)</title><rect x="246.0" y="2933" width="0.3" height="15.0" fill="rgb(235,148,40)" rx="2" ry="2" /> +<text x="249.00" y="2943.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (3 samples, 0.08%)</title><rect x="952.0" y="2725" width="1.0" height="15.0" fill="rgb(208,56,11)" rx="2" ry="2" /> +<text x="955.02" y="2735.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="254.3" y="2181" width="0.3" height="15.0" fill="rgb(236,9,40)" rx="2" ry="2" /> +<text x="257.26" y="2191.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (2 samples, 0.06%)</title><rect x="1104.1" y="2581" width="0.6" height="15.0" fill="rgb(223,36,18)" rx="2" ry="2" /> +<text x="1107.06" y="2591.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (4 samples, 0.11%)</title><rect x="268.1" y="2117" width="1.4" height="15.0" fill="rgb(241,169,39)" rx="2" ry="2" /> +<text x="271.15" y="2127.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (1 samples, 0.03%)</title><rect x="391.4" y="2021" width="0.4" height="15.0" fill="rgb(247,72,46)" rx="2" ry="2" /> +<text x="394.43" y="2031.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (14 samples, 0.39%)</title><rect x="308.1" y="1877" width="4.7" height="15.0" fill="rgb(251,228,7)" rx="2" ry="2" /> +<text x="311.14" y="1887.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="667.1" y="2885" width="0.3" height="15.0" fill="rgb(231,177,12)" rx="2" ry="2" /> +<text x="670.10" y="2895.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (18 samples, 0.50%)</title><rect x="411.3" y="2117" width="5.9" height="15.0" fill="rgb(242,131,39)" rx="2" ry="2" /> +<text x="414.27" y="2127.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (2 samples, 0.06%)</title><rect x="354.4" y="1797" width="0.7" height="15.0" fill="rgb(234,92,32)" rx="2" ry="2" /> +<text x="357.41" y="1807.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (3 samples, 0.08%)</title><rect x="841.9" y="2805" width="1.0" height="15.0" fill="rgb(239,5,51)" rx="2" ry="2" /> +<text x="844.95" y="2815.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Stack::pushValue (1 samples, 0.03%)</title><rect x="303.2" y="1877" width="0.3" height="15.0" fill="rgb(244,83,51)" rx="2" ry="2" /> +<text x="306.18" y="1887.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (14 samples, 0.39%)</title><rect x="395.4" y="2261" width="4.6" height="15.0" fill="rgb(217,142,37)" rx="2" ry="2" /> +<text x="398.40" y="2271.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (1 samples, 0.03%)</title><rect x="838.6" y="2181" width="0.4" height="15.0" fill="rgb(243,5,28)" rx="2" ry="2" /> +<text x="841.64" y="2191.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (2 samples, 0.06%)</title><rect x="842.9" y="2453" width="0.7" height="15.0" fill="rgb(253,23,8)" rx="2" ry="2" /> +<text x="845.94" y="2463.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.03%)</title><rect x="799.0" y="2261" width="0.3" height="15.0" fill="rgb(236,29,35)" rx="2" ry="2" /> +<text x="801.98" y="2271.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (16 samples, 0.45%)</title><rect x="314.4" y="2181" width="5.3" height="15.0" fill="rgb(233,137,33)" rx="2" ry="2" /> +<text x="317.42" y="2191.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (5 samples, 0.14%)</title><rect x="257.2" y="2117" width="1.7" height="15.0" fill="rgb(221,213,45)" rx="2" ry="2" /> +<text x="260.24" y="2127.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (2 samples, 0.06%)</title><rect x="302.2" y="1525" width="0.7" height="15.0" fill="rgb(213,50,22)" rx="2" ry="2" /> +<text x="305.19" y="1535.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (4 samples, 0.11%)</title><rect x="311.4" y="1621" width="1.4" height="15.0" fill="rgb(235,25,4)" rx="2" ry="2" /> +<text x="314.45" y="1631.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (2 samples, 0.06%)</title><rect x="670.7" y="2693" width="0.7" height="15.0" fill="rgb(234,86,29)" rx="2" ry="2" /> +<text x="673.73" y="2703.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\StackEntry::Label (1 samples, 0.03%)</title><rect x="894.5" y="2773" width="0.3" height="15.0" fill="rgb(239,19,5)" rx="2" ry="2" /> +<text x="897.50" y="2783.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (2 samples, 0.06%)</title><rect x="670.7" y="2597" width="0.7" height="15.0" fill="rgb(251,117,27)" rx="2" ry="2" /> +<text x="673.73" y="2607.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="667.1" y="2789" width="0.3" height="15.0" fill="rgb(238,227,35)" rx="2" ry="2" /> +<text x="670.10" y="2799.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (2 samples, 0.06%)</title><rect x="954.7" y="597" width="0.6" height="15.0" fill="rgb(244,160,2)" rx="2" ry="2" /> +<text x="957.66" y="607.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Stack::popI32 (1 samples, 0.03%)</title><rect x="365.3" y="1941" width="0.4" height="15.0" fill="rgb(243,10,27)" rx="2" ry="2" /> +<text x="368.32" y="1951.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.03%)</title><rect x="319.0" y="1845" width="0.4" height="15.0" fill="rgb(247,102,44)" rx="2" ry="2" /> +<text x="322.05" y="1855.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="314.1" y="1445" width="0.3" height="15.0" fill="rgb(233,60,8)" rx="2" ry="2" /> +<text x="317.09" y="1455.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (3 samples, 0.08%)</title><rect x="316.1" y="1765" width="1.0" height="15.0" fill="rgb(225,133,49)" rx="2" ry="2" /> +<text x="319.07" y="1775.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.03%)</title><rect x="841.6" y="2485" width="0.3" height="15.0" fill="rgb(240,173,20)" rx="2" ry="2" /> +<text x="844.62" y="2495.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (685 samples, 19.19%)</title><rect x="422.2" y="1605" width="226.4" height="15.0" fill="rgb(218,89,34)" rx="2" ry="2" /> +<text x="425.17" y="1615.5" >Nsfisis\Waddiwasi\Execution\R..</text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.03%)</title><rect x="314.1" y="1973" width="0.3" height="15.0" fill="rgb(227,66,30)" rx="2" ry="2" /> +<text x="317.09" y="1983.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="268.5" y="1957" width="0.3" height="15.0" fill="rgb(236,202,28)" rx="2" ry="2" /> +<text x="271.48" y="1967.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (8 samples, 0.22%)</title><rect x="944.7" y="2565" width="2.7" height="15.0" fill="rgb(210,48,26)" rx="2" ry="2" /> +<text x="947.75" y="2575.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (180 samples, 5.04%)</title><rect x="784.4" y="2965" width="59.5" height="15.0" fill="rgb(227,73,44)" rx="2" ry="2" /> +<text x="787.44" y="2975.5" >Nsfisi..</text> +</g> +<g > +<title><unknown> (1 samples, 0.03%)</title><rect x="870.4" y="853" width="0.3" height="15.0" fill="rgb(247,177,35)" rx="2" ry="2" /> +<text x="873.38" y="863.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (1,253 samples, 35.10%)</title><rect x="252.3" y="2645" width="414.1" height="15.0" fill="rgb(223,14,46)" rx="2" ry="2" /> +<text x="255.28" y="2655.5" >Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc</text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="391.1" y="2021" width="0.3" height="15.0" fill="rgb(238,62,4)" rx="2" ry="2" /> +<text x="394.10" y="2031.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (3 samples, 0.08%)</title><rect x="650.2" y="2229" width="1.0" height="15.0" fill="rgb(246,102,42)" rx="2" ry="2" /> +<text x="653.24" y="2239.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="267.5" y="1925" width="0.3" height="15.0" fill="rgb(216,151,33)" rx="2" ry="2" /> +<text x="270.48" y="1935.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (2 samples, 0.06%)</title><rect x="263.2" y="1973" width="0.6" height="15.0" fill="rgb(240,132,50)" rx="2" ry="2" /> +<text x="266.19" y="1983.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (74 samples, 2.07%)</title><rect x="854.2" y="2757" width="24.4" height="15.0" fill="rgb(210,217,40)" rx="2" ry="2" /> +<text x="857.18" y="2767.5" >N..</text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (6 samples, 0.17%)</title><rect x="849.6" y="2693" width="1.9" height="15.0" fill="rgb(249,28,2)" rx="2" ry="2" /> +<text x="852.55" y="2703.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (2 samples, 0.06%)</title><rect x="663.5" y="2069" width="0.6" height="15.0" fill="rgb(216,133,53)" rx="2" ry="2" /> +<text x="666.46" y="2079.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (1 samples, 0.03%)</title><rect x="298.6" y="1717" width="0.3" height="15.0" fill="rgb(205,112,11)" rx="2" ry="2" /> +<text x="301.55" y="1727.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (686 samples, 19.22%)</title><rect x="422.2" y="1813" width="226.7" height="15.0" fill="rgb(241,24,16)" rx="2" ry="2" /> +<text x="425.17" y="1823.5" >Nsfisis\Waddiwasi\Execution\Ru..</text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="401.0" y="1861" width="0.4" height="15.0" fill="rgb(228,66,24)" rx="2" ry="2" /> +<text x="404.02" y="1871.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.03%)</title><rect x="954.3" y="2485" width="0.4" height="15.0" fill="rgb(228,108,16)" rx="2" ry="2" /> +<text x="957.33" y="2495.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (2 samples, 0.06%)</title><rect x="842.3" y="2597" width="0.6" height="15.0" fill="rgb(240,134,9)" rx="2" ry="2" /> +<text x="845.28" y="2607.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (3 samples, 0.08%)</title><rect x="399.0" y="1989" width="1.0" height="15.0" fill="rgb(234,105,1)" rx="2" ry="2" /> +<text x="402.04" y="1999.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (1 samples, 0.03%)</title><rect x="677.7" y="2661" width="0.3" height="15.0" fill="rgb(247,60,10)" rx="2" ry="2" /> +<text x="680.68" y="2671.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (177 samples, 4.96%)</title><rect x="895.2" y="2853" width="58.5" height="15.0" fill="rgb(238,210,28)" rx="2" ry="2" /> +<text x="898.17" y="2863.5" >Nsfisi..</text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (2 samples, 0.06%)</title><rect x="663.5" y="2085" width="0.6" height="15.0" fill="rgb(208,159,18)" rx="2" ry="2" /> +<text x="666.46" y="2095.5" ></text> +</g> +<g > +<title>print_r (1 samples, 0.03%)</title><rect x="1189.3" y="3525" width="0.4" height="15.0" fill="rgb(240,7,25)" rx="2" ry="2" /> +<text x="1192.34" y="3535.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.03%)</title><rect x="894.8" y="2709" width="0.4" height="15.0" fill="rgb(242,157,45)" rx="2" ry="2" /> +<text x="897.83" y="2719.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.03%)</title><rect x="288.3" y="1941" width="0.3" height="15.0" fill="rgb(230,158,15)" rx="2" ry="2" /> +<text x="291.31" y="1951.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.03%)</title><rect x="312.4" y="1557" width="0.4" height="15.0" fill="rgb(241,55,52)" rx="2" ry="2" /> +<text x="315.44" y="1567.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (2 samples, 0.06%)</title><rect x="251.3" y="2773" width="0.6" height="15.0" fill="rgb(252,199,33)" rx="2" ry="2" /> +<text x="254.29" y="2783.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="299.9" y="1733" width="0.3" height="15.0" fill="rgb(208,152,1)" rx="2" ry="2" /> +<text x="302.88" y="1743.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (1 samples, 0.03%)</title><rect x="274.8" y="2165" width="0.3" height="15.0" fill="rgb(220,64,35)" rx="2" ry="2" /> +<text x="277.76" y="2175.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="406.6" y="1637" width="0.4" height="15.0" fill="rgb(220,153,36)" rx="2" ry="2" /> +<text x="409.64" y="1647.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (40 samples, 1.12%)</title><rect x="1125.2" y="3445" width="13.2" height="15.0" fill="rgb(246,72,51)" rx="2" ry="2" /> +<text x="1128.22" y="3455.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="954.0" y="2533" width="0.3" height="15.0" fill="rgb(248,13,51)" rx="2" ry="2" /> +<text x="957.00" y="2543.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (1 samples, 0.03%)</title><rect x="677.7" y="2677" width="0.3" height="15.0" fill="rgb(247,46,44)" rx="2" ry="2" /> +<text x="680.68" y="2687.5" ></text> +</g> +<g > +<title><unknown> (3 samples, 0.08%)</title><rect x="1181.7" y="3525" width="1.0" height="15.0" fill="rgb(244,72,53)" rx="2" ry="2" /> +<text x="1184.74" y="3535.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (2 samples, 0.06%)</title><rect x="1104.1" y="2981" width="0.6" height="15.0" fill="rgb(229,6,0)" rx="2" ry="2" /> +<text x="1107.06" y="2991.5" ></text> +</g> +<g > +<title><unknown> (1 samples, 0.03%)</title><rect x="870.4" y="1077" width="0.3" height="15.0" fill="rgb(213,177,48)" rx="2" ry="2" /> +<text x="873.38" y="1087.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (2 samples, 0.06%)</title><rect x="954.7" y="437" width="0.6" height="15.0" fill="rgb(217,14,38)" rx="2" ry="2" /> +<text x="957.66" y="447.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.03%)</title><rect x="851.2" y="2261" width="0.3" height="15.0" fill="rgb(212,179,16)" rx="2" ry="2" /> +<text x="854.20" y="2271.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (6 samples, 0.17%)</title><rect x="849.6" y="2949" width="1.9" height="15.0" fill="rgb(228,7,38)" rx="2" ry="2" /> +<text x="852.55" y="2959.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="299.9" y="1573" width="0.3" height="15.0" fill="rgb(229,16,54)" rx="2" ry="2" /> +<text x="302.88" y="1583.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="1104.4" y="1989" width="0.3" height="15.0" fill="rgb(226,73,32)" rx="2" ry="2" /> +<text x="1107.39" y="1999.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="257.2" y="2021" width="0.4" height="15.0" fill="rgb(207,104,24)" rx="2" ry="2" /> +<text x="260.24" y="2031.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (1 samples, 0.03%)</title><rect x="1139.1" y="3445" width="0.3" height="15.0" fill="rgb(210,26,40)" rx="2" ry="2" /> +<text x="1142.10" y="3455.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (38 samples, 1.06%)</title><rect x="258.9" y="2181" width="12.6" height="15.0" fill="rgb(228,129,35)" rx="2" ry="2" /> +<text x="261.89" y="2191.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="316.4" y="1349" width="0.3" height="15.0" fill="rgb(225,75,35)" rx="2" ry="2" /> +<text x="319.40" y="1359.5" ></text> +</g> +<g > +<title><unknown> (1 samples, 0.03%)</title><rect x="672.1" y="2597" width="0.3" height="15.0" fill="rgb(219,155,54)" rx="2" ry="2" /> +<text x="675.06" y="2607.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (2 samples, 0.06%)</title><rect x="1117.0" y="3429" width="0.6" height="15.0" fill="rgb(217,36,36)" rx="2" ry="2" /> +<text x="1119.95" y="3439.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.03%)</title><rect x="666.1" y="2421" width="0.3" height="15.0" fill="rgb(250,71,28)" rx="2" ry="2" /> +<text x="669.11" y="2431.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (5 samples, 0.14%)</title><rect x="796.7" y="2213" width="1.6" height="15.0" fill="rgb(247,109,48)" rx="2" ry="2" /> +<text x="799.67" y="2223.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (6 samples, 0.17%)</title><rect x="846.6" y="3157" width="2.0" height="15.0" fill="rgb(238,60,45)" rx="2" ry="2" /> +<text x="849.58" y="3167.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (4 samples, 0.11%)</title><rect x="415.6" y="1621" width="1.3" height="15.0" fill="rgb(248,149,6)" rx="2" ry="2" /> +<text x="418.56" y="1631.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.03%)</title><rect x="847.6" y="2677" width="0.3" height="15.0" fill="rgb(206,35,7)" rx="2" ry="2" /> +<text x="850.57" y="2687.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.03%)</title><rect x="843.9" y="2677" width="0.4" height="15.0" fill="rgb(225,136,4)" rx="2" ry="2" /> +<text x="846.93" y="2687.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (1 samples, 0.03%)</title><rect x="348.1" y="1813" width="0.4" height="15.0" fill="rgb(209,124,53)" rx="2" ry="2" /> +<text x="351.13" y="1823.5" ></text> +</g> +<g > +<title>assert (2 samples, 0.06%)</title><rect x="190.5" y="3429" width="0.6" height="15.0" fill="rgb(223,176,23)" rx="2" ry="2" /> +<text x="193.47" y="3439.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Stack::push (5 samples, 0.14%)</title><rect x="1166.9" y="3541" width="1.6" height="15.0" fill="rgb(205,167,12)" rx="2" ry="2" /> +<text x="1169.86" y="3551.5" ></text> +</g> +<g > +<title>print_r (2 samples, 0.06%)</title><rect x="190.5" y="3413" width="0.6" height="15.0" fill="rgb(232,197,4)" rx="2" ry="2" /> +<text x="193.47" y="3423.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.03%)</title><rect x="1104.4" y="2421" width="0.3" height="15.0" fill="rgb(253,195,23)" rx="2" ry="2" /> +<text x="1107.39" y="2431.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (4 samples, 0.11%)</title><rect x="954.7" y="3205" width="1.3" height="15.0" fill="rgb(242,182,2)" rx="2" ry="2" /> +<text x="957.66" y="3215.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.03%)</title><rect x="846.6" y="2741" width="0.3" height="15.0" fill="rgb(214,88,7)" rx="2" ry="2" /> +<text x="849.58" y="2751.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (9 samples, 0.25%)</title><rect x="935.2" y="2453" width="2.9" height="15.0" fill="rgb(247,200,25)" rx="2" ry="2" /> +<text x="938.16" y="2463.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="878.3" y="2373" width="0.3" height="15.0" fill="rgb(213,147,2)" rx="2" ry="2" /> +<text x="881.31" y="2383.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (2 samples, 0.06%)</title><rect x="302.2" y="1397" width="0.7" height="15.0" fill="rgb(212,142,32)" rx="2" ry="2" /> +<text x="305.19" y="1407.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (8 samples, 0.22%)</title><rect x="668.1" y="2821" width="2.6" height="15.0" fill="rgb(254,115,5)" rx="2" ry="2" /> +<text x="671.09" y="2831.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.03%)</title><rect x="419.9" y="2229" width="0.3" height="15.0" fill="rgb(218,166,27)" rx="2" ry="2" /> +<text x="422.86" y="2239.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (2 samples, 0.06%)</title><rect x="842.9" y="2501" width="0.7" height="15.0" fill="rgb(222,91,21)" rx="2" ry="2" /> +<text x="845.94" y="2511.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.03%)</title><rect x="270.8" y="2037" width="0.3" height="15.0" fill="rgb(234,135,41)" rx="2" ry="2" /> +<text x="273.79" y="2047.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (13 samples, 0.36%)</title><rect x="402.3" y="1925" width="4.3" height="15.0" fill="rgb(246,207,3)" rx="2" ry="2" /> +<text x="405.34" y="1935.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="314.1" y="1477" width="0.3" height="15.0" fill="rgb(244,1,36)" rx="2" ry="2" /> +<text x="317.09" y="1487.5" ></text> +</g> +<g > +<title><unknown> (1 samples, 0.03%)</title><rect x="870.4" y="1493" width="0.3" height="15.0" fill="rgb(254,157,42)" rx="2" ry="2" /> +<text x="873.38" y="1503.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (2 samples, 0.06%)</title><rect x="670.7" y="2549" width="0.7" height="15.0" fill="rgb(214,67,26)" rx="2" ry="2" /> +<text x="673.73" y="2559.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (42 samples, 1.18%)</title><rect x="678.7" y="2597" width="13.8" height="15.0" fill="rgb(243,105,49)" rx="2" ry="2" /> +<text x="681.67" y="2607.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.03%)</title><rect x="848.2" y="2965" width="0.4" height="15.0" fill="rgb(210,127,39)" rx="2" ry="2" /> +<text x="851.23" y="2975.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Stack::push (1 samples, 0.03%)</title><rect x="772.5" y="2181" width="0.4" height="15.0" fill="rgb(249,88,37)" rx="2" ry="2" /> +<text x="775.54" y="2191.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.03%)</title><rect x="833.0" y="2229" width="0.4" height="15.0" fill="rgb(209,31,45)" rx="2" ry="2" /> +<text x="836.03" y="2239.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (3 samples, 0.08%)</title><rect x="949.7" y="2501" width="1.0" height="15.0" fill="rgb(244,181,33)" rx="2" ry="2" /> +<text x="952.70" y="2511.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Val::Num (1 samples, 0.03%)</title><rect x="197.4" y="3429" width="0.3" height="15.0" fill="rgb(246,154,47)" rx="2" ry="2" /> +<text x="200.41" y="3439.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1,807 samples, 50.62%)</title><rect x="249.3" y="3253" width="597.3" height="15.0" fill="rgb(215,78,2)" rx="2" ry="2" /> +<text x="252.31" y="3263.5" >Nsfisis\Waddiwasi\Execution\Runtime::execInstrs</text> +</g> +<g > +<title><unknown> (1 samples, 0.03%)</title><rect x="870.4" y="1877" width="0.3" height="15.0" fill="rgb(240,34,3)" rx="2" ry="2" /> +<text x="873.38" y="1887.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="1104.4" y="2213" width="0.3" height="15.0" fill="rgb(229,87,36)" rx="2" ry="2" /> +<text x="1107.39" y="2223.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.03%)</title><rect x="848.2" y="2741" width="0.4" height="15.0" fill="rgb(216,199,53)" rx="2" ry="2" /> +<text x="851.23" y="2751.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\ControlFlowResult::Br (1 samples, 0.03%)</title><rect x="829.7" y="2133" width="0.4" height="15.0" fill="rgb(251,106,15)" rx="2" ry="2" /> +<text x="832.72" y="2143.5" ></text> +</g> +<g > +<title><unknown> (1 samples, 0.03%)</title><rect x="870.4" y="1429" width="0.3" height="15.0" fill="rgb(243,153,42)" rx="2" ry="2" /> +<text x="873.38" y="1439.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (2 samples, 0.06%)</title><rect x="397.7" y="2085" width="0.7" height="15.0" fill="rgb(226,30,40)" rx="2" ry="2" /> +<text x="400.71" y="2095.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="313.4" y="1989" width="0.4" height="15.0" fill="rgb(232,148,54)" rx="2" ry="2" /> +<text x="316.43" y="1999.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.03%)</title><rect x="666.1" y="2293" width="0.3" height="15.0" fill="rgb(226,60,32)" rx="2" ry="2" /> +<text x="669.11" y="2303.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (72 samples, 2.02%)</title><rect x="854.8" y="2677" width="23.8" height="15.0" fill="rgb(207,90,35)" rx="2" ry="2" /> +<text x="857.84" y="2687.5" >N..</text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (699 samples, 19.58%)</title><rect x="420.5" y="2309" width="231.1" height="15.0" fill="rgb(220,160,53)" rx="2" ry="2" /> +<text x="423.52" y="2319.5" >Nsfisis\Waddiwasi\Execution\Ru..</text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="840.3" y="2341" width="0.3" height="15.0" fill="rgb(238,140,13)" rx="2" ry="2" /> +<text x="843.30" y="2351.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Stack::pushValue (1 samples, 0.03%)</title><rect x="894.2" y="2709" width="0.3" height="15.0" fill="rgb(210,65,7)" rx="2" ry="2" /> +<text x="897.17" y="2719.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.03%)</title><rect x="363.7" y="1653" width="0.3" height="15.0" fill="rgb(205,18,41)" rx="2" ry="2" /> +<text x="366.67" y="1663.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="790.1" y="2085" width="0.3" height="15.0" fill="rgb(231,47,27)" rx="2" ry="2" /> +<text x="793.06" y="2095.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (2 samples, 0.06%)</title><rect x="691.2" y="2341" width="0.7" height="15.0" fill="rgb(237,51,53)" rx="2" ry="2" /> +<text x="694.23" y="2351.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (19 samples, 0.53%)</title><rect x="410.9" y="2213" width="6.3" height="15.0" fill="rgb(221,10,20)" rx="2" ry="2" /> +<text x="413.94" y="2223.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (2 samples, 0.06%)</title><rect x="370.3" y="1653" width="0.6" height="15.0" fill="rgb(222,209,32)" rx="2" ry="2" /> +<text x="373.28" y="1663.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (1 samples, 0.03%)</title><rect x="406.6" y="1941" width="0.4" height="15.0" fill="rgb(215,79,4)" rx="2" ry="2" /> +<text x="409.64" y="1951.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.03%)</title><rect x="847.9" y="2805" width="0.3" height="15.0" fill="rgb(217,111,27)" rx="2" ry="2" /> +<text x="850.90" y="2815.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (2 samples, 0.06%)</title><rect x="670.7" y="2517" width="0.7" height="15.0" fill="rgb(252,116,36)" rx="2" ry="2" /> +<text x="673.73" y="2527.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.03%)</title><rect x="407.3" y="2069" width="0.3" height="15.0" fill="rgb(220,125,26)" rx="2" ry="2" /> +<text x="410.30" y="2079.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="783.4" y="2725" width="0.4" height="15.0" fill="rgb(227,55,54)" rx="2" ry="2" /> +<text x="786.45" y="2735.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\BinaryFormat\Decoder::{closure}(/home/ken/src/php-waddiwasi/src/BinaryFormat/Decoder.php:1012-1016) (4 samples, 0.11%)</title><rect x="15.3" y="3429" width="1.3" height="15.0" fill="rgb(235,84,44)" rx="2" ry="2" /> +<text x="18.29" y="3439.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (21 samples, 0.59%)</title><rect x="278.4" y="2053" width="6.9" height="15.0" fill="rgb(233,69,53)" rx="2" ry="2" /> +<text x="281.39" y="2063.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.03%)</title><rect x="315.1" y="2005" width="0.3" height="15.0" fill="rgb(229,167,36)" rx="2" ry="2" /> +<text x="318.08" y="2015.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="954.0" y="2853" width="0.3" height="15.0" fill="rgb(227,139,38)" rx="2" ry="2" /> +<text x="957.00" y="2863.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.03%)</title><rect x="661.5" y="2165" width="0.3" height="15.0" fill="rgb(207,56,31)" rx="2" ry="2" /> +<text x="664.48" y="2175.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.03%)</title><rect x="954.7" y="117" width="0.3" height="15.0" fill="rgb(221,216,22)" rx="2" ry="2" /> +<text x="957.66" y="127.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (1 samples, 0.03%)</title><rect x="307.5" y="1621" width="0.3" height="15.0" fill="rgb(219,148,17)" rx="2" ry="2" /> +<text x="310.48" y="1631.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.03%)</title><rect x="405.3" y="949" width="0.3" height="15.0" fill="rgb(210,25,42)" rx="2" ry="2" /> +<text x="408.32" y="959.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="420.2" y="2181" width="0.3" height="15.0" fill="rgb(218,45,43)" rx="2" ry="2" /> +<text x="423.19" y="2191.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (5 samples, 0.14%)</title><rect x="879.6" y="2661" width="1.7" height="15.0" fill="rgb(226,69,33)" rx="2" ry="2" /> +<text x="882.63" y="2671.5" ></text> +</g> +<g > +<title><unknown> (1 samples, 0.03%)</title><rect x="870.4" y="1381" width="0.3" height="15.0" fill="rgb(217,106,11)" rx="2" ry="2" /> +<text x="873.38" y="1391.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (3 samples, 0.08%)</title><rect x="848.6" y="3109" width="1.0" height="15.0" fill="rgb(210,2,17)" rx="2" ry="2" /> +<text x="851.56" y="3119.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (2 samples, 0.06%)</title><rect x="1107.7" y="3349" width="0.7" height="15.0" fill="rgb(231,38,44)" rx="2" ry="2" /> +<text x="1110.70" y="3359.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (6 samples, 0.17%)</title><rect x="846.6" y="3253" width="2.0" height="15.0" fill="rgb(213,11,33)" rx="2" ry="2" /> +<text x="849.58" y="3263.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Stack::pushValue (1 samples, 0.03%)</title><rect x="651.2" y="2293" width="0.4" height="15.0" fill="rgb(216,190,18)" rx="2" ry="2" /> +<text x="654.23" y="2303.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (1 samples, 0.03%)</title><rect x="246.0" y="3173" width="0.3" height="15.0" fill="rgb(253,73,0)" rx="2" ry="2" /> +<text x="249.00" y="3183.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="288.3" y="1925" width="0.3" height="15.0" fill="rgb(207,217,47)" rx="2" ry="2" /> +<text x="291.31" y="1935.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (2 samples, 0.06%)</title><rect x="371.9" y="1717" width="0.7" height="15.0" fill="rgb(215,209,8)" rx="2" ry="2" /> +<text x="374.93" y="1727.5" ></text> +</g> +<g > +<title>Composer\Autoload\ClassLoader::loadClass (3 samples, 0.08%)</title><rect x="17.6" y="3477" width="1.0" height="15.0" fill="rgb(251,126,29)" rx="2" ry="2" /> +<text x="20.60" y="3487.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (1,807 samples, 50.62%)</title><rect x="249.3" y="3269" width="597.3" height="15.0" fill="rgb(252,62,13)" rx="2" ry="2" /> +<text x="252.31" y="3279.5" >Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc</text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (6 samples, 0.17%)</title><rect x="849.6" y="2645" width="1.9" height="15.0" fill="rgb(247,58,12)" rx="2" ry="2" /> +<text x="852.55" y="2655.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.03%)</title><rect x="1153.6" y="3445" width="0.4" height="15.0" fill="rgb(225,94,43)" rx="2" ry="2" /> +<text x="1156.64" y="3455.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Stack::popValue (1 samples, 0.03%)</title><rect x="305.2" y="1877" width="0.3" height="15.0" fill="rgb(239,173,19)" rx="2" ry="2" /> +<text x="308.17" y="1887.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="843.3" y="2245" width="0.3" height="15.0" fill="rgb(219,19,27)" rx="2" ry="2" /> +<text x="846.27" y="2255.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (3 samples, 0.08%)</title><rect x="848.6" y="3093" width="1.0" height="15.0" fill="rgb(244,5,15)" rx="2" ry="2" /> +<text x="851.56" y="3103.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.03%)</title><rect x="841.6" y="2421" width="0.3" height="15.0" fill="rgb(226,55,7)" rx="2" ry="2" /> +<text x="844.62" y="2431.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (21 samples, 0.59%)</title><rect x="400.0" y="2213" width="7.0" height="15.0" fill="rgb(218,170,1)" rx="2" ry="2" /> +<text x="403.03" y="2223.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (13 samples, 0.36%)</title><rect x="671.7" y="2805" width="4.3" height="15.0" fill="rgb(240,126,30)" rx="2" ry="2" /> +<text x="674.73" y="2815.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (4 samples, 0.11%)</title><rect x="306.8" y="1877" width="1.3" height="15.0" fill="rgb(224,144,40)" rx="2" ry="2" /> +<text x="309.82" y="1887.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (2 samples, 0.06%)</title><rect x="833.7" y="2165" width="0.6" height="15.0" fill="rgb(217,35,31)" rx="2" ry="2" /> +<text x="836.69" y="2175.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (2 samples, 0.06%)</title><rect x="302.2" y="1413" width="0.7" height="15.0" fill="rgb(236,206,28)" rx="2" ry="2" /> +<text x="305.19" y="1423.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.03%)</title><rect x="669.4" y="2453" width="0.3" height="15.0" fill="rgb(208,59,18)" rx="2" ry="2" /> +<text x="672.41" y="2463.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (686 samples, 19.22%)</title><rect x="422.2" y="2037" width="226.7" height="15.0" fill="rgb(211,42,3)" rx="2" ry="2" /> +<text x="425.17" y="2047.5" >Nsfisis\Waddiwasi\Execution\Ru..</text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (2 samples, 0.06%)</title><rect x="954.7" y="1237" width="0.6" height="15.0" fill="rgb(214,42,4)" rx="2" ry="2" /> +<text x="957.66" y="1247.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="316.7" y="1637" width="0.4" height="15.0" fill="rgb(243,216,45)" rx="2" ry="2" /> +<text x="319.73" y="1647.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="893.8" y="2693" width="0.4" height="15.0" fill="rgb(223,21,39)" rx="2" ry="2" /> +<text x="896.84" y="2703.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="266.8" y="1541" width="0.4" height="15.0" fill="rgb(234,129,26)" rx="2" ry="2" /> +<text x="269.82" y="1551.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (2 samples, 0.06%)</title><rect x="260.5" y="1941" width="0.7" height="15.0" fill="rgb(230,108,22)" rx="2" ry="2" /> +<text x="263.54" y="1951.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.03%)</title><rect x="358.4" y="1525" width="0.3" height="15.0" fill="rgb(229,130,24)" rx="2" ry="2" /> +<text x="361.38" y="1535.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (7 samples, 0.20%)</title><rect x="373.9" y="1877" width="2.3" height="15.0" fill="rgb(211,42,25)" rx="2" ry="2" /> +<text x="376.92" y="1887.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.03%)</title><rect x="288.3" y="1877" width="0.3" height="15.0" fill="rgb(231,200,25)" rx="2" ry="2" /> +<text x="291.31" y="1887.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.03%)</title><rect x="707.1" y="2773" width="0.3" height="15.0" fill="rgb(228,24,12)" rx="2" ry="2" /> +<text x="710.09" y="2783.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (8 samples, 0.22%)</title><rect x="684.6" y="2405" width="2.7" height="15.0" fill="rgb(252,82,22)" rx="2" ry="2" /> +<text x="687.62" y="2415.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (2 samples, 0.06%)</title><rect x="665.1" y="2405" width="0.7" height="15.0" fill="rgb(254,120,50)" rx="2" ry="2" /> +<text x="668.11" y="2415.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (3 samples, 0.08%)</title><rect x="296.9" y="1733" width="1.0" height="15.0" fill="rgb(229,44,14)" rx="2" ry="2" /> +<text x="299.90" y="1743.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Stack::pushI32 (1 samples, 0.03%)</title><rect x="391.1" y="2069" width="0.3" height="15.0" fill="rgb(212,229,18)" rx="2" ry="2" /> +<text x="394.10" y="2079.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (2 samples, 0.06%)</title><rect x="954.7" y="2085" width="0.6" height="15.0" fill="rgb(214,121,41)" rx="2" ry="2" /> +<text x="957.66" y="2095.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Stack::popValue (1 samples, 0.03%)</title><rect x="893.8" y="2709" width="0.4" height="15.0" fill="rgb(212,118,51)" rx="2" ry="2" /> +<text x="896.84" y="2719.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (6 samples, 0.17%)</title><rect x="362.3" y="1861" width="2.0" height="15.0" fill="rgb(223,8,31)" rx="2" ry="2" /> +<text x="365.35" y="1871.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (1 samples, 0.03%)</title><rect x="955.3" y="2741" width="0.4" height="15.0" fill="rgb(227,27,50)" rx="2" ry="2" /> +<text x="958.32" y="2751.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (2 samples, 0.06%)</title><rect x="954.7" y="453" width="0.6" height="15.0" fill="rgb(248,171,37)" rx="2" ry="2" /> +<text x="957.66" y="463.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (1 samples, 0.03%)</title><rect x="701.5" y="2261" width="0.3" height="15.0" fill="rgb(249,191,35)" rx="2" ry="2" /> +<text x="704.47" y="2271.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Stack::pushValue (1 samples, 0.03%)</title><rect x="708.4" y="2197" width="0.3" height="15.0" fill="rgb(207,150,6)" rx="2" ry="2" /> +<text x="711.41" y="2207.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="363.7" y="1637" width="0.3" height="15.0" fill="rgb(241,93,40)" rx="2" ry="2" /> +<text x="366.67" y="1647.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="954.3" y="3173" width="0.4" height="15.0" fill="rgb(249,111,17)" rx="2" ry="2" /> +<text x="957.33" y="3183.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (49 samples, 1.37%)</title><rect x="858.1" y="2421" width="16.2" height="15.0" fill="rgb(214,53,29)" rx="2" ry="2" /> +<text x="861.15" y="2431.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (3 samples, 0.08%)</title><rect x="404.7" y="1413" width="0.9" height="15.0" fill="rgb(222,66,21)" rx="2" ry="2" /> +<text x="407.66" y="1423.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="954.0" y="2917" width="0.3" height="15.0" fill="rgb(245,228,35)" rx="2" ry="2" /> +<text x="957.00" y="2927.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="833.0" y="2245" width="0.4" height="15.0" fill="rgb(214,119,38)" rx="2" ry="2" /> +<text x="836.03" y="2255.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (3 samples, 0.08%)</title><rect x="399.0" y="2101" width="1.0" height="15.0" fill="rgb(227,60,47)" rx="2" ry="2" /> +<text x="402.04" y="2111.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (1 samples, 0.03%)</title><rect x="955.3" y="2629" width="0.4" height="15.0" fill="rgb(223,149,7)" rx="2" ry="2" /> +<text x="958.32" y="2639.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.03%)</title><rect x="843.6" y="2389" width="0.3" height="15.0" fill="rgb(248,172,4)" rx="2" ry="2" /> +<text x="846.60" y="2399.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.03%)</title><rect x="372.6" y="1749" width="0.3" height="15.0" fill="rgb(240,154,5)" rx="2" ry="2" /> +<text x="375.59" y="1759.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (10 samples, 0.28%)</title><rect x="246.0" y="3269" width="3.3" height="15.0" fill="rgb(221,227,33)" rx="2" ry="2" /> +<text x="249.00" y="3279.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (2 samples, 0.06%)</title><rect x="954.7" y="1909" width="0.6" height="15.0" fill="rgb(222,54,40)" rx="2" ry="2" /> +<text x="957.66" y="1919.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (5 samples, 0.14%)</title><rect x="303.8" y="1973" width="1.7" height="15.0" fill="rgb(243,55,40)" rx="2" ry="2" /> +<text x="306.84" y="1983.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (5 samples, 0.14%)</title><rect x="301.2" y="1797" width="1.7" height="15.0" fill="rgb(214,138,40)" rx="2" ry="2" /> +<text x="304.20" y="1807.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (4 samples, 0.11%)</title><rect x="404.3" y="1717" width="1.3" height="15.0" fill="rgb(253,210,40)" rx="2" ry="2" /> +<text x="407.32" y="1727.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (86 samples, 2.41%)</title><rect x="811.2" y="2357" width="28.4" height="15.0" fill="rgb(249,201,0)" rx="2" ry="2" /> +<text x="814.21" y="2367.5" >Ns..</text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (1 samples, 0.03%)</title><rect x="315.4" y="1925" width="0.3" height="15.0" fill="rgb(210,224,26)" rx="2" ry="2" /> +<text x="318.41" y="1935.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (3 samples, 0.08%)</title><rect x="842.9" y="2741" width="1.0" height="15.0" fill="rgb(234,81,38)" rx="2" ry="2" /> +<text x="845.94" y="2751.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (3 samples, 0.08%)</title><rect x="670.7" y="2757" width="1.0" height="15.0" fill="rgb(236,30,14)" rx="2" ry="2" /> +<text x="673.73" y="2767.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="391.4" y="2085" width="0.4" height="15.0" fill="rgb(241,52,16)" rx="2" ry="2" /> +<text x="394.43" y="2095.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (7 samples, 0.20%)</title><rect x="259.9" y="2005" width="2.3" height="15.0" fill="rgb(214,17,4)" rx="2" ry="2" /> +<text x="262.88" y="2015.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.03%)</title><rect x="955.7" y="2805" width="0.3" height="15.0" fill="rgb(239,12,48)" rx="2" ry="2" /> +<text x="958.65" y="2815.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (49 samples, 1.37%)</title><rect x="858.1" y="2405" width="16.2" height="15.0" fill="rgb(232,22,20)" rx="2" ry="2" /> +<text x="861.15" y="2415.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Stack::pushValue (2 samples, 0.06%)</title><rect x="226.8" y="3461" width="0.7" height="15.0" fill="rgb(225,144,49)" rx="2" ry="2" /> +<text x="229.83" y="3471.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="404.7" y="1157" width="0.3" height="15.0" fill="rgb(248,179,15)" rx="2" ry="2" /> +<text x="407.66" y="1167.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.03%)</title><rect x="1107.4" y="3221" width="0.3" height="15.0" fill="rgb(219,226,53)" rx="2" ry="2" /> +<text x="1110.37" y="3231.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (2 samples, 0.06%)</title><rect x="954.7" y="821" width="0.6" height="15.0" fill="rgb(224,117,42)" rx="2" ry="2" /> +<text x="957.66" y="831.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="399.0" y="1893" width="0.4" height="15.0" fill="rgb(222,37,35)" rx="2" ry="2" /> +<text x="402.04" y="1903.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (685 samples, 19.19%)</title><rect x="422.2" y="1493" width="226.4" height="15.0" fill="rgb(236,183,16)" rx="2" ry="2" /> +<text x="425.17" y="1503.5" >Nsfisis\Waddiwasi\Execution\R..</text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.03%)</title><rect x="669.4" y="2549" width="0.3" height="15.0" fill="rgb(251,161,52)" rx="2" ry="2" /> +<text x="672.41" y="2559.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (2 samples, 0.06%)</title><rect x="884.9" y="2629" width="0.7" height="15.0" fill="rgb(209,214,35)" rx="2" ry="2" /> +<text x="887.92" y="2639.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (4 samples, 0.11%)</title><rect x="954.7" y="2869" width="1.3" height="15.0" fill="rgb(209,7,24)" rx="2" ry="2" /> +<text x="957.66" y="2879.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (14 samples, 0.39%)</title><rect x="412.3" y="1989" width="4.6" height="15.0" fill="rgb(220,45,33)" rx="2" ry="2" /> +<text x="415.26" y="1999.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.03%)</title><rect x="269.5" y="2069" width="0.3" height="15.0" fill="rgb(224,132,9)" rx="2" ry="2" /> +<text x="272.47" y="2079.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (1 samples, 0.03%)</title><rect x="663.1" y="2149" width="0.4" height="15.0" fill="rgb(206,68,53)" rx="2" ry="2" /> +<text x="666.13" y="2159.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (3 samples, 0.08%)</title><rect x="316.1" y="1669" width="1.0" height="15.0" fill="rgb(210,68,0)" rx="2" ry="2" /> +<text x="319.07" y="1679.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (5 samples, 0.14%)</title><rect x="796.7" y="2197" width="1.6" height="15.0" fill="rgb(254,182,6)" rx="2" ry="2" /> +<text x="799.67" y="2207.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (3 samples, 0.08%)</title><rect x="952.0" y="2613" width="1.0" height="15.0" fill="rgb(229,103,23)" rx="2" ry="2" /> +<text x="955.02" y="2623.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="254.3" y="2245" width="0.3" height="15.0" fill="rgb(247,208,23)" rx="2" ry="2" /> +<text x="257.26" y="2255.5" ></text> +</g> +<g > +<title>{closure}(/home/ken/src/php-waddiwasi/examples/php-on-wasm/php-wasm.php:414-429) (1 samples, 0.03%)</title><rect x="843.9" y="2997" width="0.4" height="15.0" fill="rgb(210,2,24)" rx="2" ry="2" /> +<text x="846.93" y="3007.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (6 samples, 0.17%)</title><rect x="374.2" y="1813" width="2.0" height="15.0" fill="rgb(229,124,52)" rx="2" ry="2" /> +<text x="377.25" y="1823.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (328 samples, 9.19%)</title><rect x="676.0" y="2853" width="108.4" height="15.0" fill="rgb(239,7,19)" rx="2" ry="2" /> +<text x="679.02" y="2863.5" >Nsfisis\Waddi..</text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (72 samples, 2.02%)</title><rect x="854.8" y="2661" width="23.8" height="15.0" fill="rgb(233,197,22)" rx="2" ry="2" /> +<text x="857.84" y="2671.5" >N..</text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (1 samples, 0.03%)</title><rect x="843.9" y="2693" width="0.4" height="15.0" fill="rgb(250,2,43)" rx="2" ry="2" /> +<text x="846.93" y="2703.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (1 samples, 0.03%)</title><rect x="955.3" y="2725" width="0.4" height="15.0" fill="rgb(205,143,8)" rx="2" ry="2" /> +<text x="958.32" y="2735.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.03%)</title><rect x="894.5" y="2517" width="0.3" height="15.0" fill="rgb(217,72,24)" rx="2" ry="2" /> +<text x="897.50" y="2527.5" ></text> +</g> +<g > +<title>count (4 samples, 0.11%)</title><rect x="1157.6" y="3525" width="1.3" height="15.0" fill="rgb(217,106,53)" rx="2" ry="2" /> +<text x="1160.61" y="3535.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (1 samples, 0.03%)</title><rect x="358.4" y="1637" width="0.3" height="15.0" fill="rgb(254,177,14)" rx="2" ry="2" /> +<text x="361.38" y="1647.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="660.8" y="2149" width="0.3" height="15.0" fill="rgb(230,222,3)" rx="2" ry="2" /> +<text x="663.82" y="2159.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Stack::pushValue (1 samples, 0.03%)</title><rect x="271.1" y="2101" width="0.4" height="15.0" fill="rgb(230,26,48)" rx="2" ry="2" /> +<text x="274.12" y="2111.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Stack::pushValue (1 samples, 0.03%)</title><rect x="808.2" y="2229" width="0.4" height="15.0" fill="rgb(241,165,44)" rx="2" ry="2" /> +<text x="811.24" y="2239.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="1077.3" y="3333" width="0.3" height="15.0" fill="rgb(235,93,51)" rx="2" ry="2" /> +<text x="1080.29" y="3343.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="407.6" y="2181" width="0.4" height="15.0" fill="rgb(210,171,20)" rx="2" ry="2" /> +<text x="410.63" y="2191.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (58 samples, 1.62%)</title><rect x="677.7" y="2741" width="19.1" height="15.0" fill="rgb(250,191,3)" rx="2" ry="2" /> +<text x="680.68" y="2751.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="880.6" y="2565" width="0.4" height="15.0" fill="rgb(232,189,34)" rx="2" ry="2" /> +<text x="883.62" y="2575.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (10 samples, 0.28%)</title><rect x="246.0" y="3301" width="3.3" height="15.0" fill="rgb(220,8,4)" rx="2" ry="2" /> +<text x="249.00" y="3311.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doStoreI32 (1 samples, 0.03%)</title><rect x="699.5" y="2389" width="0.3" height="15.0" fill="rgb(212,152,12)" rx="2" ry="2" /> +<text x="702.49" y="2399.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (2 samples, 0.06%)</title><rect x="268.1" y="2021" width="0.7" height="15.0" fill="rgb(221,35,42)" rx="2" ry="2" /> +<text x="271.15" y="2031.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="881.0" y="2565" width="0.3" height="15.0" fill="rgb(250,74,38)" rx="2" ry="2" /> +<text x="883.95" y="2575.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="319.0" y="1829" width="0.4" height="15.0" fill="rgb(246,113,10)" rx="2" ry="2" /> +<text x="322.05" y="1839.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="843.6" y="2469" width="0.3" height="15.0" fill="rgb(205,19,29)" rx="2" ry="2" /> +<text x="846.60" y="2479.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (2 samples, 0.06%)</title><rect x="364.7" y="1893" width="0.6" height="15.0" fill="rgb(229,17,28)" rx="2" ry="2" /> +<text x="367.66" y="1903.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (8 samples, 0.22%)</title><rect x="672.4" y="2597" width="2.6" height="15.0" fill="rgb(240,149,33)" rx="2" ry="2" /> +<text x="675.39" y="2607.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (2 samples, 0.06%)</title><rect x="660.2" y="2005" width="0.6" height="15.0" fill="rgb(212,143,19)" rx="2" ry="2" /> +<text x="663.16" y="2015.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (27 samples, 0.76%)</title><rect x="258.9" y="2069" width="8.9" height="15.0" fill="rgb(217,137,20)" rx="2" ry="2" /> +<text x="261.89" y="2079.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="845.6" y="2373" width="0.3" height="15.0" fill="rgb(217,141,15)" rx="2" ry="2" /> +<text x="848.59" y="2383.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.03%)</title><rect x="421.5" y="1877" width="0.3" height="15.0" fill="rgb(232,92,6)" rx="2" ry="2" /> +<text x="424.51" y="1887.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (1 samples, 0.03%)</title><rect x="304.8" y="1781" width="0.4" height="15.0" fill="rgb(245,31,21)" rx="2" ry="2" /> +<text x="307.83" y="1791.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\StackEntry::Value (1 samples, 0.03%)</title><rect x="895.5" y="2789" width="0.3" height="15.0" fill="rgb(236,72,0)" rx="2" ry="2" /> +<text x="898.50" y="2799.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (21 samples, 0.59%)</title><rect x="400.0" y="2229" width="7.0" height="15.0" fill="rgb(253,55,24)" rx="2" ry="2" /> +<text x="403.03" y="2239.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.03%)</title><rect x="341.2" y="1845" width="0.3" height="15.0" fill="rgb(214,18,44)" rx="2" ry="2" /> +<text x="344.19" y="1855.5" ></text> +</g> +<g > +<title><unknown> (1 samples, 0.03%)</title><rect x="905.7" y="2581" width="0.4" height="15.0" fill="rgb(207,6,43)" rx="2" ry="2" /> +<text x="908.74" y="2591.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (2 samples, 0.06%)</title><rect x="954.7" y="1333" width="0.6" height="15.0" fill="rgb(206,22,9)" rx="2" ry="2" /> +<text x="957.66" y="1343.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (1 samples, 0.03%)</title><rect x="951.4" y="2661" width="0.3" height="15.0" fill="rgb(206,103,53)" rx="2" ry="2" /> +<text x="954.36" y="2671.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (1,209 samples, 33.87%)</title><rect x="252.6" y="2437" width="399.6" height="15.0" fill="rgb(217,50,40)" rx="2" ry="2" /> +<text x="255.61" y="2447.5" >Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc</text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.03%)</title><rect x="951.7" y="2549" width="0.3" height="15.0" fill="rgb(223,135,54)" rx="2" ry="2" /> +<text x="954.69" y="2559.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="894.2" y="2597" width="0.3" height="15.0" fill="rgb(234,153,38)" rx="2" ry="2" /> +<text x="897.17" y="2607.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (2 samples, 0.06%)</title><rect x="670.7" y="2741" width="0.7" height="15.0" fill="rgb(233,145,22)" rx="2" ry="2" /> +<text x="673.73" y="2751.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doStoreI32 (2 samples, 0.06%)</title><rect x="1159.6" y="3541" width="0.7" height="15.0" fill="rgb(218,32,23)" rx="2" ry="2" /> +<text x="1162.59" y="3551.5" ></text> +</g> +<g > +<title><unknown> (1 samples, 0.03%)</title><rect x="789.7" y="2245" width="0.4" height="15.0" fill="rgb(205,176,40)" rx="2" ry="2" /> +<text x="792.73" y="2255.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Stack::pushI32 (1 samples, 0.03%)</title><rect x="840.3" y="2357" width="0.3" height="15.0" fill="rgb(219,185,8)" rx="2" ry="2" /> +<text x="843.30" y="2367.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (1 samples, 0.03%)</title><rect x="696.5" y="2565" width="0.3" height="15.0" fill="rgb(248,31,18)" rx="2" ry="2" /> +<text x="699.52" y="2575.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (1 samples, 0.03%)</title><rect x="401.0" y="1813" width="0.4" height="15.0" fill="rgb(223,19,51)" rx="2" ry="2" /> +<text x="404.02" y="1823.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.03%)</title><rect x="838.6" y="2101" width="0.4" height="15.0" fill="rgb(225,129,3)" rx="2" ry="2" /> +<text x="841.64" y="2111.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (2 samples, 0.06%)</title><rect x="954.7" y="2229" width="0.6" height="15.0" fill="rgb(242,52,48)" rx="2" ry="2" /> +<text x="957.66" y="2239.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="347.1" y="1893" width="0.4" height="15.0" fill="rgb(248,170,45)" rx="2" ry="2" /> +<text x="350.14" y="1903.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (5 samples, 0.14%)</title><rect x="415.2" y="1733" width="1.7" height="15.0" fill="rgb(240,66,49)" rx="2" ry="2" /> +<text x="418.23" y="1743.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.03%)</title><rect x="406.6" y="1749" width="0.4" height="15.0" fill="rgb(238,1,8)" rx="2" ry="2" /> +<text x="409.64" y="1759.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.03%)</title><rect x="391.4" y="2005" width="0.4" height="15.0" fill="rgb(231,76,29)" rx="2" ry="2" /> +<text x="394.43" y="2015.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (65 samples, 1.82%)</title><rect x="857.2" y="2581" width="21.4" height="15.0" fill="rgb(251,105,47)" rx="2" ry="2" /> +<text x="860.15" y="2591.5" >N..</text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (39 samples, 1.09%)</title><rect x="786.8" y="2421" width="12.8" height="15.0" fill="rgb(232,205,10)" rx="2" ry="2" /> +<text x="789.75" y="2431.5" ></text> +</g> +<g > +<title><unknown> (1 samples, 0.03%)</title><rect x="801.0" y="2389" width="0.3" height="15.0" fill="rgb(242,23,18)" rx="2" ry="2" /> +<text x="803.96" y="2399.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (1 samples, 0.03%)</title><rect x="316.4" y="1333" width="0.3" height="15.0" fill="rgb(245,32,34)" rx="2" ry="2" /> +<text x="319.40" y="1343.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="951.4" y="2629" width="0.3" height="15.0" fill="rgb(253,37,41)" rx="2" ry="2" /> +<text x="954.36" y="2639.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="1107.4" y="3237" width="0.3" height="15.0" fill="rgb(248,79,38)" rx="2" ry="2" /> +<text x="1110.37" y="3247.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (4 samples, 0.11%)</title><rect x="311.4" y="1669" width="1.4" height="15.0" fill="rgb(218,184,24)" rx="2" ry="2" /> +<text x="314.45" y="1679.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Stack::popI32 (1 samples, 0.03%)</title><rect x="825.4" y="2133" width="0.4" height="15.0" fill="rgb(248,169,23)" rx="2" ry="2" /> +<text x="828.42" y="2143.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.03%)</title><rect x="851.2" y="2549" width="0.3" height="15.0" fill="rgb(253,50,31)" rx="2" ry="2" /> +<text x="854.20" y="2559.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="954.3" y="2821" width="0.4" height="15.0" fill="rgb(214,115,6)" rx="2" ry="2" /> +<text x="957.33" y="2831.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.03%)</title><rect x="314.1" y="1557" width="0.3" height="15.0" fill="rgb(250,72,48)" rx="2" ry="2" /> +<text x="317.09" y="1567.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (2 samples, 0.06%)</title><rect x="954.7" y="2261" width="0.6" height="15.0" fill="rgb(217,132,53)" rx="2" ry="2" /> +<text x="957.66" y="2271.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (3 samples, 0.08%)</title><rect x="847.2" y="2933" width="1.0" height="15.0" fill="rgb(220,31,14)" rx="2" ry="2" /> +<text x="850.24" y="2943.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (2 samples, 0.06%)</title><rect x="954.7" y="837" width="0.6" height="15.0" fill="rgb(219,160,27)" rx="2" ry="2" /> +<text x="957.66" y="847.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Stack::popI32 (1 samples, 0.03%)</title><rect x="829.4" y="2165" width="0.3" height="15.0" fill="rgb(245,131,8)" rx="2" ry="2" /> +<text x="832.39" y="2175.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.03%)</title><rect x="677.0" y="2677" width="0.3" height="15.0" fill="rgb(250,228,41)" rx="2" ry="2" /> +<text x="680.01" y="2687.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (2 samples, 0.06%)</title><rect x="399.4" y="1925" width="0.6" height="15.0" fill="rgb(246,78,34)" rx="2" ry="2" /> +<text x="402.37" y="1935.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.03%)</title><rect x="251.6" y="2741" width="0.3" height="15.0" fill="rgb(207,21,49)" rx="2" ry="2" /> +<text x="254.62" y="2751.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="666.8" y="2789" width="0.3" height="15.0" fill="rgb(248,11,42)" rx="2" ry="2" /> +<text x="669.77" y="2799.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (18 samples, 0.50%)</title><rect x="696.8" y="2677" width="6.0" height="15.0" fill="rgb(220,87,25)" rx="2" ry="2" /> +<text x="699.85" y="2687.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (4 samples, 0.11%)</title><rect x="374.9" y="1605" width="1.3" height="15.0" fill="rgb(216,182,40)" rx="2" ry="2" /> +<text x="377.91" y="1615.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (682 samples, 19.10%)</title><rect x="423.2" y="933" width="225.4" height="15.0" fill="rgb(244,29,47)" rx="2" ry="2" /> +<text x="426.17" y="943.5" >Nsfisis\Waddiwasi\Execution\R..</text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (2 samples, 0.06%)</title><rect x="313.8" y="2085" width="0.6" height="15.0" fill="rgb(223,41,52)" rx="2" ry="2" /> +<text x="316.76" y="2095.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.03%)</title><rect x="843.6" y="2325" width="0.3" height="15.0" fill="rgb(229,11,51)" rx="2" ry="2" /> +<text x="846.60" y="2335.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (5 samples, 0.14%)</title><rect x="849.6" y="2485" width="1.6" height="15.0" fill="rgb(247,57,10)" rx="2" ry="2" /> +<text x="852.55" y="2495.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (10 samples, 0.28%)</title><rect x="264.2" y="1877" width="3.3" height="15.0" fill="rgb(215,142,49)" rx="2" ry="2" /> +<text x="267.18" y="1887.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (5 samples, 0.14%)</title><rect x="315.4" y="2037" width="1.7" height="15.0" fill="rgb(237,22,32)" rx="2" ry="2" /> +<text x="318.41" y="2047.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doLoadI32 (1 samples, 0.03%)</title><rect x="1153.6" y="3157" width="0.4" height="15.0" fill="rgb(245,7,44)" rx="2" ry="2" /> +<text x="1156.64" y="3167.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (5 samples, 0.14%)</title><rect x="415.2" y="1685" width="1.7" height="15.0" fill="rgb(243,81,49)" rx="2" ry="2" /> +<text x="418.23" y="1695.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (1 samples, 0.03%)</title><rect x="251.9" y="2693" width="0.4" height="15.0" fill="rgb(224,38,0)" rx="2" ry="2" /> +<text x="254.95" y="2703.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (8 samples, 0.22%)</title><rect x="668.1" y="2805" width="2.6" height="15.0" fill="rgb(221,180,47)" rx="2" ry="2" /> +<text x="671.09" y="2815.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="843.6" y="2341" width="0.3" height="15.0" fill="rgb(239,96,27)" rx="2" ry="2" /> +<text x="846.60" y="2351.5" ></text> +</g> +<g > +<title><unknown> (1 samples, 0.03%)</title><rect x="905.7" y="2517" width="0.4" height="15.0" fill="rgb(237,174,36)" rx="2" ry="2" /> +<text x="908.74" y="2527.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.03%)</title><rect x="312.4" y="1493" width="0.4" height="15.0" fill="rgb(211,174,43)" rx="2" ry="2" /> +<text x="315.44" y="1503.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="1104.4" y="2085" width="0.3" height="15.0" fill="rgb(206,32,6)" rx="2" ry="2" /> +<text x="1107.39" y="2095.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (14 samples, 0.39%)</title><rect x="698.2" y="2581" width="4.6" height="15.0" fill="rgb(209,49,51)" rx="2" ry="2" /> +<text x="701.17" y="2591.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Stack::popI32 (1 samples, 0.03%)</title><rect x="893.2" y="2677" width="0.3" height="15.0" fill="rgb(212,6,2)" rx="2" ry="2" /> +<text x="896.18" y="2687.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Stack::pushValue (2 samples, 0.06%)</title><rect x="839.0" y="2325" width="0.6" height="15.0" fill="rgb(213,73,23)" rx="2" ry="2" /> +<text x="841.97" y="2335.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (83 samples, 2.32%)</title><rect x="285.7" y="2101" width="27.4" height="15.0" fill="rgb(231,13,46)" rx="2" ry="2" /> +<text x="288.66" y="2111.5" >N..</text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (7 samples, 0.20%)</title><rect x="296.9" y="1861" width="2.3" height="15.0" fill="rgb(239,41,8)" rx="2" ry="2" /> +<text x="299.90" y="1871.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (3 samples, 0.08%)</title><rect x="675.0" y="2661" width="1.0" height="15.0" fill="rgb(229,94,54)" rx="2" ry="2" /> +<text x="678.03" y="2671.5" ></text> +</g> +<g > +<title><unknown> (1 samples, 0.03%)</title><rect x="870.4" y="1541" width="0.3" height="15.0" fill="rgb(219,136,35)" rx="2" ry="2" /> +<text x="873.38" y="1551.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (2 samples, 0.06%)</title><rect x="661.8" y="2085" width="0.7" height="15.0" fill="rgb(246,228,38)" rx="2" ry="2" /> +<text x="664.81" y="2095.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\ControlFlowResult::Return (1 samples, 0.03%)</title><rect x="385.8" y="1717" width="0.3" height="15.0" fill="rgb(236,60,1)" rx="2" ry="2" /> +<text x="388.82" y="1727.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (39 samples, 1.09%)</title><rect x="786.8" y="2373" width="12.8" height="15.0" fill="rgb(228,178,24)" rx="2" ry="2" /> +<text x="789.75" y="2383.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="664.8" y="2245" width="0.3" height="15.0" fill="rgb(209,210,10)" rx="2" ry="2" /> +<text x="667.78" y="2255.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (2 samples, 0.06%)</title><rect x="842.9" y="2341" width="0.7" height="15.0" fill="rgb(248,4,36)" rx="2" ry="2" /> +<text x="845.94" y="2351.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (7 samples, 0.20%)</title><rect x="366.0" y="1973" width="2.3" height="15.0" fill="rgb(240,1,19)" rx="2" ry="2" /> +<text x="368.98" y="1983.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (230 samples, 6.44%)</title><rect x="707.4" y="2501" width="76.0" height="15.0" fill="rgb(225,165,52)" rx="2" ry="2" /> +<text x="710.42" y="2511.5" >Nsfisis\..</text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (82 samples, 2.30%)</title><rect x="676.0" y="2821" width="27.1" height="15.0" fill="rgb(224,142,27)" rx="2" ry="2" /> +<text x="679.02" y="2831.5" >N..</text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (2 samples, 0.06%)</title><rect x="954.7" y="341" width="0.6" height="15.0" fill="rgb(213,190,50)" rx="2" ry="2" /> +<text x="957.66" y="351.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="328.3" y="2117" width="0.3" height="15.0" fill="rgb(235,224,27)" rx="2" ry="2" /> +<text x="331.30" y="2127.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (5 samples, 0.14%)</title><rect x="366.3" y="1829" width="1.7" height="15.0" fill="rgb(211,144,30)" rx="2" ry="2" /> +<text x="369.31" y="1839.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="834.0" y="2053" width="0.3" height="15.0" fill="rgb(244,181,10)" rx="2" ry="2" /> +<text x="837.02" y="2063.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.03%)</title><rect x="845.6" y="2453" width="0.3" height="15.0" fill="rgb(217,150,48)" rx="2" ry="2" /> +<text x="848.59" y="2463.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="848.2" y="2949" width="0.4" height="15.0" fill="rgb(206,59,31)" rx="2" ry="2" /> +<text x="851.23" y="2959.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (17 samples, 0.48%)</title><rect x="411.6" y="2069" width="5.6" height="15.0" fill="rgb(206,138,43)" rx="2" ry="2" /> +<text x="414.60" y="2079.5" ></text> +</g> +<g > +<title><unknown> (1 samples, 0.03%)</title><rect x="708.4" y="2165" width="0.3" height="15.0" fill="rgb(247,85,54)" rx="2" ry="2" /> +<text x="711.41" y="2175.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="848.2" y="2853" width="0.4" height="15.0" fill="rgb(224,54,42)" rx="2" ry="2" /> +<text x="851.23" y="2863.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (3 samples, 0.08%)</title><rect x="833.7" y="2197" width="1.0" height="15.0" fill="rgb(231,177,27)" rx="2" ry="2" /> +<text x="836.69" y="2207.5" ></text> +</g> +<g > +<title><unknown> (4 samples, 0.11%)</title><rect x="1170.8" y="3509" width="1.4" height="15.0" fill="rgb(232,17,49)" rx="2" ry="2" /> +<text x="1173.83" y="3519.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="954.3" y="2693" width="0.4" height="15.0" fill="rgb(243,76,19)" rx="2" ry="2" /> +<text x="957.33" y="2703.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="669.4" y="2629" width="0.3" height="15.0" fill="rgb(216,214,29)" rx="2" ry="2" /> +<text x="672.41" y="2639.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Stack::popI32 (1 samples, 0.03%)</title><rect x="1085.9" y="3317" width="0.3" height="15.0" fill="rgb(212,79,32)" rx="2" ry="2" /> +<text x="1088.88" y="3327.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (2 samples, 0.06%)</title><rect x="954.7" y="245" width="0.6" height="15.0" fill="rgb(229,12,10)" rx="2" ry="2" /> +<text x="957.66" y="255.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.03%)</title><rect x="656.5" y="1877" width="0.4" height="15.0" fill="rgb(244,34,39)" rx="2" ry="2" /> +<text x="659.52" y="1887.5" ></text> +</g> +<g > +<title><unknown> (1 samples, 0.03%)</title><rect x="870.4" y="901" width="0.3" height="15.0" fill="rgb(250,173,6)" rx="2" ry="2" /> +<text x="873.38" y="911.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="265.2" y="1637" width="0.3" height="15.0" fill="rgb(245,120,17)" rx="2" ry="2" /> +<text x="268.17" y="1647.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.03%)</title><rect x="1139.1" y="3381" width="0.3" height="15.0" fill="rgb(209,135,14)" rx="2" ry="2" /> +<text x="1142.10" y="3391.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (4 samples, 0.11%)</title><rect x="954.7" y="2933" width="1.3" height="15.0" fill="rgb(243,193,6)" rx="2" ry="2" /> +<text x="957.66" y="2943.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (2 samples, 0.06%)</title><rect x="302.2" y="1621" width="0.7" height="15.0" fill="rgb(215,104,48)" rx="2" ry="2" /> +<text x="305.19" y="1631.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="1104.4" y="2149" width="0.3" height="15.0" fill="rgb(222,76,19)" rx="2" ry="2" /> +<text x="1107.39" y="2159.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (2 samples, 0.06%)</title><rect x="842.9" y="2357" width="0.7" height="15.0" fill="rgb(207,36,44)" rx="2" ry="2" /> +<text x="845.94" y="2367.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (2 samples, 0.06%)</title><rect x="357.7" y="1637" width="0.7" height="15.0" fill="rgb(254,49,46)" rx="2" ry="2" /> +<text x="360.72" y="1647.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Structure\Instructions\Instr::End (1 samples, 0.03%)</title><rect x="1189.7" y="3525" width="0.3" height="15.0" fill="rgb(239,70,7)" rx="2" ry="2" /> +<text x="1192.67" y="3535.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Stack::popValue (1 samples, 0.03%)</title><rect x="1085.9" y="3301" width="0.3" height="15.0" fill="rgb(209,161,17)" rx="2" ry="2" /> +<text x="1088.88" y="3311.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.03%)</title><rect x="268.1" y="1909" width="0.4" height="15.0" fill="rgb(254,80,51)" rx="2" ry="2" /> +<text x="271.15" y="1919.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="420.2" y="2117" width="0.3" height="15.0" fill="rgb(223,72,43)" rx="2" ry="2" /> +<text x="423.19" y="2127.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (3 samples, 0.08%)</title><rect x="266.2" y="1765" width="1.0" height="15.0" fill="rgb(228,6,31)" rx="2" ry="2" /> +<text x="269.16" y="1775.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (11 samples, 0.31%)</title><rect x="386.1" y="1701" width="3.7" height="15.0" fill="rgb(236,119,14)" rx="2" ry="2" /> +<text x="389.15" y="1711.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (1 samples, 0.03%)</title><rect x="257.2" y="2053" width="0.4" height="15.0" fill="rgb(245,81,18)" rx="2" ry="2" /> +<text x="260.24" y="2063.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\StackEntry::Label (1 samples, 0.03%)</title><rect x="938.1" y="2421" width="0.4" height="15.0" fill="rgb(225,166,54)" rx="2" ry="2" /> +<text x="941.13" y="2431.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (315 samples, 8.82%)</title><rect x="849.6" y="3029" width="104.1" height="15.0" fill="rgb(212,124,48)" rx="2" ry="2" /> +<text x="852.55" y="3039.5" >Nsfisis\Wadd..</text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="1121.6" y="3429" width="0.3" height="15.0" fill="rgb(245,225,54)" rx="2" ry="2" /> +<text x="1124.58" y="3439.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.03%)</title><rect x="280.0" y="1877" width="0.4" height="15.0" fill="rgb(209,38,31)" rx="2" ry="2" /> +<text x="283.04" y="1887.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (11 samples, 0.31%)</title><rect x="287.3" y="2053" width="3.7" height="15.0" fill="rgb(250,53,24)" rx="2" ry="2" /> +<text x="290.32" y="2063.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.03%)</title><rect x="405.6" y="1717" width="0.4" height="15.0" fill="rgb(248,190,45)" rx="2" ry="2" /> +<text x="408.65" y="1727.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (3 samples, 0.08%)</title><rect x="246.3" y="3173" width="1.0" height="15.0" fill="rgb(209,192,41)" rx="2" ry="2" /> +<text x="249.33" y="3183.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (2 samples, 0.06%)</title><rect x="884.9" y="2661" width="0.7" height="15.0" fill="rgb(219,67,49)" rx="2" ry="2" /> +<text x="887.92" y="2671.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (685 samples, 19.19%)</title><rect x="422.2" y="1205" width="226.4" height="15.0" fill="rgb(228,124,52)" rx="2" ry="2" /> +<text x="425.17" y="1215.5" >Nsfisis\Waddiwasi\Execution\R..</text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (686 samples, 19.22%)</title><rect x="422.2" y="2101" width="226.7" height="15.0" fill="rgb(237,112,31)" rx="2" ry="2" /> +<text x="425.17" y="2111.5" >Nsfisis\Waddiwasi\Execution\Ru..</text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="838.6" y="2213" width="0.4" height="15.0" fill="rgb(243,70,42)" rx="2" ry="2" /> +<text x="841.64" y="2223.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (2 samples, 0.06%)</title><rect x="954.7" y="2613" width="0.6" height="15.0" fill="rgb(229,127,43)" rx="2" ry="2" /> +<text x="957.66" y="2623.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (4 samples, 0.11%)</title><rect x="248.0" y="3077" width="1.3" height="15.0" fill="rgb(212,2,2)" rx="2" ry="2" /> +<text x="250.98" y="3087.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (4 samples, 0.11%)</title><rect x="283.7" y="1877" width="1.3" height="15.0" fill="rgb(214,124,39)" rx="2" ry="2" /> +<text x="286.68" y="1887.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Stack::popI32 (1 samples, 0.03%)</title><rect x="389.8" y="1909" width="0.3" height="15.0" fill="rgb(228,15,35)" rx="2" ry="2" /> +<text x="392.78" y="1919.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (230 samples, 6.44%)</title><rect x="707.4" y="2437" width="76.0" height="15.0" fill="rgb(253,109,43)" rx="2" ry="2" /> +<text x="710.42" y="2447.5" >Nsfisis\..</text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="330.6" y="2053" width="0.3" height="15.0" fill="rgb(239,19,36)" rx="2" ry="2" /> +<text x="333.62" y="2063.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.03%)</title><rect x="940.4" y="2517" width="0.4" height="15.0" fill="rgb(210,50,12)" rx="2" ry="2" /> +<text x="943.45" y="2527.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (4 samples, 0.11%)</title><rect x="846.9" y="2965" width="1.3" height="15.0" fill="rgb(213,100,44)" rx="2" ry="2" /> +<text x="849.91" y="2975.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="841.3" y="2405" width="0.3" height="15.0" fill="rgb(234,24,22)" rx="2" ry="2" /> +<text x="844.29" y="2415.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (317 samples, 8.88%)</title><rect x="849.6" y="3237" width="104.7" height="15.0" fill="rgb(223,23,49)" rx="2" ry="2" /> +<text x="852.55" y="3247.5" >Nsfisis\Wadd..</text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1,253 samples, 35.10%)</title><rect x="252.3" y="2533" width="414.1" height="15.0" fill="rgb(229,208,9)" rx="2" ry="2" /> +<text x="255.28" y="2543.5" >Nsfisis\Waddiwasi\Execution\Runtime::execInstr</text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.03%)</title><rect x="1175.5" y="3509" width="0.3" height="15.0" fill="rgb(210,122,19)" rx="2" ry="2" /> +<text x="1178.46" y="3519.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.03%)</title><rect x="420.2" y="2133" width="0.3" height="15.0" fill="rgb(246,116,38)" rx="2" ry="2" /> +<text x="423.19" y="2143.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (2 samples, 0.06%)</title><rect x="954.7" y="2357" width="0.6" height="15.0" fill="rgb(236,192,43)" rx="2" ry="2" /> +<text x="957.66" y="2367.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (26 samples, 0.73%)</title><rect x="667.4" y="2949" width="8.6" height="15.0" fill="rgb(238,68,11)" rx="2" ry="2" /> +<text x="670.43" y="2959.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (4 samples, 0.11%)</title><rect x="1135.8" y="3205" width="1.3" height="15.0" fill="rgb(211,18,7)" rx="2" ry="2" /> +<text x="1138.79" y="3215.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.03%)</title><rect x="315.4" y="1557" width="0.3" height="15.0" fill="rgb(224,138,21)" rx="2" ry="2" /> +<text x="318.41" y="1567.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="270.8" y="1861" width="0.3" height="15.0" fill="rgb(226,200,3)" rx="2" ry="2" /> +<text x="273.79" y="1871.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="894.5" y="2661" width="0.3" height="15.0" fill="rgb(244,125,20)" rx="2" ry="2" /> +<text x="897.50" y="2671.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (686 samples, 19.22%)</title><rect x="422.2" y="2069" width="226.7" height="15.0" fill="rgb(226,107,14)" rx="2" ry="2" /> +<text x="425.17" y="2079.5" >Nsfisis\Waddiwasi\Execution\Ru..</text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (13 samples, 0.36%)</title><rect x="402.3" y="1909" width="4.3" height="15.0" fill="rgb(249,218,12)" rx="2" ry="2" /> +<text x="405.34" y="1919.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (2 samples, 0.06%)</title><rect x="954.7" y="2069" width="0.6" height="15.0" fill="rgb(226,104,9)" rx="2" ry="2" /> +<text x="957.66" y="2079.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (5 samples, 0.14%)</title><rect x="849.6" y="2533" width="1.6" height="15.0" fill="rgb(228,184,8)" rx="2" ry="2" /> +<text x="852.55" y="2543.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (2 samples, 0.06%)</title><rect x="705.4" y="2661" width="0.7" height="15.0" fill="rgb(246,82,52)" rx="2" ry="2" /> +<text x="708.44" y="2671.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (7 samples, 0.20%)</title><rect x="662.8" y="2357" width="2.3" height="15.0" fill="rgb(250,103,28)" rx="2" ry="2" /> +<text x="665.80" y="2367.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.03%)</title><rect x="954.3" y="2901" width="0.4" height="15.0" fill="rgb(242,117,7)" rx="2" ry="2" /> +<text x="957.33" y="2911.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="790.1" y="2181" width="0.3" height="15.0" fill="rgb(206,161,21)" rx="2" ry="2" /> +<text x="793.06" y="2191.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.03%)</title><rect x="950.7" y="2485" width="0.3" height="15.0" fill="rgb(233,67,31)" rx="2" ry="2" /> +<text x="953.69" y="2495.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.03%)</title><rect x="783.4" y="2741" width="0.4" height="15.0" fill="rgb(240,97,15)" rx="2" ry="2" /> +<text x="786.45" y="2751.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (2 samples, 0.06%)</title><rect x="348.1" y="1829" width="0.7" height="15.0" fill="rgb(241,137,5)" rx="2" ry="2" /> +<text x="351.13" y="1839.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (3 samples, 0.08%)</title><rect x="305.8" y="1813" width="1.0" height="15.0" fill="rgb(217,92,10)" rx="2" ry="2" /> +<text x="308.83" y="1823.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.03%)</title><rect x="661.8" y="1973" width="0.3" height="15.0" fill="rgb(216,195,48)" rx="2" ry="2" /> +<text x="664.81" y="1983.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (4 samples, 0.11%)</title><rect x="283.7" y="1909" width="1.3" height="15.0" fill="rgb(221,141,0)" rx="2" ry="2" /> +<text x="286.68" y="1919.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="363.7" y="1573" width="0.3" height="15.0" fill="rgb(244,96,30)" rx="2" ry="2" /> +<text x="366.67" y="1583.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (2 samples, 0.06%)</title><rect x="400.7" y="1909" width="0.7" height="15.0" fill="rgb(227,114,31)" rx="2" ry="2" /> +<text x="403.69" y="1919.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\ControlFlowResult::Br (1 samples, 0.03%)</title><rect x="808.6" y="2213" width="0.3" height="15.0" fill="rgb(240,37,35)" rx="2" ry="2" /> +<text x="811.57" y="2223.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (1 samples, 0.03%)</title><rect x="411.6" y="1829" width="0.3" height="15.0" fill="rgb(219,226,45)" rx="2" ry="2" /> +<text x="414.60" y="1839.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="893.5" y="2597" width="0.3" height="15.0" fill="rgb(252,200,31)" rx="2" ry="2" /> +<text x="896.51" y="2607.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (7 samples, 0.20%)</title><rect x="387.5" y="1653" width="2.3" height="15.0" fill="rgb(226,178,22)" rx="2" ry="2" /> +<text x="390.47" y="1663.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (3 samples, 0.08%)</title><rect x="650.2" y="2261" width="1.0" height="15.0" fill="rgb(227,103,40)" rx="2" ry="2" /> +<text x="653.24" y="2271.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (125 samples, 3.50%)</title><rect x="799.6" y="2421" width="41.4" height="15.0" fill="rgb(223,154,44)" rx="2" ry="2" /> +<text x="802.64" y="2431.5" >Nsf..</text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (6 samples, 0.17%)</title><rect x="247.3" y="3237" width="2.0" height="15.0" fill="rgb(233,122,39)" rx="2" ry="2" /> +<text x="250.32" y="3247.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.03%)</title><rect x="422.8" y="917" width="0.4" height="15.0" fill="rgb(220,220,9)" rx="2" ry="2" /> +<text x="425.83" y="927.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="1154.6" y="3429" width="0.4" height="15.0" fill="rgb(223,100,43)" rx="2" ry="2" /> +<text x="1157.63" y="3439.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="1159.3" y="3429" width="0.3" height="15.0" fill="rgb(213,194,34)" rx="2" ry="2" /> +<text x="1162.26" y="3439.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (1 samples, 0.03%)</title><rect x="848.2" y="2661" width="0.4" height="15.0" fill="rgb(252,120,20)" rx="2" ry="2" /> +<text x="851.23" y="2671.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\StackEntry::Value (1 samples, 0.03%)</title><rect x="808.2" y="2213" width="0.4" height="15.0" fill="rgb(236,211,33)" rx="2" ry="2" /> +<text x="811.24" y="2223.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (1 samples, 0.03%)</title><rect x="843.3" y="2325" width="0.3" height="15.0" fill="rgb(216,59,25)" rx="2" ry="2" /> +<text x="846.27" y="2335.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeHostFunc (1 samples, 0.03%)</title><rect x="848.2" y="3045" width="0.4" height="15.0" fill="rgb(225,29,51)" rx="2" ry="2" /> +<text x="851.23" y="3055.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (3 samples, 0.08%)</title><rect x="1151.0" y="3509" width="1.0" height="15.0" fill="rgb(252,37,40)" rx="2" ry="2" /> +<text x="1154.00" y="3519.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Stack::popI32 (9 samples, 0.25%)</title><rect x="191.8" y="3445" width="3.0" height="15.0" fill="rgb(216,155,24)" rx="2" ry="2" /> +<text x="194.79" y="3455.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (6 samples, 0.17%)</title><rect x="849.6" y="2789" width="1.9" height="15.0" fill="rgb(212,102,42)" rx="2" ry="2" /> +<text x="852.55" y="2799.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="903.8" y="2597" width="0.3" height="15.0" fill="rgb(208,180,15)" rx="2" ry="2" /> +<text x="906.76" y="2607.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.03%)</title><rect x="270.8" y="1909" width="0.3" height="15.0" fill="rgb(206,134,26)" rx="2" ry="2" /> +<text x="273.79" y="1919.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (1 samples, 0.03%)</title><rect x="299.9" y="1701" width="0.3" height="15.0" fill="rgb(205,112,2)" rx="2" ry="2" /> +<text x="302.88" y="1711.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (2 samples, 0.06%)</title><rect x="302.2" y="1605" width="0.7" height="15.0" fill="rgb(234,47,2)" rx="2" ry="2" /> +<text x="305.19" y="1615.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (2 samples, 0.06%)</title><rect x="1085.9" y="3365" width="0.6" height="15.0" fill="rgb(212,229,0)" rx="2" ry="2" /> +<text x="1088.88" y="3375.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="407.3" y="2117" width="0.3" height="15.0" fill="rgb(214,217,17)" rx="2" ry="2" /> +<text x="410.30" y="2127.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="315.4" y="1573" width="0.3" height="15.0" fill="rgb(232,29,38)" rx="2" ry="2" /> +<text x="318.41" y="1583.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (16 samples, 0.45%)</title><rect x="401.4" y="1957" width="5.2" height="15.0" fill="rgb(231,130,49)" rx="2" ry="2" /> +<text x="404.35" y="1967.5" ></text> +</g> +<g > +<title><unknown> (1 samples, 0.03%)</title><rect x="373.9" y="1845" width="0.3" height="15.0" fill="rgb(237,218,1)" rx="2" ry="2" /> +<text x="376.92" y="1855.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.03%)</title><rect x="845.3" y="2677" width="0.3" height="15.0" fill="rgb(216,95,7)" rx="2" ry="2" /> +<text x="848.25" y="2687.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (3 samples, 0.08%)</title><rect x="316.1" y="1733" width="1.0" height="15.0" fill="rgb(229,51,36)" rx="2" ry="2" /> +<text x="319.07" y="1743.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="297.6" y="1669" width="0.3" height="15.0" fill="rgb(228,100,4)" rx="2" ry="2" /> +<text x="300.56" y="1679.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (3 samples, 0.08%)</title><rect x="301.9" y="1749" width="1.0" height="15.0" fill="rgb(226,70,39)" rx="2" ry="2" /> +<text x="304.86" y="1759.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="842.6" y="2341" width="0.3" height="15.0" fill="rgb(244,105,35)" rx="2" ry="2" /> +<text x="845.61" y="2351.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (26 samples, 0.73%)</title><rect x="259.2" y="2053" width="8.6" height="15.0" fill="rgb(224,53,34)" rx="2" ry="2" /> +<text x="262.22" y="2063.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (56 samples, 1.57%)</title><rect x="813.9" y="2309" width="18.5" height="15.0" fill="rgb(227,181,38)" rx="2" ry="2" /> +<text x="816.85" y="2319.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (4 samples, 0.11%)</title><rect x="844.6" y="2901" width="1.3" height="15.0" fill="rgb(221,89,8)" rx="2" ry="2" /> +<text x="847.59" y="2911.5" ></text> +</g> +<g > +<title><unknown> (1 samples, 0.03%)</title><rect x="789.7" y="2229" width="0.4" height="15.0" fill="rgb(245,143,31)" rx="2" ry="2" /> +<text x="792.73" y="2239.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.03%)</title><rect x="843.9" y="2933" width="0.4" height="15.0" fill="rgb(212,168,26)" rx="2" ry="2" /> +<text x="846.93" y="2943.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (26 samples, 0.73%)</title><rect x="667.4" y="2917" width="8.6" height="15.0" fill="rgb(254,104,28)" rx="2" ry="2" /> +<text x="670.43" y="2927.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::invokeByFuncAddr (1 samples, 0.03%)</title><rect x="843.9" y="2981" width="0.4" height="15.0" fill="rgb(241,20,26)" rx="2" ry="2" /> +<text x="846.93" y="2991.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="1104.4" y="2533" width="0.3" height="15.0" fill="rgb(211,10,46)" rx="2" ry="2" /> +<text x="1107.39" y="2543.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (174 samples, 4.87%)</title><rect x="784.4" y="2661" width="57.5" height="15.0" fill="rgb(242,97,5)" rx="2" ry="2" /> +<text x="787.44" y="2671.5" >Nsfisi..</text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="675.7" y="2565" width="0.3" height="15.0" fill="rgb(235,18,11)" rx="2" ry="2" /> +<text x="678.69" y="2575.5" ></text> +</g> +<g > +<title><unknown> (1 samples, 0.03%)</title><rect x="870.4" y="1973" width="0.3" height="15.0" fill="rgb(250,192,25)" rx="2" ry="2" /> +<text x="873.38" y="1983.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (1 samples, 0.03%)</title><rect x="301.5" y="1765" width="0.4" height="15.0" fill="rgb(238,110,35)" rx="2" ry="2" /> +<text x="304.53" y="1775.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\BinaryFormat\Decoder::decodeInstrsUntil (1 samples, 0.03%)</title><rect x="12.3" y="3237" width="0.3" height="15.0" fill="rgb(231,153,6)" rx="2" ry="2" /> +<text x="15.31" y="3247.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\StackEntry::Value (5 samples, 0.14%)</title><rect x="1156.0" y="3525" width="1.6" height="15.0" fill="rgb(248,188,44)" rx="2" ry="2" /> +<text x="1158.96" y="3535.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (2 samples, 0.06%)</title><rect x="954.7" y="1637" width="0.6" height="15.0" fill="rgb(220,110,53)" rx="2" ry="2" /> +<text x="957.66" y="1647.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\ControlFlowResults\Br::__construct (1 samples, 0.03%)</title><rect x="1074.6" y="3477" width="0.4" height="15.0" fill="rgb(243,89,29)" rx="2" ry="2" /> +<text x="1077.64" y="3487.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (2 samples, 0.06%)</title><rect x="405.0" y="1125" width="0.6" height="15.0" fill="rgb(251,172,36)" rx="2" ry="2" /> +<text x="407.99" y="1135.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Stack::pushI32 (1 samples, 0.03%)</title><rect x="1138.1" y="3413" width="0.3" height="15.0" fill="rgb(224,90,50)" rx="2" ry="2" /> +<text x="1141.11" y="3423.5" ></text> +</g> +<g > +<title>assert (1 samples, 0.03%)</title><rect x="400.4" y="1573" width="0.3" height="15.0" fill="rgb(241,89,1)" rx="2" ry="2" /> +<text x="403.36" y="1583.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (709 samples, 19.86%)</title><rect x="417.2" y="2357" width="234.4" height="15.0" fill="rgb(222,199,8)" rx="2" ry="2" /> +<text x="420.22" y="2367.5" >Nsfisis\Waddiwasi\Execution\Run..</text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="649.2" y="2053" width="0.4" height="15.0" fill="rgb(214,2,30)" rx="2" ry="2" /> +<text x="652.25" y="2063.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="271.8" y="2117" width="0.3" height="15.0" fill="rgb(246,116,48)" rx="2" ry="2" /> +<text x="274.78" y="2127.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="249.3" y="2885" width="0.3" height="15.0" fill="rgb(247,119,16)" rx="2" ry="2" /> +<text x="252.31" y="2895.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (1 samples, 0.03%)</title><rect x="954.3" y="3141" width="0.4" height="15.0" fill="rgb(235,31,47)" rx="2" ry="2" /> +<text x="957.33" y="3151.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.03%)</title><rect x="846.6" y="2581" width="0.3" height="15.0" fill="rgb(254,224,43)" rx="2" ry="2" /> +<text x="849.58" y="2591.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.03%)</title><rect x="847.2" y="2517" width="0.4" height="15.0" fill="rgb(237,178,10)" rx="2" ry="2" /> +<text x="850.24" y="2527.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="400.7" y="1797" width="0.3" height="15.0" fill="rgb(230,2,13)" rx="2" ry="2" /> +<text x="403.69" y="1807.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="313.4" y="2021" width="0.4" height="15.0" fill="rgb(208,11,29)" rx="2" ry="2" /> +<text x="316.43" y="2031.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.03%)</title><rect x="316.4" y="1173" width="0.3" height="15.0" fill="rgb(239,194,34)" rx="2" ry="2" /> +<text x="319.40" y="1183.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (3 samples, 0.08%)</title><rect x="952.0" y="2645" width="1.0" height="15.0" fill="rgb(207,86,4)" rx="2" ry="2" /> +<text x="955.02" y="2655.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (5 samples, 0.14%)</title><rect x="301.2" y="1813" width="1.7" height="15.0" fill="rgb(217,108,54)" rx="2" ry="2" /> +<text x="304.20" y="1823.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="375.9" y="1349" width="0.3" height="15.0" fill="rgb(227,204,49)" rx="2" ry="2" /> +<text x="378.90" y="1359.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="848.2" y="2693" width="0.4" height="15.0" fill="rgb(253,127,19)" rx="2" ry="2" /> +<text x="851.23" y="2703.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="843.3" y="2277" width="0.3" height="15.0" fill="rgb(206,3,27)" rx="2" ry="2" /> +<text x="846.27" y="2287.5" ></text> +</g> +<g > +<title><unknown> (1 samples, 0.03%)</title><rect x="870.4" y="773" width="0.3" height="15.0" fill="rgb(232,9,46)" rx="2" ry="2" /> +<text x="873.38" y="783.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (2 samples, 0.06%)</title><rect x="405.0" y="1109" width="0.6" height="15.0" fill="rgb(253,43,46)" rx="2" ry="2" /> +<text x="407.99" y="1119.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="953.7" y="2949" width="0.3" height="15.0" fill="rgb(249,58,49)" rx="2" ry="2" /> +<text x="956.67" y="2959.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.03%)</title><rect x="1108.0" y="3285" width="0.4" height="15.0" fill="rgb(237,194,47)" rx="2" ry="2" /> +<text x="1111.03" y="3295.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (2 samples, 0.06%)</title><rect x="954.7" y="885" width="0.6" height="15.0" fill="rgb(248,164,0)" rx="2" ry="2" /> +<text x="957.66" y="895.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.03%)</title><rect x="307.8" y="1685" width="0.3" height="15.0" fill="rgb(245,150,18)" rx="2" ry="2" /> +<text x="310.81" y="1695.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (2 samples, 0.06%)</title><rect x="849.6" y="2309" width="0.6" height="15.0" fill="rgb(225,96,29)" rx="2" ry="2" /> +<text x="852.55" y="2319.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (4 samples, 0.11%)</title><rect x="661.5" y="2293" width="1.3" height="15.0" fill="rgb(230,56,17)" rx="2" ry="2" /> +<text x="664.48" y="2303.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.03%)</title><rect x="697.5" y="2133" width="0.3" height="15.0" fill="rgb(218,95,34)" rx="2" ry="2" /> +<text x="700.51" y="2143.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.03%)</title><rect x="406.6" y="1621" width="0.4" height="15.0" fill="rgb(252,203,27)" rx="2" ry="2" /> +<text x="409.64" y="1631.5" ></text> +</g> +<g > +<title><unknown> (2 samples, 0.06%)</title><rect x="1161.9" y="3509" width="0.7" height="15.0" fill="rgb(211,64,24)" rx="2" ry="2" /> +<text x="1164.90" y="3519.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.03%)</title><rect x="790.1" y="1941" width="0.3" height="15.0" fill="rgb(240,173,33)" rx="2" ry="2" /> +<text x="793.06" y="1951.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (1 samples, 0.03%)</title><rect x="1153.6" y="3477" width="0.4" height="15.0" fill="rgb(214,141,24)" rx="2" ry="2" /> +<text x="1156.64" y="3487.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Stack::popValue (1 samples, 0.03%)</title><rect x="332.3" y="1685" width="0.3" height="15.0" fill="rgb(247,146,27)" rx="2" ry="2" /> +<text x="335.27" y="1695.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.03%)</title><rect x="851.2" y="2485" width="0.3" height="15.0" fill="rgb(227,54,48)" rx="2" ry="2" /> +<text x="854.20" y="2495.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (3 samples, 0.08%)</title><rect x="307.1" y="1813" width="1.0" height="15.0" fill="rgb(225,97,47)" rx="2" ry="2" /> +<text x="310.15" y="1823.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.03%)</title><rect x="954.0" y="2773" width="0.3" height="15.0" fill="rgb(218,168,20)" rx="2" ry="2" /> +<text x="957.00" y="2783.5" ></text> +</g> +<g > +<title><unknown> (1 samples, 0.03%)</title><rect x="870.4" y="1717" width="0.3" height="15.0" fill="rgb(216,123,2)" rx="2" ry="2" /> +<text x="873.38" y="1727.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\BinaryFormat\Decoder::{closure}(/home/ken/src/php-waddiwasi/src/BinaryFormat/Decoder.php:1012-1016) (5 samples, 0.14%)</title><rect x="846.6" y="3061" width="1.6" height="15.0" fill="rgb(207,2,40)" rx="2" ry="2" /> +<text x="849.58" y="3071.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="880.6" y="2501" width="0.4" height="15.0" fill="rgb(241,94,17)" rx="2" ry="2" /> +<text x="883.62" y="2511.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (4 samples, 0.11%)</title><rect x="246.0" y="3205" width="1.3" height="15.0" fill="rgb(209,59,13)" rx="2" ry="2" /> +<text x="249.00" y="3215.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.03%)</title><rect x="697.5" y="1941" width="0.3" height="15.0" fill="rgb(208,17,31)" rx="2" ry="2" /> +<text x="700.51" y="1951.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="268.1" y="1925" width="0.4" height="15.0" fill="rgb(217,109,16)" rx="2" ry="2" /> +<text x="271.15" y="1935.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (2 samples, 0.06%)</title><rect x="954.7" y="2405" width="0.6" height="15.0" fill="rgb(237,0,50)" rx="2" ry="2" /> +<text x="957.66" y="2415.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.03%)</title><rect x="845.6" y="2581" width="0.3" height="15.0" fill="rgb(207,13,22)" rx="2" ry="2" /> +<text x="848.59" y="2591.5" ></text> +</g> +<g > +<title><unknown> (1 samples, 0.03%)</title><rect x="1182.1" y="3461" width="0.3" height="15.0" fill="rgb(206,128,48)" rx="2" ry="2" /> +<text x="1185.07" y="3471.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (3 samples, 0.08%)</title><rect x="701.8" y="2373" width="1.0" height="15.0" fill="rgb(224,151,20)" rx="2" ry="2" /> +<text x="704.80" y="2383.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (82 samples, 2.30%)</title><rect x="676.0" y="2805" width="27.1" height="15.0" fill="rgb(225,18,45)" rx="2" ry="2" /> +<text x="679.02" y="2815.5" >N..</text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (8 samples, 0.22%)</title><rect x="672.4" y="2549" width="2.6" height="15.0" fill="rgb(254,94,4)" rx="2" ry="2" /> +<text x="675.39" y="2559.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Stack::popValue (1 samples, 0.03%)</title><rect x="1159.3" y="3381" width="0.3" height="15.0" fill="rgb(247,129,10)" rx="2" ry="2" /> +<text x="1162.26" y="3391.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.03%)</title><rect x="246.0" y="2869" width="0.3" height="15.0" fill="rgb(217,0,4)" rx="2" ry="2" /> +<text x="249.00" y="2879.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (2 samples, 0.06%)</title><rect x="354.4" y="1781" width="0.7" height="15.0" fill="rgb(223,226,54)" rx="2" ry="2" /> +<text x="357.41" y="1791.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (3 samples, 0.08%)</title><rect x="842.9" y="2869" width="1.0" height="15.0" fill="rgb(247,195,23)" rx="2" ry="2" /> +<text x="845.94" y="2879.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (2 samples, 0.06%)</title><rect x="661.8" y="2053" width="0.7" height="15.0" fill="rgb(223,10,46)" rx="2" ry="2" /> +<text x="664.81" y="2063.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (1 samples, 0.03%)</title><rect x="400.4" y="1749" width="0.3" height="15.0" fill="rgb(218,84,36)" rx="2" ry="2" /> +<text x="403.36" y="1759.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.03%)</title><rect x="845.6" y="2613" width="0.3" height="15.0" fill="rgb(233,202,33)" rx="2" ry="2" /> +<text x="848.59" y="2623.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doLoadI32 (1 samples, 0.03%)</title><rect x="783.8" y="2645" width="0.3" height="15.0" fill="rgb(241,171,35)" rx="2" ry="2" /> +<text x="786.78" y="2655.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doLoadI32 (1 samples, 0.03%)</title><rect x="941.8" y="2517" width="0.3" height="15.0" fill="rgb(253,225,4)" rx="2" ry="2" /> +<text x="944.77" y="2527.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (1 samples, 0.03%)</title><rect x="268.1" y="1957" width="0.4" height="15.0" fill="rgb(231,84,10)" rx="2" ry="2" /> +<text x="271.15" y="1967.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.03%)</title><rect x="938.5" y="2485" width="0.3" height="15.0" fill="rgb(227,116,54)" rx="2" ry="2" /> +<text x="941.46" y="2495.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.03%)</title><rect x="400.4" y="1781" width="0.3" height="15.0" fill="rgb(234,107,10)" rx="2" ry="2" /> +<text x="403.36" y="1791.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (16 samples, 0.45%)</title><rect x="331.6" y="1893" width="5.3" height="15.0" fill="rgb(212,137,1)" rx="2" ry="2" /> +<text x="334.61" y="1903.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="422.8" y="901" width="0.4" height="15.0" fill="rgb(218,13,17)" rx="2" ry="2" /> +<text x="425.83" y="911.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="251.6" y="2725" width="0.3" height="15.0" fill="rgb(211,85,46)" rx="2" ry="2" /> +<text x="254.62" y="2735.5" ></text> +</g> +<g > +<title><unknown> (1 samples, 0.03%)</title><rect x="672.1" y="2581" width="0.3" height="15.0" fill="rgb(208,34,4)" rx="2" ry="2" /> +<text x="675.06" y="2591.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (3 samples, 0.08%)</title><rect x="375.2" y="1525" width="1.0" height="15.0" fill="rgb(209,207,15)" rx="2" ry="2" /> +<text x="378.24" y="1535.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (42 samples, 1.18%)</title><rect x="1091.5" y="3429" width="13.9" height="15.0" fill="rgb(236,213,9)" rx="2" ry="2" /> +<text x="1094.50" y="3439.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (21 samples, 0.59%)</title><rect x="400.0" y="2133" width="7.0" height="15.0" fill="rgb(229,55,6)" rx="2" ry="2" /> +<text x="403.03" y="2143.5" ></text> +</g> +<g > +<title><unknown> (1 samples, 0.03%)</title><rect x="376.6" y="1925" width="0.3" height="15.0" fill="rgb(249,90,32)" rx="2" ry="2" /> +<text x="379.56" y="1935.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="411.6" y="1669" width="0.3" height="15.0" fill="rgb(230,111,29)" rx="2" ry="2" /> +<text x="414.60" y="1679.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (2 samples, 0.06%)</title><rect x="954.7" y="2485" width="0.6" height="15.0" fill="rgb(234,18,8)" rx="2" ry="2" /> +<text x="957.66" y="2495.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.03%)</title><rect x="843.9" y="2741" width="0.4" height="15.0" fill="rgb(252,133,18)" rx="2" ry="2" /> +<text x="846.93" y="2751.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (2 samples, 0.06%)</title><rect x="405.0" y="1013" width="0.6" height="15.0" fill="rgb(220,134,17)" rx="2" ry="2" /> +<text x="407.99" y="1023.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="664.5" y="2021" width="0.3" height="15.0" fill="rgb(215,217,26)" rx="2" ry="2" /> +<text x="667.45" y="2031.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.03%)</title><rect x="1150.7" y="3381" width="0.3" height="15.0" fill="rgb(218,39,10)" rx="2" ry="2" /> +<text x="1153.67" y="3391.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="1139.4" y="3493" width="0.4" height="15.0" fill="rgb(249,121,13)" rx="2" ry="2" /> +<text x="1142.43" y="3503.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="263.5" y="1733" width="0.3" height="15.0" fill="rgb(215,93,12)" rx="2" ry="2" /> +<text x="266.52" y="1743.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (127 samples, 3.56%)</title><rect x="853.2" y="2853" width="42.0" height="15.0" fill="rgb(248,96,31)" rx="2" ry="2" /> +<text x="856.19" y="2863.5" >Nsf..</text> +</g> +<g > +<title><unknown> (1 samples, 0.03%)</title><rect x="870.4" y="949" width="0.3" height="15.0" fill="rgb(217,163,37)" rx="2" ry="2" /> +<text x="873.38" y="959.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (9 samples, 0.25%)</title><rect x="875.0" y="2293" width="3.0" height="15.0" fill="rgb(205,201,13)" rx="2" ry="2" /> +<text x="878.00" y="2303.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="851.2" y="2309" width="0.3" height="15.0" fill="rgb(232,21,27)" rx="2" ry="2" /> +<text x="854.20" y="2319.5" ></text> +</g> +<g > +<title>assert (1 samples, 0.03%)</title><rect x="834.0" y="1925" width="0.3" height="15.0" fill="rgb(244,35,4)" rx="2" ry="2" /> +<text x="837.02" y="1935.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::deactivateFrame (1 samples, 0.03%)</title><rect x="903.8" y="2613" width="0.3" height="15.0" fill="rgb(245,48,39)" rx="2" ry="2" /> +<text x="906.76" y="2623.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (2 samples, 0.06%)</title><rect x="672.4" y="2421" width="0.6" height="15.0" fill="rgb(253,111,29)" rx="2" ry="2" /> +<text x="675.39" y="2431.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (7 samples, 0.20%)</title><rect x="366.0" y="1941" width="2.3" height="15.0" fill="rgb(225,2,22)" rx="2" ry="2" /> +<text x="368.98" y="1951.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (230 samples, 6.44%)</title><rect x="707.4" y="2341" width="76.0" height="15.0" fill="rgb(248,154,4)" rx="2" ry="2" /> +<text x="710.42" y="2351.5" >Nsfisis\..</text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\MemInst::storeI32 (1 samples, 0.03%)</title><rect x="1162.9" y="3509" width="0.3" height="15.0" fill="rgb(209,169,54)" rx="2" ry="2" /> +<text x="1165.90" y="3519.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="271.5" y="2149" width="0.3" height="15.0" fill="rgb(209,199,54)" rx="2" ry="2" /> +<text x="274.45" y="2159.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (2 samples, 0.06%)</title><rect x="842.3" y="2757" width="0.6" height="15.0" fill="rgb(235,100,54)" rx="2" ry="2" /> +<text x="845.28" y="2767.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (2 samples, 0.06%)</title><rect x="666.4" y="2901" width="0.7" height="15.0" fill="rgb(236,39,44)" rx="2" ry="2" /> +<text x="669.44" y="2911.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (688 samples, 19.27%)</title><rect x="422.2" y="2165" width="227.4" height="15.0" fill="rgb(252,79,21)" rx="2" ry="2" /> +<text x="425.17" y="2175.5" >Nsfisis\Waddiwasi\Execution\Ru..</text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Structure\Instructions\Instr::BrIf (1 samples, 0.03%)</title><rect x="12.3" y="3173" width="0.3" height="15.0" fill="rgb(208,125,54)" rx="2" ry="2" /> +<text x="15.31" y="3183.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\MemInst::storeI32 (5 samples, 0.14%)</title><rect x="225.2" y="3445" width="1.6" height="15.0" fill="rgb(245,143,4)" rx="2" ry="2" /> +<text x="228.18" y="3455.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (2 samples, 0.06%)</title><rect x="268.1" y="2005" width="0.7" height="15.0" fill="rgb(231,38,2)" rx="2" ry="2" /> +<text x="271.15" y="2015.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.03%)</title><rect x="270.8" y="1845" width="0.3" height="15.0" fill="rgb(238,65,11)" rx="2" ry="2" /> +<text x="273.79" y="1855.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (1 samples, 0.03%)</title><rect x="246.0" y="3061" width="0.3" height="15.0" fill="rgb(240,185,16)" rx="2" ry="2" /> +<text x="249.00" y="3071.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.03%)</title><rect x="671.4" y="2741" width="0.3" height="15.0" fill="rgb(215,208,6)" rx="2" ry="2" /> +<text x="674.39" y="2751.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="651.6" y="2341" width="0.3" height="15.0" fill="rgb(229,94,38)" rx="2" ry="2" /> +<text x="654.56" y="2351.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (2 samples, 0.06%)</title><rect x="954.7" y="2597" width="0.6" height="15.0" fill="rgb(244,207,47)" rx="2" ry="2" /> +<text x="957.66" y="2607.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (2 samples, 0.06%)</title><rect x="842.9" y="2645" width="0.7" height="15.0" fill="rgb(225,159,52)" rx="2" ry="2" /> +<text x="845.94" y="2655.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\MemInst::storeI64 (1 samples, 0.03%)</title><rect x="775.8" y="2181" width="0.4" height="15.0" fill="rgb(251,51,13)" rx="2" ry="2" /> +<text x="778.84" y="2191.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.03%)</title><rect x="346.2" y="1909" width="0.3" height="15.0" fill="rgb(205,154,46)" rx="2" ry="2" /> +<text x="349.15" y="1919.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.03%)</title><rect x="263.5" y="1621" width="0.3" height="15.0" fill="rgb(226,211,37)" rx="2" ry="2" /> +<text x="266.52" y="1631.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.03%)</title><rect x="271.8" y="2165" width="0.3" height="15.0" fill="rgb(219,23,1)" rx="2" ry="2" /> +<text x="274.78" y="2175.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doStoreI32 (2 samples, 0.06%)</title><rect x="1110.3" y="3509" width="0.7" height="15.0" fill="rgb(236,49,43)" rx="2" ry="2" /> +<text x="1113.34" y="3519.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (3 samples, 0.08%)</title><rect x="250.3" y="2725" width="1.0" height="15.0" fill="rgb(229,1,50)" rx="2" ry="2" /> +<text x="253.30" y="2735.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (2 samples, 0.06%)</title><rect x="697.2" y="2421" width="0.6" height="15.0" fill="rgb(249,24,51)" rx="2" ry="2" /> +<text x="700.18" y="2431.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (1 samples, 0.03%)</title><rect x="847.2" y="2629" width="0.4" height="15.0" fill="rgb(245,20,21)" rx="2" ry="2" /> +<text x="850.24" y="2639.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (2 samples, 0.06%)</title><rect x="839.0" y="2293" width="0.6" height="15.0" fill="rgb(222,145,6)" rx="2" ry="2" /> +<text x="841.97" y="2303.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.03%)</title><rect x="400.7" y="1813" width="0.3" height="15.0" fill="rgb(218,8,28)" rx="2" ry="2" /> +<text x="403.69" y="1823.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (2 samples, 0.06%)</title><rect x="270.5" y="2053" width="0.6" height="15.0" fill="rgb(249,169,17)" rx="2" ry="2" /> +<text x="273.46" y="2063.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (96 samples, 2.69%)</title><rect x="808.9" y="2373" width="31.7" height="15.0" fill="rgb(212,40,24)" rx="2" ry="2" /> +<text x="811.90" y="2383.5" >Ns..</text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (11 samples, 0.31%)</title><rect x="1101.4" y="3253" width="3.7" height="15.0" fill="rgb(233,108,18)" rx="2" ry="2" /> +<text x="1104.42" y="3263.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="391.1" y="1989" width="0.3" height="15.0" fill="rgb(249,206,6)" rx="2" ry="2" /> +<text x="394.10" y="1999.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="265.2" y="1573" width="0.3" height="15.0" fill="rgb(211,195,46)" rx="2" ry="2" /> +<text x="268.17" y="1583.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (1 samples, 0.03%)</title><rect x="845.6" y="2693" width="0.3" height="15.0" fill="rgb(231,77,14)" rx="2" ry="2" /> +<text x="848.59" y="2703.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="843.6" y="2373" width="0.3" height="15.0" fill="rgb(210,1,25)" rx="2" ry="2" /> +<text x="846.60" y="2383.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (25 samples, 0.70%)</title><rect x="942.8" y="2613" width="8.2" height="15.0" fill="rgb(231,197,32)" rx="2" ry="2" /> +<text x="945.76" y="2623.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\MemInst::storeByte (1 samples, 0.03%)</title><rect x="193.1" y="3429" width="0.3" height="15.0" fill="rgb(210,141,22)" rx="2" ry="2" /> +<text x="196.11" y="3439.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (51 samples, 1.43%)</title><rect x="815.5" y="2261" width="16.9" height="15.0" fill="rgb(223,148,32)" rx="2" ry="2" /> +<text x="818.51" y="2271.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (2 samples, 0.06%)</title><rect x="340.9" y="1957" width="0.6" height="15.0" fill="rgb(213,176,42)" rx="2" ry="2" /> +<text x="343.86" y="1967.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.03%)</title><rect x="328.3" y="2101" width="0.3" height="15.0" fill="rgb(231,163,33)" rx="2" ry="2" /> +<text x="331.30" y="2111.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.03%)</title><rect x="375.9" y="1429" width="0.3" height="15.0" fill="rgb(246,91,45)" rx="2" ry="2" /> +<text x="378.90" y="1439.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (3 samples, 0.08%)</title><rect x="848.6" y="3189" width="1.0" height="15.0" fill="rgb(228,51,21)" rx="2" ry="2" /> +<text x="851.56" y="3199.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (2 samples, 0.06%)</title><rect x="1104.1" y="2549" width="0.6" height="15.0" fill="rgb(247,153,51)" rx="2" ry="2" /> +<text x="1107.06" y="2559.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (317 samples, 8.88%)</title><rect x="849.6" y="3141" width="104.7" height="15.0" fill="rgb(220,157,13)" rx="2" ry="2" /> +<text x="852.55" y="3151.5" >Nsfisis\Wadd..</text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="328.3" y="2085" width="0.3" height="15.0" fill="rgb(216,48,5)" rx="2" ry="2" /> +<text x="331.30" y="2095.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.03%)</title><rect x="838.6" y="2133" width="0.4" height="15.0" fill="rgb(213,182,54)" rx="2" ry="2" /> +<text x="841.64" y="2143.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (2 samples, 0.06%)</title><rect x="954.7" y="1141" width="0.6" height="15.0" fill="rgb(214,74,6)" rx="2" ry="2" /> +<text x="957.66" y="1151.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (1 samples, 0.03%)</title><rect x="316.4" y="1141" width="0.3" height="15.0" fill="rgb(254,157,17)" rx="2" ry="2" /> +<text x="319.40" y="1151.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.03%)</title><rect x="316.4" y="1237" width="0.3" height="15.0" fill="rgb(245,175,31)" rx="2" ry="2" /> +<text x="319.40" y="1247.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (2 samples, 0.06%)</title><rect x="302.2" y="1445" width="0.7" height="15.0" fill="rgb(216,208,1)" rx="2" ry="2" /> +<text x="305.19" y="1455.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.03%)</title><rect x="701.5" y="2229" width="0.3" height="15.0" fill="rgb(250,13,24)" rx="2" ry="2" /> +<text x="704.47" y="2239.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="952.3" y="2437" width="0.4" height="15.0" fill="rgb(254,51,37)" rx="2" ry="2" /> +<text x="955.35" y="2447.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.03%)</title><rect x="954.3" y="2933" width="0.4" height="15.0" fill="rgb(248,108,29)" rx="2" ry="2" /> +<text x="957.33" y="2943.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\StackEntry::Value (1 samples, 0.03%)</title><rect x="772.5" y="2165" width="0.4" height="15.0" fill="rgb(251,94,50)" rx="2" ry="2" /> +<text x="775.54" y="2175.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (686 samples, 19.22%)</title><rect x="422.2" y="2133" width="226.7" height="15.0" fill="rgb(249,162,2)" rx="2" ry="2" /> +<text x="425.17" y="2143.5" >Nsfisis\Waddiwasi\Execution\Ru..</text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.03%)</title><rect x="856.2" y="2517" width="0.3" height="15.0" fill="rgb(246,46,49)" rx="2" ry="2" /> +<text x="859.16" y="2527.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (2 samples, 0.06%)</title><rect x="316.1" y="1653" width="0.6" height="15.0" fill="rgb(240,136,30)" rx="2" ry="2" /> +<text x="319.07" y="1663.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (2 samples, 0.06%)</title><rect x="849.6" y="2389" width="0.6" height="15.0" fill="rgb(234,139,15)" rx="2" ry="2" /> +<text x="852.55" y="2399.5" ></text> +</g> +<g > +<title><unknown> (1 samples, 0.03%)</title><rect x="870.4" y="1589" width="0.3" height="15.0" fill="rgb(222,92,5)" rx="2" ry="2" /> +<text x="873.38" y="1599.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.03%)</title><rect x="881.0" y="2613" width="0.3" height="15.0" fill="rgb(244,184,14)" rx="2" ry="2" /> +<text x="883.95" y="2623.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.03%)</title><rect x="667.1" y="2933" width="0.3" height="15.0" fill="rgb(217,118,7)" rx="2" ry="2" /> +<text x="670.10" y="2943.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.03%)</title><rect x="845.6" y="2805" width="0.3" height="15.0" fill="rgb(247,145,38)" rx="2" ry="2" /> +<text x="848.59" y="2815.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (1 samples, 0.03%)</title><rect x="841.0" y="2405" width="0.3" height="15.0" fill="rgb(247,69,13)" rx="2" ry="2" /> +<text x="843.96" y="2415.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (3 samples, 0.08%)</title><rect x="399.0" y="2037" width="1.0" height="15.0" fill="rgb(219,204,46)" rx="2" ry="2" /> +<text x="402.04" y="2047.5" ></text> +</g> +<g > +<title><unknown> (1 samples, 0.03%)</title><rect x="1109.7" y="3461" width="0.3" height="15.0" fill="rgb(245,133,33)" rx="2" ry="2" /> +<text x="1112.68" y="3471.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (18 samples, 0.50%)</title><rect x="306.8" y="1925" width="6.0" height="15.0" fill="rgb(243,42,51)" rx="2" ry="2" /> +<text x="309.82" y="1935.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (4 samples, 0.11%)</title><rect x="374.9" y="1749" width="1.3" height="15.0" fill="rgb(223,82,40)" rx="2" ry="2" /> +<text x="377.91" y="1759.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="675.7" y="2597" width="0.3" height="15.0" fill="rgb(248,107,49)" rx="2" ry="2" /> +<text x="678.69" y="2607.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (3 samples, 0.08%)</title><rect x="1107.4" y="3413" width="1.0" height="15.0" fill="rgb(234,121,21)" rx="2" ry="2" /> +<text x="1110.37" y="3423.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.03%)</title><rect x="783.1" y="2229" width="0.3" height="15.0" fill="rgb(252,204,37)" rx="2" ry="2" /> +<text x="786.11" y="2239.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (66 samples, 1.85%)</title><rect x="856.8" y="2613" width="21.8" height="15.0" fill="rgb(210,9,10)" rx="2" ry="2" /> +<text x="859.82" y="2623.5" >N..</text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (1 samples, 0.03%)</title><rect x="848.2" y="2981" width="0.4" height="15.0" fill="rgb(234,139,25)" rx="2" ry="2" /> +<text x="851.23" y="2991.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (3 samples, 0.08%)</title><rect x="375.2" y="1509" width="1.0" height="15.0" fill="rgb(222,47,49)" rx="2" ry="2" /> +<text x="378.24" y="1519.5" ></text> +</g> +<g > +<title><unknown> (1 samples, 0.03%)</title><rect x="870.4" y="1333" width="0.3" height="15.0" fill="rgb(213,189,41)" rx="2" ry="2" /> +<text x="873.38" y="1343.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (2 samples, 0.06%)</title><rect x="842.9" y="2517" width="0.7" height="15.0" fill="rgb(238,19,44)" rx="2" ry="2" /> +<text x="845.94" y="2527.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (20 samples, 0.56%)</title><rect x="832.4" y="2325" width="6.6" height="15.0" fill="rgb(230,220,38)" rx="2" ry="2" /> +<text x="835.36" y="2335.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (5 samples, 0.14%)</title><rect x="366.3" y="1717" width="1.7" height="15.0" fill="rgb(244,40,5)" rx="2" ry="2" /> +<text x="369.31" y="1727.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="246.3" y="3077" width="0.4" height="15.0" fill="rgb(226,11,12)" rx="2" ry="2" /> +<text x="249.33" y="3087.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (6 samples, 0.17%)</title><rect x="658.8" y="2021" width="2.0" height="15.0" fill="rgb(212,30,5)" rx="2" ry="2" /> +<text x="661.83" y="2031.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (11 samples, 0.31%)</title><rect x="386.1" y="1685" width="3.7" height="15.0" fill="rgb(244,206,13)" rx="2" ry="2" /> +<text x="389.15" y="1695.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="656.5" y="2021" width="0.4" height="15.0" fill="rgb(244,156,46)" rx="2" ry="2" /> +<text x="659.52" y="2031.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="314.1" y="1861" width="0.3" height="15.0" fill="rgb(248,134,51)" rx="2" ry="2" /> +<text x="317.09" y="1871.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (3 samples, 0.08%)</title><rect x="331.6" y="1765" width="1.0" height="15.0" fill="rgb(220,205,9)" rx="2" ry="2" /> +<text x="334.61" y="1775.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (4 samples, 0.11%)</title><rect x="297.9" y="1813" width="1.3" height="15.0" fill="rgb(253,173,10)" rx="2" ry="2" /> +<text x="300.89" y="1823.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="248.6" y="2917" width="0.4" height="15.0" fill="rgb(228,127,39)" rx="2" ry="2" /> +<text x="251.64" y="2927.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.03%)</title><rect x="954.3" y="2741" width="0.4" height="15.0" fill="rgb(223,182,29)" rx="2" ry="2" /> +<text x="957.33" y="2751.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (1 samples, 0.03%)</title><rect x="655.9" y="2117" width="0.3" height="15.0" fill="rgb(231,125,51)" rx="2" ry="2" /> +<text x="658.86" y="2127.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (17 samples, 0.48%)</title><rect x="384.2" y="1797" width="5.6" height="15.0" fill="rgb(239,191,8)" rx="2" ry="2" /> +<text x="387.16" y="1807.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (8 samples, 0.22%)</title><rect x="373.6" y="1893" width="2.6" height="15.0" fill="rgb(251,47,18)" rx="2" ry="2" /> +<text x="376.59" y="1903.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="696.5" y="2533" width="0.3" height="15.0" fill="rgb(230,203,46)" rx="2" ry="2" /> +<text x="699.52" y="2543.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (1 samples, 0.03%)</title><rect x="667.1" y="2965" width="0.3" height="15.0" fill="rgb(244,25,20)" rx="2" ry="2" /> +<text x="670.10" y="2975.5" ></text> +</g> +<g > +<title><unknown> (1 samples, 0.03%)</title><rect x="705.8" y="2629" width="0.3" height="15.0" fill="rgb(235,62,3)" rx="2" ry="2" /> +<text x="708.77" y="2639.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (3 samples, 0.08%)</title><rect x="404.7" y="1365" width="0.9" height="15.0" fill="rgb(251,23,43)" rx="2" ry="2" /> +<text x="407.66" y="1375.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (6 samples, 0.17%)</title><rect x="879.3" y="2741" width="2.0" height="15.0" fill="rgb(240,155,54)" rx="2" ry="2" /> +<text x="882.30" y="2751.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Stack::popValue (1 samples, 0.03%)</title><rect x="951.0" y="2677" width="0.4" height="15.0" fill="rgb(245,19,44)" rx="2" ry="2" /> +<text x="954.03" y="2687.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (4 samples, 0.11%)</title><rect x="954.7" y="2901" width="1.3" height="15.0" fill="rgb(214,82,54)" rx="2" ry="2" /> +<text x="957.66" y="2911.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (2 samples, 0.06%)</title><rect x="954.7" y="1733" width="0.6" height="15.0" fill="rgb(252,120,52)" rx="2" ry="2" /> +<text x="957.66" y="1743.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (1 samples, 0.03%)</title><rect x="841.6" y="2453" width="0.3" height="15.0" fill="rgb(246,28,51)" rx="2" ry="2" /> +<text x="844.62" y="2463.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="400.4" y="1765" width="0.3" height="15.0" fill="rgb(226,143,51)" rx="2" ry="2" /> +<text x="403.36" y="1775.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (8 samples, 0.22%)</title><rect x="396.1" y="2133" width="2.6" height="15.0" fill="rgb(228,43,26)" rx="2" ry="2" /> +<text x="399.06" y="2143.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.03%)</title><rect x="669.4" y="2581" width="0.3" height="15.0" fill="rgb(223,45,24)" rx="2" ry="2" /> +<text x="672.41" y="2591.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Stack::pushI32 (2 samples, 0.06%)</title><rect x="408.3" y="2293" width="0.7" height="15.0" fill="rgb(249,150,7)" rx="2" ry="2" /> +<text x="411.29" y="2303.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.03%)</title><rect x="1154.6" y="3381" width="0.4" height="15.0" fill="rgb(233,218,28)" rx="2" ry="2" /> +<text x="1157.63" y="3391.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.03%)</title><rect x="954.3" y="2517" width="0.4" height="15.0" fill="rgb(215,114,11)" rx="2" ry="2" /> +<text x="957.33" y="2527.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (3 samples, 0.08%)</title><rect x="837.7" y="2229" width="0.9" height="15.0" fill="rgb(253,169,20)" rx="2" ry="2" /> +<text x="840.65" y="2239.5" ></text> +</g> +<g > +<title>{closure}(/home/ken/src/php-waddiwasi/vendor/composer/ClassLoader.php:575-577) (1 samples, 0.03%)</title><rect x="846.2" y="2981" width="0.4" height="15.0" fill="rgb(248,26,2)" rx="2" ry="2" /> +<text x="849.25" y="2991.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (8 samples, 0.22%)</title><rect x="370.3" y="1829" width="2.6" height="15.0" fill="rgb(212,55,32)" rx="2" ry="2" /> +<text x="373.28" y="1839.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="845.6" y="2597" width="0.3" height="15.0" fill="rgb(215,126,47)" rx="2" ry="2" /> +<text x="848.59" y="2607.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (683 samples, 19.13%)</title><rect x="422.8" y="1013" width="225.8" height="15.0" fill="rgb(229,72,54)" rx="2" ry="2" /> +<text x="425.83" y="1023.5" >Nsfisis\Waddiwasi\Execution\R..</text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (8 samples, 0.22%)</title><rect x="288.3" y="1989" width="2.7" height="15.0" fill="rgb(246,196,46)" rx="2" ry="2" /> +<text x="291.31" y="1999.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.03%)</title><rect x="954.3" y="2389" width="0.4" height="15.0" fill="rgb(242,205,43)" rx="2" ry="2" /> +<text x="957.33" y="2399.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (26 samples, 0.73%)</title><rect x="667.4" y="2869" width="8.6" height="15.0" fill="rgb(217,226,0)" rx="2" ry="2" /> +<text x="670.43" y="2879.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (4 samples, 0.11%)</title><rect x="268.1" y="2085" width="1.4" height="15.0" fill="rgb(228,167,50)" rx="2" ry="2" /> +<text x="271.15" y="2095.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (3 samples, 0.08%)</title><rect x="1107.4" y="3493" width="1.0" height="15.0" fill="rgb(215,195,2)" rx="2" ry="2" /> +<text x="1110.37" y="3503.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (3 samples, 0.08%)</title><rect x="1085.6" y="3445" width="0.9" height="15.0" fill="rgb(246,17,49)" rx="2" ry="2" /> +<text x="1088.55" y="3455.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (6 samples, 0.17%)</title><rect x="362.3" y="1877" width="2.0" height="15.0" fill="rgb(216,87,9)" rx="2" ry="2" /> +<text x="365.35" y="1887.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="400.4" y="1797" width="0.3" height="15.0" fill="rgb(242,100,22)" rx="2" ry="2" /> +<text x="403.36" y="1807.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (1 samples, 0.03%)</title><rect x="847.2" y="2805" width="0.4" height="15.0" fill="rgb(238,219,21)" rx="2" ry="2" /> +<text x="850.24" y="2815.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.03%)</title><rect x="702.8" y="2421" width="0.3" height="15.0" fill="rgb(228,119,13)" rx="2" ry="2" /> +<text x="705.80" y="2431.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.03%)</title><rect x="808.6" y="2325" width="0.3" height="15.0" fill="rgb(236,215,24)" rx="2" ry="2" /> +<text x="811.57" y="2335.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (21 samples, 0.59%)</title><rect x="400.0" y="2165" width="7.0" height="15.0" fill="rgb(230,88,12)" rx="2" ry="2" /> +<text x="403.03" y="2175.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (174 samples, 4.87%)</title><rect x="784.4" y="2853" width="57.5" height="15.0" fill="rgb(241,194,36)" rx="2" ry="2" /> +<text x="787.44" y="2863.5" >Nsfisi..</text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Stack::pushI32 (1 samples, 0.03%)</title><rect x="1166.2" y="3445" width="0.3" height="15.0" fill="rgb(210,220,21)" rx="2" ry="2" /> +<text x="1169.20" y="3455.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (1 samples, 0.03%)</title><rect x="265.8" y="1781" width="0.4" height="15.0" fill="rgb(213,209,18)" rx="2" ry="2" /> +<text x="268.83" y="1791.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (1 samples, 0.03%)</title><rect x="665.4" y="2373" width="0.4" height="15.0" fill="rgb(208,86,12)" rx="2" ry="2" /> +<text x="668.45" y="2383.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.03%)</title><rect x="661.5" y="2133" width="0.3" height="15.0" fill="rgb(244,3,20)" rx="2" ry="2" /> +<text x="664.48" y="2143.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="697.8" y="2469" width="0.4" height="15.0" fill="rgb(226,128,26)" rx="2" ry="2" /> +<text x="700.84" y="2479.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (4 samples, 0.11%)</title><rect x="315.7" y="1941" width="1.4" height="15.0" fill="rgb(217,110,5)" rx="2" ry="2" /> +<text x="318.74" y="1951.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (3 samples, 0.08%)</title><rect x="1085.6" y="3461" width="0.9" height="15.0" fill="rgb(215,186,40)" rx="2" ry="2" /> +<text x="1088.55" y="3471.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (7 samples, 0.20%)</title><rect x="387.5" y="1637" width="2.3" height="15.0" fill="rgb(243,162,54)" rx="2" ry="2" /> +<text x="390.47" y="1647.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Stack::popI32 (1 samples, 0.03%)</title><rect x="319.4" y="2165" width="0.3" height="15.0" fill="rgb(247,36,25)" rx="2" ry="2" /> +<text x="322.38" y="2175.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="790.1" y="2053" width="0.3" height="15.0" fill="rgb(245,157,0)" rx="2" ry="2" /> +<text x="793.06" y="2063.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (5 samples, 0.14%)</title><rect x="773.2" y="2197" width="1.7" height="15.0" fill="rgb(231,40,52)" rx="2" ry="2" /> +<text x="776.20" y="2207.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (3 samples, 0.08%)</title><rect x="296.9" y="1749" width="1.0" height="15.0" fill="rgb(210,183,52)" rx="2" ry="2" /> +<text x="299.90" y="1759.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.03%)</title><rect x="1107.4" y="3253" width="0.3" height="15.0" fill="rgb(249,123,6)" rx="2" ry="2" /> +<text x="1110.37" y="3263.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="280.0" y="1829" width="0.4" height="15.0" fill="rgb(210,31,35)" rx="2" ry="2" /> +<text x="283.04" y="1839.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.03%)</title><rect x="307.1" y="1653" width="0.4" height="15.0" fill="rgb(242,50,41)" rx="2" ry="2" /> +<text x="310.15" y="1663.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (1 samples, 0.03%)</title><rect x="661.8" y="1989" width="0.3" height="15.0" fill="rgb(206,138,10)" rx="2" ry="2" /> +<text x="664.81" y="1999.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (3 samples, 0.08%)</title><rect x="833.7" y="2181" width="1.0" height="15.0" fill="rgb(239,159,22)" rx="2" ry="2" /> +<text x="836.69" y="2191.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.03%)</title><rect x="790.1" y="2229" width="0.3" height="15.0" fill="rgb(241,22,51)" rx="2" ry="2" /> +<text x="793.06" y="2239.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::deactivateLabel (2 samples, 0.06%)</title><rect x="1097.1" y="3349" width="0.7" height="15.0" fill="rgb(228,79,29)" rx="2" ry="2" /> +<text x="1100.12" y="3359.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (6 samples, 0.17%)</title><rect x="846.6" y="3221" width="2.0" height="15.0" fill="rgb(232,74,7)" rx="2" ry="2" /> +<text x="849.58" y="3231.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="270.8" y="1989" width="0.3" height="15.0" fill="rgb(225,187,17)" rx="2" ry="2" /> +<text x="273.79" y="1999.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.03%)</title><rect x="297.6" y="1685" width="0.3" height="15.0" fill="rgb(220,6,29)" rx="2" ry="2" /> +<text x="300.56" y="1695.5" ></text> +</g> +<g > +<title><unknown> (1 samples, 0.03%)</title><rect x="905.7" y="2533" width="0.4" height="15.0" fill="rgb(223,221,49)" rx="2" ry="2" /> +<text x="908.74" y="2543.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.03%)</title><rect x="903.8" y="2517" width="0.3" height="15.0" fill="rgb(211,62,14)" rx="2" ry="2" /> +<text x="906.76" y="2527.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="941.8" y="2469" width="0.3" height="15.0" fill="rgb(234,3,9)" rx="2" ry="2" /> +<text x="944.77" y="2479.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (8 samples, 0.22%)</title><rect x="403.3" y="1733" width="2.7" height="15.0" fill="rgb(235,216,37)" rx="2" ry="2" /> +<text x="406.33" y="1743.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (1 samples, 0.03%)</title><rect x="843.9" y="2773" width="0.4" height="15.0" fill="rgb(232,206,3)" rx="2" ry="2" /> +<text x="846.93" y="2783.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (9 samples, 0.25%)</title><rect x="1160.3" y="3541" width="2.9" height="15.0" fill="rgb(237,18,2)" rx="2" ry="2" /> +<text x="1163.25" y="3551.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1,806 samples, 50.59%)</title><rect x="249.6" y="3061" width="597.0" height="15.0" fill="rgb(236,164,22)" rx="2" ry="2" /> +<text x="252.64" y="3071.5" >Nsfisis\Waddiwasi\Execution\Runtime::execInstrs</text> +</g> +<g > +<title><unknown> (12 samples, 0.34%)</title><rect x="1169.2" y="3525" width="3.9" height="15.0" fill="rgb(215,178,43)" rx="2" ry="2" /> +<text x="1172.18" y="3535.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (1 samples, 0.03%)</title><rect x="847.2" y="2533" width="0.4" height="15.0" fill="rgb(207,57,49)" rx="2" ry="2" /> +<text x="850.24" y="2543.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="845.9" y="3013" width="0.3" height="15.0" fill="rgb(244,162,6)" rx="2" ry="2" /> +<text x="848.92" y="3023.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (2 samples, 0.06%)</title><rect x="954.7" y="2197" width="0.6" height="15.0" fill="rgb(253,202,24)" rx="2" ry="2" /> +<text x="957.66" y="2207.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (2 samples, 0.06%)</title><rect x="1104.1" y="2565" width="0.6" height="15.0" fill="rgb(236,208,11)" rx="2" ry="2" /> +<text x="1107.06" y="2575.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (117 samples, 3.28%)</title><rect x="274.4" y="2181" width="38.7" height="15.0" fill="rgb(213,108,33)" rx="2" ry="2" /> +<text x="277.43" y="2191.5" >Nsf..</text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (1 samples, 0.03%)</title><rect x="670.7" y="2373" width="0.4" height="15.0" fill="rgb(212,122,40)" rx="2" ry="2" /> +<text x="673.73" y="2383.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (2 samples, 0.06%)</title><rect x="954.7" y="2133" width="0.6" height="15.0" fill="rgb(207,54,48)" rx="2" ry="2" /> +<text x="957.66" y="2143.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="880.6" y="2533" width="0.4" height="15.0" fill="rgb(241,50,33)" rx="2" ry="2" /> +<text x="883.62" y="2543.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (2 samples, 0.06%)</title><rect x="663.5" y="2101" width="0.6" height="15.0" fill="rgb(206,145,3)" rx="2" ry="2" /> +<text x="666.46" y="2111.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (2 samples, 0.06%)</title><rect x="1104.1" y="2805" width="0.6" height="15.0" fill="rgb(253,183,38)" rx="2" ry="2" /> +<text x="1107.06" y="2815.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (1 samples, 0.03%)</title><rect x="266.8" y="1509" width="0.4" height="15.0" fill="rgb(242,27,17)" rx="2" ry="2" /> +<text x="269.82" y="1519.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.03%)</title><rect x="262.2" y="1877" width="0.3" height="15.0" fill="rgb(222,180,47)" rx="2" ry="2" /> +<text x="265.20" y="1887.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (2 samples, 0.06%)</title><rect x="405.0" y="1205" width="0.6" height="15.0" fill="rgb(244,162,6)" rx="2" ry="2" /> +<text x="407.99" y="1215.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (6 samples, 0.17%)</title><rect x="846.6" y="3109" width="2.0" height="15.0" fill="rgb(217,150,13)" rx="2" ry="2" /> +<text x="849.58" y="3119.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (2 samples, 0.06%)</title><rect x="1104.1" y="3045" width="0.6" height="15.0" fill="rgb(212,149,42)" rx="2" ry="2" /> +<text x="1107.06" y="3055.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="954.0" y="2565" width="0.3" height="15.0" fill="rgb(205,178,2)" rx="2" ry="2" /> +<text x="957.00" y="2575.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (66 samples, 1.85%)</title><rect x="291.0" y="2069" width="21.8" height="15.0" fill="rgb(221,24,37)" rx="2" ry="2" /> +<text x="293.95" y="2079.5" >N..</text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.03%)</title><rect x="346.2" y="1941" width="0.3" height="15.0" fill="rgb(208,117,23)" rx="2" ry="2" /> +<text x="349.15" y="1951.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (1 samples, 0.03%)</title><rect x="399.0" y="1957" width="0.4" height="15.0" fill="rgb(247,26,33)" rx="2" ry="2" /> +<text x="402.04" y="1967.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (230 samples, 6.44%)</title><rect x="707.4" y="2645" width="76.0" height="15.0" fill="rgb(207,117,46)" rx="2" ry="2" /> +<text x="710.42" y="2655.5" >Nsfisis\..</text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.03%)</title><rect x="249.3" y="2965" width="0.3" height="15.0" fill="rgb(217,223,51)" rx="2" ry="2" /> +<text x="252.31" y="2975.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="954.7" y="37" width="0.3" height="15.0" fill="rgb(224,191,48)" rx="2" ry="2" /> +<text x="957.66" y="47.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (8 samples, 0.22%)</title><rect x="346.5" y="1989" width="2.6" height="15.0" fill="rgb(219,93,49)" rx="2" ry="2" /> +<text x="349.48" y="1999.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="265.2" y="1605" width="0.3" height="15.0" fill="rgb(233,92,18)" rx="2" ry="2" /> +<text x="268.17" y="1615.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (1 samples, 0.03%)</title><rect x="411.6" y="2037" width="0.3" height="15.0" fill="rgb(232,190,15)" rx="2" ry="2" /> +<text x="414.60" y="2047.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.03%)</title><rect x="391.4" y="1877" width="0.4" height="15.0" fill="rgb(238,106,52)" rx="2" ry="2" /> +<text x="394.43" y="1887.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\MemInst::storeI32 (3 samples, 0.08%)</title><rect x="1076.3" y="3493" width="1.0" height="15.0" fill="rgb(235,196,39)" rx="2" ry="2" /> +<text x="1079.30" y="3503.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Stack::popValue (1 samples, 0.03%)</title><rect x="651.9" y="2421" width="0.3" height="15.0" fill="rgb(250,218,49)" rx="2" ry="2" /> +<text x="654.89" y="2431.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (1 samples, 0.03%)</title><rect x="846.6" y="2773" width="0.3" height="15.0" fill="rgb(228,58,19)" rx="2" ry="2" /> +<text x="849.58" y="2783.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (20 samples, 0.56%)</title><rect x="410.6" y="2309" width="6.6" height="15.0" fill="rgb(218,4,36)" rx="2" ry="2" /> +<text x="413.61" y="2319.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (2 samples, 0.06%)</title><rect x="670.7" y="2629" width="0.7" height="15.0" fill="rgb(231,170,7)" rx="2" ry="2" /> +<text x="673.73" y="2639.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="846.9" y="2821" width="0.3" height="15.0" fill="rgb(223,225,33)" rx="2" ry="2" /> +<text x="849.91" y="2831.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="1137.4" y="3365" width="0.4" height="15.0" fill="rgb(209,3,36)" rx="2" ry="2" /> +<text x="1140.45" y="3375.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeHostFunc (318 samples, 8.91%)</title><rect x="849.6" y="3333" width="105.1" height="15.0" fill="rgb(216,150,1)" rx="2" ry="2" /> +<text x="852.55" y="3343.5" >Nsfisis\Wadd..</text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (172 samples, 4.82%)</title><rect x="784.8" y="2485" width="56.8" height="15.0" fill="rgb(222,194,50)" rx="2" ry="2" /> +<text x="787.77" y="2495.5" >Nsfisi..</text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (6 samples, 0.17%)</title><rect x="849.6" y="2757" width="1.9" height="15.0" fill="rgb(219,134,18)" rx="2" ry="2" /> +<text x="852.55" y="2767.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="1104.4" y="2245" width="0.3" height="15.0" fill="rgb(233,119,5)" rx="2" ry="2" /> +<text x="1107.39" y="2255.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (2 samples, 0.06%)</title><rect x="405.0" y="1173" width="0.6" height="15.0" fill="rgb(247,28,30)" rx="2" ry="2" /> +<text x="407.99" y="1183.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (229 samples, 6.41%)</title><rect x="707.4" y="2293" width="75.7" height="15.0" fill="rgb(246,122,40)" rx="2" ry="2" /> +<text x="710.42" y="2303.5" >Nsfisis\..</text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.03%)</title><rect x="954.0" y="2709" width="0.3" height="15.0" fill="rgb(224,157,11)" rx="2" ry="2" /> +<text x="957.00" y="2719.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.03%)</title><rect x="843.6" y="2613" width="0.3" height="15.0" fill="rgb(233,77,31)" rx="2" ry="2" /> +<text x="846.60" y="2623.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="846.9" y="2853" width="0.3" height="15.0" fill="rgb(219,187,51)" rx="2" ry="2" /> +<text x="849.91" y="2863.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\StackEntries\Value::__construct (1 samples, 0.03%)</title><rect x="1172.8" y="3509" width="0.3" height="15.0" fill="rgb(208,57,9)" rx="2" ry="2" /> +<text x="1175.81" y="3519.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (4 samples, 0.11%)</title><rect x="283.7" y="1765" width="1.3" height="15.0" fill="rgb(246,8,25)" rx="2" ry="2" /> +<text x="286.68" y="1775.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (6 samples, 0.17%)</title><rect x="789.1" y="2309" width="1.9" height="15.0" fill="rgb(230,67,48)" rx="2" ry="2" /> +<text x="792.06" y="2319.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.03%)</title><rect x="399.0" y="1941" width="0.4" height="15.0" fill="rgb(230,117,40)" rx="2" ry="2" /> +<text x="402.04" y="1951.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.03%)</title><rect x="263.5" y="1589" width="0.3" height="15.0" fill="rgb(221,67,26)" rx="2" ry="2" /> +<text x="266.52" y="1599.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::invokeByFuncAddr (1 samples, 0.03%)</title><rect x="954.3" y="3301" width="0.4" height="15.0" fill="rgb(244,215,35)" rx="2" ry="2" /> +<text x="957.33" y="3311.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (3 samples, 0.08%)</title><rect x="655.9" y="2165" width="1.0" height="15.0" fill="rgb(246,90,17)" rx="2" ry="2" /> +<text x="658.86" y="2175.5" ></text> +</g> +<g > +<title><unknown> (2 samples, 0.06%)</title><rect x="887.6" y="2645" width="0.6" height="15.0" fill="rgb(233,12,24)" rx="2" ry="2" /> +<text x="890.56" y="2655.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (683 samples, 19.13%)</title><rect x="422.8" y="1077" width="225.8" height="15.0" fill="rgb(219,82,41)" rx="2" ry="2" /> +<text x="425.83" y="1087.5" >Nsfisis\Waddiwasi\Execution\R..</text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (2 samples, 0.06%)</title><rect x="670.7" y="2725" width="0.7" height="15.0" fill="rgb(214,109,19)" rx="2" ry="2" /> +<text x="673.73" y="2735.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (2 samples, 0.06%)</title><rect x="954.7" y="1653" width="0.6" height="15.0" fill="rgb(232,88,48)" rx="2" ry="2" /> +<text x="957.66" y="1663.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (2 samples, 0.06%)</title><rect x="954.7" y="677" width="0.6" height="15.0" fill="rgb(231,26,4)" rx="2" ry="2" /> +<text x="957.66" y="687.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Structure\Types\FuncType::__construct (1 samples, 0.03%)</title><rect x="1177.4" y="3541" width="0.4" height="15.0" fill="rgb(222,104,2)" rx="2" ry="2" /> +<text x="1180.44" y="3551.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (1 samples, 0.03%)</title><rect x="955.3" y="2805" width="0.4" height="15.0" fill="rgb(238,50,42)" rx="2" ry="2" /> +<text x="958.32" y="2815.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (686 samples, 19.22%)</title><rect x="422.2" y="1989" width="226.7" height="15.0" fill="rgb(254,77,44)" rx="2" ry="2" /> +<text x="425.17" y="1999.5" >Nsfisis\Waddiwasi\Execution\Ru..</text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (198 samples, 5.55%)</title><rect x="254.3" y="2325" width="65.4" height="15.0" fill="rgb(229,182,5)" rx="2" ry="2" /> +<text x="257.26" y="2335.5" >Nsfisis..</text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="347.1" y="1861" width="0.4" height="15.0" fill="rgb(223,163,16)" rx="2" ry="2" /> +<text x="350.14" y="1871.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="954.3" y="3109" width="0.4" height="15.0" fill="rgb(242,164,23)" rx="2" ry="2" /> +<text x="957.33" y="3119.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="270.8" y="2021" width="0.3" height="15.0" fill="rgb(208,202,39)" rx="2" ry="2" /> +<text x="273.79" y="2031.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (205 samples, 5.74%)</title><rect x="324.3" y="2229" width="67.8" height="15.0" fill="rgb(253,222,35)" rx="2" ry="2" /> +<text x="327.34" y="2239.5" >Nsfisis..</text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="669.4" y="2437" width="0.3" height="15.0" fill="rgb(227,143,19)" rx="2" ry="2" /> +<text x="672.41" y="2447.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (172 samples, 4.82%)</title><rect x="896.2" y="2821" width="56.8" height="15.0" fill="rgb(215,192,1)" rx="2" ry="2" /> +<text x="899.16" y="2831.5" >Nsfisi..</text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="665.4" y="2341" width="0.4" height="15.0" fill="rgb(213,143,50)" rx="2" ry="2" /> +<text x="668.45" y="2351.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (1 samples, 0.03%)</title><rect x="400.4" y="1893" width="0.3" height="15.0" fill="rgb(217,125,44)" rx="2" ry="2" /> +<text x="403.36" y="1903.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="316.4" y="1477" width="0.3" height="15.0" fill="rgb(208,12,54)" rx="2" ry="2" /> +<text x="319.40" y="1487.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.03%)</title><rect x="410.9" y="2037" width="0.4" height="15.0" fill="rgb(239,206,42)" rx="2" ry="2" /> +<text x="413.94" y="2047.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="407.0" y="2085" width="0.3" height="15.0" fill="rgb(239,61,8)" rx="2" ry="2" /> +<text x="409.97" y="2095.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.03%)</title><rect x="298.6" y="1685" width="0.3" height="15.0" fill="rgb(221,220,50)" rx="2" ry="2" /> +<text x="301.55" y="1695.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="416.9" y="1989" width="0.3" height="15.0" fill="rgb(254,219,11)" rx="2" ry="2" /> +<text x="419.89" y="1999.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.03%)</title><rect x="880.6" y="2581" width="0.4" height="15.0" fill="rgb(223,108,30)" rx="2" ry="2" /> +<text x="883.62" y="2591.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (22 samples, 0.62%)</title><rect x="885.9" y="2661" width="7.3" height="15.0" fill="rgb(251,13,54)" rx="2" ry="2" /> +<text x="888.91" y="2671.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.03%)</title><rect x="845.6" y="2677" width="0.3" height="15.0" fill="rgb(212,184,14)" rx="2" ry="2" /> +<text x="848.59" y="2687.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (1 samples, 0.03%)</title><rect x="954.7" y="133" width="0.3" height="15.0" fill="rgb(235,200,0)" rx="2" ry="2" /> +<text x="957.66" y="143.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (1 samples, 0.03%)</title><rect x="314.1" y="2053" width="0.3" height="15.0" fill="rgb(243,68,3)" rx="2" ry="2" /> +<text x="317.09" y="2063.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (2 samples, 0.06%)</title><rect x="354.4" y="1877" width="0.7" height="15.0" fill="rgb(216,117,2)" rx="2" ry="2" /> +<text x="357.41" y="1887.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.03%)</title><rect x="266.8" y="1749" width="0.4" height="15.0" fill="rgb(219,94,51)" rx="2" ry="2" /> +<text x="269.82" y="1759.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (2 samples, 0.06%)</title><rect x="954.7" y="2005" width="0.6" height="15.0" fill="rgb(246,104,25)" rx="2" ry="2" /> +<text x="957.66" y="2015.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="1154.6" y="3365" width="0.4" height="15.0" fill="rgb(234,24,41)" rx="2" ry="2" /> +<text x="1157.63" y="3375.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (2 samples, 0.06%)</title><rect x="946.7" y="2453" width="0.7" height="15.0" fill="rgb(226,201,38)" rx="2" ry="2" /> +<text x="949.73" y="2463.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="648.6" y="1605" width="0.3" height="15.0" fill="rgb(251,89,52)" rx="2" ry="2" /> +<text x="651.59" y="1615.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Val::Num (1 samples, 0.03%)</title><rect x="221.9" y="3429" width="0.3" height="15.0" fill="rgb(208,37,9)" rx="2" ry="2" /> +<text x="224.87" y="3439.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (2 samples, 0.06%)</title><rect x="348.1" y="1845" width="0.7" height="15.0" fill="rgb(250,184,0)" rx="2" ry="2" /> +<text x="351.13" y="1855.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doLoadI32 (1 samples, 0.03%)</title><rect x="302.9" y="1781" width="0.3" height="15.0" fill="rgb(231,79,41)" rx="2" ry="2" /> +<text x="305.85" y="1791.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.03%)</title><rect x="315.4" y="1525" width="0.3" height="15.0" fill="rgb(243,130,47)" rx="2" ry="2" /> +<text x="318.41" y="1535.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (119 samples, 3.33%)</title><rect x="273.8" y="2229" width="39.3" height="15.0" fill="rgb(217,180,34)" rx="2" ry="2" /> +<text x="276.76" y="2239.5" >Nsf..</text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Stack::pushI32 (1 samples, 0.03%)</title><rect x="841.0" y="2261" width="0.3" height="15.0" fill="rgb(235,116,23)" rx="2" ry="2" /> +<text x="843.96" y="2271.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="846.6" y="2725" width="0.3" height="15.0" fill="rgb(252,118,31)" rx="2" ry="2" /> +<text x="849.58" y="2735.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="269.5" y="2053" width="0.3" height="15.0" fill="rgb(220,168,14)" rx="2" ry="2" /> +<text x="272.47" y="2063.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (2 samples, 0.06%)</title><rect x="954.7" y="1093" width="0.6" height="15.0" fill="rgb(234,198,10)" rx="2" ry="2" /> +<text x="957.66" y="1103.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::invokeByFuncAddr (26 samples, 0.73%)</title><rect x="667.4" y="2981" width="8.6" height="15.0" fill="rgb(251,47,32)" rx="2" ry="2" /> +<text x="670.43" y="2991.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (1 samples, 0.03%)</title><rect x="783.4" y="2709" width="0.4" height="15.0" fill="rgb(205,153,50)" rx="2" ry="2" /> +<text x="786.45" y="2719.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1,251 samples, 35.04%)</title><rect x="252.6" y="2469" width="413.5" height="15.0" fill="rgb(219,50,45)" rx="2" ry="2" /> +<text x="255.61" y="2479.5" >Nsfisis\Waddiwasi\Execution\Runtime::execInstr</text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.03%)</title><rect x="834.0" y="1973" width="0.3" height="15.0" fill="rgb(241,209,3)" rx="2" ry="2" /> +<text x="837.02" y="1983.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.03%)</title><rect x="406.6" y="1909" width="0.4" height="15.0" fill="rgb(218,52,4)" rx="2" ry="2" /> +<text x="409.64" y="1919.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (5 samples, 0.14%)</title><rect x="315.4" y="1957" width="1.7" height="15.0" fill="rgb(213,229,26)" rx="2" ry="2" /> +<text x="318.41" y="1967.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.03%)</title><rect x="941.8" y="2453" width="0.3" height="15.0" fill="rgb(224,7,51)" rx="2" ry="2" /> +<text x="944.77" y="2463.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (50 samples, 1.40%)</title><rect x="255.3" y="2261" width="16.5" height="15.0" fill="rgb(250,117,44)" rx="2" ry="2" /> +<text x="258.25" y="2271.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (3 samples, 0.08%)</title><rect x="404.7" y="1525" width="0.9" height="15.0" fill="rgb(247,114,9)" rx="2" ry="2" /> +<text x="407.66" y="1535.5" ></text> +</g> +<g > +<title>array_map (1 samples, 0.03%)</title><rect x="790.7" y="2293" width="0.3" height="15.0" fill="rgb(252,5,29)" rx="2" ry="2" /> +<text x="793.72" y="2303.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (1 samples, 0.03%)</title><rect x="950.7" y="2501" width="0.3" height="15.0" fill="rgb(218,151,36)" rx="2" ry="2" /> +<text x="953.69" y="2511.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (3 samples, 0.08%)</title><rect x="404.7" y="1349" width="0.9" height="15.0" fill="rgb(239,195,41)" rx="2" ry="2" /> +<text x="407.66" y="1359.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.03%)</title><rect x="299.9" y="1653" width="0.3" height="15.0" fill="rgb(235,136,32)" rx="2" ry="2" /> +<text x="302.88" y="1663.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (5 samples, 0.14%)</title><rect x="846.6" y="3029" width="1.6" height="15.0" fill="rgb(247,90,26)" rx="2" ry="2" /> +<text x="849.58" y="3039.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (2 samples, 0.06%)</title><rect x="354.4" y="1813" width="0.7" height="15.0" fill="rgb(241,206,43)" rx="2" ry="2" /> +<text x="357.41" y="1823.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (2 samples, 0.06%)</title><rect x="954.7" y="357" width="0.6" height="15.0" fill="rgb(211,156,8)" rx="2" ry="2" /> +<text x="957.66" y="367.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.03%)</title><rect x="265.2" y="1717" width="0.3" height="15.0" fill="rgb(219,168,5)" rx="2" ry="2" /> +<text x="268.17" y="1727.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.03%)</title><rect x="881.0" y="2581" width="0.3" height="15.0" fill="rgb(205,124,2)" rx="2" ry="2" /> +<text x="883.95" y="2591.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (2 samples, 0.06%)</title><rect x="954.7" y="965" width="0.6" height="15.0" fill="rgb(240,170,32)" rx="2" ry="2" /> +<text x="957.66" y="975.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (3 samples, 0.08%)</title><rect x="404.7" y="1237" width="0.9" height="15.0" fill="rgb(249,197,37)" rx="2" ry="2" /> +<text x="407.66" y="1247.5" ></text> +</g> +<g > +<title><unknown> (1 samples, 0.03%)</title><rect x="353.8" y="1925" width="0.3" height="15.0" fill="rgb(218,178,41)" rx="2" ry="2" /> +<text x="356.75" y="1935.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (3 samples, 0.08%)</title><rect x="850.2" y="2405" width="1.0" height="15.0" fill="rgb(254,187,51)" rx="2" ry="2" /> +<text x="853.21" y="2415.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (2 samples, 0.06%)</title><rect x="359.7" y="1861" width="0.7" height="15.0" fill="rgb(214,194,25)" rx="2" ry="2" /> +<text x="362.70" y="1871.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (2 samples, 0.06%)</title><rect x="954.7" y="2037" width="0.6" height="15.0" fill="rgb(217,218,34)" rx="2" ry="2" /> +<text x="957.66" y="2047.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (2 samples, 0.06%)</title><rect x="842.3" y="2645" width="0.6" height="15.0" fill="rgb(221,21,5)" rx="2" ry="2" /> +<text x="845.28" y="2655.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Stack::currentFrame (1 samples, 0.03%)</title><rect x="1159.3" y="3413" width="0.3" height="15.0" fill="rgb(238,90,28)" rx="2" ry="2" /> +<text x="1162.26" y="3423.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.03%)</title><rect x="250.0" y="2645" width="0.3" height="15.0" fill="rgb(234,46,52)" rx="2" ry="2" /> +<text x="252.97" y="2655.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (2 samples, 0.06%)</title><rect x="661.8" y="2213" width="0.7" height="15.0" fill="rgb(231,89,35)" rx="2" ry="2" /> +<text x="664.81" y="2223.5" ></text> +</g> +<g > +<title><unknown> (2 samples, 0.06%)</title><rect x="822.4" y="2181" width="0.7" height="15.0" fill="rgb(213,152,38)" rx="2" ry="2" /> +<text x="825.45" y="2191.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (57 samples, 1.60%)</title><rect x="678.0" y="2645" width="18.8" height="15.0" fill="rgb(237,153,35)" rx="2" ry="2" /> +<text x="681.01" y="2655.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.03%)</title><rect x="314.1" y="2037" width="0.3" height="15.0" fill="rgb(234,66,52)" rx="2" ry="2" /> +<text x="317.09" y="2047.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (4 samples, 0.11%)</title><rect x="250.0" y="2757" width="1.3" height="15.0" fill="rgb(213,105,21)" rx="2" ry="2" /> +<text x="252.97" y="2767.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="298.6" y="1605" width="0.3" height="15.0" fill="rgb(217,22,32)" rx="2" ry="2" /> +<text x="301.55" y="1615.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Stack::popValue (1 samples, 0.03%)</title><rect x="939.1" y="2517" width="0.4" height="15.0" fill="rgb(251,226,6)" rx="2" ry="2" /> +<text x="942.13" y="2527.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.03%)</title><rect x="954.3" y="2613" width="0.4" height="15.0" fill="rgb(220,107,31)" rx="2" ry="2" /> +<text x="957.33" y="2623.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="851.2" y="2277" width="0.3" height="15.0" fill="rgb(241,105,27)" rx="2" ry="2" /> +<text x="854.20" y="2287.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (3 samples, 0.08%)</title><rect x="952.0" y="2709" width="1.0" height="15.0" fill="rgb(208,161,50)" rx="2" ry="2" /> +<text x="955.02" y="2719.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (3 samples, 0.08%)</title><rect x="404.7" y="1381" width="0.9" height="15.0" fill="rgb(236,107,20)" rx="2" ry="2" /> +<text x="407.66" y="1391.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Stack::pushBool (1 samples, 0.03%)</title><rect x="890.5" y="2549" width="0.4" height="15.0" fill="rgb(210,170,6)" rx="2" ry="2" /> +<text x="893.54" y="2559.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (2 samples, 0.06%)</title><rect x="842.9" y="2549" width="0.7" height="15.0" fill="rgb(217,109,29)" rx="2" ry="2" /> +<text x="845.94" y="2559.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (21 samples, 0.59%)</title><rect x="400.0" y="2149" width="7.0" height="15.0" fill="rgb(207,203,7)" rx="2" ry="2" /> +<text x="403.03" y="2159.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="950.7" y="2469" width="0.3" height="15.0" fill="rgb(240,107,45)" rx="2" ry="2" /> +<text x="953.69" y="2479.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\BinaryFormat\Decoder::decodeInstrsUntil (6 samples, 0.17%)</title><rect x="11.7" y="3333" width="1.9" height="15.0" fill="rgb(205,209,41)" rx="2" ry="2" /> +<text x="14.65" y="3343.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="307.1" y="1605" width="0.4" height="15.0" fill="rgb(242,52,24)" rx="2" ry="2" /> +<text x="310.15" y="1615.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="410.9" y="2053" width="0.4" height="15.0" fill="rgb(222,82,46)" rx="2" ry="2" /> +<text x="413.94" y="2063.5" ></text> +</g> +<g > +<title><unknown> (1 samples, 0.03%)</title><rect x="253.9" y="2389" width="0.4" height="15.0" fill="rgb(247,133,26)" rx="2" ry="2" /> +<text x="256.93" y="2399.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="701.5" y="2213" width="0.3" height="15.0" fill="rgb(239,146,25)" rx="2" ry="2" /> +<text x="704.47" y="2223.5" ></text> +</g> +<g > +<title><unknown> (2 samples, 0.06%)</title><rect x="1181.7" y="3493" width="0.7" height="15.0" fill="rgb(218,175,41)" rx="2" ry="2" /> +<text x="1184.74" y="3503.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="307.8" y="1669" width="0.3" height="15.0" fill="rgb(211,180,4)" rx="2" ry="2" /> +<text x="310.81" y="1679.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (538 samples, 15.07%)</title><rect x="68.2" y="3493" width="177.8" height="15.0" fill="rgb(212,207,11)" rx="2" ry="2" /> +<text x="71.17" y="3503.5" >Nsfisis\Waddiwasi\Execu..</text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (3 samples, 0.08%)</title><rect x="318.4" y="2117" width="1.0" height="15.0" fill="rgb(245,23,0)" rx="2" ry="2" /> +<text x="321.39" y="2127.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.03%)</title><rect x="697.8" y="2453" width="0.4" height="15.0" fill="rgb(225,33,30)" rx="2" ry="2" /> +<text x="700.84" y="2463.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="799.0" y="2277" width="0.3" height="15.0" fill="rgb(244,96,36)" rx="2" ry="2" /> +<text x="801.98" y="2287.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.03%)</title><rect x="870.4" y="2133" width="0.3" height="15.0" fill="rgb(215,113,28)" rx="2" ry="2" /> +<text x="873.38" y="2143.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (9 samples, 0.25%)</title><rect x="672.1" y="2661" width="2.9" height="15.0" fill="rgb(212,201,13)" rx="2" ry="2" /> +<text x="675.06" y="2671.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (2 samples, 0.06%)</title><rect x="268.1" y="2037" width="0.7" height="15.0" fill="rgb(237,67,25)" rx="2" ry="2" /> +<text x="271.15" y="2047.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (174 samples, 4.87%)</title><rect x="784.4" y="2693" width="57.5" height="15.0" fill="rgb(242,58,29)" rx="2" ry="2" /> +<text x="787.44" y="2703.5" >Nsfisi..</text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (6 samples, 0.17%)</title><rect x="260.2" y="1973" width="2.0" height="15.0" fill="rgb(208,141,39)" rx="2" ry="2" /> +<text x="263.21" y="1983.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (63 samples, 1.76%)</title><rect x="857.8" y="2501" width="20.8" height="15.0" fill="rgb(249,179,23)" rx="2" ry="2" /> +<text x="860.82" y="2511.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="258.6" y="1989" width="0.3" height="15.0" fill="rgb(222,71,45)" rx="2" ry="2" /> +<text x="261.56" y="1999.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.03%)</title><rect x="265.2" y="1781" width="0.3" height="15.0" fill="rgb(219,164,18)" rx="2" ry="2" /> +<text x="268.17" y="1791.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (1,252 samples, 35.07%)</title><rect x="252.3" y="2517" width="413.8" height="15.0" fill="rgb(251,207,39)" rx="2" ry="2" /> +<text x="255.28" y="2527.5" >Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc</text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (115 samples, 3.22%)</title><rect x="275.1" y="2133" width="38.0" height="15.0" fill="rgb(223,20,45)" rx="2" ry="2" /> +<text x="278.09" y="2143.5" >Nsf..</text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="316.4" y="1509" width="0.3" height="15.0" fill="rgb(218,58,20)" rx="2" ry="2" /> +<text x="319.40" y="1519.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="267.5" y="1893" width="0.3" height="15.0" fill="rgb(248,123,20)" rx="2" ry="2" /> +<text x="270.48" y="1903.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (2 samples, 0.06%)</title><rect x="847.2" y="2869" width="0.7" height="15.0" fill="rgb(229,139,52)" rx="2" ry="2" /> +<text x="850.24" y="2879.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.03%)</title><rect x="411.6" y="2005" width="0.3" height="15.0" fill="rgb(224,38,33)" rx="2" ry="2" /> +<text x="414.60" y="2015.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="330.9" y="1957" width="0.4" height="15.0" fill="rgb(239,92,15)" rx="2" ry="2" /> +<text x="333.95" y="1967.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.03%)</title><rect x="400.4" y="1717" width="0.3" height="15.0" fill="rgb(219,44,5)" rx="2" ry="2" /> +<text x="403.36" y="1727.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (6 samples, 0.17%)</title><rect x="374.2" y="1845" width="2.0" height="15.0" fill="rgb(211,199,37)" rx="2" ry="2" /> +<text x="377.25" y="1855.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="954.3" y="2469" width="0.4" height="15.0" fill="rgb(239,202,40)" rx="2" ry="2" /> +<text x="957.33" y="2479.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (1 samples, 0.03%)</title><rect x="661.5" y="2213" width="0.3" height="15.0" fill="rgb(215,61,26)" rx="2" ry="2" /> +<text x="664.48" y="2223.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="316.4" y="933" width="0.3" height="15.0" fill="rgb(243,35,39)" rx="2" ry="2" /> +<text x="319.40" y="943.5" ></text> +</g> +<g > +<title><unknown> (2 samples, 0.06%)</title><rect x="1161.9" y="3525" width="0.7" height="15.0" fill="rgb(235,184,49)" rx="2" ry="2" /> +<text x="1164.90" y="3535.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="400.4" y="1829" width="0.3" height="15.0" fill="rgb(215,1,32)" rx="2" ry="2" /> +<text x="403.36" y="1839.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (1 samples, 0.03%)</title><rect x="894.8" y="2741" width="0.4" height="15.0" fill="rgb(249,33,42)" rx="2" ry="2" /> +<text x="897.83" y="2751.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (1 samples, 0.03%)</title><rect x="307.5" y="1605" width="0.3" height="15.0" fill="rgb(212,186,31)" rx="2" ry="2" /> +<text x="310.48" y="1615.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="1077.3" y="3397" width="0.3" height="15.0" fill="rgb(246,175,7)" rx="2" ry="2" /> +<text x="1080.29" y="3407.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="304.8" y="1669" width="0.4" height="15.0" fill="rgb(210,148,30)" rx="2" ry="2" /> +<text x="307.83" y="1679.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="315.4" y="1701" width="0.3" height="15.0" fill="rgb(223,85,31)" rx="2" ry="2" /> +<text x="318.41" y="1711.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (5 samples, 0.14%)</title><rect x="879.6" y="2645" width="1.7" height="15.0" fill="rgb(249,140,11)" rx="2" ry="2" /> +<text x="882.63" y="2655.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (2 samples, 0.06%)</title><rect x="1104.1" y="2661" width="0.6" height="15.0" fill="rgb(246,215,33)" rx="2" ry="2" /> +<text x="1107.06" y="2671.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.03%)</title><rect x="1165.2" y="3413" width="0.3" height="15.0" fill="rgb(244,6,32)" rx="2" ry="2" /> +<text x="1168.21" y="3423.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (682 samples, 19.10%)</title><rect x="423.2" y="757" width="225.4" height="15.0" fill="rgb(226,7,17)" rx="2" ry="2" /> +<text x="426.17" y="767.5" >Nsfisis\Waddiwasi\Execution\R..</text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Stack::popI64 (1 samples, 0.03%)</title><rect x="661.8" y="1781" width="0.3" height="15.0" fill="rgb(211,195,36)" rx="2" ry="2" /> +<text x="664.81" y="1791.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (2 samples, 0.06%)</title><rect x="375.6" y="1493" width="0.6" height="15.0" fill="rgb(247,47,26)" rx="2" ry="2" /> +<text x="378.57" y="1503.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="851.2" y="2469" width="0.3" height="15.0" fill="rgb(245,56,26)" rx="2" ry="2" /> +<text x="854.20" y="2479.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.03%)</title><rect x="808.6" y="2261" width="0.3" height="15.0" fill="rgb(205,113,43)" rx="2" ry="2" /> +<text x="811.57" y="2271.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.03%)</title><rect x="697.5" y="2197" width="0.3" height="15.0" fill="rgb(235,76,36)" rx="2" ry="2" /> +<text x="700.51" y="2207.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="1096.8" y="3333" width="0.3" height="15.0" fill="rgb(217,126,6)" rx="2" ry="2" /> +<text x="1099.79" y="3343.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (17 samples, 0.48%)</title><rect x="1131.8" y="3317" width="5.6" height="15.0" fill="rgb(231,144,5)" rx="2" ry="2" /> +<text x="1134.83" y="3327.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (2 samples, 0.06%)</title><rect x="1085.9" y="3333" width="0.6" height="15.0" fill="rgb(231,204,38)" rx="2" ry="2" /> +<text x="1088.88" y="3343.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="847.6" y="2629" width="0.3" height="15.0" fill="rgb(239,182,22)" rx="2" ry="2" /> +<text x="850.57" y="2639.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="1107.4" y="3301" width="0.3" height="15.0" fill="rgb(227,99,25)" rx="2" ry="2" /> +<text x="1110.37" y="3311.5" ></text> +</g> +<g > +<title>Composer\Autoload\ClassLoader::findFile (1 samples, 0.03%)</title><rect x="17.9" y="3461" width="0.4" height="15.0" fill="rgb(212,121,14)" rx="2" ry="2" /> +<text x="20.93" y="3471.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="695.9" y="2405" width="0.3" height="15.0" fill="rgb(230,187,43)" rx="2" ry="2" /> +<text x="698.85" y="2415.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="270.8" y="1957" width="0.3" height="15.0" fill="rgb(209,23,13)" rx="2" ry="2" /> +<text x="273.79" y="1967.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (1 samples, 0.03%)</title><rect x="675.7" y="2645" width="0.3" height="15.0" fill="rgb(252,22,8)" rx="2" ry="2" /> +<text x="678.69" y="2655.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="838.6" y="2021" width="0.4" height="15.0" fill="rgb(250,98,38)" rx="2" ry="2" /> +<text x="841.64" y="2031.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="294.6" y="1861" width="0.3" height="15.0" fill="rgb(227,192,37)" rx="2" ry="2" /> +<text x="297.59" y="1871.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (5 samples, 0.14%)</title><rect x="366.3" y="1877" width="1.7" height="15.0" fill="rgb(212,206,42)" rx="2" ry="2" /> +<text x="369.31" y="1887.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.03%)</title><rect x="1121.6" y="3349" width="0.3" height="15.0" fill="rgb(241,179,40)" rx="2" ry="2" /> +<text x="1124.58" y="3359.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="670.1" y="2629" width="0.3" height="15.0" fill="rgb(237,203,48)" rx="2" ry="2" /> +<text x="673.07" y="2639.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (1 samples, 0.03%)</title><rect x="420.9" y="1957" width="0.3" height="15.0" fill="rgb(224,229,16)" rx="2" ry="2" /> +<text x="423.85" y="1967.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="695.9" y="2181" width="0.3" height="15.0" fill="rgb(218,183,8)" rx="2" ry="2" /> +<text x="698.85" y="2191.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (6 samples, 0.17%)</title><rect x="835.7" y="2213" width="2.0" height="15.0" fill="rgb(250,170,30)" rx="2" ry="2" /> +<text x="838.67" y="2223.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (6 samples, 0.17%)</title><rect x="269.5" y="2133" width="2.0" height="15.0" fill="rgb(217,186,43)" rx="2" ry="2" /> +<text x="272.47" y="2143.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (1 samples, 0.03%)</title><rect x="951.7" y="2725" width="0.3" height="15.0" fill="rgb(205,36,54)" rx="2" ry="2" /> +<text x="954.69" y="2735.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (20 samples, 0.56%)</title><rect x="1098.4" y="3317" width="6.7" height="15.0" fill="rgb(253,42,47)" rx="2" ry="2" /> +<text x="1101.44" y="3327.5" ></text> +</g> +<g > +<title>print_r (1 samples, 0.03%)</title><rect x="1085.9" y="3285" width="0.3" height="15.0" fill="rgb(206,172,17)" rx="2" ry="2" /> +<text x="1088.88" y="3295.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (2 samples, 0.06%)</title><rect x="954.7" y="2437" width="0.6" height="15.0" fill="rgb(210,40,31)" rx="2" ry="2" /> +<text x="957.66" y="2447.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (3 samples, 0.08%)</title><rect x="705.1" y="2677" width="1.0" height="15.0" fill="rgb(218,225,21)" rx="2" ry="2" /> +<text x="708.11" y="2687.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (2 samples, 0.06%)</title><rect x="316.1" y="1589" width="0.6" height="15.0" fill="rgb(231,106,18)" rx="2" ry="2" /> +<text x="319.07" y="1599.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\ControlFlowResult::Br (1 samples, 0.03%)</title><rect x="1074.6" y="3493" width="0.4" height="15.0" fill="rgb(211,115,11)" rx="2" ry="2" /> +<text x="1077.64" y="3503.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (2 samples, 0.06%)</title><rect x="268.1" y="2069" width="0.7" height="15.0" fill="rgb(251,217,8)" rx="2" ry="2" /> +<text x="271.15" y="2079.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\BinaryFormat\Decoder::decodeInstrsUntil (1 samples, 0.03%)</title><rect x="12.3" y="3205" width="0.3" height="15.0" fill="rgb(213,199,17)" rx="2" ry="2" /> +<text x="15.31" y="3215.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (3 samples, 0.08%)</title><rect x="952.0" y="2565" width="1.0" height="15.0" fill="rgb(207,107,11)" rx="2" ry="2" /> +<text x="955.02" y="2575.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.03%)</title><rect x="656.5" y="2037" width="0.4" height="15.0" fill="rgb(233,33,29)" rx="2" ry="2" /> +<text x="659.52" y="2047.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (2 samples, 0.06%)</title><rect x="691.2" y="2437" width="0.7" height="15.0" fill="rgb(205,222,42)" rx="2" ry="2" /> +<text x="694.23" y="2447.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (16 samples, 0.45%)</title><rect x="670.7" y="2821" width="5.3" height="15.0" fill="rgb(223,178,16)" rx="2" ry="2" /> +<text x="673.73" y="2831.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (174 samples, 4.87%)</title><rect x="784.4" y="2613" width="57.5" height="15.0" fill="rgb(230,45,52)" rx="2" ry="2" /> +<text x="787.44" y="2623.5" >Nsfisi..</text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (4 samples, 0.11%)</title><rect x="311.4" y="1685" width="1.4" height="15.0" fill="rgb(232,150,27)" rx="2" ry="2" /> +<text x="314.45" y="1695.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="1109.7" y="3477" width="0.3" height="15.0" fill="rgb(221,142,53)" rx="2" ry="2" /> +<text x="1112.68" y="3487.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="390.4" y="1957" width="0.4" height="15.0" fill="rgb(225,188,42)" rx="2" ry="2" /> +<text x="393.44" y="1967.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.03%)</title><rect x="375.9" y="1397" width="0.3" height="15.0" fill="rgb(217,95,1)" rx="2" ry="2" /> +<text x="378.90" y="1407.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.03%)</title><rect x="677.0" y="2709" width="0.3" height="15.0" fill="rgb(235,47,49)" rx="2" ry="2" /> +<text x="680.01" y="2719.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="1104.4" y="2181" width="0.3" height="15.0" fill="rgb(207,131,40)" rx="2" ry="2" /> +<text x="1107.39" y="2191.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="411.6" y="1925" width="0.3" height="15.0" fill="rgb(227,169,27)" rx="2" ry="2" /> +<text x="414.60" y="1935.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (12 samples, 0.34%)</title><rect x="345.2" y="2021" width="3.9" height="15.0" fill="rgb(234,115,36)" rx="2" ry="2" /> +<text x="348.16" y="2031.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (3 samples, 0.08%)</title><rect x="404.7" y="1397" width="0.9" height="15.0" fill="rgb(253,39,8)" rx="2" ry="2" /> +<text x="407.66" y="1407.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (2 samples, 0.06%)</title><rect x="670.7" y="2661" width="0.7" height="15.0" fill="rgb(208,221,53)" rx="2" ry="2" /> +<text x="673.73" y="2671.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.03%)</title><rect x="842.6" y="2357" width="0.3" height="15.0" fill="rgb(207,154,2)" rx="2" ry="2" /> +<text x="845.61" y="2367.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (2 samples, 0.06%)</title><rect x="954.7" y="1701" width="0.6" height="15.0" fill="rgb(227,176,53)" rx="2" ry="2" /> +<text x="957.66" y="1711.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (172 samples, 4.82%)</title><rect x="784.8" y="2469" width="56.8" height="15.0" fill="rgb(233,100,14)" rx="2" ry="2" /> +<text x="787.77" y="2479.5" >Nsfisi..</text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (10 samples, 0.28%)</title><rect x="264.2" y="1893" width="3.3" height="15.0" fill="rgb(245,119,41)" rx="2" ry="2" /> +<text x="267.18" y="1903.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (2 samples, 0.06%)</title><rect x="348.1" y="1941" width="0.7" height="15.0" fill="rgb(210,146,9)" rx="2" ry="2" /> +<text x="351.13" y="1951.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.03%)</title><rect x="391.8" y="2101" width="0.3" height="15.0" fill="rgb(214,28,43)" rx="2" ry="2" /> +<text x="394.76" y="2111.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (42 samples, 1.18%)</title><rect x="678.7" y="2613" width="13.8" height="15.0" fill="rgb(228,198,20)" rx="2" ry="2" /> +<text x="681.67" y="2623.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (1 samples, 0.03%)</title><rect x="1153.6" y="3333" width="0.4" height="15.0" fill="rgb(241,146,50)" rx="2" ry="2" /> +<text x="1156.64" y="3343.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\StackEntry::Value (1 samples, 0.03%)</title><rect x="782.8" y="2181" width="0.3" height="15.0" fill="rgb(244,79,51)" rx="2" ry="2" /> +<text x="785.78" y="2191.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (1 samples, 0.03%)</title><rect x="845.6" y="2709" width="0.3" height="15.0" fill="rgb(247,200,25)" rx="2" ry="2" /> +<text x="848.59" y="2719.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (16 samples, 0.45%)</title><rect x="262.5" y="2037" width="5.3" height="15.0" fill="rgb(238,187,11)" rx="2" ry="2" /> +<text x="265.53" y="2047.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.03%)</title><rect x="783.1" y="2293" width="0.3" height="15.0" fill="rgb(233,3,34)" rx="2" ry="2" /> +<text x="786.11" y="2303.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (692 samples, 19.38%)</title><rect x="420.9" y="2261" width="228.7" height="15.0" fill="rgb(254,11,35)" rx="2" ry="2" /> +<text x="423.85" y="2271.5" >Nsfisis\Waddiwasi\Execution\Ru..</text> +</g> +<g > +<title>assert (1 samples, 0.03%)</title><rect x="1189.0" y="3525" width="0.3" height="15.0" fill="rgb(210,122,35)" rx="2" ry="2" /> +<text x="1192.01" y="3535.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="265.2" y="1669" width="0.3" height="15.0" fill="rgb(247,86,50)" rx="2" ry="2" /> +<text x="268.17" y="1679.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (4 samples, 0.11%)</title><rect x="700.5" y="2405" width="1.3" height="15.0" fill="rgb(226,0,32)" rx="2" ry="2" /> +<text x="703.48" y="2415.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="903.8" y="2565" width="0.3" height="15.0" fill="rgb(245,40,8)" rx="2" ry="2" /> +<text x="906.76" y="2575.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="420.9" y="1893" width="0.3" height="15.0" fill="rgb(215,205,3)" rx="2" ry="2" /> +<text x="423.85" y="1903.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (1 samples, 0.03%)</title><rect x="372.6" y="1701" width="0.3" height="15.0" fill="rgb(243,160,10)" rx="2" ry="2" /> +<text x="375.59" y="1711.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="701.5" y="2341" width="0.3" height="15.0" fill="rgb(219,106,36)" rx="2" ry="2" /> +<text x="704.47" y="2351.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Stack::pushI32 (1 samples, 0.03%)</title><rect x="1105.4" y="3381" width="0.3" height="15.0" fill="rgb(248,146,3)" rx="2" ry="2" /> +<text x="1108.38" y="3391.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (1 samples, 0.03%)</title><rect x="422.2" y="1141" width="0.3" height="15.0" fill="rgb(222,121,45)" rx="2" ry="2" /> +<text x="425.17" y="1151.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.03%)</title><rect x="372.6" y="1653" width="0.3" height="15.0" fill="rgb(245,207,7)" rx="2" ry="2" /> +<text x="375.59" y="1663.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.03%)</title><rect x="665.8" y="2421" width="0.3" height="15.0" fill="rgb(210,193,23)" rx="2" ry="2" /> +<text x="668.78" y="2431.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Stack::pushValue (1 samples, 0.03%)</title><rect x="227.8" y="3477" width="0.4" height="15.0" fill="rgb(241,114,7)" rx="2" ry="2" /> +<text x="230.82" y="3487.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (6 samples, 0.17%)</title><rect x="849.6" y="2613" width="1.9" height="15.0" fill="rgb(246,8,30)" rx="2" ry="2" /> +<text x="852.55" y="2623.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\BinaryFormat\Decoder::{closure}(/home/ken/src/php-waddiwasi/src/BinaryFormat/Decoder.php:518-531) (1 samples, 0.03%)</title><rect x="667.1" y="2997" width="0.3" height="15.0" fill="rgb(215,62,17)" rx="2" ry="2" /> +<text x="670.10" y="3007.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\StackEntries\Value::__construct (1 samples, 0.03%)</title><rect x="1182.4" y="3509" width="0.3" height="15.0" fill="rgb(253,149,29)" rx="2" ry="2" /> +<text x="1185.40" y="3519.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="841.6" y="2533" width="0.3" height="15.0" fill="rgb(205,92,32)" rx="2" ry="2" /> +<text x="844.62" y="2543.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (1 samples, 0.03%)</title><rect x="315.1" y="2101" width="0.3" height="15.0" fill="rgb(225,99,16)" rx="2" ry="2" /> +<text x="318.08" y="2111.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="878.3" y="2341" width="0.3" height="15.0" fill="rgb(248,130,15)" rx="2" ry="2" /> +<text x="881.31" y="2351.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (7 samples, 0.20%)</title><rect x="314.8" y="2117" width="2.3" height="15.0" fill="rgb(243,140,14)" rx="2" ry="2" /> +<text x="317.75" y="2127.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (1 samples, 0.03%)</title><rect x="249.3" y="2981" width="0.3" height="15.0" fill="rgb(205,42,20)" rx="2" ry="2" /> +<text x="252.31" y="2991.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (4 samples, 0.11%)</title><rect x="311.4" y="1749" width="1.4" height="15.0" fill="rgb(246,43,45)" rx="2" ry="2" /> +<text x="314.45" y="1759.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (1 samples, 0.03%)</title><rect x="420.9" y="2085" width="0.3" height="15.0" fill="rgb(222,180,6)" rx="2" ry="2" /> +<text x="423.85" y="2095.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (174 samples, 4.87%)</title><rect x="784.4" y="2757" width="57.5" height="15.0" fill="rgb(241,226,40)" rx="2" ry="2" /> +<text x="787.44" y="2767.5" >Nsfisi..</text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (2 samples, 0.06%)</title><rect x="904.1" y="2565" width="0.7" height="15.0" fill="rgb(208,229,8)" rx="2" ry="2" /> +<text x="907.09" y="2575.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (4 samples, 0.11%)</title><rect x="268.1" y="2133" width="1.4" height="15.0" fill="rgb(248,165,8)" rx="2" ry="2" /> +<text x="271.15" y="2143.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (5 samples, 0.14%)</title><rect x="366.3" y="1797" width="1.7" height="15.0" fill="rgb(234,185,35)" rx="2" ry="2" /> +<text x="369.31" y="1807.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (2 samples, 0.06%)</title><rect x="955.3" y="2837" width="0.7" height="15.0" fill="rgb(247,130,24)" rx="2" ry="2" /> +<text x="958.32" y="2847.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="843.3" y="2213" width="0.3" height="15.0" fill="rgb(229,88,11)" rx="2" ry="2" /> +<text x="846.27" y="2223.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (2 samples, 0.06%)</title><rect x="954.7" y="1013" width="0.6" height="15.0" fill="rgb(233,93,35)" rx="2" ry="2" /> +<text x="957.66" y="1023.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.03%)</title><rect x="834.0" y="2069" width="0.3" height="15.0" fill="rgb(234,12,27)" rx="2" ry="2" /> +<text x="837.02" y="2079.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (735 samples, 20.59%)</title><rect x="409.0" y="2389" width="242.9" height="15.0" fill="rgb(227,58,46)" rx="2" ry="2" /> +<text x="411.95" y="2399.5" >Nsfisis\Waddiwasi\Execution\Runt..</text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.03%)</title><rect x="790.1" y="2069" width="0.3" height="15.0" fill="rgb(214,18,38)" rx="2" ry="2" /> +<text x="793.06" y="2079.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::invokeByFuncAddr (180 samples, 5.04%)</title><rect x="784.4" y="2981" width="59.5" height="15.0" fill="rgb(244,172,44)" rx="2" ry="2" /> +<text x="787.44" y="2991.5" >Nsfisi..</text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="840.6" y="2373" width="0.4" height="15.0" fill="rgb(247,209,37)" rx="2" ry="2" /> +<text x="843.63" y="2383.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (16 samples, 0.45%)</title><rect x="331.6" y="1941" width="5.3" height="15.0" fill="rgb(253,27,14)" rx="2" ry="2" /> +<text x="334.61" y="1951.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (2 samples, 0.06%)</title><rect x="954.7" y="2149" width="0.6" height="15.0" fill="rgb(232,136,42)" rx="2" ry="2" /> +<text x="957.66" y="2159.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="954.3" y="2373" width="0.4" height="15.0" fill="rgb(226,123,44)" rx="2" ry="2" /> +<text x="957.33" y="2383.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="953.7" y="2981" width="0.3" height="15.0" fill="rgb(209,153,47)" rx="2" ry="2" /> +<text x="956.67" y="2991.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (2 samples, 0.06%)</title><rect x="842.9" y="2421" width="0.7" height="15.0" fill="rgb(216,112,36)" rx="2" ry="2" /> +<text x="845.94" y="2431.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1,208 samples, 33.84%)</title><rect x="252.6" y="2405" width="399.3" height="15.0" fill="rgb(232,187,51)" rx="2" ry="2" /> +<text x="255.61" y="2415.5" >Nsfisis\Waddiwasi\Execution\Runtime::execInstr</text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (18 samples, 0.50%)</title><rect x="411.3" y="2101" width="5.9" height="15.0" fill="rgb(236,151,10)" rx="2" ry="2" /> +<text x="414.27" y="2111.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (2 samples, 0.06%)</title><rect x="954.7" y="1461" width="0.6" height="15.0" fill="rgb(251,218,17)" rx="2" ry="2" /> +<text x="957.66" y="1471.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (4 samples, 0.11%)</title><rect x="315.7" y="1909" width="1.4" height="15.0" fill="rgb(212,102,35)" rx="2" ry="2" /> +<text x="318.74" y="1919.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (12 samples, 0.34%)</title><rect x="692.5" y="2533" width="4.0" height="15.0" fill="rgb(226,47,1)" rx="2" ry="2" /> +<text x="695.55" y="2543.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.03%)</title><rect x="391.1" y="1909" width="0.3" height="15.0" fill="rgb(238,77,36)" rx="2" ry="2" /> +<text x="394.10" y="1919.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="316.4" y="773" width="0.3" height="15.0" fill="rgb(243,105,16)" rx="2" ry="2" /> +<text x="319.40" y="783.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (4 samples, 0.11%)</title><rect x="283.7" y="1829" width="1.3" height="15.0" fill="rgb(206,40,23)" rx="2" ry="2" /> +<text x="286.68" y="1839.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (8 samples, 0.22%)</title><rect x="414.2" y="1909" width="2.7" height="15.0" fill="rgb(225,154,44)" rx="2" ry="2" /> +<text x="417.24" y="1919.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="1108.0" y="3269" width="0.4" height="15.0" fill="rgb(254,42,24)" rx="2" ry="2" /> +<text x="1111.03" y="3279.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (3 samples, 0.08%)</title><rect x="305.8" y="1925" width="1.0" height="15.0" fill="rgb(219,189,47)" rx="2" ry="2" /> +<text x="308.83" y="1935.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="894.5" y="2565" width="0.3" height="15.0" fill="rgb(238,202,54)" rx="2" ry="2" /> +<text x="897.50" y="2575.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (78 samples, 2.18%)</title><rect x="677.3" y="2773" width="25.8" height="15.0" fill="rgb(243,176,48)" rx="2" ry="2" /> +<text x="680.34" y="2783.5" >N..</text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (1 samples, 0.03%)</title><rect x="406.6" y="1717" width="0.4" height="15.0" fill="rgb(235,59,48)" rx="2" ry="2" /> +<text x="409.64" y="1727.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (8 samples, 0.22%)</title><rect x="414.2" y="1813" width="2.7" height="15.0" fill="rgb(213,53,45)" rx="2" ry="2" /> +<text x="417.24" y="1823.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Stack::popI32 (1 samples, 0.03%)</title><rect x="1138.4" y="3477" width="0.4" height="15.0" fill="rgb(244,115,36)" rx="2" ry="2" /> +<text x="1141.44" y="3487.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeHostFunc (2 samples, 0.06%)</title><rect x="954.7" y="2821" width="0.6" height="15.0" fill="rgb(248,9,27)" rx="2" ry="2" /> +<text x="957.66" y="2831.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="314.1" y="1669" width="0.3" height="15.0" fill="rgb(239,120,17)" rx="2" ry="2" /> +<text x="317.09" y="1679.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (3 samples, 0.08%)</title><rect x="404.7" y="1429" width="0.9" height="15.0" fill="rgb(225,183,23)" rx="2" ry="2" /> +<text x="407.66" y="1439.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="1150.7" y="3365" width="0.3" height="15.0" fill="rgb(249,160,42)" rx="2" ry="2" /> +<text x="1153.67" y="3375.5" ></text> +</g> +<g > +<title><unknown> (3 samples, 0.08%)</title><rect x="170.0" y="3413" width="1.0" height="15.0" fill="rgb(250,47,4)" rx="2" ry="2" /> +<text x="172.98" y="3423.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (5 samples, 0.14%)</title><rect x="249.6" y="2805" width="1.7" height="15.0" fill="rgb(247,222,46)" rx="2" ry="2" /> +<text x="252.64" y="2815.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.03%)</title><rect x="954.3" y="2581" width="0.4" height="15.0" fill="rgb(249,170,12)" rx="2" ry="2" /> +<text x="957.33" y="2591.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="702.8" y="2437" width="0.3" height="15.0" fill="rgb(224,94,29)" rx="2" ry="2" /> +<text x="705.80" y="2447.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (1 samples, 0.03%)</title><rect x="648.6" y="1589" width="0.3" height="15.0" fill="rgb(247,93,15)" rx="2" ry="2" /> +<text x="651.59" y="1599.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (19 samples, 0.53%)</title><rect x="331.3" y="2005" width="6.3" height="15.0" fill="rgb(250,7,47)" rx="2" ry="2" /> +<text x="334.28" y="2015.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (2 samples, 0.06%)</title><rect x="296.9" y="1717" width="0.7" height="15.0" fill="rgb(209,88,34)" rx="2" ry="2" /> +<text x="299.90" y="1727.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (2 samples, 0.06%)</title><rect x="400.7" y="1893" width="0.7" height="15.0" fill="rgb(218,210,37)" rx="2" ry="2" /> +<text x="403.69" y="1903.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (18 samples, 0.50%)</title><rect x="696.8" y="2693" width="6.0" height="15.0" fill="rgb(241,179,12)" rx="2" ry="2" /> +<text x="699.85" y="2703.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (1 samples, 0.03%)</title><rect x="1150.7" y="3509" width="0.3" height="15.0" fill="rgb(208,115,27)" rx="2" ry="2" /> +<text x="1153.67" y="3519.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.03%)</title><rect x="941.4" y="2485" width="0.4" height="15.0" fill="rgb(248,202,44)" rx="2" ry="2" /> +<text x="944.44" y="2495.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (1 samples, 0.03%)</title><rect x="894.5" y="2629" width="0.3" height="15.0" fill="rgb(246,59,9)" rx="2" ry="2" /> +<text x="897.50" y="2639.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="401.0" y="1765" width="0.4" height="15.0" fill="rgb(245,84,49)" rx="2" ry="2" /> +<text x="404.02" y="1775.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="314.1" y="1541" width="0.3" height="15.0" fill="rgb(243,170,2)" rx="2" ry="2" /> +<text x="317.09" y="1551.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeHostFunc (4 samples, 0.11%)</title><rect x="954.7" y="3141" width="1.3" height="15.0" fill="rgb(228,99,35)" rx="2" ry="2" /> +<text x="957.66" y="3151.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.03%)</title><rect x="894.5" y="2677" width="0.3" height="15.0" fill="rgb(233,34,29)" rx="2" ry="2" /> +<text x="897.50" y="2687.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doStoreI32 (11 samples, 0.31%)</title><rect x="223.2" y="3461" width="3.6" height="15.0" fill="rgb(232,143,51)" rx="2" ry="2" /> +<text x="226.19" y="3471.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (1 samples, 0.03%)</title><rect x="249.3" y="2821" width="0.3" height="15.0" fill="rgb(222,190,39)" rx="2" ry="2" /> +<text x="252.31" y="2831.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (174 samples, 4.87%)</title><rect x="784.4" y="2805" width="57.5" height="15.0" fill="rgb(228,190,22)" rx="2" ry="2" /> +<text x="787.44" y="2815.5" >Nsfisi..</text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (2 samples, 0.06%)</title><rect x="954.7" y="2341" width="0.6" height="15.0" fill="rgb(208,39,27)" rx="2" ry="2" /> +<text x="957.66" y="2351.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (3 samples, 0.08%)</title><rect x="848.6" y="2933" width="1.0" height="15.0" fill="rgb(244,36,51)" rx="2" ry="2" /> +<text x="851.56" y="2943.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (2 samples, 0.06%)</title><rect x="842.9" y="2373" width="0.7" height="15.0" fill="rgb(213,98,45)" rx="2" ry="2" /> +<text x="845.94" y="2383.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="420.9" y="1861" width="0.3" height="15.0" fill="rgb(217,133,53)" rx="2" ry="2" /> +<text x="423.85" y="1871.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (8 samples, 0.22%)</title><rect x="672.4" y="2533" width="2.6" height="15.0" fill="rgb(215,11,54)" rx="2" ry="2" /> +<text x="675.39" y="2543.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (2 samples, 0.06%)</title><rect x="954.7" y="1845" width="0.6" height="15.0" fill="rgb(235,82,44)" rx="2" ry="2" /> +<text x="957.66" y="1855.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="1139.1" y="3397" width="0.3" height="15.0" fill="rgb(249,57,11)" rx="2" ry="2" /> +<text x="1142.10" y="3407.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doLoadI32 (1 samples, 0.03%)</title><rect x="1159.3" y="3541" width="0.3" height="15.0" fill="rgb(205,118,38)" rx="2" ry="2" /> +<text x="1162.26" y="3551.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (4 samples, 0.11%)</title><rect x="315.7" y="1845" width="1.4" height="15.0" fill="rgb(242,203,44)" rx="2" ry="2" /> +<text x="318.74" y="1855.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (7 samples, 0.20%)</title><rect x="296.9" y="1877" width="2.3" height="15.0" fill="rgb(236,32,54)" rx="2" ry="2" /> +<text x="299.90" y="1887.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (3 samples, 0.08%)</title><rect x="1154.0" y="3477" width="1.0" height="15.0" fill="rgb(211,224,16)" rx="2" ry="2" /> +<text x="1156.97" y="3487.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.03%)</title><rect x="903.8" y="2485" width="0.3" height="15.0" fill="rgb(223,13,47)" rx="2" ry="2" /> +<text x="906.76" y="2495.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (2 samples, 0.06%)</title><rect x="954.7" y="853" width="0.6" height="15.0" fill="rgb(222,183,39)" rx="2" ry="2" /> +<text x="957.66" y="863.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1,256 samples, 35.18%)</title><rect x="251.3" y="2837" width="415.1" height="15.0" fill="rgb(239,165,35)" rx="2" ry="2" /> +<text x="254.29" y="2847.5" >Nsfisis\Waddiwasi\Execution\Runtime::execInstrs</text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (30 samples, 0.84%)</title><rect x="1095.1" y="3397" width="10.0" height="15.0" fill="rgb(240,210,14)" rx="2" ry="2" /> +<text x="1098.14" y="3407.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="1104.4" y="1957" width="0.3" height="15.0" fill="rgb(228,61,52)" rx="2" ry="2" /> +<text x="1107.39" y="1967.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Stack::popI32 (1 samples, 0.03%)</title><rect x="1137.8" y="3413" width="0.3" height="15.0" fill="rgb(243,104,16)" rx="2" ry="2" /> +<text x="1140.78" y="3423.5" ></text> +</g> +<g > +<title><unknown> (1 samples, 0.03%)</title><rect x="395.7" y="2117" width="0.4" height="15.0" fill="rgb(230,59,36)" rx="2" ry="2" /> +<text x="398.73" y="2127.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.03%)</title><rect x="265.2" y="1589" width="0.3" height="15.0" fill="rgb(238,116,22)" rx="2" ry="2" /> +<text x="268.17" y="1599.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Stack::currentFrame (1 samples, 0.03%)</title><rect x="830.4" y="2197" width="0.3" height="15.0" fill="rgb(216,138,7)" rx="2" ry="2" /> +<text x="833.38" y="2207.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (2 samples, 0.06%)</title><rect x="839.0" y="2261" width="0.6" height="15.0" fill="rgb(221,204,54)" rx="2" ry="2" /> +<text x="841.97" y="2271.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="1121.6" y="3365" width="0.3" height="15.0" fill="rgb(210,178,29)" rx="2" ry="2" /> +<text x="1124.58" y="3375.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (3 samples, 0.08%)</title><rect x="316.1" y="1813" width="1.0" height="15.0" fill="rgb(238,98,37)" rx="2" ry="2" /> +<text x="319.07" y="1823.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (1 samples, 0.03%)</title><rect x="268.1" y="1973" width="0.4" height="15.0" fill="rgb(214,167,7)" rx="2" ry="2" /> +<text x="271.15" y="1983.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (685 samples, 19.19%)</title><rect x="422.2" y="1477" width="226.4" height="15.0" fill="rgb(218,78,48)" rx="2" ry="2" /> +<text x="425.17" y="1487.5" >Nsfisis\Waddiwasi\Execution\R..</text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.03%)</title><rect x="954.3" y="3125" width="0.4" height="15.0" fill="rgb(242,93,9)" rx="2" ry="2" /> +<text x="957.33" y="3135.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (1 samples, 0.03%)</title><rect x="843.6" y="2533" width="0.3" height="15.0" fill="rgb(240,174,0)" rx="2" ry="2" /> +<text x="846.60" y="2543.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.03%)</title><rect x="1104.4" y="2133" width="0.3" height="15.0" fill="rgb(216,186,19)" rx="2" ry="2" /> +<text x="1107.39" y="2143.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (1 samples, 0.03%)</title><rect x="707.1" y="2693" width="0.3" height="15.0" fill="rgb(212,212,49)" rx="2" ry="2" /> +<text x="710.09" y="2703.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (3 samples, 0.08%)</title><rect x="700.8" y="2373" width="1.0" height="15.0" fill="rgb(246,27,36)" rx="2" ry="2" /> +<text x="703.81" y="2383.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (2 samples, 0.06%)</title><rect x="1104.1" y="2613" width="0.6" height="15.0" fill="rgb(219,41,7)" rx="2" ry="2" /> +<text x="1107.06" y="2623.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (2 samples, 0.06%)</title><rect x="656.2" y="2117" width="0.7" height="15.0" fill="rgb(253,97,46)" rx="2" ry="2" /> +<text x="659.19" y="2127.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.03%)</title><rect x="280.0" y="1781" width="0.4" height="15.0" fill="rgb(222,116,2)" rx="2" ry="2" /> +<text x="283.04" y="1791.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (48 samples, 1.34%)</title><rect x="816.5" y="2213" width="15.9" height="15.0" fill="rgb(230,101,27)" rx="2" ry="2" /> +<text x="819.50" y="2223.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.03%)</title><rect x="358.4" y="1589" width="0.3" height="15.0" fill="rgb(215,170,30)" rx="2" ry="2" /> +<text x="361.38" y="1599.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doLoadI32 (1 samples, 0.03%)</title><rect x="271.8" y="2261" width="0.3" height="15.0" fill="rgb(225,194,6)" rx="2" ry="2" /> +<text x="274.78" y="2271.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (6 samples, 0.17%)</title><rect x="414.9" y="1781" width="2.0" height="15.0" fill="rgb(243,77,2)" rx="2" ry="2" /> +<text x="417.90" y="1791.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.03%)</title><rect x="847.2" y="2773" width="0.4" height="15.0" fill="rgb(241,17,12)" rx="2" ry="2" /> +<text x="850.24" y="2783.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doLoadI32 (1 samples, 0.03%)</title><rect x="262.2" y="2037" width="0.3" height="15.0" fill="rgb(220,156,49)" rx="2" ry="2" /> +<text x="265.20" y="2047.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.03%)</title><rect x="301.5" y="1749" width="0.4" height="15.0" fill="rgb(245,60,42)" rx="2" ry="2" /> +<text x="304.53" y="1759.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.03%)</title><rect x="375.9" y="1365" width="0.3" height="15.0" fill="rgb(238,142,9)" rx="2" ry="2" /> +<text x="378.90" y="1375.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.03%)</title><rect x="266.8" y="1557" width="0.4" height="15.0" fill="rgb(234,150,23)" rx="2" ry="2" /> +<text x="269.82" y="1567.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (12 samples, 0.34%)</title><rect x="692.5" y="2597" width="4.0" height="15.0" fill="rgb(246,171,46)" rx="2" ry="2" /> +<text x="695.55" y="2607.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (22 samples, 0.62%)</title><rect x="801.3" y="2341" width="7.3" height="15.0" fill="rgb(207,121,28)" rx="2" ry="2" /> +<text x="804.29" y="2351.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="930.2" y="2437" width="0.3" height="15.0" fill="rgb(223,208,35)" rx="2" ry="2" /> +<text x="933.20" y="2447.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (4 samples, 0.11%)</title><rect x="954.7" y="3333" width="1.3" height="15.0" fill="rgb(240,19,37)" rx="2" ry="2" /> +<text x="957.66" y="3343.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (62 samples, 1.74%)</title><rect x="292.3" y="2037" width="20.5" height="15.0" fill="rgb(218,192,12)" rx="2" ry="2" /> +<text x="295.27" y="2047.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (9 samples, 0.25%)</title><rect x="403.0" y="1813" width="3.0" height="15.0" fill="rgb(227,15,47)" rx="2" ry="2" /> +<text x="406.00" y="1823.5" ></text> +</g> +<g > +<title>assert (1 samples, 0.03%)</title><rect x="194.4" y="3429" width="0.4" height="15.0" fill="rgb(209,30,46)" rx="2" ry="2" /> +<text x="197.44" y="3439.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (6 samples, 0.17%)</title><rect x="673.0" y="2421" width="2.0" height="15.0" fill="rgb(238,125,48)" rx="2" ry="2" /> +<text x="676.05" y="2431.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (1 samples, 0.03%)</title><rect x="650.2" y="2165" width="0.4" height="15.0" fill="rgb(233,41,32)" rx="2" ry="2" /> +<text x="653.24" y="2175.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (1 samples, 0.03%)</title><rect x="328.3" y="2069" width="0.3" height="15.0" fill="rgb(252,41,3)" rx="2" ry="2" /> +<text x="331.30" y="2079.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (11 samples, 0.31%)</title><rect x="413.2" y="1957" width="3.7" height="15.0" fill="rgb(233,95,43)" rx="2" ry="2" /> +<text x="416.25" y="1967.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (2 samples, 0.06%)</title><rect x="954.7" y="1589" width="0.6" height="15.0" fill="rgb(254,63,10)" rx="2" ry="2" /> +<text x="957.66" y="1599.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.03%)</title><rect x="702.8" y="2709" width="0.3" height="15.0" fill="rgb(241,167,26)" rx="2" ry="2" /> +<text x="705.80" y="2719.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (27 samples, 0.76%)</title><rect x="942.1" y="2645" width="8.9" height="15.0" fill="rgb(209,22,43)" rx="2" ry="2" /> +<text x="945.10" y="2655.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (3 samples, 0.08%)</title><rect x="296.9" y="1797" width="1.0" height="15.0" fill="rgb(250,181,14)" rx="2" ry="2" /> +<text x="299.90" y="1807.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doStoreI32 (1 samples, 0.03%)</title><rect x="1165.2" y="3349" width="0.3" height="15.0" fill="rgb(216,217,3)" rx="2" ry="2" /> +<text x="1168.21" y="3359.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (1 samples, 0.03%)</title><rect x="954.3" y="3221" width="0.4" height="15.0" fill="rgb(221,190,44)" rx="2" ry="2" /> +<text x="957.33" y="3231.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1,807 samples, 50.62%)</title><rect x="249.3" y="3141" width="597.3" height="15.0" fill="rgb(247,85,18)" rx="2" ry="2" /> +<text x="252.31" y="3151.5" >Nsfisis\Waddiwasi\Execution\Runtime::execInstr</text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="954.3" y="2885" width="0.4" height="15.0" fill="rgb(219,86,13)" rx="2" ry="2" /> +<text x="957.33" y="2895.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.03%)</title><rect x="316.4" y="789" width="0.3" height="15.0" fill="rgb(241,92,46)" rx="2" ry="2" /> +<text x="319.40" y="799.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (19 samples, 0.53%)</title><rect x="410.9" y="2277" width="6.3" height="15.0" fill="rgb(244,197,1)" rx="2" ry="2" /> +<text x="413.94" y="2287.5" ></text> +</g> +<g > +<title>print_r (2 samples, 0.06%)</title><rect x="193.8" y="3413" width="0.6" height="15.0" fill="rgb(237,185,38)" rx="2" ry="2" /> +<text x="196.78" y="3423.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (1 samples, 0.03%)</title><rect x="894.8" y="2613" width="0.4" height="15.0" fill="rgb(218,58,33)" rx="2" ry="2" /> +<text x="897.83" y="2623.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (11 samples, 0.31%)</title><rect x="386.1" y="1717" width="3.7" height="15.0" fill="rgb(211,188,32)" rx="2" ry="2" /> +<text x="389.15" y="1727.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (2 samples, 0.06%)</title><rect x="954.7" y="1285" width="0.6" height="15.0" fill="rgb(243,66,34)" rx="2" ry="2" /> +<text x="957.66" y="1295.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (6 samples, 0.17%)</title><rect x="846.6" y="3237" width="2.0" height="15.0" fill="rgb(254,163,24)" rx="2" ry="2" /> +<text x="849.58" y="3247.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (3 samples, 0.08%)</title><rect x="316.1" y="1749" width="1.0" height="15.0" fill="rgb(249,138,14)" rx="2" ry="2" /> +<text x="319.07" y="1759.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.03%)</title><rect x="316.7" y="1653" width="0.4" height="15.0" fill="rgb(252,120,4)" rx="2" ry="2" /> +<text x="319.73" y="1663.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\BinaryFormat\Decoder::decodeInstr (1 samples, 0.03%)</title><rect x="12.3" y="3189" width="0.3" height="15.0" fill="rgb(252,127,4)" rx="2" ry="2" /> +<text x="15.31" y="3199.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.03%)</title><rect x="330.9" y="1973" width="0.4" height="15.0" fill="rgb(207,159,18)" rx="2" ry="2" /> +<text x="333.95" y="1983.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="894.2" y="2693" width="0.3" height="15.0" fill="rgb(240,209,20)" rx="2" ry="2" /> +<text x="897.17" y="2703.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (2 samples, 0.06%)</title><rect x="664.1" y="2117" width="0.7" height="15.0" fill="rgb(245,95,5)" rx="2" ry="2" /> +<text x="667.12" y="2127.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.03%)</title><rect x="1107.4" y="3317" width="0.3" height="15.0" fill="rgb(221,120,7)" rx="2" ry="2" /> +<text x="1110.37" y="3327.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::deactivateLabel (1 samples, 0.03%)</title><rect x="669.1" y="2741" width="0.3" height="15.0" fill="rgb(210,102,48)" rx="2" ry="2" /> +<text x="672.08" y="2751.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (4 samples, 0.11%)</title><rect x="700.5" y="2421" width="1.3" height="15.0" fill="rgb(250,76,18)" rx="2" ry="2" /> +<text x="703.48" y="2431.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Stack::pushValue (1 samples, 0.03%)</title><rect x="650.9" y="2101" width="0.3" height="15.0" fill="rgb(245,16,41)" rx="2" ry="2" /> +<text x="653.90" y="2111.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="847.9" y="2789" width="0.3" height="15.0" fill="rgb(237,139,31)" rx="2" ry="2" /> +<text x="850.90" y="2799.5" ></text> +</g> +<g > +<title><unknown> (1 samples, 0.03%)</title><rect x="870.4" y="1237" width="0.3" height="15.0" fill="rgb(239,26,8)" rx="2" ry="2" /> +<text x="873.38" y="1247.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (2 samples, 0.06%)</title><rect x="250.6" y="2693" width="0.7" height="15.0" fill="rgb(250,49,44)" rx="2" ry="2" /> +<text x="253.63" y="2703.5" ></text> +</g> +<g > +<title><unknown> (22 samples, 0.62%)</title><rect x="164.0" y="3429" width="7.3" height="15.0" fill="rgb(252,213,44)" rx="2" ry="2" /> +<text x="167.03" y="3439.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (2 samples, 0.06%)</title><rect x="661.8" y="2229" width="0.7" height="15.0" fill="rgb(231,130,28)" rx="2" ry="2" /> +<text x="664.81" y="2239.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (3 samples, 0.08%)</title><rect x="331.6" y="1781" width="1.0" height="15.0" fill="rgb(245,21,48)" rx="2" ry="2" /> +<text x="334.61" y="1791.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="271.8" y="2181" width="0.3" height="15.0" fill="rgb(243,6,32)" rx="2" ry="2" /> +<text x="274.78" y="2191.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Stack::popI32 (1 samples, 0.03%)</title><rect x="691.9" y="2485" width="0.3" height="15.0" fill="rgb(247,78,40)" rx="2" ry="2" /> +<text x="694.89" y="2495.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (174 samples, 4.87%)</title><rect x="784.4" y="2725" width="57.5" height="15.0" fill="rgb(233,155,11)" rx="2" ry="2" /> +<text x="787.44" y="2735.5" >Nsfisi..</text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (4 samples, 0.11%)</title><rect x="370.3" y="1781" width="1.3" height="15.0" fill="rgb(217,53,20)" rx="2" ry="2" /> +<text x="373.28" y="1791.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Stack::popI32 (1 samples, 0.03%)</title><rect x="856.2" y="2549" width="0.3" height="15.0" fill="rgb(237,223,21)" rx="2" ry="2" /> +<text x="859.16" y="2559.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.03%)</title><rect x="656.5" y="2005" width="0.4" height="15.0" fill="rgb(244,89,36)" rx="2" ry="2" /> +<text x="659.52" y="2015.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (2 samples, 0.06%)</title><rect x="399.4" y="1973" width="0.6" height="15.0" fill="rgb(225,90,32)" rx="2" ry="2" /> +<text x="402.37" y="1983.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (51 samples, 1.43%)</title><rect x="815.5" y="2245" width="16.9" height="15.0" fill="rgb(223,178,20)" rx="2" ry="2" /> +<text x="818.51" y="2255.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (317 samples, 8.88%)</title><rect x="849.6" y="3173" width="104.7" height="15.0" fill="rgb(213,65,47)" rx="2" ry="2" /> +<text x="852.55" y="3183.5" >Nsfisis\Wadd..</text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.03%)</title><rect x="358.4" y="1685" width="0.3" height="15.0" fill="rgb(250,218,31)" rx="2" ry="2" /> +<text x="361.38" y="1695.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.03%)</title><rect x="266.8" y="1621" width="0.4" height="15.0" fill="rgb(238,113,43)" rx="2" ry="2" /> +<text x="269.82" y="1631.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (8 samples, 0.22%)</title><rect x="704.4" y="2725" width="2.7" height="15.0" fill="rgb(247,193,20)" rx="2" ry="2" /> +<text x="707.45" y="2735.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (2 samples, 0.06%)</title><rect x="954.7" y="389" width="0.6" height="15.0" fill="rgb(228,152,3)" rx="2" ry="2" /> +<text x="957.66" y="399.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.03%)</title><rect x="344.8" y="1941" width="0.4" height="15.0" fill="rgb(253,13,51)" rx="2" ry="2" /> +<text x="347.83" y="1951.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (13 samples, 0.36%)</title><rect x="332.6" y="1797" width="4.3" height="15.0" fill="rgb(250,59,24)" rx="2" ry="2" /> +<text x="335.60" y="1807.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (3 samples, 0.08%)</title><rect x="399.0" y="2005" width="1.0" height="15.0" fill="rgb(242,17,1)" rx="2" ry="2" /> +<text x="402.04" y="2015.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="420.2" y="2021" width="0.3" height="15.0" fill="rgb(237,24,7)" rx="2" ry="2" /> +<text x="423.19" y="2031.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (2 samples, 0.06%)</title><rect x="250.6" y="2661" width="0.7" height="15.0" fill="rgb(228,74,10)" rx="2" ry="2" /> +<text x="253.63" y="2671.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\StackEntry::Value (1 samples, 0.03%)</title><rect x="708.4" y="2181" width="0.3" height="15.0" fill="rgb(254,58,21)" rx="2" ry="2" /> +<text x="711.41" y="2191.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.03%)</title><rect x="422.8" y="853" width="0.4" height="15.0" fill="rgb(250,225,20)" rx="2" ry="2" /> +<text x="425.83" y="863.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (1 samples, 0.03%)</title><rect x="667.1" y="2949" width="0.3" height="15.0" fill="rgb(207,51,48)" rx="2" ry="2" /> +<text x="670.10" y="2959.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="669.4" y="2597" width="0.3" height="15.0" fill="rgb(243,133,19)" rx="2" ry="2" /> +<text x="672.41" y="2607.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (2 samples, 0.06%)</title><rect x="302.2" y="1717" width="0.7" height="15.0" fill="rgb(250,101,5)" rx="2" ry="2" /> +<text x="305.19" y="1727.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.03%)</title><rect x="784.1" y="2741" width="0.3" height="15.0" fill="rgb(239,68,4)" rx="2" ry="2" /> +<text x="787.11" y="2751.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.03%)</title><rect x="1105.4" y="3413" width="0.3" height="15.0" fill="rgb(205,145,28)" rx="2" ry="2" /> +<text x="1108.38" y="3423.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.03%)</title><rect x="258.6" y="2005" width="0.3" height="15.0" fill="rgb(240,225,4)" rx="2" ry="2" /> +<text x="261.56" y="2015.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (1 samples, 0.03%)</title><rect x="383.5" y="1861" width="0.3" height="15.0" fill="rgb(226,226,42)" rx="2" ry="2" /> +<text x="386.50" y="1871.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (4 samples, 0.11%)</title><rect x="311.4" y="1733" width="1.4" height="15.0" fill="rgb(208,99,13)" rx="2" ry="2" /> +<text x="314.45" y="1743.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Stack::pushValue (1 samples, 0.03%)</title><rect x="262.2" y="1845" width="0.3" height="15.0" fill="rgb(248,16,17)" rx="2" ry="2" /> +<text x="265.20" y="1855.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (3 samples, 0.08%)</title><rect x="705.1" y="2693" width="1.0" height="15.0" fill="rgb(220,146,15)" rx="2" ry="2" /> +<text x="708.11" y="2703.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (2 samples, 0.06%)</title><rect x="302.2" y="1669" width="0.7" height="15.0" fill="rgb(249,174,20)" rx="2" ry="2" /> +<text x="305.19" y="1679.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="877.6" y="2149" width="0.4" height="15.0" fill="rgb(242,212,47)" rx="2" ry="2" /> +<text x="880.65" y="2159.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.03%)</title><rect x="954.3" y="2805" width="0.4" height="15.0" fill="rgb(253,126,40)" rx="2" ry="2" /> +<text x="957.33" y="2815.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="262.2" y="2021" width="0.3" height="15.0" fill="rgb(238,22,54)" rx="2" ry="2" /> +<text x="265.20" y="2031.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (1 samples, 0.03%)</title><rect x="847.9" y="2821" width="0.3" height="15.0" fill="rgb(235,216,49)" rx="2" ry="2" /> +<text x="850.90" y="2831.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="665.8" y="2405" width="0.3" height="15.0" fill="rgb(240,226,54)" rx="2" ry="2" /> +<text x="668.78" y="2415.5" ></text> +</g> +<g > +<title><unknown> (1 samples, 0.03%)</title><rect x="870.4" y="837" width="0.3" height="15.0" fill="rgb(221,162,45)" rx="2" ry="2" /> +<text x="873.38" y="847.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Stack::pushI32 (1 samples, 0.03%)</title><rect x="874.0" y="2357" width="0.3" height="15.0" fill="rgb(214,28,27)" rx="2" ry="2" /> +<text x="877.01" y="2367.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (6 samples, 0.17%)</title><rect x="283.0" y="1973" width="2.0" height="15.0" fill="rgb(217,163,23)" rx="2" ry="2" /> +<text x="286.02" y="1983.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (11 samples, 0.31%)</title><rect x="287.3" y="2069" width="3.7" height="15.0" fill="rgb(254,171,44)" rx="2" ry="2" /> +<text x="290.32" y="2079.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\StackEntry::Value (1 samples, 0.03%)</title><rect x="872.7" y="2117" width="0.3" height="15.0" fill="rgb(253,187,18)" rx="2" ry="2" /> +<text x="875.69" y="2127.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (41 samples, 1.15%)</title><rect x="860.5" y="2357" width="13.5" height="15.0" fill="rgb(211,179,20)" rx="2" ry="2" /> +<text x="863.46" y="2367.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.03%)</title><rect x="372.3" y="1653" width="0.3" height="15.0" fill="rgb(222,127,4)" rx="2" ry="2" /> +<text x="375.26" y="1663.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (87 samples, 2.44%)</title><rect x="1077.6" y="3493" width="28.8" height="15.0" fill="rgb(228,73,27)" rx="2" ry="2" /> +<text x="1080.62" y="3503.5" >Ns..</text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="702.8" y="2373" width="0.3" height="15.0" fill="rgb(245,49,47)" rx="2" ry="2" /> +<text x="705.80" y="2383.5" ></text> +</g> +<g > +<title>print_r (1 samples, 0.03%)</title><rect x="792.0" y="2261" width="0.4" height="15.0" fill="rgb(228,147,51)" rx="2" ry="2" /> +<text x="795.04" y="2271.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Stack::popI32 (1 samples, 0.03%)</title><rect x="302.9" y="1845" width="0.3" height="15.0" fill="rgb(207,113,54)" rx="2" ry="2" /> +<text x="305.85" y="1855.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::deactivateLabel (2 samples, 0.06%)</title><rect x="825.1" y="2149" width="0.7" height="15.0" fill="rgb(241,183,30)" rx="2" ry="2" /> +<text x="828.09" y="2159.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (174 samples, 4.87%)</title><rect x="784.4" y="2773" width="57.5" height="15.0" fill="rgb(251,188,33)" rx="2" ry="2" /> +<text x="787.44" y="2783.5" >Nsfisi..</text> +</g> +<g > +<title><unknown> (2 samples, 0.06%)</title><rect x="823.4" y="2149" width="0.7" height="15.0" fill="rgb(215,67,32)" rx="2" ry="2" /> +<text x="826.44" y="2159.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.03%)</title><rect x="316.4" y="917" width="0.3" height="15.0" fill="rgb(224,124,3)" rx="2" ry="2" /> +<text x="319.40" y="927.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (6 samples, 0.17%)</title><rect x="256.9" y="2197" width="2.0" height="15.0" fill="rgb(210,184,23)" rx="2" ry="2" /> +<text x="259.91" y="2207.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (1 samples, 0.03%)</title><rect x="1090.8" y="3445" width="0.4" height="15.0" fill="rgb(238,186,49)" rx="2" ry="2" /> +<text x="1093.84" y="3455.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (2 samples, 0.06%)</title><rect x="954.7" y="1621" width="0.6" height="15.0" fill="rgb(218,86,5)" rx="2" ry="2" /> +<text x="957.66" y="1631.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (11 samples, 0.31%)</title><rect x="264.2" y="1973" width="3.6" height="15.0" fill="rgb(206,122,21)" rx="2" ry="2" /> +<text x="267.18" y="1983.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (4 samples, 0.11%)</title><rect x="340.2" y="1989" width="1.3" height="15.0" fill="rgb(249,132,38)" rx="2" ry="2" /> +<text x="343.20" y="1999.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="391.4" y="1861" width="0.4" height="15.0" fill="rgb(245,216,53)" rx="2" ry="2" /> +<text x="394.43" y="1871.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (4 samples, 0.11%)</title><rect x="370.3" y="1717" width="1.3" height="15.0" fill="rgb(206,140,34)" rx="2" ry="2" /> +<text x="373.28" y="1727.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (1 samples, 0.03%)</title><rect x="267.5" y="1845" width="0.3" height="15.0" fill="rgb(209,47,7)" rx="2" ry="2" /> +<text x="270.48" y="1855.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (317 samples, 8.88%)</title><rect x="849.6" y="3253" width="104.7" height="15.0" fill="rgb(249,34,16)" rx="2" ry="2" /> +<text x="852.55" y="3263.5" >Nsfisis\Wadd..</text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.03%)</title><rect x="838.6" y="2165" width="0.4" height="15.0" fill="rgb(231,27,23)" rx="2" ry="2" /> +<text x="841.64" y="2175.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\MemInst::storeByte (1 samples, 0.03%)</title><rect x="244.0" y="3445" width="0.3" height="15.0" fill="rgb(252,117,52)" rx="2" ry="2" /> +<text x="247.02" y="3455.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (55 samples, 1.54%)</title><rect x="814.2" y="2293" width="18.2" height="15.0" fill="rgb(254,111,48)" rx="2" ry="2" /> +<text x="817.18" y="2303.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (41 samples, 1.15%)</title><rect x="328.6" y="2133" width="13.6" height="15.0" fill="rgb(222,75,17)" rx="2" ry="2" /> +<text x="331.63" y="2143.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (230 samples, 6.44%)</title><rect x="707.4" y="2677" width="76.0" height="15.0" fill="rgb(250,102,53)" rx="2" ry="2" /> +<text x="710.42" y="2687.5" >Nsfisis\..</text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (2 samples, 0.06%)</title><rect x="250.6" y="2709" width="0.7" height="15.0" fill="rgb(239,189,19)" rx="2" ry="2" /> +<text x="253.63" y="2719.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (682 samples, 19.10%)</title><rect x="423.2" y="837" width="225.4" height="15.0" fill="rgb(231,228,23)" rx="2" ry="2" /> +<text x="426.17" y="847.5" >Nsfisis\Waddiwasi\Execution\R..</text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (328 samples, 9.19%)</title><rect x="676.0" y="2917" width="108.4" height="15.0" fill="rgb(219,228,9)" rx="2" ry="2" /> +<text x="679.02" y="2927.5" >Nsfisis\Waddi..</text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doStoreI32 (1 samples, 0.03%)</title><rect x="406.0" y="1813" width="0.3" height="15.0" fill="rgb(240,19,51)" rx="2" ry="2" /> +<text x="408.98" y="1823.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (5 samples, 0.14%)</title><rect x="315.4" y="2085" width="1.7" height="15.0" fill="rgb(205,180,30)" rx="2" ry="2" /> +<text x="318.41" y="2095.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (2 samples, 0.06%)</title><rect x="1104.1" y="2645" width="0.6" height="15.0" fill="rgb(243,37,24)" rx="2" ry="2" /> +<text x="1107.06" y="2655.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.03%)</title><rect x="1159.3" y="3445" width="0.3" height="15.0" fill="rgb(226,71,36)" rx="2" ry="2" /> +<text x="1162.26" y="3455.5" ></text> +</g> +<g > +<title><unknown> (1 samples, 0.03%)</title><rect x="870.4" y="805" width="0.3" height="15.0" fill="rgb(240,209,22)" rx="2" ry="2" /> +<text x="873.38" y="815.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (14 samples, 0.39%)</title><rect x="354.1" y="1941" width="4.6" height="15.0" fill="rgb(243,8,12)" rx="2" ry="2" /> +<text x="357.08" y="1951.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (9 samples, 0.25%)</title><rect x="355.7" y="1829" width="3.0" height="15.0" fill="rgb(239,177,29)" rx="2" ry="2" /> +<text x="358.74" y="1839.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (3 samples, 0.08%)</title><rect x="331.6" y="1717" width="1.0" height="15.0" fill="rgb(237,191,54)" rx="2" ry="2" /> +<text x="334.61" y="1727.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (1 samples, 0.03%)</title><rect x="411.6" y="2021" width="0.3" height="15.0" fill="rgb(238,80,11)" rx="2" ry="2" /> +<text x="414.60" y="2031.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (6 samples, 0.17%)</title><rect x="841.9" y="2901" width="2.0" height="15.0" fill="rgb(252,7,11)" rx="2" ry="2" /> +<text x="844.95" y="2911.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (2 samples, 0.06%)</title><rect x="263.2" y="1845" width="0.6" height="15.0" fill="rgb(251,185,54)" rx="2" ry="2" /> +<text x="266.19" y="1855.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.03%)</title><rect x="955.7" y="2773" width="0.3" height="15.0" fill="rgb(251,199,12)" rx="2" ry="2" /> +<text x="958.65" y="2783.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="1087.5" y="3429" width="0.4" height="15.0" fill="rgb(210,178,30)" rx="2" ry="2" /> +<text x="1090.54" y="3439.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (3 samples, 0.08%)</title><rect x="847.2" y="2917" width="1.0" height="15.0" fill="rgb(220,194,36)" rx="2" ry="2" /> +<text x="850.24" y="2927.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (5 samples, 0.14%)</title><rect x="247.7" y="3141" width="1.6" height="15.0" fill="rgb(226,53,22)" rx="2" ry="2" /> +<text x="250.65" y="3151.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.03%)</title><rect x="954.3" y="2965" width="0.4" height="15.0" fill="rgb(207,117,24)" rx="2" ry="2" /> +<text x="957.33" y="2975.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (1 samples, 0.03%)</title><rect x="696.5" y="2581" width="0.3" height="15.0" fill="rgb(219,169,25)" rx="2" ry="2" /> +<text x="699.52" y="2591.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.03%)</title><rect x="401.0" y="1781" width="0.4" height="15.0" fill="rgb(207,50,30)" rx="2" ry="2" /> +<text x="404.02" y="1791.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (8 samples, 0.22%)</title><rect x="668.1" y="2789" width="2.6" height="15.0" fill="rgb(250,177,3)" rx="2" ry="2" /> +<text x="671.09" y="2799.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="849.2" y="2853" width="0.4" height="15.0" fill="rgb(234,212,39)" rx="2" ry="2" /> +<text x="852.22" y="2863.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (2 samples, 0.06%)</title><rect x="1104.1" y="2901" width="0.6" height="15.0" fill="rgb(247,66,22)" rx="2" ry="2" /> +<text x="1107.06" y="2911.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (2 samples, 0.06%)</title><rect x="1104.1" y="2725" width="0.6" height="15.0" fill="rgb(245,190,52)" rx="2" ry="2" /> +<text x="1107.06" y="2735.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (305 samples, 8.54%)</title><rect x="852.9" y="2885" width="100.8" height="15.0" fill="rgb(210,26,28)" rx="2" ry="2" /> +<text x="855.86" y="2895.5" >Nsfisis\Wadd..</text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (39 samples, 1.09%)</title><rect x="881.6" y="2725" width="12.9" height="15.0" fill="rgb(253,134,37)" rx="2" ry="2" /> +<text x="884.61" y="2735.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (2 samples, 0.06%)</title><rect x="954.7" y="405" width="0.6" height="15.0" fill="rgb(215,148,21)" rx="2" ry="2" /> +<text x="957.66" y="415.5" ></text> +</g> +<g > +<title>print_r (1 samples, 0.03%)</title><rect x="1141.4" y="3493" width="0.3" height="15.0" fill="rgb(225,196,13)" rx="2" ry="2" /> +<text x="1144.41" y="3503.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (38 samples, 1.06%)</title><rect x="652.6" y="2373" width="12.5" height="15.0" fill="rgb(235,140,34)" rx="2" ry="2" /> +<text x="655.55" y="2383.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.03%)</title><rect x="420.9" y="2069" width="0.3" height="15.0" fill="rgb(228,57,44)" rx="2" ry="2" /> +<text x="423.85" y="2079.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (9 samples, 0.25%)</title><rect x="403.0" y="1781" width="3.0" height="15.0" fill="rgb(239,14,21)" rx="2" ry="2" /> +<text x="406.00" y="1791.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (16 samples, 0.45%)</title><rect x="670.7" y="2837" width="5.3" height="15.0" fill="rgb(251,3,41)" rx="2" ry="2" /> +<text x="673.73" y="2847.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="843.9" y="2725" width="0.4" height="15.0" fill="rgb(248,207,30)" rx="2" ry="2" /> +<text x="846.93" y="2735.5" ></text> +</g> +<g > +<title><unknown> (1 samples, 0.03%)</title><rect x="676.7" y="2757" width="0.3" height="15.0" fill="rgb(251,60,24)" rx="2" ry="2" /> +<text x="679.68" y="2767.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (1 samples, 0.03%)</title><rect x="954.3" y="3029" width="0.4" height="15.0" fill="rgb(226,120,7)" rx="2" ry="2" /> +<text x="957.33" y="3039.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (1 samples, 0.03%)</title><rect x="251.9" y="2757" width="0.4" height="15.0" fill="rgb(240,137,37)" rx="2" ry="2" /> +<text x="254.95" y="2767.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (682 samples, 19.10%)</title><rect x="423.2" y="869" width="225.4" height="15.0" fill="rgb(225,217,8)" rx="2" ry="2" /> +<text x="426.17" y="879.5" >Nsfisis\Waddiwasi\Execution\R..</text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (3 samples, 0.08%)</title><rect x="698.8" y="2533" width="1.0" height="15.0" fill="rgb(243,43,5)" rx="2" ry="2" /> +<text x="701.83" y="2543.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="845.6" y="2565" width="0.3" height="15.0" fill="rgb(241,88,25)" rx="2" ry="2" /> +<text x="848.59" y="2575.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="666.1" y="2309" width="0.3" height="15.0" fill="rgb(233,200,7)" rx="2" ry="2" /> +<text x="669.11" y="2319.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (3 samples, 0.08%)</title><rect x="404.7" y="1333" width="0.9" height="15.0" fill="rgb(208,193,4)" rx="2" ry="2" /> +<text x="407.66" y="1343.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Stack::popI32 (1 samples, 0.03%)</title><rect x="314.1" y="1365" width="0.3" height="15.0" fill="rgb(238,100,33)" rx="2" ry="2" /> +<text x="317.09" y="1375.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.03%)</title><rect x="843.9" y="2645" width="0.4" height="15.0" fill="rgb(221,58,36)" rx="2" ry="2" /> +<text x="846.93" y="2655.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (3 samples, 0.08%)</title><rect x="1165.5" y="3525" width="1.0" height="15.0" fill="rgb(227,96,52)" rx="2" ry="2" /> +<text x="1168.54" y="3535.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (2 samples, 0.06%)</title><rect x="661.8" y="2101" width="0.7" height="15.0" fill="rgb(231,122,38)" rx="2" ry="2" /> +<text x="664.81" y="2111.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (1,253 samples, 35.10%)</title><rect x="252.3" y="2709" width="414.1" height="15.0" fill="rgb(246,1,53)" rx="2" ry="2" /> +<text x="255.28" y="2719.5" >Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc</text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.03%)</title><rect x="848.2" y="3093" width="0.4" height="15.0" fill="rgb(222,229,29)" rx="2" ry="2" /> +<text x="851.23" y="3103.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (1 samples, 0.03%)</title><rect x="665.8" y="2437" width="0.3" height="15.0" fill="rgb(214,18,41)" rx="2" ry="2" /> +<text x="668.78" y="2447.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Stack::pushValue (1 samples, 0.03%)</title><rect x="666.8" y="2805" width="0.3" height="15.0" fill="rgb(220,3,50)" rx="2" ry="2" /> +<text x="669.77" y="2815.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Structure\Instructions\Instr::I32Store8 (54 samples, 1.51%)</title><rect x="228.2" y="3477" width="17.8" height="15.0" fill="rgb(247,110,6)" rx="2" ry="2" /> +<text x="231.15" y="3487.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="246.0" y="3141" width="0.3" height="15.0" fill="rgb(219,204,19)" rx="2" ry="2" /> +<text x="249.00" y="3151.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (2 samples, 0.06%)</title><rect x="268.8" y="2069" width="0.7" height="15.0" fill="rgb(238,158,45)" rx="2" ry="2" /> +<text x="271.81" y="2079.5" ></text> +</g> +<g > +<title><unknown> (1 samples, 0.03%)</title><rect x="1150.3" y="3509" width="0.4" height="15.0" fill="rgb(241,57,3)" rx="2" ry="2" /> +<text x="1153.34" y="3519.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (8 samples, 0.22%)</title><rect x="672.4" y="2485" width="2.6" height="15.0" fill="rgb(228,21,36)" rx="2" ry="2" /> +<text x="675.39" y="2495.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1,807 samples, 50.62%)</title><rect x="249.3" y="3173" width="597.3" height="15.0" fill="rgb(252,75,47)" rx="2" ry="2" /> +<text x="252.31" y="3183.5" >Nsfisis\Waddiwasi\Execution\Runtime::execInstr</text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Stack::pushI32 (1 samples, 0.03%)</title><rect x="416.9" y="2005" width="0.3" height="15.0" fill="rgb(249,37,11)" rx="2" ry="2" /> +<text x="419.89" y="2015.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (4 samples, 0.11%)</title><rect x="844.6" y="2853" width="1.3" height="15.0" fill="rgb(208,70,24)" rx="2" ry="2" /> +<text x="847.59" y="2863.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (1 samples, 0.03%)</title><rect x="249.3" y="2997" width="0.3" height="15.0" fill="rgb(206,202,30)" rx="2" ry="2" /> +<text x="252.31" y="3007.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="347.5" y="1973" width="0.3" height="15.0" fill="rgb(228,109,47)" rx="2" ry="2" /> +<text x="350.47" y="1983.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (1 samples, 0.03%)</title><rect x="701.5" y="2181" width="0.3" height="15.0" fill="rgb(219,109,6)" rx="2" ry="2" /> +<text x="704.47" y="2191.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (2 samples, 0.06%)</title><rect x="312.1" y="1589" width="0.7" height="15.0" fill="rgb(207,132,37)" rx="2" ry="2" /> +<text x="315.11" y="1599.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="952.3" y="2373" width="0.4" height="15.0" fill="rgb(244,75,23)" rx="2" ry="2" /> +<text x="955.35" y="2383.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Structure\Instructions\Instr::LocalGet (1 samples, 0.03%)</title><rect x="12.6" y="3237" width="0.4" height="15.0" fill="rgb(250,21,3)" rx="2" ry="2" /> +<text x="15.64" y="3247.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (2 samples, 0.06%)</title><rect x="670.7" y="2501" width="0.7" height="15.0" fill="rgb(213,196,37)" rx="2" ry="2" /> +<text x="673.73" y="2511.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (6 samples, 0.17%)</title><rect x="879.3" y="2725" width="2.0" height="15.0" fill="rgb(232,5,34)" rx="2" ry="2" /> +<text x="882.30" y="2735.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="391.1" y="1829" width="0.3" height="15.0" fill="rgb(239,149,14)" rx="2" ry="2" /> +<text x="394.10" y="1839.5" ></text> +</g> +<g > +<title><unknown> (1 samples, 0.03%)</title><rect x="395.7" y="2133" width="0.4" height="15.0" fill="rgb(230,144,41)" rx="2" ry="2" /> +<text x="398.73" y="2143.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Stack::pushValue (1 samples, 0.03%)</title><rect x="268.1" y="1877" width="0.4" height="15.0" fill="rgb(245,90,13)" rx="2" ry="2" /> +<text x="271.15" y="1887.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="808.6" y="2309" width="0.3" height="15.0" fill="rgb(230,121,28)" rx="2" ry="2" /> +<text x="811.57" y="2319.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::invokeByFuncAddr (5 samples, 0.14%)</title><rect x="844.3" y="2981" width="1.6" height="15.0" fill="rgb(251,168,11)" rx="2" ry="2" /> +<text x="847.26" y="2991.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\StackEntry::Value (1 samples, 0.03%)</title><rect x="870.4" y="2085" width="0.3" height="15.0" fill="rgb(250,29,5)" rx="2" ry="2" /> +<text x="873.38" y="2095.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (3 samples, 0.08%)</title><rect x="842.9" y="2805" width="1.0" height="15.0" fill="rgb(214,36,30)" rx="2" ry="2" /> +<text x="845.94" y="2815.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (4 samples, 0.11%)</title><rect x="400.0" y="1957" width="1.4" height="15.0" fill="rgb(224,201,53)" rx="2" ry="2" /> +<text x="403.03" y="1967.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (3 samples, 0.08%)</title><rect x="670.7" y="2789" width="1.0" height="15.0" fill="rgb(208,142,37)" rx="2" ry="2" /> +<text x="673.73" y="2799.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Stack::pushValue (1 samples, 0.03%)</title><rect x="1137.1" y="3253" width="0.3" height="15.0" fill="rgb(233,64,25)" rx="2" ry="2" /> +<text x="1140.11" y="3263.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (1 samples, 0.03%)</title><rect x="274.8" y="2149" width="0.3" height="15.0" fill="rgb(243,111,46)" rx="2" ry="2" /> +<text x="277.76" y="2159.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (5 samples, 0.14%)</title><rect x="836.0" y="2165" width="1.7" height="15.0" fill="rgb(208,178,39)" rx="2" ry="2" /> +<text x="839.00" y="2175.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (2 samples, 0.06%)</title><rect x="354.4" y="1829" width="0.7" height="15.0" fill="rgb(243,65,44)" rx="2" ry="2" /> +<text x="357.41" y="1839.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (2 samples, 0.06%)</title><rect x="1107.7" y="3365" width="0.7" height="15.0" fill="rgb(231,103,43)" rx="2" ry="2" /> +<text x="1110.70" y="3375.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.03%)</title><rect x="677.0" y="2741" width="0.3" height="15.0" fill="rgb(237,13,30)" rx="2" ry="2" /> +<text x="680.01" y="2751.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (685 samples, 19.19%)</title><rect x="422.2" y="1461" width="226.4" height="15.0" fill="rgb(225,205,36)" rx="2" ry="2" /> +<text x="425.17" y="1471.5" >Nsfisis\Waddiwasi\Execution\R..</text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="270.8" y="1829" width="0.3" height="15.0" fill="rgb(239,30,4)" rx="2" ry="2" /> +<text x="273.79" y="1839.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.03%)</title><rect x="670.1" y="2485" width="0.3" height="15.0" fill="rgb(235,105,3)" rx="2" ry="2" /> +<text x="673.07" y="2495.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (2 samples, 0.06%)</title><rect x="697.2" y="2485" width="0.6" height="15.0" fill="rgb(221,213,43)" rx="2" ry="2" /> +<text x="700.18" y="2495.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Stack::popValue (1 samples, 0.03%)</title><rect x="841.0" y="2421" width="0.3" height="15.0" fill="rgb(248,198,6)" rx="2" ry="2" /> +<text x="843.96" y="2431.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (3 samples, 0.08%)</title><rect x="698.8" y="2469" width="1.0" height="15.0" fill="rgb(226,65,39)" rx="2" ry="2" /> +<text x="701.83" y="2479.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="790.1" y="1893" width="0.3" height="15.0" fill="rgb(223,218,51)" rx="2" ry="2" /> +<text x="793.06" y="1903.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.03%)</title><rect x="843.9" y="2837" width="0.4" height="15.0" fill="rgb(249,3,2)" rx="2" ry="2" /> +<text x="846.93" y="2847.5" ></text> +</g> +<g > +<title>ord (1 samples, 0.03%)</title><rect x="16.3" y="3413" width="0.3" height="15.0" fill="rgb(215,183,31)" rx="2" ry="2" /> +<text x="19.28" y="3423.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Num::I32 (1 samples, 0.03%)</title><rect x="171.3" y="3429" width="0.3" height="15.0" fill="rgb(237,148,31)" rx="2" ry="2" /> +<text x="174.30" y="3439.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Stack::pushValue (1 samples, 0.03%)</title><rect x="830.1" y="2165" width="0.3" height="15.0" fill="rgb(246,2,43)" rx="2" ry="2" /> +<text x="833.05" y="2175.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (3 samples, 0.08%)</title><rect x="697.2" y="2501" width="1.0" height="15.0" fill="rgb(214,124,47)" rx="2" ry="2" /> +<text x="700.18" y="2511.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="951.4" y="2693" width="0.3" height="15.0" fill="rgb(208,73,50)" rx="2" ry="2" /> +<text x="954.36" y="2703.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="1116.3" y="3461" width="0.3" height="15.0" fill="rgb(244,11,1)" rx="2" ry="2" /> +<text x="1119.29" y="3471.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (11 samples, 0.31%)</title><rect x="355.1" y="1861" width="3.6" height="15.0" fill="rgb(248,207,5)" rx="2" ry="2" /> +<text x="358.08" y="1871.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (180 samples, 5.04%)</title><rect x="784.4" y="2933" width="59.5" height="15.0" fill="rgb(240,155,48)" rx="2" ry="2" /> +<text x="787.44" y="2943.5" >Nsfisi..</text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="843.6" y="2501" width="0.3" height="15.0" fill="rgb(247,25,3)" rx="2" ry="2" /> +<text x="846.60" y="2511.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="851.2" y="2405" width="0.3" height="15.0" fill="rgb(244,178,25)" rx="2" ry="2" /> +<text x="854.20" y="2415.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="701.5" y="2277" width="0.3" height="15.0" fill="rgb(245,44,37)" rx="2" ry="2" /> +<text x="704.47" y="2287.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (24 samples, 0.67%)</title><rect x="930.5" y="2517" width="8.0" height="15.0" fill="rgb(228,165,0)" rx="2" ry="2" /> +<text x="933.53" y="2527.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (3 samples, 0.08%)</title><rect x="848.6" y="3205" width="1.0" height="15.0" fill="rgb(223,115,12)" rx="2" ry="2" /> +<text x="851.56" y="3215.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (7 samples, 0.20%)</title><rect x="259.9" y="2037" width="2.3" height="15.0" fill="rgb(225,229,23)" rx="2" ry="2" /> +<text x="262.88" y="2047.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="270.8" y="1765" width="0.3" height="15.0" fill="rgb(239,16,25)" rx="2" ry="2" /> +<text x="273.79" y="1775.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (468 samples, 13.11%)</title><rect x="254.3" y="2373" width="154.7" height="15.0" fill="rgb(249,123,23)" rx="2" ry="2" /> +<text x="257.26" y="2383.5" >Nsfisis\Waddiwasi\E..</text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.03%)</title><rect x="420.2" y="2197" width="0.3" height="15.0" fill="rgb(215,34,13)" rx="2" ry="2" /> +<text x="423.19" y="2207.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (1 samples, 0.03%)</title><rect x="1165.2" y="3525" width="0.3" height="15.0" fill="rgb(252,5,22)" rx="2" ry="2" /> +<text x="1168.21" y="3535.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="319.0" y="2021" width="0.4" height="15.0" fill="rgb(213,113,12)" rx="2" ry="2" /> +<text x="322.05" y="2031.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (2 samples, 0.06%)</title><rect x="954.7" y="1269" width="0.6" height="15.0" fill="rgb(228,157,39)" rx="2" ry="2" /> +<text x="957.66" y="1279.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (63 samples, 1.76%)</title><rect x="919.3" y="2533" width="20.8" height="15.0" fill="rgb(248,195,20)" rx="2" ry="2" /> +<text x="922.29" y="2543.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.03%)</title><rect x="656.5" y="1941" width="0.4" height="15.0" fill="rgb(221,39,36)" rx="2" ry="2" /> +<text x="659.52" y="1951.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (6 samples, 0.17%)</title><rect x="849.6" y="2981" width="1.9" height="15.0" fill="rgb(241,125,29)" rx="2" ry="2" /> +<text x="852.55" y="2991.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.03%)</title><rect x="411.6" y="1973" width="0.3" height="15.0" fill="rgb(240,174,52)" rx="2" ry="2" /> +<text x="414.60" y="1983.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (1 samples, 0.03%)</title><rect x="953.7" y="3013" width="0.3" height="15.0" fill="rgb(249,183,26)" rx="2" ry="2" /> +<text x="956.67" y="3023.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (2 samples, 0.06%)</title><rect x="1104.1" y="2757" width="0.6" height="15.0" fill="rgb(251,21,35)" rx="2" ry="2" /> +<text x="1107.06" y="2767.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (1 samples, 0.03%)</title><rect x="843.6" y="2549" width="0.3" height="15.0" fill="rgb(241,101,39)" rx="2" ry="2" /> +<text x="846.60" y="2559.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (1 samples, 0.03%)</title><rect x="400.4" y="1733" width="0.3" height="15.0" fill="rgb(244,201,39)" rx="2" ry="2" /> +<text x="403.36" y="1743.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="375.9" y="1317" width="0.3" height="15.0" fill="rgb(247,29,39)" rx="2" ry="2" /> +<text x="378.90" y="1327.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (1 samples, 0.03%)</title><rect x="841.6" y="2501" width="0.3" height="15.0" fill="rgb(250,68,20)" rx="2" ry="2" /> +<text x="844.62" y="2511.5" ></text> +</g> +<g > +<title><unknown> (1 samples, 0.03%)</title><rect x="780.8" y="2181" width="0.3" height="15.0" fill="rgb(237,88,26)" rx="2" ry="2" /> +<text x="783.80" y="2191.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.03%)</title><rect x="271.8" y="2101" width="0.3" height="15.0" fill="rgb(208,201,30)" rx="2" ry="2" /> +<text x="274.78" y="2111.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.03%)</title><rect x="314.1" y="1909" width="0.3" height="15.0" fill="rgb(215,160,23)" rx="2" ry="2" /> +<text x="317.09" y="1919.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="877.6" y="2117" width="0.4" height="15.0" fill="rgb(227,37,33)" rx="2" ry="2" /> +<text x="880.65" y="2127.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (2 samples, 0.06%)</title><rect x="399.4" y="1941" width="0.6" height="15.0" fill="rgb(210,31,21)" rx="2" ry="2" /> +<text x="402.37" y="1951.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.03%)</title><rect x="894.5" y="2469" width="0.3" height="15.0" fill="rgb(215,149,37)" rx="2" ry="2" /> +<text x="897.50" y="2479.5" ></text> +</g> +<g > +<title>Nsfisis\Waddiwasi\Execution\Stack::pushValue (1 samples, 0.03%)</title><rect x="696.2" y="2485" width="0.3" height="15.0" fill="rgb(224,33,48)" rx="2" ry="2" /> +<text x="699.18" y="2495.5" ></text> +</g> +</g> +</svg> |
