Last active
April 28, 2026 18:04
-
-
Save pstef/6741e93879fc80f464de7c78f44265f4 to your computer and use it in GitHub Desktop.
3DO Wolf3D
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?xml version="1.0" standalone="no"?> | |
| <!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> | |
| <svg version="1.1" width="1600" height="822" onload="init(evt)" viewBox="0 0 1600 822" 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; | |
| // use GET parameters to restore a flamegraphs state. | |
| var params = get_params(); | |
| if (params.x && params.y) | |
| zoom(find_group(document.querySelector('[x="' + params.x + '"][y="' + params.y + '"]'))); | |
| if (params.s) search(params.s); | |
| } | |
| // event listeners | |
| 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(true); | |
| zoom(target); | |
| if (!document.querySelector('.parent')) { | |
| // we have basically done a clearzoom so clear the url | |
| var params = get_params(); | |
| if (params.x) delete params.x; | |
| if (params.y) delete params.y; | |
| history.replaceState(null, null, parse_params(params)); | |
| unzoombtn.classList.add("hide"); | |
| return; | |
| } | |
| // set parameters for zoom state | |
| var el = target.querySelector("rect"); | |
| if (el && el.attributes && el.attributes.y && el.attributes._orig_x) { | |
| var params = get_params() | |
| params.x = el.attributes._orig_x.value; | |
| params.y = el.attributes.y.value; | |
| history.replaceState(null, null, parse_params(params)); | |
| } | |
| } | |
| else if (e.target.id == "unzoom") clearzoom(); | |
| 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 | |
| // ctrl-I to toggle case-sensitive search | |
| window.addEventListener("keydown",function (e) { | |
| if (e.keyCode === 114 || (e.ctrlKey && e.keyCode === 70)) { | |
| e.preventDefault(); | |
| search_prompt(); | |
| } | |
| else if (e.ctrlKey && e.keyCode === 73) { | |
| e.preventDefault(); | |
| toggle_ignorecase(); | |
| } | |
| }, false) | |
| // functions | |
| function get_params() { | |
| var params = {}; | |
| var paramsarr = window.location.search.substr(1).split('&'); | |
| for (var i = 0; i < paramsarr.length; ++i) { | |
| var tmp = paramsarr[i].split("="); | |
| if (!tmp[0] || !tmp[1]) continue; | |
| params[tmp[0]] = decodeURIComponent(tmp[1]); | |
| } | |
| return params; | |
| } | |
| function parse_params(params) { | |
| var uri = "?"; | |
| for (var key in params) { | |
| uri += key + '=' + encodeURIComponent(params[key]) + '&'; | |
| } | |
| if (uri.slice(-1) == "&") | |
| uri = uri.substring(0, uri.length - 1); | |
| if (uri == '?') | |
| uri = window.location.href.split('?')[0]; | |
| return uri; | |
| } | |
| function find_child(node, selector) { | |
| var children = node.querySelectorAll(selector); | |
| if (children.length) return children[0]; | |
| } | |
| 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; | |
| var sl = t.getSubStringLength(0, txt.length); | |
| // check if only whitespace or if we can fit the entire string into width w | |
| if (/^ *$/.test(txt) || sl < w) | |
| return; | |
| // this isn't perfect, but gives a good starting point | |
| // and avoids calling getSubStringLength too often | |
| var start = Math.floor((w/sl) * txt.length); | |
| for (var x = start; x > 0; x = x-2) { | |
| 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(dont_update_text) { | |
| 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]); | |
| if(!dont_update_text) update_text(el[i]); | |
| } | |
| search(); | |
| } | |
| function clearzoom() { | |
| unzoom(); | |
| // remove zoom state | |
| var params = get_params(); | |
| if (params.x) delete params.x; | |
| if (params.y) delete params.y; | |
| history.replaceState(null, null, parse_params(params)); | |
| } | |
| // 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") | |
| } | |
| var params = get_params(); | |
| delete params.s; | |
| history.replaceState(null, null, parse_params(params)); | |
| } | |
| 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) search(term); | |
| } 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 (term) currentSearchTerm = term; | |
| if (currentSearchTerm === null) return; | |
| var re = new RegExp(currentSearchTerm, 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; | |
| var params = get_params(); | |
| params.s = currentSearchTerm; | |
| history.replaceState(null, null, parse_params(params)); | |
| 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="1600.0" height="822.0" fill="url(#background)" /> | |
| <text id="title" x="800.00" y="24" >opera_libretro Wolf3D 30s (15000 frames)</text> | |
| <text id="details" x="10.00" y="805" > </text> | |
| <text id="unzoom" x="10.00" y="24" class="hide">Reset Zoom</text> | |
| <text id="search" x="1490.00" y="24" >Search</text> | |
| <text id="ignorecase" x="1574.00" y="24" >ic</text> | |
| <text id="matched" x="1490.00" y="805" > </text> | |
| <g id="frames"> | |
| <g > | |
| <title>opera_clio_fifo_ei_read (44,622,256 samples, 0.06%)</title><rect x="482.2" y="549" width="1.0" height="15.0" fill="rgb(214,45,10)" rx="2" ry="2" /> | |
| <text x="485.24" y="559.5" ></text> | |
| </g> | |
| <g > | |
| <title>__fseeko64 (9,918,480 samples, 0.01%)</title><rect x="878.3" y="469" width="0.2" height="15.0" fill="rgb(236,144,34)" rx="2" ry="2" /> | |
| <text x="881.28" y="479.5" ></text> | |
| </g> | |
| <g > | |
| <title>[libgallium-26.0.5-1.so] (418,566,053 samples, 0.58%)</title><rect x="1500.7" y="501" width="9.2" height="15.0" fill="rgb(216,54,12)" rx="2" ry="2" /> | |
| <text x="1503.73" y="511.5" ></text> | |
| </g> | |
| <g > | |
| <title>[libxcb.so.1.1.0] (29,693,461 samples, 0.04%)</title><rect x="27.0" y="469" width="0.7" height="15.0" fill="rgb(226,98,23)" rx="2" ry="2" /> | |
| <text x="30.01" y="479.5" ></text> | |
| </g> | |
| <g > | |
| <title>invoke_syscall.constprop.0 (17,945,897 samples, 0.02%)</title><rect x="27.1" y="325" width="0.4" height="15.0" fill="rgb(244,183,43)" rx="2" ry="2" /> | |
| <text x="30.14" y="335.5" ></text> | |
| </g> | |
| <g > | |
| <title>opera_clio_vcnt_update (16,960,931 samples, 0.02%)</title><rect x="915.6" y="613" width="0.4" height="15.0" fill="rgb(218,61,14)" rx="2" ry="2" /> | |
| <text x="918.65" y="623.5" ></text> | |
| </g> | |
| <g > | |
| <title>[libgallium-26.0.5-1.so] (188,880,955 samples, 0.26%)</title><rect x="1505.1" y="389" width="4.1" height="15.0" fill="rgb(216,54,12)" rx="2" ry="2" /> | |
| <text x="1508.12" y="399.5" ></text> | |
| </g> | |
| <g > | |
| <title>recvmsg (15,880,441 samples, 0.02%)</title><rect x="33.3" y="453" width="0.3" height="15.0" fill="rgb(210,25,6)" rx="2" ry="2" /> | |
| <text x="36.30" y="463.5" ></text> | |
| </g> | |
| <g > | |
| <title>[libX11.so.6.4.0] (47,106,839 samples, 0.07%)</title><rect x="1581.1" y="597" width="1.0" height="15.0" fill="rgb(220,73,17)" rx="2" ry="2" /> | |
| <text x="1584.12" y="607.5" ></text> | |
| </g> | |
| <g > | |
| <title>[libc.so.6] (14,476,063 samples, 0.02%)</title><rect x="1576.2" y="485" width="0.3" height="15.0" fill="rgb(223,84,20)" rx="2" ry="2" /> | |
| <text x="1579.22" y="495.5" ></text> | |
| </g> | |
| <g > | |
| <title>queue_work_on (65,507,142 samples, 0.09%)</title><rect x="1465.5" y="149" width="1.4" height="15.0" fill="rgb(248,200,48)" rx="2" ry="2" /> | |
| <text x="1468.48" y="159.5" ></text> | |
| </g> | |
| <g > | |
| <title>el0_svc (18,153,175 samples, 0.03%)</title><rect x="1428.0" y="437" width="0.4" height="15.0" fill="rgb(244,183,43)" rx="2" ry="2" /> | |
| <text x="1431.02" y="447.5" ></text> | |
| </g> | |
| <g > | |
| <title>video_driver_free_internal (6,193,657 samples, 0.01%)</title><rect x="10.5" y="597" width="0.1" height="15.0" fill="rgb(242,172,41)" rx="2" ry="2" /> | |
| <text x="13.47" y="607.5" ></text> | |
| </g> | |
| <g > | |
| <title>skb_release_data (28,473,247 samples, 0.04%)</title><rect x="1585.4" y="245" width="0.7" height="15.0" fill="rgb(209,20,4)" rx="2" ry="2" /> | |
| <text x="1588.45" y="255.5" ></text> | |
| </g> | |
| <g > | |
| <title>do_el0_svc (51,422,246 samples, 0.07%)</title><rect x="25.4" y="389" width="1.2" height="15.0" fill="rgb(218,60,14)" rx="2" ry="2" /> | |
| <text x="28.45" y="399.5" ></text> | |
| </g> | |
| <g > | |
| <title>shmem_undo_range (37,246,931 samples, 0.05%)</title><rect x="10.7" y="373" width="0.8" height="15.0" fill="rgb(239,160,38)" rx="2" ry="2" /> | |
| <text x="13.68" y="383.5" ></text> | |
| </g> | |
| <g > | |
| <title>__alloc_skb (29,291,490 samples, 0.04%)</title><rect x="34.4" y="181" width="0.6" height="15.0" fill="rgb(226,100,23)" rx="2" ry="2" /> | |
| <text x="37.36" y="191.5" ></text> | |
| </g> | |
| <g > | |
| <title>opera_dsp_reset (20,375,696 samples, 0.03%)</title><rect x="483.8" y="565" width="0.4" height="15.0" fill="rgb(234,134,32)" rx="2" ry="2" /> | |
| <text x="486.78" y="575.5" ></text> | |
| </g> | |
| <g > | |
| <title>unix_stream_read_generic (31,168,341 samples, 0.04%)</title><rect x="36.5" y="197" width="0.7" height="15.0" fill="rgb(244,180,43)" rx="2" ry="2" /> | |
| <text x="39.49" y="207.5" ></text> | |
| </g> | |
| <g > | |
| <title>_raw_spin_unlock_irq (12,785,974 samples, 0.02%)</title><rect x="11.2" y="341" width="0.3" height="15.0" fill="rgb(215,47,11)" rx="2" ry="2" /> | |
| <text x="14.21" y="351.5" ></text> | |
| </g> | |
| <g > | |
| <title>el0t_64_sync_handler (31,426,349 samples, 0.04%)</title><rect x="1581.3" y="453" width="0.7" height="15.0" fill="rgb(211,32,7)" rx="2" ry="2" /> | |
| <text x="1584.31" y="463.5" ></text> | |
| </g> | |
| <g > | |
| <title>memcmp (9,353,382 samples, 0.01%)</title><rect x="1559.9" y="533" width="0.2" height="15.0" fill="rgb(235,141,33)" rx="2" ry="2" /> | |
| <text x="1562.88" y="543.5" ></text> | |
| </g> | |
| <g > | |
| <title>msm_gem_vm_free (20,091,255 samples, 0.03%)</title><rect x="1470.7" y="165" width="0.4" height="15.0" fill="rgb(232,127,30)" rx="2" ry="2" /> | |
| <text x="1473.65" y="175.5" ></text> | |
| </g> | |
| <g > | |
| <title>el0_svc (75,954,845 samples, 0.10%)</title><rect x="29.6" y="405" width="1.6" height="15.0" fill="rgb(244,183,43)" rx="2" ry="2" /> | |
| <text x="32.57" y="415.5" ></text> | |
| </g> | |
| <g > | |
| <title>[libc.so.6] (36,525,524 samples, 0.05%)</title><rect x="27.7" y="421" width="0.8" height="15.0" fill="rgb(223,84,20)" rx="2" ry="2" /> | |
| <text x="30.67" y="431.5" ></text> | |
| </g> | |
| <g > | |
| <title>[libgallium-26.0.5-1.so] (62,227,013 samples, 0.09%)</title><rect x="1523.2" y="501" width="1.4" height="15.0" fill="rgb(216,54,12)" rx="2" ry="2" /> | |
| <text x="1526.20" y="511.5" ></text> | |
| </g> | |
| <g > | |
| <title>core_input_state_poll_late (767,126,663 samples, 1.06%)</title><rect x="21.3" y="613" width="16.7" height="15.0" fill="rgb(213,37,9)" rx="2" ry="2" /> | |
| <text x="24.28" y="623.5" ></text> | |
| </g> | |
| <g > | |
| <title>[libxcb.so.1.1.0] (35,294,126 samples, 0.05%)</title><rect x="31.7" y="485" width="0.8" height="15.0" fill="rgb(226,98,23)" rx="2" ry="2" /> | |
| <text x="34.71" y="495.5" ></text> | |
| </g> | |
| <g > | |
| <title>__call_rcu_common (5,684,884 samples, 0.01%)</title><rect x="1465.0" y="85" width="0.1" height="15.0" fill="rgb(223,83,19)" rx="2" ry="2" /> | |
| <text x="1467.99" y="95.5" ></text> | |
| </g> | |
| <g > | |
| <title>[libc.so.6] (248,192,613 samples, 0.34%)</title><rect x="1494.6" y="517" width="5.4" height="15.0" fill="rgb(223,84,20)" rx="2" ry="2" /> | |
| <text x="1497.61" y="527.5" ></text> | |
| </g> | |
| <g > | |
| <title>_raw_spin_unlock_irqrestore (7,303,474 samples, 0.01%)</title><rect x="10.7" y="341" width="0.1" height="15.0" fill="rgb(228,106,25)" rx="2" ry="2" /> | |
| <text x="13.68" y="351.5" ></text> | |
| </g> | |
| <g > | |
| <title>invoke_syscall.constprop.0 (19,434,454 samples, 0.03%)</title><rect x="1427.5" y="357" width="0.4" height="15.0" fill="rgb(244,183,43)" rx="2" ry="2" /> | |
| <text x="1430.50" y="367.5" ></text> | |
| </g> | |
| <g > | |
| <title>el0t_64_sync (16,897,078 samples, 0.02%)</title><rect x="1588.8" y="501" width="0.3" height="15.0" fill="rgb(217,56,13)" rx="2" ry="2" /> | |
| <text x="1591.76" y="511.5" ></text> | |
| </g> | |
| <g > | |
| <title>_XSend (70,573,980 samples, 0.10%)</title><rect x="25.3" y="533" width="1.6" height="15.0" fill="rgb(236,143,34)" rx="2" ry="2" /> | |
| <text x="28.34" y="543.5" ></text> | |
| </g> | |
| <g > | |
| <title>pa_mainloop_dispatch (51,849,585 samples, 0.07%)</title><rect x="1588.1" y="645" width="1.1" height="15.0" fill="rgb(233,129,31)" rx="2" ry="2" /> | |
| <text x="1591.10" y="655.5" ></text> | |
| </g> | |
| <g > | |
| <title>retro_vfs_file_seek_impl (7,041,139 samples, 0.01%)</title><rect x="878.9" y="469" width="0.1" height="15.0" fill="rgb(223,83,19)" rx="2" ry="2" /> | |
| <text x="881.88" y="479.5" ></text> | |
| </g> | |
| <g > | |
| <title>do_el0_svc (7,981,381 samples, 0.01%)</title><rect x="1576.3" y="405" width="0.2" height="15.0" fill="rgb(218,60,14)" rx="2" ry="2" /> | |
| <text x="1579.35" y="415.5" ></text> | |
| </g> | |
| <g > | |
| <title>[libxcb.so.1.1.0] (169,048,072 samples, 0.23%)</title><rect x="1584.1" y="565" width="3.7" height="15.0" fill="rgb(226,98,23)" rx="2" ry="2" /> | |
| <text x="1587.09" y="575.5" ></text> | |
| </g> | |
| <g > | |
| <title>__arm64_sys_read (12,811,620 samples, 0.02%)</title><rect x="878.0" y="309" width="0.3" height="15.0" fill="rgb(227,105,25)" rx="2" ry="2" /> | |
| <text x="881.00" y="319.5" ></text> | |
| </g> | |
| <g > | |
| <title>__libc_calloc (15,629,041 samples, 0.02%)</title><rect x="1559.3" y="437" width="0.3" height="15.0" fill="rgb(205,4,0)" rx="2" ry="2" /> | |
| <text x="1562.29" y="447.5" ></text> | |
| </g> | |
| <g > | |
| <title>udev_joypad_poll (27,793,767 samples, 0.04%)</title><rect x="23.3" y="581" width="0.6" height="15.0" fill="rgb(254,226,54)" rx="2" ry="2" /> | |
| <text x="26.27" y="591.5" ></text> | |
| </g> | |
| <g > | |
| <title>skb_release_data (13,276,771 samples, 0.02%)</title><rect x="36.6" y="165" width="0.3" height="15.0" fill="rgb(209,20,4)" rx="2" ry="2" /> | |
| <text x="39.62" y="175.5" ></text> | |
| </g> | |
| <g > | |
| <title>__arm64_sys_recvmsg (26,404,527 samples, 0.04%)</title><rect x="1511.5" y="261" width="0.5" height="15.0" fill="rgb(236,144,34)" rx="2" ry="2" /> | |
| <text x="1514.45" y="271.5" ></text> | |
| </g> | |
| <g > | |
| <title>vfs_writev (67,295,817 samples, 0.09%)</title><rect x="34.0" y="293" width="1.5" height="15.0" fill="rgb(238,153,36)" rx="2" ry="2" /> | |
| <text x="37.04" y="303.5" ></text> | |
| </g> | |
| <g > | |
| <title>drm_exec_unlock_obj (10,219,325 samples, 0.01%)</title><rect x="1473.0" y="165" width="0.2" height="15.0" fill="rgb(219,67,16)" rx="2" ry="2" /> | |
| <text x="1475.99" y="175.5" ></text> | |
| </g> | |
| <g > | |
| <title>____sys_recvmsg (36,190,425 samples, 0.05%)</title><rect x="36.4" y="245" width="0.8" height="15.0" fill="rgb(224,90,21)" rx="2" ry="2" /> | |
| <text x="39.38" y="255.5" ></text> | |
| </g> | |
| <g > | |
| <title>[libc.so.6] (32,361,949 samples, 0.04%)</title><rect x="31.8" y="421" width="0.7" height="15.0" fill="rgb(223,84,20)" rx="2" ry="2" /> | |
| <text x="34.78" y="431.5" ></text> | |
| </g> | |
| <g > | |
| <title>el0_svc_common.constprop.0 (73,879,781 samples, 0.10%)</title><rect x="29.6" y="373" width="1.6" height="15.0" fill="rgb(224,89,21)" rx="2" ry="2" /> | |
| <text x="32.62" y="383.5" ></text> | |
| </g> | |
| <g > | |
| <title>_XReply (312,199,581 samples, 0.43%)</title><rect x="1581.0" y="613" width="6.9" height="15.0" fill="rgb(246,190,45)" rx="2" ry="2" /> | |
| <text x="1584.04" y="623.5" ></text> | |
| </g> | |
| <g > | |
| <title>el0t_64_sync (23,285,965 samples, 0.03%)</title><rect x="1486.6" y="469" width="0.5" height="15.0" fill="rgb(217,56,13)" rx="2" ry="2" /> | |
| <text x="1489.57" y="479.5" ></text> | |
| </g> | |
| <g > | |
| <title>[libc.so.6] (19,269,771 samples, 0.03%)</title><rect x="23.4" y="549" width="0.4" height="15.0" fill="rgb(223,84,20)" rx="2" ry="2" /> | |
| <text x="26.36" y="559.5" ></text> | |
| </g> | |
| <g > | |
| <title>__irq_exit_rcu (10,620,955 samples, 0.01%)</title><rect x="481.2" y="485" width="0.2" height="15.0" fill="rgb(227,101,24)" rx="2" ry="2" /> | |
| <text x="484.18" y="495.5" ></text> | |
| </g> | |
| <g > | |
| <title>do_softirq_own_stack (10,620,955 samples, 0.01%)</title><rect x="481.2" y="469" width="0.2" height="15.0" fill="rgb(250,209,50)" rx="2" ry="2" /> | |
| <text x="484.18" y="479.5" ></text> | |
| </g> | |
| <g > | |
| <title>do_el0_svc (37,946,786 samples, 0.05%)</title><rect x="10.7" y="517" width="0.8" height="15.0" fill="rgb(218,60,14)" rx="2" ry="2" /> | |
| <text x="13.67" y="527.5" ></text> | |
| </g> | |
| <g > | |
| <title>[libxcb.so.1.1.0] (75,835,542 samples, 0.10%)</title><rect x="1582.3" y="565" width="1.6" height="15.0" fill="rgb(226,98,23)" rx="2" ry="2" /> | |
| <text x="1585.26" y="575.5" ></text> | |
| </g> | |
| <g > | |
| <title>[libgallium-26.0.5-1.so] (46,190,195 samples, 0.06%)</title><rect x="1558.0" y="373" width="1.0" height="15.0" fill="rgb(216,54,12)" rx="2" ry="2" /> | |
| <text x="1561.03" y="383.5" ></text> | |
| </g> | |
| <g > | |
| <title>____sys_recvmsg (92,370,600 samples, 0.13%)</title><rect x="1584.8" y="325" width="2.0" height="15.0" fill="rgb(224,90,21)" rx="2" ry="2" /> | |
| <text x="1587.80" y="335.5" ></text> | |
| </g> | |
| <g > | |
| <title>x11_has_focus (215,934,342 samples, 0.30%)</title><rect x="33.1" y="565" width="4.8" height="15.0" fill="rgb(222,80,19)" rx="2" ry="2" /> | |
| <text x="36.14" y="575.5" ></text> | |
| </g> | |
| <g > | |
| <title>do_unlinkat (37,946,786 samples, 0.05%)</title><rect x="10.7" y="453" width="0.8" height="15.0" fill="rgb(216,53,12)" rx="2" ry="2" /> | |
| <text x="13.67" y="463.5" ></text> | |
| </g> | |
| <g > | |
| <title>cfree (6,384,196 samples, 0.01%)</title><rect x="1482.6" y="485" width="0.2" height="15.0" fill="rgb(223,86,20)" rx="2" ry="2" /> | |
| <text x="1485.64" y="495.5" ></text> | |
| </g> | |
| <g > | |
| <title>msm_ioremap_mdss (18,313,085 samples, 0.03%)</title><rect x="1475.6" y="197" width="0.4" height="15.0" fill="rgb(210,26,6)" rx="2" ry="2" /> | |
| <text x="1478.58" y="207.5" ></text> | |
| </g> | |
| <g > | |
| <title>do_el0_svc (10,736,485 samples, 0.01%)</title><rect x="1588.9" y="453" width="0.2" height="15.0" fill="rgb(218,60,14)" rx="2" ry="2" /> | |
| <text x="1591.87" y="463.5" ></text> | |
| </g> | |
| <g > | |
| <title>_IO_fread (16,380,781 samples, 0.02%)</title><rect x="877.9" y="501" width="0.4" height="15.0" fill="rgb(233,132,31)" rx="2" ry="2" /> | |
| <text x="880.92" y="511.5" ></text> | |
| </g> | |
| <g > | |
| <title>invoke_syscall.constprop.0 (34,463,605 samples, 0.05%)</title><rect x="27.7" y="325" width="0.8" height="15.0" fill="rgb(244,183,43)" rx="2" ry="2" /> | |
| <text x="30.72" y="335.5" ></text> | |
| </g> | |
| <g > | |
| <title>unix_stream_read_generic (8,669,503 samples, 0.01%)</title><rect x="27.3" y="245" width="0.2" height="15.0" fill="rgb(244,180,43)" rx="2" ry="2" /> | |
| <text x="30.30" y="255.5" ></text> | |
| </g> | |
| <g > | |
| <title>invoke_syscall.constprop.0 (71,646,691 samples, 0.10%)</title><rect x="34.0" y="341" width="1.5" height="15.0" fill="rgb(244,183,43)" rx="2" ry="2" /> | |
| <text x="36.96" y="351.5" ></text> | |
| </g> | |
| <g > | |
| <title>el0t_64_sync_handler (16,897,078 samples, 0.02%)</title><rect x="1588.8" y="485" width="0.3" height="15.0" fill="rgb(211,32,7)" rx="2" ry="2" /> | |
| <text x="1591.76" y="495.5" ></text> | |
| </g> | |
| <g > | |
| <title>[libX11.so.6.4.0] (71,920,198 samples, 0.10%)</title><rect x="1575.0" y="565" width="1.6" height="15.0" fill="rgb(220,73,17)" rx="2" ry="2" /> | |
| <text x="1578.00" y="575.5" ></text> | |
| </g> | |
| <g > | |
| <title>__sys_recvmsg (10,115,923 samples, 0.01%)</title><rect x="29.1" y="293" width="0.2" height="15.0" fill="rgb(252,216,51)" rx="2" ry="2" /> | |
| <text x="32.12" y="303.5" ></text> | |
| </g> | |
| <g > | |
| <title>____sys_recvmsg (5,837,963 samples, 0.01%)</title><rect x="25.1" y="261" width="0.1" height="15.0" fill="rgb(224,90,21)" rx="2" ry="2" /> | |
| <text x="28.06" y="271.5" ></text> | |
| </g> | |
| <g > | |
| <title>[libc.so.6] (15,880,441 samples, 0.02%)</title><rect x="33.3" y="437" width="0.3" height="15.0" fill="rgb(223,84,20)" rx="2" ry="2" /> | |
| <text x="36.30" y="447.5" ></text> | |
| </g> | |
| <g > | |
| <title>vfs_write (8,275,338 samples, 0.01%)</title><rect x="1588.9" y="373" width="0.2" height="15.0" fill="rgb(250,209,50)" rx="2" ry="2" /> | |
| <text x="1591.93" y="383.5" ></text> | |
| </g> | |
| <g > | |
| <title>el0_svc_common.constprop.0 (41,892,906 samples, 0.06%)</title><rect x="36.4" y="325" width="0.9" height="15.0" fill="rgb(224,89,21)" rx="2" ry="2" /> | |
| <text x="39.38" y="335.5" ></text> | |
| </g> | |
| <g > | |
| <title>[libc.so.6] (41,833,274 samples, 0.06%)</title><rect x="1427.0" y="485" width="0.9" height="15.0" fill="rgb(223,84,20)" rx="2" ry="2" /> | |
| <text x="1430.01" y="495.5" ></text> | |
| </g> | |
| <g > | |
| <title>do_el0_svc (12,729,546 samples, 0.02%)</title><rect x="35.6" y="357" width="0.2" height="15.0" fill="rgb(218,60,14)" rx="2" ry="2" /> | |
| <text x="38.56" y="367.5" ></text> | |
| </g> | |
| <g > | |
| <title>__arm64_sys_ppoll (9,291,933 samples, 0.01%)</title><rect x="37.5" y="309" width="0.2" height="15.0" fill="rgb(230,115,27)" rx="2" ry="2" /> | |
| <text x="40.50" y="319.5" ></text> | |
| </g> | |
| <g > | |
| <title>el0t_64_sync (18,785,741 samples, 0.03%)</title><rect x="29.0" y="405" width="0.4" height="15.0" fill="rgb(217,56,13)" rx="2" ry="2" /> | |
| <text x="31.96" y="415.5" ></text> | |
| </g> | |
| <g > | |
| <title>__memcg_slab_post_alloc_hook (19,354,062 samples, 0.03%)</title><rect x="30.3" y="165" width="0.4" height="15.0" fill="rgb(207,9,2)" rx="2" ry="2" /> | |
| <text x="33.26" y="175.5" ></text> | |
| </g> | |
| <g > | |
| <title>__xa_alloc (24,625,740 samples, 0.03%)</title><rect x="1469.9" y="133" width="0.5" height="15.0" fill="rgb(242,170,40)" rx="2" ry="2" /> | |
| <text x="1472.88" y="143.5" ></text> | |
| </g> | |
| <g > | |
| <title>[libgallium-26.0.5-1.so] (7,302,043 samples, 0.01%)</title><rect x="10.0" y="613" width="0.2" height="15.0" fill="rgb(216,54,12)" rx="2" ry="2" /> | |
| <text x="13.02" y="623.5" ></text> | |
| </g> | |
| <g > | |
| <title>radix_tree_node_alloc.constprop.0 (30,437,931 samples, 0.04%)</title><rect x="1474.9" y="133" width="0.6" height="15.0" fill="rgb(250,209,49)" rx="2" ry="2" /> | |
| <text x="1477.88" y="143.5" ></text> | |
| </g> | |
| <g > | |
| <title>[libc.so.6] (51,289,888 samples, 0.07%)</title><rect x="36.2" y="405" width="1.1" height="15.0" fill="rgb(223,84,20)" rx="2" ry="2" /> | |
| <text x="39.17" y="415.5" ></text> | |
| </g> | |
| <g > | |
| <title>gl_glsl_set_coords (1,537,004,745 samples, 2.12%)</title><rect x="1527.1" y="549" width="33.5" height="15.0" fill="rgb(212,33,7)" rx="2" ry="2" /> | |
| <text x="1530.07" y="559.5" >gl..</text> | |
| </g> | |
| <g > | |
| <title>core_run (71,479,283,130 samples, 98.81%)</title><rect x="12.0" y="661" width="1561.1" height="15.0" fill="rgb(251,214,51)" rx="2" ry="2" /> | |
| <text x="14.95" y="671.5" >core_run</text> | |
| </g> | |
| <g > | |
| <title>[libc.so.6] (40,506,682 samples, 0.06%)</title><rect x="1556.4" y="389" width="0.9" height="15.0" fill="rgb(223,84,20)" rx="2" ry="2" /> | |
| <text x="1559.43" y="399.5" ></text> | |
| </g> | |
| <g > | |
| <title>sock_recvmsg (10,028,554 samples, 0.01%)</title><rect x="1427.6" y="277" width="0.2" height="15.0" fill="rgb(206,5,1)" rx="2" ry="2" /> | |
| <text x="1430.58" y="287.5" ></text> | |
| </g> | |
| <g > | |
| <title>el0_svc (116,275,666 samples, 0.16%)</title><rect x="1584.4" y="437" width="2.6" height="15.0" fill="rgb(244,183,43)" rx="2" ry="2" /> | |
| <text x="1587.44" y="447.5" ></text> | |
| </g> | |
| <g > | |
| <title>el0t_64_sync_handler (50,508,344 samples, 0.07%)</title><rect x="1582.4" y="485" width="1.1" height="15.0" fill="rgb(211,32,7)" rx="2" ry="2" /> | |
| <text x="1585.35" y="495.5" ></text> | |
| </g> | |
| <g > | |
| <title>opera_arm_execute (19,021,924,404 samples, 26.29%)</title><rect x="485.1" y="613" width="415.4" height="15.0" fill="rgb(235,141,33)" rx="2" ry="2" /> | |
| <text x="488.06" y="623.5" >opera_arm_execute</text> | |
| </g> | |
| <g > | |
| <title>recvmsg (42,568,262 samples, 0.06%)</title><rect x="1427.0" y="501" width="0.9" height="15.0" fill="rgb(210,25,6)" rx="2" ry="2" /> | |
| <text x="1429.99" y="511.5" ></text> | |
| </g> | |
| <g > | |
| <title>drm_edid_print_product_id (5,199,315 samples, 0.01%)</title><rect x="1462.8" y="213" width="0.1" height="15.0" fill="rgb(209,20,4)" rx="2" ry="2" /> | |
| <text x="1465.76" y="223.5" ></text> | |
| </g> | |
| <g > | |
| <title>[libgallium-26.0.5-1.so] (2,250,108,685 samples, 3.11%)</title><rect x="1433.5" y="485" width="49.1" height="15.0" fill="rgb(216,54,12)" rx="2" ry="2" /> | |
| <text x="1436.50" y="495.5" >[lib..</text> | |
| </g> | |
| <g > | |
| <title>drm_sched_job_add_resv_dependencies (22,261,249 samples, 0.03%)</title><rect x="1479.8" y="197" width="0.5" height="15.0" fill="rgb(251,212,50)" rx="2" ry="2" /> | |
| <text x="1482.77" y="207.5" ></text> | |
| </g> | |
| <g > | |
| <title>recvmsg (53,383,618 samples, 0.07%)</title><rect x="36.1" y="453" width="1.2" height="15.0" fill="rgb(210,25,6)" rx="2" ry="2" /> | |
| <text x="39.13" y="463.5" ></text> | |
| </g> | |
| <g > | |
| <title>obj_cgroup_charge_account (12,221,073 samples, 0.02%)</title><rect x="34.7" y="133" width="0.3" height="15.0" fill="rgb(219,65,15)" rx="2" ry="2" /> | |
| <text x="37.70" y="143.5" ></text> | |
| </g> | |
| <g > | |
| <title>[libGLX.so.0.0.0] (21,569,596 samples, 0.03%)</title><rect x="1563.8" y="581" width="0.5" height="15.0" fill="rgb(219,64,15)" rx="2" ry="2" /> | |
| <text x="1566.81" y="591.5" ></text> | |
| </g> | |
| <g > | |
| <title>do_iter_readv_writev (67,474,449 samples, 0.09%)</title><rect x="29.7" y="293" width="1.5" height="15.0" fill="rgb(221,76,18)" rx="2" ry="2" /> | |
| <text x="32.70" y="303.5" ></text> | |
| </g> | |
| <g > | |
| <title>kmalloc_reserve (5,743,206 samples, 0.01%)</title><rect x="30.1" y="181" width="0.1" height="15.0" fill="rgb(240,163,39)" rx="2" ry="2" /> | |
| <text x="33.11" y="191.5" ></text> | |
| </g> | |
| <g > | |
| <title>gl_glsl_set_params (24,626,949 samples, 0.03%)</title><rect x="1565.7" y="613" width="0.5" height="15.0" fill="rgb(251,211,50)" rx="2" ry="2" /> | |
| <text x="1568.71" y="623.5" ></text> | |
| </g> | |
| <g > | |
| <title>el0_svc (14,202,409 samples, 0.02%)</title><rect x="35.5" y="373" width="0.3" height="15.0" fill="rgb(244,183,43)" rx="2" ry="2" /> | |
| <text x="38.53" y="383.5" ></text> | |
| </g> | |
| <g > | |
| <title>el0t_64_sync_handler (18,785,741 samples, 0.03%)</title><rect x="29.0" y="389" width="0.4" height="15.0" fill="rgb(211,32,7)" rx="2" ry="2" /> | |
| <text x="31.96" y="399.5" ></text> | |
| </g> | |
| <g > | |
| <title>invoke_syscall.constprop.0 (15,917,607 samples, 0.02%)</title><rect x="13.3" y="373" width="0.3" height="15.0" fill="rgb(244,183,43)" rx="2" ry="2" /> | |
| <text x="16.29" y="383.5" ></text> | |
| </g> | |
| <g > | |
| <title>el0_svc (50,508,344 samples, 0.07%)</title><rect x="1582.4" y="469" width="1.1" height="15.0" fill="rgb(244,183,43)" rx="2" ry="2" /> | |
| <text x="1585.35" y="479.5" ></text> | |
| </g> | |
| <g > | |
| <title>drm_sched_fence_alloc (18,589,474 samples, 0.03%)</title><rect x="1464.9" y="149" width="0.5" height="15.0" fill="rgb(240,164,39)" rx="2" ry="2" /> | |
| <text x="1467.95" y="159.5" ></text> | |
| </g> | |
| <g > | |
| <title>opera_clio_timer_execute (687,733,133 samples, 0.95%)</title><rect x="900.6" y="613" width="15.0" height="15.0" fill="rgb(236,142,34)" rx="2" ry="2" /> | |
| <text x="903.63" y="623.5" ></text> | |
| </g> | |
| <g > | |
| <title>[libc.so.6] (18,785,741 samples, 0.03%)</title><rect x="29.0" y="421" width="0.4" height="15.0" fill="rgb(223,84,20)" rx="2" ry="2" /> | |
| <text x="31.96" y="431.5" ></text> | |
| </g> | |
| <g > | |
| <title>__memcg_slab_post_alloc_hook (6,560,116 samples, 0.01%)</title><rect x="34.4" y="133" width="0.2" height="15.0" fill="rgb(207,9,2)" rx="2" ry="2" /> | |
| <text x="37.44" y="143.5" ></text> | |
| </g> | |
| <g > | |
| <title>[libxcb.so.1.1.0] (81,477,314 samples, 0.11%)</title><rect x="26.9" y="501" width="1.8" height="15.0" fill="rgb(226,98,23)" rx="2" ry="2" /> | |
| <text x="29.93" y="511.5" ></text> | |
| </g> | |
| <g > | |
| <title>video_driver_build_info (15,804,312 samples, 0.02%)</title><rect x="1570.4" y="629" width="0.4" height="15.0" fill="rgb(228,110,26)" rx="2" ry="2" /> | |
| <text x="1573.42" y="639.5" ></text> | |
| </g> | |
| <g > | |
| <title>[libc.so.6] (16,729,119 samples, 0.02%)</title><rect x="1589.3" y="565" width="0.4" height="15.0" fill="rgb(223,84,20)" rx="2" ry="2" /> | |
| <text x="1592.34" y="575.5" ></text> | |
| </g> | |
| <g > | |
| <title>__getpid (15,216,019 samples, 0.02%)</title><rect x="1564.3" y="581" width="0.4" height="15.0" fill="rgb(221,74,17)" rx="2" ry="2" /> | |
| <text x="1567.33" y="591.5" ></text> | |
| </g> | |
| <g > | |
| <title>__alloc_skb (21,040,350 samples, 0.03%)</title><rect x="25.7" y="197" width="0.4" height="15.0" fill="rgb(226,100,23)" rx="2" ry="2" /> | |
| <text x="28.67" y="207.5" ></text> | |
| </g> | |
| <g > | |
| <title>audio_driver_sample_batch (398,505,256 samples, 0.55%)</title><rect x="12.2" y="613" width="8.7" height="15.0" fill="rgb(219,65,15)" rx="2" ry="2" /> | |
| <text x="15.23" y="623.5" ></text> | |
| </g> | |
| <g > | |
| <title>x_input_state (4,966,450 samples, 0.01%)</title><rect x="39.1" y="565" width="0.1" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" /> | |
| <text x="42.09" y="575.5" ></text> | |
| </g> | |
| <g > | |
| <title>[libgallium-26.0.5-1.so] (77,323,347 samples, 0.11%)</title><rect x="1426.7" y="581" width="1.7" height="15.0" fill="rgb(216,54,12)" rx="2" ry="2" /> | |
| <text x="1429.73" y="591.5" ></text> | |
| </g> | |
| <g > | |
| <title>msm_gpu_init (5,724,391 samples, 0.01%)</title><rect x="1481.4" y="245" width="0.1" height="15.0" fill="rgb(223,86,20)" rx="2" ry="2" /> | |
| <text x="1484.42" y="255.5" ></text> | |
| </g> | |
| <g > | |
| <title>command_event (5,900,605 samples, 0.01%)</title><rect x="1573.5" y="645" width="0.1" height="15.0" fill="rgb(224,90,21)" rx="2" ry="2" /> | |
| <text x="1576.47" y="655.5" ></text> | |
| </g> | |
| <g > | |
| <title>__memcg_slab_post_alloc_hook (10,291,076 samples, 0.01%)</title><rect x="25.9" y="165" width="0.2" height="15.0" fill="rgb(207,9,2)" rx="2" ry="2" /> | |
| <text x="28.87" y="175.5" ></text> | |
| </g> | |
| <g > | |
| <title>sock_recvmsg (11,947,175 samples, 0.02%)</title><rect x="1511.5" y="197" width="0.3" height="15.0" fill="rgb(206,5,1)" rx="2" ry="2" /> | |
| <text x="1514.50" y="207.5" ></text> | |
| </g> | |
| <g > | |
| <title>[libxcb.so.1.1.0] (172,577,546 samples, 0.24%)</title><rect x="1584.0" y="581" width="3.8" height="15.0" fill="rgb(226,98,23)" rx="2" ry="2" /> | |
| <text x="1587.04" y="591.5" ></text> | |
| </g> | |
| <g > | |
| <title>el0_svc_common.constprop.0 (141,548,279 samples, 0.20%)</title><rect x="1483.4" y="421" width="3.1" height="15.0" fill="rgb(224,89,21)" rx="2" ry="2" /> | |
| <text x="1486.39" y="431.5" ></text> | |
| </g> | |
| <g > | |
| <title>opera_clio_fifo_ei (83,334,941 samples, 0.12%)</title><rect x="481.4" y="565" width="1.8" height="15.0" fill="rgb(240,161,38)" rx="2" ry="2" /> | |
| <text x="484.41" y="575.5" ></text> | |
| </g> | |
| <g > | |
| <title>[libxcb.so.1.1.0] (18,773,447 samples, 0.03%)</title><rect x="1576.1" y="533" width="0.4" height="15.0" fill="rgb(226,98,23)" rx="2" ry="2" /> | |
| <text x="1579.13" y="543.5" ></text> | |
| </g> | |
| <g > | |
| <title>el0_svc_common.constprop.0 (642,391,221 samples, 0.89%)</title><rect x="1462.5" y="277" width="14.0" height="15.0" fill="rgb(224,89,21)" rx="2" ry="2" /> | |
| <text x="1465.48" y="287.5" ></text> | |
| </g> | |
| <g > | |
| <title>[libc.so.6] (9,821,369 samples, 0.01%)</title><rect x="26.6" y="437" width="0.2" height="15.0" fill="rgb(223,84,20)" rx="2" ry="2" /> | |
| <text x="29.62" y="447.5" ></text> | |
| </g> | |
| <g > | |
| <title>[libc.so.6] (7,777,007 samples, 0.01%)</title><rect x="1482.1" y="421" width="0.2" height="15.0" fill="rgb(223,84,20)" rx="2" ry="2" /> | |
| <text x="1485.12" y="431.5" ></text> | |
| </g> | |
| <g > | |
| <title>[libc.so.6] (87,973,133 samples, 0.12%)</title><rect x="1588.1" y="725" width="1.9" height="15.0" fill="rgb(223,84,20)" rx="2" ry="2" /> | |
| <text x="1591.08" y="735.5" ></text> | |
| </g> | |
| <g > | |
| <title>xcb_poll_for_special_event (49,853,199 samples, 0.07%)</title><rect x="1426.9" y="533" width="1.1" height="15.0" fill="rgb(224,90,21)" rx="2" ry="2" /> | |
| <text x="1429.87" y="543.5" ></text> | |
| </g> | |
| <g > | |
| <title>do_el0_svc (104,513,322 samples, 0.14%)</title><rect x="1584.7" y="421" width="2.3" height="15.0" fill="rgb(218,60,14)" rx="2" ry="2" /> | |
| <text x="1587.70" y="431.5" ></text> | |
| </g> | |
| <g > | |
| <title>el0_svc (16,729,119 samples, 0.02%)</title><rect x="1589.3" y="517" width="0.4" height="15.0" fill="rgb(244,183,43)" rx="2" ry="2" /> | |
| <text x="1592.34" y="527.5" ></text> | |
| </g> | |
| <g > | |
| <title>input_state_internal.constprop.0 (49,713,825 samples, 0.07%)</title><rect x="38.1" y="597" width="1.1" height="15.0" fill="rgb(221,77,18)" rx="2" ry="2" /> | |
| <text x="41.11" y="607.5" ></text> | |
| </g> | |
| <g > | |
| <title>sock_def_readable (16,755,298 samples, 0.02%)</title><rect x="35.0" y="213" width="0.4" height="15.0" fill="rgb(216,54,13)" rx="2" ry="2" /> | |
| <text x="38.05" y="223.5" ></text> | |
| </g> | |
| <g > | |
| <title>[libGLdispatch.so.0.0.0] (21,914,886 samples, 0.03%)</title><rect x="1487.9" y="597" width="0.5" height="15.0" fill="rgb(209,20,4)" rx="2" ry="2" /> | |
| <text x="1490.90" y="607.5" ></text> | |
| </g> | |
| <g > | |
| <title>[libc.so.6] (78,127,777 samples, 0.11%)</title><rect x="33.8" y="469" width="1.7" height="15.0" fill="rgb(223,84,20)" rx="2" ry="2" /> | |
| <text x="36.82" y="479.5" ></text> | |
| </g> | |
| <g > | |
| <title>audio_compute_buffer_statistics (194,843,382 samples, 0.27%)</title><rect x="1421.9" y="629" width="4.2" height="15.0" fill="rgb(211,31,7)" rx="2" ry="2" /> | |
| <text x="1424.87" y="639.5" ></text> | |
| </g> | |
| <g > | |
| <title>do_el0_svc (41,892,906 samples, 0.06%)</title><rect x="36.4" y="341" width="0.9" height="15.0" fill="rgb(218,60,14)" rx="2" ry="2" /> | |
| <text x="39.38" y="351.5" ></text> | |
| </g> | |
| <g > | |
| <title>[libc.so.6] (79,594,217 samples, 0.11%)</title><rect x="29.5" y="485" width="1.7" height="15.0" fill="rgb(223,84,20)" rx="2" ry="2" /> | |
| <text x="32.49" y="495.5" ></text> | |
| </g> | |
| <g > | |
| <title>el0t_64_sync (17,124,182 samples, 0.02%)</title><rect x="32.6" y="421" width="0.3" height="15.0" fill="rgb(217,56,13)" rx="2" ry="2" /> | |
| <text x="35.56" y="431.5" ></text> | |
| </g> | |
| <g > | |
| <title>msm_ioremap_mdss (7,087,086 samples, 0.01%)</title><rect x="1481.6" y="245" width="0.2" height="15.0" fill="rgb(210,26,6)" rx="2" ry="2" /> | |
| <text x="1484.60" y="255.5" ></text> | |
| </g> | |
| <g > | |
| <title>xas_load (6,534,765 samples, 0.01%)</title><rect x="1469.0" y="101" width="0.1" height="15.0" fill="rgb(217,59,14)" rx="2" ry="2" /> | |
| <text x="1472.00" y="111.5" ></text> | |
| </g> | |
| <g > | |
| <title>[libc.so.6] (8,470,268 samples, 0.01%)</title><rect x="1510.5" y="373" width="0.2" height="15.0" fill="rgb(223,84,20)" rx="2" ry="2" /> | |
| <text x="1513.50" y="383.5" ></text> | |
| </g> | |
| <g > | |
| <title>__arm64_sys_recvfrom (16,465,462 samples, 0.02%)</title><rect x="27.2" y="309" width="0.3" height="15.0" fill="rgb(232,125,30)" rx="2" ry="2" /> | |
| <text x="30.16" y="319.5" ></text> | |
| </g> | |
| <g > | |
| <title>el0_svc_common.constprop.0 (22,910,138 samples, 0.03%)</title><rect x="1587.2" y="421" width="0.5" height="15.0" fill="rgb(224,89,21)" rx="2" ry="2" /> | |
| <text x="1590.20" y="431.5" ></text> | |
| </g> | |
| <g > | |
| <title>xcb_writev (96,753,641 samples, 0.13%)</title><rect x="33.8" y="501" width="2.1" height="15.0" fill="rgb(254,228,54)" rx="2" ry="2" /> | |
| <text x="36.75" y="511.5" ></text> | |
| </g> | |
| <g > | |
| <title>resampler_sinc_process_c_kaiser (252,813,440 samples, 0.35%)</title><rect x="15.4" y="581" width="5.5" height="15.0" fill="rgb(242,173,41)" rx="2" ry="2" /> | |
| <text x="18.37" y="591.5" ></text> | |
| </g> | |
| <g > | |
| <title>msm_devfreq_idle_work (64,137,820 samples, 0.09%)</title><rect x="1479.4" y="245" width="1.4" height="15.0" fill="rgb(245,184,44)" rx="2" ry="2" /> | |
| <text x="1482.44" y="255.5" ></text> | |
| </g> | |
| <g > | |
| <title>el0t_64_sync (35,829,003 samples, 0.05%)</title><rect x="27.7" y="405" width="0.8" height="15.0" fill="rgb(217,56,13)" rx="2" ry="2" /> | |
| <text x="30.69" y="415.5" ></text> | |
| </g> | |
| <g > | |
| <title>[libc.so.6] (20,845,464 samples, 0.03%)</title><rect x="1461.1" y="357" width="0.4" height="15.0" fill="rgb(223,84,20)" rx="2" ry="2" /> | |
| <text x="1464.05" y="367.5" ></text> | |
| </g> | |
| <g > | |
| <title>kmem_cache_alloc_node_noprof (15,724,070 samples, 0.02%)</title><rect x="34.6" y="165" width="0.4" height="15.0" fill="rgb(208,17,4)" rx="2" ry="2" /> | |
| <text x="37.64" y="175.5" ></text> | |
| </g> | |
| <g > | |
| <title>el0t_64_sync (11,439,204 samples, 0.02%)</title><rect x="31.3" y="421" width="0.3" height="15.0" fill="rgb(217,56,13)" rx="2" ry="2" /> | |
| <text x="34.31" y="431.5" ></text> | |
| </g> | |
| <g > | |
| <title>__vsnprintf_chk (4,981,267 samples, 0.01%)</title><rect x="1482.8" y="533" width="0.1" height="15.0" fill="rgb(247,193,46)" rx="2" ry="2" /> | |
| <text x="1485.82" y="543.5" ></text> | |
| </g> | |
| <g > | |
| <title>msm_clk_get (26,831,725 samples, 0.04%)</title><rect x="1478.4" y="245" width="0.6" height="15.0" fill="rgb(239,158,37)" rx="2" ry="2" /> | |
| <text x="1481.37" y="255.5" ></text> | |
| </g> | |
| <g > | |
| <title>____sys_recvmsg (11,947,175 samples, 0.02%)</title><rect x="1511.5" y="213" width="0.3" height="15.0" fill="rgb(224,90,21)" rx="2" ry="2" /> | |
| <text x="1514.50" y="223.5" ></text> | |
| </g> | |
| <g > | |
| <title>do_el0_svc (16,655,783 samples, 0.02%)</title><rect x="13.3" y="405" width="0.3" height="15.0" fill="rgb(218,60,14)" rx="2" ry="2" /> | |
| <text x="16.28" y="415.5" ></text> | |
| </g> | |
| <g > | |
| <title>alloc_skb_with_frags (32,975,109 samples, 0.05%)</title><rect x="30.0" y="213" width="0.7" height="15.0" fill="rgb(228,107,25)" rx="2" ry="2" /> | |
| <text x="33.00" y="223.5" ></text> | |
| </g> | |
| <g > | |
| <title>__radix_tree_lookup (4,987,232 samples, 0.01%)</title><rect x="1473.5" y="149" width="0.1" height="15.0" fill="rgb(253,222,53)" rx="2" ry="2" /> | |
| <text x="1476.48" y="159.5" ></text> | |
| </g> | |
| <g > | |
| <title>consume_skb (23,302,561 samples, 0.03%)</title><rect x="36.5" y="181" width="0.5" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" /> | |
| <text x="39.52" y="191.5" ></text> | |
| </g> | |
| <g > | |
| <title>el0_svc_common.constprop.0 (5,612,430 samples, 0.01%)</title><rect x="26.7" y="357" width="0.1" height="15.0" fill="rgb(224,89,21)" rx="2" ry="2" /> | |
| <text x="29.71" y="367.5" ></text> | |
| </g> | |
| <g > | |
| <title>unix_stream_read_generic (23,130,523 samples, 0.03%)</title><rect x="27.9" y="213" width="0.5" height="15.0" fill="rgb(244,180,43)" rx="2" ry="2" /> | |
| <text x="30.89" y="223.5" ></text> | |
| </g> | |
| <g > | |
| <title>pulse_write (65,878,813 samples, 0.09%)</title><rect x="12.8" y="581" width="1.4" height="15.0" fill="rgb(242,171,41)" rx="2" ry="2" /> | |
| <text x="15.79" y="591.5" ></text> | |
| </g> | |
| <g > | |
| <title>[libc.so.6] (20,252,166 samples, 0.03%)</title><rect x="1583.5" y="517" width="0.4" height="15.0" fill="rgb(223,84,20)" rx="2" ry="2" /> | |
| <text x="1586.46" y="527.5" ></text> | |
| </g> | |
| <g > | |
| <title>[libgallium-26.0.5-1.so] (54,772,941 samples, 0.08%)</title><rect x="1426.8" y="565" width="1.2" height="15.0" fill="rgb(216,54,12)" rx="2" ry="2" /> | |
| <text x="1429.76" y="575.5" ></text> | |
| </g> | |
| <g > | |
| <title>[libc.so.6] (18,861,514 samples, 0.03%)</title><rect x="13.2" y="501" width="0.4" height="15.0" fill="rgb(223,84,20)" rx="2" ry="2" /> | |
| <text x="16.23" y="511.5" ></text> | |
| </g> | |
| <g > | |
| <title>do_el0_svc (21,626,245 samples, 0.03%)</title><rect x="1427.5" y="389" width="0.4" height="15.0" fill="rgb(218,60,14)" rx="2" ry="2" /> | |
| <text x="1430.45" y="399.5" ></text> | |
| </g> | |
| <g > | |
| <title>el0t_64_sync_handler (12,014,191 samples, 0.02%)</title><rect x="878.6" y="373" width="0.2" height="15.0" fill="rgb(211,32,7)" rx="2" ry="2" /> | |
| <text x="881.59" y="383.5" ></text> | |
| </g> | |
| <g > | |
| <title>sock_write_iter (120,848,193 samples, 0.17%)</title><rect x="1483.6" y="325" width="2.7" height="15.0" fill="rgb(243,178,42)" rx="2" ry="2" /> | |
| <text x="1486.65" y="335.5" ></text> | |
| </g> | |
| <g > | |
| <title>sock_recvmsg (13,018,399 samples, 0.02%)</title><rect x="27.2" y="277" width="0.3" height="15.0" fill="rgb(206,5,1)" rx="2" ry="2" /> | |
| <text x="30.21" y="287.5" ></text> | |
| </g> | |
| <g > | |
| <title>[libxcb.so.1.1.0] (20,866,128 samples, 0.03%)</title><rect x="28.9" y="485" width="0.5" height="15.0" fill="rgb(226,98,23)" rx="2" ry="2" /> | |
| <text x="31.91" y="495.5" ></text> | |
| </g> | |
| <g > | |
| <title>[libc.so.6] (81,970,510 samples, 0.11%)</title><rect x="1568.6" y="565" width="1.8" height="15.0" fill="rgb(223,84,20)" rx="2" ry="2" /> | |
| <text x="1571.58" y="575.5" ></text> | |
| </g> | |
| <g > | |
| <title>[libc.so.6] (7,039,416 samples, 0.01%)</title><rect x="1482.1" y="405" width="0.2" height="15.0" fill="rgb(223,84,20)" rx="2" ry="2" /> | |
| <text x="1485.14" y="415.5" ></text> | |
| </g> | |
| <g > | |
| <title>invoke_syscall.constprop.0 (8,696,512 samples, 0.01%)</title><rect x="31.4" y="341" width="0.2" height="15.0" fill="rgb(244,183,43)" rx="2" ry="2" /> | |
| <text x="34.37" y="351.5" ></text> | |
| </g> | |
| <g > | |
| <title>[libc.so.6] (14,256,304 samples, 0.02%)</title><rect x="1570.0" y="533" width="0.3" height="15.0" fill="rgb(223,84,20)" rx="2" ry="2" /> | |
| <text x="1573.03" y="543.5" ></text> | |
| </g> | |
| <g > | |
| <title>[libxcb.so.1.1.0] (18,059,958 samples, 0.02%)</title><rect x="33.3" y="485" width="0.3" height="15.0" fill="rgb(226,98,23)" rx="2" ry="2" /> | |
| <text x="36.25" y="495.5" ></text> | |
| </g> | |
| <g > | |
| <title>el0_svc (18,785,741 samples, 0.03%)</title><rect x="29.0" y="373" width="0.4" height="15.0" fill="rgb(244,183,43)" rx="2" ry="2" /> | |
| <text x="31.96" y="383.5" ></text> | |
| </g> | |
| <g > | |
| <title>_IO_file_seekoff (9,204,942 samples, 0.01%)</title><rect x="878.3" y="453" width="0.2" height="15.0" fill="rgb(229,112,26)" rx="2" ry="2" /> | |
| <text x="881.29" y="463.5" ></text> | |
| </g> | |
| <g > | |
| <title>kvrealloc_node_align_noprof (23,667,699 samples, 0.03%)</title><rect x="1471.7" y="117" width="0.5" height="15.0" fill="rgb(233,131,31)" rx="2" ry="2" /> | |
| <text x="1474.72" y="127.5" ></text> | |
| </g> | |
| <g > | |
| <title>unix_stream_read_actor (14,914,635 samples, 0.02%)</title><rect x="1586.5" y="261" width="0.3" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" /> | |
| <text x="1589.48" y="271.5" ></text> | |
| </g> | |
| <g > | |
| <title>_raw_spin_unlock_irqrestore (7,863,668 samples, 0.01%)</title><rect x="1475.4" y="69" width="0.1" height="15.0" fill="rgb(228,106,25)" rx="2" ry="2" /> | |
| <text x="1478.37" y="79.5" ></text> | |
| </g> | |
| <g > | |
| <title>mwritew (705,840,455 samples, 0.98%)</title><rect x="863.8" y="597" width="15.4" height="15.0" fill="rgb(205,2,0)" rx="2" ry="2" /> | |
| <text x="866.82" y="607.5" ></text> | |
| </g> | |
| <g > | |
| <title>opera_clio_fiq_needed (944,195,567 samples, 1.31%)</title><rect x="879.3" y="597" width="20.6" height="15.0" fill="rgb(206,8,2)" rx="2" ry="2" /> | |
| <text x="882.25" y="607.5" ></text> | |
| </g> | |
| <g > | |
| <title>input_driver_poll (764,977,899 samples, 1.06%)</title><rect x="21.3" y="597" width="16.7" height="15.0" fill="rgb(220,73,17)" rx="2" ry="2" /> | |
| <text x="24.31" y="607.5" ></text> | |
| </g> | |
| <g > | |
| <title>[libc.so.6] (6,501,823 samples, 0.01%)</title><rect x="1589.9" y="597" width="0.1" height="15.0" fill="rgb(223,84,20)" rx="2" ry="2" /> | |
| <text x="1592.86" y="607.5" ></text> | |
| </g> | |
| <g > | |
| <title>recvmsg (8,470,268 samples, 0.01%)</title><rect x="1510.5" y="405" width="0.2" height="15.0" fill="rgb(210,25,6)" rx="2" ry="2" /> | |
| <text x="1513.50" y="415.5" ></text> | |
| </g> | |
| <g > | |
| <title>dma_fence_release (10,079,106 samples, 0.01%)</title><rect x="1465.1" y="101" width="0.2" height="15.0" fill="rgb(234,136,32)" rx="2" ry="2" /> | |
| <text x="1468.12" y="111.5" ></text> | |
| </g> | |
| <g > | |
| <title>__poll (20,252,166 samples, 0.03%)</title><rect x="1583.5" y="549" width="0.4" height="15.0" fill="rgb(250,208,49)" rx="2" ry="2" /> | |
| <text x="1586.46" y="559.5" ></text> | |
| </g> | |
| <g > | |
| <title>[libc.so.6] (6,612,520 samples, 0.01%)</title><rect x="1433.4" y="485" width="0.1" height="15.0" fill="rgb(223,84,20)" rx="2" ry="2" /> | |
| <text x="1436.35" y="495.5" ></text> | |
| </g> | |
| <g > | |
| <title>do_el0_svc (10,209,977 samples, 0.01%)</title><rect x="33.4" y="341" width="0.2" height="15.0" fill="rgb(218,60,14)" rx="2" ry="2" /> | |
| <text x="36.42" y="351.5" ></text> | |
| </g> | |
| <g > | |
| <title>__arm64_sys_writev (73,169,008 samples, 0.10%)</title><rect x="29.6" y="341" width="1.6" height="15.0" fill="rgb(241,169,40)" rx="2" ry="2" /> | |
| <text x="32.62" y="351.5" ></text> | |
| </g> | |
| <g > | |
| <title>udev_joypad_state (23,154,931 samples, 0.03%)</title><rect x="23.9" y="581" width="0.5" height="15.0" fill="rgb(219,66,15)" rx="2" ry="2" /> | |
| <text x="26.88" y="591.5" ></text> | |
| </g> | |
| <g > | |
| <title>strchr (9,245,972 samples, 0.01%)</title><rect x="1561.7" y="565" width="0.2" height="15.0" fill="rgb(237,147,35)" rx="2" ry="2" /> | |
| <text x="1564.69" y="575.5" ></text> | |
| </g> | |
| <g > | |
| <title>skb_free_head (6,423,362 samples, 0.01%)</title><rect x="28.0" y="165" width="0.1" height="15.0" fill="rgb(221,77,18)" rx="2" ry="2" /> | |
| <text x="31.00" y="175.5" ></text> | |
| </g> | |
| <g > | |
| <title>recvmsg (20,315,758 samples, 0.03%)</title><rect x="1428.0" y="533" width="0.4" height="15.0" fill="rgb(210,25,6)" rx="2" ry="2" /> | |
| <text x="1430.97" y="543.5" ></text> | |
| </g> | |
| <g > | |
| <title>pa_pdispatch_run (5,825,345 samples, 0.01%)</title><rect x="1588.2" y="549" width="0.2" height="15.0" fill="rgb(231,122,29)" rx="2" ry="2" /> | |
| <text x="1591.24" y="559.5" ></text> | |
| </g> | |
| <g > | |
| <title>sock_wfree (4,899,076 samples, 0.01%)</title><rect x="36.9" y="133" width="0.1" height="15.0" fill="rgb(240,162,38)" rx="2" ry="2" /> | |
| <text x="39.91" y="143.5" ></text> | |
| </g> | |
| <g > | |
| <title>[libGLdispatch.so.0.0.0] (32,191,424 samples, 0.04%)</title><rect x="1530.9" y="533" width="0.7" height="15.0" fill="rgb(209,20,4)" rx="2" ry="2" /> | |
| <text x="1533.86" y="543.5" ></text> | |
| </g> | |
| <g > | |
| <title>el0_svc (8,392,538 samples, 0.01%)</title><rect x="26.7" y="389" width="0.1" height="15.0" fill="rgb(244,183,43)" rx="2" ry="2" /> | |
| <text x="29.65" y="399.5" ></text> | |
| </g> | |
| <g > | |
| <title>recvmsg (14,476,063 samples, 0.02%)</title><rect x="1576.2" y="517" width="0.3" height="15.0" fill="rgb(210,25,6)" rx="2" ry="2" /> | |
| <text x="1579.22" y="527.5" ></text> | |
| </g> | |
| <g > | |
| <title>drm_exec_cleanup (18,313,085 samples, 0.03%)</title><rect x="1475.6" y="181" width="0.4" height="15.0" fill="rgb(223,86,20)" rx="2" ry="2" /> | |
| <text x="1478.58" y="191.5" ></text> | |
| </g> | |
| <g > | |
| <title>____do_softirq (11,689,935 samples, 0.02%)</title><rect x="783.2" y="469" width="0.2" height="15.0" fill="rgb(219,65,15)" rx="2" ry="2" /> | |
| <text x="786.18" y="479.5" ></text> | |
| </g> | |
| <g > | |
| <title>sock_write_iter (59,263,549 samples, 0.08%)</title><rect x="34.1" y="261" width="1.3" height="15.0" fill="rgb(243,178,42)" rx="2" ry="2" /> | |
| <text x="37.12" y="271.5" ></text> | |
| </g> | |
| <g > | |
| <title>[[gpu_sched]] (5,712,965 samples, 0.01%)</title><rect x="1479.6" y="197" width="0.1" height="15.0" fill="rgb(225,93,22)" rx="2" ry="2" /> | |
| <text x="1482.60" y="207.5" ></text> | |
| </g> | |
| <g > | |
| <title>PDEC (655,331,946 samples, 0.91%)</title><rect x="1042.5" y="597" width="14.3" height="15.0" fill="rgb(228,110,26)" rx="2" ry="2" /> | |
| <text x="1045.53" y="607.5" ></text> | |
| </g> | |
| <g > | |
| <title>vfs_writev (135,795,352 samples, 0.19%)</title><rect x="1483.5" y="357" width="2.9" height="15.0" fill="rgb(238,153,36)" rx="2" ry="2" /> | |
| <text x="1486.48" y="367.5" ></text> | |
| </g> | |
| <g > | |
| <title>__poll (14,927,620 samples, 0.02%)</title><rect x="31.2" y="485" width="0.4" height="15.0" fill="rgb(250,208,49)" rx="2" ry="2" /> | |
| <text x="34.23" y="495.5" ></text> | |
| </g> | |
| <g > | |
| <title>skb_release_head_state (4,899,076 samples, 0.01%)</title><rect x="36.9" y="165" width="0.1" height="15.0" fill="rgb(226,100,24)" rx="2" ry="2" /> | |
| <text x="39.91" y="175.5" ></text> | |
| </g> | |
| <g > | |
| <title>el0_svc_common.constprop.0 (19,330,119 samples, 0.03%)</title><rect x="27.1" y="341" width="0.4" height="15.0" fill="rgb(224,89,21)" rx="2" ry="2" /> | |
| <text x="30.11" y="351.5" ></text> | |
| </g> | |
| <g > | |
| <title>el0_svc_common.constprop.0 (194,335,693 samples, 0.27%)</title><rect x="1477.8" y="325" width="4.2" height="15.0" fill="rgb(224,89,21)" rx="2" ry="2" /> | |
| <text x="1480.80" y="335.5" ></text> | |
| </g> | |
| <g > | |
| <title>audio_driver_flush.constprop.0 (392,847,346 samples, 0.54%)</title><rect x="12.3" y="597" width="8.6" height="15.0" fill="rgb(209,19,4)" rx="2" ry="2" /> | |
| <text x="15.31" y="607.5" ></text> | |
| </g> | |
| <g > | |
| <title>[libc.so.6] (20,315,758 samples, 0.03%)</title><rect x="1428.0" y="501" width="0.4" height="15.0" fill="rgb(223,84,20)" rx="2" ry="2" /> | |
| <text x="1430.97" y="511.5" ></text> | |
| </g> | |
| <g > | |
| <title>___sys_recvmsg (10,668,595 samples, 0.01%)</title><rect x="1581.6" y="341" width="0.3" height="15.0" fill="rgb(238,153,36)" rx="2" ry="2" /> | |
| <text x="1584.62" y="351.5" ></text> | |
| </g> | |
| <g > | |
| <title>x_input_state (34,953,763 samples, 0.05%)</title><rect x="1578.6" y="613" width="0.8" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" /> | |
| <text x="1581.62" y="623.5" ></text> | |
| </g> | |
| <g > | |
| <title>__arm64_sys_ppoll (7,260,807 samples, 0.01%)</title><rect x="31.4" y="325" width="0.1" height="15.0" fill="rgb(230,115,27)" rx="2" ry="2" /> | |
| <text x="34.37" y="335.5" ></text> | |
| </g> | |
| <g > | |
| <title>__arm64_sys_ppoll (11,269,510 samples, 0.02%)</title><rect x="35.6" y="309" width="0.2" height="15.0" fill="rgb(230,115,27)" rx="2" ry="2" /> | |
| <text x="38.57" y="319.5" ></text> | |
| </g> | |
| <g > | |
| <title>[libgallium-26.0.5-1.so] (1,358,312,412 samples, 1.88%)</title><rect x="1447.6" y="437" width="29.6" height="15.0" fill="rgb(216,54,12)" rx="2" ry="2" /> | |
| <text x="1450.57" y="447.5" >[l..</text> | |
| </g> | |
| <g > | |
| <title>[libc.so.6] (15,513,241 samples, 0.02%)</title><rect x="878.5" y="469" width="0.3" height="15.0" fill="rgb(223,84,20)" rx="2" ry="2" /> | |
| <text x="881.51" y="479.5" ></text> | |
| </g> | |
| <g > | |
| <title>el0_svc (29,502,419 samples, 0.04%)</title><rect x="31.8" y="373" width="0.7" height="15.0" fill="rgb(244,183,43)" rx="2" ry="2" /> | |
| <text x="34.84" y="383.5" ></text> | |
| </g> | |
| <g > | |
| <title>obj_cgroup_charge_account (24,734,130 samples, 0.03%)</title><rect x="1484.8" y="197" width="0.5" height="15.0" fill="rgb(219,65,15)" rx="2" ry="2" /> | |
| <text x="1487.78" y="207.5" ></text> | |
| </g> | |
| <g > | |
| <title>el0_svc (215,936,843 samples, 0.30%)</title><rect x="1477.3" y="357" width="4.7" height="15.0" fill="rgb(244,183,43)" rx="2" ry="2" /> | |
| <text x="1480.33" y="367.5" ></text> | |
| </g> | |
| <g > | |
| <title>[libc.so.6] (72,243,071,772 samples, 99.86%)</title><rect x="10.3" y="709" width="1577.8" height="15.0" fill="rgb(223,84,20)" rx="2" ry="2" /> | |
| <text x="13.25" y="719.5" >[libc.so.6]</text> | |
| </g> | |
| <g > | |
| <title>input_joypad_analog_axis (27,502,106 samples, 0.04%)</title><rect x="22.4" y="581" width="0.6" height="15.0" fill="rgb(208,16,3)" rx="2" ry="2" /> | |
| <text x="25.40" y="591.5" ></text> | |
| </g> | |
| <g > | |
| <title>opera_clock_timer_queued (172,692,010 samples, 0.24%)</title><rect x="935.2" y="613" width="3.7" height="15.0" fill="rgb(218,61,14)" rx="2" ry="2" /> | |
| <text x="938.17" y="623.5" ></text> | |
| </g> | |
| <g > | |
| <title>do_el0_svc (8,696,512 samples, 0.01%)</title><rect x="31.4" y="373" width="0.2" height="15.0" fill="rgb(218,60,14)" rx="2" ry="2" /> | |
| <text x="34.37" y="383.5" ></text> | |
| </g> | |
| <g > | |
| <title>drm_sched_free_job_work (35,191,169 samples, 0.05%)</title><rect x="1479.5" y="229" width="0.8" height="15.0" fill="rgb(221,73,17)" rx="2" ry="2" /> | |
| <text x="1482.49" y="239.5" ></text> | |
| </g> | |
| <g > | |
| <title>_raw_spin_unlock_irqrestore (5,648,214 samples, 0.01%)</title><rect x="13.4" y="293" width="0.1" height="15.0" fill="rgb(228,106,25)" rx="2" ry="2" /> | |
| <text x="16.42" y="303.5" ></text> | |
| </g> | |
| <g > | |
| <title>__sock_sendmsg (31,868,456 samples, 0.04%)</title><rect x="1582.6" y="325" width="0.7" height="15.0" fill="rgb(217,57,13)" rx="2" ry="2" /> | |
| <text x="1585.58" y="335.5" ></text> | |
| </g> | |
| <g > | |
| <title>el0_svc_common.constprop.0 (29,263,528 samples, 0.04%)</title><rect x="1511.5" y="293" width="0.6" height="15.0" fill="rgb(224,89,21)" rx="2" ry="2" /> | |
| <text x="1514.45" y="303.5" ></text> | |
| </g> | |
| <g > | |
| <title>sock_recvmsg (24,545,221 samples, 0.03%)</title><rect x="31.9" y="245" width="0.6" height="15.0" fill="rgb(206,5,1)" rx="2" ry="2" /> | |
| <text x="34.92" y="255.5" ></text> | |
| </g> | |
| <g > | |
| <title>el0t_64_sync_handler (13,731,170 samples, 0.02%)</title><rect x="1576.2" y="437" width="0.3" height="15.0" fill="rgb(211,32,7)" rx="2" ry="2" /> | |
| <text x="1579.24" y="447.5" ></text> | |
| </g> | |
| <g > | |
| <title>drmm_kstrdup (591,257,110 samples, 0.82%)</title><rect x="1463.2" y="213" width="12.9" height="15.0" fill="rgb(214,41,9)" rx="2" ry="2" /> | |
| <text x="1466.15" y="223.5" ></text> | |
| </g> | |
| <g > | |
| <title>[libxcb.so.1.1.0] (46,946,301 samples, 0.06%)</title><rect x="1426.9" y="517" width="1.0" height="15.0" fill="rgb(226,98,23)" rx="2" ry="2" /> | |
| <text x="1429.90" y="527.5" ></text> | |
| </g> | |
| <g > | |
| <title>invoke_syscall.constprop.0 (11,452,951 samples, 0.02%)</title><rect x="25.0" y="325" width="0.3" height="15.0" fill="rgb(244,183,43)" rx="2" ry="2" /> | |
| <text x="28.04" y="335.5" ></text> | |
| </g> | |
| <g > | |
| <title>video_driver_is_hw_context (7,268,224 samples, 0.01%)</title><rect x="1580.7" y="645" width="0.2" height="15.0" fill="rgb(235,141,33)" rx="2" ry="2" /> | |
| <text x="1583.72" y="655.5" ></text> | |
| </g> | |
| <g > | |
| <title>gfx_widgets_frame (29,369,561 samples, 0.04%)</title><rect x="1562.6" y="613" width="0.6" height="15.0" fill="rgb(205,0,0)" rx="2" ry="2" /> | |
| <text x="1565.58" y="623.5" ></text> | |
| </g> | |
| <g > | |
| <title>__arm64_sys_recvmsg (6,496,873 samples, 0.01%)</title><rect x="1576.4" y="357" width="0.1" height="15.0" fill="rgb(236,144,34)" rx="2" ry="2" /> | |
| <text x="1579.37" y="367.5" ></text> | |
| </g> | |
| <g > | |
| <title>el0_svc (23,285,965 samples, 0.03%)</title><rect x="1486.6" y="437" width="0.5" height="15.0" fill="rgb(244,183,43)" rx="2" ry="2" /> | |
| <text x="1489.57" y="447.5" ></text> | |
| </g> | |
| <g > | |
| <title>__sys_recvmsg (7,199,716 samples, 0.01%)</title><rect x="1428.2" y="357" width="0.2" height="15.0" fill="rgb(252,216,51)" rx="2" ry="2" /> | |
| <text x="1431.23" y="367.5" ></text> | |
| </g> | |
| <g > | |
| <title>skb_release_head_state (10,683,737 samples, 0.01%)</title><rect x="1586.1" y="245" width="0.2" height="15.0" fill="rgb(226,100,24)" rx="2" ry="2" /> | |
| <text x="1589.07" y="255.5" ></text> | |
| </g> | |
| <g > | |
| <title>drmm_kfree (596,158,440 samples, 0.82%)</title><rect x="1463.0" y="229" width="13.1" height="15.0" fill="rgb(217,58,14)" rx="2" ry="2" /> | |
| <text x="1466.05" y="239.5" ></text> | |
| </g> | |
| <g > | |
| <title>__sys_recvmsg (12,106,584 samples, 0.02%)</title><rect x="1581.6" y="357" width="0.3" height="15.0" fill="rgb(252,216,51)" rx="2" ry="2" /> | |
| <text x="1584.62" y="367.5" ></text> | |
| </g> | |
| <g > | |
| <title>[libgallium-26.0.5-1.so] (12,148,669 samples, 0.02%)</title><rect x="1461.8" y="341" width="0.3" height="15.0" fill="rgb(216,54,12)" rx="2" ry="2" /> | |
| <text x="1464.80" y="351.5" ></text> | |
| </g> | |
| <g > | |
| <title>el0_svc (52,892,959 samples, 0.07%)</title><rect x="25.4" y="405" width="1.2" height="15.0" fill="rgb(244,183,43)" rx="2" ry="2" /> | |
| <text x="28.42" y="415.5" ></text> | |
| </g> | |
| <g > | |
| <title>[libc.so.6] (12,699,669 samples, 0.02%)</title><rect x="878.6" y="437" width="0.2" height="15.0" fill="rgb(223,84,20)" rx="2" ry="2" /> | |
| <text x="881.57" y="447.5" ></text> | |
| </g> | |
| <g > | |
| <title>[libc.so.6] (18,861,514 samples, 0.03%)</title><rect x="13.2" y="485" width="0.4" height="15.0" fill="rgb(223,84,20)" rx="2" ry="2" /> | |
| <text x="16.23" y="495.5" ></text> | |
| </g> | |
| <g > | |
| <title>filestream_seek (7,041,139 samples, 0.01%)</title><rect x="878.9" y="485" width="0.1" height="15.0" fill="rgb(211,30,7)" rx="2" ry="2" /> | |
| <text x="881.88" y="495.5" ></text> | |
| </g> | |
| <g > | |
| <title>[libgallium-26.0.5-1.so] (6,406,503 samples, 0.01%)</title><rect x="1508.7" y="325" width="0.2" height="15.0" fill="rgb(216,54,12)" rx="2" ry="2" /> | |
| <text x="1511.75" y="335.5" ></text> | |
| </g> | |
| <g > | |
| <title>opera_clock_vdl_queued (197,426,648 samples, 0.27%)</title><rect x="938.9" y="613" width="4.4" height="15.0" fill="rgb(233,129,30)" rx="2" ry="2" /> | |
| <text x="941.94" y="623.5" ></text> | |
| </g> | |
| <g > | |
| <title>[libc.so.6] (20,794,757 samples, 0.03%)</title><rect x="24.8" y="453" width="0.5" height="15.0" fill="rgb(223,84,20)" rx="2" ry="2" /> | |
| <text x="27.84" y="463.5" ></text> | |
| </g> | |
| <g > | |
| <title>__sock_sendmsg (66,737,885 samples, 0.09%)</title><rect x="29.7" y="261" width="1.5" height="15.0" fill="rgb(217,57,13)" rx="2" ry="2" /> | |
| <text x="32.71" y="271.5" ></text> | |
| </g> | |
| <g > | |
| <title>[libc.so.6] (19,269,771 samples, 0.03%)</title><rect x="23.4" y="533" width="0.4" height="15.0" fill="rgb(223,84,20)" rx="2" ry="2" /> | |
| <text x="26.36" y="543.5" ></text> | |
| </g> | |
| <g > | |
| <title>__arm64_sys_write (9,758,649 samples, 0.01%)</title><rect x="1588.9" y="405" width="0.2" height="15.0" fill="rgb(254,226,54)" rx="2" ry="2" /> | |
| <text x="1591.90" y="415.5" ></text> | |
| </g> | |
| <g > | |
| <title>unix_stream_recvmsg (5,693,783 samples, 0.01%)</title><rect x="1427.7" y="261" width="0.1" height="15.0" fill="rgb(251,213,51)" rx="2" ry="2" /> | |
| <text x="1430.67" y="271.5" ></text> | |
| </g> | |
| <g > | |
| <title>____sys_recvmsg (25,233,736 samples, 0.03%)</title><rect x="31.9" y="261" width="0.6" height="15.0" fill="rgb(224,90,21)" rx="2" ry="2" /> | |
| <text x="34.90" y="271.5" ></text> | |
| </g> | |
| <g > | |
| <title>[libgallium-26.0.5-1.so] (8,206,457 samples, 0.01%)</title><rect x="10.0" y="645" width="0.2" height="15.0" fill="rgb(216,54,12)" rx="2" ry="2" /> | |
| <text x="13.01" y="655.5" ></text> | |
| </g> | |
| <g > | |
| <title>[libgallium-26.0.5-1.so] (893,549,648 samples, 1.24%)</title><rect x="1492.9" y="549" width="19.5" height="15.0" fill="rgb(216,54,12)" rx="2" ry="2" /> | |
| <text x="1495.92" y="559.5" ></text> | |
| </g> | |
| <g > | |
| <title>ksys_read (12,014,191 samples, 0.02%)</title><rect x="878.6" y="277" width="0.2" height="15.0" fill="rgb(229,113,27)" rx="2" ry="2" /> | |
| <text x="881.59" y="287.5" ></text> | |
| </g> | |
| <g > | |
| <title>el0_svc (18,655,486 samples, 0.03%)</title><rect x="24.9" y="373" width="0.4" height="15.0" fill="rgb(244,183,43)" rx="2" ry="2" /> | |
| <text x="27.88" y="383.5" ></text> | |
| </g> | |
| <g > | |
| <title>dsp_read (66,628,120 samples, 0.09%)</title><rect x="414.7" y="549" width="1.4" height="15.0" fill="rgb(225,96,23)" rx="2" ry="2" /> | |
| <text x="417.69" y="559.5" ></text> | |
| </g> | |
| <g > | |
| <title>__sys_recvmsg (25,990,615 samples, 0.04%)</title><rect x="31.9" y="293" width="0.6" height="15.0" fill="rgb(252,216,51)" rx="2" ry="2" /> | |
| <text x="34.90" y="303.5" ></text> | |
| </g> | |
| <g > | |
| <title>recvmsg (121,111,203 samples, 0.17%)</title><rect x="1584.3" y="533" width="2.7" height="15.0" fill="rgb(210,25,6)" rx="2" ry="2" /> | |
| <text x="1587.33" y="543.5" ></text> | |
| </g> | |
| <g > | |
| <title>x_input_state (6,467,843 samples, 0.01%)</title><rect x="23.1" y="565" width="0.2" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" /> | |
| <text x="26.13" y="575.5" ></text> | |
| </g> | |
| <g > | |
| <title>do_el0_svc (29,263,528 samples, 0.04%)</title><rect x="1511.5" y="309" width="0.6" height="15.0" fill="rgb(218,60,14)" rx="2" ry="2" /> | |
| <text x="1514.45" y="319.5" ></text> | |
| </g> | |
| <g > | |
| <title>[libgallium-26.0.5-1.so] (847,963,248 samples, 1.17%)</title><rect x="1493.9" y="533" width="18.5" height="15.0" fill="rgb(216,54,12)" rx="2" ry="2" /> | |
| <text x="1496.92" y="543.5" ></text> | |
| </g> | |
| <g > | |
| <title>[libgallium-26.0.5-1.so] (21,739,803 samples, 0.03%)</title><rect x="1558.5" y="357" width="0.5" height="15.0" fill="rgb(216,54,12)" rx="2" ry="2" /> | |
| <text x="1561.51" y="367.5" ></text> | |
| </g> | |
| <g > | |
| <title>el0_svc_common.constprop.0 (37,946,786 samples, 0.05%)</title><rect x="10.7" y="501" width="0.8" height="15.0" fill="rgb(224,89,21)" rx="2" ry="2" /> | |
| <text x="13.67" y="511.5" ></text> | |
| </g> | |
| <g > | |
| <title>xas_store (15,737,350 samples, 0.02%)</title><rect x="1479.9" y="165" width="0.3" height="15.0" fill="rgb(207,9,2)" rx="2" ry="2" /> | |
| <text x="1482.86" y="175.5" ></text> | |
| </g> | |
| <g > | |
| <title>drm_exec_lock_obj (16,670,594 samples, 0.02%)</title><rect x="1480.4" y="197" width="0.4" height="15.0" fill="rgb(236,142,34)" rx="2" ry="2" /> | |
| <text x="1483.41" y="207.5" ></text> | |
| </g> | |
| <g > | |
| <title>el0t_64_sync (117,018,302 samples, 0.16%)</title><rect x="1584.4" y="469" width="2.6" height="15.0" fill="rgb(217,56,13)" rx="2" ry="2" /> | |
| <text x="1587.42" y="479.5" ></text> | |
| </g> | |
| <g > | |
| <title>__arm64_sys_ppoll (21,430,973 samples, 0.03%)</title><rect x="1587.2" y="389" width="0.5" height="15.0" fill="rgb(230,115,27)" rx="2" ry="2" /> | |
| <text x="1590.21" y="399.5" ></text> | |
| </g> | |
| <g > | |
| <title>[libxcb.so.1.1.0] (98,899,776 samples, 0.14%)</title><rect x="29.4" y="501" width="2.2" height="15.0" fill="rgb(226,98,23)" rx="2" ry="2" /> | |
| <text x="32.45" y="511.5" ></text> | |
| </g> | |
| <g > | |
| <title>TestInitVisual (7,945,581 samples, 0.01%)</title><rect x="1127.2" y="597" width="0.2" height="15.0" fill="rgb(209,21,5)" rx="2" ry="2" /> | |
| <text x="1130.20" y="607.5" ></text> | |
| </g> | |
| <g > | |
| <title>[libxcb.so.1.1.0] (82,749,907 samples, 0.11%)</title><rect x="35.9" y="485" width="1.9" height="15.0" fill="rgb(226,98,23)" rx="2" ry="2" /> | |
| <text x="38.94" y="495.5" ></text> | |
| </g> | |
| <g > | |
| <title>do_writev (70,958,888 samples, 0.10%)</title><rect x="34.0" y="309" width="1.5" height="15.0" fill="rgb(239,157,37)" rx="2" ry="2" /> | |
| <text x="36.96" y="319.5" ></text> | |
| </g> | |
| <g > | |
| <title>[libc.so.6] (5,708,345 samples, 0.01%)</title><rect x="1461.4" y="309" width="0.1" height="15.0" fill="rgb(223,84,20)" rx="2" ry="2" /> | |
| <text x="1464.38" y="319.5" ></text> | |
| </g> | |
| <g > | |
| <title>el0t_64_sync_handler (8,392,538 samples, 0.01%)</title><rect x="26.7" y="405" width="0.1" height="15.0" fill="rgb(211,32,7)" rx="2" ry="2" /> | |
| <text x="29.65" y="415.5" ></text> | |
| </g> | |
| <g > | |
| <title>__slab_alloc.isra.0 (23,867,840 samples, 0.03%)</title><rect x="1475.0" y="101" width="0.5" height="15.0" fill="rgb(205,0,0)" rx="2" ry="2" /> | |
| <text x="1478.02" y="111.5" ></text> | |
| </g> | |
| <g > | |
| <title>skb_free_head (26,273,176 samples, 0.04%)</title><rect x="1585.5" y="229" width="0.6" height="15.0" fill="rgb(221,77,18)" rx="2" ry="2" /> | |
| <text x="1588.50" y="239.5" ></text> | |
| </g> | |
| <g > | |
| <title>gl_glsl_use (58,571,546 samples, 0.08%)</title><rect x="1566.2" y="613" width="1.3" height="15.0" fill="rgb(218,61,14)" rx="2" ry="2" /> | |
| <text x="1569.25" y="623.5" ></text> | |
| </g> | |
| <g > | |
| <title>el0t_64_sync_handler (17,124,182 samples, 0.02%)</title><rect x="32.6" y="405" width="0.3" height="15.0" fill="rgb(211,32,7)" rx="2" ry="2" /> | |
| <text x="35.56" y="415.5" ></text> | |
| </g> | |
| <g > | |
| <title>[libc.so.6] (54,270,505 samples, 0.08%)</title><rect x="25.4" y="485" width="1.2" height="15.0" fill="rgb(223,84,20)" rx="2" ry="2" /> | |
| <text x="28.39" y="495.5" ></text> | |
| </g> | |
| <g > | |
| <title>[libgallium-26.0.5-1.so] (769,468,808 samples, 1.06%)</title><rect x="1542.8" y="469" width="16.9" height="15.0" fill="rgb(216,54,12)" rx="2" ry="2" /> | |
| <text x="1545.85" y="479.5" ></text> | |
| </g> | |
| <g > | |
| <title>__poll (19,433,424 samples, 0.03%)</title><rect x="37.3" y="469" width="0.4" height="15.0" fill="rgb(250,208,49)" rx="2" ry="2" /> | |
| <text x="40.29" y="479.5" ></text> | |
| </g> | |
| <g > | |
| <title>do_sys_poll (5,038,164 samples, 0.01%)</title><rect x="28.6" y="309" width="0.1" height="15.0" fill="rgb(219,68,16)" rx="2" ry="2" /> | |
| <text x="31.60" y="319.5" ></text> | |
| </g> | |
| <g > | |
| <title>sock_alloc_send_pskb (35,872,327 samples, 0.05%)</title><rect x="30.0" y="229" width="0.8" height="15.0" fill="rgb(210,26,6)" rx="2" ry="2" /> | |
| <text x="32.98" y="239.5" ></text> | |
| </g> | |
| <g > | |
| <title>gl2_raster_font_render_msg (2,248,625,034 samples, 3.11%)</title><rect x="1513.1" y="597" width="49.1" height="15.0" fill="rgb(246,188,45)" rx="2" ry="2" /> | |
| <text x="1516.13" y="607.5" >gl2_..</text> | |
| </g> | |
| <g > | |
| <title>[libGLdispatch.so.0.0.0] (10,929,992 samples, 0.02%)</title><rect x="1521.3" y="533" width="0.3" height="15.0" fill="rgb(209,20,4)" rx="2" ry="2" /> | |
| <text x="1524.34" y="543.5" ></text> | |
| </g> | |
| <g > | |
| <title>[libxcb.so.1.1.0] (57,986,670 samples, 0.08%)</title><rect x="31.7" y="501" width="1.3" height="15.0" fill="rgb(226,98,23)" rx="2" ry="2" /> | |
| <text x="34.70" y="511.5" ></text> | |
| </g> | |
| <g > | |
| <title>pa_mainloop_prepare (9,116,984 samples, 0.01%)</title><rect x="1589.8" y="645" width="0.2" height="15.0" fill="rgb(209,22,5)" rx="2" ry="2" /> | |
| <text x="1592.80" y="655.5" ></text> | |
| </g> | |
| <g > | |
| <title>[libgallium-26.0.5-1.so] (79,083,416 samples, 0.11%)</title><rect x="1557.3" y="389" width="1.7" height="15.0" fill="rgb(216,54,12)" rx="2" ry="2" /> | |
| <text x="1560.31" y="399.5" ></text> | |
| </g> | |
| <g > | |
| <title>llseek (5,732,382 samples, 0.01%)</title><rect x="878.4" y="437" width="0.1" height="15.0" fill="rgb(229,111,26)" rx="2" ry="2" /> | |
| <text x="881.37" y="447.5" ></text> | |
| </g> | |
| <g > | |
| <title>__slab_alloc.isra.0 (7,050,022 samples, 0.01%)</title><rect x="1480.1" y="101" width="0.1" height="15.0" fill="rgb(205,0,0)" rx="2" ry="2" /> | |
| <text x="1483.05" y="111.5" ></text> | |
| </g> | |
| <g > | |
| <title>[libgallium-26.0.5-1.so] (209,722,660 samples, 0.29%)</title><rect x="1504.7" y="405" width="4.6" height="15.0" fill="rgb(216,54,12)" rx="2" ry="2" /> | |
| <text x="1507.70" y="415.5" ></text> | |
| </g> | |
| <g > | |
| <title>el0t_64_sync_handler (10,054,760 samples, 0.01%)</title><rect x="12.9" y="501" width="0.3" height="15.0" fill="rgb(211,32,7)" rx="2" ry="2" /> | |
| <text x="15.95" y="511.5" ></text> | |
| </g> | |
| <g > | |
| <title>drm_sched_fence_init (18,589,474 samples, 0.03%)</title><rect x="1464.9" y="117" width="0.5" height="15.0" fill="rgb(252,219,52)" rx="2" ry="2" /> | |
| <text x="1467.95" y="127.5" ></text> | |
| </g> | |
| <g > | |
| <title>video_monitor_fps_statistics (106,889,763 samples, 0.15%)</title><rect x="1570.8" y="629" width="2.3" height="15.0" fill="rgb(228,109,26)" rx="2" ry="2" /> | |
| <text x="1573.76" y="639.5" ></text> | |
| </g> | |
| <g > | |
| <title>el0t_64_sync_handler (9,433,409 samples, 0.01%)</title><rect x="14.7" y="501" width="0.2" height="15.0" fill="rgb(211,32,7)" rx="2" ry="2" /> | |
| <text x="17.66" y="511.5" ></text> | |
| </g> | |
| <g > | |
| <title>el0_svc (38,275,360 samples, 0.05%)</title><rect x="1427.1" y="405" width="0.8" height="15.0" fill="rgb(244,183,43)" rx="2" ry="2" /> | |
| <text x="1430.09" y="415.5" ></text> | |
| </g> | |
| <g > | |
| <title>[libxcb.so.1.1.0] (60,182,997 samples, 0.08%)</title><rect x="31.7" y="517" width="1.3" height="15.0" fill="rgb(226,98,23)" rx="2" ry="2" /> | |
| <text x="34.68" y="527.5" ></text> | |
| </g> | |
| <g > | |
| <title>drm_sched_entity_pop_job (13,014,562 samples, 0.02%)</title><rect x="1478.6" y="229" width="0.3" height="15.0" fill="rgb(248,202,48)" rx="2" ry="2" /> | |
| <text x="1481.61" y="239.5" ></text> | |
| </g> | |
| <g > | |
| <title>el0t_64_sync (75,954,845 samples, 0.10%)</title><rect x="29.6" y="437" width="1.6" height="15.0" fill="rgb(217,56,13)" rx="2" ry="2" /> | |
| <text x="32.57" y="447.5" ></text> | |
| </g> | |
| <g > | |
| <title>__folio_batch_release (18,042,812 samples, 0.02%)</title><rect x="10.7" y="357" width="0.4" height="15.0" fill="rgb(208,16,3)" rx="2" ry="2" /> | |
| <text x="13.68" y="367.5" ></text> | |
| </g> | |
| <g > | |
| <title>all (72,342,630,658 samples, 100%)</title><rect x="10.0" y="773" width="1580.0" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> | |
| <text x="13.00" y="783.5" ></text> | |
| </g> | |
| <g > | |
| <title>el0_svc_common.constprop.0 (5,038,509 samples, 0.01%)</title><rect x="14.8" y="453" width="0.1" height="15.0" fill="rgb(224,89,21)" rx="2" ry="2" /> | |
| <text x="17.76" y="463.5" ></text> | |
| </g> | |
| <g > | |
| <title>[libgallium-26.0.5-1.so] (17,108,812 samples, 0.02%)</title><rect x="1513.5" y="565" width="0.4" height="15.0" fill="rgb(216,54,12)" rx="2" ry="2" /> | |
| <text x="1516.54" y="575.5" ></text> | |
| </g> | |
| <g > | |
| <title>unix_stream_read_generic (19,428,360 samples, 0.03%)</title><rect x="32.0" y="213" width="0.5" height="15.0" fill="rgb(244,180,43)" rx="2" ry="2" /> | |
| <text x="35.03" y="223.5" ></text> | |
| </g> | |
| <g > | |
| <title>pa_fdsem_post (18,079,529 samples, 0.02%)</title><rect x="1588.7" y="581" width="0.4" height="15.0" fill="rgb(248,201,48)" rx="2" ry="2" /> | |
| <text x="1591.73" y="591.5" ></text> | |
| </g> | |
| <g > | |
| <title>[libc.so.6] (33,099,336 samples, 0.05%)</title><rect x="31.8" y="437" width="0.7" height="15.0" fill="rgb(223,84,20)" rx="2" ry="2" /> | |
| <text x="34.76" y="447.5" ></text> | |
| </g> | |
| <g > | |
| <title>[libc.so.6] (18,079,529 samples, 0.02%)</title><rect x="1588.7" y="517" width="0.4" height="15.0" fill="rgb(223,84,20)" rx="2" ry="2" /> | |
| <text x="1591.73" y="527.5" ></text> | |
| </g> | |
| <g > | |
| <title>xbus_cdrom_plugin (26,097,156 samples, 0.04%)</title><rect x="878.5" y="549" width="0.6" height="15.0" fill="rgb(254,229,54)" rx="2" ry="2" /> | |
| <text x="881.49" y="559.5" ></text> | |
| </g> | |
| <g > | |
| <title>el0t_64_sync_handler (30,142,192 samples, 0.04%)</title><rect x="31.8" y="389" width="0.7" height="15.0" fill="rgb(211,32,7)" rx="2" ry="2" /> | |
| <text x="34.83" y="399.5" ></text> | |
| </g> | |
| <g > | |
| <title>el0_interrupt (11,689,935 samples, 0.02%)</title><rect x="783.2" y="549" width="0.2" height="15.0" fill="rgb(247,195,46)" rx="2" ry="2" /> | |
| <text x="786.18" y="559.5" ></text> | |
| </g> | |
| <g > | |
| <title>idr_alloc_u32 (44,967,692 samples, 0.06%)</title><rect x="1474.6" y="165" width="1.0" height="15.0" fill="rgb(238,154,37)" rx="2" ry="2" /> | |
| <text x="1477.58" y="175.5" ></text> | |
| </g> | |
| <g > | |
| <title>[libxcb.so.1.1.0] (20,315,758 samples, 0.03%)</title><rect x="1428.0" y="549" width="0.4" height="15.0" fill="rgb(226,98,23)" rx="2" ry="2" /> | |
| <text x="1430.97" y="559.5" ></text> | |
| </g> | |
| <g > | |
| <title>el0t_64_sync_handler (18,121,312 samples, 0.03%)</title><rect x="13.2" y="437" width="0.4" height="15.0" fill="rgb(211,32,7)" rx="2" ry="2" /> | |
| <text x="16.25" y="447.5" ></text> | |
| </g> | |
| <g > | |
| <title>ksys_read (12,811,620 samples, 0.02%)</title><rect x="878.0" y="293" width="0.3" height="15.0" fill="rgb(229,113,27)" rx="2" ry="2" /> | |
| <text x="881.00" y="303.5" ></text> | |
| </g> | |
| <g > | |
| <title>[libc.so.6] (6,612,520 samples, 0.01%)</title><rect x="1433.4" y="469" width="0.1" height="15.0" fill="rgb(223,84,20)" rx="2" ry="2" /> | |
| <text x="1436.35" y="479.5" ></text> | |
| </g> | |
| <g > | |
| <title>drmm_kstrdup (169,072,246 samples, 0.23%)</title><rect x="1478.1" y="261" width="3.7" height="15.0" fill="rgb(214,41,9)" rx="2" ry="2" /> | |
| <text x="1481.11" y="271.5" ></text> | |
| </g> | |
| <g > | |
| <title>[libxcb.so.1.1.0] (83,578,101 samples, 0.12%)</title><rect x="26.9" y="517" width="1.9" height="15.0" fill="rgb(226,98,23)" rx="2" ry="2" /> | |
| <text x="29.93" y="527.5" ></text> | |
| </g> | |
| <g > | |
| <title>dsp_read (2,246,374,152 samples, 3.11%)</title><rect x="416.1" y="565" width="49.1" height="15.0" fill="rgb(225,96,23)" rx="2" ry="2" /> | |
| <text x="419.15" y="575.5" >dsp_..</text> | |
| </g> | |
| <g > | |
| <title>invoke_syscall.constprop.0 (641,648,081 samples, 0.89%)</title><rect x="1462.5" y="261" width="14.0" height="15.0" fill="rgb(244,183,43)" rx="2" ry="2" /> | |
| <text x="1465.50" y="271.5" ></text> | |
| </g> | |
| <g > | |
| <title>[libxcb.so.1.1.0] (22,238,890 samples, 0.03%)</title><rect x="24.8" y="485" width="0.5" height="15.0" fill="rgb(226,98,23)" rx="2" ry="2" /> | |
| <text x="27.81" y="495.5" ></text> | |
| </g> | |
| <g > | |
| <title>do_el0_svc (194,335,693 samples, 0.27%)</title><rect x="1477.8" y="341" width="4.2" height="15.0" fill="rgb(218,60,14)" rx="2" ry="2" /> | |
| <text x="1480.80" y="351.5" ></text> | |
| </g> | |
| <g > | |
| <title>pa_memexport_put (5,089,143 samples, 0.01%)</title><rect x="1588.6" y="597" width="0.1" height="15.0" fill="rgb(242,173,41)" rx="2" ry="2" /> | |
| <text x="1591.57" y="607.5" ></text> | |
| </g> | |
| <g > | |
| <title>krealloc_node_align_noprof (15,148,818 samples, 0.02%)</title><rect x="1471.8" y="101" width="0.4" height="15.0" fill="rgb(245,187,44)" rx="2" ry="2" /> | |
| <text x="1474.83" y="111.5" ></text> | |
| </g> | |
| <g > | |
| <title>do_sys_poll (6,545,657 samples, 0.01%)</title><rect x="37.5" y="293" width="0.2" height="15.0" fill="rgb(219,68,16)" rx="2" ry="2" /> | |
| <text x="40.55" y="303.5" ></text> | |
| </g> | |
| <g > | |
| <title>el0t_64_sync_handler (34,528,276 samples, 0.05%)</title><rect x="1575.2" y="421" width="0.8" height="15.0" fill="rgb(211,32,7)" rx="2" ry="2" /> | |
| <text x="1578.23" y="431.5" ></text> | |
| </g> | |
| <g > | |
| <title>config_save_file (5,900,605 samples, 0.01%)</title><rect x="1573.5" y="597" width="0.1" height="15.0" fill="rgb(244,183,43)" rx="2" ry="2" /> | |
| <text x="1576.47" y="607.5" ></text> | |
| </g> | |
| <g > | |
| <title>retro_cdimage_read (7,041,139 samples, 0.01%)</title><rect x="878.9" y="501" width="0.1" height="15.0" fill="rgb(220,71,17)" rx="2" ry="2" /> | |
| <text x="881.88" y="511.5" ></text> | |
| </g> | |
| <g > | |
| <title>kmalloc_reserve (4,916,924 samples, 0.01%)</title><rect x="1582.9" y="245" width="0.1" height="15.0" fill="rgb(240,163,39)" rx="2" ry="2" /> | |
| <text x="1585.90" y="255.5" ></text> | |
| </g> | |
| <g > | |
| <title>do_el0_svc (5,039,085 samples, 0.01%)</title><rect x="28.6" y="373" width="0.1" height="15.0" fill="rgb(218,60,14)" rx="2" ry="2" /> | |
| <text x="31.60" y="383.5" ></text> | |
| </g> | |
| <g > | |
| <title>_XSend (80,908,846 samples, 0.11%)</title><rect x="1582.1" y="597" width="1.8" height="15.0" fill="rgb(236,143,34)" rx="2" ry="2" /> | |
| <text x="1585.15" y="607.5" ></text> | |
| </g> | |
| <g > | |
| <title>[libc.so.6] (15,265,569 samples, 0.02%)</title><rect x="33.3" y="405" width="0.3" height="15.0" fill="rgb(223,84,20)" rx="2" ry="2" /> | |
| <text x="36.31" y="415.5" ></text> | |
| </g> | |
| <g > | |
| <title>el0_svc_common.constprop.0 (10,209,977 samples, 0.01%)</title><rect x="33.4" y="325" width="0.2" height="15.0" fill="rgb(224,89,21)" rx="2" ry="2" /> | |
| <text x="36.42" y="335.5" ></text> | |
| </g> | |
| <g > | |
| <title>skb_release_data (5,085,758 samples, 0.01%)</title><rect x="32.1" y="181" width="0.1" height="15.0" fill="rgb(209,20,4)" rx="2" ry="2" /> | |
| <text x="35.06" y="191.5" ></text> | |
| </g> | |
| <g > | |
| <title>[libgallium-26.0.5-1.so] (296,031,404 samples, 0.41%)</title><rect x="1503.2" y="437" width="6.5" height="15.0" fill="rgb(216,54,12)" rx="2" ry="2" /> | |
| <text x="1506.20" y="447.5" ></text> | |
| </g> | |
| <g > | |
| <title>[libc.so.6] (12,699,669 samples, 0.02%)</title><rect x="878.6" y="421" width="0.2" height="15.0" fill="rgb(223,84,20)" rx="2" ry="2" /> | |
| <text x="881.57" y="431.5" ></text> | |
| </g> | |
| <g > | |
| <title>__poll (19,269,771 samples, 0.03%)</title><rect x="23.4" y="565" width="0.4" height="15.0" fill="rgb(250,208,49)" rx="2" ry="2" /> | |
| <text x="26.36" y="575.5" ></text> | |
| </g> | |
| <g > | |
| <title>[libc.so.6] (24,349,208 samples, 0.03%)</title><rect x="1438.2" y="469" width="0.6" height="15.0" fill="rgb(223,84,20)" rx="2" ry="2" /> | |
| <text x="1441.25" y="479.5" ></text> | |
| </g> | |
| <g > | |
| <title>do_iter_readv_writev (60,005,093 samples, 0.08%)</title><rect x="34.1" y="277" width="1.3" height="15.0" fill="rgb(221,76,18)" rx="2" ry="2" /> | |
| <text x="37.10" y="287.5" ></text> | |
| </g> | |
| <g > | |
| <title>[libX11.so.6.4.0] (18,792,377 samples, 0.03%)</title><rect x="33.3" y="501" width="0.4" height="15.0" fill="rgb(220,73,17)" rx="2" ry="2" /> | |
| <text x="36.25" y="511.5" ></text> | |
| </g> | |
| <g > | |
| <title>[libX11.so.6.4.0] (26,581,402 samples, 0.04%)</title><rect x="24.8" y="533" width="0.5" height="15.0" fill="rgb(220,73,17)" rx="2" ry="2" /> | |
| <text x="27.76" y="543.5" ></text> | |
| </g> | |
| <g > | |
| <title>el0_svc_common.constprop.0 (34,463,605 samples, 0.05%)</title><rect x="27.7" y="341" width="0.8" height="15.0" fill="rgb(224,89,21)" rx="2" ry="2" /> | |
| <text x="30.72" y="351.5" ></text> | |
| </g> | |
| <g > | |
| <title>__arm64_sys_recvmsg (10,808,881 samples, 0.01%)</title><rect x="29.1" y="309" width="0.2" height="15.0" fill="rgb(236,144,34)" rx="2" ry="2" /> | |
| <text x="32.10" y="319.5" ></text> | |
| </g> | |
| <g > | |
| <title>__sys_recvmsg (40,503,606 samples, 0.06%)</title><rect x="36.4" y="277" width="0.9" height="15.0" fill="rgb(252,216,51)" rx="2" ry="2" /> | |
| <text x="39.38" y="287.5" ></text> | |
| </g> | |
| <g > | |
| <title>[libgallium-26.0.5-1.so] (927,136,853 samples, 1.28%)</title><rect x="1456.4" y="405" width="20.2" height="15.0" fill="rgb(216,54,12)" rx="2" ry="2" /> | |
| <text x="1459.37" y="415.5" ></text> | |
| </g> | |
| <g > | |
| <title>invoke_syscall.constprop.0 (13,910,330 samples, 0.02%)</title><rect x="1589.4" y="469" width="0.3" height="15.0" fill="rgb(244,183,43)" rx="2" ry="2" /> | |
| <text x="1592.41" y="479.5" ></text> | |
| </g> | |
| <g > | |
| <title>kmem_cache_free (6,414,457 samples, 0.01%)</title><rect x="1585.3" y="229" width="0.1" height="15.0" fill="rgb(254,225,53)" rx="2" ry="2" /> | |
| <text x="1588.26" y="239.5" ></text> | |
| </g> | |
| <g > | |
| <title>__arm64_sys_recvmsg (98,066,902 samples, 0.14%)</title><rect x="1584.8" y="373" width="2.1" height="15.0" fill="rgb(236,144,34)" rx="2" ry="2" /> | |
| <text x="1587.79" y="383.5" ></text> | |
| </g> | |
| <g > | |
| <title>gl_glsl_set_mvp (14,518,864 samples, 0.02%)</title><rect x="1560.6" y="549" width="0.4" height="15.0" fill="rgb(221,74,17)" rx="2" ry="2" /> | |
| <text x="1563.64" y="559.5" ></text> | |
| </g> | |
| <g > | |
| <title>[libgallium-26.0.5-1.so] (1,769,073,193 samples, 2.45%)</title><rect x="1443.7" y="453" width="38.6" height="15.0" fill="rgb(216,54,12)" rx="2" ry="2" /> | |
| <text x="1446.69" y="463.5" >[li..</text> | |
| </g> | |
| <g > | |
| <title>__kmalloc_node_track_caller_noprof (6,555,452 samples, 0.01%)</title><rect x="1471.9" y="85" width="0.1" height="15.0" fill="rgb(224,89,21)" rx="2" ry="2" /> | |
| <text x="1474.87" y="95.5" ></text> | |
| </g> | |
| <g > | |
| <title>[libc.so.6] (24,097,074 samples, 0.03%)</title><rect x="27.0" y="421" width="0.5" height="15.0" fill="rgb(223,84,20)" rx="2" ry="2" /> | |
| <text x="30.02" y="431.5" ></text> | |
| </g> | |
| <g > | |
| <title>unlink (37,946,786 samples, 0.05%)</title><rect x="10.7" y="581" width="0.8" height="15.0" fill="rgb(219,66,15)" rx="2" ry="2" /> | |
| <text x="13.67" y="591.5" ></text> | |
| </g> | |
| <g > | |
| <title>[libc.so.6] (15,111,080 samples, 0.02%)</title><rect x="1456.0" y="373" width="0.4" height="15.0" fill="rgb(223,84,20)" rx="2" ry="2" /> | |
| <text x="1459.04" y="383.5" ></text> | |
| </g> | |
| <g > | |
| <title>[libc.so.6] (37,359,050 samples, 0.05%)</title><rect x="1575.2" y="485" width="0.8" height="15.0" fill="rgb(223,84,20)" rx="2" ry="2" /> | |
| <text x="1578.17" y="495.5" ></text> | |
| </g> | |
| <g > | |
| <title>__arm64_sys_ppoll (5,638,176 samples, 0.01%)</title><rect x="32.8" y="325" width="0.1" height="15.0" fill="rgb(230,115,27)" rx="2" ry="2" /> | |
| <text x="35.78" y="335.5" ></text> | |
| </g> | |
| <g > | |
| <title>do_iter_readv_writev (123,013,664 samples, 0.17%)</title><rect x="1483.6" y="341" width="2.7" height="15.0" fill="rgb(221,76,18)" rx="2" ry="2" /> | |
| <text x="1486.60" y="351.5" ></text> | |
| </g> | |
| <g > | |
| <title>msm_devfreq_idle_work (227,363,233 samples, 0.31%)</title><rect x="1468.2" y="197" width="5.0" height="15.0" fill="rgb(245,184,44)" rx="2" ry="2" /> | |
| <text x="1471.24" y="207.5" ></text> | |
| </g> | |
| <g > | |
| <title>el0t_64_sync_handler (117,018,302 samples, 0.16%)</title><rect x="1584.4" y="453" width="2.6" height="15.0" fill="rgb(211,32,7)" rx="2" ry="2" /> | |
| <text x="1587.42" y="463.5" ></text> | |
| </g> | |
| <g > | |
| <title>el0t_64_sync (75,260,195 samples, 0.10%)</title><rect x="33.9" y="421" width="1.6" height="15.0" fill="rgb(217,56,13)" rx="2" ry="2" /> | |
| <text x="36.88" y="431.5" ></text> | |
| </g> | |
| <g > | |
| <title>[libc.so.6] (5,576,138 samples, 0.01%)</title><rect x="1560.5" y="485" width="0.1" height="15.0" fill="rgb(223,84,20)" rx="2" ry="2" /> | |
| <text x="1563.52" y="495.5" ></text> | |
| </g> | |
| <g > | |
| <title>el0t_64_sync_handler (38,275,360 samples, 0.05%)</title><rect x="1427.1" y="421" width="0.8" height="15.0" fill="rgb(211,32,7)" rx="2" ry="2" /> | |
| <text x="1430.09" y="431.5" ></text> | |
| </g> | |
| <g > | |
| <title>[libc.so.6] (7,247,467 samples, 0.01%)</title><rect x="1554.0" y="405" width="0.1" height="15.0" fill="rgb(223,84,20)" rx="2" ry="2" /> | |
| <text x="1556.99" y="415.5" ></text> | |
| </g> | |
| <g > | |
| <title>[libgallium-26.0.5-1.so] (107,583,310 samples, 0.15%)</title><rect x="1510.0" y="485" width="2.3" height="15.0" fill="rgb(216,54,12)" rx="2" ry="2" /> | |
| <text x="1512.98" y="495.5" ></text> | |
| </g> | |
| <g > | |
| <title>shmem_file_read_iter (10,099,871 samples, 0.01%)</title><rect x="878.0" y="261" width="0.3" height="15.0" fill="rgb(231,123,29)" rx="2" ry="2" /> | |
| <text x="881.04" y="271.5" ></text> | |
| </g> | |
| <g > | |
| <title>__sys_recvmsg (32,981,333 samples, 0.05%)</title><rect x="27.7" y="293" width="0.7" height="15.0" fill="rgb(252,216,51)" rx="2" ry="2" /> | |
| <text x="30.72" y="303.5" ></text> | |
| </g> | |
| <g > | |
| <title>[libc.so.6] (18,079,529 samples, 0.02%)</title><rect x="1588.7" y="533" width="0.4" height="15.0" fill="rgb(223,84,20)" rx="2" ry="2" /> | |
| <text x="1591.73" y="543.5" ></text> | |
| </g> | |
| <g > | |
| <title>iput (37,946,786 samples, 0.05%)</title><rect x="10.7" y="437" width="0.8" height="15.0" fill="rgb(206,7,1)" rx="2" ry="2" /> | |
| <text x="13.67" y="447.5" ></text> | |
| </g> | |
| <g > | |
| <title>[libxcb.so.1.1.0] (35,089,844 samples, 0.05%)</title><rect x="1581.2" y="549" width="0.8" height="15.0" fill="rgb(226,98,23)" rx="2" ry="2" /> | |
| <text x="1584.23" y="559.5" ></text> | |
| </g> | |
| <g > | |
| <title>el0_svc_common.constprop.0 (5,039,085 samples, 0.01%)</title><rect x="28.6" y="357" width="0.1" height="15.0" fill="rgb(224,89,21)" rx="2" ry="2" /> | |
| <text x="31.60" y="367.5" ></text> | |
| </g> | |
| <g > | |
| <title>[libc.so.6] (40,449,203 samples, 0.06%)</title><rect x="1427.0" y="453" width="0.9" height="15.0" fill="rgb(223,84,20)" rx="2" ry="2" /> | |
| <text x="1430.04" y="463.5" ></text> | |
| </g> | |
| <g > | |
| <title>[libc.so.6] (7,123,896 samples, 0.01%)</title><rect x="1505.0" y="389" width="0.1" height="15.0" fill="rgb(223,84,20)" rx="2" ry="2" /> | |
| <text x="1507.96" y="399.5" ></text> | |
| </g> | |
| <g > | |
| <title>drm_sched_free_job_work (95,218,407 samples, 0.13%)</title><rect x="1468.5" y="165" width="2.1" height="15.0" fill="rgb(221,73,17)" rx="2" ry="2" /> | |
| <text x="1471.54" y="175.5" ></text> | |
| </g> | |
| <g > | |
| <title>do_el0_svc (19,330,119 samples, 0.03%)</title><rect x="27.1" y="357" width="0.4" height="15.0" fill="rgb(218,60,14)" rx="2" ry="2" /> | |
| <text x="30.11" y="367.5" ></text> | |
| </g> | |
| <g > | |
| <title>mreadw (3,503,346,973 samples, 4.84%)</title><rect x="787.2" y="597" width="76.5" height="15.0" fill="rgb(229,111,26)" rx="2" ry="2" /> | |
| <text x="790.16" y="607.5" >mreadw</text> | |
| </g> | |
| <g > | |
| <title>[libc.so.6] (12,910,912 samples, 0.02%)</title><rect x="1477.0" y="405" width="0.2" height="15.0" fill="rgb(223,84,20)" rx="2" ry="2" /> | |
| <text x="1479.95" y="415.5" ></text> | |
| </g> | |
| <g > | |
| <title>invoke_syscall.constprop.0 (12,811,620 samples, 0.02%)</title><rect x="878.0" y="325" width="0.3" height="15.0" fill="rgb(244,183,43)" rx="2" ry="2" /> | |
| <text x="881.00" y="335.5" ></text> | |
| </g> | |
| <g > | |
| <title>skb_release_data (7,159,122 samples, 0.01%)</title><rect x="28.0" y="181" width="0.1" height="15.0" fill="rgb(209,20,4)" rx="2" ry="2" /> | |
| <text x="30.98" y="191.5" ></text> | |
| </g> | |
| <g > | |
| <title>anon_pipe_write (6,388,737 samples, 0.01%)</title><rect x="13.4" y="309" width="0.2" height="15.0" fill="rgb(208,15,3)" rx="2" ry="2" /> | |
| <text x="16.42" y="319.5" ></text> | |
| </g> | |
| <g > | |
| <title>irq_exit_rcu (10,620,955 samples, 0.01%)</title><rect x="481.2" y="501" width="0.2" height="15.0" fill="rgb(254,227,54)" rx="2" ry="2" /> | |
| <text x="484.18" y="511.5" ></text> | |
| </g> | |
| <g > | |
| <title>__arm64_sys_recvmsg (33,723,680 samples, 0.05%)</title><rect x="27.7" y="309" width="0.8" height="15.0" fill="rgb(236,144,34)" rx="2" ry="2" /> | |
| <text x="30.72" y="319.5" ></text> | |
| </g> | |
| <g > | |
| <title>[libc.so.6] (14,881,477 samples, 0.02%)</title><rect x="878.0" y="437" width="0.3" height="15.0" fill="rgb(223,84,20)" rx="2" ry="2" /> | |
| <text x="880.95" y="447.5" ></text> | |
| </g> | |
| <g > | |
| <title>_XSend (100,362,282 samples, 0.14%)</title><rect x="33.7" y="517" width="2.2" height="15.0" fill="rgb(236,143,34)" rx="2" ry="2" /> | |
| <text x="36.69" y="527.5" ></text> | |
| </g> | |
| <g > | |
| <title>sock_recvmsg (30,824,712 samples, 0.04%)</title><rect x="27.7" y="245" width="0.7" height="15.0" fill="rgb(206,5,1)" rx="2" ry="2" /> | |
| <text x="30.72" y="255.5" ></text> | |
| </g> | |
| <g > | |
| <title>__slab_alloc.isra.0 (5,843,627 samples, 0.01%)</title><rect x="1470.3" y="53" width="0.1" height="15.0" fill="rgb(205,0,0)" rx="2" ry="2" /> | |
| <text x="1473.27" y="63.5" ></text> | |
| </g> | |
| <g > | |
| <title>__poll (22,041,150 samples, 0.03%)</title><rect x="1589.2" y="613" width="0.5" height="15.0" fill="rgb(250,208,49)" rx="2" ry="2" /> | |
| <text x="1592.23" y="623.5" ></text> | |
| </g> | |
| <g > | |
| <title>do_el0_svc (44,164,023 samples, 0.06%)</title><rect x="1582.5" y="453" width="1.0" height="15.0" fill="rgb(218,60,14)" rx="2" ry="2" /> | |
| <text x="1585.49" y="463.5" ></text> | |
| </g> | |
| <g > | |
| <title>el0_svc (17,124,182 samples, 0.02%)</title><rect x="32.6" y="389" width="0.3" height="15.0" fill="rgb(244,183,43)" rx="2" ry="2" /> | |
| <text x="35.56" y="399.5" ></text> | |
| </g> | |
| <g > | |
| <title>pa_detect_fork (13,060,535 samples, 0.02%)</title><rect x="14.6" y="549" width="0.3" height="15.0" fill="rgb(243,176,42)" rx="2" ry="2" /> | |
| <text x="17.58" y="559.5" ></text> | |
| </g> | |
| <g > | |
| <title>call_on_irq_stack (11,689,935 samples, 0.02%)</title><rect x="783.2" y="485" width="0.2" height="15.0" fill="rgb(239,156,37)" rx="2" ry="2" /> | |
| <text x="786.18" y="495.5" ></text> | |
| </g> | |
| <g > | |
| <title>do_sys_poll (10,739,002 samples, 0.01%)</title><rect x="1486.8" y="357" width="0.2" height="15.0" fill="rgb(219,68,16)" rx="2" ry="2" /> | |
| <text x="1489.75" y="367.5" ></text> | |
| </g> | |
| <g > | |
| <title>_IO_file_underflow (15,620,551 samples, 0.02%)</title><rect x="877.9" y="469" width="0.4" height="15.0" fill="rgb(209,21,5)" rx="2" ry="2" /> | |
| <text x="880.94" y="479.5" ></text> | |
| </g> | |
| <g > | |
| <title>el0_svc_common.constprop.0 (16,655,783 samples, 0.02%)</title><rect x="13.3" y="389" width="0.3" height="15.0" fill="rgb(224,89,21)" rx="2" ry="2" /> | |
| <text x="16.28" y="399.5" ></text> | |
| </g> | |
| <g > | |
| <title>do_el0_svc (141,548,279 samples, 0.20%)</title><rect x="1483.4" y="437" width="3.1" height="15.0" fill="rgb(218,60,14)" rx="2" ry="2" /> | |
| <text x="1486.39" y="447.5" ></text> | |
| </g> | |
| <g > | |
| <title>sock_alloc_send_pskb (60,826,269 samples, 0.08%)</title><rect x="1484.1" y="277" width="1.4" height="15.0" fill="rgb(210,26,6)" rx="2" ry="2" /> | |
| <text x="1487.13" y="287.5" ></text> | |
| </g> | |
| <g > | |
| <title>[libc.so.6] (11,465,637 samples, 0.02%)</title><rect x="10.0" y="741" width="0.3" height="15.0" fill="rgb(223,84,20)" rx="2" ry="2" /> | |
| <text x="13.00" y="751.5" ></text> | |
| </g> | |
| <g > | |
| <title>do_writev (49,260,288 samples, 0.07%)</title><rect x="25.5" y="325" width="1.0" height="15.0" fill="rgb(239,157,37)" rx="2" ry="2" /> | |
| <text x="28.46" y="335.5" ></text> | |
| </g> | |
| <g > | |
| <title>[libxcb.so.1.1.0] (184,323,997 samples, 0.25%)</title><rect x="1483.1" y="565" width="4.1" height="15.0" fill="rgb(226,98,23)" rx="2" ry="2" /> | |
| <text x="1486.13" y="575.5" ></text> | |
| </g> | |
| <g > | |
| <title>el0t_64_sync (13,731,170 samples, 0.02%)</title><rect x="1576.2" y="453" width="0.3" height="15.0" fill="rgb(217,56,13)" rx="2" ry="2" /> | |
| <text x="1579.24" y="463.5" ></text> | |
| </g> | |
| <g > | |
| <title>invoke_syscall.constprop.0 (17,198,744 samples, 0.02%)</title><rect x="1581.6" y="389" width="0.4" height="15.0" fill="rgb(244,183,43)" rx="2" ry="2" /> | |
| <text x="1584.60" y="399.5" ></text> | |
| </g> | |
| <g > | |
| <title>[libc.so.6] (35,000,759 samples, 0.05%)</title><rect x="1569.6" y="549" width="0.7" height="15.0" fill="rgb(223,84,20)" rx="2" ry="2" /> | |
| <text x="1572.57" y="559.5" ></text> | |
| </g> | |
| <g > | |
| <title>sock_wfree (4,922,235 samples, 0.01%)</title><rect x="32.2" y="149" width="0.1" height="15.0" fill="rgb(240,162,38)" rx="2" ry="2" /> | |
| <text x="35.20" y="159.5" ></text> | |
| </g> | |
| <g > | |
| <title>gfx_animation_update (4,977,688 samples, 0.01%)</title><rect x="1574.3" y="645" width="0.1" height="15.0" fill="rgb(231,121,29)" rx="2" ry="2" /> | |
| <text x="1577.26" y="655.5" ></text> | |
| </g> | |
| <g > | |
| <title>[libc.so.6] (10,566,705 samples, 0.01%)</title><rect x="26.6" y="453" width="0.2" height="15.0" fill="rgb(223,84,20)" rx="2" ry="2" /> | |
| <text x="29.60" y="463.5" ></text> | |
| </g> | |
| <g > | |
| <title>msm_gem_vm_sm_step_unmap (5,117,235 samples, 0.01%)</title><rect x="1479.0" y="229" width="0.1" height="15.0" fill="rgb(219,67,16)" rx="2" ry="2" /> | |
| <text x="1481.99" y="239.5" ></text> | |
| </g> | |
| <g > | |
| <title>alloc_skb_with_frags (13,737,638 samples, 0.02%)</title><rect x="1582.9" y="277" width="0.3" height="15.0" fill="rgb(228,107,25)" rx="2" ry="2" /> | |
| <text x="1585.85" y="287.5" ></text> | |
| </g> | |
| <g > | |
| <title>retro_task_threaded_gather (7,715,327 samples, 0.01%)</title><rect x="11.5" y="677" width="0.2" height="15.0" fill="rgb(237,150,35)" rx="2" ry="2" /> | |
| <text x="14.51" y="687.5" ></text> | |
| </g> | |
| <g > | |
| <title>[libc.so.6] (52,702,137 samples, 0.07%)</title><rect x="36.1" y="421" width="1.2" height="15.0" fill="rgb(223,84,20)" rx="2" ry="2" /> | |
| <text x="39.14" y="431.5" ></text> | |
| </g> | |
| <g > | |
| <title>[libc.so.6] (14,476,063 samples, 0.02%)</title><rect x="1576.2" y="501" width="0.3" height="15.0" fill="rgb(223,84,20)" rx="2" ry="2" /> | |
| <text x="1579.22" y="511.5" ></text> | |
| </g> | |
| <g > | |
| <title>skb_copy_datagram_iter (6,573,786 samples, 0.01%)</title><rect x="28.2" y="181" width="0.2" height="15.0" fill="rgb(245,188,45)" rx="2" ry="2" /> | |
| <text x="31.25" y="191.5" ></text> | |
| </g> | |
| <g > | |
| <title>unix_stream_read_actor (6,573,786 samples, 0.01%)</title><rect x="28.2" y="197" width="0.2" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" /> | |
| <text x="31.25" y="207.5" ></text> | |
| </g> | |
| <g > | |
| <title>__poll (12,021,687 samples, 0.02%)</title><rect x="26.6" y="485" width="0.2" height="15.0" fill="rgb(250,208,49)" rx="2" ry="2" /> | |
| <text x="29.57" y="495.5" ></text> | |
| </g> | |
| <g > | |
| <title>vfs_writev (38,449,486 samples, 0.05%)</title><rect x="1582.6" y="373" width="0.8" height="15.0" fill="rgb(238,153,36)" rx="2" ry="2" /> | |
| <text x="1585.57" y="383.5" ></text> | |
| </g> | |
| <g > | |
| <title>utf8_walk (31,357,979 samples, 0.04%)</title><rect x="1561.0" y="549" width="0.6" height="15.0" fill="rgb(239,160,38)" rx="2" ry="2" /> | |
| <text x="1563.96" y="559.5" ></text> | |
| </g> | |
| <g > | |
| <title>[libc.so.6] (150,137,831 samples, 0.21%)</title><rect x="1483.2" y="517" width="3.3" height="15.0" fill="rgb(223,84,20)" rx="2" ry="2" /> | |
| <text x="1486.20" y="527.5" ></text> | |
| </g> | |
| <g > | |
| <title>do_iter_readv_writev (32,605,764 samples, 0.05%)</title><rect x="1582.6" y="357" width="0.7" height="15.0" fill="rgb(221,76,18)" rx="2" ry="2" /> | |
| <text x="1585.57" y="367.5" ></text> | |
| </g> | |
| <g > | |
| <title>xcb_wait_for_reply64 (174,780,587 samples, 0.24%)</title><rect x="1584.0" y="597" width="3.8" height="15.0" fill="rgb(212,36,8)" rx="2" ry="2" /> | |
| <text x="1587.02" y="607.5" ></text> | |
| </g> | |
| <g > | |
| <title>[libc.so.6] (6,501,823 samples, 0.01%)</title><rect x="1589.9" y="581" width="0.1" height="15.0" fill="rgb(223,84,20)" rx="2" ry="2" /> | |
| <text x="1592.86" y="591.5" ></text> | |
| </g> | |
| <g > | |
| <title>drm_exec_prepare_array (17,408,598 samples, 0.02%)</title><rect x="1480.4" y="213" width="0.4" height="15.0" fill="rgb(207,10,2)" rx="2" ry="2" /> | |
| <text x="1483.40" y="223.5" ></text> | |
| </g> | |
| <g > | |
| <title>unix_stream_recvmsg (7,729,408 samples, 0.01%)</title><rect x="1581.6" y="293" width="0.2" height="15.0" fill="rgb(251,213,51)" rx="2" ry="2" /> | |
| <text x="1584.65" y="303.5" ></text> | |
| </g> | |
| <g > | |
| <title>opera_xbus_fifo_get_data (152,811,935 samples, 0.21%)</title><rect x="875.2" y="565" width="3.3" height="15.0" fill="rgb(216,54,13)" rx="2" ry="2" /> | |
| <text x="878.16" y="575.5" ></text> | |
| </g> | |
| <g > | |
| <title>do_writev (138,661,840 samples, 0.19%)</title><rect x="1483.4" y="373" width="3.0" height="15.0" fill="rgb(239,157,37)" rx="2" ry="2" /> | |
| <text x="1486.42" y="383.5" ></text> | |
| </g> | |
| <g > | |
| <title>drm_sched_free_job_work (34,454,285 samples, 0.05%)</title><rect x="1479.5" y="213" width="0.8" height="15.0" fill="rgb(221,73,17)" rx="2" ry="2" /> | |
| <text x="1482.50" y="223.5" ></text> | |
| </g> | |
| <g > | |
| <title>[libgallium-26.0.5-1.so] (2,491,255,947 samples, 3.44%)</title><rect x="1428.6" y="549" width="54.4" height="15.0" fill="rgb(216,54,12)" rx="2" ry="2" /> | |
| <text x="1431.55" y="559.5" >[libg..</text> | |
| </g> | |
| <g > | |
| <title>__do_softirq (10,620,955 samples, 0.01%)</title><rect x="481.2" y="421" width="0.2" height="15.0" fill="rgb(246,191,45)" rx="2" ry="2" /> | |
| <text x="484.18" y="431.5" ></text> | |
| </g> | |
| <g > | |
| <title>invoke_syscall.constprop.0 (5,039,085 samples, 0.01%)</title><rect x="28.6" y="341" width="0.1" height="15.0" fill="rgb(244,183,43)" rx="2" ry="2" /> | |
| <text x="31.60" y="351.5" ></text> | |
| </g> | |
| <g > | |
| <title>invoke_syscall.constprop.0 (140,819,295 samples, 0.19%)</title><rect x="1483.4" y="405" width="3.1" height="15.0" fill="rgb(244,183,43)" rx="2" ry="2" /> | |
| <text x="1486.40" y="415.5" ></text> | |
| </g> | |
| <g > | |
| <title>__libc_start_main (72,243,071,772 samples, 99.86%)</title><rect x="10.3" y="725" width="1577.8" height="15.0" fill="rgb(236,142,34)" rx="2" ry="2" /> | |
| <text x="13.25" y="735.5" >__libc_start_main</text> | |
| </g> | |
| <g > | |
| <title>el0_svc_common.constprop.0 (19,415,135 samples, 0.03%)</title><rect x="1575.6" y="373" width="0.4" height="15.0" fill="rgb(224,89,21)" rx="2" ry="2" /> | |
| <text x="1578.56" y="383.5" ></text> | |
| </g> | |
| <g > | |
| <title>el0_svc (17,969,505 samples, 0.02%)</title><rect x="37.3" y="373" width="0.4" height="15.0" fill="rgb(244,183,43)" rx="2" ry="2" /> | |
| <text x="40.33" y="383.5" ></text> | |
| </g> | |
| <g > | |
| <title>opera_xbus_fifo_set_cmd (26,097,156 samples, 0.04%)</title><rect x="878.5" y="565" width="0.6" height="15.0" fill="rgb(248,199,47)" rx="2" ry="2" /> | |
| <text x="881.49" y="575.5" ></text> | |
| </g> | |
| <g > | |
| <title>[libgallium-26.0.5-1.so] (2,456,030,755 samples, 3.39%)</title><rect x="1429.2" y="517" width="53.6" height="15.0" fill="rgb(216,54,12)" rx="2" ry="2" /> | |
| <text x="1432.18" y="527.5" >[libg..</text> | |
| </g> | |
| <g > | |
| <title>el0t_64_sync (37,946,786 samples, 0.05%)</title><rect x="10.7" y="565" width="0.8" height="15.0" fill="rgb(217,56,13)" rx="2" ry="2" /> | |
| <text x="13.67" y="575.5" ></text> | |
| </g> | |
| <g > | |
| <title>kmalloc_reserve (7,821,884 samples, 0.01%)</title><rect x="25.7" y="181" width="0.1" height="15.0" fill="rgb(240,163,39)" rx="2" ry="2" /> | |
| <text x="28.67" y="191.5" ></text> | |
| </g> | |
| <g > | |
| <title>[libc.so.6] (19,433,424 samples, 0.03%)</title><rect x="37.3" y="437" width="0.4" height="15.0" fill="rgb(223,84,20)" rx="2" ry="2" /> | |
| <text x="40.29" y="447.5" ></text> | |
| </g> | |
| <g > | |
| <title>[libc.so.6] (10,566,705 samples, 0.01%)</title><rect x="26.6" y="469" width="0.2" height="15.0" fill="rgb(223,84,20)" rx="2" ry="2" /> | |
| <text x="29.60" y="479.5" ></text> | |
| </g> | |
| <g > | |
| <title>drmCommandWriteRead (658,932,593 samples, 0.91%)</title><rect x="1462.2" y="389" width="14.4" height="15.0" fill="rgb(252,218,52)" rx="2" ry="2" /> | |
| <text x="1465.18" y="399.5" ></text> | |
| </g> | |
| <g > | |
| <title>el0_svc_common.constprop.0 (9,458,836 samples, 0.01%)</title><rect x="1428.2" y="405" width="0.2" height="15.0" fill="rgb(224,89,21)" rx="2" ry="2" /> | |
| <text x="1431.21" y="415.5" ></text> | |
| </g> | |
| <g > | |
| <title>refill_obj_stock (5,875,344 samples, 0.01%)</title><rect x="26.0" y="133" width="0.1" height="15.0" fill="rgb(239,160,38)" rx="2" ry="2" /> | |
| <text x="28.97" y="143.5" ></text> | |
| </g> | |
| <g > | |
| <title>el0t_64_sync (42,260,418 samples, 0.06%)</title><rect x="1511.2" y="357" width="0.9" height="15.0" fill="rgb(217,56,13)" rx="2" ry="2" /> | |
| <text x="1514.17" y="367.5" ></text> | |
| </g> | |
| <g > | |
| <title>dsp_read (7,611,956 samples, 0.01%)</title><rect x="70.4" y="581" width="0.1" height="15.0" fill="rgb(225,96,23)" rx="2" ry="2" /> | |
| <text x="73.37" y="591.5" ></text> | |
| </g> | |
| <g > | |
| <title>threaded-ml (87,973,133 samples, 0.12%)</title><rect x="1588.1" y="757" width="1.9" height="15.0" fill="rgb(239,160,38)" rx="2" ry="2" /> | |
| <text x="1591.08" y="767.5" ></text> | |
| </g> | |
| <g > | |
| <title>ww_mutex_lock_interruptible (31,527,805 samples, 0.04%)</title><rect x="1472.3" y="133" width="0.6" height="15.0" fill="rgb(248,202,48)" rx="2" ry="2" /> | |
| <text x="1475.25" y="143.5" ></text> | |
| </g> | |
| <g > | |
| <title>gl2_free (5,477,439 samples, 0.01%)</title><rect x="10.5" y="581" width="0.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> | |
| <text x="13.47" y="591.5" ></text> | |
| </g> | |
| <g > | |
| <title>[libc.so.6] (20,315,758 samples, 0.03%)</title><rect x="1428.0" y="517" width="0.4" height="15.0" fill="rgb(223,84,20)" rx="2" ry="2" /> | |
| <text x="1430.97" y="527.5" ></text> | |
| </g> | |
| <g > | |
| <title>input_driver_collect_system_input (173,484,020 samples, 0.24%)</title><rect x="1576.7" y="645" width="3.8" height="15.0" fill="rgb(245,185,44)" rx="2" ry="2" /> | |
| <text x="1579.69" y="655.5" ></text> | |
| </g> | |
| <g > | |
| <title>[libgallium-26.0.5-1.so] (2,404,246,739 samples, 3.32%)</title><rect x="1430.3" y="501" width="52.5" height="15.0" fill="rgb(216,54,12)" rx="2" ry="2" /> | |
| <text x="1433.27" y="511.5" >[libg..</text> | |
| </g> | |
| <g > | |
| <title>pa_write (18,079,529 samples, 0.02%)</title><rect x="1588.7" y="565" width="0.4" height="15.0" fill="rgb(214,43,10)" rx="2" ry="2" /> | |
| <text x="1591.73" y="575.5" ></text> | |
| </g> | |
| <g > | |
| <title>el0t_64_sync (18,084,731 samples, 0.02%)</title><rect x="1583.5" y="485" width="0.4" height="15.0" fill="rgb(217,56,13)" rx="2" ry="2" /> | |
| <text x="1586.50" y="495.5" ></text> | |
| </g> | |
| <g > | |
| <title>handle_softirqs (11,689,935 samples, 0.02%)</title><rect x="783.2" y="437" width="0.2" height="15.0" fill="rgb(238,156,37)" rx="2" ry="2" /> | |
| <text x="786.18" y="447.5" ></text> | |
| </g> | |
| <g > | |
| <title>sock_def_readable (18,669,795 samples, 0.03%)</title><rect x="30.8" y="229" width="0.4" height="15.0" fill="rgb(216,54,13)" rx="2" ry="2" /> | |
| <text x="33.76" y="239.5" ></text> | |
| </g> | |
| <g > | |
| <title>el0t_64_sync_handler (147,252,907 samples, 0.20%)</title><rect x="1483.3" y="469" width="3.2" height="15.0" fill="rgb(211,32,7)" rx="2" ry="2" /> | |
| <text x="1486.26" y="479.5" ></text> | |
| </g> | |
| <g > | |
| <title>[libxcb.so.1.1.0] (85,497,818 samples, 0.12%)</title><rect x="35.9" y="501" width="1.9" height="15.0" fill="rgb(226,98,23)" rx="2" ry="2" /> | |
| <text x="38.93" y="511.5" ></text> | |
| </g> | |
| <g > | |
| <title>el0_svc (651,036,356 samples, 0.90%)</title><rect x="1462.3" y="309" width="14.2" height="15.0" fill="rgb(244,183,43)" rx="2" ry="2" /> | |
| <text x="1465.29" y="319.5" ></text> | |
| </g> | |
| <g > | |
| <title>unix_stream_recvmsg (8,419,997 samples, 0.01%)</title><rect x="1511.6" y="181" width="0.2" height="15.0" fill="rgb(251,213,51)" rx="2" ry="2" /> | |
| <text x="1514.58" y="191.5" ></text> | |
| </g> | |
| <g > | |
| <title>do_vfs_ioctl (6,492,143 samples, 0.01%)</title><rect x="1462.9" y="229" width="0.1" height="15.0" fill="rgb(227,102,24)" rx="2" ry="2" /> | |
| <text x="1465.88" y="239.5" ></text> | |
| </g> | |
| <g > | |
| <title>font_driver_render_msg (2,285,881,090 samples, 3.16%)</title><rect x="1512.6" y="613" width="49.9" height="15.0" fill="rgb(228,105,25)" rx="2" ry="2" /> | |
| <text x="1515.61" y="623.5" >font_..</text> | |
| </g> | |
| <g > | |
| <title>el0t_64_sync (29,218,614 samples, 0.04%)</title><rect x="1587.1" y="485" width="0.6" height="15.0" fill="rgb(217,56,13)" rx="2" ry="2" /> | |
| <text x="1590.08" y="495.5" ></text> | |
| </g> | |
| <g > | |
| <title>input_state_device.constprop.0 (10,866,466 samples, 0.02%)</title><rect x="38.8" y="581" width="0.2" height="15.0" fill="rgb(252,219,52)" rx="2" ry="2" /> | |
| <text x="41.79" y="591.5" ></text> | |
| </g> | |
| <g > | |
| <title>snprintf (127,345,907 samples, 0.18%)</title><rect x="1567.6" y="629" width="2.8" height="15.0" fill="rgb(253,220,52)" rx="2" ry="2" /> | |
| <text x="1570.63" y="639.5" ></text> | |
| </g> | |
| <g > | |
| <title>recvmsg (36,525,524 samples, 0.05%)</title><rect x="27.7" y="469" width="0.8" height="15.0" fill="rgb(210,25,6)" rx="2" ry="2" /> | |
| <text x="30.67" y="479.5" ></text> | |
| </g> | |
| <g > | |
| <title>kfree (5,085,758 samples, 0.01%)</title><rect x="32.1" y="149" width="0.1" height="15.0" fill="rgb(222,78,18)" rx="2" ry="2" /> | |
| <text x="35.06" y="159.5" ></text> | |
| </g> | |
| <g > | |
| <title>invoke_syscall.constprop.0 (192,130,168 samples, 0.27%)</title><rect x="1477.8" y="309" width="4.2" height="15.0" fill="rgb(244,183,43)" rx="2" ry="2" /> | |
| <text x="1480.85" y="319.5" ></text> | |
| </g> | |
| <g > | |
| <title>el0t_64_sync (31,426,349 samples, 0.04%)</title><rect x="1581.3" y="469" width="0.7" height="15.0" fill="rgb(217,56,13)" rx="2" ry="2" /> | |
| <text x="1584.31" y="479.5" ></text> | |
| </g> | |
| <g > | |
| <title>[[drm]] (17,348,836 samples, 0.02%)</title><rect x="1467.6" y="165" width="0.4" height="15.0" fill="rgb(249,205,49)" rx="2" ry="2" /> | |
| <text x="1470.61" y="175.5" ></text> | |
| </g> | |
| <g > | |
| <title>el0t_64_sync (13,067,232 samples, 0.02%)</title><rect x="33.4" y="389" width="0.2" height="15.0" fill="rgb(217,56,13)" rx="2" ry="2" /> | |
| <text x="36.36" y="399.5" ></text> | |
| </g> | |
| <g > | |
| <title>el0_svc (11,439,204 samples, 0.02%)</title><rect x="31.3" y="389" width="0.3" height="15.0" fill="rgb(244,183,43)" rx="2" ry="2" /> | |
| <text x="34.31" y="399.5" ></text> | |
| </g> | |
| <g > | |
| <title>el0t_64_sync_handler (75,954,845 samples, 0.10%)</title><rect x="29.6" y="421" width="1.6" height="15.0" fill="rgb(211,32,7)" rx="2" ry="2" /> | |
| <text x="32.57" y="431.5" ></text> | |
| </g> | |
| <g > | |
| <title>el0_svc_common.constprop.0 (10,736,485 samples, 0.01%)</title><rect x="1588.9" y="437" width="0.2" height="15.0" fill="rgb(224,89,21)" rx="2" ry="2" /> | |
| <text x="1591.87" y="447.5" ></text> | |
| </g> | |
| <g > | |
| <title>PPROC (2,833,652,467 samples, 3.92%)</title><rect x="1056.8" y="597" width="61.9" height="15.0" fill="rgb(207,9,2)" rx="2" ry="2" /> | |
| <text x="1059.84" y="607.5" >PPROC</text> | |
| </g> | |
| <g > | |
| <title>PPROJ_OUTPUT.isra.0 (387,646,938 samples, 0.54%)</title><rect x="1118.7" y="597" width="8.5" height="15.0" fill="rgb(249,202,48)" rx="2" ry="2" /> | |
| <text x="1121.73" y="607.5" ></text> | |
| </g> | |
| <g > | |
| <title>msm_devfreq_get_dev_status (48,189,640 samples, 0.07%)</title><rect x="1467.2" y="197" width="1.0" height="15.0" fill="rgb(224,89,21)" rx="2" ry="2" /> | |
| <text x="1470.19" y="207.5" ></text> | |
| </g> | |
| <g > | |
| <title>pa_mainloop_poll (26,222,963 samples, 0.04%)</title><rect x="1589.2" y="645" width="0.6" height="15.0" fill="rgb(225,93,22)" rx="2" ry="2" /> | |
| <text x="1592.23" y="655.5" ></text> | |
| </g> | |
| <g > | |
| <title>__arm64_sys_writev (70,958,888 samples, 0.10%)</title><rect x="34.0" y="325" width="1.5" height="15.0" fill="rgb(241,169,40)" rx="2" ry="2" /> | |
| <text x="36.96" y="335.5" ></text> | |
| </g> | |
| <g > | |
| <title>__alloc_skb (55,094,509 samples, 0.08%)</title><rect x="1484.2" y="245" width="1.2" height="15.0" fill="rgb(226,100,23)" rx="2" ry="2" /> | |
| <text x="1487.20" y="255.5" ></text> | |
| </g> | |
| <g > | |
| <title>opera_3do_process_frame (63,158,118,567 samples, 87.30%)</title><rect x="39.3" y="629" width="1379.4" height="15.0" fill="rgb(240,164,39)" rx="2" ry="2" /> | |
| <text x="42.28" y="639.5" >opera_3do_process_frame</text> | |
| </g> | |
| <g > | |
| <title>drmIoctl (218,830,230 samples, 0.30%)</title><rect x="1477.3" y="421" width="4.8" height="15.0" fill="rgb(251,215,51)" rx="2" ry="2" /> | |
| <text x="1480.28" y="431.5" ></text> | |
| </g> | |
| <g > | |
| <title>el0_svc (22,715,541 samples, 0.03%)</title><rect x="27.1" y="373" width="0.4" height="15.0" fill="rgb(244,183,43)" rx="2" ry="2" /> | |
| <text x="30.05" y="383.5" ></text> | |
| </g> | |
| <g > | |
| <title>command_event_save_config (5,900,605 samples, 0.01%)</title><rect x="1573.5" y="613" width="0.1" height="15.0" fill="rgb(243,176,42)" rx="2" ry="2" /> | |
| <text x="1576.47" y="623.5" ></text> | |
| </g> | |
| <g > | |
| <title>unix_stream_read_generic (74,880,085 samples, 0.10%)</title><rect x="1585.2" y="277" width="1.6" height="15.0" fill="rgb(244,180,43)" rx="2" ry="2" /> | |
| <text x="1588.17" y="287.5" ></text> | |
| </g> | |
| <g > | |
| <title>drm_exec_cleanup (6,381,063 samples, 0.01%)</title><rect x="1481.6" y="229" width="0.1" height="15.0" fill="rgb(223,86,20)" rx="2" ry="2" /> | |
| <text x="1484.60" y="239.5" ></text> | |
| </g> | |
| <g > | |
| <title>[libgallium-26.0.5-1.so] (19,530,678 samples, 0.03%)</title><rect x="1565.1" y="597" width="0.4" height="15.0" fill="rgb(216,54,12)" rx="2" ry="2" /> | |
| <text x="1568.10" y="607.5" ></text> | |
| </g> | |
| <g > | |
| <title>do_el0_svc (5,612,430 samples, 0.01%)</title><rect x="26.7" y="373" width="0.1" height="15.0" fill="rgb(218,60,14)" rx="2" ry="2" /> | |
| <text x="29.71" y="383.5" ></text> | |
| </g> | |
| <g > | |
| <title>__srcu_read_lock (5,199,315 samples, 0.01%)</title><rect x="1462.8" y="197" width="0.1" height="15.0" fill="rgb(227,102,24)" rx="2" ry="2" /> | |
| <text x="1465.76" y="207.5" ></text> | |
| </g> | |
| <g > | |
| <title>content_deinit (37,946,786 samples, 0.05%)</title><rect x="10.7" y="645" width="0.8" height="15.0" fill="rgb(206,4,1)" rx="2" ry="2" /> | |
| <text x="13.67" y="655.5" ></text> | |
| </g> | |
| <g > | |
| <title>pa_srbchannel_write (18,079,529 samples, 0.02%)</title><rect x="1588.7" y="597" width="0.4" height="15.0" fill="rgb(229,111,26)" rx="2" ry="2" /> | |
| <text x="1591.73" y="607.5" ></text> | |
| </g> | |
| <g > | |
| <title>vdlp_process_vdl_entry (14,412,281 samples, 0.02%)</title><rect x="1348.2" y="597" width="0.3" height="15.0" fill="rgb(251,215,51)" rx="2" ry="2" /> | |
| <text x="1351.23" y="607.5" ></text> | |
| </g> | |
| <g > | |
| <title>folios_put_refs (10,739,338 samples, 0.01%)</title><rect x="10.8" y="341" width="0.3" height="15.0" fill="rgb(254,229,54)" rx="2" ry="2" /> | |
| <text x="13.84" y="351.5" ></text> | |
| </g> | |
| <g > | |
| <title>__arm64_sys_write (15,182,227 samples, 0.02%)</title><rect x="13.3" y="357" width="0.3" height="15.0" fill="rgb(254,226,54)" rx="2" ry="2" /> | |
| <text x="16.31" y="367.5" ></text> | |
| </g> | |
| <g > | |
| <title>drain_obj_stock (10,605,929 samples, 0.01%)</title><rect x="1485.0" y="165" width="0.2" height="15.0" fill="rgb(213,38,9)" rx="2" ry="2" /> | |
| <text x="1487.98" y="175.5" ></text> | |
| </g> | |
| <g > | |
| <title>[libc.so.6] (9,429,639 samples, 0.01%)</title><rect x="1555.4" y="389" width="0.2" height="15.0" fill="rgb(223,84,20)" rx="2" ry="2" /> | |
| <text x="1558.38" y="399.5" ></text> | |
| </g> | |
| <g > | |
| <title>vm_bind_prealloc_count (11,033,514 samples, 0.02%)</title><rect x="1474.2" y="181" width="0.2" height="15.0" fill="rgb(224,91,21)" rx="2" ry="2" /> | |
| <text x="1477.17" y="191.5" ></text> | |
| </g> | |
| <g > | |
| <title>opera_madam_poke (7,927,545 samples, 0.01%)</title><rect x="900.3" y="597" width="0.1" height="15.0" fill="rgb(238,153,36)" rx="2" ry="2" /> | |
| <text x="903.25" y="607.5" ></text> | |
| </g> | |
| <g > | |
| <title>__arm64_sys_read (12,014,191 samples, 0.02%)</title><rect x="878.6" y="293" width="0.2" height="15.0" fill="rgb(227,105,25)" rx="2" ry="2" /> | |
| <text x="881.59" y="303.5" ></text> | |
| </g> | |
| <g > | |
| <title>gl2_raster_font_render_line (2,173,818,140 samples, 3.00%)</title><rect x="1514.2" y="565" width="47.4" height="15.0" fill="rgb(219,66,15)" rx="2" ry="2" /> | |
| <text x="1517.16" y="575.5" >gl2_..</text> | |
| </g> | |
| <g > | |
| <title>xcb_send_request_with_fds64 (25,870,484 samples, 0.04%)</title><rect x="1487.2" y="549" width="0.6" height="15.0" fill="rgb(239,156,37)" rx="2" ry="2" /> | |
| <text x="1490.21" y="559.5" ></text> | |
| </g> | |
| <g > | |
| <title>msm_gpu_init (6,421,162 samples, 0.01%)</title><rect x="1474.4" y="197" width="0.1" height="15.0" fill="rgb(223,86,20)" rx="2" ry="2" /> | |
| <text x="1477.41" y="207.5" ></text> | |
| </g> | |
| <g > | |
| <title>[libc.so.6] (5,833,179 samples, 0.01%)</title><rect x="1459.8" y="357" width="0.1" height="15.0" fill="rgb(223,84,20)" rx="2" ry="2" /> | |
| <text x="1462.81" y="367.5" ></text> | |
| </g> | |
| <g > | |
| <title>__sys_recvmsg (10,726,806 samples, 0.01%)</title><rect x="25.1" y="293" width="0.2" height="15.0" fill="rgb(252,216,51)" rx="2" ry="2" /> | |
| <text x="28.06" y="303.5" ></text> | |
| </g> | |
| <g > | |
| <title>__arm64_sys_ppoll (13,162,242 samples, 0.02%)</title><rect x="1589.4" y="453" width="0.3" height="15.0" fill="rgb(230,115,27)" rx="2" ry="2" /> | |
| <text x="1592.41" y="463.5" ></text> | |
| </g> | |
| <g > | |
| <title>el0t_64_sync (10,935,160 samples, 0.02%)</title><rect x="28.5" y="421" width="0.2" height="15.0" fill="rgb(217,56,13)" rx="2" ry="2" /> | |
| <text x="31.47" y="431.5" ></text> | |
| </g> | |
| <g > | |
| <title>[libc.so.6] (14,202,409 samples, 0.02%)</title><rect x="35.5" y="453" width="0.3" height="15.0" fill="rgb(223,84,20)" rx="2" ry="2" /> | |
| <text x="38.53" y="463.5" ></text> | |
| </g> | |
| <g > | |
| <title>del_dr (7,396,083 samples, 0.01%)</title><rect x="1462.7" y="229" width="0.2" height="15.0" fill="rgb(221,75,17)" rx="2" ry="2" /> | |
| <text x="1465.71" y="239.5" ></text> | |
| </g> | |
| <g > | |
| <title>[libpulsecommon-17.0.so] (12,464,157 samples, 0.02%)</title><rect x="1588.2" y="581" width="0.3" height="15.0" fill="rgb(224,88,21)" rx="2" ry="2" /> | |
| <text x="1591.19" y="591.5" ></text> | |
| </g> | |
| <g > | |
| <title>[libxcb.so.1.1.0] (16,581,171 samples, 0.02%)</title><rect x="33.3" y="469" width="0.3" height="15.0" fill="rgb(226,98,23)" rx="2" ry="2" /> | |
| <text x="36.28" y="479.5" ></text> | |
| </g> | |
| <g > | |
| <title>___sys_recvmsg (5,144,231 samples, 0.01%)</title><rect x="1576.4" y="325" width="0.1" height="15.0" fill="rgb(238,153,36)" rx="2" ry="2" /> | |
| <text x="1579.38" y="335.5" ></text> | |
| </g> | |
| <g > | |
| <title>xcb_wait_for_reply64 (88,402,936 samples, 0.12%)</title><rect x="35.9" y="517" width="1.9" height="15.0" fill="rgb(212,36,8)" rx="2" ry="2" /> | |
| <text x="38.90" y="527.5" ></text> | |
| </g> | |
| <g > | |
| <title>do_sys_poll (7,699,048 samples, 0.01%)</title><rect x="35.6" y="293" width="0.2" height="15.0" fill="rgb(219,68,16)" rx="2" ry="2" /> | |
| <text x="38.64" y="303.5" ></text> | |
| </g> | |
| <g > | |
| <title>msm_ioremap (47,173,367 samples, 0.07%)</title><rect x="1474.5" y="197" width="1.1" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" /> | |
| <text x="1477.55" y="207.5" ></text> | |
| </g> | |
| <g > | |
| <title>[libxcb.so.1.1.0] (60,457,914 samples, 0.08%)</title><rect x="36.0" y="469" width="1.3" height="15.0" fill="rgb(226,98,23)" rx="2" ry="2" /> | |
| <text x="38.97" y="479.5" ></text> | |
| </g> | |
| <g > | |
| <title>recover_worker (92,753,282 samples, 0.13%)</title><rect x="1471.2" y="181" width="2.0" height="15.0" fill="rgb(250,211,50)" rx="2" ry="2" /> | |
| <text x="1474.18" y="191.5" ></text> | |
| </g> | |
| <g > | |
| <title>dsp_write (731,141,054 samples, 1.01%)</title><rect x="465.2" y="565" width="16.0" height="15.0" fill="rgb(252,217,51)" rx="2" ry="2" /> | |
| <text x="468.21" y="575.5" ></text> | |
| </g> | |
| <g > | |
| <title>unix_stream_recvmsg (7,190,801 samples, 0.01%)</title><rect x="1575.7" y="261" width="0.1" height="15.0" fill="rgb(251,213,51)" rx="2" ry="2" /> | |
| <text x="1578.67" y="271.5" ></text> | |
| </g> | |
| <g > | |
| <title>drm_sched_entity_pop_job (72,044,658 samples, 0.10%)</title><rect x="1465.4" y="181" width="1.6" height="15.0" fill="rgb(248,202,48)" rx="2" ry="2" /> | |
| <text x="1468.40" y="191.5" ></text> | |
| </g> | |
| <g > | |
| <title>[libgallium-26.0.5-1.so] (7,321,164 samples, 0.01%)</title><rect x="1558.8" y="341" width="0.2" height="15.0" fill="rgb(216,54,12)" rx="2" ry="2" /> | |
| <text x="1561.83" y="351.5" ></text> | |
| </g> | |
| <g > | |
| <title>el0t_64_sync (18,877,134 samples, 0.03%)</title><rect x="1428.0" y="469" width="0.4" height="15.0" fill="rgb(217,56,13)" rx="2" ry="2" /> | |
| <text x="1431.00" y="479.5" ></text> | |
| </g> | |
| <g > | |
| <title>_raw_spin_unlock_irqrestore (7,226,945 samples, 0.01%)</title><rect x="1465.1" y="85" width="0.2" height="15.0" fill="rgb(228,106,25)" rx="2" ry="2" /> | |
| <text x="1468.12" y="95.5" ></text> | |
| </g> | |
| <g > | |
| <title>_XReply (190,536,082 samples, 0.26%)</title><rect x="28.8" y="549" width="4.2" height="15.0" fill="rgb(246,190,45)" rx="2" ry="2" /> | |
| <text x="31.84" y="559.5" ></text> | |
| </g> | |
| <g > | |
| <title>[libgallium-26.0.5-1.so] (12,022,877 samples, 0.02%)</title><rect x="1524.3" y="485" width="0.2" height="15.0" fill="rgb(216,54,12)" rx="2" ry="2" /> | |
| <text x="1527.27" y="495.5" ></text> | |
| </g> | |
| <g > | |
| <title>kmem_cache_alloc_node_noprof (12,480,631 samples, 0.02%)</title><rect x="25.8" y="181" width="0.3" height="15.0" fill="rgb(208,17,4)" rx="2" ry="2" /> | |
| <text x="28.84" y="191.5" ></text> | |
| </g> | |
| <g > | |
| <title>drmCommandWriteRead (220,302,527 samples, 0.30%)</title><rect x="1477.3" y="437" width="4.8" height="15.0" fill="rgb(252,218,52)" rx="2" ry="2" /> | |
| <text x="1480.28" y="447.5" ></text> | |
| </g> | |
| <g > | |
| <title>realloc (23,146,255 samples, 0.03%)</title><rect x="1560.1" y="533" width="0.5" height="15.0" fill="rgb(246,189,45)" rx="2" ry="2" /> | |
| <text x="1563.13" y="543.5" ></text> | |
| </g> | |
| <g > | |
| <title>consume_skb (15,820,448 samples, 0.02%)</title><rect x="27.9" y="197" width="0.3" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" /> | |
| <text x="30.89" y="207.5" ></text> | |
| </g> | |
| <g > | |
| <title>[libc.so.6] (16,380,781 samples, 0.02%)</title><rect x="877.9" y="485" width="0.4" height="15.0" fill="rgb(223,84,20)" rx="2" ry="2" /> | |
| <text x="880.92" y="495.5" ></text> | |
| </g> | |
| <g > | |
| <title>unix_stream_sendmsg (62,529,907 samples, 0.09%)</title><rect x="29.8" y="245" width="1.4" height="15.0" fill="rgb(240,161,38)" rx="2" ry="2" /> | |
| <text x="32.80" y="255.5" ></text> | |
| </g> | |
| <g > | |
| <title>el0t_64_sync (23,386,789 samples, 0.03%)</title><rect x="27.0" y="405" width="0.5" height="15.0" fill="rgb(217,56,13)" rx="2" ry="2" /> | |
| <text x="30.04" y="415.5" ></text> | |
| </g> | |
| <g > | |
| <title>security_file_ioctl (11,516,734 samples, 0.02%)</title><rect x="1476.2" y="229" width="0.3" height="15.0" fill="rgb(230,117,28)" rx="2" ry="2" /> | |
| <text x="1479.23" y="239.5" ></text> | |
| </g> | |
| <g > | |
| <title>[libpulse.so.0.24.3] (26,222,963 samples, 0.04%)</title><rect x="1589.2" y="629" width="0.6" height="15.0" fill="rgb(246,191,45)" rx="2" ry="2" /> | |
| <text x="1592.23" y="639.5" ></text> | |
| </g> | |
| <g > | |
| <title>drmIoctl (654,564,913 samples, 0.90%)</title><rect x="1462.2" y="373" width="14.3" height="15.0" fill="rgb(251,215,51)" rx="2" ry="2" /> | |
| <text x="1465.21" y="383.5" ></text> | |
| </g> | |
| <g > | |
| <title>invoke_syscall.constprop.0 (10,714,404 samples, 0.01%)</title><rect x="37.5" y="325" width="0.2" height="15.0" fill="rgb(244,183,43)" rx="2" ry="2" /> | |
| <text x="40.48" y="335.5" ></text> | |
| </g> | |
| <g > | |
| <title>msm_gpu_create_private_vm (21,225,065 samples, 0.03%)</title><rect x="1481.0" y="245" width="0.4" height="15.0" fill="rgb(210,26,6)" rx="2" ry="2" /> | |
| <text x="1483.95" y="255.5" ></text> | |
| </g> | |
| <g > | |
| <title>[libc.so.6] (20,794,757 samples, 0.03%)</title><rect x="24.8" y="437" width="0.5" height="15.0" fill="rgb(223,84,20)" rx="2" ry="2" /> | |
| <text x="27.84" y="447.5" ></text> | |
| </g> | |
| <g > | |
| <title>[libX11.so.6.4.0] (37,978,093 samples, 0.05%)</title><rect x="1581.2" y="581" width="0.8" height="15.0" fill="rgb(220,73,17)" rx="2" ry="2" /> | |
| <text x="1584.21" y="591.5" ></text> | |
| </g> | |
| <g > | |
| <title>[libc.so.6] (15,880,441 samples, 0.02%)</title><rect x="33.3" y="421" width="0.3" height="15.0" fill="rgb(223,84,20)" rx="2" ry="2" /> | |
| <text x="36.30" y="431.5" ></text> | |
| </g> | |
| <g > | |
| <title>__glDispatchCheckMultithreaded (7,841,137 samples, 0.01%)</title><rect x="1564.8" y="597" width="0.2" height="15.0" fill="rgb(254,227,54)" rx="2" ry="2" /> | |
| <text x="1567.79" y="607.5" ></text> | |
| </g> | |
| <g > | |
| <title>el0_svc_common.constprop.0 (12,254,150 samples, 0.02%)</title><rect x="29.1" y="341" width="0.3" height="15.0" fill="rgb(224,89,21)" rx="2" ry="2" /> | |
| <text x="32.10" y="351.5" ></text> | |
| </g> | |
| <g > | |
| <title>pa_run_once (6,121,829 samples, 0.01%)</title><rect x="15.1" y="533" width="0.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> | |
| <text x="18.06" y="543.5" ></text> | |
| </g> | |
| <g > | |
| <title>do_writev (72,425,777 samples, 0.10%)</title><rect x="29.6" y="325" width="1.6" height="15.0" fill="rgb(239,157,37)" rx="2" ry="2" /> | |
| <text x="32.62" y="335.5" ></text> | |
| </g> | |
| <g > | |
| <title>pa_stream_writable_size (15,132,607 samples, 0.02%)</title><rect x="14.6" y="565" width="0.3" height="15.0" fill="rgb(206,5,1)" rx="2" ry="2" /> | |
| <text x="17.57" y="575.5" ></text> | |
| </g> | |
| <g > | |
| <title>[libc.so.6] (149,424,790 samples, 0.21%)</title><rect x="1483.2" y="501" width="3.3" height="15.0" fill="rgb(223,84,20)" rx="2" ry="2" /> | |
| <text x="1486.21" y="511.5" ></text> | |
| </g> | |
| <g > | |
| <title>command_event_save_current_config (5,900,605 samples, 0.01%)</title><rect x="1573.5" y="629" width="0.1" height="15.0" fill="rgb(249,203,48)" rx="2" ry="2" /> | |
| <text x="1576.47" y="639.5" ></text> | |
| </g> | |
| <g > | |
| <title>idr_alloc_cyclic (46,450,180 samples, 0.06%)</title><rect x="1474.6" y="181" width="1.0" height="15.0" fill="rgb(220,72,17)" rx="2" ry="2" /> | |
| <text x="1477.56" y="191.5" ></text> | |
| </g> | |
| <g > | |
| <title>___slab_alloc (7,050,022 samples, 0.01%)</title><rect x="1480.1" y="85" width="0.1" height="15.0" fill="rgb(230,115,27)" rx="2" ry="2" /> | |
| <text x="1483.05" y="95.5" ></text> | |
| </g> | |
| <g > | |
| <title>alloc_skb_with_frags (31,530,912 samples, 0.04%)</title><rect x="34.4" y="197" width="0.6" height="15.0" fill="rgb(228,107,25)" rx="2" ry="2" /> | |
| <text x="37.36" y="207.5" ></text> | |
| </g> | |
| <g > | |
| <title>sock_def_readable (34,918,783 samples, 0.05%)</title><rect x="1485.5" y="277" width="0.7" height="15.0" fill="rgb(216,54,13)" rx="2" ry="2" /> | |
| <text x="1488.46" y="287.5" ></text> | |
| </g> | |
| <g > | |
| <title>dri_flush (2,497,561,809 samples, 3.45%)</title><rect x="1428.4" y="581" width="54.6" height="15.0" fill="rgb(212,32,7)" rx="2" ry="2" /> | |
| <text x="1431.42" y="591.5" >dri_f..</text> | |
| </g> | |
| <g > | |
| <title>el0_svc (5,007,873 samples, 0.01%)</title><rect x="878.4" y="389" width="0.1" height="15.0" fill="rgb(244,183,43)" rx="2" ry="2" /> | |
| <text x="881.38" y="399.5" ></text> | |
| </g> | |
| <g > | |
| <title>invoke_syscall.constprop.0 (22,165,850 samples, 0.03%)</title><rect x="1587.2" y="405" width="0.5" height="15.0" fill="rgb(244,183,43)" rx="2" ry="2" /> | |
| <text x="1590.21" y="415.5" ></text> | |
| </g> | |
| <g > | |
| <title>el0t_64_sync (38,275,360 samples, 0.05%)</title><rect x="1427.1" y="437" width="0.8" height="15.0" fill="rgb(217,56,13)" rx="2" ry="2" /> | |
| <text x="1430.09" y="447.5" ></text> | |
| </g> | |
| <g > | |
| <title>[libc.so.6] (18,079,529 samples, 0.02%)</title><rect x="1588.7" y="549" width="0.4" height="15.0" fill="rgb(223,84,20)" rx="2" ry="2" /> | |
| <text x="1591.73" y="559.5" ></text> | |
| </g> | |
| <g > | |
| <title>[libc.so.6] (33,874,680 samples, 0.05%)</title><rect x="1455.6" y="405" width="0.8" height="15.0" fill="rgb(223,84,20)" rx="2" ry="2" /> | |
| <text x="1458.63" y="415.5" ></text> | |
| </g> | |
| <g > | |
| <title>__arm64_sys_ppoll (12,830,270 samples, 0.02%)</title><rect x="23.5" y="405" width="0.3" height="15.0" fill="rgb(230,115,27)" rx="2" ry="2" /> | |
| <text x="26.47" y="415.5" ></text> | |
| </g> | |
| <g > | |
| <title>invoke_syscall.constprop.0 (26,740,957 samples, 0.04%)</title><rect x="31.9" y="325" width="0.6" height="15.0" fill="rgb(244,183,43)" rx="2" ry="2" /> | |
| <text x="34.90" y="335.5" ></text> | |
| </g> | |
| <g > | |
| <title>retro_vfs_file_seek_impl (9,918,480 samples, 0.01%)</title><rect x="878.3" y="485" width="0.2" height="15.0" fill="rgb(223,83,19)" rx="2" ry="2" /> | |
| <text x="881.28" y="495.5" ></text> | |
| </g> | |
| <g > | |
| <title>el0t_64_sync (50,547,360 samples, 0.07%)</title><rect x="36.2" y="389" width="1.1" height="15.0" fill="rgb(217,56,13)" rx="2" ry="2" /> | |
| <text x="39.19" y="399.5" ></text> | |
| </g> | |
| <g > | |
| <title>el0_svc (17,089,528 samples, 0.02%)</title><rect x="23.4" y="469" width="0.4" height="15.0" fill="rgb(244,183,43)" rx="2" ry="2" /> | |
| <text x="26.41" y="479.5" ></text> | |
| </g> | |
| <g > | |
| <title>__alloc_skb (32,286,326 samples, 0.04%)</title><rect x="30.0" y="197" width="0.7" height="15.0" fill="rgb(226,100,23)" rx="2" ry="2" /> | |
| <text x="33.00" y="207.5" ></text> | |
| </g> | |
| <g > | |
| <title>msm_gpu_cleanup (9,285,654 samples, 0.01%)</title><rect x="1473.4" y="197" width="0.2" height="15.0" fill="rgb(234,134,32)" rx="2" ry="2" /> | |
| <text x="1476.40" y="207.5" ></text> | |
| </g> | |
| <g > | |
| <title>[libc.so.6] (51,252,535 samples, 0.07%)</title><rect x="1582.3" y="517" width="1.2" height="15.0" fill="rgb(223,84,20)" rx="2" ry="2" /> | |
| <text x="1585.34" y="527.5" ></text> | |
| </g> | |
| <g > | |
| <title>unix_stream_sendmsg (106,459,937 samples, 0.15%)</title><rect x="1483.9" y="293" width="2.3" height="15.0" fill="rgb(240,161,38)" rx="2" ry="2" /> | |
| <text x="1486.90" y="303.5" ></text> | |
| </g> | |
| <g > | |
| <title>realloc (18,705,419 samples, 0.03%)</title><rect x="1476.8" y="421" width="0.4" height="15.0" fill="rgb(246,189,45)" rx="2" ry="2" /> | |
| <text x="1479.83" y="431.5" ></text> | |
| </g> | |
| <g > | |
| <title>el0_svc (37,946,786 samples, 0.05%)</title><rect x="10.7" y="533" width="0.8" height="15.0" fill="rgb(244,183,43)" rx="2" ry="2" /> | |
| <text x="13.67" y="543.5" ></text> | |
| </g> | |
| <g > | |
| <title>dma_resv_iter_next (6,485,674 samples, 0.01%)</title><rect x="1469.5" y="149" width="0.2" height="15.0" fill="rgb(247,196,46)" rx="2" ry="2" /> | |
| <text x="1472.53" y="159.5" ></text> | |
| </g> | |
| <g > | |
| <title>[libc.so.6] (126,628,842 samples, 0.18%)</title><rect x="1567.7" y="613" width="2.7" height="15.0" fill="rgb(223,84,20)" rx="2" ry="2" /> | |
| <text x="1570.65" y="623.5" ></text> | |
| </g> | |
| <g > | |
| <title>dsp_process (18,978,844,492 samples, 26.23%)</title><rect x="69.7" y="597" width="414.5" height="15.0" fill="rgb(232,127,30)" rx="2" ry="2" /> | |
| <text x="72.72" y="607.5" >dsp_process</text> | |
| </g> | |
| <g > | |
| <title>handle_softirqs (10,620,955 samples, 0.01%)</title><rect x="481.2" y="405" width="0.2" height="15.0" fill="rgb(238,156,37)" rx="2" ry="2" /> | |
| <text x="484.18" y="415.5" ></text> | |
| </g> | |
| <g > | |
| <title>do_iter_readv_writev (44,284,780 samples, 0.06%)</title><rect x="25.5" y="293" width="0.9" height="15.0" fill="rgb(221,76,18)" rx="2" ry="2" /> | |
| <text x="28.48" y="303.5" ></text> | |
| </g> | |
| <g > | |
| <title>vdlp_render_line_RGB565 (3,211,392,506 samples, 4.44%)</title><rect x="1348.5" y="597" width="70.2" height="15.0" fill="rgb(221,75,18)" rx="2" ry="2" /> | |
| <text x="1351.54" y="607.5" >vdlp_re..</text> | |
| </g> | |
| <g > | |
| <title>sock_recvmsg (90,161,790 samples, 0.12%)</title><rect x="1584.8" y="309" width="2.0" height="15.0" fill="rgb(206,5,1)" rx="2" ry="2" /> | |
| <text x="1587.84" y="319.5" ></text> | |
| </g> | |
| <g > | |
| <title>[libc.so.6] (20,569,233 samples, 0.03%)</title><rect x="32.5" y="469" width="0.4" height="15.0" fill="rgb(223,84,20)" rx="2" ry="2" /> | |
| <text x="35.49" y="479.5" ></text> | |
| </g> | |
| <g > | |
| <title>invoke_syscall.constprop.0 (29,263,528 samples, 0.04%)</title><rect x="1511.5" y="277" width="0.6" height="15.0" fill="rgb(244,183,43)" rx="2" ry="2" /> | |
| <text x="1514.45" y="287.5" ></text> | |
| </g> | |
| <g > | |
| <title>[libX11.so.6.4.0] (23,011,367 samples, 0.03%)</title><rect x="28.9" y="517" width="0.5" height="15.0" fill="rgb(220,73,17)" rx="2" ry="2" /> | |
| <text x="31.88" y="527.5" ></text> | |
| </g> | |
| <g > | |
| <title>remove (37,946,786 samples, 0.05%)</title><rect x="10.7" y="597" width="0.8" height="15.0" fill="rgb(238,155,37)" rx="2" ry="2" /> | |
| <text x="13.67" y="607.5" ></text> | |
| </g> | |
| <g > | |
| <title>x_input_state (7,262,471 samples, 0.01%)</title><rect x="37.9" y="581" width="0.1" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" /> | |
| <text x="40.86" y="591.5" ></text> | |
| </g> | |
| <g > | |
| <title>__kmalloc_noprof (5,905,315 samples, 0.01%)</title><rect x="1473.7" y="181" width="0.2" height="15.0" fill="rgb(235,138,33)" rx="2" ry="2" /> | |
| <text x="1476.74" y="191.5" ></text> | |
| </g> | |
| <g > | |
| <title>[libc.so.6] (17,040,863 samples, 0.02%)</title><rect x="1507.2" y="357" width="0.3" height="15.0" fill="rgb(223,84,20)" rx="2" ry="2" /> | |
| <text x="1510.18" y="367.5" ></text> | |
| </g> | |
| <g > | |
| <title>_XReply (184,364,082 samples, 0.25%)</title><rect x="24.7" y="549" width="4.1" height="15.0" fill="rgb(246,190,45)" rx="2" ry="2" /> | |
| <text x="27.73" y="559.5" ></text> | |
| </g> | |
| <g > | |
| <title>_start (72,243,071,772 samples, 99.86%)</title><rect x="10.3" y="741" width="1577.8" height="15.0" fill="rgb(245,185,44)" rx="2" ry="2" /> | |
| <text x="13.25" y="751.5" >_start</text> | |
| </g> | |
| <g > | |
| <title>retro_cdimage_read (9,918,480 samples, 0.01%)</title><rect x="878.3" y="517" width="0.2" height="15.0" fill="rgb(220,71,17)" rx="2" ry="2" /> | |
| <text x="881.28" y="527.5" ></text> | |
| </g> | |
| <g > | |
| <title>idr_get_free (44,244,304 samples, 0.06%)</title><rect x="1474.6" y="149" width="0.9" height="15.0" fill="rgb(208,14,3)" rx="2" ry="2" /> | |
| <text x="1477.58" y="159.5" ></text> | |
| </g> | |
| <g > | |
| <title>xcb_wait_for_reply64 (62,325,845 samples, 0.09%)</title><rect x="31.6" y="533" width="1.4" height="15.0" fill="rgb(212,36,8)" rx="2" ry="2" /> | |
| <text x="34.64" y="543.5" ></text> | |
| </g> | |
| <g > | |
| <title>_XReply (211,731,303 samples, 0.29%)</title><rect x="33.2" y="533" width="4.6" height="15.0" fill="rgb(246,190,45)" rx="2" ry="2" /> | |
| <text x="36.20" y="543.5" ></text> | |
| </g> | |
| <g > | |
| <title>el0_svc (75,260,195 samples, 0.10%)</title><rect x="33.9" y="389" width="1.6" height="15.0" fill="rgb(244,183,43)" rx="2" ry="2" /> | |
| <text x="36.88" y="399.5" ></text> | |
| </g> | |
| <g > | |
| <title>el0t_64_sync_handler (5,007,873 samples, 0.01%)</title><rect x="878.4" y="405" width="0.1" height="15.0" fill="rgb(211,32,7)" rx="2" ry="2" /> | |
| <text x="881.38" y="415.5" ></text> | |
| </g> | |
| <g > | |
| <title>drmm_kfree (173,438,778 samples, 0.24%)</title><rect x="1478.1" y="277" width="3.7" height="15.0" fill="rgb(217,58,14)" rx="2" ry="2" /> | |
| <text x="1481.05" y="287.5" ></text> | |
| </g> | |
| <g > | |
| <title>__sys_recvmsg (17,942,401 samples, 0.02%)</title><rect x="1575.6" y="325" width="0.4" height="15.0" fill="rgb(252,216,51)" rx="2" ry="2" /> | |
| <text x="1578.58" y="335.5" ></text> | |
| </g> | |
| <g > | |
| <title>dma_resv_iter_first (7,887,354 samples, 0.01%)</title><rect x="1469.4" y="149" width="0.1" height="15.0" fill="rgb(219,66,15)" rx="2" ry="2" /> | |
| <text x="1472.36" y="159.5" ></text> | |
| </g> | |
| <g > | |
| <title>[libc.so.6] (7,123,896 samples, 0.01%)</title><rect x="1505.0" y="373" width="0.1" height="15.0" fill="rgb(223,84,20)" rx="2" ry="2" /> | |
| <text x="1507.96" y="383.5" ></text> | |
| </g> | |
| <g > | |
| <title>[libc.so.6] (9,396,058 samples, 0.01%)</title><rect x="1447.4" y="421" width="0.2" height="15.0" fill="rgb(223,84,20)" rx="2" ry="2" /> | |
| <text x="1450.36" y="431.5" ></text> | |
| </g> | |
| <g > | |
| <title>do_sys_poll (7,845,586 samples, 0.01%)</title><rect x="23.5" y="389" width="0.2" height="15.0" fill="rgb(219,68,16)" rx="2" ry="2" /> | |
| <text x="26.50" y="399.5" ></text> | |
| </g> | |
| <g > | |
| <title>__arm64_sys_recvmsg (18,691,493 samples, 0.03%)</title><rect x="1427.5" y="341" width="0.4" height="15.0" fill="rgb(236,144,34)" rx="2" ry="2" /> | |
| <text x="1430.52" y="351.5" ></text> | |
| </g> | |
| <g > | |
| <title>__poll (20,569,233 samples, 0.03%)</title><rect x="32.5" y="485" width="0.4" height="15.0" fill="rgb(250,208,49)" rx="2" ry="2" /> | |
| <text x="35.49" y="495.5" ></text> | |
| </g> | |
| <g > | |
| <title>call_rcu (5,684,884 samples, 0.01%)</title><rect x="1465.0" y="101" width="0.1" height="15.0" fill="rgb(206,7,1)" rx="2" ry="2" /> | |
| <text x="1467.99" y="111.5" ></text> | |
| </g> | |
| <g > | |
| <title>____do_softirq (10,620,955 samples, 0.01%)</title><rect x="481.2" y="437" width="0.2" height="15.0" fill="rgb(219,65,15)" rx="2" ry="2" /> | |
| <text x="484.18" y="447.5" ></text> | |
| </g> | |
| <g > | |
| <title>[libgallium-26.0.5-1.so] (11,321,778 samples, 0.02%)</title><rect x="10.0" y="677" width="0.3" height="15.0" fill="rgb(216,54,12)" rx="2" ry="2" /> | |
| <text x="13.00" y="687.5" ></text> | |
| </g> | |
| <g > | |
| <title>[libc.so.6] (8,470,268 samples, 0.01%)</title><rect x="1510.5" y="357" width="0.2" height="15.0" fill="rgb(223,84,20)" rx="2" ry="2" /> | |
| <text x="1513.50" y="367.5" ></text> | |
| </g> | |
| <g > | |
| <title>_raw_spin_lock (10,911,589 samples, 0.02%)</title><rect x="1584.9" y="277" width="0.2" height="15.0" fill="rgb(239,160,38)" rx="2" ry="2" /> | |
| <text x="1587.90" y="287.5" ></text> | |
| </g> | |
| <g > | |
| <title>[libc.so.6] (53,539,570 samples, 0.07%)</title><rect x="25.4" y="469" width="1.2" height="15.0" fill="rgb(223,84,20)" rx="2" ry="2" /> | |
| <text x="28.40" y="479.5" ></text> | |
| </g> | |
| <g > | |
| <title>dma_fence_release (19,969,122 samples, 0.03%)</title><rect x="1464.9" y="165" width="0.5" height="15.0" fill="rgb(234,136,32)" rx="2" ry="2" /> | |
| <text x="1467.95" y="175.5" ></text> | |
| </g> | |
| <g > | |
| <title>[libc.so.6] (28,025,590 samples, 0.04%)</title><rect x="1505.8" y="357" width="0.6" height="15.0" fill="rgb(223,84,20)" rx="2" ry="2" /> | |
| <text x="1508.76" y="367.5" ></text> | |
| </g> | |
| <g > | |
| <title>__mutex_lock_slowpath (12,096,922 samples, 0.02%)</title><rect x="1479.2" y="213" width="0.2" height="15.0" fill="rgb(228,109,26)" rx="2" ry="2" /> | |
| <text x="1482.18" y="223.5" ></text> | |
| </g> | |
| <g > | |
| <title>[libc.so.6] (120,439,075 samples, 0.17%)</title><rect x="1584.3" y="485" width="2.7" height="15.0" fill="rgb(223,84,20)" rx="2" ry="2" /> | |
| <text x="1587.35" y="495.5" ></text> | |
| </g> | |
| <g > | |
| <title>[libc.so.6] (71,561,553 samples, 0.10%)</title><rect x="1552.6" y="421" width="1.5" height="15.0" fill="rgb(223,84,20)" rx="2" ry="2" /> | |
| <text x="1555.58" y="431.5" ></text> | |
| </g> | |
| <g > | |
| <title>clock_gettime (9,312,592 samples, 0.01%)</title><rect x="1573.1" y="645" width="0.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> | |
| <text x="1576.10" y="655.5" ></text> | |
| </g> | |
| <g > | |
| <title>sock_recvmsg (34,769,197 samples, 0.05%)</title><rect x="36.4" y="229" width="0.8" height="15.0" fill="rgb(206,5,1)" rx="2" ry="2" /> | |
| <text x="39.41" y="239.5" ></text> | |
| </g> | |
| <g > | |
| <title>[libX11.so.6.4.0] (48,955,162 samples, 0.07%)</title><rect x="1575.0" y="549" width="1.1" height="15.0" fill="rgb(220,73,17)" rx="2" ry="2" /> | |
| <text x="1578.03" y="559.5" ></text> | |
| </g> | |
| <g > | |
| <title>_XSend (100,829,553 samples, 0.14%)</title><rect x="29.4" y="533" width="2.2" height="15.0" fill="rgb(236,143,34)" rx="2" ry="2" /> | |
| <text x="32.42" y="543.5" ></text> | |
| </g> | |
| <g > | |
| <title>el0_svc (8,470,268 samples, 0.01%)</title><rect x="1510.5" y="309" width="0.2" height="15.0" fill="rgb(244,183,43)" rx="2" ry="2" /> | |
| <text x="1513.50" y="319.5" ></text> | |
| </g> | |
| <g > | |
| <title>el0t_64_sync_handler (10,935,160 samples, 0.02%)</title><rect x="28.5" y="405" width="0.2" height="15.0" fill="rgb(211,32,7)" rx="2" ry="2" /> | |
| <text x="31.47" y="415.5" ></text> | |
| </g> | |
| <g > | |
| <title>shmem_file_read_iter (10,622,833 samples, 0.01%)</title><rect x="878.6" y="245" width="0.2" height="15.0" fill="rgb(231,123,29)" rx="2" ry="2" /> | |
| <text x="881.62" y="255.5" ></text> | |
| </g> | |
| <g > | |
| <title>content_file_list_free (37,946,786 samples, 0.05%)</title><rect x="10.7" y="629" width="0.8" height="15.0" fill="rgb(237,151,36)" rx="2" ry="2" /> | |
| <text x="13.67" y="639.5" ></text> | |
| </g> | |
| <g > | |
| <title>refill_obj_stock (7,140,667 samples, 0.01%)</title><rect x="34.8" y="117" width="0.2" height="15.0" fill="rgb(239,160,38)" rx="2" ry="2" /> | |
| <text x="37.81" y="127.5" ></text> | |
| </g> | |
| <g > | |
| <title>invoke_syscall.constprop.0 (5,612,430 samples, 0.01%)</title><rect x="26.7" y="341" width="0.1" height="15.0" fill="rgb(244,183,43)" rx="2" ry="2" /> | |
| <text x="29.71" y="351.5" ></text> | |
| </g> | |
| <g > | |
| <title>evict (37,946,786 samples, 0.05%)</title><rect x="10.7" y="405" width="0.8" height="15.0" fill="rgb(231,122,29)" rx="2" ry="2" /> | |
| <text x="13.67" y="415.5" ></text> | |
| </g> | |
| <g > | |
| <title>do_el0_svc (10,714,404 samples, 0.01%)</title><rect x="37.5" y="357" width="0.2" height="15.0" fill="rgb(218,60,14)" rx="2" ry="2" /> | |
| <text x="40.48" y="367.5" ></text> | |
| </g> | |
| <g > | |
| <title>[libxcb.so.1.1.0] (69,079,635 samples, 0.10%)</title><rect x="27.0" y="485" width="1.5" height="15.0" fill="rgb(226,98,23)" rx="2" ry="2" /> | |
| <text x="29.96" y="495.5" ></text> | |
| </g> | |
| <g > | |
| <title>___sys_recvmsg (16,493,582 samples, 0.02%)</title><rect x="1575.6" y="309" width="0.4" height="15.0" fill="rgb(238,153,36)" rx="2" ry="2" /> | |
| <text x="1578.60" y="319.5" ></text> | |
| </g> | |
| <g > | |
| <title>sock_alloc_send_pskb (31,530,912 samples, 0.04%)</title><rect x="34.4" y="213" width="0.6" height="15.0" fill="rgb(210,26,6)" rx="2" ry="2" /> | |
| <text x="37.36" y="223.5" ></text> | |
| </g> | |
| <g > | |
| <title>__memcg_slab_post_alloc_hook (31,284,177 samples, 0.04%)</title><rect x="1484.7" y="213" width="0.7" height="15.0" fill="rgb(207,9,2)" rx="2" ry="2" /> | |
| <text x="1487.67" y="223.5" ></text> | |
| </g> | |
| <g > | |
| <title>[libc.so.6] (64,501,719 samples, 0.09%)</title><rect x="1540.7" y="485" width="1.4" height="15.0" fill="rgb(223,84,20)" rx="2" ry="2" /> | |
| <text x="1543.74" y="495.5" ></text> | |
| </g> | |
| <g > | |
| <title>_raw_spin_unlock_irq (6,402,167 samples, 0.01%)</title><rect x="1588.9" y="357" width="0.2" height="15.0" fill="rgb(215,47,11)" rx="2" ry="2" /> | |
| <text x="1591.93" y="367.5" ></text> | |
| </g> | |
| <g > | |
| <title>[[msm]] (34,489,318 samples, 0.05%)</title><rect x="1463.2" y="197" width="0.7" height="15.0" fill="rgb(235,138,33)" rx="2" ry="2" /> | |
| <text x="1466.15" y="207.5" ></text> | |
| </g> | |
| <g > | |
| <title>drain_obj_stock (6,654,897 samples, 0.01%)</title><rect x="36.7" y="85" width="0.2" height="15.0" fill="rgb(213,38,9)" rx="2" ry="2" /> | |
| <text x="39.72" y="95.5" ></text> | |
| </g> | |
| <g > | |
| <title>[libc.so.6] (18,121,312 samples, 0.03%)</title><rect x="13.2" y="469" width="0.4" height="15.0" fill="rgb(223,84,20)" rx="2" ry="2" /> | |
| <text x="16.25" y="479.5" ></text> | |
| </g> | |
| <g > | |
| <title>_raw_spin_unlock_irqrestore (17,938,853 samples, 0.02%)</title><rect x="30.8" y="213" width="0.4" height="15.0" fill="rgb(228,106,25)" rx="2" ry="2" /> | |
| <text x="33.78" y="223.5" ></text> | |
| </g> | |
| <g > | |
| <title>__getpid (13,593,850 samples, 0.02%)</title><rect x="12.9" y="533" width="0.3" height="15.0" fill="rgb(221,74,17)" rx="2" ry="2" /> | |
| <text x="15.87" y="543.5" ></text> | |
| </g> | |
| <g > | |
| <title>[libc.so.6] (12,611,831 samples, 0.02%)</title><rect x="1535.4" y="501" width="0.2" height="15.0" fill="rgb(223,84,20)" rx="2" ry="2" /> | |
| <text x="1538.36" y="511.5" ></text> | |
| </g> | |
| <g > | |
| <title>_IO_file_underflow (12,699,669 samples, 0.02%)</title><rect x="878.6" y="453" width="0.2" height="15.0" fill="rgb(209,21,5)" rx="2" ry="2" /> | |
| <text x="881.57" y="463.5" ></text> | |
| </g> | |
| <g > | |
| <title>mreadb (169,817,579 samples, 0.23%)</title><rect x="783.4" y="597" width="3.8" height="15.0" fill="rgb(214,45,10)" rx="2" ry="2" /> | |
| <text x="786.45" y="607.5" ></text> | |
| </g> | |
| <g > | |
| <title>__memcg_slab_post_alloc_hook (5,055,650 samples, 0.01%)</title><rect x="25.7" y="149" width="0.1" height="15.0" fill="rgb(207,9,2)" rx="2" ry="2" /> | |
| <text x="28.70" y="159.5" ></text> | |
| </g> | |
| <g > | |
| <title>unix_destruct_scm (4,899,076 samples, 0.01%)</title><rect x="36.9" y="149" width="0.1" height="15.0" fill="rgb(207,13,3)" rx="2" ry="2" /> | |
| <text x="39.91" y="159.5" ></text> | |
| </g> | |
| <g > | |
| <title>opera_madam_cel_handle (18,264,018,103 samples, 25.25%)</title><rect x="943.3" y="613" width="398.8" height="15.0" fill="rgb(214,42,10)" rx="2" ry="2" /> | |
| <text x="946.25" y="623.5" >opera_madam_cel_handle</text> | |
| </g> | |
| <g > | |
| <title>el0_svc_common.constprop.0 (11,512,784 samples, 0.02%)</title><rect x="1583.6" y="421" width="0.3" height="15.0" fill="rgb(224,89,21)" rx="2" ry="2" /> | |
| <text x="1586.65" y="431.5" ></text> | |
| </g> | |
| <g > | |
| <title>__arm64_sys_recvmsg (8,007,415 samples, 0.01%)</title><rect x="1428.2" y="373" width="0.2" height="15.0" fill="rgb(236,144,34)" rx="2" ry="2" /> | |
| <text x="1431.21" y="383.5" ></text> | |
| </g> | |
| <g > | |
| <title>[libc.so.6] (20,866,128 samples, 0.03%)</title><rect x="28.9" y="453" width="0.5" height="15.0" fill="rgb(223,84,20)" rx="2" ry="2" /> | |
| <text x="31.91" y="463.5" ></text> | |
| </g> | |
| <g > | |
| <title>recvmsg (33,607,977 samples, 0.05%)</title><rect x="1581.3" y="533" width="0.7" height="15.0" fill="rgb(210,25,6)" rx="2" ry="2" /> | |
| <text x="1584.26" y="543.5" ></text> | |
| </g> | |
| <g > | |
| <title>el0_svc (41,522,898 samples, 0.06%)</title><rect x="1511.2" y="325" width="0.9" height="15.0" fill="rgb(244,183,43)" rx="2" ry="2" /> | |
| <text x="1514.19" y="335.5" ></text> | |
| </g> | |
| <g > | |
| <title>el0_svc (34,528,276 samples, 0.05%)</title><rect x="1575.2" y="405" width="0.8" height="15.0" fill="rgb(244,183,43)" rx="2" ry="2" /> | |
| <text x="1578.23" y="415.5" ></text> | |
| </g> | |
| <g > | |
| <title>[libgallium-26.0.5-1.so] (26,421,485 samples, 0.04%)</title><rect x="1461.5" y="357" width="0.6" height="15.0" fill="rgb(216,54,12)" rx="2" ry="2" /> | |
| <text x="1464.51" y="367.5" ></text> | |
| </g> | |
| <g > | |
| <title>___sys_recvmsg (38,330,223 samples, 0.05%)</title><rect x="36.4" y="261" width="0.8" height="15.0" fill="rgb(238,153,36)" rx="2" ry="2" /> | |
| <text x="39.38" y="271.5" ></text> | |
| </g> | |
| <g > | |
| <title>pa_stream_write_ext_free (40,854,944 samples, 0.06%)</title><rect x="13.2" y="565" width="0.9" height="15.0" fill="rgb(234,135,32)" rx="2" ry="2" /> | |
| <text x="16.18" y="575.5" ></text> | |
| </g> | |
| <g > | |
| <title>invoke_syscall.constprop.0 (12,254,150 samples, 0.02%)</title><rect x="29.1" y="325" width="0.3" height="15.0" fill="rgb(244,183,43)" rx="2" ry="2" /> | |
| <text x="32.10" y="335.5" ></text> | |
| </g> | |
| <g > | |
| <title>[[gpu_sched]] (20,886,150 samples, 0.03%)</title><rect x="1468.9" y="149" width="0.4" height="15.0" fill="rgb(225,93,22)" rx="2" ry="2" /> | |
| <text x="1471.86" y="159.5" ></text> | |
| </g> | |
| <g > | |
| <title>el0_svc (18,084,731 samples, 0.02%)</title><rect x="1583.5" y="453" width="0.4" height="15.0" fill="rgb(244,183,43)" rx="2" ry="2" /> | |
| <text x="1586.50" y="463.5" ></text> | |
| </g> | |
| <g > | |
| <title>xcb_writev (77,255,382 samples, 0.11%)</title><rect x="1582.2" y="581" width="1.7" height="15.0" fill="rgb(254,228,54)" rx="2" ry="2" /> | |
| <text x="1585.23" y="591.5" ></text> | |
| </g> | |
| <g > | |
| <title>input_state_wrap.constprop.1 (10,862,451 samples, 0.02%)</title><rect x="23.0" y="581" width="0.3" height="15.0" fill="rgb(221,78,18)" rx="2" ry="2" /> | |
| <text x="26.03" y="591.5" ></text> | |
| </g> | |
| <g > | |
| <title>unix_stream_recvmsg (88,022,510 samples, 0.12%)</title><rect x="1584.9" y="293" width="1.9" height="15.0" fill="rgb(251,213,51)" rx="2" ry="2" /> | |
| <text x="1587.88" y="303.5" ></text> | |
| </g> | |
| <g > | |
| <title>XQueryKeymap (194,214,346 samples, 0.27%)</title><rect x="28.8" y="565" width="4.2" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" /> | |
| <text x="31.79" y="575.5" ></text> | |
| </g> | |
| <g > | |
| <title>x11_has_focus (322,963,051 samples, 0.45%)</title><rect x="1580.9" y="645" width="7.0" height="15.0" fill="rgb(222,80,19)" rx="2" ry="2" /> | |
| <text x="1583.88" y="655.5" ></text> | |
| </g> | |
| <g > | |
| <title>el0t_64_sync (34,528,276 samples, 0.05%)</title><rect x="1575.2" y="437" width="0.8" height="15.0" fill="rgb(217,56,13)" rx="2" ry="2" /> | |
| <text x="1578.23" y="447.5" ></text> | |
| </g> | |
| <g > | |
| <title>ioctl (218,140,302 samples, 0.30%)</title><rect x="1477.3" y="405" width="4.7" height="15.0" fill="rgb(231,122,29)" rx="2" ry="2" /> | |
| <text x="1480.28" y="415.5" ></text> | |
| </g> | |
| <g > | |
| <title>el0t_64_sync (18,121,312 samples, 0.03%)</title><rect x="13.2" y="453" width="0.4" height="15.0" fill="rgb(217,56,13)" rx="2" ry="2" /> | |
| <text x="16.25" y="463.5" ></text> | |
| </g> | |
| <g > | |
| <title>kmem_cache_alloc_lru_noprof (7,792,672 samples, 0.01%)</title><rect x="1480.0" y="117" width="0.2" height="15.0" fill="rgb(244,183,43)" rx="2" ry="2" /> | |
| <text x="1483.04" y="127.5" ></text> | |
| </g> | |
| <g > | |
| <title>gfx_widgets_iterate (20,167,393 samples, 0.03%)</title><rect x="1574.4" y="645" width="0.4" height="15.0" fill="rgb(238,155,37)" rx="2" ry="2" /> | |
| <text x="1577.37" y="655.5" ></text> | |
| </g> | |
| <g > | |
| <title>[libc.so.6] (24,748,233 samples, 0.03%)</title><rect x="1486.5" y="501" width="0.6" height="15.0" fill="rgb(223,84,20)" rx="2" ry="2" /> | |
| <text x="1489.54" y="511.5" ></text> | |
| </g> | |
| <g > | |
| <title>sock_recvmsg (8,466,400 samples, 0.01%)</title><rect x="1581.6" y="309" width="0.2" height="15.0" fill="rgb(206,5,1)" rx="2" ry="2" /> | |
| <text x="1584.63" y="319.5" ></text> | |
| </g> | |
| <g > | |
| <title>dsp_operand_load1 (241,267,316 samples, 0.33%)</title><rect x="410.9" y="565" width="5.2" height="15.0" fill="rgb(207,10,2)" rx="2" ry="2" /> | |
| <text x="413.88" y="575.5" ></text> | |
| </g> | |
| <g > | |
| <title>cpu_features_get_time_usec (10,738,606 samples, 0.01%)</title><rect x="1573.1" y="661" width="0.2" height="15.0" fill="rgb(223,82,19)" rx="2" ry="2" /> | |
| <text x="1576.10" y="671.5" ></text> | |
| </g> | |
| <g > | |
| <title>shmem_evict_inode (37,946,786 samples, 0.05%)</title><rect x="10.7" y="389" width="0.8" height="15.0" fill="rgb(224,89,21)" rx="2" ry="2" /> | |
| <text x="13.67" y="399.5" ></text> | |
| </g> | |
| <g > | |
| <title>[libxcb.so.1.1.0] (22,980,815 samples, 0.03%)</title><rect x="24.8" y="501" width="0.5" height="15.0" fill="rgb(226,98,23)" rx="2" ry="2" /> | |
| <text x="27.81" y="511.5" ></text> | |
| </g> | |
| <g > | |
| <title>el0_svc (18,121,312 samples, 0.03%)</title><rect x="13.2" y="421" width="0.4" height="15.0" fill="rgb(244,183,43)" rx="2" ry="2" /> | |
| <text x="16.25" y="431.5" ></text> | |
| </g> | |
| <g > | |
| <title>kmem_cache_alloc_lru_noprof (10,189,649 samples, 0.01%)</title><rect x="1470.2" y="69" width="0.2" height="15.0" fill="rgb(244,183,43)" rx="2" ry="2" /> | |
| <text x="1473.19" y="79.5" ></text> | |
| </g> | |
| <g > | |
| <title>refill_obj_stock (15,584,460 samples, 0.02%)</title><rect x="1485.0" y="181" width="0.3" height="15.0" fill="rgb(239,160,38)" rx="2" ry="2" /> | |
| <text x="1487.97" y="191.5" ></text> | |
| </g> | |
| <g > | |
| <title>[libc.so.6] (24,097,074 samples, 0.03%)</title><rect x="27.0" y="437" width="0.5" height="15.0" fill="rgb(223,84,20)" rx="2" ry="2" /> | |
| <text x="30.02" y="447.5" ></text> | |
| </g> | |
| <g > | |
| <title>rcheevos_hardcore_active (4,678,536 samples, 0.01%)</title><rect x="1580.5" y="645" width="0.1" height="15.0" fill="rgb(226,98,23)" rx="2" ry="2" /> | |
| <text x="1583.53" y="655.5" ></text> | |
| </g> | |
| <g > | |
| <title>__arm64_sys_ppoll (14,346,786 samples, 0.02%)</title><rect x="1486.7" y="373" width="0.3" height="15.0" fill="rgb(230,115,27)" rx="2" ry="2" /> | |
| <text x="1489.70" y="383.5" ></text> | |
| </g> | |
| <g > | |
| <title>do_softirq_own_stack (11,689,935 samples, 0.02%)</title><rect x="783.2" y="501" width="0.2" height="15.0" fill="rgb(250,209,50)" rx="2" ry="2" /> | |
| <text x="786.18" y="511.5" ></text> | |
| </g> | |
| <g > | |
| <title>unix_stream_read_generic (4,811,577 samples, 0.01%)</title><rect x="1581.7" y="277" width="0.1" height="15.0" fill="rgb(244,180,43)" rx="2" ry="2" /> | |
| <text x="1584.71" y="287.5" ></text> | |
| </g> | |
| <g > | |
| <title>el0t_64_sync_handler (42,260,418 samples, 0.06%)</title><rect x="1511.2" y="341" width="0.9" height="15.0" fill="rgb(211,32,7)" rx="2" ry="2" /> | |
| <text x="1514.17" y="351.5" ></text> | |
| </g> | |
| <g > | |
| <title>__arm64_sys_writev (40,597,469 samples, 0.06%)</title><rect x="1582.5" y="405" width="0.9" height="15.0" fill="rgb(241,169,40)" rx="2" ry="2" /> | |
| <text x="1585.52" y="415.5" ></text> | |
| </g> | |
| <g > | |
| <title>el0t_64_sync (52,892,959 samples, 0.07%)</title><rect x="25.4" y="437" width="1.2" height="15.0" fill="rgb(217,56,13)" rx="2" ry="2" /> | |
| <text x="28.42" y="447.5" ></text> | |
| </g> | |
| <g > | |
| <title>drm_exec_lock_obj (24,393,478 samples, 0.03%)</title><rect x="1471.7" y="133" width="0.5" height="15.0" fill="rgb(236,142,34)" rx="2" ry="2" /> | |
| <text x="1474.70" y="143.5" ></text> | |
| </g> | |
| <g > | |
| <title>pa_detect_fork (14,296,914 samples, 0.02%)</title><rect x="12.9" y="549" width="0.3" height="15.0" fill="rgb(243,176,42)" rx="2" ry="2" /> | |
| <text x="15.87" y="559.5" ></text> | |
| </g> | |
| <g > | |
| <title>opera_cdrom_fifo_get_data (89,987,010 samples, 0.12%)</title><rect x="876.5" y="533" width="2.0" height="15.0" fill="rgb(230,118,28)" rx="2" ry="2" /> | |
| <text x="879.53" y="543.5" ></text> | |
| </g> | |
| <g > | |
| <title>invoke_syscall.constprop.0 (12,014,191 samples, 0.02%)</title><rect x="878.6" y="309" width="0.2" height="15.0" fill="rgb(244,183,43)" rx="2" ry="2" /> | |
| <text x="881.59" y="319.5" ></text> | |
| </g> | |
| <g > | |
| <title>[libc.so.6] (10,936,081 samples, 0.02%)</title><rect x="28.5" y="453" width="0.2" height="15.0" fill="rgb(223,84,20)" rx="2" ry="2" /> | |
| <text x="31.47" y="463.5" ></text> | |
| </g> | |
| <g > | |
| <title>el0t_64_sync (10,054,760 samples, 0.01%)</title><rect x="12.9" y="517" width="0.3" height="15.0" fill="rgb(217,56,13)" rx="2" ry="2" /> | |
| <text x="15.95" y="527.5" ></text> | |
| </g> | |
| <g > | |
| <title>pa_read (6,501,823 samples, 0.01%)</title><rect x="1589.9" y="629" width="0.1" height="15.0" fill="rgb(238,153,36)" rx="2" ry="2" /> | |
| <text x="1592.86" y="639.5" ></text> | |
| </g> | |
| <g > | |
| <title>[libgallium-26.0.5-1.so] (124,429,140 samples, 0.17%)</title><rect x="1521.8" y="533" width="2.8" height="15.0" fill="rgb(216,54,12)" rx="2" ry="2" /> | |
| <text x="1524.85" y="543.5" ></text> | |
| </g> | |
| <g > | |
| <title>___sys_recvmsg (16,489,584 samples, 0.02%)</title><rect x="1427.5" y="309" width="0.4" height="15.0" fill="rgb(238,153,36)" rx="2" ry="2" /> | |
| <text x="1430.53" y="319.5" ></text> | |
| </g> | |
| <g > | |
| <title>[libxcb.so.1.1.0] (35,793,055 samples, 0.05%)</title><rect x="1581.2" y="565" width="0.8" height="15.0" fill="rgb(226,98,23)" rx="2" ry="2" /> | |
| <text x="1584.21" y="575.5" ></text> | |
| </g> | |
| <g > | |
| <title>[libxcb.so.1.1.0] (9,191,462 samples, 0.01%)</title><rect x="1510.5" y="421" width="0.2" height="15.0" fill="rgb(226,98,23)" rx="2" ry="2" /> | |
| <text x="1513.49" y="431.5" ></text> | |
| </g> | |
| <g > | |
| <title>msm_clk_get (116,791,720 samples, 0.16%)</title><rect x="1464.5" y="197" width="2.5" height="15.0" fill="rgb(239,158,37)" rx="2" ry="2" /> | |
| <text x="1467.48" y="207.5" ></text> | |
| </g> | |
| <g > | |
| <title>[libc.so.6] (18,703,934 samples, 0.03%)</title><rect x="37.3" y="421" width="0.4" height="15.0" fill="rgb(223,84,20)" rx="2" ry="2" /> | |
| <text x="40.31" y="431.5" ></text> | |
| </g> | |
| <g > | |
| <title>refill_obj_stock (7,889,694 samples, 0.01%)</title><rect x="30.5" y="133" width="0.1" height="15.0" fill="rgb(239,160,38)" rx="2" ry="2" /> | |
| <text x="33.47" y="143.5" ></text> | |
| </g> | |
| <g > | |
| <title>[libgallium-26.0.5-1.so] (248,413,700 samples, 0.34%)</title><rect x="1503.9" y="421" width="5.5" height="15.0" fill="rgb(216,54,12)" rx="2" ry="2" /> | |
| <text x="1506.93" y="431.5" ></text> | |
| </g> | |
| <g > | |
| <title>invoke_syscall.constprop.0 (17,300,683 samples, 0.02%)</title><rect x="1486.7" y="389" width="0.4" height="15.0" fill="rgb(244,183,43)" rx="2" ry="2" /> | |
| <text x="1489.70" y="399.5" ></text> | |
| </g> | |
| <g > | |
| <title>__sock_sendmsg (42,841,796 samples, 0.06%)</title><rect x="25.5" y="261" width="0.9" height="15.0" fill="rgb(217,57,13)" rx="2" ry="2" /> | |
| <text x="28.51" y="271.5" ></text> | |
| </g> | |
| <g > | |
| <title>el0t_64_sync (7,887,430 samples, 0.01%)</title><rect x="1564.1" y="533" width="0.2" height="15.0" fill="rgb(217,56,13)" rx="2" ry="2" /> | |
| <text x="1567.09" y="543.5" ></text> | |
| </g> | |
| <g > | |
| <title>kmem_cache_alloc_node_noprof (36,306,396 samples, 0.05%)</title><rect x="1484.6" y="229" width="0.8" height="15.0" fill="rgb(208,17,4)" rx="2" ry="2" /> | |
| <text x="1487.57" y="239.5" ></text> | |
| </g> | |
| <g > | |
| <title>glXSwapBuffers (58,414,971 samples, 0.08%)</title><rect x="1563.7" y="613" width="1.3" height="15.0" fill="rgb(245,185,44)" rx="2" ry="2" /> | |
| <text x="1566.70" y="623.5" ></text> | |
| </g> | |
| <g > | |
| <title>invoke_syscall.constprop.0 (37,946,786 samples, 0.05%)</title><rect x="10.7" y="485" width="0.8" height="15.0" fill="rgb(244,183,43)" rx="2" ry="2" /> | |
| <text x="13.67" y="495.5" ></text> | |
| </g> | |
| <g > | |
| <title>retroarch (72,243,100,664 samples, 99.86%)</title><rect x="10.3" y="757" width="1577.8" height="15.0" fill="rgb(247,195,46)" rx="2" ry="2" /> | |
| <text x="13.25" y="767.5" >retroarch</text> | |
| </g> | |
| <g > | |
| <title>[libgallium-26.0.5-1.so] (118,882,438 samples, 0.16%)</title><rect x="1506.4" y="373" width="2.6" height="15.0" fill="rgb(216,54,12)" rx="2" ry="2" /> | |
| <text x="1509.37" y="383.5" ></text> | |
| </g> | |
| <g > | |
| <title>[libgallium-26.0.5-1.so] (9,238,471 samples, 0.01%)</title><rect x="1513.7" y="549" width="0.2" height="15.0" fill="rgb(216,54,12)" rx="2" ry="2" /> | |
| <text x="1516.71" y="559.5" ></text> | |
| </g> | |
| <g > | |
| <title>____sys_recvmsg (5,740,805 samples, 0.01%)</title><rect x="29.1" y="261" width="0.2" height="15.0" fill="rgb(224,90,21)" rx="2" ry="2" /> | |
| <text x="32.13" y="271.5" ></text> | |
| </g> | |
| <g > | |
| <title>el0t_64_irq_handler (10,620,955 samples, 0.01%)</title><rect x="481.2" y="549" width="0.2" height="15.0" fill="rgb(241,169,40)" rx="2" ry="2" /> | |
| <text x="484.18" y="559.5" ></text> | |
| </g> | |
| <g > | |
| <title>[libc.so.6] (11,462,717 samples, 0.02%)</title><rect x="1461.3" y="325" width="0.2" height="15.0" fill="rgb(223,84,20)" rx="2" ry="2" /> | |
| <text x="1464.26" y="335.5" ></text> | |
| </g> | |
| <g > | |
| <title>[libc.so.6] (33,607,977 samples, 0.05%)</title><rect x="1581.3" y="501" width="0.7" height="15.0" fill="rgb(223,84,20)" rx="2" ry="2" /> | |
| <text x="1584.26" y="511.5" ></text> | |
| </g> | |
| <g > | |
| <title>[libgallium-26.0.5-1.so] (92,447,886 samples, 0.13%)</title><rect x="1522.5" y="517" width="2.1" height="15.0" fill="rgb(216,54,12)" rx="2" ry="2" /> | |
| <text x="1525.54" y="527.5" ></text> | |
| </g> | |
| <g > | |
| <title>command_event (14,027,047 samples, 0.02%)</title><rect x="10.4" y="645" width="0.3" height="15.0" fill="rgb(224,90,21)" rx="2" ry="2" /> | |
| <text x="13.36" y="655.5" ></text> | |
| </g> | |
| <g > | |
| <title>el0t_64_sync_handler (52,892,959 samples, 0.07%)</title><rect x="25.4" y="421" width="1.2" height="15.0" fill="rgb(211,32,7)" rx="2" ry="2" /> | |
| <text x="28.42" y="431.5" ></text> | |
| </g> | |
| <g > | |
| <title>kfree (13,276,771 samples, 0.02%)</title><rect x="36.6" y="133" width="0.3" height="15.0" fill="rgb(222,78,18)" rx="2" ry="2" /> | |
| <text x="39.62" y="143.5" ></text> | |
| </g> | |
| <g > | |
| <title>unix_stream_recvmsg (5,032,488 samples, 0.01%)</title><rect x="29.1" y="229" width="0.2" height="15.0" fill="rgb(251,213,51)" rx="2" ry="2" /> | |
| <text x="32.15" y="239.5" ></text> | |
| </g> | |
| <g > | |
| <title>el0t_64_sync_handler (75,260,195 samples, 0.10%)</title><rect x="33.9" y="405" width="1.6" height="15.0" fill="rgb(211,32,7)" rx="2" ry="2" /> | |
| <text x="36.88" y="415.5" ></text> | |
| </g> | |
| <g > | |
| <title>XIQueryPointer (196,564,808 samples, 0.27%)</title><rect x="24.5" y="565" width="4.3" height="15.0" fill="rgb(212,36,8)" rx="2" ry="2" /> | |
| <text x="27.46" y="575.5" ></text> | |
| </g> | |
| <g > | |
| <title>kmalloc_reserve (13,076,678 samples, 0.02%)</title><rect x="1484.3" y="229" width="0.3" height="15.0" fill="rgb(240,163,39)" rx="2" ry="2" /> | |
| <text x="1487.27" y="239.5" ></text> | |
| </g> | |
| <g > | |
| <title>BitReaderBig_SetBitRate (92,143,018 samples, 0.13%)</title><rect x="1040.5" y="581" width="2.0" height="15.0" fill="rgb(232,124,29)" rx="2" ry="2" /> | |
| <text x="1043.49" y="591.5" ></text> | |
| </g> | |
| <g > | |
| <title>[libc.so.6] (16,578,370 samples, 0.02%)</title><rect x="1461.1" y="341" width="0.4" height="15.0" fill="rgb(223,84,20)" rx="2" ry="2" /> | |
| <text x="1464.15" y="351.5" ></text> | |
| </g> | |
| <g > | |
| <title>__skb_datagram_iter (5,645,201 samples, 0.01%)</title><rect x="37.0" y="149" width="0.2" height="15.0" fill="rgb(244,179,42)" rx="2" ry="2" /> | |
| <text x="40.05" y="159.5" ></text> | |
| </g> | |
| <g > | |
| <title>__arm64_sys_ioctl (638,723,903 samples, 0.88%)</title><rect x="1462.5" y="245" width="14.0" height="15.0" fill="rgb(207,11,2)" rx="2" ry="2" /> | |
| <text x="1465.53" y="255.5" ></text> | |
| </g> | |
| <g > | |
| <title>[libc.so.6] (76,692,767 samples, 0.11%)</title><rect x="29.6" y="453" width="1.6" height="15.0" fill="rgb(223,84,20)" rx="2" ry="2" /> | |
| <text x="32.56" y="463.5" ></text> | |
| </g> | |
| <g > | |
| <title>[libgallium-26.0.5-1.so] (17,845,110 samples, 0.02%)</title><rect x="1510.3" y="453" width="0.4" height="15.0" fill="rgb(216,54,12)" rx="2" ry="2" /> | |
| <text x="1513.33" y="463.5" ></text> | |
| </g> | |
| <g > | |
| <title>[libgallium-26.0.5-1.so] (11,321,778 samples, 0.02%)</title><rect x="10.0" y="693" width="0.3" height="15.0" fill="rgb(216,54,12)" rx="2" ry="2" /> | |
| <text x="13.00" y="703.5" ></text> | |
| </g> | |
| <g > | |
| <title>sock_recvmsg (10,784,092 samples, 0.01%)</title><rect x="1575.6" y="277" width="0.2" height="15.0" fill="rgb(206,5,1)" rx="2" ry="2" /> | |
| <text x="1578.60" y="287.5" ></text> | |
| </g> | |
| <g > | |
| <title>[libgallium-26.0.5-1.so] (5,685,713 samples, 0.01%)</title><rect x="1524.4" y="469" width="0.1" height="15.0" fill="rgb(216,54,12)" rx="2" ry="2" /> | |
| <text x="1527.41" y="479.5" ></text> | |
| </g> | |
| <g > | |
| <title>__sys_recvmsg (5,756,387 samples, 0.01%)</title><rect x="1576.4" y="341" width="0.1" height="15.0" fill="rgb(252,216,51)" rx="2" ry="2" /> | |
| <text x="1579.38" y="351.5" ></text> | |
| </g> | |
| <g > | |
| <title>el0_svc_common.constprop.0 (104,513,322 samples, 0.14%)</title><rect x="1584.7" y="405" width="2.3" height="15.0" fill="rgb(224,89,21)" rx="2" ry="2" /> | |
| <text x="1587.70" y="415.5" ></text> | |
| </g> | |
| <g > | |
| <title>refill_obj_stock (9,168,322 samples, 0.01%)</title><rect x="1585.7" y="181" width="0.2" height="15.0" fill="rgb(239,160,38)" rx="2" ry="2" /> | |
| <text x="1588.70" y="191.5" ></text> | |
| </g> | |
| <g > | |
| <title>[libc.so.6] (36,525,524 samples, 0.05%)</title><rect x="27.7" y="453" width="0.8" height="15.0" fill="rgb(223,84,20)" rx="2" ry="2" /> | |
| <text x="30.67" y="463.5" ></text> | |
| </g> | |
| <g > | |
| <title>___slab_alloc (23,867,840 samples, 0.03%)</title><rect x="1475.0" y="85" width="0.5" height="15.0" fill="rgb(230,115,27)" rx="2" ry="2" /> | |
| <text x="1478.02" y="95.5" ></text> | |
| </g> | |
| <g > | |
| <title>udev_joypad_state (29,507,430 samples, 0.04%)</title><rect x="1579.4" y="629" width="0.6" height="15.0" fill="rgb(219,66,15)" rx="2" ry="2" /> | |
| <text x="1582.39" y="639.5" ></text> | |
| </g> | |
| <g > | |
| <title>invoke_syscall.constprop.0 (50,679,714 samples, 0.07%)</title><rect x="25.5" y="357" width="1.1" height="15.0" fill="rgb(244,183,43)" rx="2" ry="2" /> | |
| <text x="28.46" y="367.5" ></text> | |
| </g> | |
| <g > | |
| <title>invoke_syscall.constprop.0 (11,994,316 samples, 0.02%)</title><rect x="35.6" y="325" width="0.2" height="15.0" fill="rgb(244,183,43)" rx="2" ry="2" /> | |
| <text x="38.57" y="335.5" ></text> | |
| </g> | |
| <g > | |
| <title>el0_svc (146,509,490 samples, 0.20%)</title><rect x="1483.3" y="453" width="3.2" height="15.0" fill="rgb(244,183,43)" rx="2" ry="2" /> | |
| <text x="1486.28" y="463.5" ></text> | |
| </g> | |
| <g > | |
| <title>__arch_copy_from_user (8,393,983 samples, 0.01%)</title><rect x="1463.9" y="197" width="0.2" height="15.0" fill="rgb(254,229,54)" rx="2" ry="2" /> | |
| <text x="1466.91" y="207.5" ></text> | |
| </g> | |
| <g > | |
| <title>[libc.so.6] (7,710,543 samples, 0.01%)</title><rect x="1560.5" y="501" width="0.1" height="15.0" fill="rgb(223,84,20)" rx="2" ry="2" /> | |
| <text x="1563.47" y="511.5" ></text> | |
| </g> | |
| <g > | |
| <title>_XEventsQueued (74,122,867 samples, 0.10%)</title><rect x="1575.0" y="581" width="1.6" height="15.0" fill="rgb(232,125,30)" rx="2" ry="2" /> | |
| <text x="1577.98" y="591.5" ></text> | |
| </g> | |
| <g > | |
| <title>opera_arm_execute (136,332,004 samples, 0.19%)</title><rect x="1418.7" y="629" width="3.0" height="15.0" fill="rgb(235,141,33)" rx="2" ry="2" /> | |
| <text x="1421.68" y="639.5" ></text> | |
| </g> | |
| <g > | |
| <title>[libgallium-26.0.5-1.so] (91,698,178 samples, 0.13%)</title><rect x="1510.2" y="469" width="2.0" height="15.0" fill="rgb(216,54,12)" rx="2" ry="2" /> | |
| <text x="1513.20" y="479.5" ></text> | |
| </g> | |
| <g > | |
| <title>unix_stream_recvmsg (23,836,767 samples, 0.03%)</title><rect x="31.9" y="229" width="0.6" height="15.0" fill="rgb(251,213,51)" rx="2" ry="2" /> | |
| <text x="34.93" y="239.5" ></text> | |
| </g> | |
| <g > | |
| <title>__sys_recvfrom (14,408,420 samples, 0.02%)</title><rect x="27.2" y="293" width="0.3" height="15.0" fill="rgb(247,197,47)" rx="2" ry="2" /> | |
| <text x="30.18" y="303.5" ></text> | |
| </g> | |
| <g > | |
| <title>skb_copy_datagram_iter (14,209,083 samples, 0.02%)</title><rect x="1586.5" y="245" width="0.3" height="15.0" fill="rgb(245,188,45)" rx="2" ry="2" /> | |
| <text x="1589.49" y="255.5" ></text> | |
| </g> | |
| <g > | |
| <title>___sys_recvmsg (93,851,019 samples, 0.13%)</title><rect x="1584.8" y="341" width="2.1" height="15.0" fill="rgb(238,153,36)" rx="2" ry="2" /> | |
| <text x="1587.80" y="351.5" ></text> | |
| </g> | |
| <g > | |
| <title>[libc.so.6] (53,434,956 samples, 0.07%)</title><rect x="1582.3" y="549" width="1.2" height="15.0" fill="rgb(223,84,20)" rx="2" ry="2" /> | |
| <text x="1585.29" y="559.5" ></text> | |
| </g> | |
| <g > | |
| <title>_raw_spin_unlock_irqrestore (16,020,607 samples, 0.02%)</title><rect x="35.1" y="197" width="0.3" height="15.0" fill="rgb(228,106,25)" rx="2" ry="2" /> | |
| <text x="38.07" y="207.5" ></text> | |
| </g> | |
| <g > | |
| <title>___sys_recvmsg (6,473,511 samples, 0.01%)</title><rect x="29.1" y="277" width="0.2" height="15.0" fill="rgb(238,153,36)" rx="2" ry="2" /> | |
| <text x="32.13" y="287.5" ></text> | |
| </g> | |
| <g > | |
| <title>filestream_read (16,959,987 samples, 0.02%)</title><rect x="878.5" y="501" width="0.4" height="15.0" fill="rgb(239,157,37)" rx="2" ry="2" /> | |
| <text x="881.51" y="511.5" ></text> | |
| </g> | |
| <g > | |
| <title>[libgallium-26.0.5-1.so] (2,496,138,552 samples, 3.45%)</title><rect x="1428.4" y="565" width="54.6" height="15.0" fill="rgb(216,54,12)" rx="2" ry="2" /> | |
| <text x="1431.45" y="575.5" >[libg..</text> | |
| </g> | |
| <g > | |
| <title>pa_mutex_unlock (5,614,202 samples, 0.01%)</title><rect x="14.4" y="565" width="0.2" height="15.0" fill="rgb(237,148,35)" rx="2" ry="2" /> | |
| <text x="17.45" y="575.5" ></text> | |
| </g> | |
| <g > | |
| <title>[libpulsecommon-17.0.so] (50,456,042 samples, 0.07%)</title><rect x="1588.1" y="629" width="1.1" height="15.0" fill="rgb(224,88,21)" rx="2" ry="2" /> | |
| <text x="1591.13" y="639.5" ></text> | |
| </g> | |
| <g > | |
| <title>[libc.so.6] (24,748,233 samples, 0.03%)</title><rect x="1486.5" y="485" width="0.6" height="15.0" fill="rgb(223,84,20)" rx="2" ry="2" /> | |
| <text x="1489.54" y="495.5" ></text> | |
| </g> | |
| <g > | |
| <title>invoke_syscall.constprop.0 (7,014,250 samples, 0.01%)</title><rect x="32.8" y="341" width="0.1" height="15.0" fill="rgb(244,183,43)" rx="2" ry="2" /> | |
| <text x="35.78" y="351.5" ></text> | |
| </g> | |
| <g > | |
| <title>queue_work_on (10,091,036 samples, 0.01%)</title><rect x="1478.7" y="197" width="0.2" height="15.0" fill="rgb(248,200,48)" rx="2" ry="2" /> | |
| <text x="1481.66" y="207.5" ></text> | |
| </g> | |
| <g > | |
| <title>[libc.so.6] (14,202,409 samples, 0.02%)</title><rect x="35.5" y="437" width="0.3" height="15.0" fill="rgb(223,84,20)" rx="2" ry="2" /> | |
| <text x="38.53" y="447.5" ></text> | |
| </g> | |
| <g > | |
| <title>do_writev (40,597,469 samples, 0.06%)</title><rect x="1582.5" y="389" width="0.9" height="15.0" fill="rgb(239,157,37)" rx="2" ry="2" /> | |
| <text x="1585.52" y="399.5" ></text> | |
| </g> | |
| <g > | |
| <title>do_el0_svc (15,588,080 samples, 0.02%)</title><rect x="1589.4" y="501" width="0.3" height="15.0" fill="rgb(218,60,14)" rx="2" ry="2" /> | |
| <text x="1592.37" y="511.5" ></text> | |
| </g> | |
| <g > | |
| <title>recvmsg (49,483,285 samples, 0.07%)</title><rect x="1511.0" y="421" width="1.1" height="15.0" fill="rgb(210,25,6)" rx="2" ry="2" /> | |
| <text x="1514.01" y="431.5" ></text> | |
| </g> | |
| <g > | |
| <title>el0_svc (30,691,083 samples, 0.04%)</title><rect x="1581.3" y="437" width="0.7" height="15.0" fill="rgb(244,183,43)" rx="2" ry="2" /> | |
| <text x="1584.32" y="447.5" ></text> | |
| </g> | |
| <g > | |
| <title>__kmalloc_node_track_caller_noprof (6,426,981 samples, 0.01%)</title><rect x="25.7" y="165" width="0.1" height="15.0" fill="rgb(224,89,21)" rx="2" ry="2" /> | |
| <text x="28.67" y="175.5" ></text> | |
| </g> | |
| <g > | |
| <title>drm_sched_init (8,582,460 samples, 0.01%)</title><rect x="1464.3" y="181" width="0.2" height="15.0" fill="rgb(230,116,27)" rx="2" ry="2" /> | |
| <text x="1467.30" y="191.5" ></text> | |
| </g> | |
| <g > | |
| <title>[libgallium-26.0.5-1.so] (8,206,457 samples, 0.01%)</title><rect x="10.0" y="661" width="0.2" height="15.0" fill="rgb(216,54,12)" rx="2" ry="2" /> | |
| <text x="13.01" y="671.5" ></text> | |
| </g> | |
| <g > | |
| <title>el0_svc (7,887,430 samples, 0.01%)</title><rect x="1564.1" y="501" width="0.2" height="15.0" fill="rgb(244,183,43)" rx="2" ry="2" /> | |
| <text x="1567.09" y="511.5" ></text> | |
| </g> | |
| <g > | |
| <title>[libgallium-26.0.5-1.so] (801,539,952 samples, 1.11%)</title><rect x="1542.1" y="485" width="17.6" height="15.0" fill="rgb(216,54,12)" rx="2" ry="2" /> | |
| <text x="1545.15" y="495.5" ></text> | |
| </g> | |
| <g > | |
| <title>__poll (27,662,616 samples, 0.04%)</title><rect x="1486.5" y="533" width="0.6" height="15.0" fill="rgb(250,208,49)" rx="2" ry="2" /> | |
| <text x="1489.48" y="543.5" ></text> | |
| </g> | |
| <g > | |
| <title>el0_svc_common.constprop.0 (15,016,560 samples, 0.02%)</title><rect x="23.5" y="437" width="0.3" height="15.0" fill="rgb(224,89,21)" rx="2" ry="2" /> | |
| <text x="26.46" y="447.5" ></text> | |
| </g> | |
| <g > | |
| <title>obj_cgroup_charge_account (13,634,067 samples, 0.02%)</title><rect x="30.4" y="149" width="0.3" height="15.0" fill="rgb(219,65,15)" rx="2" ry="2" /> | |
| <text x="33.36" y="159.5" ></text> | |
| </g> | |
| <g > | |
| <title>[libc.so.6] (78,859,694 samples, 0.11%)</title><rect x="29.5" y="469" width="1.7" height="15.0" fill="rgb(223,84,20)" rx="2" ry="2" /> | |
| <text x="32.51" y="479.5" ></text> | |
| </g> | |
| <g > | |
| <title>[libc.so.6] (14,904,036 samples, 0.02%)</title><rect x="1507.2" y="341" width="0.3" height="15.0" fill="rgb(223,84,20)" rx="2" ry="2" /> | |
| <text x="1510.22" y="351.5" ></text> | |
| </g> | |
| <g > | |
| <title>el0_svc_common.constprop.0 (12,811,620 samples, 0.02%)</title><rect x="878.0" y="341" width="0.3" height="15.0" fill="rgb(224,89,21)" rx="2" ry="2" /> | |
| <text x="881.00" y="351.5" ></text> | |
| </g> | |
| <g > | |
| <title>el0t_64_sync_handler (17,969,505 samples, 0.02%)</title><rect x="37.3" y="389" width="0.4" height="15.0" fill="rgb(211,32,7)" rx="2" ry="2" /> | |
| <text x="40.33" y="399.5" ></text> | |
| </g> | |
| <g > | |
| <title>drm_sched_entity_init (9,289,341 samples, 0.01%)</title><rect x="1473.9" y="165" width="0.2" height="15.0" fill="rgb(245,184,44)" rx="2" ry="2" /> | |
| <text x="1476.95" y="175.5" ></text> | |
| </g> | |
| <g > | |
| <title>invoke_syscall.constprop.0 (10,736,485 samples, 0.01%)</title><rect x="1588.9" y="421" width="0.2" height="15.0" fill="rgb(244,183,43)" rx="2" ry="2" /> | |
| <text x="1591.87" y="431.5" ></text> | |
| </g> | |
| <g > | |
| <title>__arm64_sys_recvmsg (18,675,699 samples, 0.03%)</title><rect x="1575.6" y="341" width="0.4" height="15.0" fill="rgb(236,144,34)" rx="2" ry="2" /> | |
| <text x="1578.58" y="351.5" ></text> | |
| </g> | |
| <g > | |
| <title>do_el0_svc (11,452,951 samples, 0.02%)</title><rect x="25.0" y="357" width="0.3" height="15.0" fill="rgb(218,60,14)" rx="2" ry="2" /> | |
| <text x="28.04" y="367.5" ></text> | |
| </g> | |
| <g > | |
| <title>skb_free_head (5,085,758 samples, 0.01%)</title><rect x="32.1" y="165" width="0.1" height="15.0" fill="rgb(221,77,18)" rx="2" ry="2" /> | |
| <text x="35.06" y="175.5" ></text> | |
| </g> | |
| <g > | |
| <title>do_el0_svc (12,014,191 samples, 0.02%)</title><rect x="878.6" y="341" width="0.2" height="15.0" fill="rgb(218,60,14)" rx="2" ry="2" /> | |
| <text x="881.59" y="351.5" ></text> | |
| </g> | |
| <g > | |
| <title>sock_recvmsg (5,740,805 samples, 0.01%)</title><rect x="29.1" y="245" width="0.2" height="15.0" fill="rgb(206,5,1)" rx="2" ry="2" /> | |
| <text x="32.13" y="255.5" ></text> | |
| </g> | |
| <g > | |
| <title>sock_alloc_send_pskb (15,222,930 samples, 0.02%)</title><rect x="1582.9" y="293" width="0.3" height="15.0" fill="rgb(210,26,6)" rx="2" ry="2" /> | |
| <text x="1585.85" y="303.5" ></text> | |
| </g> | |
| <g > | |
| <title>xa_find (5,712,965 samples, 0.01%)</title><rect x="1479.6" y="181" width="0.1" height="15.0" fill="rgb(254,226,54)" rx="2" ry="2" /> | |
| <text x="1482.60" y="191.5" ></text> | |
| </g> | |
| <g > | |
| <title>consume_skb (12,900,248 samples, 0.02%)</title><rect x="32.0" y="197" width="0.3" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" /> | |
| <text x="35.03" y="207.5" ></text> | |
| </g> | |
| <g > | |
| <title>opera_clock_push_cycles (251,556,538 samples, 0.35%)</title><rect x="929.7" y="613" width="5.5" height="15.0" fill="rgb(233,132,31)" rx="2" ry="2" /> | |
| <text x="932.67" y="623.5" ></text> | |
| </g> | |
| <g > | |
| <title>el0_svc_common.constprop.0 (8,696,512 samples, 0.01%)</title><rect x="31.4" y="357" width="0.2" height="15.0" fill="rgb(224,89,21)" rx="2" ry="2" /> | |
| <text x="34.37" y="367.5" ></text> | |
| </g> | |
| <g > | |
| <title>el0t_64_sync_handler (17,089,528 samples, 0.02%)</title><rect x="23.4" y="485" width="0.4" height="15.0" fill="rgb(211,32,7)" rx="2" ry="2" /> | |
| <text x="26.41" y="495.5" ></text> | |
| </g> | |
| <g > | |
| <title>invoke_syscall.constprop.0 (14,273,991 samples, 0.02%)</title><rect x="23.5" y="421" width="0.3" height="15.0" fill="rgb(244,183,43)" rx="2" ry="2" /> | |
| <text x="26.47" y="431.5" ></text> | |
| </g> | |
| <g > | |
| <title>[libgallium-26.0.5-1.so] (52,597,805 samples, 0.07%)</title><rect x="1426.8" y="549" width="1.2" height="15.0" fill="rgb(216,54,12)" rx="2" ry="2" /> | |
| <text x="1429.81" y="559.5" ></text> | |
| </g> | |
| <g > | |
| <title>__do_softirq (11,689,935 samples, 0.02%)</title><rect x="783.2" y="453" width="0.2" height="15.0" fill="rgb(246,191,45)" rx="2" ry="2" /> | |
| <text x="786.18" y="463.5" ></text> | |
| </g> | |
| <g > | |
| <title>xcb_poll_for_special_event (11,415,025 samples, 0.02%)</title><rect x="1510.5" y="437" width="0.2" height="15.0" fill="rgb(224,90,21)" rx="2" ry="2" /> | |
| <text x="1513.47" y="447.5" ></text> | |
| </g> | |
| <g > | |
| <title>[libc.so.6] (94,067,680 samples, 0.13%)</title><rect x="1568.3" y="581" width="2.1" height="15.0" fill="rgb(223,84,20)" rx="2" ry="2" /> | |
| <text x="1571.31" y="591.5" ></text> | |
| </g> | |
| <g > | |
| <title>lr_input_update (826,331,696 samples, 1.14%)</title><rect x="21.2" y="629" width="18.1" height="15.0" fill="rgb(230,118,28)" rx="2" ry="2" /> | |
| <text x="24.23" y="639.5" ></text> | |
| </g> | |
| <g > | |
| <title>el0_svc_common.constprop.0 (7,687,026 samples, 0.01%)</title><rect x="32.8" y="357" width="0.1" height="15.0" fill="rgb(224,89,21)" rx="2" ry="2" /> | |
| <text x="35.77" y="367.5" ></text> | |
| </g> | |
| <g > | |
| <title>gl2_raster_font_render_message (2,193,825,153 samples, 3.03%)</title><rect x="1514.0" y="581" width="47.9" height="15.0" fill="rgb(221,76,18)" rx="2" ry="2" /> | |
| <text x="1516.99" y="591.5" >gl2_..</text> | |
| </g> | |
| <g > | |
| <title>el0t_64_sync_handler (37,946,786 samples, 0.05%)</title><rect x="10.7" y="549" width="0.8" height="15.0" fill="rgb(211,32,7)" rx="2" ry="2" /> | |
| <text x="13.67" y="559.5" ></text> | |
| </g> | |
| <g > | |
| <title>recvmsg (33,099,336 samples, 0.05%)</title><rect x="31.8" y="469" width="0.7" height="15.0" fill="rgb(210,25,6)" rx="2" ry="2" /> | |
| <text x="34.76" y="479.5" ></text> | |
| </g> | |
| <g > | |
| <title>el0t_64_sync_handler (8,470,268 samples, 0.01%)</title><rect x="1510.5" y="325" width="0.2" height="15.0" fill="rgb(211,32,7)" rx="2" ry="2" /> | |
| <text x="1513.50" y="335.5" ></text> | |
| </g> | |
| <g > | |
| <title>el0t_64_sync (30,142,192 samples, 0.04%)</title><rect x="31.8" y="405" width="0.7" height="15.0" fill="rgb(217,56,13)" rx="2" ry="2" /> | |
| <text x="34.83" y="415.5" ></text> | |
| </g> | |
| <g > | |
| <title>[libc.so.6] (8,470,268 samples, 0.01%)</title><rect x="1510.5" y="389" width="0.2" height="15.0" fill="rgb(223,84,20)" rx="2" ry="2" /> | |
| <text x="1513.50" y="399.5" ></text> | |
| </g> | |
| <g > | |
| <title>input_get_sensor_state (8,717,926 samples, 0.01%)</title><rect x="22.2" y="581" width="0.2" height="15.0" fill="rgb(214,45,10)" rx="2" ry="2" /> | |
| <text x="25.21" y="591.5" ></text> | |
| </g> | |
| <g > | |
| <title>XPending (78,982,928 samples, 0.11%)</title><rect x="1574.9" y="597" width="1.7" height="15.0" fill="rgb(215,46,11)" rx="2" ry="2" /> | |
| <text x="1577.88" y="607.5" ></text> | |
| </g> | |
| <g > | |
| <title>el0t_64_sync (215,936,843 samples, 0.30%)</title><rect x="1477.3" y="389" width="4.7" height="15.0" fill="rgb(217,56,13)" rx="2" ry="2" /> | |
| <text x="1480.33" y="399.5" ></text> | |
| </g> | |
| <g > | |
| <title>____sys_recvmsg (10,784,092 samples, 0.01%)</title><rect x="1575.6" y="293" width="0.2" height="15.0" fill="rgb(224,90,21)" rx="2" ry="2" /> | |
| <text x="1578.60" y="303.5" ></text> | |
| </g> | |
| <g > | |
| <title>__arm64_sys_unlinkat (37,946,786 samples, 0.05%)</title><rect x="10.7" y="469" width="0.8" height="15.0" fill="rgb(219,66,15)" rx="2" ry="2" /> | |
| <text x="13.67" y="479.5" ></text> | |
| </g> | |
| <g > | |
| <title>[libGLX.so.0.0.0] (12,963,984 samples, 0.02%)</title><rect x="1564.0" y="565" width="0.3" height="15.0" fill="rgb(219,64,15)" rx="2" ry="2" /> | |
| <text x="1566.98" y="575.5" ></text> | |
| </g> | |
| <g > | |
| <title>vfs_write (13,712,775 samples, 0.02%)</title><rect x="13.3" y="325" width="0.3" height="15.0" fill="rgb(250,209,50)" rx="2" ry="2" /> | |
| <text x="16.34" y="335.5" ></text> | |
| </g> | |
| <g > | |
| <title>[libc.so.6] (150,880,191 samples, 0.21%)</title><rect x="1483.2" y="533" width="3.3" height="15.0" fill="rgb(223,84,20)" rx="2" ry="2" /> | |
| <text x="1486.18" y="543.5" ></text> | |
| </g> | |
| <g > | |
| <title>[libc.so.6] (13,731,170 samples, 0.02%)</title><rect x="1576.2" y="469" width="0.3" height="15.0" fill="rgb(223,84,20)" rx="2" ry="2" /> | |
| <text x="1579.24" y="479.5" ></text> | |
| </g> | |
| <g > | |
| <title>[libc.so.6] (188,097,931 samples, 0.26%)</title><rect x="1531.6" y="533" width="4.1" height="15.0" fill="rgb(223,84,20)" rx="2" ry="2" /> | |
| <text x="1534.56" y="543.5" ></text> | |
| </g> | |
| <g > | |
| <title>xbus_cdrom_plugin (123,851,720 samples, 0.17%)</title><rect x="875.8" y="549" width="2.7" height="15.0" fill="rgb(254,229,54)" rx="2" ry="2" /> | |
| <text x="878.79" y="559.5" ></text> | |
| </g> | |
| <g > | |
| <title>[libc.so.6] (20,794,757 samples, 0.03%)</title><rect x="24.8" y="421" width="0.5" height="15.0" fill="rgb(223,84,20)" rx="2" ry="2" /> | |
| <text x="27.84" y="431.5" ></text> | |
| </g> | |
| <g > | |
| <title>el0t_64_sync (12,014,191 samples, 0.02%)</title><rect x="878.6" y="389" width="0.2" height="15.0" fill="rgb(217,56,13)" rx="2" ry="2" /> | |
| <text x="881.59" y="399.5" ></text> | |
| </g> | |
| <g > | |
| <title>[libc.so.6] (11,465,637 samples, 0.02%)</title><rect x="10.0" y="725" width="0.3" height="15.0" fill="rgb(223,84,20)" rx="2" ry="2" /> | |
| <text x="13.00" y="735.5" ></text> | |
| </g> | |
| <g > | |
| <title>do_el0_svc (17,918,533 samples, 0.02%)</title><rect x="1581.6" y="421" width="0.4" height="15.0" fill="rgb(218,60,14)" rx="2" ry="2" /> | |
| <text x="1584.60" y="431.5" ></text> | |
| </g> | |
| <g > | |
| <title>retroarc:gdrv0 (11,465,637 samples, 0.02%)</title><rect x="10.0" y="757" width="0.3" height="15.0" fill="rgb(224,89,21)" rx="2" ry="2" /> | |
| <text x="13.00" y="767.5" ></text> | |
| </g> | |
| <g > | |
| <title>[libc.so.6] (10,936,081 samples, 0.02%)</title><rect x="28.5" y="469" width="0.2" height="15.0" fill="rgb(223,84,20)" rx="2" ry="2" /> | |
| <text x="31.47" y="479.5" ></text> | |
| </g> | |
| <g > | |
| <title>[libgallium-26.0.5-1.so] (167,414,943 samples, 0.23%)</title><rect x="1555.6" y="405" width="3.6" height="15.0" fill="rgb(216,54,12)" rx="2" ry="2" /> | |
| <text x="1558.59" y="415.5" ></text> | |
| </g> | |
| <g > | |
| <title>[libgallium-26.0.5-1.so] (8,659,816 samples, 0.01%)</title><rect x="1565.3" y="581" width="0.2" height="15.0" fill="rgb(216,54,12)" rx="2" ry="2" /> | |
| <text x="1568.33" y="591.5" ></text> | |
| </g> | |
| <g > | |
| <title>recvmsg (20,866,128 samples, 0.03%)</title><rect x="28.9" y="469" width="0.5" height="15.0" fill="rgb(210,25,6)" rx="2" ry="2" /> | |
| <text x="31.91" y="479.5" ></text> | |
| </g> | |
| <g > | |
| <title>[libgallium-26.0.5-1.so] (393,438,893 samples, 0.54%)</title><rect x="1501.1" y="485" width="8.6" height="15.0" fill="rgb(216,54,12)" rx="2" ry="2" /> | |
| <text x="1504.13" y="495.5" ></text> | |
| </g> | |
| <g > | |
| <title>[libc.so.6] (30,877,942 samples, 0.04%)</title><rect x="1455.7" y="389" width="0.7" height="15.0" fill="rgb(223,84,20)" rx="2" ry="2" /> | |
| <text x="1458.70" y="399.5" ></text> | |
| </g> | |
| <g > | |
| <title>drm_sched_fence_release_finished (67,710,974 samples, 0.09%)</title><rect x="1465.4" y="165" width="1.5" height="15.0" fill="rgb(205,2,0)" rx="2" ry="2" /> | |
| <text x="1468.43" y="175.5" ></text> | |
| </g> | |
| <g > | |
| <title>[libc.so.6] (125,885,420 samples, 0.17%)</title><rect x="1567.7" y="597" width="2.7" height="15.0" fill="rgb(223,84,20)" rx="2" ry="2" /> | |
| <text x="1570.67" y="607.5" ></text> | |
| </g> | |
| <g > | |
| <title>[libc.so.6] (13,477,221 samples, 0.02%)</title><rect x="31.3" y="437" width="0.3" height="15.0" fill="rgb(223,84,20)" rx="2" ry="2" /> | |
| <text x="34.26" y="447.5" ></text> | |
| </g> | |
| <g > | |
| <title>input_state_wrap.constprop.1 (7,909,516 samples, 0.01%)</title><rect x="39.0" y="581" width="0.2" height="15.0" fill="rgb(221,78,18)" rx="2" ry="2" /> | |
| <text x="42.02" y="591.5" ></text> | |
| </g> | |
| <g > | |
| <title>security_file_ioctl (5,113,535 samples, 0.01%)</title><rect x="1481.9" y="277" width="0.1" height="15.0" fill="rgb(230,117,28)" rx="2" ry="2" /> | |
| <text x="1484.91" y="287.5" ></text> | |
| </g> | |
| <g > | |
| <title>[libgallium-26.0.5-1.so] (915,281,779 samples, 1.27%)</title><rect x="1539.7" y="501" width="20.0" height="15.0" fill="rgb(216,54,12)" rx="2" ry="2" /> | |
| <text x="1542.68" y="511.5" ></text> | |
| </g> | |
| <g > | |
| <title>loader_dri3_swap_buffers_msc (2,798,476,811 samples, 3.87%)</title><rect x="1426.7" y="597" width="61.1" height="15.0" fill="rgb(205,3,0)" rx="2" ry="2" /> | |
| <text x="1429.70" y="607.5" >loader..</text> | |
| </g> | |
| <g > | |
| <title>[libpulsecommon-17.0.so] (16,469,809 samples, 0.02%)</title><rect x="1588.2" y="597" width="0.3" height="15.0" fill="rgb(224,88,21)" rx="2" ry="2" /> | |
| <text x="1591.17" y="607.5" ></text> | |
| </g> | |
| <g > | |
| <title>dma_resv_add_fence (31,214,862 samples, 0.04%)</title><rect x="1464.7" y="181" width="0.7" height="15.0" fill="rgb(219,65,15)" rx="2" ry="2" /> | |
| <text x="1467.72" y="191.5" ></text> | |
| </g> | |
| <g > | |
| <title>__slab_free (7,802,855 samples, 0.01%)</title><rect x="1585.9" y="197" width="0.2" height="15.0" fill="rgb(222,78,18)" rx="2" ry="2" /> | |
| <text x="1588.90" y="207.5" ></text> | |
| </g> | |
| <g > | |
| <title>[libGLX_mesa.so.0.0.0] (10,716,075 samples, 0.01%)</title><rect x="1426.5" y="597" width="0.2" height="15.0" fill="rgb(229,111,26)" rx="2" ry="2" /> | |
| <text x="1429.46" y="607.5" ></text> | |
| </g> | |
| <g > | |
| <title>el0t_64_sync_handler (651,036,356 samples, 0.90%)</title><rect x="1462.3" y="325" width="14.2" height="15.0" fill="rgb(211,32,7)" rx="2" ry="2" /> | |
| <text x="1465.29" y="335.5" ></text> | |
| </g> | |
| <g > | |
| <title>msm_gem_vm_sm_step_unmap (26,635,031 samples, 0.04%)</title><rect x="1467.6" y="181" width="0.5" height="15.0" fill="rgb(219,67,16)" rx="2" ry="2" /> | |
| <text x="1470.57" y="191.5" ></text> | |
| </g> | |
| <g > | |
| <title>pa_thread_self (11,943,671 samples, 0.02%)</title><rect x="15.0" y="549" width="0.3" height="15.0" fill="rgb(251,213,51)" rx="2" ry="2" /> | |
| <text x="18.04" y="559.5" ></text> | |
| </g> | |
| <g > | |
| <title>[libc.so.6] (48,766,213 samples, 0.07%)</title><rect x="1511.0" y="405" width="1.1" height="15.0" fill="rgb(223,84,20)" rx="2" ry="2" /> | |
| <text x="1514.03" y="415.5" ></text> | |
| </g> | |
| <g > | |
| <title>[libgallium-26.0.5-1.so] (1,021,383,372 samples, 1.41%)</title><rect x="1537.4" y="517" width="22.3" height="15.0" fill="rgb(216,54,12)" rx="2" ry="2" /> | |
| <text x="1540.36" y="527.5" >[..</text> | |
| </g> | |
| <g > | |
| <title>msm_gpu_create_private_vm (36,912,031 samples, 0.05%)</title><rect x="1473.6" y="197" width="0.8" height="15.0" fill="rgb(210,26,6)" rx="2" ry="2" /> | |
| <text x="1476.60" y="207.5" ></text> | |
| </g> | |
| <g > | |
| <title>el0t_64_sync_handler (16,729,119 samples, 0.02%)</title><rect x="1589.3" y="533" width="0.4" height="15.0" fill="rgb(211,32,7)" rx="2" ry="2" /> | |
| <text x="1592.34" y="543.5" ></text> | |
| </g> | |
| <g > | |
| <title>__memcg_slab_free_hook (11,917,797 samples, 0.02%)</title><rect x="36.6" y="117" width="0.3" height="15.0" fill="rgb(231,123,29)" rx="2" ry="2" /> | |
| <text x="39.62" y="127.5" ></text> | |
| </g> | |
| <g > | |
| <title>pa_write (18,861,514 samples, 0.03%)</title><rect x="13.2" y="517" width="0.4" height="15.0" fill="rgb(214,43,10)" rx="2" ry="2" /> | |
| <text x="16.23" y="527.5" ></text> | |
| </g> | |
| <g > | |
| <title>sock_write_iter (31,868,456 samples, 0.04%)</title><rect x="1582.6" y="341" width="0.7" height="15.0" fill="rgb(243,178,42)" rx="2" ry="2" /> | |
| <text x="1585.58" y="351.5" ></text> | |
| </g> | |
| <g > | |
| <title>do_sys_poll (16,576,052 samples, 0.02%)</title><rect x="1587.3" y="373" width="0.4" height="15.0" fill="rgb(219,68,16)" rx="2" ry="2" /> | |
| <text x="1590.29" y="383.5" ></text> | |
| </g> | |
| <g > | |
| <title>__memcg_slab_free_hook (16,357,797 samples, 0.02%)</title><rect x="1585.5" y="197" width="0.4" height="15.0" fill="rgb(231,123,29)" rx="2" ry="2" /> | |
| <text x="1588.54" y="207.5" ></text> | |
| </g> | |
| <g > | |
| <title>xa_find (16,667,337 samples, 0.02%)</title><rect x="1468.9" y="133" width="0.3" height="15.0" fill="rgb(254,226,54)" rx="2" ry="2" /> | |
| <text x="1471.86" y="143.5" ></text> | |
| </g> | |
| <g > | |
| <title>[libc.so.6] (5,811,466 samples, 0.01%)</title><rect x="1443.6" y="437" width="0.1" height="15.0" fill="rgb(223,84,20)" rx="2" ry="2" /> | |
| <text x="1446.56" y="447.5" ></text> | |
| </g> | |
| <g > | |
| <title>[libgallium-26.0.5-1.so] (666,065,867 samples, 0.92%)</title><rect x="1545.1" y="453" width="14.6" height="15.0" fill="rgb(216,54,12)" rx="2" ry="2" /> | |
| <text x="1548.10" y="463.5" ></text> | |
| </g> | |
| <g > | |
| <title>[libxcb.so.1.1.0] (42,391,933 samples, 0.06%)</title><rect x="1575.1" y="533" width="0.9" height="15.0" fill="rgb(226,98,23)" rx="2" ry="2" /> | |
| <text x="1578.09" y="543.5" ></text> | |
| </g> | |
| <g > | |
| <title>retro_run (64,541,304,761 samples, 89.22%)</title><rect x="12.1" y="645" width="1409.7" height="15.0" fill="rgb(205,1,0)" rx="2" ry="2" /> | |
| <text x="15.14" y="655.5" >retro_run</text> | |
| </g> | |
| <g > | |
| <title>copy_page_to_iter (5,265,178 samples, 0.01%)</title><rect x="878.6" y="229" width="0.1" height="15.0" fill="rgb(209,22,5)" rx="2" ry="2" /> | |
| <text x="881.63" y="239.5" ></text> | |
| </g> | |
| <g > | |
| <title>simple_copy_to_iter (5,847,941 samples, 0.01%)</title><rect x="28.3" y="149" width="0.1" height="15.0" fill="rgb(228,110,26)" rx="2" ry="2" /> | |
| <text x="31.26" y="159.5" ></text> | |
| </g> | |
| <g > | |
| <title>ioctl (653,917,764 samples, 0.90%)</title><rect x="1462.2" y="357" width="14.3" height="15.0" fill="rgb(231,122,29)" rx="2" ry="2" /> | |
| <text x="1465.23" y="367.5" ></text> | |
| </g> | |
| <g > | |
| <title>[libc.so.6] (33,099,336 samples, 0.05%)</title><rect x="31.8" y="453" width="0.7" height="15.0" fill="rgb(223,84,20)" rx="2" ry="2" /> | |
| <text x="34.76" y="463.5" ></text> | |
| </g> | |
| <g > | |
| <title>[libc.so.6] (18,569,297 samples, 0.03%)</title><rect x="32.5" y="437" width="0.4" height="15.0" fill="rgb(223,84,20)" rx="2" ry="2" /> | |
| <text x="35.53" y="447.5" ></text> | |
| </g> | |
| <g > | |
| <title>invoke_syscall.constprop.0 (19,415,135 samples, 0.03%)</title><rect x="1575.6" y="357" width="0.4" height="15.0" fill="rgb(244,183,43)" rx="2" ry="2" /> | |
| <text x="1578.56" y="367.5" ></text> | |
| </g> | |
| <g > | |
| <title>[libc.so.6] (12,699,669 samples, 0.02%)</title><rect x="878.6" y="405" width="0.2" height="15.0" fill="rgb(223,84,20)" rx="2" ry="2" /> | |
| <text x="881.57" y="415.5" ></text> | |
| </g> | |
| <g > | |
| <title>[libGLX.so.0.0.0] (44,710,160 samples, 0.06%)</title><rect x="1563.8" y="597" width="0.9" height="15.0" fill="rgb(219,64,15)" rx="2" ry="2" /> | |
| <text x="1566.76" y="607.5" ></text> | |
| </g> | |
| <g > | |
| <title>[libxcb.so.1.1.0] (95,949,832 samples, 0.13%)</title><rect x="33.8" y="485" width="2.1" height="15.0" fill="rgb(226,98,23)" rx="2" ry="2" /> | |
| <text x="36.77" y="495.5" ></text> | |
| </g> | |
| <g > | |
| <title>el0t_64_sync (651,036,356 samples, 0.90%)</title><rect x="1462.3" y="341" width="14.2" height="15.0" fill="rgb(217,56,13)" rx="2" ry="2" /> | |
| <text x="1465.29" y="351.5" ></text> | |
| </g> | |
| <g > | |
| <title>drm_exec_lock_obj (67,265,268 samples, 0.09%)</title><rect x="1471.5" y="149" width="1.4" height="15.0" fill="rgb(236,142,34)" rx="2" ry="2" /> | |
| <text x="1474.47" y="159.5" ></text> | |
| </g> | |
| <g > | |
| <title>el0_svc_common.constprop.0 (21,626,245 samples, 0.03%)</title><rect x="1427.5" y="373" width="0.4" height="15.0" fill="rgb(224,89,21)" rx="2" ry="2" /> | |
| <text x="1430.45" y="383.5" ></text> | |
| </g> | |
| <g > | |
| <title>invoke_syscall.constprop.0 (10,209,977 samples, 0.01%)</title><rect x="33.4" y="309" width="0.2" height="15.0" fill="rgb(244,183,43)" rx="2" ry="2" /> | |
| <text x="36.42" y="319.5" ></text> | |
| </g> | |
| <g > | |
| <title>retroarch_main_quit (5,900,605 samples, 0.01%)</title><rect x="1573.5" y="661" width="0.1" height="15.0" fill="rgb(237,147,35)" rx="2" ry="2" /> | |
| <text x="1576.47" y="671.5" ></text> | |
| </g> | |
| <g > | |
| <title>el0t_64_irq (11,689,935 samples, 0.02%)</title><rect x="783.2" y="597" width="0.2" height="15.0" fill="rgb(247,194,46)" rx="2" ry="2" /> | |
| <text x="786.18" y="607.5" ></text> | |
| </g> | |
| <g > | |
| <title>[libc.so.6] (19,321,478 samples, 0.03%)</title><rect x="1589.3" y="581" width="0.4" height="15.0" fill="rgb(223,84,20)" rx="2" ry="2" /> | |
| <text x="1592.29" y="591.5" ></text> | |
| </g> | |
| <g > | |
| <title>el0t_64_sync_handler (13,110,914 samples, 0.02%)</title><rect x="1564.4" y="549" width="0.3" height="15.0" fill="rgb(211,32,7)" rx="2" ry="2" /> | |
| <text x="1567.38" y="559.5" ></text> | |
| </g> | |
| <g > | |
| <title>do_el0_svc (73,879,781 samples, 0.10%)</title><rect x="29.6" y="389" width="1.6" height="15.0" fill="rgb(218,60,14)" rx="2" ry="2" /> | |
| <text x="32.62" y="399.5" ></text> | |
| </g> | |
| <g > | |
| <title>do_el0_svc (15,016,560 samples, 0.02%)</title><rect x="23.5" y="453" width="0.3" height="15.0" fill="rgb(218,60,14)" rx="2" ry="2" /> | |
| <text x="26.46" y="463.5" ></text> | |
| </g> | |
| <g > | |
| <title>opera_lr_dsp_process (36,059,138 samples, 0.05%)</title><rect x="484.3" y="597" width="0.8" height="15.0" fill="rgb(215,47,11)" rx="2" ry="2" /> | |
| <text x="487.27" y="607.5" ></text> | |
| </g> | |
| <g > | |
| <title>sock_write_iter (66,737,885 samples, 0.09%)</title><rect x="29.7" y="277" width="1.5" height="15.0" fill="rgb(243,178,42)" rx="2" ry="2" /> | |
| <text x="32.71" y="287.5" ></text> | |
| </g> | |
| <g > | |
| <title>el0_svc_common.constprop.0 (26,740,957 samples, 0.04%)</title><rect x="31.9" y="341" width="0.6" height="15.0" fill="rgb(224,89,21)" rx="2" ry="2" /> | |
| <text x="34.90" y="351.5" ></text> | |
| </g> | |
| <g > | |
| <title>[libc.so.6] (19,321,478 samples, 0.03%)</title><rect x="1589.3" y="597" width="0.4" height="15.0" fill="rgb(223,84,20)" rx="2" ry="2" /> | |
| <text x="1592.29" y="607.5" ></text> | |
| </g> | |
| <g > | |
| <title>[libpulsecommon-17.0.so] (45,821,014 samples, 0.06%)</title><rect x="1588.1" y="613" width="1.0" height="15.0" fill="rgb(224,88,21)" rx="2" ry="2" /> | |
| <text x="1591.13" y="623.5" ></text> | |
| </g> | |
| <g > | |
| <title>xas_find (10,073,144 samples, 0.01%)</title><rect x="1469.0" y="117" width="0.2" height="15.0" fill="rgb(211,29,7)" rx="2" ry="2" /> | |
| <text x="1471.95" y="127.5" ></text> | |
| </g> | |
| <g > | |
| <title>[libgallium-26.0.5-1.so] (8,018,474 samples, 0.01%)</title><rect x="10.0" y="629" width="0.2" height="15.0" fill="rgb(216,54,12)" rx="2" ry="2" /> | |
| <text x="13.01" y="639.5" ></text> | |
| </g> | |
| <g > | |
| <title>__sock_sendmsg (117,935,624 samples, 0.16%)</title><rect x="1483.6" y="309" width="2.6" height="15.0" fill="rgb(217,57,13)" rx="2" ry="2" /> | |
| <text x="1486.65" y="319.5" ></text> | |
| </g> | |
| <g > | |
| <title>filestream_read (16,380,781 samples, 0.02%)</title><rect x="877.9" y="517" width="0.4" height="15.0" fill="rgb(239,157,37)" rx="2" ry="2" /> | |
| <text x="880.92" y="527.5" ></text> | |
| </g> | |
| <g > | |
| <title>__el0_irq_handler_common (11,689,935 samples, 0.02%)</title><rect x="783.2" y="565" width="0.2" height="15.0" fill="rgb(206,5,1)" rx="2" ry="2" /> | |
| <text x="786.18" y="575.5" ></text> | |
| </g> | |
| <g > | |
| <title>alloc_skb_with_frags (55,821,767 samples, 0.08%)</title><rect x="1484.2" y="261" width="1.2" height="15.0" fill="rgb(228,107,25)" rx="2" ry="2" /> | |
| <text x="1487.18" y="271.5" ></text> | |
| </g> | |
| <g > | |
| <title>__skb_datagram_iter (12,183,252 samples, 0.02%)</title><rect x="1586.5" y="229" width="0.3" height="15.0" fill="rgb(244,179,42)" rx="2" ry="2" /> | |
| <text x="1589.52" y="239.5" ></text> | |
| </g> | |
| <g > | |
| <title>simple_copy_to_iter (4,900,864 samples, 0.01%)</title><rect x="37.1" y="133" width="0.1" height="15.0" fill="rgb(228,110,26)" rx="2" ry="2" /> | |
| <text x="40.06" y="143.5" ></text> | |
| </g> | |
| <g > | |
| <title>el0t_64_sync (9,433,409 samples, 0.01%)</title><rect x="14.7" y="517" width="0.2" height="15.0" fill="rgb(217,56,13)" rx="2" ry="2" /> | |
| <text x="17.66" y="527.5" ></text> | |
| </g> | |
| <g > | |
| <title>[libc.so.6] (52,702,137 samples, 0.07%)</title><rect x="36.1" y="437" width="1.2" height="15.0" fill="rgb(223,84,20)" rx="2" ry="2" /> | |
| <text x="39.14" y="447.5" ></text> | |
| </g> | |
| <g > | |
| <title>xcb_poll_for_special_event (20,315,758 samples, 0.03%)</title><rect x="1428.0" y="565" width="0.4" height="15.0" fill="rgb(224,90,21)" rx="2" ry="2" /> | |
| <text x="1430.97" y="575.5" ></text> | |
| </g> | |
| <g > | |
| <title>BitReaderBig_Read (964,614,809 samples, 1.33%)</title><rect x="1021.4" y="597" width="21.1" height="15.0" fill="rgb(227,103,24)" rx="2" ry="2" /> | |
| <text x="1024.43" y="607.5" ></text> | |
| </g> | |
| <g > | |
| <title>[libc.so.6] (53,539,570 samples, 0.07%)</title><rect x="25.4" y="453" width="1.2" height="15.0" fill="rgb(223,84,20)" rx="2" ry="2" /> | |
| <text x="28.40" y="463.5" ></text> | |
| </g> | |
| <g > | |
| <title>opera_clio_poke (237,694,097 samples, 0.33%)</title><rect x="874.0" y="581" width="5.2" height="15.0" fill="rgb(213,38,9)" rx="2" ry="2" /> | |
| <text x="876.98" y="591.5" ></text> | |
| </g> | |
| <g > | |
| <title>opera_cdrom_send_cmd (26,097,156 samples, 0.04%)</title><rect x="878.5" y="533" width="0.6" height="15.0" fill="rgb(231,123,29)" rx="2" ry="2" /> | |
| <text x="881.49" y="543.5" ></text> | |
| </g> | |
| <g > | |
| <title>el0_svc_common.constprop.0 (10,714,404 samples, 0.01%)</title><rect x="37.5" y="341" width="0.2" height="15.0" fill="rgb(224,89,21)" rx="2" ry="2" /> | |
| <text x="40.48" y="351.5" ></text> | |
| </g> | |
| <g > | |
| <title>el0_svc_common.constprop.0 (17,198,744 samples, 0.02%)</title><rect x="1581.6" y="405" width="0.4" height="15.0" fill="rgb(224,89,21)" rx="2" ry="2" /> | |
| <text x="1584.60" y="415.5" ></text> | |
| </g> | |
| <g > | |
| <title>[libc.so.6] (14,202,409 samples, 0.02%)</title><rect x="35.5" y="421" width="0.3" height="15.0" fill="rgb(223,84,20)" rx="2" ry="2" /> | |
| <text x="38.53" y="431.5" ></text> | |
| </g> | |
| <g > | |
| <title>[libc.so.6] (34,505,151 samples, 0.05%)</title><rect x="1505.6" y="373" width="0.8" height="15.0" fill="rgb(223,84,20)" rx="2" ry="2" /> | |
| <text x="1508.62" y="383.5" ></text> | |
| </g> | |
| <g > | |
| <title>unix_stream_sendmsg (28,220,105 samples, 0.04%)</title><rect x="1582.7" y="309" width="0.6" height="15.0" fill="rgb(240,161,38)" rx="2" ry="2" /> | |
| <text x="1585.66" y="319.5" ></text> | |
| </g> | |
| <g > | |
| <title>kfree (6,423,362 samples, 0.01%)</title><rect x="28.0" y="149" width="0.1" height="15.0" fill="rgb(222,78,18)" rx="2" ry="2" /> | |
| <text x="31.00" y="159.5" ></text> | |
| </g> | |
| <g > | |
| <title>[libgallium-26.0.5-1.so] (1,127,103,057 samples, 1.56%)</title><rect x="1452.1" y="421" width="24.7" height="15.0" fill="rgb(216,54,12)" rx="2" ry="2" /> | |
| <text x="1455.15" y="431.5" >[..</text> | |
| </g> | |
| <g > | |
| <title>__skb_datagram_iter (6,573,786 samples, 0.01%)</title><rect x="28.2" y="165" width="0.2" height="15.0" fill="rgb(244,179,42)" rx="2" ry="2" /> | |
| <text x="31.25" y="175.5" ></text> | |
| </g> | |
| <g > | |
| <title>ARM_SHIFT_NSC (494,658,126 samples, 0.68%)</title><rect x="772.4" y="597" width="10.8" height="15.0" fill="rgb(248,200,47)" rx="2" ry="2" /> | |
| <text x="775.37" y="607.5" ></text> | |
| </g> | |
| <g > | |
| <title>pa_mainloop_wakeup (18,861,514 samples, 0.03%)</title><rect x="13.2" y="533" width="0.4" height="15.0" fill="rgb(242,174,41)" rx="2" ry="2" /> | |
| <text x="16.23" y="543.5" ></text> | |
| </g> | |
| <g > | |
| <title>pa_stream_writable_size (15,029,565 samples, 0.02%)</title><rect x="12.9" y="565" width="0.3" height="15.0" fill="rgb(206,5,1)" rx="2" ry="2" /> | |
| <text x="15.85" y="575.5" ></text> | |
| </g> | |
| <g > | |
| <title>el0_interrupt (10,620,955 samples, 0.01%)</title><rect x="481.2" y="517" width="0.2" height="15.0" fill="rgb(247,195,46)" rx="2" ry="2" /> | |
| <text x="484.18" y="527.5" ></text> | |
| </g> | |
| <g > | |
| <title>msm_devfreq_get_dev_status (22,223,422 samples, 0.03%)</title><rect x="1479.0" y="245" width="0.4" height="15.0" fill="rgb(224,89,21)" rx="2" ry="2" /> | |
| <text x="1481.96" y="255.5" ></text> | |
| </g> | |
| <g > | |
| <title>unix_stream_recvmsg (34,769,197 samples, 0.05%)</title><rect x="36.4" y="213" width="0.8" height="15.0" fill="rgb(251,213,51)" rx="2" ry="2" /> | |
| <text x="39.41" y="223.5" ></text> | |
| </g> | |
| <g > | |
| <title>driver_uninit (10,318,855 samples, 0.01%)</title><rect x="10.4" y="613" width="0.2" height="15.0" fill="rgb(205,0,0)" rx="2" ry="2" /> | |
| <text x="13.38" y="623.5" ></text> | |
| </g> | |
| <g > | |
| <title>pa_mainloop_iterate (87,973,133 samples, 0.12%)</title><rect x="1588.1" y="661" width="1.9" height="15.0" fill="rgb(216,51,12)" rx="2" ry="2" /> | |
| <text x="1591.08" y="671.5" ></text> | |
| </g> | |
| <g > | |
| <title>[libc.so.6] (20,569,233 samples, 0.03%)</title><rect x="32.5" y="453" width="0.4" height="15.0" fill="rgb(223,84,20)" rx="2" ry="2" /> | |
| <text x="35.49" y="463.5" ></text> | |
| </g> | |
| <g > | |
| <title>__poll (33,661,973 samples, 0.05%)</title><rect x="1587.0" y="549" width="0.7" height="15.0" fill="rgb(250,208,49)" rx="2" ry="2" /> | |
| <text x="1589.98" y="559.5" ></text> | |
| </g> | |
| <g > | |
| <title>unix_stream_read_generic (5,664,548 samples, 0.01%)</title><rect x="1511.6" y="165" width="0.2" height="15.0" fill="rgb(244,180,43)" rx="2" ry="2" /> | |
| <text x="1514.64" y="175.5" ></text> | |
| </g> | |
| <g > | |
| <title>[libc.so.6] (36,662,346 samples, 0.05%)</title><rect x="1575.2" y="453" width="0.8" height="15.0" fill="rgb(223,84,20)" rx="2" ry="2" /> | |
| <text x="1578.19" y="463.5" ></text> | |
| </g> | |
| <g > | |
| <title>mutex_spin_on_owner (10,015,540 samples, 0.01%)</title><rect x="1479.2" y="197" width="0.2" height="15.0" fill="rgb(217,57,13)" rx="2" ry="2" /> | |
| <text x="1482.22" y="207.5" ></text> | |
| </g> | |
| <g > | |
| <title>[libc.so.6] (48,090,448 samples, 0.07%)</title><rect x="1511.0" y="373" width="1.1" height="15.0" fill="rgb(223,84,20)" rx="2" ry="2" /> | |
| <text x="1514.04" y="383.5" ></text> | |
| </g> | |
| <g > | |
| <title>runloop_iterate (72,176,148,330 samples, 99.77%)</title><rect x="11.7" y="677" width="1576.3" height="15.0" fill="rgb(246,192,46)" rx="2" ry="2" /> | |
| <text x="14.68" y="687.5" >runloop_iterate</text> | |
| </g> | |
| <g > | |
| <title>input_joypad_analog_axis (20,973,568 samples, 0.03%)</title><rect x="38.3" y="581" width="0.5" height="15.0" fill="rgb(208,16,3)" rx="2" ry="2" /> | |
| <text x="41.33" y="591.5" ></text> | |
| </g> | |
| <g > | |
| <title>recvmsg (20,794,757 samples, 0.03%)</title><rect x="24.8" y="469" width="0.5" height="15.0" fill="rgb(210,25,6)" rx="2" ry="2" /> | |
| <text x="27.84" y="479.5" ></text> | |
| </g> | |
| <g > | |
| <title>[libX11.so.6.4.0] (22,980,815 samples, 0.03%)</title><rect x="24.8" y="517" width="0.5" height="15.0" fill="rgb(220,73,17)" rx="2" ry="2" /> | |
| <text x="27.81" y="527.5" ></text> | |
| </g> | |
| <g > | |
| <title>[libc.so.6] (5,152,158 samples, 0.01%)</title><rect x="1506.3" y="341" width="0.1" height="15.0" fill="rgb(223,84,20)" rx="2" ry="2" /> | |
| <text x="1509.26" y="351.5" ></text> | |
| </g> | |
| <g > | |
| <title>[libc.so.6] (18,545,308 samples, 0.03%)</title><rect x="23.4" y="517" width="0.4" height="15.0" fill="rgb(223,84,20)" rx="2" ry="2" /> | |
| <text x="26.38" y="527.5" ></text> | |
| </g> | |
| <g > | |
| <title>do_el0_svc (12,811,620 samples, 0.02%)</title><rect x="878.0" y="357" width="0.3" height="15.0" fill="rgb(218,60,14)" rx="2" ry="2" /> | |
| <text x="881.00" y="367.5" ></text> | |
| </g> | |
| <g > | |
| <title>[libpulsecommon-17.0.so] (87,973,133 samples, 0.12%)</title><rect x="1588.1" y="709" width="1.9" height="15.0" fill="rgb(224,88,21)" rx="2" ry="2" /> | |
| <text x="1591.08" y="719.5" ></text> | |
| </g> | |
| <g > | |
| <title>invoke_syscall.constprop.0 (11,512,784 samples, 0.02%)</title><rect x="1583.6" y="405" width="0.3" height="15.0" fill="rgb(244,183,43)" rx="2" ry="2" /> | |
| <text x="1586.65" y="415.5" ></text> | |
| </g> | |
| <g > | |
| <title>[libpulse.so.0.24.3] (7,989,464 samples, 0.01%)</title><rect x="1588.2" y="565" width="0.2" height="15.0" fill="rgb(246,191,45)" rx="2" ry="2" /> | |
| <text x="1591.19" y="575.5" ></text> | |
| </g> | |
| <g > | |
| <title>input_state_wrap.constprop.0 (61,700,360 samples, 0.09%)</title><rect x="1578.0" y="629" width="1.4" height="15.0" fill="rgb(228,107,25)" rx="2" ry="2" /> | |
| <text x="1581.04" y="639.5" ></text> | |
| </g> | |
| <g > | |
| <title>invoke_syscall.constprop.0 (43,514,451 samples, 0.06%)</title><rect x="1582.5" y="421" width="1.0" height="15.0" fill="rgb(244,183,43)" rx="2" ry="2" /> | |
| <text x="1585.51" y="431.5" ></text> | |
| </g> | |
| <g > | |
| <title>input_driver_state_wrapper (52,596,412 samples, 0.07%)</title><rect x="38.1" y="613" width="1.1" height="15.0" fill="rgb(254,229,54)" rx="2" ry="2" /> | |
| <text x="41.06" y="623.5" ></text> | |
| </g> | |
| <g > | |
| <title>_IO_fread (16,243,080 samples, 0.02%)</title><rect x="878.5" y="485" width="0.4" height="15.0" fill="rgb(233,132,31)" rx="2" ry="2" /> | |
| <text x="881.51" y="495.5" ></text> | |
| </g> | |
| <g > | |
| <title>[libgallium-26.0.5-1.so] (235,689,062 samples, 0.33%)</title><rect x="1554.1" y="437" width="5.2" height="15.0" fill="rgb(216,54,12)" rx="2" ry="2" /> | |
| <text x="1557.15" y="447.5" ></text> | |
| </g> | |
| <g > | |
| <title>__arm64_sys_recvmsg (25,990,615 samples, 0.04%)</title><rect x="31.9" y="309" width="0.6" height="15.0" fill="rgb(236,144,34)" rx="2" ry="2" /> | |
| <text x="34.90" y="319.5" ></text> | |
| </g> | |
| <g > | |
| <title>el0_svc (12,014,191 samples, 0.02%)</title><rect x="878.6" y="357" width="0.2" height="15.0" fill="rgb(244,183,43)" rx="2" ry="2" /> | |
| <text x="881.59" y="367.5" ></text> | |
| </g> | |
| <g > | |
| <title>do_sys_poll (9,852,726 samples, 0.01%)</title><rect x="1589.4" y="437" width="0.3" height="15.0" fill="rgb(219,68,16)" rx="2" ry="2" /> | |
| <text x="1592.44" y="447.5" ></text> | |
| </g> | |
| <g > | |
| <title>[libX11.so.6.4.0] (21,563,336 samples, 0.03%)</title><rect x="33.2" y="517" width="0.5" height="15.0" fill="rgb(220,73,17)" rx="2" ry="2" /> | |
| <text x="36.22" y="527.5" ></text> | |
| </g> | |
| <g > | |
| <title>[libc.so.6] (20,315,758 samples, 0.03%)</title><rect x="1428.0" y="485" width="0.4" height="15.0" fill="rgb(223,84,20)" rx="2" ry="2" /> | |
| <text x="1430.97" y="495.5" ></text> | |
| </g> | |
| <g > | |
| <title>__arch_copy_to_user (5,265,178 samples, 0.01%)</title><rect x="878.6" y="213" width="0.1" height="15.0" fill="rgb(205,0,0)" rx="2" ry="2" /> | |
| <text x="881.63" y="223.5" ></text> | |
| </g> | |
| <g > | |
| <title>x11_check_window (83,218,442 samples, 0.12%)</title><rect x="1574.8" y="629" width="1.9" height="15.0" fill="rgb(244,179,42)" rx="2" ry="2" /> | |
| <text x="1577.84" y="639.5" ></text> | |
| </g> | |
| <g > | |
| <title>realloc (7,784,550 samples, 0.01%)</title><rect x="1509.5" y="421" width="0.2" height="15.0" fill="rgb(246,189,45)" rx="2" ry="2" /> | |
| <text x="1512.50" y="431.5" ></text> | |
| </g> | |
| <g > | |
| <title>invoke_syscall.constprop.0 (7,981,381 samples, 0.01%)</title><rect x="1576.3" y="373" width="0.2" height="15.0" fill="rgb(244,183,43)" rx="2" ry="2" /> | |
| <text x="1579.35" y="383.5" ></text> | |
| </g> | |
| <g > | |
| <title>[libX11.so.6.4.0] (24,457,794 samples, 0.03%)</title><rect x="28.9" y="533" width="0.5" height="15.0" fill="rgb(220,73,17)" rx="2" ry="2" /> | |
| <text x="31.88" y="543.5" ></text> | |
| </g> | |
| <g > | |
| <title>skb_copy_datagram_from_iter (5,653,258 samples, 0.01%)</title><rect x="1484.0" y="277" width="0.1" height="15.0" fill="rgb(215,49,11)" rx="2" ry="2" /> | |
| <text x="1487.01" y="287.5" ></text> | |
| </g> | |
| <g > | |
| <title>el0t_64_sync_handler (14,202,409 samples, 0.02%)</title><rect x="35.5" y="389" width="0.3" height="15.0" fill="rgb(211,32,7)" rx="2" ry="2" /> | |
| <text x="38.53" y="399.5" ></text> | |
| </g> | |
| <g > | |
| <title>[libgallium-26.0.5-1.so] (2,004,628,455 samples, 2.77%)</title><rect x="1438.8" y="469" width="43.8" height="15.0" fill="rgb(216,54,12)" rx="2" ry="2" /> | |
| <text x="1441.78" y="479.5" >[lib..</text> | |
| </g> | |
| <g > | |
| <title>[libc.so.6] (18,446,787 samples, 0.03%)</title><rect x="1560.2" y="517" width="0.4" height="15.0" fill="rgb(223,84,20)" rx="2" ry="2" /> | |
| <text x="1563.24" y="527.5" ></text> | |
| </g> | |
| <g > | |
| <title>__kmalloc_node_track_caller_noprof (7,292,661 samples, 0.01%)</title><rect x="34.4" y="149" width="0.2" height="15.0" fill="rgb(224,89,21)" rx="2" ry="2" /> | |
| <text x="37.42" y="159.5" ></text> | |
| </g> | |
| <g > | |
| <title>___sys_recvmsg (19,923,476 samples, 0.03%)</title><rect x="1511.5" y="229" width="0.4" height="15.0" fill="rgb(238,153,36)" rx="2" ry="2" /> | |
| <text x="1514.49" y="239.5" ></text> | |
| </g> | |
| <g > | |
| <title>___sys_recvmsg (25,990,615 samples, 0.04%)</title><rect x="31.9" y="277" width="0.6" height="15.0" fill="rgb(238,153,36)" rx="2" ry="2" /> | |
| <text x="34.90" y="287.5" ></text> | |
| </g> | |
| <g > | |
| <title>el0_svc_common.constprop.0 (15,588,080 samples, 0.02%)</title><rect x="1589.4" y="485" width="0.3" height="15.0" fill="rgb(224,89,21)" rx="2" ry="2" /> | |
| <text x="1592.37" y="495.5" ></text> | |
| </g> | |
| <g > | |
| <title>[libc.so.6] (121,111,203 samples, 0.17%)</title><rect x="1584.3" y="501" width="2.7" height="15.0" fill="rgb(223,84,20)" rx="2" ry="2" /> | |
| <text x="1587.33" y="511.5" ></text> | |
| </g> | |
| <g > | |
| <title>__sock_sendmsg (57,785,482 samples, 0.08%)</title><rect x="34.2" y="245" width="1.2" height="15.0" fill="rgb(217,57,13)" rx="2" ry="2" /> | |
| <text x="37.15" y="255.5" ></text> | |
| </g> | |
| <g > | |
| <title>[libgallium-26.0.5-1.so] (7,066,232 samples, 0.01%)</title><rect x="1565.6" y="597" width="0.1" height="15.0" fill="rgb(216,54,12)" rx="2" ry="2" /> | |
| <text x="1568.56" y="607.5" ></text> | |
| </g> | |
| <g > | |
| <title>el0t_64_sync_handler (14,194,347 samples, 0.02%)</title><rect x="878.0" y="389" width="0.3" height="15.0" fill="rgb(211,32,7)" rx="2" ry="2" /> | |
| <text x="880.97" y="399.5" ></text> | |
| </g> | |
| <g > | |
| <title>[libc.so.6] (7,849,809 samples, 0.01%)</title><rect x="1558.3" y="357" width="0.2" height="15.0" fill="rgb(223,84,20)" rx="2" ry="2" /> | |
| <text x="1561.34" y="367.5" ></text> | |
| </g> | |
| <g > | |
| <title>loader_dri3_get_buffers (111,096,405 samples, 0.15%)</title><rect x="1509.9" y="501" width="2.4" height="15.0" fill="rgb(250,209,50)" rx="2" ry="2" /> | |
| <text x="1512.90" y="511.5" ></text> | |
| </g> | |
| <g > | |
| <title>vfs_read (11,280,928 samples, 0.02%)</title><rect x="878.6" y="261" width="0.2" height="15.0" fill="rgb(224,88,21)" rx="2" ry="2" /> | |
| <text x="881.60" y="271.5" ></text> | |
| </g> | |
| <g > | |
| <title>__arm64_sys_writev (49,943,251 samples, 0.07%)</title><rect x="25.5" y="341" width="1.1" height="15.0" fill="rgb(241,169,40)" rx="2" ry="2" /> | |
| <text x="28.46" y="351.5" ></text> | |
| </g> | |
| <g > | |
| <title>[libxcb.so.1.1.0] (182,906,144 samples, 0.25%)</title><rect x="1483.1" y="549" width="4.0" height="15.0" fill="rgb(226,98,23)" rx="2" ry="2" /> | |
| <text x="1486.15" y="559.5" ></text> | |
| </g> | |
| <g > | |
| <title>copy_page_to_iter (5,057,144 samples, 0.01%)</title><rect x="878.0" y="245" width="0.2" height="15.0" fill="rgb(209,22,5)" rx="2" ry="2" /> | |
| <text x="881.04" y="255.5" ></text> | |
| </g> | |
| <g > | |
| <title>[libc.so.6] (14,881,477 samples, 0.02%)</title><rect x="878.0" y="453" width="0.3" height="15.0" fill="rgb(223,84,20)" rx="2" ry="2" /> | |
| <text x="880.95" y="463.5" ></text> | |
| </g> | |
| <g > | |
| <title>filestream_seek (9,918,480 samples, 0.01%)</title><rect x="878.3" y="501" width="0.2" height="15.0" fill="rgb(211,30,7)" rx="2" ry="2" /> | |
| <text x="881.28" y="511.5" ></text> | |
| </g> | |
| <g > | |
| <title>[libc.so.6] (19,522,753 samples, 0.03%)</title><rect x="28.9" y="437" width="0.5" height="15.0" fill="rgb(223,84,20)" rx="2" ry="2" /> | |
| <text x="31.94" y="447.5" ></text> | |
| </g> | |
| <g > | |
| <title>do_el0_svc (12,254,150 samples, 0.02%)</title><rect x="29.1" y="357" width="0.3" height="15.0" fill="rgb(218,60,14)" rx="2" ry="2" /> | |
| <text x="32.10" y="367.5" ></text> | |
| </g> | |
| <g > | |
| <title>[libX11.so.6.4.0] (10,922,595 samples, 0.02%)</title><rect x="1487.4" y="517" width="0.2" height="15.0" fill="rgb(220,73,17)" rx="2" ry="2" /> | |
| <text x="1490.36" y="527.5" ></text> | |
| </g> | |
| <g > | |
| <title>XGetInputFocus (317,922,486 samples, 0.44%)</title><rect x="1581.0" y="629" width="6.9" height="15.0" fill="rgb(216,52,12)" rx="2" ry="2" /> | |
| <text x="1583.96" y="639.5" ></text> | |
| </g> | |
| <g > | |
| <title>skb_free_head (13,276,771 samples, 0.02%)</title><rect x="36.6" y="149" width="0.3" height="15.0" fill="rgb(221,77,18)" rx="2" ry="2" /> | |
| <text x="39.62" y="159.5" ></text> | |
| </g> | |
| <g > | |
| <title>el0_svc (13,731,170 samples, 0.02%)</title><rect x="1576.2" y="421" width="0.3" height="15.0" fill="rgb(244,183,43)" rx="2" ry="2" /> | |
| <text x="1579.24" y="431.5" ></text> | |
| </g> | |
| <g > | |
| <title>__arm64_sys_ppoll (5,039,085 samples, 0.01%)</title><rect x="28.6" y="325" width="0.1" height="15.0" fill="rgb(230,115,27)" rx="2" ry="2" /> | |
| <text x="31.60" y="335.5" ></text> | |
| </g> | |
| <g > | |
| <title>drm_exec_lock_obj (9,406,554 samples, 0.01%)</title><rect x="1480.5" y="181" width="0.2" height="15.0" fill="rgb(236,142,34)" rx="2" ry="2" /> | |
| <text x="1483.48" y="191.5" ></text> | |
| </g> | |
| <g > | |
| <title>__irq_exit_rcu (11,689,935 samples, 0.02%)</title><rect x="783.2" y="517" width="0.2" height="15.0" fill="rgb(227,101,24)" rx="2" ry="2" /> | |
| <text x="786.18" y="527.5" ></text> | |
| </g> | |
| <g > | |
| <title>el0_svc_common.constprop.0 (12,729,546 samples, 0.02%)</title><rect x="35.6" y="341" width="0.2" height="15.0" fill="rgb(224,89,21)" rx="2" ry="2" /> | |
| <text x="38.56" y="351.5" ></text> | |
| </g> | |
| <g > | |
| <title>[libGLdispatch.so.0.0.0] (24,815,416 samples, 0.03%)</title><rect x="1487.8" y="613" width="0.6" height="15.0" fill="rgb(209,20,4)" rx="2" ry="2" /> | |
| <text x="1490.85" y="623.5" ></text> | |
| </g> | |
| <g > | |
| <title>[libc.so.6] (10,727,814 samples, 0.01%)</title><rect x="1477.0" y="389" width="0.2" height="15.0" fill="rgb(223,84,20)" rx="2" ry="2" /> | |
| <text x="1480.00" y="399.5" ></text> | |
| </g> | |
| <g > | |
| <title>el0t_64_sync (16,729,119 samples, 0.02%)</title><rect x="1589.3" y="549" width="0.4" height="15.0" fill="rgb(217,56,13)" rx="2" ry="2" /> | |
| <text x="1592.34" y="559.5" ></text> | |
| </g> | |
| <g > | |
| <title>[libc.so.6] (14,194,347 samples, 0.02%)</title><rect x="878.0" y="421" width="0.3" height="15.0" fill="rgb(223,84,20)" rx="2" ry="2" /> | |
| <text x="880.97" y="431.5" ></text> | |
| </g> | |
| <g > | |
| <title>el0_svc (9,433,409 samples, 0.01%)</title><rect x="14.7" y="485" width="0.2" height="15.0" fill="rgb(244,183,43)" rx="2" ry="2" /> | |
| <text x="17.66" y="495.5" ></text> | |
| </g> | |
| <g > | |
| <title>opera_vdlp_process_line (3,279,583,551 samples, 4.53%)</title><rect x="1347.1" y="613" width="71.6" height="15.0" fill="rgb(243,176,42)" rx="2" ry="2" /> | |
| <text x="1350.05" y="623.5" >opera_vd..</text> | |
| </g> | |
| <g > | |
| <title>[libc.so.6] (87,973,133 samples, 0.12%)</title><rect x="1588.1" y="741" width="1.9" height="15.0" fill="rgb(223,84,20)" rx="2" ry="2" /> | |
| <text x="1591.08" y="751.5" ></text> | |
| </g> | |
| <g > | |
| <title>__poll (10,936,081 samples, 0.02%)</title><rect x="28.5" y="485" width="0.2" height="15.0" fill="rgb(250,208,49)" rx="2" ry="2" /> | |
| <text x="31.47" y="495.5" ></text> | |
| </g> | |
| <g > | |
| <title>[libc.so.6] (9,423,098 samples, 0.01%)</title><rect x="1459.7" y="373" width="0.2" height="15.0" fill="rgb(223,84,20)" rx="2" ry="2" /> | |
| <text x="1462.73" y="383.5" ></text> | |
| </g> | |
| <g > | |
| <title>opera_cdrom_do_cmd (26,097,156 samples, 0.04%)</title><rect x="878.5" y="517" width="0.6" height="15.0" fill="rgb(220,71,17)" rx="2" ry="2" /> | |
| <text x="881.49" y="527.5" ></text> | |
| </g> | |
| <g > | |
| <title>___slab_alloc (5,843,627 samples, 0.01%)</title><rect x="1470.3" y="37" width="0.1" height="15.0" fill="rgb(230,115,27)" rx="2" ry="2" /> | |
| <text x="1473.27" y="47.5" ></text> | |
| </g> | |
| <g > | |
| <title>opera_madam_fsm_get (224,718,712 samples, 0.31%)</title><rect x="1342.1" y="613" width="5.0" height="15.0" fill="rgb(235,142,33)" rx="2" ry="2" /> | |
| <text x="1345.15" y="623.5" ></text> | |
| </g> | |
| <g > | |
| <title>[libgallium-26.0.5-1.so] (33,214,055 samples, 0.05%)</title><rect x="1513.2" y="581" width="0.7" height="15.0" fill="rgb(216,54,12)" rx="2" ry="2" /> | |
| <text x="1516.19" y="591.5" ></text> | |
| </g> | |
| <g > | |
| <title>do_el0_svc (24,381,378 samples, 0.03%)</title><rect x="1587.2" y="437" width="0.5" height="15.0" fill="rgb(218,60,14)" rx="2" ry="2" /> | |
| <text x="1590.18" y="447.5" ></text> | |
| </g> | |
| <g > | |
| <title>pa_mutex_lock (5,896,143 samples, 0.01%)</title><rect x="14.3" y="565" width="0.1" height="15.0" fill="rgb(253,223,53)" rx="2" ry="2" /> | |
| <text x="17.32" y="575.5" ></text> | |
| </g> | |
| <g > | |
| <title>free_unref_folios (5,604,799 samples, 0.01%)</title><rect x="11.0" y="325" width="0.1" height="15.0" fill="rgb(209,22,5)" rx="2" ry="2" /> | |
| <text x="13.96" y="335.5" ></text> | |
| </g> | |
| <g > | |
| <title>el0t_64_sync_handler (23,386,789 samples, 0.03%)</title><rect x="27.0" y="389" width="0.5" height="15.0" fill="rgb(211,32,7)" rx="2" ry="2" /> | |
| <text x="30.04" y="399.5" ></text> | |
| </g> | |
| <g > | |
| <title>simple_copy_to_iter (11,451,819 samples, 0.02%)</title><rect x="1586.5" y="213" width="0.3" height="15.0" fill="rgb(228,110,26)" rx="2" ry="2" /> | |
| <text x="1589.54" y="223.5" ></text> | |
| </g> | |
| <g > | |
| <title>do_el0_svc (19,454,558 samples, 0.03%)</title><rect x="1486.7" y="421" width="0.4" height="15.0" fill="rgb(218,60,14)" rx="2" ry="2" /> | |
| <text x="1489.66" y="431.5" ></text> | |
| </g> | |
| <g > | |
| <title>sock_write_iter (43,583,852 samples, 0.06%)</title><rect x="25.5" y="277" width="0.9" height="15.0" fill="rgb(243,178,42)" rx="2" ry="2" /> | |
| <text x="28.50" y="287.5" ></text> | |
| </g> | |
| <g > | |
| <title>[libxcb.so.1.1.0] (23,011,367 samples, 0.03%)</title><rect x="28.9" y="501" width="0.5" height="15.0" fill="rgb(226,98,23)" rx="2" ry="2" /> | |
| <text x="31.88" y="511.5" ></text> | |
| </g> | |
| <g > | |
| <title>do_el0_svc (71,646,691 samples, 0.10%)</title><rect x="34.0" y="373" width="1.5" height="15.0" fill="rgb(218,60,14)" rx="2" ry="2" /> | |
| <text x="36.96" y="383.5" ></text> | |
| </g> | |
| <g > | |
| <title>iput.part.0 (37,946,786 samples, 0.05%)</title><rect x="10.7" y="421" width="0.8" height="15.0" fill="rgb(216,52,12)" rx="2" ry="2" /> | |
| <text x="13.67" y="431.5" ></text> | |
| </g> | |
| <g > | |
| <title>[libc.so.6] (19,433,424 samples, 0.03%)</title><rect x="37.3" y="453" width="0.4" height="15.0" fill="rgb(223,84,20)" rx="2" ry="2" /> | |
| <text x="40.29" y="463.5" ></text> | |
| </g> | |
| <g > | |
| <title>opera_clio_fifo_ei_status (25,050,679 samples, 0.03%)</title><rect x="483.2" y="565" width="0.6" height="15.0" fill="rgb(209,20,4)" rx="2" ry="2" /> | |
| <text x="486.23" y="575.5" ></text> | |
| </g> | |
| <g > | |
| <title>[libc.so.6] (77,400,747 samples, 0.11%)</title><rect x="33.8" y="437" width="1.7" height="15.0" fill="rgb(223,84,20)" rx="2" ry="2" /> | |
| <text x="36.84" y="447.5" ></text> | |
| </g> | |
| <g > | |
| <title>do_el0_svc (9,458,836 samples, 0.01%)</title><rect x="1428.2" y="421" width="0.2" height="15.0" fill="rgb(218,60,14)" rx="2" ry="2" /> | |
| <text x="1431.21" y="431.5" ></text> | |
| </g> | |
| <g > | |
| <title>[libgallium-26.0.5-1.so] (983,925,103 samples, 1.36%)</title><rect x="1491.0" y="565" width="21.5" height="15.0" fill="rgb(216,54,12)" rx="2" ry="2" /> | |
| <text x="1494.02" y="575.5" >[..</text> | |
| </g> | |
| <g > | |
| <title>_IO_file_seekoff (5,591,567 samples, 0.01%)</title><rect x="878.9" y="437" width="0.1" height="15.0" fill="rgb(229,112,26)" rx="2" ry="2" /> | |
| <text x="881.91" y="447.5" ></text> | |
| </g> | |
| <g > | |
| <title>__kvmalloc_node_noprof (8,054,017 samples, 0.01%)</title><rect x="1473.0" y="149" width="0.2" height="15.0" fill="rgb(233,129,30)" rx="2" ry="2" /> | |
| <text x="1475.99" y="159.5" ></text> | |
| </g> | |
| <g > | |
| <title>skb_copy_datagram_from_iter (5,866,224 samples, 0.01%)</title><rect x="1582.7" y="293" width="0.1" height="15.0" fill="rgb(215,49,11)" rx="2" ry="2" /> | |
| <text x="1585.71" y="303.5" ></text> | |
| </g> | |
| <g > | |
| <title>_raw_spin_unlock_irqrestore (33,468,771 samples, 0.05%)</title><rect x="1485.5" y="261" width="0.7" height="15.0" fill="rgb(228,106,25)" rx="2" ry="2" /> | |
| <text x="1488.49" y="271.5" ></text> | |
| </g> | |
| <g > | |
| <title>___sys_recvmsg (5,056,890 samples, 0.01%)</title><rect x="1428.2" y="341" width="0.1" height="15.0" fill="rgb(238,153,36)" rx="2" ry="2" /> | |
| <text x="1431.23" y="351.5" ></text> | |
| </g> | |
| <g > | |
| <title>__sys_recvmsg (96,712,458 samples, 0.13%)</title><rect x="1584.8" y="357" width="2.1" height="15.0" fill="rgb(252,216,51)" rx="2" ry="2" /> | |
| <text x="1587.80" y="367.5" ></text> | |
| </g> | |
| <g > | |
| <title>[libxcb.so.1.1.0] (55,935,266 samples, 0.08%)</title><rect x="1510.9" y="437" width="1.2" height="15.0" fill="rgb(226,98,23)" rx="2" ry="2" /> | |
| <text x="1513.87" y="447.5" ></text> | |
| </g> | |
| <g > | |
| <title>kvrealloc_node_align_noprof (8,672,683 samples, 0.01%)</title><rect x="1480.5" y="165" width="0.2" height="15.0" fill="rgb(233,131,31)" rx="2" ry="2" /> | |
| <text x="1483.49" y="175.5" ></text> | |
| </g> | |
| <g > | |
| <title>[libc.so.6] (20,252,166 samples, 0.03%)</title><rect x="1583.5" y="533" width="0.4" height="15.0" fill="rgb(223,84,20)" rx="2" ry="2" /> | |
| <text x="1586.46" y="543.5" ></text> | |
| </g> | |
| <g > | |
| <title>[libgallium-26.0.5-1.so] (329,210,109 samples, 0.46%)</title><rect x="1502.5" y="453" width="7.2" height="15.0" fill="rgb(216,54,12)" rx="2" ry="2" /> | |
| <text x="1505.48" y="463.5" ></text> | |
| </g> | |
| <g > | |
| <title>drm_sched_job_arm (9,289,341 samples, 0.01%)</title><rect x="1473.9" y="181" width="0.2" height="15.0" fill="rgb(231,120,28)" rx="2" ry="2" /> | |
| <text x="1476.95" y="191.5" ></text> | |
| </g> | |
| <g > | |
| <title>el0t_64_sync (5,007,873 samples, 0.01%)</title><rect x="878.4" y="421" width="0.1" height="15.0" fill="rgb(217,56,13)" rx="2" ry="2" /> | |
| <text x="881.38" y="431.5" ></text> | |
| </g> | |
| <g > | |
| <title>[libgallium-26.0.5-1.so] (135,302,575 samples, 0.19%)</title><rect x="1521.6" y="549" width="3.0" height="15.0" fill="rgb(216,54,12)" rx="2" ry="2" /> | |
| <text x="1524.61" y="559.5" ></text> | |
| </g> | |
| <g > | |
| <title>do_el0_svc (26,740,957 samples, 0.04%)</title><rect x="31.9" y="357" width="0.6" height="15.0" fill="rgb(218,60,14)" rx="2" ry="2" /> | |
| <text x="34.90" y="367.5" ></text> | |
| </g> | |
| <g > | |
| <title>retro_vfs_file_remove_impl (37,946,786 samples, 0.05%)</title><rect x="10.7" y="613" width="0.8" height="15.0" fill="rgb(237,148,35)" rx="2" ry="2" /> | |
| <text x="13.67" y="623.5" ></text> | |
| </g> | |
| <g > | |
| <title>el0t_64_sync (14,202,409 samples, 0.02%)</title><rect x="35.5" y="405" width="0.3" height="15.0" fill="rgb(217,56,13)" rx="2" ry="2" /> | |
| <text x="38.53" y="415.5" ></text> | |
| </g> | |
| <g > | |
| <title>realloc (7,777,007 samples, 0.01%)</title><rect x="1482.1" y="437" width="0.2" height="15.0" fill="rgb(246,189,45)" rx="2" ry="2" /> | |
| <text x="1485.12" y="447.5" ></text> | |
| </g> | |
| <g > | |
| <title>unix_stream_recvmsg (11,593,972 samples, 0.02%)</title><rect x="27.2" y="261" width="0.3" height="15.0" fill="rgb(251,213,51)" rx="2" ry="2" /> | |
| <text x="30.24" y="271.5" ></text> | |
| </g> | |
| <g > | |
| <title>[libGLdispatch.so.0.0.0] (11,672,976 samples, 0.02%)</title><rect x="1521.3" y="549" width="0.3" height="15.0" fill="rgb(209,20,4)" rx="2" ry="2" /> | |
| <text x="1524.34" y="559.5" ></text> | |
| </g> | |
| <g > | |
| <title>unix_stream_read_actor (5,645,201 samples, 0.01%)</title><rect x="37.0" y="181" width="0.2" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" /> | |
| <text x="40.05" y="191.5" ></text> | |
| </g> | |
| <g > | |
| <title>[libgallium-26.0.5-1.so] (6,784,893 samples, 0.01%)</title><rect x="10.0" y="581" width="0.2" height="15.0" fill="rgb(216,54,12)" rx="2" ry="2" /> | |
| <text x="13.03" y="591.5" ></text> | |
| </g> | |
| <g > | |
| <title>el0t_64_irq (10,620,955 samples, 0.01%)</title><rect x="481.2" y="565" width="0.2" height="15.0" fill="rgb(247,194,46)" rx="2" ry="2" /> | |
| <text x="484.18" y="575.5" ></text> | |
| </g> | |
| <g > | |
| <title>__libc_calloc (6,366,208 samples, 0.01%)</title><rect x="1509.4" y="421" width="0.1" height="15.0" fill="rgb(205,4,0)" rx="2" ry="2" /> | |
| <text x="1512.36" y="431.5" ></text> | |
| </g> | |
| <g > | |
| <title>el0t_64_sync_handler (13,067,232 samples, 0.02%)</title><rect x="33.4" y="373" width="0.2" height="15.0" fill="rgb(211,32,7)" rx="2" ry="2" /> | |
| <text x="36.36" y="383.5" ></text> | |
| </g> | |
| <g > | |
| <title>el0t_64_sync (17,969,505 samples, 0.02%)</title><rect x="37.3" y="405" width="0.4" height="15.0" fill="rgb(217,56,13)" rx="2" ry="2" /> | |
| <text x="40.33" y="415.5" ></text> | |
| </g> | |
| <g > | |
| <title>[libc.so.6] (10,935,160 samples, 0.02%)</title><rect x="28.5" y="437" width="0.2" height="15.0" fill="rgb(223,84,20)" rx="2" ry="2" /> | |
| <text x="31.47" y="447.5" ></text> | |
| </g> | |
| <g > | |
| <title>el0t_64_irq_handler (11,689,935 samples, 0.02%)</title><rect x="783.2" y="581" width="0.2" height="15.0" fill="rgb(241,169,40)" rx="2" ry="2" /> | |
| <text x="786.18" y="591.5" ></text> | |
| </g> | |
| <g > | |
| <title>__getpid (9,382,204 samples, 0.01%)</title><rect x="1564.1" y="549" width="0.2" height="15.0" fill="rgb(221,74,17)" rx="2" ry="2" /> | |
| <text x="1567.06" y="559.5" ></text> | |
| </g> | |
| <g > | |
| <title>el0t_64_sync_handler (23,285,965 samples, 0.03%)</title><rect x="1486.6" y="453" width="0.5" height="15.0" fill="rgb(211,32,7)" rx="2" ry="2" /> | |
| <text x="1489.57" y="463.5" ></text> | |
| </g> | |
| <g > | |
| <title>kmem_cache_alloc_node_noprof (20,035,869 samples, 0.03%)</title><rect x="30.2" y="181" width="0.5" height="15.0" fill="rgb(208,17,4)" rx="2" ry="2" /> | |
| <text x="33.25" y="191.5" ></text> | |
| </g> | |
| <g > | |
| <title>x_input_poll (616,885,579 samples, 0.85%)</title><rect x="24.4" y="581" width="13.5" height="15.0" fill="rgb(207,11,2)" rx="2" ry="2" /> | |
| <text x="27.38" y="591.5" ></text> | |
| </g> | |
| <g > | |
| <title>invoke_syscall.constprop.0 (9,458,836 samples, 0.01%)</title><rect x="1428.2" y="389" width="0.2" height="15.0" fill="rgb(244,183,43)" rx="2" ry="2" /> | |
| <text x="1431.21" y="399.5" ></text> | |
| </g> | |
| <g > | |
| <title>___sys_recvmsg (7,855,188 samples, 0.01%)</title><rect x="25.1" y="277" width="0.1" height="15.0" fill="rgb(238,153,36)" rx="2" ry="2" /> | |
| <text x="28.06" y="287.5" ></text> | |
| </g> | |
| <g > | |
| <title>[libc.so.6] (24,097,074 samples, 0.03%)</title><rect x="27.0" y="453" width="0.5" height="15.0" fill="rgb(223,84,20)" rx="2" ry="2" /> | |
| <text x="30.02" y="463.5" ></text> | |
| </g> | |
| <g > | |
| <title>kfree_skbmem (6,414,457 samples, 0.01%)</title><rect x="1585.3" y="245" width="0.1" height="15.0" fill="rgb(230,117,28)" rx="2" ry="2" /> | |
| <text x="1588.26" y="255.5" ></text> | |
| </g> | |
| <g > | |
| <title>skb_release_head_state (6,359,086 samples, 0.01%)</title><rect x="32.2" y="181" width="0.1" height="15.0" fill="rgb(226,100,24)" rx="2" ry="2" /> | |
| <text x="35.17" y="191.5" ></text> | |
| </g> | |
| <g > | |
| <title>__kernel_clock_gettime (6,347,225 samples, 0.01%)</title><rect x="1573.2" y="629" width="0.1" height="15.0" fill="rgb(231,122,29)" rx="2" ry="2" /> | |
| <text x="1576.16" y="639.5" ></text> | |
| </g> | |
| <g > | |
| <title>[libGLX_mesa.so.0.0.0] (2,814,240,173 samples, 3.89%)</title><rect x="1426.4" y="613" width="61.4" height="15.0" fill="rgb(229,111,26)" rx="2" ry="2" /> | |
| <text x="1429.38" y="623.5" >[libGL..</text> | |
| </g> | |
| <g > | |
| <title>opera_clock_dsp_queued (625,281,932 samples, 0.86%)</title><rect x="916.0" y="613" width="13.7" height="15.0" fill="rgb(226,99,23)" rx="2" ry="2" /> | |
| <text x="919.02" y="623.5" ></text> | |
| </g> | |
| <g > | |
| <title>font_renderer_ft_get_glyph (112,596,439 samples, 0.16%)</title><rect x="1524.6" y="549" width="2.4" height="15.0" fill="rgb(234,134,32)" rx="2" ry="2" /> | |
| <text x="1527.58" y="559.5" ></text> | |
| </g> | |
| <g > | |
| <title>do_el0_svc (34,463,605 samples, 0.05%)</title><rect x="27.7" y="357" width="0.8" height="15.0" fill="rgb(218,60,14)" rx="2" ry="2" /> | |
| <text x="30.72" y="367.5" ></text> | |
| </g> | |
| <g > | |
| <title>__fseeko64 (6,318,855 samples, 0.01%)</title><rect x="878.9" y="453" width="0.1" height="15.0" fill="rgb(236,144,34)" rx="2" ry="2" /> | |
| <text x="881.90" y="463.5" ></text> | |
| </g> | |
| <g > | |
| <title>unix_stream_sendmsg (37,095,492 samples, 0.05%)</title><rect x="25.6" y="245" width="0.8" height="15.0" fill="rgb(240,161,38)" rx="2" ry="2" /> | |
| <text x="28.64" y="255.5" ></text> | |
| </g> | |
| <g > | |
| <title>unix_write_space (5,084,513 samples, 0.01%)</title><rect x="1586.2" y="197" width="0.1" height="15.0" fill="rgb(246,188,45)" rx="2" ry="2" /> | |
| <text x="1589.19" y="207.5" ></text> | |
| </g> | |
| <g > | |
| <title>gl2_alive (84,621,746 samples, 0.12%)</title><rect x="1574.8" y="645" width="1.9" height="15.0" fill="rgb(246,191,45)" rx="2" ry="2" /> | |
| <text x="1577.81" y="655.5" ></text> | |
| </g> | |
| <g > | |
| <title>xas_alloc (12,392,845 samples, 0.02%)</title><rect x="1470.1" y="85" width="0.3" height="15.0" fill="rgb(226,99,23)" rx="2" ry="2" /> | |
| <text x="1473.15" y="95.5" ></text> | |
| </g> | |
| <g > | |
| <title>xcb_present_pixmap (27,987,225 samples, 0.04%)</title><rect x="1487.2" y="581" width="0.6" height="15.0" fill="rgb(239,158,37)" rx="2" ry="2" /> | |
| <text x="1490.16" y="591.5" ></text> | |
| </g> | |
| <g > | |
| <title>el0t_64_sync_handler (18,877,134 samples, 0.03%)</title><rect x="1428.0" y="453" width="0.4" height="15.0" fill="rgb(211,32,7)" rx="2" ry="2" /> | |
| <text x="1431.00" y="463.5" ></text> | |
| </g> | |
| <g > | |
| <title>el0t_64_sync_handler (50,547,360 samples, 0.07%)</title><rect x="36.2" y="373" width="1.1" height="15.0" fill="rgb(211,32,7)" rx="2" ry="2" /> | |
| <text x="39.19" y="383.5" ></text> | |
| </g> | |
| <g > | |
| <title>[libxcb.so.1.1.0] (17,257,724 samples, 0.02%)</title><rect x="1487.3" y="533" width="0.4" height="15.0" fill="rgb(226,98,23)" rx="2" ry="2" /> | |
| <text x="1490.33" y="543.5" ></text> | |
| </g> | |
| <g > | |
| <title>__arm64_sys_recvmsg (40,503,606 samples, 0.06%)</title><rect x="36.4" y="293" width="0.9" height="15.0" fill="rgb(236,144,34)" rx="2" ry="2" /> | |
| <text x="39.38" y="303.5" ></text> | |
| </g> | |
| <g > | |
| <title>__arch_copy_to_user (5,057,144 samples, 0.01%)</title><rect x="878.0" y="229" width="0.2" height="15.0" fill="rgb(205,0,0)" rx="2" ry="2" /> | |
| <text x="881.04" y="239.5" ></text> | |
| </g> | |
| <g > | |
| <title>krealloc_node_align_noprof (7,940,997 samples, 0.01%)</title><rect x="1480.5" y="149" width="0.2" height="15.0" fill="rgb(245,187,44)" rx="2" ry="2" /> | |
| <text x="1483.51" y="159.5" ></text> | |
| </g> | |
| <g > | |
| <title>el0_svc_common.constprop.0 (71,646,691 samples, 0.10%)</title><rect x="34.0" y="357" width="1.5" height="15.0" fill="rgb(224,89,21)" rx="2" ry="2" /> | |
| <text x="36.96" y="367.5" ></text> | |
| </g> | |
| <g > | |
| <title>opera_clio_peek (13,733,831 samples, 0.02%)</title><rect x="899.9" y="597" width="0.3" height="15.0" fill="rgb(227,105,25)" rx="2" ry="2" /> | |
| <text x="902.87" y="607.5" ></text> | |
| </g> | |
| <g > | |
| <title>xas_store (20,277,786 samples, 0.03%)</title><rect x="1470.0" y="117" width="0.4" height="15.0" fill="rgb(207,9,2)" rx="2" ry="2" /> | |
| <text x="1472.97" y="127.5" ></text> | |
| </g> | |
| <g > | |
| <title>dma_fence_release (18,589,474 samples, 0.03%)</title><rect x="1464.9" y="133" width="0.5" height="15.0" fill="rgb(234,136,32)" rx="2" ry="2" /> | |
| <text x="1467.95" y="143.5" ></text> | |
| </g> | |
| <g > | |
| <title>[libgallium-26.0.5-1.so] (179,100,376 samples, 0.25%)</title><rect x="1458.3" y="389" width="3.9" height="15.0" fill="rgb(216,54,12)" rx="2" ry="2" /> | |
| <text x="1461.27" y="399.5" ></text> | |
| </g> | |
| <g > | |
| <title>el0t_64_sync (13,110,914 samples, 0.02%)</title><rect x="1564.4" y="565" width="0.3" height="15.0" fill="rgb(217,56,13)" rx="2" ry="2" /> | |
| <text x="1567.38" y="575.5" ></text> | |
| </g> | |
| <g > | |
| <title>el0t_64_sync (147,252,907 samples, 0.20%)</title><rect x="1483.3" y="485" width="3.2" height="15.0" fill="rgb(217,56,13)" rx="2" ry="2" /> | |
| <text x="1486.26" y="495.5" ></text> | |
| </g> | |
| <g > | |
| <title>[libc.so.6] (14,927,620 samples, 0.02%)</title><rect x="31.2" y="469" width="0.4" height="15.0" fill="rgb(223,84,20)" rx="2" ry="2" /> | |
| <text x="34.23" y="479.5" ></text> | |
| </g> | |
| <g > | |
| <title>dsp_upload_unlocked (399,937,506 samples, 0.55%)</title><rect x="12.2" y="629" width="8.7" height="15.0" fill="rgb(246,192,46)" rx="2" ry="2" /> | |
| <text x="15.20" y="639.5" ></text> | |
| </g> | |
| <g > | |
| <title>do_el0_svc (5,038,509 samples, 0.01%)</title><rect x="14.8" y="469" width="0.1" height="15.0" fill="rgb(218,60,14)" rx="2" ry="2" /> | |
| <text x="17.76" y="479.5" ></text> | |
| </g> | |
| <g > | |
| <title>el0t_64_sync (17,089,528 samples, 0.02%)</title><rect x="23.4" y="501" width="0.4" height="15.0" fill="rgb(217,56,13)" rx="2" ry="2" /> | |
| <text x="26.41" y="511.5" ></text> | |
| </g> | |
| <g > | |
| <title>el0t_64_sync_handler (18,655,486 samples, 0.03%)</title><rect x="24.9" y="389" width="0.4" height="15.0" fill="rgb(211,32,7)" rx="2" ry="2" /> | |
| <text x="27.88" y="399.5" ></text> | |
| </g> | |
| <g > | |
| <title>vfs_writev (49,260,288 samples, 0.07%)</title><rect x="25.5" y="309" width="1.0" height="15.0" fill="rgb(238,153,36)" rx="2" ry="2" /> | |
| <text x="28.46" y="319.5" ></text> | |
| </g> | |
| <g > | |
| <title>recvmsg (38,103,686 samples, 0.05%)</title><rect x="1575.2" y="501" width="0.8" height="15.0" fill="rgb(210,25,6)" rx="2" ry="2" /> | |
| <text x="1578.16" y="511.5" ></text> | |
| </g> | |
| <g > | |
| <title>pa_mainloop_run (87,973,133 samples, 0.12%)</title><rect x="1588.1" y="677" width="1.9" height="15.0" fill="rgb(208,15,3)" rx="2" ry="2" /> | |
| <text x="1591.08" y="687.5" ></text> | |
| </g> | |
| <g > | |
| <title>kmem_cache_alloc_noprof (7,169,178 samples, 0.01%)</title><rect x="1474.0" y="149" width="0.1" height="15.0" fill="rgb(248,200,47)" rx="2" ry="2" /> | |
| <text x="1476.99" y="159.5" ></text> | |
| </g> | |
| <g > | |
| <title>PPROJ_OUTPUT.isra.0 (679,255,146 samples, 0.94%)</title><rect x="1327.1" y="581" width="14.9" height="15.0" fill="rgb(249,202,48)" rx="2" ry="2" /> | |
| <text x="1330.14" y="591.5" ></text> | |
| </g> | |
| <g > | |
| <title>mwriteb (6,771,776 samples, 0.01%)</title><rect x="863.7" y="597" width="0.1" height="15.0" fill="rgb(241,166,39)" rx="2" ry="2" /> | |
| <text x="866.67" y="607.5" ></text> | |
| </g> | |
| <g > | |
| <title>[libgallium-26.0.5-1.so] (4,888,098 samples, 0.01%)</title><rect x="1565.6" y="565" width="0.1" height="15.0" fill="rgb(216,54,12)" rx="2" ry="2" /> | |
| <text x="1568.60" y="575.5" ></text> | |
| </g> | |
| <g > | |
| <title>____sys_recvmsg (13,598,352 samples, 0.02%)</title><rect x="1427.5" y="293" width="0.3" height="15.0" fill="rgb(224,90,21)" rx="2" ry="2" /> | |
| <text x="1430.53" y="303.5" ></text> | |
| </g> | |
| <g > | |
| <title>el0_svc (16,897,078 samples, 0.02%)</title><rect x="1588.8" y="469" width="0.3" height="15.0" fill="rgb(244,183,43)" rx="2" ry="2" /> | |
| <text x="1591.76" y="479.5" ></text> | |
| </g> | |
| <g > | |
| <title>[libc.so.6] (36,525,524 samples, 0.05%)</title><rect x="27.7" y="437" width="0.8" height="15.0" fill="rgb(223,84,20)" rx="2" ry="2" /> | |
| <text x="30.67" y="447.5" ></text> | |
| </g> | |
| <g > | |
| <title>[libgallium-26.0.5-1.so] (37,559,764 samples, 0.05%)</title><rect x="1566.7" y="597" width="0.8" height="15.0" fill="rgb(216,54,12)" rx="2" ry="2" /> | |
| <text x="1569.71" y="607.5" ></text> | |
| </g> | |
| <g > | |
| <title>__arm64_sys_recvmsg (11,452,951 samples, 0.02%)</title><rect x="25.0" y="309" width="0.3" height="15.0" fill="rgb(236,144,34)" rx="2" ry="2" /> | |
| <text x="28.04" y="319.5" ></text> | |
| </g> | |
| <g > | |
| <title>el0t_64_sync (8,392,538 samples, 0.01%)</title><rect x="26.7" y="421" width="0.1" height="15.0" fill="rgb(217,56,13)" rx="2" ry="2" /> | |
| <text x="29.65" y="431.5" ></text> | |
| </g> | |
| <g > | |
| <title>main_exit (52,719,326 samples, 0.07%)</title><rect x="10.3" y="677" width="1.2" height="15.0" fill="rgb(224,91,21)" rx="2" ry="2" /> | |
| <text x="13.35" y="687.5" ></text> | |
| </g> | |
| <g > | |
| <title>truncate_inode_folio (16,262,721 samples, 0.02%)</title><rect x="11.1" y="357" width="0.4" height="15.0" fill="rgb(242,173,41)" rx="2" ry="2" /> | |
| <text x="14.14" y="367.5" ></text> | |
| </g> | |
| <g > | |
| <title>el0t_64_sync_handler (215,936,843 samples, 0.30%)</title><rect x="1477.3" y="373" width="4.7" height="15.0" fill="rgb(211,32,7)" rx="2" ry="2" /> | |
| <text x="1480.33" y="383.5" ></text> | |
| </g> | |
| <g > | |
| <title>_raw_spin_unlock_irqrestore (12,409,643 samples, 0.02%)</title><rect x="26.2" y="213" width="0.2" height="15.0" fill="rgb(228,106,25)" rx="2" ry="2" /> | |
| <text x="29.18" y="223.5" ></text> | |
| </g> | |
| <g > | |
| <title>ksys_write (15,182,227 samples, 0.02%)</title><rect x="13.3" y="341" width="0.3" height="15.0" fill="rgb(205,4,1)" rx="2" ry="2" /> | |
| <text x="16.31" y="351.5" ></text> | |
| </g> | |
| <g > | |
| <title>drm_sched_fence_release_finished (11,569,346 samples, 0.02%)</title><rect x="1478.6" y="213" width="0.3" height="15.0" fill="rgb(205,2,0)" rx="2" ry="2" /> | |
| <text x="1481.62" y="223.5" ></text> | |
| </g> | |
| <g > | |
| <title>____sys_recvmsg (8,466,400 samples, 0.01%)</title><rect x="1581.6" y="325" width="0.2" height="15.0" fill="rgb(224,90,21)" rx="2" ry="2" /> | |
| <text x="1584.63" y="335.5" ></text> | |
| </g> | |
| <g > | |
| <title>sock_alloc_send_pskb (23,231,012 samples, 0.03%)</title><rect x="25.7" y="229" width="0.5" height="15.0" fill="rgb(210,26,6)" rx="2" ry="2" /> | |
| <text x="28.67" y="239.5" ></text> | |
| </g> | |
| <g > | |
| <title>[libc.so.6] (19,534,255 samples, 0.03%)</title><rect x="1583.5" y="501" width="0.4" height="15.0" fill="rgb(223,84,20)" rx="2" ry="2" /> | |
| <text x="1586.47" y="511.5" ></text> | |
| </g> | |
| <g > | |
| <title>[libc.so.6] (24,748,233 samples, 0.03%)</title><rect x="1486.5" y="517" width="0.6" height="15.0" fill="rgb(223,84,20)" rx="2" ry="2" /> | |
| <text x="1489.54" y="527.5" ></text> | |
| </g> | |
| <g > | |
| <title>el0_svc (10,054,760 samples, 0.01%)</title><rect x="12.9" y="485" width="0.3" height="15.0" fill="rgb(244,183,43)" rx="2" ry="2" /> | |
| <text x="15.95" y="495.5" ></text> | |
| </g> | |
| <g > | |
| <title>el0t_64_sync_handler (35,829,003 samples, 0.05%)</title><rect x="27.7" y="389" width="0.8" height="15.0" fill="rgb(211,32,7)" rx="2" ry="2" /> | |
| <text x="30.69" y="399.5" ></text> | |
| </g> | |
| <g > | |
| <title>el0t_64_sync_handler (29,218,614 samples, 0.04%)</title><rect x="1587.1" y="469" width="0.6" height="15.0" fill="rgb(211,32,7)" rx="2" ry="2" /> | |
| <text x="1590.08" y="479.5" ></text> | |
| </g> | |
| <g > | |
| <title>do_el0_svc (7,687,026 samples, 0.01%)</title><rect x="32.8" y="373" width="0.1" height="15.0" fill="rgb(218,60,14)" rx="2" ry="2" /> | |
| <text x="35.77" y="383.5" ></text> | |
| </g> | |
| <g > | |
| <title>gl2_set_viewport_wrapper (5,871,824 samples, 0.01%)</title><rect x="1563.2" y="613" width="0.2" height="15.0" fill="rgb(236,142,34)" rx="2" ry="2" /> | |
| <text x="1566.22" y="623.5" ></text> | |
| </g> | |
| <g > | |
| <title>[libc.so.6] (5,896,143 samples, 0.01%)</title><rect x="14.3" y="549" width="0.1" height="15.0" fill="rgb(223,84,20)" rx="2" ry="2" /> | |
| <text x="17.32" y="559.5" ></text> | |
| </g> | |
| <g > | |
| <title>[libc.so.6] (4,831,772 samples, 0.01%)</title><rect x="1535.5" y="485" width="0.1" height="15.0" fill="rgb(223,84,20)" rx="2" ry="2" /> | |
| <text x="1538.53" y="495.5" ></text> | |
| </g> | |
| <g > | |
| <title>el0t_64_sync_handler (18,084,731 samples, 0.02%)</title><rect x="1583.5" y="469" width="0.4" height="15.0" fill="rgb(211,32,7)" rx="2" ry="2" /> | |
| <text x="1586.50" y="479.5" ></text> | |
| </g> | |
| <g > | |
| <title>[libc.so.6] (33,607,977 samples, 0.05%)</title><rect x="1581.3" y="517" width="0.7" height="15.0" fill="rgb(223,84,20)" rx="2" ry="2" /> | |
| <text x="1584.26" y="527.5" ></text> | |
| </g> | |
| <g > | |
| <title>x_input_state (20,732,111 samples, 0.03%)</title><rect x="1580.0" y="629" width="0.5" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" /> | |
| <text x="1583.03" y="639.5" ></text> | |
| </g> | |
| <g > | |
| <title>TexelDrawScale (32,150,312 samples, 0.04%)</title><rect x="67.5" y="613" width="0.7" height="15.0" fill="rgb(219,67,16)" rx="2" ry="2" /> | |
| <text x="70.51" y="623.5" ></text> | |
| </g> | |
| <g > | |
| <title>do_el0_svc (11,512,784 samples, 0.02%)</title><rect x="1583.6" y="437" width="0.3" height="15.0" fill="rgb(218,60,14)" rx="2" ry="2" /> | |
| <text x="1586.65" y="447.5" ></text> | |
| </g> | |
| <g > | |
| <title>[libc.so.6] (101,104,294 samples, 0.14%)</title><rect x="1533.4" y="517" width="2.3" height="15.0" fill="rgb(223,84,20)" rx="2" ry="2" /> | |
| <text x="1536.44" y="527.5" ></text> | |
| </g> | |
| <g > | |
| <title>el0_svc (6,501,823 samples, 0.01%)</title><rect x="1589.9" y="533" width="0.1" height="15.0" fill="rgb(244,183,43)" rx="2" ry="2" /> | |
| <text x="1592.86" y="543.5" ></text> | |
| </g> | |
| <g > | |
| <title>radix_tree_lookup (4,987,232 samples, 0.01%)</title><rect x="1473.5" y="165" width="0.1" height="15.0" fill="rgb(230,118,28)" rx="2" ry="2" /> | |
| <text x="1476.48" y="175.5" ></text> | |
| </g> | |
| <g > | |
| <title>retroarch_ctl (51,973,833 samples, 0.07%)</title><rect x="10.4" y="661" width="1.1" height="15.0" fill="rgb(247,194,46)" rx="2" ry="2" /> | |
| <text x="13.36" y="671.5" ></text> | |
| </g> | |
| <g > | |
| <title>runloop_check_state (656,514,617 samples, 0.91%)</title><rect x="1573.6" y="661" width="14.3" height="15.0" fill="rgb(212,36,8)" rx="2" ry="2" /> | |
| <text x="1576.60" y="671.5" ></text> | |
| </g> | |
| <g > | |
| <title>unix_destruct_scm (5,631,712 samples, 0.01%)</title><rect x="32.2" y="165" width="0.1" height="15.0" fill="rgb(207,13,3)" rx="2" ry="2" /> | |
| <text x="35.19" y="175.5" ></text> | |
| </g> | |
| <g > | |
| <title>[libc.so.6] (7,111,023 samples, 0.01%)</title><rect x="1558.4" y="341" width="0.1" height="15.0" fill="rgb(223,84,20)" rx="2" ry="2" /> | |
| <text x="1561.36" y="351.5" ></text> | |
| </g> | |
| <g > | |
| <title>xcb_send_request (26,571,943 samples, 0.04%)</title><rect x="1487.2" y="565" width="0.6" height="15.0" fill="rgb(217,55,13)" rx="2" ry="2" /> | |
| <text x="1490.19" y="575.5" ></text> | |
| </g> | |
| <g > | |
| <title>el0t_64_sync (6,501,823 samples, 0.01%)</title><rect x="1589.9" y="565" width="0.1" height="15.0" fill="rgb(217,56,13)" rx="2" ry="2" /> | |
| <text x="1592.86" y="575.5" ></text> | |
| </g> | |
| <g > | |
| <title>el0_svc (13,110,914 samples, 0.02%)</title><rect x="1564.4" y="533" width="0.3" height="15.0" fill="rgb(244,183,43)" rx="2" ry="2" /> | |
| <text x="1567.38" y="543.5" ></text> | |
| </g> | |
| <g > | |
| <title>el0_svc_common.constprop.0 (44,164,023 samples, 0.06%)</title><rect x="1582.5" y="437" width="1.0" height="15.0" fill="rgb(224,89,21)" rx="2" ry="2" /> | |
| <text x="1585.49" y="447.5" ></text> | |
| </g> | |
| <g > | |
| <title>el0_svc (14,194,347 samples, 0.02%)</title><rect x="878.0" y="373" width="0.3" height="15.0" fill="rgb(244,183,43)" rx="2" ry="2" /> | |
| <text x="880.97" y="383.5" ></text> | |
| </g> | |
| <g > | |
| <title>__arm64_sys_recvmsg (12,849,934 samples, 0.02%)</title><rect x="1581.6" y="373" width="0.3" height="15.0" fill="rgb(236,144,34)" rx="2" ry="2" /> | |
| <text x="1584.62" y="383.5" ></text> | |
| </g> | |
| <g > | |
| <title>[libc.so.6] (121,111,203 samples, 0.17%)</title><rect x="1584.3" y="517" width="2.7" height="15.0" fill="rgb(223,84,20)" rx="2" ry="2" /> | |
| <text x="1587.33" y="527.5" ></text> | |
| </g> | |
| <g > | |
| <title>el0_svc_common.constprop.0 (19,454,558 samples, 0.03%)</title><rect x="1486.7" y="405" width="0.4" height="15.0" fill="rgb(224,89,21)" rx="2" ry="2" /> | |
| <text x="1489.66" y="415.5" ></text> | |
| </g> | |
| <g > | |
| <title>skb_copy_datagram_iter (5,645,201 samples, 0.01%)</title><rect x="37.0" y="165" width="0.2" height="15.0" fill="rgb(245,188,45)" rx="2" ry="2" /> | |
| <text x="40.05" y="175.5" ></text> | |
| </g> | |
| <g > | |
| <title>[libc.so.6] (48,766,213 samples, 0.07%)</title><rect x="1511.0" y="389" width="1.1" height="15.0" fill="rgb(223,84,20)" rx="2" ry="2" /> | |
| <text x="1514.03" y="399.5" ></text> | |
| </g> | |
| <g > | |
| <title>el0_svc (10,935,160 samples, 0.02%)</title><rect x="28.5" y="389" width="0.2" height="15.0" fill="rgb(244,183,43)" rx="2" ry="2" /> | |
| <text x="31.47" y="399.5" ></text> | |
| </g> | |
| <g > | |
| <title>[libgallium-26.0.5-1.so] (17,789,431 samples, 0.02%)</title><rect x="1508.5" y="341" width="0.4" height="15.0" fill="rgb(216,54,12)" rx="2" ry="2" /> | |
| <text x="1511.53" y="351.5" ></text> | |
| </g> | |
| <g > | |
| <title>gl2_set_viewport (11,286,337 samples, 0.02%)</title><rect x="1562.2" y="597" width="0.3" height="15.0" fill="rgb(217,57,13)" rx="2" ry="2" /> | |
| <text x="1565.24" y="607.5" ></text> | |
| </g> | |
| <g > | |
| <title>[libgallium-26.0.5-1.so] (64,283,817 samples, 0.09%)</title><rect x="1507.5" y="357" width="1.5" height="15.0" fill="rgb(216,54,12)" rx="2" ry="2" /> | |
| <text x="1510.55" y="367.5" ></text> | |
| </g> | |
| <g > | |
| <title>[libxcb.so.1.1.0] (129,626,676 samples, 0.18%)</title><rect x="1584.1" y="549" width="2.9" height="15.0" fill="rgb(226,98,23)" rx="2" ry="2" /> | |
| <text x="1587.15" y="559.5" ></text> | |
| </g> | |
| <g > | |
| <title>drm_gem_change_handle_ioctl (16,646,688 samples, 0.02%)</title><rect x="1467.6" y="149" width="0.4" height="15.0" fill="rgb(246,192,46)" rx="2" ry="2" /> | |
| <text x="1470.63" y="159.5" ></text> | |
| </g> | |
| <g > | |
| <title>do_el0_svc (19,415,135 samples, 0.03%)</title><rect x="1575.6" y="389" width="0.4" height="15.0" fill="rgb(218,60,14)" rx="2" ry="2" /> | |
| <text x="1578.56" y="399.5" ></text> | |
| </g> | |
| <g > | |
| <title>call_on_irq_stack (10,620,955 samples, 0.01%)</title><rect x="481.2" y="453" width="0.2" height="15.0" fill="rgb(239,156,37)" rx="2" ry="2" /> | |
| <text x="484.18" y="463.5" ></text> | |
| </g> | |
| <g > | |
| <title>ww_mutex_unlock (8,067,290 samples, 0.01%)</title><rect x="1475.8" y="165" width="0.2" height="15.0" fill="rgb(249,206,49)" rx="2" ry="2" /> | |
| <text x="1478.80" y="175.5" ></text> | |
| </g> | |
| <g > | |
| <title>[libpulse.so.0.24.3] (18,861,514 samples, 0.03%)</title><rect x="13.2" y="549" width="0.4" height="15.0" fill="rgb(246,191,45)" rx="2" ry="2" /> | |
| <text x="16.23" y="559.5" ></text> | |
| </g> | |
| <g > | |
| <title>el0_svc_common.constprop.0 (7,981,381 samples, 0.01%)</title><rect x="1576.3" y="389" width="0.2" height="15.0" fill="rgb(224,89,21)" rx="2" ry="2" /> | |
| <text x="1579.35" y="399.5" ></text> | |
| </g> | |
| <g > | |
| <title>msm_gem_vm_sm_step_remap (24,365,732 samples, 0.03%)</title><rect x="1470.6" y="181" width="0.6" height="15.0" fill="rgb(247,194,46)" rx="2" ry="2" /> | |
| <text x="1473.62" y="191.5" ></text> | |
| </g> | |
| <g > | |
| <title>xas_create (15,737,350 samples, 0.02%)</title><rect x="1479.9" y="149" width="0.3" height="15.0" fill="rgb(248,199,47)" rx="2" ry="2" /> | |
| <text x="1482.86" y="159.5" ></text> | |
| </g> | |
| <g > | |
| <title>xcb_writev (99,519,682 samples, 0.14%)</title><rect x="29.4" y="517" width="2.2" height="15.0" fill="rgb(254,228,54)" rx="2" ry="2" /> | |
| <text x="32.43" y="527.5" ></text> | |
| </g> | |
| <g > | |
| <title>[libc.so.6] (31,358,703 samples, 0.04%)</title><rect x="1587.0" y="501" width="0.7" height="15.0" fill="rgb(223,84,20)" rx="2" ry="2" /> | |
| <text x="1590.03" y="511.5" ></text> | |
| </g> | |
| <g > | |
| <title>___sys_recvmsg (32,242,028 samples, 0.04%)</title><rect x="27.7" y="277" width="0.7" height="15.0" fill="rgb(238,153,36)" rx="2" ry="2" /> | |
| <text x="30.72" y="287.5" ></text> | |
| </g> | |
| <g > | |
| <title>refill_obj_stock (8,237,136 samples, 0.01%)</title><rect x="36.7" y="101" width="0.2" height="15.0" fill="rgb(239,160,38)" rx="2" ry="2" /> | |
| <text x="39.70" y="111.5" ></text> | |
| </g> | |
| <g > | |
| <title>[libc.so.6] (78,127,777 samples, 0.11%)</title><rect x="33.8" y="453" width="1.7" height="15.0" fill="rgb(223,84,20)" rx="2" ry="2" /> | |
| <text x="36.82" y="463.5" ></text> | |
| </g> | |
| <g > | |
| <title>[libGLdispatch.so.0.0.0] (16,743,723 samples, 0.02%)</title><rect x="1566.3" y="597" width="0.4" height="15.0" fill="rgb(209,20,4)" rx="2" ry="2" /> | |
| <text x="1569.34" y="607.5" ></text> | |
| </g> | |
| <g > | |
| <title>vfs_writev (71,743,240 samples, 0.10%)</title><rect x="29.6" y="309" width="1.6" height="15.0" fill="rgb(238,153,36)" rx="2" ry="2" /> | |
| <text x="32.63" y="319.5" ></text> | |
| </g> | |
| <g > | |
| <title>[libc.so.6] (9,282,817 samples, 0.01%)</title><rect x="1443.5" y="453" width="0.2" height="15.0" fill="rgb(223,84,20)" rx="2" ry="2" /> | |
| <text x="1446.48" y="463.5" ></text> | |
| </g> | |
| <g > | |
| <title>pa_threaded_mainloop_lock (17,853,347 samples, 0.02%)</title><rect x="14.9" y="565" width="0.4" height="15.0" fill="rgb(220,73,17)" rx="2" ry="2" /> | |
| <text x="17.93" y="575.5" ></text> | |
| </g> | |
| <g > | |
| <title>xcb_poll_for_reply64 (20,858,503 samples, 0.03%)</title><rect x="1576.1" y="549" width="0.5" height="15.0" fill="rgb(249,206,49)" rx="2" ry="2" /> | |
| <text x="1579.10" y="559.5" ></text> | |
| </g> | |
| <g > | |
| <title>[libpulse.so.0.24.3] (87,973,133 samples, 0.12%)</title><rect x="1588.1" y="693" width="1.9" height="15.0" fill="rgb(246,191,45)" rx="2" ry="2" /> | |
| <text x="1591.08" y="703.5" ></text> | |
| </g> | |
| <g > | |
| <title>libopera_callback (12,755,223 samples, 0.02%)</title><rect x="20.9" y="629" width="0.3" height="15.0" fill="rgb(232,128,30)" rx="2" ry="2" /> | |
| <text x="23.93" y="639.5" ></text> | |
| </g> | |
| <g > | |
| <title>do_el0_svc (642,391,221 samples, 0.89%)</title><rect x="1462.5" y="293" width="14.0" height="15.0" fill="rgb(218,60,14)" rx="2" ry="2" /> | |
| <text x="1465.48" y="303.5" ></text> | |
| </g> | |
| <g > | |
| <title>invoke_syscall.constprop.0 (41,892,906 samples, 0.06%)</title><rect x="36.4" y="309" width="0.9" height="15.0" fill="rgb(244,183,43)" rx="2" ry="2" /> | |
| <text x="39.38" y="319.5" ></text> | |
| </g> | |
| <g > | |
| <title>el0_svc (29,218,614 samples, 0.04%)</title><rect x="1587.1" y="453" width="0.6" height="15.0" fill="rgb(244,183,43)" rx="2" ry="2" /> | |
| <text x="1590.08" y="463.5" ></text> | |
| </g> | |
| <g > | |
| <title>el0t_64_sync (8,470,268 samples, 0.01%)</title><rect x="1510.5" y="341" width="0.2" height="15.0" fill="rgb(217,56,13)" rx="2" ry="2" /> | |
| <text x="1513.50" y="351.5" ></text> | |
| </g> | |
| <g > | |
| <title>__sys_recvmsg (6,635,505 samples, 0.01%)</title><rect x="33.4" y="277" width="0.2" height="15.0" fill="rgb(252,216,51)" rx="2" ry="2" /> | |
| <text x="36.44" y="287.5" ></text> | |
| </g> | |
| <g > | |
| <title>xcb_poll_for_special_event (64,463,381 samples, 0.09%)</title><rect x="1510.8" y="453" width="1.4" height="15.0" fill="rgb(224,90,21)" rx="2" ry="2" /> | |
| <text x="1513.80" y="463.5" ></text> | |
| </g> | |
| <g > | |
| <title>ksys_write (9,758,649 samples, 0.01%)</title><rect x="1588.9" y="389" width="0.2" height="15.0" fill="rgb(205,4,1)" rx="2" ry="2" /> | |
| <text x="1591.90" y="399.5" ></text> | |
| </g> | |
| <g > | |
| <title>el0t_64_sync (18,655,486 samples, 0.03%)</title><rect x="24.9" y="405" width="0.4" height="15.0" fill="rgb(217,56,13)" rx="2" ry="2" /> | |
| <text x="27.88" y="415.5" ></text> | |
| </g> | |
| <g > | |
| <title>video_context_driver_get_flags (10,802,581 samples, 0.01%)</title><rect x="1570.5" y="597" width="0.3" height="15.0" fill="rgb(238,155,37)" rx="2" ry="2" /> | |
| <text x="1573.52" y="607.5" ></text> | |
| </g> | |
| <g > | |
| <title>el0t_64_sync (50,508,344 samples, 0.07%)</title><rect x="1582.4" y="501" width="1.1" height="15.0" fill="rgb(217,56,13)" rx="2" ry="2" /> | |
| <text x="1585.35" y="511.5" ></text> | |
| </g> | |
| <g > | |
| <title>xcb_flush (187,868,373 samples, 0.26%)</title><rect x="1483.1" y="581" width="4.1" height="15.0" fill="rgb(224,91,21)" rx="2" ry="2" /> | |
| <text x="1486.06" y="591.5" ></text> | |
| </g> | |
| <g > | |
| <title>el0t_64_sync_handler (6,501,823 samples, 0.01%)</title><rect x="1589.9" y="549" width="0.1" height="15.0" fill="rgb(211,32,7)" rx="2" ry="2" /> | |
| <text x="1592.86" y="559.5" ></text> | |
| </g> | |
| <g > | |
| <title>ARM_Change_ModeSafe (36,777,146 samples, 0.05%)</title><rect x="771.6" y="597" width="0.8" height="15.0" fill="rgb(242,172,41)" rx="2" ry="2" /> | |
| <text x="774.57" y="607.5" ></text> | |
| </g> | |
| <g > | |
| <title>[libc.so.6] (41,107,564 samples, 0.06%)</title><rect x="1427.0" y="469" width="0.9" height="15.0" fill="rgb(223,84,20)" rx="2" ry="2" /> | |
| <text x="1430.03" y="479.5" ></text> | |
| </g> | |
| <g > | |
| <title>libopera_callback (19,084,264,311 samples, 26.38%)</title><rect x="68.2" y="613" width="416.9" height="15.0" fill="rgb(232,128,30)" rx="2" ry="2" /> | |
| <text x="71.25" y="623.5" >libopera_callback</text> | |
| </g> | |
| <g > | |
| <title>[libc.so.6] (52,690,907 samples, 0.07%)</title><rect x="1582.3" y="533" width="1.2" height="15.0" fill="rgb(223,84,20)" rx="2" ry="2" /> | |
| <text x="1585.31" y="543.5" ></text> | |
| </g> | |
| <g > | |
| <title>[libgallium-26.0.5-1.so] (206,398,154 samples, 0.29%)</title><rect x="1554.8" y="421" width="4.5" height="15.0" fill="rgb(216,54,12)" rx="2" ry="2" /> | |
| <text x="1557.79" y="431.5" ></text> | |
| </g> | |
| <g > | |
| <title>msm_clk_bulk_get_clock (10,022,598 samples, 0.01%)</title><rect x="1464.3" y="197" width="0.2" height="15.0" fill="rgb(249,203,48)" rx="2" ry="2" /> | |
| <text x="1467.26" y="207.5" ></text> | |
| </g> | |
| <g > | |
| <title>[libgallium-26.0.5-1.so] (1,098,915,854 samples, 1.52%)</title><rect x="1535.7" y="533" width="24.0" height="15.0" fill="rgb(216,54,12)" rx="2" ry="2" /> | |
| <text x="1538.67" y="543.5" >[..</text> | |
| </g> | |
| <g > | |
| <title>__xa_alloc (18,591,560 samples, 0.03%)</title><rect x="1479.8" y="181" width="0.4" height="15.0" fill="rgb(242,170,40)" rx="2" ry="2" /> | |
| <text x="1482.80" y="191.5" ></text> | |
| </g> | |
| <g > | |
| <title>XGetInputFocus (213,162,133 samples, 0.29%)</title><rect x="33.2" y="549" width="4.6" height="15.0" fill="rgb(216,52,12)" rx="2" ry="2" /> | |
| <text x="36.17" y="559.5" ></text> | |
| </g> | |
| <g > | |
| <title>__sys_recvmsg (24,202,447 samples, 0.03%)</title><rect x="1511.5" y="245" width="0.5" height="15.0" fill="rgb(252,216,51)" rx="2" ry="2" /> | |
| <text x="1514.49" y="255.5" ></text> | |
| </g> | |
| <g > | |
| <title>[libc.so.6] (14,217,825 samples, 0.02%)</title><rect x="31.2" y="453" width="0.4" height="15.0" fill="rgb(223,84,20)" rx="2" ry="2" /> | |
| <text x="34.25" y="463.5" ></text> | |
| </g> | |
| <g > | |
| <title>invoke_syscall.constprop.0 (104,513,322 samples, 0.14%)</title><rect x="1584.7" y="389" width="2.3" height="15.0" fill="rgb(244,183,43)" rx="2" ry="2" /> | |
| <text x="1587.70" y="399.5" ></text> | |
| </g> | |
| <g > | |
| <title>el0_svc (35,829,003 samples, 0.05%)</title><rect x="27.7" y="373" width="0.8" height="15.0" fill="rgb(244,183,43)" rx="2" ry="2" /> | |
| <text x="30.69" y="383.5" ></text> | |
| </g> | |
| <g > | |
| <title>video_driver_frame (6,928,633,121 samples, 9.58%)</title><rect x="1421.8" y="645" width="151.3" height="15.0" fill="rgb(239,159,38)" rx="2" ry="2" /> | |
| <text x="1424.77" y="655.5" >video_driver_frame</text> | |
| </g> | |
| <g > | |
| <title>idr_find (7,884,018 samples, 0.01%)</title><rect x="1473.4" y="181" width="0.2" height="15.0" fill="rgb(245,185,44)" rx="2" ry="2" /> | |
| <text x="1476.41" y="191.5" ></text> | |
| </g> | |
| <g > | |
| <title>__arm64_sys_writev (139,336,312 samples, 0.19%)</title><rect x="1483.4" y="389" width="3.1" height="15.0" fill="rgb(241,169,40)" rx="2" ry="2" /> | |
| <text x="1486.42" y="399.5" ></text> | |
| </g> | |
| <g > | |
| <title>__kmalloc_node_track_caller_noprof (10,234,296 samples, 0.01%)</title><rect x="1484.3" y="213" width="0.2" height="15.0" fill="rgb(224,89,21)" rx="2" ry="2" /> | |
| <text x="1487.29" y="223.5" ></text> | |
| </g> | |
| <g > | |
| <title>el0_svc (50,547,360 samples, 0.07%)</title><rect x="36.2" y="357" width="1.1" height="15.0" fill="rgb(244,183,43)" rx="2" ry="2" /> | |
| <text x="39.19" y="367.5" ></text> | |
| </g> | |
| <g > | |
| <title>[libc.so.6] (6,501,823 samples, 0.01%)</title><rect x="1589.9" y="613" width="0.1" height="15.0" fill="rgb(223,84,20)" rx="2" ry="2" /> | |
| <text x="1592.86" y="623.5" ></text> | |
| </g> | |
| <g > | |
| <title>[libc.so.6] (37,359,050 samples, 0.05%)</title><rect x="1575.2" y="469" width="0.8" height="15.0" fill="rgb(223,84,20)" rx="2" ry="2" /> | |
| <text x="1578.17" y="479.5" ></text> | |
| </g> | |
| <g > | |
| <title>gl_glsl_set_mvp (7,790,695 samples, 0.01%)</title><rect x="1565.5" y="613" width="0.2" height="15.0" fill="rgb(221,74,17)" rx="2" ry="2" /> | |
| <text x="1568.54" y="623.5" ></text> | |
| </g> | |
| <g > | |
| <title>alloc_skb_with_frags (21,754,093 samples, 0.03%)</title><rect x="25.7" y="213" width="0.4" height="15.0" fill="rgb(228,107,25)" rx="2" ry="2" /> | |
| <text x="28.67" y="223.5" ></text> | |
| </g> | |
| <g > | |
| <title>[libgallium-26.0.5-1.so] (1,045,489,807 samples, 1.45%)</title><rect x="1489.8" y="581" width="22.8" height="15.0" fill="rgb(216,54,12)" rx="2" ry="2" /> | |
| <text x="1492.76" y="591.5" >[..</text> | |
| </g> | |
| <g > | |
| <title>obj_cgroup_charge_account (8,074,569 samples, 0.01%)</title><rect x="25.9" y="149" width="0.2" height="15.0" fill="rgb(219,65,15)" rx="2" ry="2" /> | |
| <text x="28.92" y="159.5" ></text> | |
| </g> | |
| <g > | |
| <title>gl_glsl_set_coords (25,879,992 samples, 0.04%)</title><rect x="1565.0" y="613" width="0.5" height="15.0" fill="rgb(212,33,7)" rx="2" ry="2" /> | |
| <text x="1567.97" y="623.5" ></text> | |
| </g> | |
| <g > | |
| <title>kmem_cache_alloc_noprof (24,593,468 samples, 0.03%)</title><rect x="1475.0" y="117" width="0.5" height="15.0" fill="rgb(248,200,47)" rx="2" ry="2" /> | |
| <text x="1478.01" y="127.5" ></text> | |
| </g> | |
| <g > | |
| <title>TexelDrawScale (9,829,426,124 samples, 13.59%)</title><rect x="1127.4" y="597" width="214.7" height="15.0" fill="rgb(219,67,16)" rx="2" ry="2" /> | |
| <text x="1130.37" y="607.5" >TexelDrawScale</text> | |
| </g> | |
| <g > | |
| <title>irq_exit_rcu (11,689,935 samples, 0.02%)</title><rect x="783.2" y="533" width="0.2" height="15.0" fill="rgb(254,227,54)" rx="2" ry="2" /> | |
| <text x="786.18" y="543.5" ></text> | |
| </g> | |
| <g > | |
| <title>sock_def_readable (12,409,643 samples, 0.02%)</title><rect x="26.2" y="229" width="0.2" height="15.0" fill="rgb(216,54,13)" rx="2" ry="2" /> | |
| <text x="29.18" y="239.5" ></text> | |
| </g> | |
| <g > | |
| <title>drm_sched_free_job_work (102,386,311 samples, 0.14%)</title><rect x="1468.4" y="181" width="2.2" height="15.0" fill="rgb(221,73,17)" rx="2" ry="2" /> | |
| <text x="1471.39" y="191.5" ></text> | |
| </g> | |
| <g > | |
| <title>el0_svc_common.constprop.0 (51,422,246 samples, 0.07%)</title><rect x="25.4" y="373" width="1.2" height="15.0" fill="rgb(224,89,21)" rx="2" ry="2" /> | |
| <text x="28.45" y="383.5" ></text> | |
| </g> | |
| <g > | |
| <title>[libgallium-26.0.5-1.so] (367,270,869 samples, 0.51%)</title><rect x="1501.7" y="469" width="8.0" height="15.0" fill="rgb(216,54,12)" rx="2" ry="2" /> | |
| <text x="1504.66" y="479.5" ></text> | |
| </g> | |
| <g > | |
| <title>__getpid (10,873,770 samples, 0.02%)</title><rect x="14.6" y="533" width="0.3" height="15.0" fill="rgb(221,74,17)" rx="2" ry="2" /> | |
| <text x="17.63" y="543.5" ></text> | |
| </g> | |
| <g > | |
| <title>[libc.so.6] (33,661,972 samples, 0.05%)</title><rect x="1587.0" y="517" width="0.7" height="15.0" fill="rgb(223,84,20)" rx="2" ry="2" /> | |
| <text x="1589.98" y="527.5" ></text> | |
| </g> | |
| <g > | |
| <title>el0t_64_sync (14,194,347 samples, 0.02%)</title><rect x="878.0" y="405" width="0.3" height="15.0" fill="rgb(217,56,13)" rx="2" ry="2" /> | |
| <text x="880.97" y="415.5" ></text> | |
| </g> | |
| <g > | |
| <title>PPROC (3,392,898,655 samples, 4.69%)</title><rect x="1253.0" y="581" width="74.1" height="15.0" fill="rgb(207,9,2)" rx="2" ry="2" /> | |
| <text x="1256.03" y="591.5" >PPROC</text> | |
| </g> | |
| <g > | |
| <title>menu_shader_get (11,541,584 samples, 0.02%)</title><rect x="1570.5" y="613" width="0.3" height="15.0" fill="rgb(219,68,16)" rx="2" ry="2" /> | |
| <text x="1573.51" y="623.5" ></text> | |
| </g> | |
| <g > | |
| <title>xcb_writev (67,766,074 samples, 0.09%)</title><rect x="25.4" y="517" width="1.5" height="15.0" fill="rgb(254,228,54)" rx="2" ry="2" /> | |
| <text x="28.39" y="527.5" ></text> | |
| </g> | |
| <g > | |
| <title>[libc.so.6] (80,127,011 samples, 0.11%)</title><rect x="1552.4" y="437" width="1.7" height="15.0" fill="rgb(223,84,20)" rx="2" ry="2" /> | |
| <text x="1555.40" y="447.5" ></text> | |
| </g> | |
| <g > | |
| <title>__poll (14,202,409 samples, 0.02%)</title><rect x="35.5" y="469" width="0.3" height="15.0" fill="rgb(250,208,49)" rx="2" ry="2" /> | |
| <text x="38.53" y="479.5" ></text> | |
| </g> | |
| <g > | |
| <title>consume_skb (5,082,144 samples, 0.01%)</title><rect x="27.3" y="229" width="0.1" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" /> | |
| <text x="30.30" y="239.5" ></text> | |
| </g> | |
| <g > | |
| <title>get_freepointer (5,844,463 samples, 0.01%)</title><rect x="1474.9" y="117" width="0.1" height="15.0" fill="rgb(214,45,10)" rx="2" ry="2" /> | |
| <text x="1477.88" y="127.5" ></text> | |
| </g> | |
| <g > | |
| <title>drm_sched_job_add_resv_dependencies (43,483,017 samples, 0.06%)</title><rect x="1469.7" y="149" width="0.9" height="15.0" fill="rgb(251,212,50)" rx="2" ry="2" /> | |
| <text x="1472.67" y="159.5" ></text> | |
| </g> | |
| <g > | |
| <title>rarch_main (72,238,771,696 samples, 99.86%)</title><rect x="10.3" y="693" width="1577.8" height="15.0" fill="rgb(219,66,15)" rx="2" ry="2" /> | |
| <text x="13.35" y="703.5" >rarch_main</text> | |
| </g> | |
| <g > | |
| <title>recover_worker (24,585,930 samples, 0.03%)</title><rect x="1480.3" y="229" width="0.5" height="15.0" fill="rgb(250,211,50)" rx="2" ry="2" /> | |
| <text x="1483.31" y="239.5" ></text> | |
| </g> | |
| <g > | |
| <title>[libgallium-26.0.5-1.so] (567,556,642 samples, 0.78%)</title><rect x="1500.0" y="517" width="12.4" height="15.0" fill="rgb(216,54,12)" rx="2" ry="2" /> | |
| <text x="1503.03" y="527.5" ></text> | |
| </g> | |
| <g > | |
| <title>[libgallium-26.0.5-1.so] (2,465,346,599 samples, 3.41%)</title><rect x="1429.0" y="533" width="53.8" height="15.0" fill="rgb(216,54,12)" rx="2" ry="2" /> | |
| <text x="1431.98" y="543.5" >[libg..</text> | |
| </g> | |
| <g > | |
| <title>[libc.so.6] (9,429,639 samples, 0.01%)</title><rect x="1555.4" y="405" width="0.2" height="15.0" fill="rgb(223,84,20)" rx="2" ry="2" /> | |
| <text x="1558.38" y="415.5" ></text> | |
| </g> | |
| <g > | |
| <title>[libgallium-26.0.5-1.so] (1,107,355,247 samples, 1.53%)</title><rect x="1488.4" y="613" width="24.2" height="15.0" fill="rgb(216,54,12)" rx="2" ry="2" /> | |
| <text x="1491.42" y="623.5" >[..</text> | |
| </g> | |
| <g > | |
| <title>__alloc_skb (11,508,557 samples, 0.02%)</title><rect x="1582.9" y="261" width="0.2" height="15.0" fill="rgb(226,100,23)" rx="2" ry="2" /> | |
| <text x="1585.85" y="271.5" ></text> | |
| </g> | |
| <g > | |
| <title>[libc.so.6] (9,396,058 samples, 0.01%)</title><rect x="1447.4" y="437" width="0.2" height="15.0" fill="rgb(223,84,20)" rx="2" ry="2" /> | |
| <text x="1450.36" y="447.5" ></text> | |
| </g> | |
| <g > | |
| <title>xas_create (19,533,814 samples, 0.03%)</title><rect x="1470.0" y="101" width="0.4" height="15.0" fill="rgb(248,199,47)" rx="2" ry="2" /> | |
| <text x="1472.99" y="111.5" ></text> | |
| </g> | |
| <g > | |
| <title>consume_skb (48,238,648 samples, 0.07%)</title><rect x="1585.3" y="261" width="1.0" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" /> | |
| <text x="1588.26" y="271.5" ></text> | |
| </g> | |
| <g > | |
| <title>runloop_event_deinit_core (14,027,047 samples, 0.02%)</title><rect x="10.4" y="629" width="0.3" height="15.0" fill="rgb(226,100,24)" rx="2" ry="2" /> | |
| <text x="13.36" y="639.5" ></text> | |
| </g> | |
| <g > | |
| <title>[libc.so.6] (32,874,289 samples, 0.05%)</title><rect x="1581.3" y="485" width="0.7" height="15.0" fill="rgb(223,84,20)" rx="2" ry="2" /> | |
| <text x="1584.27" y="495.5" ></text> | |
| </g> | |
| <g > | |
| <title>__arm64_sys_ppoll (8,657,734 samples, 0.01%)</title><rect x="1583.7" y="389" width="0.2" height="15.0" fill="rgb(230,115,27)" rx="2" ry="2" /> | |
| <text x="1586.66" y="399.5" ></text> | |
| </g> | |
| <g > | |
| <title>invoke_syscall.constprop.0 (73,879,781 samples, 0.10%)</title><rect x="29.6" y="357" width="1.6" height="15.0" fill="rgb(244,183,43)" rx="2" ry="2" /> | |
| <text x="32.62" y="367.5" ></text> | |
| </g> | |
| <g > | |
| <title>xas_alloc (10,803,881 samples, 0.01%)</title><rect x="1480.0" y="133" width="0.2" height="15.0" fill="rgb(226,99,23)" rx="2" ry="2" /> | |
| <text x="1482.97" y="143.5" ></text> | |
| </g> | |
| <g > | |
| <title>____sys_recvmsg (30,824,712 samples, 0.04%)</title><rect x="27.7" y="261" width="0.7" height="15.0" fill="rgb(224,90,21)" rx="2" ry="2" /> | |
| <text x="30.72" y="271.5" ></text> | |
| </g> | |
| <g > | |
| <title>__sys_recvmsg (17,948,731 samples, 0.02%)</title><rect x="1427.5" y="325" width="0.4" height="15.0" fill="rgb(252,216,51)" rx="2" ry="2" /> | |
| <text x="1430.53" y="335.5" ></text> | |
| </g> | |
| <g > | |
| <title>vfs_read (12,133,051 samples, 0.02%)</title><rect x="878.0" y="277" width="0.3" height="15.0" fill="rgb(224,88,21)" rx="2" ry="2" /> | |
| <text x="881.01" y="287.5" ></text> | |
| </g> | |
| <g > | |
| <title>drain_obj_stock (7,029,338 samples, 0.01%)</title><rect x="1585.7" y="165" width="0.2" height="15.0" fill="rgb(213,38,9)" rx="2" ry="2" /> | |
| <text x="1588.73" y="175.5" ></text> | |
| </g> | |
| <g > | |
| <title>el0_svc_common.constprop.0 (11,452,951 samples, 0.02%)</title><rect x="25.0" y="341" width="0.3" height="15.0" fill="rgb(224,89,21)" rx="2" ry="2" /> | |
| <text x="28.04" y="351.5" ></text> | |
| </g> | |
| <g > | |
| <title>el0_svc_common.constprop.0 (4,986,060 samples, 0.01%)</title><rect x="1510.6" y="277" width="0.1" height="15.0" fill="rgb(224,89,21)" rx="2" ry="2" /> | |
| <text x="1513.58" y="287.5" ></text> | |
| </g> | |
| <g > | |
| <title>__arm64_sys_ioctl (191,352,922 samples, 0.26%)</title><rect x="1477.8" y="293" width="4.2" height="15.0" fill="rgb(207,11,2)" rx="2" ry="2" /> | |
| <text x="1480.85" y="303.5" ></text> | |
| </g> | |
| <g > | |
| <title>el0_svc (13,067,232 samples, 0.02%)</title><rect x="33.4" y="357" width="0.2" height="15.0" fill="rgb(244,183,43)" rx="2" ry="2" /> | |
| <text x="36.36" y="367.5" ></text> | |
| </g> | |
| <g > | |
| <title>[libgallium-26.0.5-1.so] (7,302,043 samples, 0.01%)</title><rect x="10.0" y="597" width="0.2" height="15.0" fill="rgb(216,54,12)" rx="2" ry="2" /> | |
| <text x="13.02" y="607.5" ></text> | |
| </g> | |
| <g > | |
| <title>gfx_ctx_x_get_flags (7,896,792 samples, 0.01%)</title><rect x="1570.6" y="581" width="0.2" height="15.0" fill="rgb(211,29,7)" rx="2" ry="2" /> | |
| <text x="1573.59" y="591.5" ></text> | |
| </g> | |
| <g > | |
| <title>[libc.so.6] (35,358,528 samples, 0.05%)</title><rect x="1556.5" y="373" width="0.8" height="15.0" fill="rgb(223,84,20)" rx="2" ry="2" /> | |
| <text x="1559.54" y="383.5" ></text> | |
| </g> | |
| <g > | |
| <title>[libc.so.6] (22,870,939 samples, 0.03%)</title><rect x="1438.3" y="453" width="0.5" height="15.0" fill="rgb(223,84,20)" rx="2" ry="2" /> | |
| <text x="1441.28" y="463.5" ></text> | |
| </g> | |
| <g > | |
| <title>el0_svc_common.constprop.0 (12,014,191 samples, 0.02%)</title><rect x="878.6" y="325" width="0.2" height="15.0" fill="rgb(224,89,21)" rx="2" ry="2" /> | |
| <text x="881.59" y="335.5" ></text> | |
| </g> | |
| <g > | |
| <title>do_el0_svc (4,986,060 samples, 0.01%)</title><rect x="1510.6" y="293" width="0.1" height="15.0" fill="rgb(218,60,14)" rx="2" ry="2" /> | |
| <text x="1513.58" y="303.5" ></text> | |
| </g> | |
| <g > | |
| <title>[libxcb.so.1.1.0] (39,520,960 samples, 0.05%)</title><rect x="1575.1" y="517" width="0.9" height="15.0" fill="rgb(226,98,23)" rx="2" ry="2" /> | |
| <text x="1578.13" y="527.5" ></text> | |
| </g> | |
| <g > | |
| <title>[libgallium-26.0.5-1.so] (1,069,610,808 samples, 1.48%)</title><rect x="1489.2" y="597" width="23.4" height="15.0" fill="rgb(216,54,12)" rx="2" ry="2" /> | |
| <text x="1492.25" y="607.5" >[..</text> | |
| </g> | |
| <g > | |
| <title>invoke_syscall.constprop.0 (4,986,060 samples, 0.01%)</title><rect x="1510.6" y="261" width="0.1" height="15.0" fill="rgb(244,183,43)" rx="2" ry="2" /> | |
| <text x="1513.58" y="271.5" ></text> | |
| </g> | |
| <g > | |
| <title>drm_exec_unlock_all (8,801,933 samples, 0.01%)</title><rect x="1475.6" y="165" width="0.2" height="15.0" fill="rgb(232,126,30)" rx="2" ry="2" /> | |
| <text x="1478.58" y="175.5" ></text> | |
| </g> | |
| <g > | |
| <title>el0t_64_sync_handler (7,887,430 samples, 0.01%)</title><rect x="1564.1" y="517" width="0.2" height="15.0" fill="rgb(211,32,7)" rx="2" ry="2" /> | |
| <text x="1567.09" y="527.5" ></text> | |
| </g> | |
| <g > | |
| <title>x11_alive (81,833,628 samples, 0.11%)</title><rect x="1574.8" y="613" width="1.8" height="15.0" fill="rgb(224,88,21)" rx="2" ry="2" /> | |
| <text x="1577.84" y="623.5" ></text> | |
| </g> | |
| <g > | |
| <title>cfree (7,708,826 samples, 0.01%)</title><rect x="1509.0" y="373" width="0.1" height="15.0" fill="rgb(223,86,20)" rx="2" ry="2" /> | |
| <text x="1511.97" y="383.5" ></text> | |
| </g> | |
| <g > | |
| <title>pulse_write_avail (52,144,795 samples, 0.07%)</title><rect x="14.2" y="581" width="1.2" height="15.0" fill="rgb(237,147,35)" rx="2" ry="2" /> | |
| <text x="17.23" y="591.5" ></text> | |
| </g> | |
| <g > | |
| <title>[libc.so.6] (33,661,972 samples, 0.05%)</title><rect x="1587.0" y="533" width="0.7" height="15.0" fill="rgb(223,84,20)" rx="2" ry="2" /> | |
| <text x="1589.98" y="543.5" ></text> | |
| </g> | |
| <g > | |
| <title>gl2_frame (6,473,115,852 samples, 8.95%)</title><rect x="1426.2" y="629" width="141.4" height="15.0" fill="rgb(235,139,33)" rx="2" ry="2" /> | |
| <text x="1429.18" y="639.5" >gl2_frame</text> | |
| </g> | |
| <g > | |
| <title>[libgallium-26.0.5-1.so] (101,394,176 samples, 0.14%)</title><rect x="1459.9" y="373" width="2.3" height="15.0" fill="rgb(216,54,12)" rx="2" ry="2" /> | |
| <text x="1462.94" y="383.5" ></text> | |
| </g> | |
| <g > | |
| <title>sock_wfree (9,297,649 samples, 0.01%)</title><rect x="1586.1" y="213" width="0.2" height="15.0" fill="rgb(240,162,38)" rx="2" ry="2" /> | |
| <text x="1589.10" y="223.5" ></text> | |
| </g> | |
| <g > | |
| <title>__el0_irq_handler_common (10,620,955 samples, 0.01%)</title><rect x="481.2" y="533" width="0.2" height="15.0" fill="rgb(206,5,1)" rx="2" ry="2" /> | |
| <text x="484.18" y="543.5" ></text> | |
| </g> | |
| <g > | |
| <title>[libgallium-26.0.5-1.so] (11,321,778 samples, 0.02%)</title><rect x="10.0" y="709" width="0.3" height="15.0" fill="rgb(216,54,12)" rx="2" ry="2" /> | |
| <text x="13.00" y="719.5" ></text> | |
| </g> | |
| <g > | |
| <title>__libc_calloc (9,600,332 samples, 0.01%)</title><rect x="1559.0" y="389" width="0.2" height="15.0" fill="rgb(205,4,0)" rx="2" ry="2" /> | |
| <text x="1562.04" y="399.5" ></text> | |
| </g> | |
| <g > | |
| <title>opera_dsp_loop (18,939,704,026 samples, 26.18%)</title><rect x="70.6" y="581" width="413.6" height="15.0" fill="rgb(212,34,8)" rx="2" ry="2" /> | |
| <text x="73.57" y="591.5" >opera_dsp_loop</text> | |
| </g> | |
| <g > | |
| <title>[libgallium-26.0.5-1.so] (5,611,595 samples, 0.01%)</title><rect x="1565.6" y="581" width="0.1" height="15.0" fill="rgb(216,54,12)" rx="2" ry="2" /> | |
| <text x="1568.59" y="591.5" ></text> | |
| </g> | |
| <g > | |
| <title>kfree (25,569,046 samples, 0.04%)</title><rect x="1585.5" y="213" width="0.6" height="15.0" fill="rgb(222,78,18)" rx="2" ry="2" /> | |
| <text x="1588.51" y="223.5" ></text> | |
| </g> | |
| <g > | |
| <title>[libxcb.so.1.1.0] (66,292,192 samples, 0.09%)</title><rect x="25.4" y="501" width="1.4" height="15.0" fill="rgb(226,98,23)" rx="2" ry="2" /> | |
| <text x="28.39" y="511.5" ></text> | |
| </g> | |
| <g > | |
| <title>convert_s16_to_float (18,261,560 samples, 0.03%)</title><rect x="12.4" y="581" width="0.4" height="15.0" fill="rgb(230,117,28)" rx="2" ry="2" /> | |
| <text x="15.36" y="591.5" ></text> | |
| </g> | |
| <g > | |
| <title>kmalloc_reserve (10,085,650 samples, 0.01%)</title><rect x="34.4" y="165" width="0.2" height="15.0" fill="rgb(240,163,39)" rx="2" ry="2" /> | |
| <text x="37.42" y="175.5" ></text> | |
| </g> | |
| <g > | |
| <title>unix_destruct_scm (10,683,737 samples, 0.01%)</title><rect x="1586.1" y="229" width="0.2" height="15.0" fill="rgb(207,13,3)" rx="2" ry="2" /> | |
| <text x="1589.07" y="239.5" ></text> | |
| </g> | |
| <g > | |
| <title>drm_exec_prepare_array (75,951,184 samples, 0.10%)</title><rect x="1471.3" y="165" width="1.7" height="15.0" fill="rgb(207,10,2)" rx="2" ry="2" /> | |
| <text x="1474.33" y="175.5" ></text> | |
| </g> | |
| <g > | |
| <title>xcb_wait_for_reply64 (84,370,275 samples, 0.12%)</title><rect x="26.9" y="533" width="1.9" height="15.0" fill="rgb(212,36,8)" rx="2" ry="2" /> | |
| <text x="29.91" y="543.5" ></text> | |
| </g> | |
| <g > | |
| <title>el0t_64_sync_handler (11,439,204 samples, 0.02%)</title><rect x="31.3" y="405" width="0.3" height="15.0" fill="rgb(211,32,7)" rx="2" ry="2" /> | |
| <text x="34.31" y="415.5" ></text> | |
| </g> | |
| <g > | |
| <title>__kmalloc_cache_noprof (8,032,195 samples, 0.01%)</title><rect x="1474.2" y="165" width="0.2" height="15.0" fill="rgb(241,167,40)" rx="2" ry="2" /> | |
| <text x="1477.18" y="175.5" ></text> | |
| </g> | |
| <g > | |
| <title>__arm64_sys_recvmsg (8,053,885 samples, 0.01%)</title><rect x="33.4" y="293" width="0.2" height="15.0" fill="rgb(236,144,34)" rx="2" ry="2" /> | |
| <text x="36.42" y="303.5" ></text> | |
| </g> | |
| <g > | |
| <title>unix_stream_recvmsg (30,824,712 samples, 0.04%)</title><rect x="27.7" y="229" width="0.7" height="15.0" fill="rgb(251,213,51)" rx="2" ry="2" /> | |
| <text x="30.72" y="239.5" ></text> | |
| </g> | |
| <g > | |
| <title>unix_stream_sendmsg (52,015,356 samples, 0.07%)</title><rect x="34.3" y="229" width="1.1" height="15.0" fill="rgb(240,161,38)" rx="2" ry="2" /> | |
| <text x="37.28" y="239.5" ></text> | |
| </g> | |
| <g > | |
| <title>dma_resv_reserve_fences (6,512,441 samples, 0.01%)</title><rect x="1471.3" y="149" width="0.2" height="15.0" fill="rgb(209,20,5)" rx="2" ry="2" /> | |
| <text x="1474.33" y="159.5" ></text> | |
| </g> | |
| <g > | |
| <title>__memcg_slab_post_alloc_hook (14,286,749 samples, 0.02%)</title><rect x="34.7" y="149" width="0.3" height="15.0" fill="rgb(207,9,2)" rx="2" ry="2" /> | |
| <text x="37.66" y="159.5" ></text> | |
| </g> | |
| <g > | |
| <title>__list_del_entry_valid_or_report (9,414,028 samples, 0.01%)</title><rect x="1467.8" y="133" width="0.2" height="15.0" fill="rgb(243,176,42)" rx="2" ry="2" /> | |
| <text x="1470.79" y="143.5" ></text> | |
| </g> | |
| <g > | |
| <title>mutex_lock (12,096,922 samples, 0.02%)</title><rect x="1479.2" y="229" width="0.2" height="15.0" fill="rgb(217,57,13)" rx="2" ry="2" /> | |
| <text x="1482.18" y="239.5" ></text> | |
| </g> | |
| </g> | |
| </svg> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment