Created
September 20, 2025 09:45
-
-
Save lucmann/7c191497c2cd7d22893df553e42b4f76 to your computer and use it in GitHub Desktop.
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="1200" height="966" onload="init(evt)" viewBox="0 0 1200 966" 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="1200.0" height="966.0" fill="url(#background)" /> | |
| <text id="title" x="600.00" y="24" >Flame Graph</text> | |
| <text id="details" x="10.00" y="949" > </text> | |
| <text id="unzoom" x="10.00" y="24" class="hide">Reset Zoom</text> | |
| <text id="search" x="1090.00" y="24" >Search</text> | |
| <text id="ignorecase" x="1174.00" y="24" >ic</text> | |
| <text id="matched" x="1090.00" y="949" > </text> | |
| <g id="frames"> | |
| <g > | |
| <title>void st_update_array_templ< (66,935,387 samples, 0.04%)</title><rect x="813.7" y="549" width="0.4" height="15.0" fill="rgb(243,178,42)" rx="2" ry="2" /> | |
| <text x="816.66" y="559.5" ></text> | |
| </g> | |
| <g > | |
| <title>invoke_syscall (46,920,774 samples, 0.03%)</title><rect x="1177.8" y="613" width="0.3" height="15.0" fill="rgb(209,18,4)" rx="2" ry="2" /> | |
| <text x="1180.84" y="623.5" ></text> | |
| </g> | |
| <g > | |
| <title>st_update_single_texture (24,575,899 samples, 0.01%)</title><rect x="1087.8" y="597" width="0.2" height="15.0" fill="rgb(208,15,3)" rx="2" ry="2" /> | |
| <text x="1090.84" y="607.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_unmarshal_Uniform3f (38,518,073 samples, 0.02%)</title><rect x="1064.6" y="693" width="0.3" height="15.0" fill="rgb(231,119,28)" rx="2" ry="2" /> | |
| <text x="1067.61" y="703.5" ></text> | |
| </g> | |
| <g > | |
| <title>util_queue_add_job_locked.part.0 (27,121,381 samples, 0.02%)</title><rect x="38.9" y="757" width="0.2" height="15.0" fill="rgb(243,177,42)" rx="2" ry="2" /> | |
| <text x="41.92" y="767.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_MapBufferRange (15,993,240 samples, 0.01%)</title><rect x="1053.5" y="725" width="0.1" height="15.0" fill="rgb(238,156,37)" rx="2" ry="2" /> | |
| <text x="1056.49" y="735.5" ></text> | |
| </g> | |
| <g > | |
| <title>xcb_writev (17,100,071 samples, 0.01%)</title><rect x="504.7" y="725" width="0.1" height="15.0" fill="rgb(254,228,54)" rx="2" ry="2" /> | |
| <text x="507.73" y="735.5" ></text> | |
| </g> | |
| <g > | |
| <title>__aarch64_cas4_acq (34,788,617 samples, 0.02%)</title><rect x="35.6" y="789" width="0.2" height="15.0" fill="rgb(231,124,29)" rx="2" ry="2" /> | |
| <text x="38.56" y="799.5" ></text> | |
| </g> | |
| <g > | |
| <title>cso_set_rasterizer (22,486,711 samples, 0.01%)</title><rect x="1084.5" y="629" width="0.2" height="15.0" fill="rgb(242,172,41)" rx="2" ry="2" /> | |
| <text x="1087.55" y="639.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_marshal_ActiveTexture (36,512,603 samples, 0.02%)</title><rect x="1053.6" y="741" width="0.3" height="15.0" fill="rgb(224,88,21)" rx="2" ry="2" /> | |
| <text x="1056.63" y="751.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_unmarshal_VertexAttribPointer_packed (17,090,027 samples, 0.01%)</title><rect x="830.6" y="629" width="0.1" height="15.0" fill="rgb(232,124,29)" rx="2" ry="2" /> | |
| <text x="833.60" y="639.5" ></text> | |
| </g> | |
| <g > | |
| <title>st_make_bound_samplers_resident (29,296,905 samples, 0.02%)</title><rect x="415.4" y="709" width="0.2" height="15.0" fill="rgb(234,136,32)" rx="2" ry="2" /> | |
| <text x="418.37" y="719.5" ></text> | |
| </g> | |
| <g > | |
| <title>__aarch64_ldadd4_acq_rel (33,942,187 samples, 0.02%)</title><rect x="405.2" y="709" width="0.2" height="15.0" fill="rgb(228,108,25)" rx="2" ry="2" /> | |
| <text x="408.16" y="719.5" ></text> | |
| </g> | |
| <g > | |
| <title>_glapi_set_dispatch (20,747,371 samples, 0.01%)</title><rect x="920.7" y="677" width="0.1" height="15.0" fill="rgb(208,15,3)" rx="2" ry="2" /> | |
| <text x="923.66" y="687.5" ></text> | |
| </g> | |
| <g > | |
| <title>glthread_unmarshal_batch (71,300,908 samples, 0.04%)</title><rect x="1067.8" y="693" width="0.5" height="15.0" fill="rgb(247,195,46)" rx="2" ry="2" /> | |
| <text x="1070.79" y="703.5" ></text> | |
| </g> | |
| <g > | |
| <title>__aarch64_ldadd4_acq_rel (55,332,705 samples, 0.03%)</title><rect x="985.8" y="629" width="0.4" height="15.0" fill="rgb(228,108,25)" rx="2" ry="2" /> | |
| <text x="988.83" y="639.5" ></text> | |
| </g> | |
| <g > | |
| <title>[libxcb.so.1.1.0] (41,656,171 samples, 0.02%)</title><rect x="1105.9" y="501" width="0.2" height="15.0" fill="rgb(226,98,23)" rx="2" ry="2" /> | |
| <text x="1108.85" y="511.5" ></text> | |
| </g> | |
| <g > | |
| <title>amdgpu_cs_add_buffer (450,902,278 samples, 0.25%)</title><rect x="130.2" y="773" width="2.9" height="15.0" fill="rgb(254,227,54)" rx="2" ry="2" /> | |
| <text x="133.19" y="783.5" ></text> | |
| </g> | |
| <g > | |
| <title>amdgpu_job_alloc (79,552,484 samples, 0.04%)</title><rect x="305.7" y="565" width="0.5" height="15.0" fill="rgb(251,213,51)" rx="2" ry="2" /> | |
| <text x="308.72" y="575.5" ></text> | |
| </g> | |
| <g > | |
| <title>png_read_image (21,569,673 samples, 0.01%)</title><rect x="741.3" y="645" width="0.1" height="15.0" fill="rgb(248,199,47)" rx="2" ry="2" /> | |
| <text x="744.30" y="655.5" ></text> | |
| </g> | |
| <g > | |
| <title>tc_add_sized_call (52,515,258 samples, 0.03%)</title><rect x="420.1" y="693" width="0.3" height="15.0" fill="rgb(245,187,44)" rx="2" ry="2" /> | |
| <text x="423.08" y="703.5" ></text> | |
| </g> | |
| <g > | |
| <title>update_shader_samplers (19,635,277 samples, 0.01%)</title><rect x="936.2" y="581" width="0.1" height="15.0" fill="rgb(229,113,27)" rx="2" ry="2" /> | |
| <text x="939.16" y="591.5" ></text> | |
| </g> | |
| <g > | |
| <title>el0t_64_sync_handler (15,832,224 samples, 0.01%)</title><rect x="1050.5" y="677" width="0.1" height="15.0" fill="rgb(211,32,7)" rx="2" ry="2" /> | |
| <text x="1053.50" y="687.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_update_valid_to_render_state (34,215,836 samples, 0.02%)</title><rect x="1146.0" y="645" width="0.3" height="15.0" fill="rgb(219,66,15)" rx="2" ry="2" /> | |
| <text x="1149.04" y="655.5" ></text> | |
| </g> | |
| <g > | |
| <title>remove_attachment (49,346,001 samples, 0.03%)</title><rect x="1089.2" y="661" width="0.3" height="15.0" fill="rgb(245,185,44)" rx="2" ry="2" /> | |
| <text x="1092.19" y="671.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_update_state (16,292,478 samples, 0.01%)</title><rect x="826.2" y="597" width="0.1" height="15.0" fill="rgb(222,78,18)" rx="2" ry="2" /> | |
| <text x="829.24" y="607.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_Uniform3f (98,995,775 samples, 0.05%)</title><rect x="461.9" y="789" width="0.6" height="15.0" fill="rgb(217,56,13)" rx="2" ry="2" /> | |
| <text x="464.89" y="799.5" ></text> | |
| </g> | |
| <g > | |
| <title>sock_recvmsg (65,240,878 samples, 0.04%)</title><rect x="507.9" y="501" width="0.4" height="15.0" fill="rgb(206,5,1)" rx="2" ry="2" /> | |
| <text x="510.89" y="511.5" ></text> | |
| </g> | |
| <g > | |
| <title>update_shader_samplers (23,960,103 samples, 0.01%)</title><rect x="1062.5" y="613" width="0.1" height="15.0" fill="rgb(229,113,27)" rx="2" ry="2" /> | |
| <text x="1065.48" y="623.5" ></text> | |
| </g> | |
| <g > | |
| <title>tc_draw_vbo (31,853,643 samples, 0.02%)</title><rect x="1154.2" y="677" width="0.2" height="15.0" fill="rgb(207,9,2)" rx="2" ry="2" /> | |
| <text x="1157.19" y="687.5" ></text> | |
| </g> | |
| <g > | |
| <title>[unknown] (81,044,479 samples, 0.04%)</title><rect x="912.5" y="709" width="0.5" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" /> | |
| <text x="915.46" y="719.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_VertexAttrib4Nubv (42,644,197 samples, 0.02%)</title><rect x="951.4" y="645" width="0.3" height="15.0" fill="rgb(231,121,29)" rx="2" ry="2" /> | |
| <text x="954.44" y="655.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_BindBuffer (39,671,940 samples, 0.02%)</title><rect x="347.4" y="773" width="0.3" height="15.0" fill="rgb(210,23,5)" rx="2" ry="2" /> | |
| <text x="350.42" y="783.5" ></text> | |
| </g> | |
| <g > | |
| <title>__GI___ioctl (217,594,030 samples, 0.12%)</title><rect x="536.9" y="629" width="1.4" height="15.0" fill="rgb(232,128,30)" rx="2" ry="2" /> | |
| <text x="539.87" y="639.5" ></text> | |
| </g> | |
| <g > | |
| <title>el0t_64_sync_handler (113,892,474 samples, 0.06%)</title><rect x="972.6" y="629" width="0.8" height="15.0" fill="rgb(211,32,7)" rx="2" ry="2" /> | |
| <text x="975.61" y="639.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_unmarshal_Clear (176,259,584 samples, 0.10%)</title><rect x="987.9" y="677" width="1.1" height="15.0" fill="rgb(227,105,25)" rx="2" ry="2" /> | |
| <text x="990.89" y="687.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_VertexAttrib3fARB (21,902,315 samples, 0.01%)</title><rect x="1027.4" y="661" width="0.1" height="15.0" fill="rgb(207,13,3)" rx="2" ry="2" /> | |
| <text x="1030.41" y="671.5" ></text> | |
| </g> | |
| <g > | |
| <title>tc_add_sized_call (61,758,013 samples, 0.03%)</title><rect x="449.6" y="693" width="0.4" height="15.0" fill="rgb(245,187,44)" rx="2" ry="2" /> | |
| <text x="452.57" y="703.5" ></text> | |
| </g> | |
| <g > | |
| <title>el0_svc_common.constprop.0 (208,014,710 samples, 0.12%)</title><rect x="249.2" y="693" width="1.4" height="15.0" fill="rgb(224,89,21)" rx="2" ry="2" /> | |
| <text x="252.24" y="703.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_UniformMatrix4fv (21,818,834 samples, 0.01%)</title><rect x="1154.9" y="693" width="0.2" height="15.0" fill="rgb(235,139,33)" rx="2" ry="2" /> | |
| <text x="1157.94" y="703.5" ></text> | |
| </g> | |
| <g > | |
| <title>el0t_64_sync (10,002,309,564 samples, 5.54%)</title><rect x="266.1" y="757" width="65.3" height="15.0" fill="rgb(217,56,13)" rx="2" ry="2" /> | |
| <text x="269.07" y="767.5" >el0t_64..</text> | |
| </g> | |
| <g > | |
| <title>__aarch64_cas4_sync (18,009,935 samples, 0.01%)</title><rect x="1062.7" y="581" width="0.1" height="15.0" fill="rgb(253,222,53)" rx="2" ry="2" /> | |
| <text x="1065.66" y="591.5" ></text> | |
| </g> | |
| <g > | |
| <title>do_futex (16,449,748 samples, 0.01%)</title><rect x="418.8" y="517" width="0.2" height="15.0" fill="rgb(245,184,44)" rx="2" ry="2" /> | |
| <text x="421.84" y="527.5" ></text> | |
| </g> | |
| <g > | |
| <title>copy_iovec_from_user (17,259,523 samples, 0.01%)</title><rect x="508.4" y="485" width="0.1" height="15.0" fill="rgb(207,9,2)" rx="2" ry="2" /> | |
| <text x="511.39" y="495.5" ></text> | |
| </g> | |
| <g > | |
| <title>si_shader_select (56,314,109 samples, 0.03%)</title><rect x="138.0" y="741" width="0.3" height="15.0" fill="rgb(254,227,54)" rx="2" ry="2" /> | |
| <text x="140.96" y="751.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_update_state_locked (25,186,589 samples, 0.01%)</title><rect x="379.3" y="741" width="0.1" height="15.0" fill="rgb(214,43,10)" rx="2" ry="2" /> | |
| <text x="382.27" y="751.5" ></text> | |
| </g> | |
| <g > | |
| <title>__aarch64_ldadd4_acq_rel (403,153,870 samples, 0.22%)</title><rect x="886.1" y="581" width="2.7" height="15.0" fill="rgb(228,108,25)" rx="2" ry="2" /> | |
| <text x="889.13" y="591.5" ></text> | |
| </g> | |
| <g > | |
| <title>update_array.constprop.0 (18,422,968 samples, 0.01%)</title><rect x="1029.0" y="629" width="0.1" height="15.0" fill="rgb(224,88,21)" rx="2" ry="2" /> | |
| <text x="1032.00" y="639.5" ></text> | |
| </g> | |
| <g > | |
| <title>__schedule (41,323,140 samples, 0.02%)</title><rect x="29.9" y="565" width="0.3" height="15.0" fill="rgb(227,103,24)" rx="2" ry="2" /> | |
| <text x="32.93" y="575.5" ></text> | |
| </g> | |
| <g > | |
| <title>el0_svc_common.constprop.0 (96,747,647 samples, 0.05%)</title><rect x="13.5" y="661" width="0.6" height="15.0" fill="rgb(224,89,21)" rx="2" ry="2" /> | |
| <text x="16.47" y="671.5" ></text> | |
| </g> | |
| <g > | |
| <title>el0_svc (29,550,363 samples, 0.02%)</title><rect x="17.1" y="709" width="0.2" height="15.0" fill="rgb(244,183,43)" rx="2" ry="2" /> | |
| <text x="20.14" y="719.5" ></text> | |
| </g> | |
| <g > | |
| <title>vbo_exec_copy_to_current (16,772,866 samples, 0.01%)</title><rect x="456.5" y="757" width="0.1" height="15.0" fill="rgb(218,60,14)" rx="2" ry="2" /> | |
| <text x="459.50" y="767.5" ></text> | |
| </g> | |
| <g > | |
| <title>invoke_syscall (259,140,182 samples, 0.14%)</title><rect x="29.0" y="677" width="1.7" height="15.0" fill="rgb(209,18,4)" rx="2" ry="2" /> | |
| <text x="31.97" y="687.5" ></text> | |
| </g> | |
| <g > | |
| <title>update_program (47,873,931 samples, 0.03%)</title><rect x="934.2" y="597" width="0.3" height="15.0" fill="rgb(236,145,34)" rx="2" ry="2" /> | |
| <text x="937.23" y="607.5" ></text> | |
| </g> | |
| <g > | |
| <title>__vfscanf_internal (82,100,482 samples, 0.05%)</title><rect x="1179.6" y="693" width="0.5" height="15.0" fill="rgb(210,26,6)" rx="2" ry="2" /> | |
| <text x="1182.60" y="703.5" ></text> | |
| </g> | |
| <g > | |
| <title>tc_add_draw_single_call (22,524,376 samples, 0.01%)</title><rect x="850.0" y="581" width="0.2" height="15.0" fill="rgb(214,45,10)" rx="2" ry="2" /> | |
| <text x="853.00" y="591.5" ></text> | |
| </g> | |
| <g > | |
| <title>__check_object_size (15,909,138 samples, 0.01%)</title><rect x="1161.9" y="373" width="0.1" height="15.0" fill="rgb(226,98,23)" rx="2" ry="2" /> | |
| <text x="1164.91" y="383.5" ></text> | |
| </g> | |
| <g > | |
| <title>___slab_alloc (18,771,513 samples, 0.01%)</title><rect x="305.8" y="517" width="0.1" height="15.0" fill="rgb(230,115,27)" rx="2" ry="2" /> | |
| <text x="308.81" y="527.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_unmarshal_BufferSubData (17,788,051 samples, 0.01%)</title><rect x="927.6" y="661" width="0.1" height="15.0" fill="rgb(218,60,14)" rx="2" ry="2" /> | |
| <text x="930.62" y="671.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_VertexAttribPointer (32,507,439 samples, 0.02%)</title><rect x="815.2" y="597" width="0.2" height="15.0" fill="rgb(211,29,7)" rx="2" ry="2" /> | |
| <text x="818.16" y="607.5" ></text> | |
| </g> | |
| <g > | |
| <title>xcb_send_request_with_fds64 (69,616,056 samples, 0.04%)</title><rect x="543.5" y="741" width="0.4" height="15.0" fill="rgb(239,156,37)" rx="2" ry="2" /> | |
| <text x="546.46" y="751.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_validated_drawrangeelements (9,443,785,092 samples, 5.23%)</title><rect x="394.6" y="773" width="61.8" height="15.0" fill="rgb(230,115,27)" rx="2" ry="2" /> | |
| <text x="397.63" y="783.5" >_mesa_..</text> | |
| </g> | |
| <g > | |
| <title>gfx6_emit_barrier (24,994,205 samples, 0.01%)</title><rect x="138.7" y="757" width="0.2" height="15.0" fill="rgb(253,225,53)" rx="2" ry="2" /> | |
| <text x="141.72" y="767.5" ></text> | |
| </g> | |
| <g > | |
| <title>si_buffer_transfer_unmap (33,037,436 samples, 0.02%)</title><rect x="519.6" y="661" width="0.2" height="15.0" fill="rgb(221,75,18)" rx="2" ry="2" /> | |
| <text x="522.59" y="671.5" ></text> | |
| </g> | |
| <g > | |
| <title>st_upload_constants (111,205,691 samples, 0.06%)</title><rect x="850.9" y="581" width="0.7" height="15.0" fill="rgb(238,154,36)" rx="2" ry="2" /> | |
| <text x="853.90" y="591.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_update_texture_state (1,389,589,551 samples, 0.77%)</title><rect x="382.6" y="741" width="9.1" height="15.0" fill="rgb(237,148,35)" rx="2" ry="2" /> | |
| <text x="385.60" y="751.5" ></text> | |
| </g> | |
| <g > | |
| <title>unix_destruct_scm (23,694,378 samples, 0.01%)</title><rect x="1107.6" y="229" width="0.2" height="15.0" fill="rgb(207,13,3)" rx="2" ry="2" /> | |
| <text x="1110.63" y="239.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_lookup_shader_program_err_glthread (80,692,586 samples, 0.04%)</title><rect x="1024.7" y="645" width="0.5" height="15.0" fill="rgb(246,190,45)" rx="2" ry="2" /> | |
| <text x="1027.71" y="655.5" ></text> | |
| </g> | |
| <g > | |
| <title>si_bind_rs_state (54,756,946 samples, 0.03%)</title><rect x="57.5" y="773" width="0.3" height="15.0" fill="rgb(233,130,31)" rx="2" ry="2" /> | |
| <text x="60.49" y="783.5" ></text> | |
| </g> | |
| <g > | |
| <title>el0t_64_sync (19,734,986 samples, 0.01%)</title><rect x="515.4" y="501" width="0.2" height="15.0" fill="rgb(217,56,13)" rx="2" ry="2" /> | |
| <text x="518.44" y="511.5" ></text> | |
| </g> | |
| <g > | |
| <title>schedule (33,741,518 samples, 0.02%)</title><rect x="249.8" y="581" width="0.2" height="15.0" fill="rgb(254,229,54)" rx="2" ry="2" /> | |
| <text x="252.79" y="591.5" ></text> | |
| </g> | |
| <g > | |
| <title>__GI___memset_generic (18,333,461 samples, 0.01%)</title><rect x="49.1" y="725" width="0.1" height="15.0" fill="rgb(210,26,6)" rx="2" ry="2" /> | |
| <text x="52.11" y="735.5" ></text> | |
| </g> | |
| <g > | |
| <title>_XEventsQueued (261,720,496 samples, 0.14%)</title><rect x="503.0" y="757" width="1.7" height="15.0" fill="rgb(232,125,30)" rx="2" ry="2" /> | |
| <text x="505.97" y="767.5" ></text> | |
| </g> | |
| <g > | |
| <title>futex_wake (17,935,666 samples, 0.01%)</title><rect x="956.3" y="485" width="0.2" height="15.0" fill="rgb(219,65,15)" rx="2" ry="2" /> | |
| <text x="959.33" y="495.5" ></text> | |
| </g> | |
| <g > | |
| <title>validate_array_format.constprop.0 (28,443,521 samples, 0.02%)</title><rect x="1028.7" y="629" width="0.2" height="15.0" fill="rgb(232,126,30)" rx="2" ry="2" /> | |
| <text x="1031.69" y="639.5" ></text> | |
| </g> | |
| <g > | |
| <title>tc_batch_execute (1,590,075,395 samples, 0.88%)</title><rect x="885.0" y="613" width="10.4" height="15.0" fill="rgb(249,205,49)" rx="2" ry="2" /> | |
| <text x="888.00" y="623.5" ></text> | |
| </g> | |
| <g > | |
| <title>update_program (23,025,020 samples, 0.01%)</title><rect x="992.5" y="597" width="0.1" height="15.0" fill="rgb(236,145,34)" rx="2" ry="2" /> | |
| <text x="995.49" y="607.5" ></text> | |
| </g> | |
| <g > | |
| <title>cso_set_samplers (45,762,057 samples, 0.03%)</title><rect x="871.9" y="549" width="0.3" height="15.0" fill="rgb(215,48,11)" rx="2" ry="2" /> | |
| <text x="874.92" y="559.5" ></text> | |
| </g> | |
| <g > | |
| <title>syscall_trace_exit (18,044,217 samples, 0.01%)</title><rect x="504.2" y="565" width="0.1" height="15.0" fill="rgb(247,196,46)" rx="2" ry="2" /> | |
| <text x="507.19" y="575.5" ></text> | |
| </g> | |
| <g > | |
| <title>amdgpu_fence_wait (19,079,865 samples, 0.01%)</title><rect x="1034.1" y="597" width="0.1" height="15.0" fill="rgb(227,105,25)" rx="2" ry="2" /> | |
| <text x="1037.09" y="607.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_uniform (83,393,575 samples, 0.05%)</title><rect x="462.0" y="773" width="0.5" height="15.0" fill="rgb(248,201,48)" rx="2" ry="2" /> | |
| <text x="465.00" y="783.5" ></text> | |
| </g> | |
| <g > | |
| <title>util_queue_add_job_locked.part.0 (20,121,086 samples, 0.01%)</title><rect x="977.9" y="693" width="0.1" height="15.0" fill="rgb(243,177,42)" rx="2" ry="2" /> | |
| <text x="980.88" y="703.5" ></text> | |
| </g> | |
| <g > | |
| <title>amdgpu_bo_map (34,097,313 samples, 0.02%)</title><rect x="1072.3" y="661" width="0.2" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" /> | |
| <text x="1075.28" y="671.5" ></text> | |
| </g> | |
| <g > | |
| <title>st_get_texture_sampler_view_from_stobj (22,946,332 samples, 0.01%)</title><rect x="811.2" y="517" width="0.2" height="15.0" fill="rgb(211,32,7)" rx="2" ry="2" /> | |
| <text x="814.21" y="527.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_unmarshal_Uniform4f (34,521,510 samples, 0.02%)</title><rect x="464.9" y="805" width="0.2" height="15.0" fill="rgb(224,89,21)" rx="2" ry="2" /> | |
| <text x="467.92" y="815.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_DisableVertexAttribArray (18,262,185 samples, 0.01%)</title><rect x="928.0" y="645" width="0.1" height="15.0" fill="rgb(251,211,50)" rx="2" ry="2" /> | |
| <text x="930.95" y="655.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_BindTexture (320,021,941 samples, 0.18%)</title><rect x="983.6" y="661" width="2.1" height="15.0" fill="rgb(234,136,32)" rx="2" ry="2" /> | |
| <text x="986.61" y="671.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_unmarshal_BindFramebuffer (35,726,675 samples, 0.02%)</title><rect x="1077.5" y="709" width="0.2" height="15.0" fill="rgb(245,185,44)" rx="2" ry="2" /> | |
| <text x="1080.50" y="719.5" ></text> | |
| </g> | |
| <g > | |
| <title>slab_free (81,652,791 samples, 0.05%)</title><rect x="519.9" y="677" width="0.5" height="15.0" fill="rgb(249,204,48)" rx="2" ry="2" /> | |
| <text x="522.86" y="687.5" ></text> | |
| </g> | |
| <g > | |
| <title>dri_st_framebuffer_validate (501,930,768 samples, 0.28%)</title><rect x="1105.4" y="629" width="3.3" height="15.0" fill="rgb(206,5,1)" rx="2" ry="2" /> | |
| <text x="1108.44" y="639.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_bufferobj_map_range (634,012,264 samples, 0.35%)</title><rect x="1036.0" y="709" width="4.1" height="15.0" fill="rgb(206,7,1)" rx="2" ry="2" /> | |
| <text x="1038.99" y="719.5" ></text> | |
| </g> | |
| <g > | |
| <title>__aarch64_ldadd4_acq_rel (22,804,948 samples, 0.01%)</title><rect x="83.8" y="661" width="0.1" height="15.0" fill="rgb(228,108,25)" rx="2" ry="2" /> | |
| <text x="86.76" y="671.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_Uniform4f (37,798,526 samples, 0.02%)</title><rect x="1090.7" y="693" width="0.2" height="15.0" fill="rgb(210,26,6)" rx="2" ry="2" /> | |
| <text x="1093.67" y="703.5" ></text> | |
| </g> | |
| <g > | |
| <title>glthread_unmarshal_batch (3,330,887,984 samples, 1.84%)</title><rect x="861.3" y="661" width="21.8" height="15.0" fill="rgb(247,195,46)" rx="2" ry="2" /> | |
| <text x="864.32" y="671.5" >g..</text> | |
| </g> | |
| <g > | |
| <title>si_emit_graphics_shader_pointers (92,359,626 samples, 0.05%)</title><rect x="522.6" y="661" width="0.6" height="15.0" fill="rgb(232,125,29)" rx="2" ry="2" /> | |
| <text x="525.62" y="671.5" ></text> | |
| </g> | |
| <g > | |
| <title>__aarch64_cas4_sync (290,225,777 samples, 0.16%)</title><rect x="1098.9" y="661" width="1.9" height="15.0" fill="rgb(253,222,53)" rx="2" ry="2" /> | |
| <text x="1101.87" y="671.5" ></text> | |
| </g> | |
| <g > | |
| <title>__audit_syscall_exit (44,004,665 samples, 0.02%)</title><rect x="331.0" y="661" width="0.3" height="15.0" fill="rgb(218,62,14)" rx="2" ry="2" /> | |
| <text x="333.98" y="671.5" ></text> | |
| </g> | |
| <g > | |
| <title>shared_dispatch_stub_310 (16,348,715 samples, 0.01%)</title><rect x="1040.7" y="725" width="0.1" height="15.0" fill="rgb(231,120,28)" rx="2" ry="2" /> | |
| <text x="1043.74" y="735.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_MapBufferRange (60,836,529 samples, 0.03%)</title><rect x="918.0" y="693" width="0.4" height="15.0" fill="rgb(238,156,37)" rx="2" ry="2" /> | |
| <text x="920.96" y="703.5" ></text> | |
| </g> | |
| <g > | |
| <title>xcb_poll_for_special_event (41,656,171 samples, 0.02%)</title><rect x="1105.9" y="517" width="0.2" height="15.0" fill="rgb(224,90,21)" rx="2" ry="2" /> | |
| <text x="1108.85" y="527.5" ></text> | |
| </g> | |
| <g > | |
| <title>update_framebuffer (87,536,273 samples, 0.05%)</title><rect x="1002.1" y="597" width="0.6" height="15.0" fill="rgb(222,78,18)" rx="2" ry="2" /> | |
| <text x="1005.14" y="607.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_UseProgram (2,175,543,099 samples, 1.20%)</title><rect x="477.2" y="789" width="14.2" height="15.0" fill="rgb(212,36,8)" rx="2" ry="2" /> | |
| <text x="480.23" y="799.5" ></text> | |
| </g> | |
| <g > | |
| <title>pthread_cond_signal@@GLIBC_2.17 (30,473,566 samples, 0.02%)</title><rect x="420.2" y="613" width="0.2" height="15.0" fill="rgb(232,126,30)" rx="2" ry="2" /> | |
| <text x="423.19" y="623.5" ></text> | |
| </g> | |
| <g > | |
| <title>do_el0_svc (63,814,501 samples, 0.04%)</title><rect x="1189.6" y="837" width="0.4" height="15.0" fill="rgb(218,60,14)" rx="2" ry="2" /> | |
| <text x="1192.58" y="847.5" ></text> | |
| </g> | |
| <g > | |
| <title>validate_uniform_parameters (30,253,151 samples, 0.02%)</title><rect x="1022.1" y="613" width="0.2" height="15.0" fill="rgb(234,137,32)" rx="2" ry="2" /> | |
| <text x="1025.13" y="623.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_reference_texobj_ (19,049,635 samples, 0.01%)</title><rect x="1057.5" y="661" width="0.1" height="15.0" fill="rgb(229,111,26)" rx="2" ry="2" /> | |
| <text x="1060.47" y="671.5" ></text> | |
| </g> | |
| <g > | |
| <title>el0t_64_sync (23,056,031 samples, 0.01%)</title><rect x="1126.2" y="533" width="0.1" height="15.0" fill="rgb(217,56,13)" rx="2" ry="2" /> | |
| <text x="1129.17" y="543.5" ></text> | |
| </g> | |
| <g > | |
| <title>st_update_single_texture (65,125,866 samples, 0.04%)</title><rect x="1014.3" y="565" width="0.4" height="15.0" fill="rgb(208,15,3)" rx="2" ry="2" /> | |
| <text x="1017.27" y="575.5" ></text> | |
| </g> | |
| <g > | |
| <title>drm_sched_fence_release_finished (56,921,985 samples, 0.03%)</title><rect x="308.2" y="533" width="0.4" height="15.0" fill="rgb(205,2,0)" rx="2" ry="2" /> | |
| <text x="311.23" y="543.5" ></text> | |
| </g> | |
| <g > | |
| <title>gfx6_emit_framebuffer_state (153,216,898 samples, 0.08%)</title><rect x="138.9" y="773" width="1.0" height="15.0" fill="rgb(245,185,44)" rx="2" ry="2" /> | |
| <text x="141.91" y="783.5" ></text> | |
| </g> | |
| <g > | |
| <title>invoke_syscall (31,405,517 samples, 0.02%)</title><rect x="1105.9" y="373" width="0.2" height="15.0" fill="rgb(209,18,4)" rx="2" ry="2" /> | |
| <text x="1108.89" y="383.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_unmarshal_DrawArraysInstanced (16,555,465 samples, 0.01%)</title><rect x="1030.4" y="661" width="0.1" height="15.0" fill="rgb(209,20,4)" rx="2" ry="2" /> | |
| <text x="1033.40" y="671.5" ></text> | |
| </g> | |
| <g > | |
| <title>__atan2f (41,438,981 samples, 0.02%)</title><rect x="1075.0" y="757" width="0.3" height="15.0" fill="rgb(241,166,39)" rx="2" ry="2" /> | |
| <text x="1078.04" y="767.5" ></text> | |
| </g> | |
| <g > | |
| <title>malloc (17,761,343 samples, 0.01%)</title><rect x="787.1" y="181" width="0.1" height="15.0" fill="rgb(230,119,28)" rx="2" ry="2" /> | |
| <text x="790.11" y="191.5" ></text> | |
| </g> | |
| <g > | |
| <title>si_flush_gfx_cs (21,956,328 samples, 0.01%)</title><rect x="523.3" y="661" width="0.2" height="15.0" fill="rgb(242,171,41)" rx="2" ry="2" /> | |
| <text x="526.31" y="671.5" ></text> | |
| </g> | |
| <g > | |
| <title>amdgpu_bo_fence_wait (29,396,914 samples, 0.02%)</title><rect x="515.4" y="581" width="0.2" height="15.0" fill="rgb(214,41,9)" rx="2" ry="2" /> | |
| <text x="518.43" y="591.5" ></text> | |
| </g> | |
| <g > | |
| <title>__kmalloc_node_noprof (55,467,508 samples, 0.03%)</title><rect x="299.7" y="533" width="0.4" height="15.0" fill="rgb(245,185,44)" rx="2" ry="2" /> | |
| <text x="302.73" y="543.5" ></text> | |
| </g> | |
| <g > | |
| <title>st_prepare_draw (1,114,645,710 samples, 0.62%)</title><rect x="870.1" y="597" width="7.3" height="15.0" fill="rgb(214,45,10)" rx="2" ry="2" /> | |
| <text x="873.10" y="607.5" ></text> | |
| </g> | |
| <g > | |
| <title>st_update_rasterizer (52,272,766 samples, 0.03%)</title><rect x="1120.9" y="629" width="0.3" height="15.0" fill="rgb(240,164,39)" rx="2" ry="2" /> | |
| <text x="1123.85" y="639.5" ></text> | |
| </g> | |
| <g > | |
| <title>st_update_fp (82,850,367 samples, 0.05%)</title><rect x="404.1" y="741" width="0.5" height="15.0" fill="rgb(207,12,3)" rx="2" ry="2" /> | |
| <text x="407.10" y="751.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_BlendFunc (23,797,452 samples, 0.01%)</title><rect x="926.8" y="645" width="0.2" height="15.0" fill="rgb(218,64,15)" rx="2" ry="2" /> | |
| <text x="929.84" y="655.5" ></text> | |
| </g> | |
| <g > | |
| <title>st_upload_constants (59,078,129 samples, 0.03%)</title><rect x="851.2" y="565" width="0.4" height="15.0" fill="rgb(238,154,36)" rx="2" ry="2" /> | |
| <text x="854.20" y="575.5" ></text> | |
| </g> | |
| <g > | |
| <title>st_upload_constants (585,791,908 samples, 0.32%)</title><rect x="1008.5" y="613" width="3.8" height="15.0" fill="rgb(238,154,36)" rx="2" ry="2" /> | |
| <text x="1011.49" y="623.5" ></text> | |
| </g> | |
| <g > | |
| <title>tc_set_constant_buffer (96,044,628 samples, 0.05%)</title><rect x="418.4" y="725" width="0.6" height="15.0" fill="rgb(247,195,46)" rx="2" ry="2" /> | |
| <text x="421.37" y="735.5" ></text> | |
| </g> | |
| <g > | |
| <title>st_invalidate_state (22,272,584 samples, 0.01%)</title><rect x="869.2" y="581" width="0.2" height="15.0" fill="rgb(245,184,44)" rx="2" ry="2" /> | |
| <text x="872.24" y="591.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_unmarshal_FramebufferTexture2D (146,872,657 samples, 0.08%)</title><rect x="1088.9" y="709" width="1.0" height="15.0" fill="rgb(229,114,27)" rx="2" ry="2" /> | |
| <text x="1091.93" y="719.5" ></text> | |
| </g> | |
| <g > | |
| <title>update_textures (404,254,914 samples, 0.22%)</title><rect x="872.3" y="581" width="2.7" height="15.0" fill="rgb(232,125,29)" rx="2" ry="2" /> | |
| <text x="875.33" y="591.5" ></text> | |
| </g> | |
| <g > | |
| <title>__vsnprintf_internal (36,564,724 samples, 0.02%)</title><rect x="1177.2" y="773" width="0.2" height="15.0" fill="rgb(237,150,35)" rx="2" ry="2" /> | |
| <text x="1180.19" y="783.5" ></text> | |
| </g> | |
| <g > | |
| <title>drm_exec_prepare_obj (25,564,028 samples, 0.01%)</title><rect x="279.2" y="549" width="0.2" height="15.0" fill="rgb(230,115,27)" rx="2" ry="2" /> | |
| <text x="282.23" y="559.5" ></text> | |
| </g> | |
| <g > | |
| <title>el0_svc (19,734,986 samples, 0.01%)</title><rect x="515.4" y="469" width="0.2" height="15.0" fill="rgb(244,183,43)" rx="2" ry="2" /> | |
| <text x="518.44" y="479.5" ></text> | |
| </g> | |
| <g > | |
| <title>[redeclipse] (5,638,538,038 samples, 3.12%)</title><rect x="767.5" y="581" width="36.8" height="15.0" fill="rgb(253,222,53)" rx="2" ry="2" /> | |
| <text x="770.50" y="591.5" >[re..</text> | |
| </g> | |
| <g > | |
| <title>si_invalidate_inlinable_uniforms (19,177,787 samples, 0.01%)</title><rect x="54.1" y="757" width="0.1" height="15.0" fill="rgb(233,132,31)" rx="2" ry="2" /> | |
| <text x="57.10" y="767.5" ></text> | |
| </g> | |
| <g > | |
| <title>update_shader_samplers (17,251,126 samples, 0.01%)</title><rect x="1112.4" y="645" width="0.1" height="15.0" fill="rgb(229,113,27)" rx="2" ry="2" /> | |
| <text x="1115.42" y="655.5" ></text> | |
| </g> | |
| <g > | |
| <title>Mix_PlayingMusic (41,645,393 samples, 0.02%)</title><rect x="548.6" y="789" width="0.3" height="15.0" fill="rgb(208,14,3)" rx="2" ry="2" /> | |
| <text x="551.59" y="799.5" ></text> | |
| </g> | |
| <g > | |
| <title>pthread_cond_signal@@GLIBC_2.17 (15,466,356 samples, 0.01%)</title><rect x="1031.9" y="661" width="0.1" height="15.0" fill="rgb(232,126,30)" rx="2" ry="2" /> | |
| <text x="1034.86" y="671.5" ></text> | |
| </g> | |
| <g > | |
| <title>__arm64_sys_futex (33,059,383 samples, 0.02%)</title><rect x="501.2" y="677" width="0.2" height="15.0" fill="rgb(247,196,47)" rx="2" ry="2" /> | |
| <text x="504.19" y="687.5" ></text> | |
| </g> | |
| <g > | |
| <title>invoke_syscall (29,550,363 samples, 0.02%)</title><rect x="17.1" y="661" width="0.2" height="15.0" fill="rgb(209,18,4)" rx="2" ry="2" /> | |
| <text x="20.14" y="671.5" ></text> | |
| </g> | |
| <g > | |
| <title>pthread_cond_signal@@GLIBC_2.17 (25,439,930 samples, 0.01%)</title><rect x="38.9" y="725" width="0.2" height="15.0" fill="rgb(232,126,30)" rx="2" ry="2" /> | |
| <text x="41.93" y="735.5" ></text> | |
| </g> | |
| <g > | |
| <title>ranged_convert (122,649,042 samples, 0.07%)</title><rect x="1179.4" y="789" width="0.8" height="15.0" fill="rgb(244,182,43)" rx="2" ry="2" /> | |
| <text x="1182.41" y="799.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_BeginQueryIndexed (48,695,374 samples, 0.03%)</title><rect x="1097.2" y="677" width="0.3" height="15.0" fill="rgb(223,83,20)" rx="2" ry="2" /> | |
| <text x="1100.17" y="687.5" ></text> | |
| </g> | |
| <g > | |
| <title>si_bind_blend_state (35,128,963 samples, 0.02%)</title><rect x="50.0" y="773" width="0.3" height="15.0" fill="rgb(222,82,19)" rx="2" ry="2" /> | |
| <text x="53.03" y="783.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_update_texture_state (21,211,798 samples, 0.01%)</title><rect x="1110.5" y="629" width="0.1" height="15.0" fill="rgb(237,148,35)" rx="2" ry="2" /> | |
| <text x="1113.45" y="639.5" ></text> | |
| </g> | |
| <g > | |
| <title>pthread_cond_signal@@GLIBC_2.17 (150,587,305 samples, 0.08%)</title><rect x="1173.4" y="709" width="1.0" height="15.0" fill="rgb(232,126,30)" rx="2" ry="2" /> | |
| <text x="1176.42" y="719.5" ></text> | |
| </g> | |
| <g > | |
| <title>update_single_program_texture (756,042,403 samples, 0.42%)</title><rect x="386.7" y="709" width="4.9" height="15.0" fill="rgb(241,165,39)" rx="2" ry="2" /> | |
| <text x="389.68" y="719.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_lookup_shader_program_err_glthread (36,493,766 samples, 0.02%)</title><rect x="1066.4" y="661" width="0.2" height="15.0" fill="rgb(246,190,45)" rx="2" ry="2" /> | |
| <text x="1069.38" y="671.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_MapBufferRange (29,253,404 samples, 0.02%)</title><rect x="809.0" y="661" width="0.2" height="15.0" fill="rgb(238,156,37)" rx="2" ry="2" /> | |
| <text x="811.97" y="671.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_lookup_or_create_texture (538,504,159 samples, 0.30%)</title><rect x="1098.8" y="677" width="3.6" height="15.0" fill="rgb(235,140,33)" rx="2" ry="2" /> | |
| <text x="1101.85" y="687.5" ></text> | |
| </g> | |
| <g > | |
| <title>si_launch_grid (113,129,287 samples, 0.06%)</title><rect x="80.9" y="693" width="0.7" height="15.0" fill="rgb(236,146,35)" rx="2" ry="2" /> | |
| <text x="83.87" y="703.5" ></text> | |
| </g> | |
| <g > | |
| <title>st_finalize_texture (115,274,592 samples, 0.06%)</title><rect x="1132.5" y="581" width="0.7" height="15.0" fill="rgb(232,124,29)" rx="2" ry="2" /> | |
| <text x="1135.49" y="591.5" ></text> | |
| </g> | |
| <g > | |
| <title>import_iovec (16,438,342 samples, 0.01%)</title><rect x="1106.0" y="293" width="0.1" height="15.0" fill="rgb(241,168,40)" rx="2" ry="2" /> | |
| <text x="1108.96" y="303.5" ></text> | |
| </g> | |
| <g > | |
| <title>amdgpu_fence_wait (20,944,598 samples, 0.01%)</title><rect x="332.3" y="805" width="0.1" height="15.0" fill="rgb(227,105,25)" rx="2" ry="2" /> | |
| <text x="335.29" y="815.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_VertexAttribPointer (81,229,845 samples, 0.04%)</title><rect x="1148.2" y="677" width="0.5" height="15.0" fill="rgb(211,29,7)" rx="2" ry="2" /> | |
| <text x="1151.17" y="687.5" ></text> | |
| </g> | |
| <g > | |
| <title>util_queue_add_job_locked.part.0 (31,818,478 samples, 0.02%)</title><rect x="876.3" y="533" width="0.2" height="15.0" fill="rgb(243,177,42)" rx="2" ry="2" /> | |
| <text x="879.27" y="543.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_VertexAttribPointer (56,028,946 samples, 0.03%)</title><rect x="1067.4" y="677" width="0.4" height="15.0" fill="rgb(211,29,7)" rx="2" ry="2" /> | |
| <text x="1070.41" y="687.5" ></text> | |
| </g> | |
| <g > | |
| <title>si_query_hw_get_result (109,393,734 samples, 0.06%)</title><rect x="1164.2" y="677" width="0.7" height="15.0" fill="rgb(239,156,37)" rx="2" ry="2" /> | |
| <text x="1167.18" y="687.5" ></text> | |
| </g> | |
| <g > | |
| <title>si_emit_graphics_shader_pointers (41,846,101 samples, 0.02%)</title><rect x="177.1" y="757" width="0.3" height="15.0" fill="rgb(232,125,29)" rx="2" ry="2" /> | |
| <text x="180.12" y="767.5" ></text> | |
| </g> | |
| <g > | |
| <title>tc_call_bind_vertex_elements_state (146,619,602 samples, 0.08%)</title><rect x="60.2" y="805" width="1.0" height="15.0" fill="rgb(216,51,12)" rx="2" ry="2" /> | |
| <text x="63.20" y="815.5" ></text> | |
| </g> | |
| <g > | |
| <title>_tc_sync.constprop.0 (2,122,040,689 samples, 1.18%)</title><rect x="516.6" y="725" width="13.9" height="15.0" fill="rgb(208,15,3)" rx="2" ry="2" /> | |
| <text x="519.65" y="735.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_program_init_subroutine_defaults (20,788,034 samples, 0.01%)</title><rect x="1067.0" y="613" width="0.1" height="15.0" fill="rgb(231,122,29)" rx="2" ry="2" /> | |
| <text x="1069.96" y="623.5" ></text> | |
| </g> | |
| <g > | |
| <title>amdgpu_cs_add_buffer (62,382,835 samples, 0.03%)</title><rect x="197.1" y="757" width="0.4" height="15.0" fill="rgb(254,227,54)" rx="2" ry="2" /> | |
| <text x="200.08" y="767.5" ></text> | |
| </g> | |
| <g > | |
| <title>[libz.so.1.3] (192,126,839 samples, 0.11%)</title><rect x="1032.7" y="709" width="1.3" height="15.0" fill="rgb(230,116,27)" rx="2" ry="2" /> | |
| <text x="1035.72" y="719.5" ></text> | |
| </g> | |
| <g > | |
| <title>__mpn_divrem (23,935,848 samples, 0.01%)</title><rect x="514.7" y="565" width="0.1" height="15.0" fill="rgb(254,228,54)" rx="2" ry="2" /> | |
| <text x="517.69" y="575.5" ></text> | |
| </g> | |
| <g > | |
| <title>__arm64_sys_read (57,196,568 samples, 0.03%)</title><rect x="14.8" y="629" width="0.3" height="15.0" fill="rgb(227,105,25)" rx="2" ry="2" /> | |
| <text x="17.75" y="639.5" ></text> | |
| </g> | |
| <g > | |
| <title>__rseq_handle_notify_resume (31,416,250 samples, 0.02%)</title><rect x="1163.1" y="501" width="0.2" height="15.0" fill="rgb(238,153,36)" rx="2" ry="2" /> | |
| <text x="1166.11" y="511.5" ></text> | |
| </g> | |
| <g > | |
| <title>st_prepare_draw (18,457,155 samples, 0.01%)</title><rect x="866.7" y="597" width="0.1" height="15.0" fill="rgb(214,45,10)" rx="2" ry="2" /> | |
| <text x="869.72" y="607.5" ></text> | |
| </g> | |
| <g > | |
| <title>sock_recvmsg (26,922,344 samples, 0.01%)</title><rect x="503.5" y="485" width="0.2" height="15.0" fill="rgb(206,5,1)" rx="2" ry="2" /> | |
| <text x="506.48" y="495.5" ></text> | |
| </g> | |
| <g > | |
| <title>el0_svc_common.constprop.0 (126,902,510 samples, 0.07%)</title><rect x="895.7" y="437" width="0.8" height="15.0" fill="rgb(224,89,21)" rx="2" ry="2" /> | |
| <text x="898.72" y="447.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_glthread_finish (141,729,123 samples, 0.08%)</title><rect x="1171.9" y="757" width="0.9" height="15.0" fill="rgb(209,22,5)" rx="2" ry="2" /> | |
| <text x="1174.86" y="767.5" ></text> | |
| </g> | |
| <g > | |
| <title>__atan2f (17,039,626 samples, 0.01%)</title><rect x="1075.0" y="741" width="0.2" height="15.0" fill="rgb(241,166,39)" rx="2" ry="2" /> | |
| <text x="1078.05" y="751.5" ></text> | |
| </g> | |
| <g > | |
| <title>[libSDL2-2.0.so.0.3000.0] (510,966,431 samples, 0.28%)</title><rect x="502.4" y="789" width="3.3" height="15.0" fill="rgb(227,102,24)" rx="2" ry="2" /> | |
| <text x="505.40" y="799.5" ></text> | |
| </g> | |
| <g > | |
| <title>[libSDL2_mixer-2.0.so.0.800.0] (1,600,791,105 samples, 0.89%)</title><rect x="17.3" y="821" width="10.5" height="15.0" fill="rgb(244,183,43)" rx="2" ry="2" /> | |
| <text x="20.33" y="831.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_bind_framebuffers (26,824,300 samples, 0.01%)</title><rect x="983.1" y="661" width="0.2" height="15.0" fill="rgb(211,29,7)" rx="2" ry="2" /> | |
| <text x="986.08" y="671.5" ></text> | |
| </g> | |
| <g > | |
| <title>el0_svc_common.constprop.0 (167,696,173 samples, 0.09%)</title><rect x="252.6" y="725" width="1.1" height="15.0" fill="rgb(224,89,21)" rx="2" ry="2" /> | |
| <text x="255.65" y="735.5" ></text> | |
| </g> | |
| <g > | |
| <title>__poll (168,957,086 samples, 0.09%)</title><rect x="13.3" y="757" width="1.1" height="15.0" fill="rgb(250,208,49)" rx="2" ry="2" /> | |
| <text x="16.34" y="767.5" ></text> | |
| </g> | |
| <g > | |
| <title>vbo_exec_wrap_upgrade_vertex (16,443,027 samples, 0.01%)</title><rect x="814.9" y="581" width="0.2" height="15.0" fill="rgb(237,148,35)" rx="2" ry="2" /> | |
| <text x="817.95" y="591.5" ></text> | |
| </g> | |
| <g > | |
| <title>__arm64_sys_recvmsg (22,614,084 samples, 0.01%)</title><rect x="1106.2" y="373" width="0.1" height="15.0" fill="rgb(236,144,34)" rx="2" ry="2" /> | |
| <text x="1109.19" y="383.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_unmarshal_Disable (15,955,681 samples, 0.01%)</title><rect x="1152.6" y="709" width="0.1" height="15.0" fill="rgb(253,223,53)" rx="2" ry="2" /> | |
| <text x="1155.57" y="719.5" ></text> | |
| </g> | |
| <g > | |
| <title>st_get_texture_sampler_view_from_stobj (36,993,210 samples, 0.02%)</title><rect x="828.0" y="533" width="0.2" height="15.0" fill="rgb(211,32,7)" rx="2" ry="2" /> | |
| <text x="830.96" y="543.5" ></text> | |
| </g> | |
| <g > | |
| <title>si_pm4_emit_shader (44,236,902 samples, 0.02%)</title><rect x="83.7" y="709" width="0.3" height="15.0" fill="rgb(227,102,24)" rx="2" ry="2" /> | |
| <text x="86.74" y="719.5" ></text> | |
| </g> | |
| <g > | |
| <title>update_single_program_texture (117,344,135 samples, 0.06%)</title><rect x="991.5" y="581" width="0.7" height="15.0" fill="rgb(241,165,39)" rx="2" ry="2" /> | |
| <text x="994.45" y="591.5" ></text> | |
| </g> | |
| <g > | |
| <title>__arm64_sys_ioctl (38,773,203 samples, 0.02%)</title><rect x="38.4" y="597" width="0.2" height="15.0" fill="rgb(207,11,2)" rx="2" ry="2" /> | |
| <text x="41.36" y="607.5" ></text> | |
| </g> | |
| <g > | |
| <title>[libSDL2_mixer-2.0.so.0.800.0] (1,308,085,748 samples, 0.72%)</title><rect x="19.2" y="805" width="8.6" height="15.0" fill="rgb(244,183,43)" rx="2" ry="2" /> | |
| <text x="22.21" y="815.5" ></text> | |
| </g> | |
| <g > | |
| <title>do_poll.constprop.0 (47,783,658 samples, 0.03%)</title><rect x="13.6" y="597" width="0.3" height="15.0" fill="rgb(236,145,34)" rx="2" ry="2" /> | |
| <text x="16.62" y="607.5" ></text> | |
| </g> | |
| <g > | |
| <title>st_update_vp (28,811,187 samples, 0.02%)</title><rect x="1122.9" y="629" width="0.2" height="15.0" fill="rgb(254,227,54)" rx="2" ry="2" /> | |
| <text x="1125.94" y="639.5" ></text> | |
| </g> | |
| <g > | |
| <title>el0_svc_common.constprop.0 (92,633,494 samples, 0.05%)</title><rect x="36.4" y="709" width="0.6" height="15.0" fill="rgb(224,89,21)" rx="2" ry="2" /> | |
| <text x="39.37" y="719.5" ></text> | |
| </g> | |
| <g > | |
| <title>__aarch64_cas4_sync (688,663,016 samples, 0.38%)</title><rect x="429.1" y="693" width="4.5" height="15.0" fill="rgb(253,222,53)" rx="2" ry="2" /> | |
| <text x="432.07" y="703.5" ></text> | |
| </g> | |
| <g > | |
| <title>cso_set_samplers (145,402,782 samples, 0.08%)</title><rect x="1126.9" y="613" width="1.0" height="15.0" fill="rgb(215,48,11)" rx="2" ry="2" /> | |
| <text x="1129.93" y="623.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_glthread_finish (862,637,763 samples, 0.48%)</title><rect x="1150.8" y="741" width="5.6" height="15.0" fill="rgb(209,22,5)" rx="2" ry="2" /> | |
| <text x="1153.77" y="751.5" ></text> | |
| </g> | |
| <g > | |
| <title>do_el0_svc (24,040,853 samples, 0.01%)</title><rect x="14.4" y="661" width="0.2" height="15.0" fill="rgb(218,60,14)" rx="2" ry="2" /> | |
| <text x="17.44" y="671.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_marshal_Flush (196,258,307 samples, 0.11%)</title><rect x="1173.2" y="773" width="1.3" height="15.0" fill="rgb(219,68,16)" rx="2" ry="2" /> | |
| <text x="1176.19" y="783.5" ></text> | |
| </g> | |
| <g > | |
| <title>__memcpy_generic (22,745,459 samples, 0.01%)</title><rect x="801.0" y="469" width="0.2" height="15.0" fill="rgb(231,124,29)" rx="2" ry="2" /> | |
| <text x="804.01" y="479.5" ></text> | |
| </g> | |
| <g > | |
| <title>do_el0_svc (18,434,936 samples, 0.01%)</title><rect x="1068.6" y="597" width="0.1" height="15.0" fill="rgb(218,60,14)" rx="2" ry="2" /> | |
| <text x="1071.58" y="607.5" ></text> | |
| </g> | |
| <g > | |
| <title>[redeclipse] (15,941,051 samples, 0.01%)</title><rect x="791.0" y="229" width="0.1" height="15.0" fill="rgb(253,222,53)" rx="2" ry="2" /> | |
| <text x="794.02" y="239.5" ></text> | |
| </g> | |
| <g > | |
| <title>bind_texture_object (215,298,525 samples, 0.12%)</title><rect x="925.4" y="645" width="1.4" height="15.0" fill="rgb(221,73,17)" rx="2" ry="2" /> | |
| <text x="928.40" y="655.5" ></text> | |
| </g> | |
| <g > | |
| <title>__aarch64_ldadd4_acq_rel (804,566,756 samples, 0.45%)</title><rect x="204.5" y="757" width="5.3" height="15.0" fill="rgb(228,108,25)" rx="2" ry="2" /> | |
| <text x="207.51" y="767.5" ></text> | |
| </g> | |
| <g > | |
| <title>si_buffer_transfer_map (21,907,205 samples, 0.01%)</title><rect x="1169.0" y="693" width="0.1" height="15.0" fill="rgb(237,151,36)" rx="2" ry="2" /> | |
| <text x="1171.99" y="703.5" ></text> | |
| </g> | |
| <g > | |
| <title>__aarch64_ldadd4_acq_rel (17,927,953 samples, 0.01%)</title><rect x="809.4" y="629" width="0.1" height="15.0" fill="rgb(228,108,25)" rx="2" ry="2" /> | |
| <text x="812.43" y="639.5" ></text> | |
| </g> | |
| <g > | |
| <title>void si_emit_spi_map<2> (105,966,393 samples, 0.06%)</title><rect x="181.0" y="757" width="0.7" height="15.0" fill="rgb(246,192,45)" rx="2" ry="2" /> | |
| <text x="184.05" y="767.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_update_renderbuffer_surface (35,145,950 samples, 0.02%)</title><rect x="1089.5" y="645" width="0.2" height="15.0" fill="rgb(236,144,34)" rx="2" ry="2" /> | |
| <text x="1092.52" y="655.5" ></text> | |
| </g> | |
| <g > | |
| <title>el0t_64_sync (62,692,808 samples, 0.03%)</title><rect x="884.6" y="565" width="0.4" height="15.0" fill="rgb(217,56,13)" rx="2" ry="2" /> | |
| <text x="887.59" y="575.5" ></text> | |
| </g> | |
| <g > | |
| <title>tc_create_surface (26,085,840 samples, 0.01%)</title><rect x="1089.6" y="629" width="0.1" height="15.0" fill="rgb(227,105,25)" rx="2" ry="2" /> | |
| <text x="1092.58" y="639.5" ></text> | |
| </g> | |
| <g > | |
| <title>el0t_64_sync (29,053,370 samples, 0.02%)</title><rect x="420.2" y="597" width="0.2" height="15.0" fill="rgb(217,56,13)" rx="2" ry="2" /> | |
| <text x="423.20" y="607.5" ></text> | |
| </g> | |
| <g > | |
| <title>el0t_64_sync_handler (139,718,591 samples, 0.08%)</title><rect x="1095.3" y="661" width="0.9" height="15.0" fill="rgb(211,32,7)" rx="2" ry="2" /> | |
| <text x="1098.27" y="671.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_update_state_locked (412,232,568 samples, 0.23%)</title><rect x="931.8" y="613" width="2.7" height="15.0" fill="rgb(214,43,10)" rx="2" ry="2" /> | |
| <text x="934.85" y="623.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_marshal_MapBufferRange (30,219,845 samples, 0.02%)</title><rect x="781.9" y="101" width="0.2" height="15.0" fill="rgb(219,65,15)" rx="2" ry="2" /> | |
| <text x="784.92" y="111.5" ></text> | |
| </g> | |
| <g > | |
| <title>el0t_64_sync (85,686,266 samples, 0.05%)</title><rect x="976.7" y="629" width="0.6" height="15.0" fill="rgb(217,56,13)" rx="2" ry="2" /> | |
| <text x="979.73" y="639.5" ></text> | |
| </g> | |
| <g > | |
| <title>do_el0_svc (19,405,162 samples, 0.01%)</title><rect x="1126.2" y="485" width="0.1" height="15.0" fill="rgb(218,60,14)" rx="2" ry="2" /> | |
| <text x="1129.20" y="495.5" ></text> | |
| </g> | |
| <g > | |
| <title>__aarch64_cas4_sync (32,408,227 samples, 0.02%)</title><rect x="1160.2" y="645" width="0.2" height="15.0" fill="rgb(253,222,53)" rx="2" ry="2" /> | |
| <text x="1163.17" y="655.5" ></text> | |
| </g> | |
| <g > | |
| <title>rseq_get_rseq_cs.isra.0 (49,798,570 samples, 0.03%)</title><rect x="31.8" y="677" width="0.4" height="15.0" fill="rgb(210,26,6)" rx="2" ry="2" /> | |
| <text x="34.83" y="687.5" ></text> | |
| </g> | |
| <g > | |
| <title>__GI___futex_abstimed_wait_cancelable64 (46,364,682 samples, 0.03%)</title><rect x="16.4" y="757" width="0.4" height="15.0" fill="rgb(215,48,11)" rx="2" ry="2" /> | |
| <text x="19.45" y="767.5" ></text> | |
| </g> | |
| <g > | |
| <title>[redeclipse] (4,932,480,039 samples, 2.73%)</title><rect x="768.6" y="469" width="32.2" height="15.0" fill="rgb(253,222,53)" rx="2" ry="2" /> | |
| <text x="771.57" y="479.5" >[r..</text> | |
| </g> | |
| <g > | |
| <title>_int_malloc (18,059,521 samples, 0.01%)</title><rect x="1089.1" y="613" width="0.1" height="15.0" fill="rgb(215,47,11)" rx="2" ry="2" /> | |
| <text x="1092.07" y="623.5" ></text> | |
| </g> | |
| <g > | |
| <title>do_el0_svc (26,062,127 samples, 0.01%)</title><rect x="516.8" y="613" width="0.1" height="15.0" fill="rgb(218,60,14)" rx="2" ry="2" /> | |
| <text x="519.77" y="623.5" ></text> | |
| </g> | |
| <g > | |
| <title>si_surface_destroy (18,227,081 samples, 0.01%)</title><rect x="201.3" y="757" width="0.1" height="15.0" fill="rgb(226,99,23)" rx="2" ry="2" /> | |
| <text x="204.32" y="767.5" ></text> | |
| </g> | |
| <g > | |
| <title>st_update_framebuffer_state (21,534,705 samples, 0.01%)</title><rect x="1079.6" y="677" width="0.1" height="15.0" fill="rgb(231,123,29)" rx="2" ry="2" /> | |
| <text x="1082.60" y="687.5" ></text> | |
| </g> | |
| <g > | |
| <title>start_thread (25,194,860,000 samples, 13.95%)</title><rect x="337.4" y="869" width="164.7" height="15.0" fill="rgb(212,34,8)" rx="2" ry="2" /> | |
| <text x="340.42" y="879.5" >start_thread</text> | |
| </g> | |
| <g > | |
| <title>_mesa_DrawArraysInstancedBaseInstance (50,115,525 samples, 0.03%)</title><rect x="865.3" y="629" width="0.3" height="15.0" fill="rgb(243,178,42)" rx="2" ry="2" /> | |
| <text x="868.26" y="639.5" ></text> | |
| </g> | |
| <g > | |
| <title>__vsnprintf_chk (226,410,470 samples, 0.13%)</title><rect x="819.9" y="677" width="1.5" height="15.0" fill="rgb(247,193,46)" rx="2" ry="2" /> | |
| <text x="822.91" y="687.5" ></text> | |
| </g> | |
| <g > | |
| <title>__arm64_sys_futex (108,232,349 samples, 0.06%)</title><rect x="458.9" y="581" width="0.7" height="15.0" fill="rgb(247,196,47)" rx="2" ry="2" /> | |
| <text x="461.93" y="591.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_update_framebuffer_visual (16,337,378 samples, 0.01%)</title><rect x="1002.5" y="565" width="0.1" height="15.0" fill="rgb(241,167,40)" rx="2" ry="2" /> | |
| <text x="1005.51" y="575.5" ></text> | |
| </g> | |
| <g > | |
| <title>oggpack_adv (36,629,653 samples, 0.02%)</title><rect x="25.1" y="661" width="0.2" height="15.0" fill="rgb(236,144,34)" rx="2" ry="2" /> | |
| <text x="28.09" y="671.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_lookup_shader_program_err_glthread (43,946,431 samples, 0.02%)</title><rect x="1024.9" y="629" width="0.3" height="15.0" fill="rgb(246,190,45)" rx="2" ry="2" /> | |
| <text x="1027.95" y="639.5" ></text> | |
| </g> | |
| <g > | |
| <title>__isoc23_sscanf (91,722,088 samples, 0.05%)</title><rect x="1179.5" y="709" width="0.6" height="15.0" fill="rgb(220,72,17)" rx="2" ry="2" /> | |
| <text x="1182.54" y="719.5" ></text> | |
| </g> | |
| <g > | |
| <title>amdgpu_vm_lock_pd (27,911,005 samples, 0.02%)</title><rect x="279.2" y="565" width="0.2" height="15.0" fill="rgb(219,67,16)" rx="2" ry="2" /> | |
| <text x="282.22" y="575.5" ></text> | |
| </g> | |
| <g > | |
| <title>rw_verify_area (18,122,341 samples, 0.01%)</title><rect x="15.0" y="581" width="0.1" height="15.0" fill="rgb(218,64,15)" rx="2" ry="2" /> | |
| <text x="18.01" y="591.5" ></text> | |
| </g> | |
| <g > | |
| <title>st_update_single_texture (53,312,379 samples, 0.03%)</title><rect x="874.0" y="533" width="0.4" height="15.0" fill="rgb(208,15,3)" rx="2" ry="2" /> | |
| <text x="877.04" y="543.5" ></text> | |
| </g> | |
| <g > | |
| <title>hud_draw_colored_prims.constprop.0 (23,082,515 samples, 0.01%)</title><rect x="511.4" y="709" width="0.2" height="15.0" fill="rgb(215,48,11)" rx="2" ry="2" /> | |
| <text x="514.45" y="719.5" ></text> | |
| </g> | |
| <g > | |
| <title>cso_set_blend (25,374,792 samples, 0.01%)</title><rect x="1111.1" y="645" width="0.1" height="15.0" fill="rgb(252,217,51)" rx="2" ry="2" /> | |
| <text x="1114.06" y="655.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_marshal_GetQueryObjectuiv (2,622,245,450 samples, 1.45%)</title><rect x="843.2" y="693" width="17.2" height="15.0" fill="rgb(214,43,10)" rx="2" ry="2" /> | |
| <text x="846.22" y="703.5" ></text> | |
| </g> | |
| <g > | |
| <title>st_finalize_texture (382,194,931 samples, 0.21%)</title><rect x="445.0" y="677" width="2.5" height="15.0" fill="rgb(232,124,29)" rx="2" ry="2" /> | |
| <text x="448.02" y="687.5" ></text> | |
| </g> | |
| <g > | |
| <title>amdgpu_cs_add_buffer (15,845,139 samples, 0.01%)</title><rect x="141.0" y="741" width="0.1" height="15.0" fill="rgb(254,227,54)" rx="2" ry="2" /> | |
| <text x="144.01" y="751.5" ></text> | |
| </g> | |
| <g > | |
| <title>__vsnprintf_internal (18,680,074 samples, 0.01%)</title><rect x="786.9" y="165" width="0.1" height="15.0" fill="rgb(237,150,35)" rx="2" ry="2" /> | |
| <text x="789.85" y="175.5" ></text> | |
| </g> | |
| <g > | |
| <title>si_pm4_emit_state (15,479,608 samples, 0.01%)</title><rect x="179.9" y="757" width="0.1" height="15.0" fill="rgb(232,128,30)" rx="2" ry="2" /> | |
| <text x="182.85" y="767.5" ></text> | |
| </g> | |
| <g > | |
| <title>__sincosf (43,495,276 samples, 0.02%)</title><rect x="916.0" y="709" width="0.3" height="15.0" fill="rgb(246,188,45)" rx="2" ry="2" /> | |
| <text x="919.05" y="719.5" ></text> | |
| </g> | |
| <g > | |
| <title>cso_set_samplers (237,760,508 samples, 0.13%)</title><rect x="419.6" y="725" width="1.6" height="15.0" fill="rgb(215,48,11)" rx="2" ry="2" /> | |
| <text x="422.64" y="735.5" ></text> | |
| </g> | |
| <g > | |
| <title>touch_atime (17,515,820 samples, 0.01%)</title><rect x="14.9" y="565" width="0.1" height="15.0" fill="rgb(205,2,0)" rx="2" ry="2" /> | |
| <text x="17.90" y="575.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_unmarshal_UseProgram (768,722,061 samples, 0.43%)</title><rect x="1143.0" y="709" width="5.1" height="15.0" fill="rgb(226,99,23)" rx="2" ry="2" /> | |
| <text x="1146.03" y="719.5" ></text> | |
| </g> | |
| <g > | |
| <title>tc_add_all_gfx_bindings_to_buffer_list (23,714,075 samples, 0.01%)</title><rect x="455.5" y="741" width="0.2" height="15.0" fill="rgb(243,177,42)" rx="2" ry="2" /> | |
| <text x="458.50" y="751.5" ></text> | |
| </g> | |
| <g > | |
| <title>amdgpu_bo_fence_wait (19,562,531 samples, 0.01%)</title><rect x="371.6" y="709" width="0.1" height="15.0" fill="rgb(214,41,9)" rx="2" ry="2" /> | |
| <text x="374.59" y="719.5" ></text> | |
| </g> | |
| <g > | |
| <title>si_query_hw_get_result (1,119,394,561 samples, 0.62%)</title><rect x="895.5" y="629" width="7.3" height="15.0" fill="rgb(239,156,37)" rx="2" ry="2" /> | |
| <text x="898.49" y="639.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_DrawArraysInstancedBaseInstance (31,504,554 samples, 0.02%)</title><rect x="989.9" y="645" width="0.2" height="15.0" fill="rgb(243,178,42)" rx="2" ry="2" /> | |
| <text x="992.85" y="655.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_VertexAttrib4fARB (23,895,246 samples, 0.01%)</title><rect x="952.1" y="645" width="0.1" height="15.0" fill="rgb(251,214,51)" rx="2" ry="2" /> | |
| <text x="955.06" y="655.5" ></text> | |
| </g> | |
| <g > | |
| <title>syscall_trace_enter (15,469,138 samples, 0.01%)</title><rect x="189.8" y="597" width="0.1" height="15.0" fill="rgb(251,214,51)" rx="2" ry="2" /> | |
| <text x="192.82" y="607.5" ></text> | |
| </g> | |
| <g > | |
| <title>do_notify_resume (18,407,137 samples, 0.01%)</title><rect x="843.7" y="565" width="0.1" height="15.0" fill="rgb(233,129,30)" rx="2" ry="2" /> | |
| <text x="846.72" y="575.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_reference_program_ (21,825,375 samples, 0.01%)</title><rect x="934.3" y="581" width="0.1" height="15.0" fill="rgb(231,122,29)" rx="2" ry="2" /> | |
| <text x="937.25" y="591.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_unmarshal_Disable (21,379,570 samples, 0.01%)</title><rect x="1058.1" y="677" width="0.1" height="15.0" fill="rgb(253,223,53)" rx="2" ry="2" /> | |
| <text x="1061.09" y="687.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_framebuffer_texture (57,776,077 samples, 0.03%)</title><rect x="1137.0" y="677" width="0.4" height="15.0" fill="rgb(251,213,50)" rx="2" ry="2" /> | |
| <text x="1139.98" y="687.5" ></text> | |
| </g> | |
| <g > | |
| <title>si_buffer_create (34,593,978 samples, 0.02%)</title><rect x="150.5" y="725" width="0.2" height="15.0" fill="rgb(212,35,8)" rx="2" ry="2" /> | |
| <text x="153.49" y="735.5" ></text> | |
| </g> | |
| <g > | |
| <title>do_el0_svc (44,009,564 samples, 0.02%)</title><rect x="843.4" y="565" width="0.3" height="15.0" fill="rgb(218,60,14)" rx="2" ry="2" /> | |
| <text x="846.44" y="575.5" ></text> | |
| </g> | |
| <g > | |
| <title>pthread_cond_signal@@GLIBC_2.17 (21,677,866 samples, 0.01%)</title><rect x="1068.6" y="677" width="0.1" height="15.0" fill="rgb(232,126,30)" rx="2" ry="2" /> | |
| <text x="1071.56" y="687.5" ></text> | |
| </g> | |
| <g > | |
| <title>__audit_syscall_exit (17,512,058 samples, 0.01%)</title><rect x="253.6" y="693" width="0.1" height="15.0" fill="rgb(218,62,14)" rx="2" ry="2" /> | |
| <text x="256.62" y="703.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_update_texture_state (33,568,924 samples, 0.02%)</title><rect x="1058.5" y="629" width="0.2" height="15.0" fill="rgb(237,148,35)" rx="2" ry="2" /> | |
| <text x="1061.46" y="639.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_test_framebuffer_completeness (48,558,683 samples, 0.03%)</title><rect x="1002.2" y="581" width="0.3" height="15.0" fill="rgb(229,113,27)" rx="2" ry="2" /> | |
| <text x="1005.15" y="591.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_marshal_UniformMatrix4fv (23,901,204 samples, 0.01%)</title><rect x="1032.0" y="725" width="0.1" height="15.0" fill="rgb(215,47,11)" rx="2" ry="2" /> | |
| <text x="1034.96" y="735.5" ></text> | |
| </g> | |
| <g > | |
| <title>update_shader_samplers (19,380,039 samples, 0.01%)</title><rect x="929.3" y="613" width="0.1" height="15.0" fill="rgb(229,113,27)" rx="2" ry="2" /> | |
| <text x="932.32" y="623.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_update_texture_state (234,406,536 samples, 0.13%)</title><rect x="990.7" y="613" width="1.5" height="15.0" fill="rgb(237,148,35)" rx="2" ry="2" /> | |
| <text x="993.69" y="623.5" ></text> | |
| </g> | |
| <g > | |
| <title>[unknown] (46,077,332 samples, 0.03%)</title><rect x="129.9" y="773" width="0.3" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" /> | |
| <text x="132.89" y="783.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_unmarshal_UnmapBuffer (52,065,794 samples, 0.03%)</title><rect x="1155.1" y="709" width="0.3" height="15.0" fill="rgb(221,73,17)" rx="2" ry="2" /> | |
| <text x="1158.08" y="719.5" ></text> | |
| </g> | |
| <g > | |
| <title>_glapi_set_dispatch (17,342,187 samples, 0.01%)</title><rect x="345.5" y="805" width="0.1" height="15.0" fill="rgb(208,15,3)" rx="2" ry="2" /> | |
| <text x="348.51" y="815.5" ></text> | |
| </g> | |
| <g > | |
| <title>copy_uniforms_to_storage (15,362,387 samples, 0.01%)</title><rect x="879.2" y="613" width="0.1" height="15.0" fill="rgb(250,207,49)" rx="2" ry="2" /> | |
| <text x="882.19" y="623.5" ></text> | |
| </g> | |
| <g > | |
| <title>tc_call_set_constant_buffer (28,467,815 samples, 0.02%)</title><rect x="46.8" y="789" width="0.2" height="15.0" fill="rgb(222,79,18)" rx="2" ry="2" /> | |
| <text x="49.77" y="799.5" ></text> | |
| </g> | |
| <g > | |
| <title>st_get_texture_sampler_view_from_stobj (145,141,162 samples, 0.08%)</title><rect x="997.0" y="597" width="1.0" height="15.0" fill="rgb(211,32,7)" rx="2" ry="2" /> | |
| <text x="1000.03" y="607.5" ></text> | |
| </g> | |
| <g > | |
| <title>si_query_hw_prepare_buffer (58,676,603 samples, 0.03%)</title><rect x="49.1" y="741" width="0.4" height="15.0" fill="rgb(243,178,42)" rx="2" ry="2" /> | |
| <text x="52.09" y="751.5" ></text> | |
| </g> | |
| <g > | |
| <title>amdgpu_drm_ioctl (227,456,653 samples, 0.13%)</title><rect x="1161.3" y="453" width="1.5" height="15.0" fill="rgb(246,190,45)" rx="2" ry="2" /> | |
| <text x="1164.34" y="463.5" ></text> | |
| </g> | |
| <g > | |
| <title>wake_up_q (20,457,637 samples, 0.01%)</title><rect x="35.3" y="645" width="0.1" height="15.0" fill="rgb(237,151,36)" rx="2" ry="2" /> | |
| <text x="38.25" y="655.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_sampler_uniforms_are_valid (33,042,324 samples, 0.02%)</title><rect x="1025.2" y="629" width="0.3" height="15.0" fill="rgb(254,229,54)" rx="2" ry="2" /> | |
| <text x="1028.24" y="639.5" ></text> | |
| </g> | |
| <g > | |
| <title>strpbrk (422,937,459 samples, 0.23%)</title><rect x="836.3" y="677" width="2.8" height="15.0" fill="rgb(250,210,50)" rx="2" ry="2" /> | |
| <text x="839.34" y="687.5" ></text> | |
| </g> | |
| <g > | |
| <title>st_destroy_bound_image_handles_per_stage (24,736,015 samples, 0.01%)</title><rect x="412.5" y="693" width="0.2" height="15.0" fill="rgb(226,101,24)" rx="2" ry="2" /> | |
| <text x="415.52" y="703.5" ></text> | |
| </g> | |
| <g > | |
| <title>vbo_exec_FlushVertices (52,183,572 samples, 0.03%)</title><rect x="992.7" y="645" width="0.4" height="15.0" fill="rgb(226,100,24)" rx="2" ry="2" /> | |
| <text x="995.73" y="655.5" ></text> | |
| </g> | |
| <g > | |
| <title>syscall_trace_exit (108,135,771 samples, 0.06%)</title><rect x="30.8" y="677" width="0.7" height="15.0" fill="rgb(247,196,46)" rx="2" ry="2" /> | |
| <text x="33.84" y="687.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_use_program (77,821,210 samples, 0.04%)</title><rect x="950.4" y="597" width="0.5" height="15.0" fill="rgb(235,141,33)" rx="2" ry="2" /> | |
| <text x="953.44" y="607.5" ></text> | |
| </g> | |
| <g > | |
| <title>drm_dev_enter (16,677,332 samples, 0.01%)</title><rect x="1161.6" y="421" width="0.1" height="15.0" fill="rgb(237,150,35)" rx="2" ry="2" /> | |
| <text x="1164.62" y="431.5" ></text> | |
| </g> | |
| <g > | |
| <title>update_shader_samplers (40,481,626 samples, 0.02%)</title><rect x="1062.4" y="629" width="0.2" height="15.0" fill="rgb(229,113,27)" rx="2" ry="2" /> | |
| <text x="1065.38" y="639.5" ></text> | |
| </g> | |
| <g > | |
| <title>pthread_cond_signal@@GLIBC_2.17 (18,434,936 samples, 0.01%)</title><rect x="1068.6" y="661" width="0.1" height="15.0" fill="rgb(232,126,30)" rx="2" ry="2" /> | |
| <text x="1071.58" y="671.5" ></text> | |
| </g> | |
| <g > | |
| <title>_int_free (17,166,756 samples, 0.01%)</title><rect x="790.6" y="197" width="0.1" height="15.0" fill="rgb(247,196,46)" rx="2" ry="2" /> | |
| <text x="793.56" y="207.5" ></text> | |
| </g> | |
| <g > | |
| <title>st_convert_sampler_from_unit (48,540,024 samples, 0.03%)</title><rect x="421.3" y="725" width="0.3" height="15.0" fill="rgb(254,228,54)" rx="2" ry="2" /> | |
| <text x="424.26" y="735.5" ></text> | |
| </g> | |
| <g > | |
| <title>__aarch64_ldadd4_acq_rel (29,951,897 samples, 0.02%)</title><rect x="1122.7" y="613" width="0.2" height="15.0" fill="rgb(228,108,25)" rx="2" ry="2" /> | |
| <text x="1125.75" y="623.5" ></text> | |
| </g> | |
| <g > | |
| <title>el0t_64_sync_handler (111,505,814 samples, 0.06%)</title><rect x="500.9" y="757" width="0.7" height="15.0" fill="rgb(211,32,7)" rx="2" ry="2" /> | |
| <text x="503.90" y="767.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_unmarshal_DrawElementsPacked (2,142,873,158 samples, 1.19%)</title><rect x="931.2" y="661" width="14.0" height="15.0" fill="rgb(225,92,22)" rx="2" ry="2" /> | |
| <text x="934.21" y="671.5" ></text> | |
| </g> | |
| <g > | |
| <title>el0_interrupt (16,020,625 samples, 0.01%)</title><rect x="128.1" y="725" width="0.2" height="15.0" fill="rgb(247,195,46)" rx="2" ry="2" /> | |
| <text x="131.15" y="735.5" ></text> | |
| </g> | |
| <g > | |
| <title>cfree@GLIBC_2.17 (15,874,685 samples, 0.01%)</title><rect x="1180.7" y="789" width="0.1" height="15.0" fill="rgb(224,88,21)" rx="2" ry="2" /> | |
| <text x="1183.72" y="799.5" ></text> | |
| </g> | |
| <g > | |
| <title>si_set_active_descriptors (34,853,307 samples, 0.02%)</title><rect x="54.9" y="741" width="0.3" height="15.0" fill="rgb(233,130,31)" rx="2" ry="2" /> | |
| <text x="57.94" y="751.5" ></text> | |
| </g> | |
| <g > | |
| <title>drm_exec_obj_locked (149,236,162 samples, 0.08%)</title><rect x="282.1" y="533" width="1.0" height="15.0" fill="rgb(237,149,35)" rx="2" ry="2" /> | |
| <text x="285.07" y="543.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_uniform (21,280,857 samples, 0.01%)</title><rect x="946.9" y="629" width="0.2" height="15.0" fill="rgb(248,201,48)" rx="2" ry="2" /> | |
| <text x="949.94" y="639.5" ></text> | |
| </g> | |
| <g > | |
| <title>gfx6_decompress_textures (25,574,766 samples, 0.01%)</title><rect x="525.5" y="645" width="0.1" height="15.0" fill="rgb(216,53,12)" rx="2" ry="2" /> | |
| <text x="528.47" y="655.5" ></text> | |
| </g> | |
| <g > | |
| <title>el0t_64_sync (146,638,714 samples, 0.08%)</title><rect x="507.7" y="661" width="1.0" height="15.0" fill="rgb(217,56,13)" rx="2" ry="2" /> | |
| <text x="510.73" y="671.5" ></text> | |
| </g> | |
| <g > | |
| <title>xattr_resolve_name (17,529,463 samples, 0.01%)</title><rect x="1182.5" y="389" width="0.1" height="15.0" fill="rgb(244,180,43)" rx="2" ry="2" /> | |
| <text x="1185.51" y="399.5" ></text> | |
| </g> | |
| <g > | |
| <title>__audit_syscall_entry (19,381,643 samples, 0.01%)</title><rect x="30.7" y="661" width="0.1" height="15.0" fill="rgb(243,176,42)" rx="2" ry="2" /> | |
| <text x="33.68" y="671.5" ></text> | |
| </g> | |
| <g > | |
| <title>el0_svc (10,002,309,564 samples, 5.54%)</title><rect x="266.1" y="725" width="65.3" height="15.0" fill="rgb(244,183,43)" rx="2" ry="2" /> | |
| <text x="269.07" y="735.5" >el0_svc</text> | |
| </g> | |
| <g > | |
| <title>[libSDL2-2.0.so.0.3000.0] (1,943,799,868 samples, 1.08%)</title><rect x="15.1" y="853" width="12.7" height="15.0" fill="rgb(227,102,24)" rx="2" ry="2" /> | |
| <text x="18.13" y="863.5" ></text> | |
| </g> | |
| <g > | |
| <title>[libvorbis.so.0.4.9] (25,498,262 samples, 0.01%)</title><rect x="22.4" y="677" width="0.2" height="15.0" fill="rgb(233,129,30)" rx="2" ry="2" /> | |
| <text x="25.40" y="687.5" ></text> | |
| </g> | |
| <g > | |
| <title>memcmp (25,508,448 samples, 0.01%)</title><rect x="943.0" y="549" width="0.2" height="15.0" fill="rgb(235,141,33)" rx="2" ry="2" /> | |
| <text x="946.01" y="559.5" ></text> | |
| </g> | |
| <g > | |
| <title>sock_recvmsg (21,401,092 samples, 0.01%)</title><rect x="374.6" y="405" width="0.2" height="15.0" fill="rgb(206,5,1)" rx="2" ry="2" /> | |
| <text x="377.62" y="415.5" ></text> | |
| </g> | |
| <g > | |
| <title>do_el0_svc (36,424,765 samples, 0.02%)</title><rect x="506.5" y="709" width="0.2" height="15.0" fill="rgb(218,60,14)" rx="2" ry="2" /> | |
| <text x="509.48" y="719.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_marshal_BindBuffer (46,240,993 samples, 0.03%)</title><rect x="971.7" y="725" width="0.3" height="15.0" fill="rgb(240,161,38)" rx="2" ry="2" /> | |
| <text x="974.71" y="735.5" ></text> | |
| </g> | |
| <g > | |
| <title>__aarch64_cas4_sync (111,028,784 samples, 0.06%)</title><rect x="1143.8" y="661" width="0.7" height="15.0" fill="rgb(253,222,53)" rx="2" ry="2" /> | |
| <text x="1146.76" y="671.5" ></text> | |
| </g> | |
| <g > | |
| <title>xcb_poll_for_special_event (47,448,701 samples, 0.03%)</title><rect x="508.8" y="757" width="0.3" height="15.0" fill="rgb(224,90,21)" rx="2" ry="2" /> | |
| <text x="511.80" y="767.5" ></text> | |
| </g> | |
| <g > | |
| <title>el0_svc_common.constprop.0 (26,261,261 samples, 0.01%)</title><rect x="420.2" y="533" width="0.2" height="15.0" fill="rgb(224,89,21)" rx="2" ry="2" /> | |
| <text x="423.22" y="543.5" ></text> | |
| </g> | |
| <g > | |
| <title>[libxcb.so.1.1.0] (38,566,404 samples, 0.02%)</title><rect x="374.6" y="613" width="0.2" height="15.0" fill="rgb(226,98,23)" rx="2" ry="2" /> | |
| <text x="377.57" y="623.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_lookup_shader_program_err_glthread (44,509,467 samples, 0.02%)</title><rect x="949.5" y="629" width="0.3" height="15.0" fill="rgb(246,190,45)" rx="2" ry="2" /> | |
| <text x="952.52" y="639.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_update_state (23,894,459 samples, 0.01%)</title><rect x="975.4" y="645" width="0.2" height="15.0" fill="rgb(222,78,18)" rx="2" ry="2" /> | |
| <text x="978.42" y="655.5" ></text> | |
| </g> | |
| <g > | |
| <title>__arm64_sys_futex (46,920,774 samples, 0.03%)</title><rect x="1177.8" y="597" width="0.3" height="15.0" fill="rgb(247,196,47)" rx="2" ry="2" /> | |
| <text x="1180.84" y="607.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_uniform (229,461,437 samples, 0.13%)</title><rect x="462.8" y="773" width="1.5" height="15.0" fill="rgb(248,201,48)" rx="2" ry="2" /> | |
| <text x="465.82" y="783.5" ></text> | |
| </g> | |
| <g > | |
| <title>el0_svc_common.constprop.0 (140,820,026 samples, 0.08%)</title><rect x="458.9" y="613" width="0.9" height="15.0" fill="rgb(224,89,21)" rx="2" ry="2" /> | |
| <text x="461.91" y="623.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_lookup_or_create_texture (37,553,678 samples, 0.02%)</title><rect x="1077.9" y="661" width="0.2" height="15.0" fill="rgb(235,140,33)" rx="2" ry="2" /> | |
| <text x="1080.89" y="671.5" ></text> | |
| </g> | |
| <g > | |
| <title>amdgpu_bo_map (67,562,926 samples, 0.04%)</title><rect x="1038.9" y="645" width="0.5" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" /> | |
| <text x="1041.94" y="655.5" ></text> | |
| </g> | |
| <g > | |
| <title>st_prepare_draw (2,502,546,188 samples, 1.39%)</title><rect x="1119.7" y="661" width="16.3" height="15.0" fill="rgb(214,45,10)" rx="2" ry="2" /> | |
| <text x="1122.69" y="671.5" ></text> | |
| </g> | |
| <g > | |
| <title>do_el0_svc (26,650,859 samples, 0.01%)</title><rect x="877.5" y="453" width="0.2" height="15.0" fill="rgb(218,60,14)" rx="2" ry="2" /> | |
| <text x="880.50" y="463.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_DrawArraysInstancedBaseInstance (507,725,656 samples, 0.28%)</title><rect x="989.8" y="661" width="3.3" height="15.0" fill="rgb(243,178,42)" rx="2" ry="2" /> | |
| <text x="992.75" y="671.5" ></text> | |
| </g> | |
| <g > | |
| <title>glBindTexture (57,649,010 samples, 0.03%)</title><rect x="1166.3" y="757" width="0.4" height="15.0" fill="rgb(224,91,21)" rx="2" ry="2" /> | |
| <text x="1169.28" y="767.5" ></text> | |
| </g> | |
| <g > | |
| <title>glDrawRangeElements (33,819,125 samples, 0.02%)</title><rect x="903.0" y="693" width="0.2" height="15.0" fill="rgb(239,158,37)" rx="2" ry="2" /> | |
| <text x="905.97" y="703.5" ></text> | |
| </g> | |
| <g > | |
| <title>tzset_internal (909,401,508 samples, 0.50%)</title><rect x="1181.3" y="773" width="5.9" height="15.0" fill="rgb(205,3,0)" rx="2" ry="2" /> | |
| <text x="1184.27" y="783.5" ></text> | |
| </g> | |
| <g > | |
| <title>__fput (33,155,764 samples, 0.02%)</title><rect x="1189.8" y="709" width="0.2" height="15.0" fill="rgb(248,200,47)" rx="2" ry="2" /> | |
| <text x="1192.78" y="719.5" ></text> | |
| </g> | |
| <g > | |
| <title>copy_uniforms_to_storage (23,070,538 samples, 0.01%)</title><rect x="858.0" y="597" width="0.1" height="15.0" fill="rgb(250,207,49)" rx="2" ry="2" /> | |
| <text x="860.96" y="607.5" ></text> | |
| </g> | |
| <g > | |
| <title>glsl_type_is_matrix (70,761,108 samples, 0.04%)</title><rect x="473.4" y="773" width="0.5" height="15.0" fill="rgb(220,72,17)" rx="2" ry="2" /> | |
| <text x="476.39" y="783.5" ></text> | |
| </g> | |
| <g > | |
| <title>__aarch64_ldadd4_acq (20,215,824 samples, 0.01%)</title><rect x="251.8" y="789" width="0.1" height="15.0" fill="rgb(228,109,26)" rx="2" ry="2" /> | |
| <text x="254.76" y="799.5" ></text> | |
| </g> | |
| <g > | |
| <title>tc_create_surface (47,075,189 samples, 0.03%)</title><rect x="515.9" y="709" width="0.4" height="15.0" fill="rgb(227,105,25)" rx="2" ry="2" /> | |
| <text x="518.95" y="719.5" ></text> | |
| </g> | |
| <g > | |
| <title>si_set_framebuffer_state (140,044,820 samples, 0.08%)</title><rect x="527.2" y="677" width="0.9" height="15.0" fill="rgb(211,31,7)" rx="2" ry="2" /> | |
| <text x="530.17" y="687.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_VertexAttribPointer (131,743,250 samples, 0.07%)</title><rect x="1148.1" y="693" width="0.9" height="15.0" fill="rgb(211,29,7)" rx="2" ry="2" /> | |
| <text x="1151.15" y="703.5" ></text> | |
| </g> | |
| <g > | |
| <title>st_update_rasterizer (220,070,645 samples, 0.12%)</title><rect x="401.0" y="725" width="1.5" height="15.0" fill="rgb(240,164,39)" rx="2" ry="2" /> | |
| <text x="404.05" y="735.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_unmarshal_UseProgram (502,314,517 samples, 0.28%)</title><rect x="1024.1" y="677" width="3.3" height="15.0" fill="rgb(226,99,23)" rx="2" ry="2" /> | |
| <text x="1027.11" y="687.5" ></text> | |
| </g> | |
| <g > | |
| <title>syscall_trace_exit (20,209,729 samples, 0.01%)</title><rect x="459.7" y="597" width="0.1" height="15.0" fill="rgb(247,196,46)" rx="2" ry="2" /> | |
| <text x="462.70" y="607.5" ></text> | |
| </g> | |
| <g > | |
| <title>validate_uniform_parameters (19,548,117 samples, 0.01%)</title><rect x="1090.8" y="645" width="0.1" height="15.0" fill="rgb(234,137,32)" rx="2" ry="2" /> | |
| <text x="1093.75" y="655.5" ></text> | |
| </g> | |
| <g > | |
| <title>util_queue_add_job_locked.part.0 (23,089,425 samples, 0.01%)</title><rect x="943.3" y="549" width="0.1" height="15.0" fill="rgb(243,177,42)" rx="2" ry="2" /> | |
| <text x="946.28" y="559.5" ></text> | |
| </g> | |
| <g > | |
| <title>[libxcb.so.1.1.0] (24,201,893 samples, 0.01%)</title><rect x="1106.6" y="501" width="0.2" height="15.0" fill="rgb(226,98,23)" rx="2" ry="2" /> | |
| <text x="1109.61" y="511.5" ></text> | |
| </g> | |
| <g > | |
| <title>si_flush_gfx_cs (27,019,280 samples, 0.01%)</title><rect x="885.0" y="581" width="0.2" height="15.0" fill="rgb(242,171,41)" rx="2" ry="2" /> | |
| <text x="888.01" y="591.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_UseProgram (97,301,681 samples, 0.05%)</title><rect x="880.5" y="629" width="0.7" height="15.0" fill="rgb(212,36,8)" rx="2" ry="2" /> | |
| <text x="883.55" y="639.5" ></text> | |
| </g> | |
| <g > | |
| <title>memcmp@plt (22,010,602 samples, 0.01%)</title><rect x="137.2" y="741" width="0.2" height="15.0" fill="rgb(251,214,51)" rx="2" ry="2" /> | |
| <text x="140.23" y="751.5" ></text> | |
| </g> | |
| <g > | |
| <title>__arm64_sys_futex (40,581,593 samples, 0.02%)</title><rect x="36.5" y="677" width="0.2" height="15.0" fill="rgb(247,196,47)" rx="2" ry="2" /> | |
| <text x="39.46" y="687.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_unmarshal_MultiDrawArraysUserBuf (23,226,996 samples, 0.01%)</title><rect x="1018.9" y="677" width="0.2" height="15.0" fill="rgb(208,16,3)" rx="2" ry="2" /> | |
| <text x="1021.93" y="687.5" ></text> | |
| </g> | |
| <g > | |
| <title>si_vs_key_update_inputs (91,667,104 samples, 0.05%)</title><rect x="65.1" y="773" width="0.6" height="15.0" fill="rgb(243,174,41)" rx="2" ry="2" /> | |
| <text x="68.13" y="783.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_marshal_DrawRangeElements (26,304,251 samples, 0.01%)</title><rect x="843.0" y="693" width="0.2" height="15.0" fill="rgb(229,111,26)" rx="2" ry="2" /> | |
| <text x="846.04" y="703.5" ></text> | |
| </g> | |
| <g > | |
| <title>tc_batch_flush (20,237,850 samples, 0.01%)</title><rect x="944.5" y="597" width="0.1" height="15.0" fill="rgb(249,206,49)" rx="2" ry="2" /> | |
| <text x="947.50" y="607.5" ></text> | |
| </g> | |
| <g > | |
| <title>copy_uniforms_to_storage (56,876,460 samples, 0.03%)</title><rect x="857.9" y="613" width="0.3" height="15.0" fill="rgb(250,207,49)" rx="2" ry="2" /> | |
| <text x="860.88" y="623.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_Uniform3f (31,881,479 samples, 0.02%)</title><rect x="946.3" y="645" width="0.2" height="15.0" fill="rgb(217,56,13)" rx="2" ry="2" /> | |
| <text x="949.34" y="655.5" ></text> | |
| </g> | |
| <g > | |
| <title>_int_free (47,593,868 samples, 0.03%)</title><rect x="201.0" y="741" width="0.3" height="15.0" fill="rgb(247,196,46)" rx="2" ry="2" /> | |
| <text x="203.96" y="751.5" ></text> | |
| </g> | |
| <g > | |
| <title>invoke_syscall (16,587,503 samples, 0.01%)</title><rect x="515.4" y="421" width="0.2" height="15.0" fill="rgb(209,18,4)" rx="2" ry="2" /> | |
| <text x="518.44" y="431.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_unmarshal_FramebufferTexture2D (222,296,346 samples, 0.12%)</title><rect x="1017.5" y="677" width="1.4" height="15.0" fill="rgb(229,114,27)" rx="2" ry="2" /> | |
| <text x="1020.48" y="687.5" ></text> | |
| </g> | |
| <g > | |
| <title>__printf_buffer (33,656,182 samples, 0.02%)</title><rect x="1177.2" y="757" width="0.2" height="15.0" fill="rgb(219,68,16)" rx="2" ry="2" /> | |
| <text x="1180.19" y="767.5" ></text> | |
| </g> | |
| <g > | |
| <title>util_queue_add_job (21,457,448 samples, 0.01%)</title><rect x="458.5" y="741" width="0.2" height="15.0" fill="rgb(241,167,40)" rx="2" ry="2" /> | |
| <text x="461.53" y="751.5" ></text> | |
| </g> | |
| <g > | |
| <title>si_bind_ps_shader (17,551,160 samples, 0.01%)</title><rect x="885.4" y="565" width="0.1" height="15.0" fill="rgb(240,164,39)" rx="2" ry="2" /> | |
| <text x="888.42" y="575.5" ></text> | |
| </g> | |
| <g > | |
| <title>strspn (16,790,457 samples, 0.01%)</title><rect x="784.2" y="133" width="0.1" height="15.0" fill="rgb(207,13,3)" rx="2" ry="2" /> | |
| <text x="787.17" y="143.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_DepthRange (17,055,839 samples, 0.01%)</title><rect x="847.1" y="629" width="0.1" height="15.0" fill="rgb(238,156,37)" rx="2" ry="2" /> | |
| <text x="850.11" y="639.5" ></text> | |
| </g> | |
| <g > | |
| <title>tc_buffer_unmap (31,779,344 samples, 0.02%)</title><rect x="1155.2" y="677" width="0.2" height="15.0" fill="rgb(231,119,28)" rx="2" ry="2" /> | |
| <text x="1158.18" y="687.5" ></text> | |
| </g> | |
| <g > | |
| <title>strcmp (29,619,279 samples, 0.02%)</title><rect x="1187.3" y="805" width="0.2" height="15.0" fill="rgb(217,58,13)" rx="2" ry="2" /> | |
| <text x="1190.27" y="815.5" ></text> | |
| </g> | |
| <g > | |
| <title>si_pm4_emit_shader (15,705,969 samples, 0.01%)</title><rect x="83.9" y="693" width="0.1" height="15.0" fill="rgb(227,102,24)" rx="2" ry="2" /> | |
| <text x="86.93" y="703.5" ></text> | |
| </g> | |
| <g > | |
| <title>__printf_buffer (74,268,547 samples, 0.04%)</title><rect x="841.8" y="661" width="0.5" height="15.0" fill="rgb(219,68,16)" rx="2" ry="2" /> | |
| <text x="844.80" y="671.5" ></text> | |
| </g> | |
| <g > | |
| <title>amdgpu_bo_map (17,527,491 samples, 0.01%)</title><rect x="49.4" y="709" width="0.1" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" /> | |
| <text x="52.36" y="719.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_unmarshal_VertexAttribPointer_packed (30,023,906 samples, 0.02%)</title><rect x="859.6" y="645" width="0.2" height="15.0" fill="rgb(232,124,29)" rx="2" ry="2" /> | |
| <text x="862.60" y="655.5" ></text> | |
| </g> | |
| <g > | |
| <title>glthread_unmarshal_batch (785,571,137 samples, 0.44%)</title><rect x="1151.2" y="725" width="5.2" height="15.0" fill="rgb(247,195,46)" rx="2" ry="2" /> | |
| <text x="1154.22" y="735.5" ></text> | |
| </g> | |
| <g > | |
| <title>si_vs_ps_key_update_rast_prim_smooth_stipple (87,644,147 samples, 0.05%)</title><rect x="65.7" y="773" width="0.6" height="15.0" fill="rgb(214,44,10)" rx="2" ry="2" /> | |
| <text x="68.73" y="783.5" ></text> | |
| </g> | |
| <g > | |
| <title>pthread_cond_signal@@GLIBC_2.17 (174,341,682 samples, 0.10%)</title><rect x="190.8" y="709" width="1.1" height="15.0" fill="rgb(232,126,30)" rx="2" ry="2" /> | |
| <text x="193.80" y="719.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_unmarshal_VertexAttrib4Nubv (44,440,301 samples, 0.02%)</title><rect x="881.4" y="629" width="0.3" height="15.0" fill="rgb(245,184,44)" rx="2" ry="2" /> | |
| <text x="884.43" y="639.5" ></text> | |
| </g> | |
| <g > | |
| <title>si_set_constant_buffer (23,462,182 samples, 0.01%)</title><rect x="527.0" y="677" width="0.2" height="15.0" fill="rgb(215,46,11)" rx="2" ry="2" /> | |
| <text x="530.00" y="687.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_unmarshal_BufferSubData (37,054,154 samples, 0.02%)</title><rect x="1104.6" y="709" width="0.2" height="15.0" fill="rgb(218,60,14)" rx="2" ry="2" /> | |
| <text x="1107.55" y="719.5" ></text> | |
| </g> | |
| <g > | |
| <title>amdgpu_cs_add_buffer (41,453,061 samples, 0.02%)</title><rect x="151.7" y="741" width="0.3" height="15.0" fill="rgb(254,227,54)" rx="2" ry="2" /> | |
| <text x="154.70" y="751.5" ></text> | |
| </g> | |
| <g > | |
| <title>amdgpu_fence_create (121,516,441 samples, 0.07%)</title><rect x="900.1" y="565" width="0.8" height="15.0" fill="rgb(244,179,42)" rx="2" ry="2" /> | |
| <text x="903.15" y="575.5" ></text> | |
| </g> | |
| <g > | |
| <title>__GI___pthread_mutex_unlock_usercnt (157,538,206 samples, 0.09%)</title><rect x="500.7" y="805" width="1.0" height="15.0" fill="rgb(231,123,29)" rx="2" ry="2" /> | |
| <text x="503.66" y="815.5" ></text> | |
| </g> | |
| <g > | |
| <title>el0t_64_sync (104,264,380 samples, 0.06%)</title><rect x="900.3" y="501" width="0.6" height="15.0" fill="rgb(217,56,13)" rx="2" ry="2" /> | |
| <text x="903.25" y="511.5" ></text> | |
| </g> | |
| <g > | |
| <title>cfree@GLIBC_2.17 (20,198,736 samples, 0.01%)</title><rect x="1089.2" y="629" width="0.2" height="15.0" fill="rgb(224,88,21)" rx="2" ry="2" /> | |
| <text x="1092.23" y="639.5" ></text> | |
| </g> | |
| <g > | |
| <title>el0_svc_common.constprop.0 (87,334,896 samples, 0.05%)</title><rect x="1095.3" y="613" width="0.6" height="15.0" fill="rgb(224,89,21)" rx="2" ry="2" /> | |
| <text x="1098.34" y="623.5" ></text> | |
| </g> | |
| <g > | |
| <title>util_sparse_array_get (23,387,947 samples, 0.01%)</title><rect x="348.2" y="741" width="0.1" height="15.0" fill="rgb(241,168,40)" rx="2" ry="2" /> | |
| <text x="351.19" y="751.5" ></text> | |
| </g> | |
| <g > | |
| <title>el0t_64_sync (39,366,923 samples, 0.02%)</title><rect x="10.3" y="757" width="0.3" height="15.0" fill="rgb(217,56,13)" rx="2" ry="2" /> | |
| <text x="13.32" y="767.5" ></text> | |
| </g> | |
| <g > | |
| <title>__poll (82,148,339 samples, 0.05%)</title><rect x="542.8" y="709" width="0.5" height="15.0" fill="rgb(250,208,49)" rx="2" ry="2" /> | |
| <text x="545.79" y="719.5" ></text> | |
| </g> | |
| <g > | |
| <title>st_prepare_draw (282,079,369 samples, 0.16%)</title><rect x="1081.3" y="677" width="1.9" height="15.0" fill="rgb(214,45,10)" rx="2" ry="2" /> | |
| <text x="1084.34" y="687.5" ></text> | |
| </g> | |
| <g > | |
| <title>invoke_syscall (87,282,244 samples, 0.05%)</title><rect x="509.9" y="581" width="0.5" height="15.0" fill="rgb(209,18,4)" rx="2" ry="2" /> | |
| <text x="512.86" y="591.5" ></text> | |
| </g> | |
| <g > | |
| <title>st_convert_sampler (26,287,183 samples, 0.01%)</title><rect x="939.2" y="565" width="0.2" height="15.0" fill="rgb(242,172,41)" rx="2" ry="2" /> | |
| <text x="942.23" y="575.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_update_state_locked (23,894,459 samples, 0.01%)</title><rect x="975.4" y="629" width="0.2" height="15.0" fill="rgb(214,43,10)" rx="2" ry="2" /> | |
| <text x="978.42" y="639.5" ></text> | |
| </g> | |
| <g > | |
| <title>__GI___futex_abstimed_wait_cancelable64 (868,549,713 samples, 0.48%)</title><rect x="28.1" y="773" width="5.7" height="15.0" fill="rgb(215,48,11)" rx="2" ry="2" /> | |
| <text x="31.09" y="783.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_glthread_finish (69,974,874 samples, 0.04%)</title><rect x="509.1" y="757" width="0.5" height="15.0" fill="rgb(209,22,5)" rx="2" ry="2" /> | |
| <text x="512.11" y="767.5" ></text> | |
| </g> | |
| <g > | |
| <title>futex_wake (15,505,644 samples, 0.01%)</title><rect x="418.8" y="501" width="0.2" height="15.0" fill="rgb(219,65,15)" rx="2" ry="2" /> | |
| <text x="421.85" y="511.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_unmarshal_DepthRange (20,100,592 samples, 0.01%)</title><rect x="375.5" y="805" width="0.1" height="15.0" fill="rgb(252,219,52)" rx="2" ry="2" /> | |
| <text x="378.51" y="815.5" ></text> | |
| </g> | |
| <g > | |
| <title>amdgpu_get_new_ib (24,549,076 samples, 0.01%)</title><rect x="190.4" y="741" width="0.1" height="15.0" fill="rgb(240,164,39)" rx="2" ry="2" /> | |
| <text x="193.38" y="751.5" ></text> | |
| </g> | |
| <g > | |
| <title>st_update_rasterizer (64,702,112 samples, 0.04%)</title><rect x="1122.0" y="645" width="0.5" height="15.0" fill="rgb(240,164,39)" rx="2" ry="2" /> | |
| <text x="1125.04" y="655.5" ></text> | |
| </g> | |
| <g > | |
| <title>si_shader_select (20,194,535 samples, 0.01%)</title><rect x="889.2" y="533" width="0.1" height="15.0" fill="rgb(254,227,54)" rx="2" ry="2" /> | |
| <text x="892.17" y="543.5" ></text> | |
| </g> | |
| <g > | |
| <title>__arm64_sys_futex (24,323,117 samples, 0.01%)</title><rect x="516.8" y="565" width="0.1" height="15.0" fill="rgb(247,196,47)" rx="2" ry="2" /> | |
| <text x="519.77" y="575.5" ></text> | |
| </g> | |
| <g > | |
| <title>st_update_sample_shading (15,973,870 samples, 0.01%)</title><rect x="937.2" y="597" width="0.1" height="15.0" fill="rgb(237,150,36)" rx="2" ry="2" /> | |
| <text x="940.17" y="607.5" ></text> | |
| </g> | |
| <g > | |
| <title>si_buffer_transfer_map (27,532,840 samples, 0.02%)</title><rect x="833.5" y="613" width="0.2" height="15.0" fill="rgb(237,151,36)" rx="2" ry="2" /> | |
| <text x="836.51" y="623.5" ></text> | |
| </g> | |
| <g > | |
| <title>drm_gem_object_release_handle (25,098,421 samples, 0.01%)</title><rect x="1189.8" y="629" width="0.2" height="15.0" fill="rgb(208,14,3)" rx="2" ry="2" /> | |
| <text x="1192.84" y="639.5" ></text> | |
| </g> | |
| <g > | |
| <title>__memcpy_generic (376,887,086 samples, 0.21%)</title><rect x="1008.5" y="597" width="2.5" height="15.0" fill="rgb(231,124,29)" rx="2" ry="2" /> | |
| <text x="1011.50" y="607.5" ></text> | |
| </g> | |
| <g > | |
| <title>slab_zalloc (61,858,830 samples, 0.03%)</title><rect x="1071.9" y="661" width="0.4" height="15.0" fill="rgb(232,128,30)" rx="2" ry="2" /> | |
| <text x="1074.87" y="671.5" ></text> | |
| </g> | |
| <g > | |
| <title>memcmp (117,916,537 samples, 0.07%)</title><rect x="136.5" y="741" width="0.7" height="15.0" fill="rgb(235,141,33)" rx="2" ry="2" /> | |
| <text x="139.46" y="751.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_use_shader_program (102,264,077 samples, 0.06%)</title><rect x="858.9" y="613" width="0.6" height="15.0" fill="rgb(245,188,44)" rx="2" ry="2" /> | |
| <text x="861.87" y="623.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_MapBufferRange (27,272,167 samples, 0.02%)</title><rect x="1076.1" y="757" width="0.2" height="15.0" fill="rgb(238,156,37)" rx="2" ry="2" /> | |
| <text x="1079.12" y="767.5" ></text> | |
| </g> | |
| <g > | |
| <title>cnd_signal (75,872,187 samples, 0.04%)</title><rect x="538.8" y="661" width="0.5" height="15.0" fill="rgb(232,125,30)" rx="2" ry="2" /> | |
| <text x="541.84" y="671.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_unmarshal_VertexAttrib4Nubv (67,248,994 samples, 0.04%)</title><rect x="830.1" y="629" width="0.5" height="15.0" fill="rgb(245,184,44)" rx="2" ry="2" /> | |
| <text x="833.12" y="639.5" ></text> | |
| </g> | |
| <g > | |
| <title>do_futex (43,928,057 samples, 0.02%)</title><rect x="10.7" y="645" width="0.3" height="15.0" fill="rgb(245,184,44)" rx="2" ry="2" /> | |
| <text x="13.69" y="655.5" ></text> | |
| </g> | |
| <g > | |
| <title>tc_batch_flush (44,912,773 samples, 0.02%)</title><rect x="420.1" y="677" width="0.3" height="15.0" fill="rgb(249,206,49)" rx="2" ry="2" /> | |
| <text x="423.10" y="687.5" ></text> | |
| </g> | |
| <g > | |
| <title>res2_inverse (55,466,649 samples, 0.03%)</title><rect x="24.5" y="677" width="0.4" height="15.0" fill="rgb(209,21,5)" rx="2" ry="2" /> | |
| <text x="27.53" y="687.5" ></text> | |
| </g> | |
| <g > | |
| <title>xcb_poll_for_special_event (292,878,980 samples, 0.16%)</title><rect x="1106.6" y="533" width="1.9" height="15.0" fill="rgb(224,90,21)" rx="2" ry="2" /> | |
| <text x="1109.58" y="543.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_unmarshal_VertexAttrib4Nubv (104,921,048 samples, 0.06%)</title><rect x="951.3" y="661" width="0.7" height="15.0" fill="rgb(245,184,44)" rx="2" ry="2" /> | |
| <text x="954.34" y="671.5" ></text> | |
| </g> | |
| <g > | |
| <title>[libGLdispatch.so.0.0.0] (149,808,193 samples, 0.08%)</title><rect x="556.7" y="773" width="1.0" height="15.0" fill="rgb(209,20,4)" rx="2" ry="2" /> | |
| <text x="559.70" y="783.5" ></text> | |
| </g> | |
| <g > | |
| <title>__vsnprintf_chk (39,782,810 samples, 0.02%)</title><rect x="1177.2" y="789" width="0.2" height="15.0" fill="rgb(247,193,46)" rx="2" ry="2" /> | |
| <text x="1180.17" y="799.5" ></text> | |
| </g> | |
| <g > | |
| <title>shared_dispatch_stub_473 (19,005,557 samples, 0.01%)</title><rect x="1169.9" y="757" width="0.1" height="15.0" fill="rgb(216,53,12)" rx="2" ry="2" /> | |
| <text x="1172.88" y="767.5" ></text> | |
| </g> | |
| <g > | |
| <title>util_queue_add_job_locked.part.0 (15,639,387 samples, 0.01%)</title><rect x="972.2" y="693" width="0.1" height="15.0" fill="rgb(243,177,42)" rx="2" ry="2" /> | |
| <text x="975.21" y="703.5" ></text> | |
| </g> | |
| <g > | |
| <title>kmem_cache_alloc_noprof (25,384,946 samples, 0.01%)</title><rect x="306.0" y="517" width="0.2" height="15.0" fill="rgb(248,200,47)" rx="2" ry="2" /> | |
| <text x="309.03" y="527.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_BlendFunc (17,989,759 samples, 0.01%)</title><rect x="987.4" y="661" width="0.1" height="15.0" fill="rgb(218,64,15)" rx="2" ry="2" /> | |
| <text x="990.43" y="671.5" ></text> | |
| </g> | |
| <g > | |
| <title>tc_buffer_do_flush_region (21,994,291 samples, 0.01%)</title><rect x="829.9" y="565" width="0.2" height="15.0" fill="rgb(224,87,20)" rx="2" ry="2" /> | |
| <text x="832.91" y="575.5" ></text> | |
| </g> | |
| <g > | |
| <title>si_buffer_transfer_map (437,803,099 samples, 0.24%)</title><rect x="1036.5" y="677" width="2.9" height="15.0" fill="rgb(237,151,36)" rx="2" ry="2" /> | |
| <text x="1039.55" y="687.5" ></text> | |
| </g> | |
| <g > | |
| <title>amdgpu_cs_flush (33,508,262 samples, 0.02%)</title><rect x="187.7" y="741" width="0.3" height="15.0" fill="rgb(205,1,0)" rx="2" ry="2" /> | |
| <text x="190.74" y="751.5" ></text> | |
| </g> | |
| <g > | |
| <title>st_finalize_texture (62,233,366 samples, 0.03%)</title><rect x="941.0" y="533" width="0.4" height="15.0" fill="rgb(232,124,29)" rx="2" ry="2" /> | |
| <text x="943.99" y="543.5" ></text> | |
| </g> | |
| <g > | |
| <title>deflate (16,413,421 samples, 0.01%)</title><rect x="831.9" y="677" width="0.1" height="15.0" fill="rgb(230,115,27)" rx="2" ry="2" /> | |
| <text x="834.91" y="687.5" ></text> | |
| </g> | |
| <g > | |
| <title>dma_resv_reserve_fences (265,906,941 samples, 0.15%)</title><rect x="279.7" y="549" width="1.8" height="15.0" fill="rgb(209,20,5)" rx="2" ry="2" /> | |
| <text x="282.74" y="559.5" ></text> | |
| </g> | |
| <g > | |
| <title>gup_fast_fallback (22,309,306 samples, 0.01%)</title><rect x="980.2" y="437" width="0.1" height="15.0" fill="rgb(242,172,41)" rx="2" ry="2" /> | |
| <text x="983.17" y="447.5" ></text> | |
| </g> | |
| <g > | |
| <title>el0t_64_sync_handler (231,610,995 samples, 0.13%)</title><rect x="1106.8" y="453" width="1.6" height="15.0" fill="rgb(211,32,7)" rx="2" ry="2" /> | |
| <text x="1109.84" y="463.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_marshal_BindTexture (56,856,349 samples, 0.03%)</title><rect x="1054.1" y="741" width="0.4" height="15.0" fill="rgb(214,44,10)" rx="2" ry="2" /> | |
| <text x="1057.10" y="751.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_reference_texobj_ (19,337,404 samples, 0.01%)</title><rect x="990.9" y="581" width="0.2" height="15.0" fill="rgb(229,111,26)" rx="2" ry="2" /> | |
| <text x="993.93" y="591.5" ></text> | |
| </g> | |
| <g > | |
| <title>do_el0_svc (18,346,173 samples, 0.01%)</title><rect x="10.3" y="709" width="0.1" height="15.0" fill="rgb(218,60,14)" rx="2" ry="2" /> | |
| <text x="13.32" y="719.5" ></text> | |
| </g> | |
| <g > | |
| <title>invoke_syscall (43,928,057 samples, 0.02%)</title><rect x="10.7" y="677" width="0.3" height="15.0" fill="rgb(209,18,4)" rx="2" ry="2" /> | |
| <text x="13.69" y="687.5" ></text> | |
| </g> | |
| <g > | |
| <title>_glapi_get_current (17,170,039 samples, 0.01%)</title><rect x="1070.1" y="725" width="0.1" height="15.0" fill="rgb(233,130,31)" rx="2" ry="2" /> | |
| <text x="1073.09" y="735.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_DepthRange (19,211,850 samples, 0.01%)</title><rect x="989.3" y="645" width="0.1" height="15.0" fill="rgb(238,156,37)" rx="2" ry="2" /> | |
| <text x="992.27" y="655.5" ></text> | |
| </g> | |
| <g > | |
| <title>__arm64_sys_read (21,103,875 samples, 0.01%)</title><rect x="13.0" y="581" width="0.1" height="15.0" fill="rgb(227,105,25)" rx="2" ry="2" /> | |
| <text x="15.98" y="591.5" ></text> | |
| </g> | |
| <g > | |
| <title>bind_buffer_object (66,028,900 samples, 0.04%)</title><rect x="1098.0" y="693" width="0.4" height="15.0" fill="rgb(246,190,45)" rx="2" ry="2" /> | |
| <text x="1101.00" y="703.5" ></text> | |
| </g> | |
| <g > | |
| <title>strspn (15,462,675 samples, 0.01%)</title><rect x="796.2" y="341" width="0.1" height="15.0" fill="rgb(207,13,3)" rx="2" ry="2" /> | |
| <text x="799.18" y="351.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_reference_texobj_ (16,714,788 samples, 0.01%)</title><rect x="868.2" y="549" width="0.1" height="15.0" fill="rgb(229,111,26)" rx="2" ry="2" /> | |
| <text x="871.17" y="559.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_unmarshal_UnmapBuffer (150,797,325 samples, 0.08%)</title><rect x="1023.1" y="677" width="1.0" height="15.0" fill="rgb(221,73,17)" rx="2" ry="2" /> | |
| <text x="1026.13" y="687.5" ></text> | |
| </g> | |
| <g > | |
| <title>__aarch64_cas4_sync (89,318,478 samples, 0.05%)</title><rect x="923.6" y="613" width="0.6" height="15.0" fill="rgb(253,222,53)" rx="2" ry="2" /> | |
| <text x="926.61" y="623.5" ></text> | |
| </g> | |
| <g > | |
| <title>st_prepare_draw (186,901,773 samples, 0.10%)</title><rect x="1059.0" y="661" width="1.2" height="15.0" fill="rgb(214,45,10)" rx="2" ry="2" /> | |
| <text x="1062.00" y="671.5" ></text> | |
| </g> | |
| <g > | |
| <title>drm_ioctl (19,647,113 samples, 0.01%)</title><rect x="1160.8" y="437" width="0.2" height="15.0" fill="rgb(231,121,29)" rx="2" ry="2" /> | |
| <text x="1163.83" y="447.5" ></text> | |
| </g> | |
| <g > | |
| <title>strlen@plt (25,553,020 samples, 0.01%)</title><rect x="1044.1" y="725" width="0.2" height="15.0" fill="rgb(240,162,38)" rx="2" ry="2" /> | |
| <text x="1047.14" y="735.5" ></text> | |
| </g> | |
| <g > | |
| <title>drm_syncobj_get_handle (24,338,067 samples, 0.01%)</title><rect x="189.4" y="501" width="0.2" height="15.0" fill="rgb(254,225,54)" rx="2" ry="2" /> | |
| <text x="192.42" y="511.5" ></text> | |
| </g> | |
| <g > | |
| <title>amdgpu_bo_wait (38,381,932 samples, 0.02%)</title><rect x="515.4" y="597" width="0.2" height="15.0" fill="rgb(241,168,40)" rx="2" ry="2" /> | |
| <text x="518.40" y="607.5" ></text> | |
| </g> | |
| <g > | |
| <title>util_copy_framebuffer_state (204,273,636 samples, 0.11%)</title><rect x="200.3" y="773" width="1.4" height="15.0" fill="rgb(234,137,32)" rx="2" ry="2" /> | |
| <text x="203.32" y="783.5" ></text> | |
| </g> | |
| <g > | |
| <title>redeclipse:cs0 (13,569,053,316 samples, 7.52%)</title><rect x="248.7" y="901" width="88.7" height="15.0" fill="rgb(224,90,21)" rx="2" ry="2" /> | |
| <text x="251.73" y="911.5" >redeclipse..</text> | |
| </g> | |
| <g > | |
| <title>pthread_cond_signal@@GLIBC_2.17 (71,094,142 samples, 0.04%)</title><rect x="455.8" y="693" width="0.5" height="15.0" fill="rgb(232,126,30)" rx="2" ry="2" /> | |
| <text x="458.82" y="703.5" ></text> | |
| </g> | |
| <g > | |
| <title>[redeclipse] (4,112,965,769 samples, 2.28%)</title><rect x="770.1" y="373" width="26.9" height="15.0" fill="rgb(253,222,53)" rx="2" ry="2" /> | |
| <text x="773.10" y="383.5" >[..</text> | |
| </g> | |
| <g > | |
| <title>util_queue_add_job_locked.part.0 (74,455,412 samples, 0.04%)</title><rect x="455.8" y="725" width="0.5" height="15.0" fill="rgb(243,177,42)" rx="2" ry="2" /> | |
| <text x="458.81" y="735.5" ></text> | |
| </g> | |
| <g > | |
| <title>amdgpu_cs_flush (15,536,500 samples, 0.01%)</title><rect x="151.3" y="757" width="0.1" height="15.0" fill="rgb(205,1,0)" rx="2" ry="2" /> | |
| <text x="154.32" y="767.5" ></text> | |
| </g> | |
| <g > | |
| <title>si_pipe_set_constant_buffer (127,343,926 samples, 0.07%)</title><rect x="193.4" y="789" width="0.9" height="15.0" fill="rgb(223,85,20)" rx="2" ry="2" /> | |
| <text x="196.44" y="799.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_update_framebuffer_visual (25,663,625 samples, 0.01%)</title><rect x="1080.7" y="613" width="0.2" height="15.0" fill="rgb(241,167,40)" rx="2" ry="2" /> | |
| <text x="1083.69" y="623.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_unmarshal_VertexAttrib4Nubv (25,689,324 samples, 0.01%)</title><rect x="830.4" y="613" width="0.2" height="15.0" fill="rgb(245,184,44)" rx="2" ry="2" /> | |
| <text x="833.39" y="623.5" ></text> | |
| </g> | |
| <g > | |
| <title>si_bind_vs_shader (771,885,408 samples, 0.43%)</title><rect x="61.3" y="789" width="5.0" height="15.0" fill="rgb(252,216,51)" rx="2" ry="2" /> | |
| <text x="64.26" y="799.5" ></text> | |
| </g> | |
| <g > | |
| <title>pthread_cond_signal@@GLIBC_2.17 (26,887,441 samples, 0.01%)</title><rect x="1126.1" y="565" width="0.2" height="15.0" fill="rgb(232,126,30)" rx="2" ry="2" /> | |
| <text x="1129.15" y="575.5" ></text> | |
| </g> | |
| <g > | |
| <title>si_flush_gfx_cs (15,842,468 samples, 0.01%)</title><rect x="192.7" y="757" width="0.1" height="15.0" fill="rgb(242,171,41)" rx="2" ry="2" /> | |
| <text x="195.68" y="767.5" ></text> | |
| </g> | |
| <g > | |
| <title>_glapi_get_current (41,842,314 samples, 0.02%)</title><rect x="557.4" y="757" width="0.3" height="15.0" fill="rgb(233,130,31)" rx="2" ry="2" /> | |
| <text x="560.40" y="767.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_reference_program_ (45,896,834 samples, 0.03%)</title><rect x="1147.0" y="629" width="0.3" height="15.0" fill="rgb(231,122,29)" rx="2" ry="2" /> | |
| <text x="1150.05" y="639.5" ></text> | |
| </g> | |
| <g > | |
| <title>ac_set_mutable_tex_desc_fields (236,519,028 samples, 0.13%)</title><rect x="223.0" y="709" width="1.6" height="15.0" fill="rgb(231,120,28)" rx="2" ry="2" /> | |
| <text x="226.04" y="719.5" ></text> | |
| </g> | |
| <g > | |
| <title>st_update_sample_shading (15,508,581 samples, 0.01%)</title><rect x="1007.9" y="613" width="0.1" height="15.0" fill="rgb(237,150,36)" rx="2" ry="2" /> | |
| <text x="1010.94" y="623.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_use_program (155,869,074 samples, 0.09%)</title><rect x="950.0" y="613" width="1.0" height="15.0" fill="rgb(235,141,33)" rx="2" ry="2" /> | |
| <text x="952.95" y="623.5" ></text> | |
| </g> | |
| <g > | |
| <title>si_add_all_descriptors_to_bo_list (16,855,718 samples, 0.01%)</title><rect x="539.4" y="677" width="0.2" height="15.0" fill="rgb(220,70,16)" rx="2" ry="2" /> | |
| <text x="542.44" y="687.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_UniformMatrix3fv (20,877,756 samples, 0.01%)</title><rect x="1021.5" y="661" width="0.1" height="15.0" fill="rgb(241,168,40)" rx="2" ry="2" /> | |
| <text x="1024.50" y="671.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_update_state_locked (41,819,931 samples, 0.02%)</title><rect x="865.3" y="597" width="0.3" height="15.0" fill="rgb(214,43,10)" rx="2" ry="2" /> | |
| <text x="868.28" y="607.5" ></text> | |
| </g> | |
| <g > | |
| <title>rseq_get_rseq_cs.isra.0 (41,367,296 samples, 0.02%)</title><rect x="339.8" y="677" width="0.3" height="15.0" fill="rgb(210,26,6)" rx="2" ry="2" /> | |
| <text x="342.80" y="687.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_update_state (789,118,514 samples, 0.44%)</title><rect x="1113.7" y="677" width="5.2" height="15.0" fill="rgb(222,78,18)" rx="2" ry="2" /> | |
| <text x="1116.74" y="687.5" ></text> | |
| </g> | |
| <g > | |
| <title>tc_batch_flush (44,256,284 samples, 0.02%)</title><rect x="1126.0" y="613" width="0.3" height="15.0" fill="rgb(249,206,49)" rx="2" ry="2" /> | |
| <text x="1129.05" y="623.5" ></text> | |
| </g> | |
| <g > | |
| <title>st_prepare_draw (60,779,034 samples, 0.03%)</title><rect x="930.7" y="613" width="0.4" height="15.0" fill="rgb(214,45,10)" rx="2" ry="2" /> | |
| <text x="933.71" y="623.5" ></text> | |
| </g> | |
| <g > | |
| <title>el0_svc_common.constprop.0 (36,205,028 samples, 0.02%)</title><rect x="190.1" y="613" width="0.2" height="15.0" fill="rgb(224,89,21)" rx="2" ry="2" /> | |
| <text x="193.11" y="623.5" ></text> | |
| </g> | |
| <g > | |
| <title>vbo_exec_copy_to_current (20,262,061 samples, 0.01%)</title><rect x="1017.0" y="629" width="0.1" height="15.0" fill="rgb(218,60,14)" rx="2" ry="2" /> | |
| <text x="1019.95" y="639.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_active_program (18,909,702 samples, 0.01%)</title><rect x="1024.6" y="645" width="0.1" height="15.0" fill="rgb(228,107,25)" rx="2" ry="2" /> | |
| <text x="1027.57" y="655.5" ></text> | |
| </g> | |
| <g > | |
| <title>futex_wait_setup (31,511,674 samples, 0.02%)</title><rect x="338.9" y="597" width="0.2" height="15.0" fill="rgb(247,195,46)" rx="2" ry="2" /> | |
| <text x="341.93" y="607.5" ></text> | |
| </g> | |
| <g > | |
| <title>si_buffer_get_transfer (128,681,101 samples, 0.07%)</title><rect x="1167.9" y="693" width="0.8" height="15.0" fill="rgb(224,91,21)" rx="2" ry="2" /> | |
| <text x="1170.87" y="703.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_use_shader_program (19,280,230 samples, 0.01%)</title><rect x="1155.6" y="677" width="0.1" height="15.0" fill="rgb(245,188,44)" rx="2" ry="2" /> | |
| <text x="1158.56" y="687.5" ></text> | |
| </g> | |
| <g > | |
| <title>__libc_calloc (20,781,618 samples, 0.01%)</title><rect x="516.0" y="677" width="0.1" height="15.0" fill="rgb(205,4,0)" rx="2" ry="2" /> | |
| <text x="518.99" y="687.5" ></text> | |
| </g> | |
| <g > | |
| <title>st_get_texture_sampler_view_from_stobj (38,182,347 samples, 0.02%)</title><rect x="865.9" y="565" width="0.3" height="15.0" fill="rgb(211,32,7)" rx="2" ry="2" /> | |
| <text x="868.91" y="575.5" ></text> | |
| </g> | |
| <g > | |
| <title>amdgpu_cs_add_buffer (20,408,673 samples, 0.01%)</title><rect x="195.5" y="757" width="0.1" height="15.0" fill="rgb(254,227,54)" rx="2" ry="2" /> | |
| <text x="198.45" y="767.5" ></text> | |
| </g> | |
| <g > | |
| <title>tc_draw_vbo (35,910,311 samples, 0.02%)</title><rect x="1060.2" y="661" width="0.3" height="15.0" fill="rgb(207,9,2)" rx="2" ry="2" /> | |
| <text x="1063.23" y="671.5" ></text> | |
| </g> | |
| <g > | |
| <title>el0t_64_sync_handler (87,304,940 samples, 0.05%)</title><rect x="1177.7" y="677" width="0.6" height="15.0" fill="rgb(211,32,7)" rx="2" ry="2" /> | |
| <text x="1180.70" y="687.5" ></text> | |
| </g> | |
| <g > | |
| <title>invoke_syscall (18,386,053 samples, 0.01%)</title><rect x="453.1" y="549" width="0.2" height="15.0" fill="rgb(209,18,4)" rx="2" ry="2" /> | |
| <text x="456.15" y="559.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_unmarshal_Uniform3f (31,881,479 samples, 0.02%)</title><rect x="946.3" y="661" width="0.2" height="15.0" fill="rgb(231,119,28)" rx="2" ry="2" /> | |
| <text x="949.34" y="671.5" ></text> | |
| </g> | |
| <g > | |
| <title>tc_bind_sampler_states (21,248,100 samples, 0.01%)</title><rect x="871.6" y="549" width="0.2" height="15.0" fill="rgb(218,61,14)" rx="2" ry="2" /> | |
| <text x="874.63" y="559.5" ></text> | |
| </g> | |
| <g > | |
| <title>copy_uniforms_to_storage (22,848,317 samples, 0.01%)</title><rect x="464.4" y="757" width="0.2" height="15.0" fill="rgb(250,207,49)" rx="2" ry="2" /> | |
| <text x="467.43" y="767.5" ></text> | |
| </g> | |
| <g > | |
| <title>st_manager_validate_framebuffers (16,944,619 samples, 0.01%)</title><rect x="1109.1" y="645" width="0.1" height="15.0" fill="rgb(251,215,51)" rx="2" ry="2" /> | |
| <text x="1112.10" y="655.5" ></text> | |
| </g> | |
| <g > | |
| <title>void si_draw_vbo< (437,265,464 samples, 0.24%)</title><rect x="524.0" y="661" width="2.8" height="15.0" fill="rgb(226,101,24)" rx="2" ry="2" /> | |
| <text x="526.96" y="671.5" ></text> | |
| </g> | |
| <g > | |
| <title>cnd_signal (15,698,703 samples, 0.01%)</title><rect x="1032.0" y="677" width="0.1" height="15.0" fill="rgb(232,125,30)" rx="2" ry="2" /> | |
| <text x="1035.01" y="687.5" ></text> | |
| </g> | |
| <g > | |
| <title>el0t_64_sync (41,517,751 samples, 0.02%)</title><rect x="16.5" y="741" width="0.3" height="15.0" fill="rgb(217,56,13)" rx="2" ry="2" /> | |
| <text x="19.48" y="751.5" ></text> | |
| </g> | |
| <g > | |
| <title>st_prepare_draw (133,655,784 samples, 0.07%)</title><rect x="396.0" y="741" width="0.8" height="15.0" fill="rgb(214,45,10)" rx="2" ry="2" /> | |
| <text x="398.96" y="751.5" ></text> | |
| </g> | |
| <g > | |
| <title>pa_srbchannel_write (16,784,005 samples, 0.01%)</title><rect x="12.8" y="741" width="0.1" height="15.0" fill="rgb(229,111,26)" rx="2" ry="2" /> | |
| <text x="15.77" y="751.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_update_state (27,786,086 samples, 0.02%)</title><rect x="810.7" y="581" width="0.2" height="15.0" fill="rgb(222,78,18)" rx="2" ry="2" /> | |
| <text x="813.72" y="591.5" ></text> | |
| </g> | |
| <g > | |
| <title>pthread_cond_signal@@GLIBC_2.17 (32,038,405 samples, 0.02%)</title><rect x="418.8" y="661" width="0.2" height="15.0" fill="rgb(232,126,30)" rx="2" ry="2" /> | |
| <text x="421.77" y="671.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_uniform (26,061,745 samples, 0.01%)</title><rect x="1020.4" y="645" width="0.2" height="15.0" fill="rgb(248,201,48)" rx="2" ry="2" /> | |
| <text x="1023.42" y="655.5" ></text> | |
| </g> | |
| <g > | |
| <title>cso_set_vertex_elements (88,352,441 samples, 0.05%)</title><rect x="942.6" y="581" width="0.6" height="15.0" fill="rgb(238,152,36)" rx="2" ry="2" /> | |
| <text x="945.61" y="591.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_unmarshal_Uniform2fv (44,100,164 samples, 0.02%)</title><rect x="946.1" y="661" width="0.2" height="15.0" fill="rgb(225,92,22)" rx="2" ry="2" /> | |
| <text x="949.05" y="671.5" ></text> | |
| </g> | |
| <g > | |
| <title>cfree@GLIBC_2.17 (57,796,326 samples, 0.03%)</title><rect x="200.9" y="757" width="0.4" height="15.0" fill="rgb(224,88,21)" rx="2" ry="2" /> | |
| <text x="203.94" y="767.5" ></text> | |
| </g> | |
| <g > | |
| <title>ovl_xattr_get (55,125,666 samples, 0.03%)</title><rect x="1182.3" y="469" width="0.3" height="15.0" fill="rgb(205,0,0)" rx="2" ry="2" /> | |
| <text x="1185.28" y="479.5" ></text> | |
| </g> | |
| <g > | |
| <title>invoke_syscall (43,693,032 samples, 0.02%)</title><rect x="455.9" y="581" width="0.3" height="15.0" fill="rgb(209,18,4)" rx="2" ry="2" /> | |
| <text x="458.92" y="591.5" ></text> | |
| </g> | |
| <g > | |
| <title>glBlendFunc (19,594,027 samples, 0.01%)</title><rect x="1070.3" y="741" width="0.1" height="15.0" fill="rgb(209,19,4)" rx="2" ry="2" /> | |
| <text x="1073.28" y="751.5" ></text> | |
| </g> | |
| <g > | |
| <title>[redeclipse] (18,990,726 samples, 0.01%)</title><rect x="781.8" y="85" width="0.1" height="15.0" fill="rgb(253,222,53)" rx="2" ry="2" /> | |
| <text x="784.77" y="95.5" ></text> | |
| </g> | |
| <g > | |
| <title>validate_uniform_parameters (15,749,534 samples, 0.01%)</title><rect x="946.4" y="597" width="0.1" height="15.0" fill="rgb(234,137,32)" rx="2" ry="2" /> | |
| <text x="949.39" y="607.5" ></text> | |
| </g> | |
| <g > | |
| <title>drmSyncobjCreate (274,908,250 samples, 0.15%)</title><rect x="188.3" y="725" width="1.8" height="15.0" fill="rgb(224,87,21)" rx="2" ry="2" /> | |
| <text x="191.28" y="735.5" ></text> | |
| </g> | |
| <g > | |
| <title>__libc_recvmsg (155,022,928 samples, 0.09%)</title><rect x="503.3" y="661" width="1.0" height="15.0" fill="rgb(220,72,17)" rx="2" ry="2" /> | |
| <text x="506.30" y="671.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_update_state_locked (36,194,873 samples, 0.02%)</title><rect x="1110.4" y="645" width="0.2" height="15.0" fill="rgb(214,43,10)" rx="2" ry="2" /> | |
| <text x="1113.35" y="655.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_Uniform2f (21,321,403 samples, 0.01%)</title><rect x="460.4" y="789" width="0.1" height="15.0" fill="rgb(223,86,20)" rx="2" ry="2" /> | |
| <text x="463.40" y="799.5" ></text> | |
| </g> | |
| <g > | |
| <title>u_upload_alloc (135,331,641 samples, 0.07%)</title><rect x="180.0" y="757" width="0.8" height="15.0" fill="rgb(235,138,33)" rx="2" ry="2" /> | |
| <text x="182.96" y="767.5" ></text> | |
| </g> | |
| <g > | |
| <title>st_upload_constants (208,437,746 samples, 0.12%)</title><rect x="1124.6" y="629" width="1.3" height="15.0" fill="rgb(238,154,36)" rx="2" ry="2" /> | |
| <text x="1127.56" y="639.5" ></text> | |
| </g> | |
| <g > | |
| <title>tc_buffer_subdata.part.0 (102,576,034 samples, 0.06%)</title><rect x="1170.4" y="757" width="0.7" height="15.0" fill="rgb(231,120,28)" rx="2" ry="2" /> | |
| <text x="1173.39" y="767.5" ></text> | |
| </g> | |
| <g > | |
| <title>st_upload_constants (22,826,262 samples, 0.01%)</title><rect x="871.3" y="565" width="0.2" height="15.0" fill="rgb(238,154,36)" rx="2" ry="2" /> | |
| <text x="874.31" y="575.5" ></text> | |
| </g> | |
| <g > | |
| <title>__futex_lock_pi64 (37,287,209 samples, 0.02%)</title><rect x="16.9" y="757" width="0.2" height="15.0" fill="rgb(235,138,33)" rx="2" ry="2" /> | |
| <text x="19.88" y="767.5" ></text> | |
| </g> | |
| <g > | |
| <title>dri3_find_back_alloc (225,105,262 samples, 0.12%)</title><rect x="507.3" y="773" width="1.5" height="15.0" fill="rgb(219,67,16)" rx="2" ry="2" /> | |
| <text x="510.31" y="783.5" ></text> | |
| </g> | |
| <g > | |
| <title>st_invalidate_state (18,909,041 samples, 0.01%)</title><rect x="1118.0" y="645" width="0.1" height="15.0" fill="rgb(245,184,44)" rx="2" ry="2" /> | |
| <text x="1121.01" y="655.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_marshal_MapBufferRange (89,133,421 samples, 0.05%)</title><rect x="783.2" y="133" width="0.6" height="15.0" fill="rgb(219,65,15)" rx="2" ry="2" /> | |
| <text x="786.21" y="143.5" ></text> | |
| </g> | |
| <g > | |
| <title>st_get_sampler_views (210,549,282 samples, 0.12%)</title><rect x="996.9" y="613" width="1.4" height="15.0" fill="rgb(224,91,21)" rx="2" ry="2" /> | |
| <text x="999.94" y="623.5" ></text> | |
| </g> | |
| <g > | |
| <title>render_texture.constprop.0 (55,312,710 samples, 0.03%)</title><rect x="1018.3" y="629" width="0.4" height="15.0" fill="rgb(230,116,27)" rx="2" ry="2" /> | |
| <text x="1021.33" y="639.5" ></text> | |
| </g> | |
| <g > | |
| <title>__GI___strlen_asimd (18,535,392 samples, 0.01%)</title><rect x="790.3" y="229" width="0.2" height="15.0" fill="rgb(213,41,9)" rx="2" ry="2" /> | |
| <text x="793.33" y="239.5" ></text> | |
| </g> | |
| <g > | |
| <title>glthread_unmarshal_batch (79,720,739 samples, 0.04%)</title><rect x="859.8" y="645" width="0.5" height="15.0" fill="rgb(247,195,46)" rx="2" ry="2" /> | |
| <text x="862.80" y="655.5" ></text> | |
| </g> | |
| <g > | |
| <title>__aarch64_cas4_sync (77,014,615 samples, 0.04%)</title><rect x="921.1" y="661" width="0.5" height="15.0" fill="rgb(253,222,53)" rx="2" ry="2" /> | |
| <text x="924.07" y="671.5" ></text> | |
| </g> | |
| <g > | |
| <title>drmSyncobjDestroy (45,864,856 samples, 0.03%)</title><rect x="190.1" y="725" width="0.3" height="15.0" fill="rgb(205,0,0)" rx="2" ry="2" /> | |
| <text x="193.07" y="735.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_marshal_DisableVertexAttribArray (16,032,087 samples, 0.01%)</title><rect x="977.4" y="725" width="0.1" height="15.0" fill="rgb(231,120,28)" rx="2" ry="2" /> | |
| <text x="980.43" y="735.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_uniform (33,457,680 samples, 0.02%)</title><rect x="946.1" y="645" width="0.2" height="15.0" fill="rgb(248,201,48)" rx="2" ry="2" /> | |
| <text x="949.12" y="655.5" ></text> | |
| </g> | |
| <g > | |
| <title>cso_set_blend (33,964,775 samples, 0.02%)</title><rect x="511.9" y="693" width="0.2" height="15.0" fill="rgb(252,217,51)" rx="2" ry="2" /> | |
| <text x="514.87" y="703.5" ></text> | |
| </g> | |
| <g > | |
| <title>glthread_unmarshal_batch (76,604,555 samples, 0.04%)</title><rect x="830.7" y="629" width="0.5" height="15.0" fill="rgb(247,195,46)" rx="2" ry="2" /> | |
| <text x="833.71" y="639.5" ></text> | |
| </g> | |
| <g > | |
| <title>__aarch64_ldadd4_acq_rel (54,575,006 samples, 0.03%)</title><rect x="345.2" y="805" width="0.3" height="15.0" fill="rgb(228,108,25)" rx="2" ry="2" /> | |
| <text x="348.15" y="815.5" ></text> | |
| </g> | |
| <g > | |
| <title>[libSDL2-2.0.so.0.3000.0] (337,461,944 samples, 0.19%)</title><rect x="15.1" y="821" width="2.2" height="15.0" fill="rgb(227,102,24)" rx="2" ry="2" /> | |
| <text x="18.13" y="831.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_marshal_BufferSubData_merged (758,699,356 samples, 0.42%)</title><rect x="972.4" y="725" width="4.9" height="15.0" fill="rgb(214,41,9)" rx="2" ry="2" /> | |
| <text x="975.38" y="735.5" ></text> | |
| </g> | |
| <g > | |
| <title>st_upload_constants (497,277,789 samples, 0.28%)</title><rect x="1123.2" y="645" width="3.2" height="15.0" fill="rgb(238,154,36)" rx="2" ry="2" /> | |
| <text x="1126.17" y="655.5" ></text> | |
| </g> | |
| <g > | |
| <title>invoke_syscall (142,449,779 samples, 0.08%)</title><rect x="249.3" y="677" width="0.9" height="15.0" fill="rgb(209,18,4)" rx="2" ry="2" /> | |
| <text x="252.27" y="687.5" ></text> | |
| </g> | |
| <g > | |
| <title>copy_uniform_matrix_to_storage (90,456,121 samples, 0.05%)</title><rect x="1022.3" y="629" width="0.6" height="15.0" fill="rgb(209,20,4)" rx="2" ry="2" /> | |
| <text x="1025.33" y="639.5" ></text> | |
| </g> | |
| <g > | |
| <title>mtx_unlock (118,732,548 samples, 0.07%)</title><rect x="253.9" y="821" width="0.8" height="15.0" fill="rgb(209,19,4)" rx="2" ry="2" /> | |
| <text x="256.90" y="831.5" ></text> | |
| </g> | |
| <g > | |
| <title>syscall_trace_enter (16,606,809 samples, 0.01%)</title><rect x="36.7" y="693" width="0.1" height="15.0" fill="rgb(251,214,51)" rx="2" ry="2" /> | |
| <text x="39.72" y="703.5" ></text> | |
| </g> | |
| <g > | |
| <title>futex_wait (123,195,196 samples, 0.07%)</title><rect x="972.6" y="677" width="0.8" height="15.0" fill="rgb(235,138,33)" rx="2" ry="2" /> | |
| <text x="975.55" y="687.5" ></text> | |
| </g> | |
| <g > | |
| <title>__arm64_sys_futex (34,671,241 samples, 0.02%)</title><rect x="16.9" y="645" width="0.2" height="15.0" fill="rgb(247,196,47)" rx="2" ry="2" /> | |
| <text x="19.88" y="655.5" ></text> | |
| </g> | |
| <g > | |
| <title>__aarch64_ldadd4_acq_rel (50,035,243 samples, 0.03%)</title><rect x="1096.4" y="709" width="0.4" height="15.0" fill="rgb(228,108,25)" rx="2" ry="2" /> | |
| <text x="1099.43" y="719.5" ></text> | |
| </g> | |
| <g > | |
| <title>st_update_single_texture (67,372,941 samples, 0.04%)</title><rect x="941.0" y="549" width="0.4" height="15.0" fill="rgb(208,15,3)" rx="2" ry="2" /> | |
| <text x="943.95" y="559.5" ></text> | |
| </g> | |
| <g > | |
| <title>amdgpu_cs_add_buffer (18,991,923 samples, 0.01%)</title><rect x="523.5" y="645" width="0.1" height="15.0" fill="rgb(254,227,54)" rx="2" ry="2" /> | |
| <text x="526.45" y="655.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_reference_shader_program_ (23,414,447 samples, 0.01%)</title><rect x="1025.8" y="613" width="0.1" height="15.0" fill="rgb(241,168,40)" rx="2" ry="2" /> | |
| <text x="1028.77" y="623.5" ></text> | |
| </g> | |
| <g > | |
| <title>amdgpu_ctx_get (19,673,207 samples, 0.01%)</title><rect x="328.3" y="581" width="0.1" height="15.0" fill="rgb(233,131,31)" rx="2" ry="2" /> | |
| <text x="331.26" y="591.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_UnmapBuffer (36,956,752 samples, 0.02%)</title><rect x="879.7" y="613" width="0.2" height="15.0" fill="rgb(207,10,2)" rx="2" ry="2" /> | |
| <text x="882.68" y="623.5" ></text> | |
| </g> | |
| <g > | |
| <title>__arm64_sys_futex (19,871,589 samples, 0.01%)</title><rect x="956.3" y="517" width="0.2" height="15.0" fill="rgb(247,196,47)" rx="2" ry="2" /> | |
| <text x="959.32" y="527.5" ></text> | |
| </g> | |
| <g > | |
| <title>bind_texture_object (21,061,030 samples, 0.01%)</title><rect x="823.8" y="597" width="0.2" height="15.0" fill="rgb(221,73,17)" rx="2" ry="2" /> | |
| <text x="826.84" y="607.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_uniform (26,717,766 samples, 0.01%)</title><rect x="1064.9" y="677" width="0.1" height="15.0" fill="rgb(248,201,48)" rx="2" ry="2" /> | |
| <text x="1067.87" y="687.5" ></text> | |
| </g> | |
| <g > | |
| <title>cso_set_vertex_elements_direct (18,826,739 samples, 0.01%)</title><rect x="1063.5" y="581" width="0.1" height="15.0" fill="rgb(222,80,19)" rx="2" ry="2" /> | |
| <text x="1066.51" y="591.5" ></text> | |
| </g> | |
| <g > | |
| <title>amdgpu_bo_map (22,715,981 samples, 0.01%)</title><rect x="833.5" y="597" width="0.2" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" /> | |
| <text x="836.52" y="607.5" ></text> | |
| </g> | |
| <g > | |
| <title>map_buffer_range (263,845,469 samples, 0.15%)</title><rect x="1071.1" y="741" width="1.7" height="15.0" fill="rgb(244,183,43)" rx="2" ry="2" /> | |
| <text x="1074.10" y="751.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_use_program (404,649,715 samples, 0.22%)</title><rect x="487.7" y="741" width="2.7" height="15.0" fill="rgb(235,141,33)" rx="2" ry="2" /> | |
| <text x="490.74" y="751.5" ></text> | |
| </g> | |
| <g > | |
| <title>tc_buffer_unmap (53,828,782 samples, 0.03%)</title><rect x="948.7" y="613" width="0.3" height="15.0" fill="rgb(231,119,28)" rx="2" ry="2" /> | |
| <text x="951.66" y="623.5" ></text> | |
| </g> | |
| <g > | |
| <title>xcb_present_pixmap (87,981,174 samples, 0.05%)</title><rect x="543.4" y="773" width="0.5" height="15.0" fill="rgb(239,158,37)" rx="2" ry="2" /> | |
| <text x="546.36" y="783.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_program_init_subroutine_defaults (25,596,365 samples, 0.01%)</title><rect x="1092.3" y="629" width="0.2" height="15.0" fill="rgb(231,122,29)" rx="2" ry="2" /> | |
| <text x="1095.33" y="639.5" ></text> | |
| </g> | |
| <g > | |
| <title>strpbrk (29,178,459 samples, 0.02%)</title><rect x="818.4" y="661" width="0.2" height="15.0" fill="rgb(250,210,50)" rx="2" ry="2" /> | |
| <text x="821.39" y="671.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_uniform (81,285,038 samples, 0.05%)</title><rect x="1138.5" y="677" width="0.6" height="15.0" fill="rgb(248,201,48)" rx="2" ry="2" /> | |
| <text x="1141.54" y="687.5" ></text> | |
| </g> | |
| <g > | |
| <title>el0t_64_sync_handler (41,517,751 samples, 0.02%)</title><rect x="16.5" y="725" width="0.3" height="15.0" fill="rgb(211,32,7)" rx="2" ry="2" /> | |
| <text x="19.48" y="735.5" ></text> | |
| </g> | |
| <g > | |
| <title>el0t_64_sync (18,062,737 samples, 0.01%)</title><rect x="39.0" y="693" width="0.1" height="15.0" fill="rgb(217,56,13)" rx="2" ry="2" /> | |
| <text x="41.98" y="703.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_unmarshal_DrawArraysInstanced (27,532,666 samples, 0.02%)</title><rect x="1001.3" y="661" width="0.2" height="15.0" fill="rgb(209,20,4)" rx="2" ry="2" /> | |
| <text x="1004.31" y="671.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_DrawArraysInstancedBaseInstance (81,306,333 samples, 0.05%)</title><rect x="824.3" y="613" width="0.5" height="15.0" fill="rgb(243,178,42)" rx="2" ry="2" /> | |
| <text x="827.28" y="623.5" ></text> | |
| </g> | |
| <g > | |
| <title>get_futex_key (21,286,208 samples, 0.01%)</title><rect x="972.8" y="469" width="0.1" height="15.0" fill="rgb(252,216,51)" rx="2" ry="2" /> | |
| <text x="975.81" y="479.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_update_texture_state (55,767,689 samples, 0.03%)</title><rect x="1060.8" y="629" width="0.4" height="15.0" fill="rgb(237,148,35)" rx="2" ry="2" /> | |
| <text x="1063.80" y="639.5" ></text> | |
| </g> | |
| <g > | |
| <title>dri3_find_back (223,619,588 samples, 0.12%)</title><rect x="507.3" y="757" width="1.5" height="15.0" fill="rgb(211,31,7)" rx="2" ry="2" /> | |
| <text x="510.32" y="767.5" ></text> | |
| </g> | |
| <g > | |
| <title>[redeclipse] (5,573,869,300 samples, 3.09%)</title><rect x="767.7" y="549" width="36.4" height="15.0" fill="rgb(253,222,53)" rx="2" ry="2" /> | |
| <text x="770.68" y="559.5" >[re..</text> | |
| </g> | |
| <g > | |
| <title>update_textures (38,458,986 samples, 0.02%)</title><rect x="1082.8" y="661" width="0.2" height="15.0" fill="rgb(232,125,29)" rx="2" ry="2" /> | |
| <text x="1085.79" y="671.5" ></text> | |
| </g> | |
| <g > | |
| <title>mdct_backward (52,264,919 samples, 0.03%)</title><rect x="24.2" y="677" width="0.3" height="15.0" fill="rgb(242,173,41)" rx="2" ry="2" /> | |
| <text x="27.19" y="687.5" ></text> | |
| </g> | |
| <g > | |
| <title>si_begin_new_gfx_cs (37,384,423 samples, 0.02%)</title><rect x="902.3" y="581" width="0.2" height="15.0" fill="rgb(234,134,32)" rx="2" ry="2" /> | |
| <text x="905.27" y="591.5" ></text> | |
| </g> | |
| <g > | |
| <title>tc_draw_single (17,404,411 samples, 0.01%)</title><rect x="1001.2" y="613" width="0.1" height="15.0" fill="rgb(222,79,19)" rx="2" ry="2" /> | |
| <text x="1004.19" y="623.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_unmarshal_BufferSubData (33,835,007 samples, 0.02%)</title><rect x="1078.8" y="709" width="0.3" height="15.0" fill="rgb(218,60,14)" rx="2" ry="2" /> | |
| <text x="1081.84" y="719.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_bufferobj_map_range (569,928,693 samples, 0.32%)</title><rect x="958.3" y="693" width="3.7" height="15.0" fill="rgb(206,7,1)" rx="2" ry="2" /> | |
| <text x="961.30" y="703.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_unmarshal_ActiveTexture (154,957,457 samples, 0.09%)</title><rect x="346.0" y="789" width="1.0" height="15.0" fill="rgb(207,12,3)" rx="2" ry="2" /> | |
| <text x="348.99" y="799.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_DrawArraysInstancedBaseInstance (202,569,832 samples, 0.11%)</title><rect x="1080.0" y="693" width="1.3" height="15.0" fill="rgb(243,178,42)" rx="2" ry="2" /> | |
| <text x="1082.97" y="703.5" ></text> | |
| </g> | |
| <g > | |
| <title>si_buffer_transfer_map (97,424,947 samples, 0.05%)</title><rect x="816.4" y="613" width="0.6" height="15.0" fill="rgb(237,151,36)" rx="2" ry="2" /> | |
| <text x="819.41" y="623.5" ></text> | |
| </g> | |
| <g > | |
| <title>__libc_calloc (18,059,521 samples, 0.01%)</title><rect x="1089.1" y="629" width="0.1" height="15.0" fill="rgb(205,4,0)" rx="2" ry="2" /> | |
| <text x="1092.07" y="639.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_update_texture_state (145,804,332 samples, 0.08%)</title><rect x="868.3" y="565" width="0.9" height="15.0" fill="rgb(237,148,35)" rx="2" ry="2" /> | |
| <text x="871.28" y="575.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_marshal_BindTexture (46,893,944 samples, 0.03%)</title><rect x="972.0" y="725" width="0.3" height="15.0" fill="rgb(214,44,10)" rx="2" ry="2" /> | |
| <text x="975.01" y="735.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_reference_texobj_ (80,437,919 samples, 0.04%)</title><rect x="985.8" y="645" width="0.6" height="15.0" fill="rgb(229,111,26)" rx="2" ry="2" /> | |
| <text x="988.83" y="655.5" ></text> | |
| </g> | |
| <g > | |
| <title>invoke_syscall (96,747,647 samples, 0.05%)</title><rect x="13.5" y="645" width="0.6" height="15.0" fill="rgb(209,18,4)" rx="2" ry="2" /> | |
| <text x="16.47" y="655.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_uniform (23,642,619 samples, 0.01%)</title><rect x="1138.2" y="661" width="0.1" height="15.0" fill="rgb(248,201,48)" rx="2" ry="2" /> | |
| <text x="1141.15" y="671.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_MapBufferRange (54,226,832 samples, 0.03%)</title><rect x="842.4" y="693" width="0.3" height="15.0" fill="rgb(238,156,37)" rx="2" ry="2" /> | |
| <text x="845.39" y="703.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_uniform_matrix (54,768,237 samples, 0.03%)</title><rect x="829.3" y="597" width="0.4" height="15.0" fill="rgb(215,47,11)" rx="2" ry="2" /> | |
| <text x="832.32" y="607.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_unmarshal_VertexAttribPointer_packed (238,638,703 samples, 0.13%)</title><rect x="952.2" y="661" width="1.6" height="15.0" fill="rgb(232,124,29)" rx="2" ry="2" /> | |
| <text x="955.24" y="671.5" ></text> | |
| </g> | |
| <g > | |
| <title>tc_call_draw_single (949,511,228 samples, 0.53%)</title><rect x="520.6" y="693" width="6.2" height="15.0" fill="rgb(247,193,46)" rx="2" ry="2" /> | |
| <text x="523.63" y="703.5" ></text> | |
| </g> | |
| <g > | |
| <title>tc_buffer_unmap (70,603,786 samples, 0.04%)</title><rect x="948.6" y="629" width="0.4" height="15.0" fill="rgb(231,119,28)" rx="2" ry="2" /> | |
| <text x="951.55" y="639.5" ></text> | |
| </g> | |
| <g > | |
| <title>bind_texture_object (57,021,268 samples, 0.03%)</title><rect x="823.7" y="613" width="0.4" height="15.0" fill="rgb(221,73,17)" rx="2" ry="2" /> | |
| <text x="826.74" y="623.5" ></text> | |
| </g> | |
| <g > | |
| <title>gfx6_clear (89,573,499 samples, 0.05%)</title><rect x="79.7" y="773" width="0.6" height="15.0" fill="rgb(248,201,48)" rx="2" ry="2" /> | |
| <text x="82.73" y="783.5" ></text> | |
| </g> | |
| <g > | |
| <title>__get_file_rcu (27,496,789 samples, 0.02%)</title><rect x="266.3" y="629" width="0.2" height="15.0" fill="rgb(222,80,19)" rx="2" ry="2" /> | |
| <text x="269.30" y="639.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_update_texture_state (18,942,156 samples, 0.01%)</title><rect x="810.8" y="533" width="0.1" height="15.0" fill="rgb(237,148,35)" rx="2" ry="2" /> | |
| <text x="813.76" y="543.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_validated_drawrangeelements (44,475,441 samples, 0.02%)</title><rect x="826.3" y="597" width="0.3" height="15.0" fill="rgb(230,115,27)" rx="2" ry="2" /> | |
| <text x="829.34" y="607.5" ></text> | |
| </g> | |
| <g > | |
| <title>si_set_mutable_tex_desc_fields (82,206,741 samples, 0.05%)</title><rect x="528.7" y="613" width="0.6" height="15.0" fill="rgb(226,97,23)" rx="2" ry="2" /> | |
| <text x="531.75" y="623.5" ></text> | |
| </g> | |
| <g > | |
| <title>unix_stream_read_generic (85,698,227 samples, 0.05%)</title><rect x="1107.4" y="277" width="0.5" height="15.0" fill="rgb(244,180,43)" rx="2" ry="2" /> | |
| <text x="1110.37" y="287.5" ></text> | |
| </g> | |
| <g > | |
| <title>invoke_syscall (89,192,789 samples, 0.05%)</title><rect x="1173.7" y="597" width="0.6" height="15.0" fill="rgb(209,18,4)" rx="2" ry="2" /> | |
| <text x="1176.72" y="607.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_unmarshal_Uniform1fv (23,199,268 samples, 0.01%)</title><rect x="1137.5" y="709" width="0.1" height="15.0" fill="rgb(231,122,29)" rx="2" ry="2" /> | |
| <text x="1140.46" y="719.5" ></text> | |
| </g> | |
| <g > | |
| <title>el0t_64_sync_handler (182,192,566 samples, 0.10%)</title><rect x="252.6" y="773" width="1.1" height="15.0" fill="rgb(211,32,7)" rx="2" ry="2" /> | |
| <text x="255.56" y="783.5" ></text> | |
| </g> | |
| <g > | |
| <title>__libc_calloc (20,092,894 samples, 0.01%)</title><rect x="1089.1" y="645" width="0.1" height="15.0" fill="rgb(205,4,0)" rx="2" ry="2" /> | |
| <text x="1092.05" y="655.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_update_framebuffer (58,570,896 samples, 0.03%)</title><rect x="1110.0" y="645" width="0.4" height="15.0" fill="rgb(218,62,14)" rx="2" ry="2" /> | |
| <text x="1112.97" y="655.5" ></text> | |
| </g> | |
| <g > | |
| <title>invoke_syscall (80,966,466 samples, 0.04%)</title><rect x="979.8" y="565" width="0.5" height="15.0" fill="rgb(209,18,4)" rx="2" ry="2" /> | |
| <text x="982.82" y="575.5" ></text> | |
| </g> | |
| <g > | |
| <title>el0t_64_sync (148,777,241 samples, 0.08%)</title><rect x="458.9" y="677" width="0.9" height="15.0" fill="rgb(217,56,13)" rx="2" ry="2" /> | |
| <text x="461.86" y="687.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_unmarshal_DrawElementsPacked (1,508,950,973 samples, 0.84%)</title><rect x="847.2" y="645" width="9.9" height="15.0" fill="rgb(225,92,22)" rx="2" ry="2" /> | |
| <text x="850.24" y="655.5" ></text> | |
| </g> | |
| <g > | |
| <title>drmIoctl (264,162,679 samples, 0.15%)</title><rect x="188.3" y="709" width="1.7" height="15.0" fill="rgb(251,215,51)" rx="2" ry="2" /> | |
| <text x="191.32" y="719.5" ></text> | |
| </g> | |
| <g > | |
| <title>__memcpy_generic (25,036,956 samples, 0.01%)</title><rect x="789.4" y="213" width="0.1" height="15.0" fill="rgb(231,124,29)" rx="2" ry="2" /> | |
| <text x="792.37" y="223.5" ></text> | |
| </g> | |
| <g > | |
| <title>schedule (49,540,958 samples, 0.03%)</title><rect x="29.9" y="581" width="0.3" height="15.0" fill="rgb(254,229,54)" rx="2" ry="2" /> | |
| <text x="32.88" y="591.5" ></text> | |
| </g> | |
| <g > | |
| <title>_glapi_set_dispatch (15,392,390 samples, 0.01%)</title><rect x="1096.8" y="709" width="0.1" height="15.0" fill="rgb(208,15,3)" rx="2" ry="2" /> | |
| <text x="1099.76" y="719.5" ></text> | |
| </g> | |
| <g > | |
| <title>cso_set_vertex_elements_direct (19,595,758 samples, 0.01%)</title><rect x="1135.0" y="597" width="0.1" height="15.0" fill="rgb(222,80,19)" rx="2" ry="2" /> | |
| <text x="1137.97" y="607.5" ></text> | |
| </g> | |
| <g > | |
| <title>strspn (27,980,451 samples, 0.02%)</title><rect x="790.1" y="213" width="0.2" height="15.0" fill="rgb(207,13,3)" rx="2" ry="2" /> | |
| <text x="793.14" y="223.5" ></text> | |
| </g> | |
| <g > | |
| <title>valid_texture_object.isra.0 (50,015,696 samples, 0.03%)</title><rect x="368.0" y="741" width="0.3" height="15.0" fill="rgb(239,158,38)" rx="2" ry="2" /> | |
| <text x="370.99" y="751.5" ></text> | |
| </g> | |
| <g > | |
| <title>_raw_spin_unlock_irqrestore (20,239,381 samples, 0.01%)</title><rect x="15.3" y="549" width="0.1" height="15.0" fill="rgb(228,106,25)" rx="2" ry="2" /> | |
| <text x="18.26" y="559.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_lookup_or_create_texture (472,682,855 samples, 0.26%)</title><rect x="360.5" y="757" width="3.1" height="15.0" fill="rgb(235,140,33)" rx="2" ry="2" /> | |
| <text x="363.49" y="767.5" ></text> | |
| </g> | |
| <g > | |
| <title>futex_wake (42,338,704 samples, 0.02%)</title><rect x="901.8" y="373" width="0.3" height="15.0" fill="rgb(219,65,15)" rx="2" ry="2" /> | |
| <text x="904.81" y="383.5" ></text> | |
| </g> | |
| <g > | |
| <title>get_user_pages_fast (71,422,767 samples, 0.04%)</title><rect x="342.7" y="629" width="0.5" height="15.0" fill="rgb(229,111,26)" rx="2" ry="2" /> | |
| <text x="345.74" y="639.5" ></text> | |
| </g> | |
| <g > | |
| <title>pthread_cond_signal@@GLIBC_2.17 (35,693,700 samples, 0.02%)</title><rect x="877.4" y="533" width="0.3" height="15.0" fill="rgb(232,126,30)" rx="2" ry="2" /> | |
| <text x="880.44" y="543.5" ></text> | |
| </g> | |
| <g > | |
| <title>amdgpu_bo_fence_wait (24,431,183 samples, 0.01%)</title><rect x="1034.1" y="613" width="0.1" height="15.0" fill="rgb(214,41,9)" rx="2" ry="2" /> | |
| <text x="1037.07" y="623.5" ></text> | |
| </g> | |
| <g > | |
| <title>schedule_timeout (38,573,871 samples, 0.02%)</title><rect x="1162.5" y="373" width="0.3" height="15.0" fill="rgb(234,137,32)" rx="2" ry="2" /> | |
| <text x="1165.50" y="383.5" ></text> | |
| </g> | |
| <g > | |
| <title>unix_write_space (20,263,170 samples, 0.01%)</title><rect x="1107.6" y="197" width="0.2" height="15.0" fill="rgb(246,188,45)" rx="2" ry="2" /> | |
| <text x="1110.64" y="207.5" ></text> | |
| </g> | |
| <g > | |
| <title>si_alloc_resource (78,787,738 samples, 0.04%)</title><rect x="515.3" y="661" width="0.5" height="15.0" fill="rgb(253,222,53)" rx="2" ry="2" /> | |
| <text x="518.30" y="671.5" ></text> | |
| </g> | |
| <g > | |
| <title>_glapi_get_current (16,946,704 samples, 0.01%)</title><rect x="759.2" y="613" width="0.1" height="15.0" fill="rgb(233,130,31)" rx="2" ry="2" /> | |
| <text x="762.16" y="623.5" ></text> | |
| </g> | |
| <g > | |
| <title>futex_wait_queue (40,051,241 samples, 0.02%)</title><rect x="338.7" y="597" width="0.2" height="15.0" fill="rgb(225,92,22)" rx="2" ry="2" /> | |
| <text x="341.66" y="607.5" ></text> | |
| </g> | |
| <g > | |
| <title>el0t_64_sync (146,601,652 samples, 0.08%)</title><rect x="191.0" y="677" width="0.9" height="15.0" fill="rgb(217,56,13)" rx="2" ry="2" /> | |
| <text x="193.98" y="687.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_update_valid_to_render_state (37,679,347 samples, 0.02%)</title><rect x="1025.2" y="645" width="0.3" height="15.0" fill="rgb(219,66,15)" rx="2" ry="2" /> | |
| <text x="1028.24" y="655.5" ></text> | |
| </g> | |
| <g > | |
| <title>__arm64_sys_futex (125,017,141 samples, 0.07%)</title><rect x="191.1" y="581" width="0.8" height="15.0" fill="rgb(247,196,47)" rx="2" ry="2" /> | |
| <text x="194.05" y="591.5" ></text> | |
| </g> | |
| <g > | |
| <title>el0_svc (18,434,936 samples, 0.01%)</title><rect x="1068.6" y="613" width="0.1" height="15.0" fill="rgb(244,183,43)" rx="2" ry="2" /> | |
| <text x="1071.58" y="623.5" ></text> | |
| </g> | |
| <g > | |
| <title>el0_svc (23,338,102 samples, 0.01%)</title><rect x="453.1" y="597" width="0.2" height="15.0" fill="rgb(244,183,43)" rx="2" ry="2" /> | |
| <text x="456.14" y="607.5" ></text> | |
| </g> | |
| <g > | |
| <title>st_invalidate_state (30,032,088 samples, 0.02%)</title><rect x="992.2" y="613" width="0.2" height="15.0" fill="rgb(245,184,44)" rx="2" ry="2" /> | |
| <text x="995.22" y="623.5" ></text> | |
| </g> | |
| <g > | |
| <title>__futex_lock_pi64 (47,351,609 samples, 0.03%)</title><rect x="10.7" y="773" width="0.3" height="15.0" fill="rgb(235,138,33)" rx="2" ry="2" /> | |
| <text x="13.67" y="783.5" ></text> | |
| </g> | |
| <g > | |
| <title>_raw_spin_unlock_irqrestore (29,675,931 samples, 0.02%)</title><rect x="11.7" y="437" width="0.2" height="15.0" fill="rgb(228,106,25)" rx="2" ry="2" /> | |
| <text x="14.72" y="447.5" ></text> | |
| </g> | |
| <g > | |
| <title>el0t_64_sync (38,984,265 samples, 0.02%)</title><rect x="1034.2" y="581" width="0.3" height="15.0" fill="rgb(217,56,13)" rx="2" ry="2" /> | |
| <text x="1037.23" y="591.5" ></text> | |
| </g> | |
| <g > | |
| <title>slab_zalloc (101,035,485 samples, 0.06%)</title><rect x="904.7" y="597" width="0.6" height="15.0" fill="rgb(232,128,30)" rx="2" ry="2" /> | |
| <text x="907.69" y="607.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_update_texture_state (230,847,201 samples, 0.13%)</title><rect x="848.1" y="581" width="1.5" height="15.0" fill="rgb(237,148,35)" rx="2" ry="2" /> | |
| <text x="851.05" y="591.5" ></text> | |
| </g> | |
| <g > | |
| <title>tc_invalidate_buffer (62,710,199 samples, 0.03%)</title><rect x="927.0" y="613" width="0.4" height="15.0" fill="rgb(223,85,20)" rx="2" ry="2" /> | |
| <text x="930.03" y="623.5" ></text> | |
| </g> | |
| <g > | |
| <title>el0t_64_sync (28,016,369 samples, 0.02%)</title><rect x="12.9" y="677" width="0.2" height="15.0" fill="rgb(217,56,13)" rx="2" ry="2" /> | |
| <text x="15.95" y="687.5" ></text> | |
| </g> | |
| <g > | |
| <title>invoke_syscall (121,714,079 samples, 0.07%)</title><rect x="895.7" y="421" width="0.8" height="15.0" fill="rgb(209,18,4)" rx="2" ry="2" /> | |
| <text x="898.72" y="431.5" ></text> | |
| </g> | |
| <g > | |
| <title>os_time_get_absolute_timeout (17,724,731 samples, 0.01%)</title><rect x="332.3" y="789" width="0.1" height="15.0" fill="rgb(216,51,12)" rx="2" ry="2" /> | |
| <text x="335.31" y="799.5" ></text> | |
| </g> | |
| <g > | |
| <title>__aarch64_ldadd4_acq_rel (67,173,489 samples, 0.04%)</title><rect x="519.2" y="661" width="0.4" height="15.0" fill="rgb(228,108,25)" rx="2" ry="2" /> | |
| <text x="522.15" y="671.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_DepthRange (15,317,550 samples, 0.01%)</title><rect x="847.1" y="613" width="0.1" height="15.0" fill="rgb(238,156,37)" rx="2" ry="2" /> | |
| <text x="850.12" y="623.5" ></text> | |
| </g> | |
| <g > | |
| <title>si_bind_blend_state (42,000,055 samples, 0.02%)</title><rect x="50.3" y="773" width="0.3" height="15.0" fill="rgb(222,82,19)" rx="2" ry="2" /> | |
| <text x="53.32" y="783.5" ></text> | |
| </g> | |
| <g > | |
| <title>__sys_recvmsg (31,169,428 samples, 0.02%)</title><rect x="374.6" y="453" width="0.2" height="15.0" fill="rgb(252,216,51)" rx="2" ry="2" /> | |
| <text x="377.60" y="463.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_unmarshal_DrawElementsPacked (334,628,143 samples, 0.19%)</title><rect x="812.1" y="613" width="2.2" height="15.0" fill="rgb(225,92,22)" rx="2" ry="2" /> | |
| <text x="815.07" y="623.5" ></text> | |
| </g> | |
| <g > | |
| <title>update_framebuffer (78,295,367 samples, 0.04%)</title><rect x="379.5" y="725" width="0.5" height="15.0" fill="rgb(222,78,18)" rx="2" ry="2" /> | |
| <text x="382.50" y="735.5" ></text> | |
| </g> | |
| <g > | |
| <title>drm_exec_unlock_all (95,790,757 samples, 0.05%)</title><rect x="286.3" y="549" width="0.6" height="15.0" fill="rgb(232,126,30)" rx="2" ry="2" /> | |
| <text x="289.32" y="559.5" ></text> | |
| </g> | |
| <g > | |
| <title>si_buffer_transfer_map (35,314,153 samples, 0.02%)</title><rect x="905.9" y="629" width="0.3" height="15.0" fill="rgb(237,151,36)" rx="2" ry="2" /> | |
| <text x="908.92" y="639.5" ></text> | |
| </g> | |
| <g > | |
| <title>el0_svc_common.constprop.0 (29,550,363 samples, 0.02%)</title><rect x="17.1" y="677" width="0.2" height="15.0" fill="rgb(224,89,21)" rx="2" ry="2" /> | |
| <text x="20.14" y="687.5" ></text> | |
| </g> | |
| <g > | |
| <title>u_upload_alloc (41,349,204 samples, 0.02%)</title><rect x="1125.6" y="613" width="0.3" height="15.0" fill="rgb(235,138,33)" rx="2" ry="2" /> | |
| <text x="1128.61" y="623.5" ></text> | |
| </g> | |
| <g > | |
| <title>[redeclipse] (3,969,579,330 samples, 2.20%)</title><rect x="770.3" y="357" width="26.0" height="15.0" fill="rgb(253,222,53)" rx="2" ry="2" /> | |
| <text x="773.33" y="367.5" >[..</text> | |
| </g> | |
| <g > | |
| <title>cso_set_vertex_elements (20,691,362 samples, 0.01%)</title><rect x="828.6" y="549" width="0.2" height="15.0" fill="rgb(238,152,36)" rx="2" ry="2" /> | |
| <text x="831.62" y="559.5" ></text> | |
| </g> | |
| <g > | |
| <title>drmSyncobjWait (358,948,395 samples, 0.20%)</title><rect x="1161.1" y="613" width="2.3" height="15.0" fill="rgb(207,13,3)" rx="2" ry="2" /> | |
| <text x="1164.09" y="623.5" ></text> | |
| </g> | |
| <g > | |
| <title>__aarch64_ldadd4_acq_rel (675,254,885 samples, 0.37%)</title><rect x="67.8" y="773" width="4.4" height="15.0" fill="rgb(228,108,25)" rx="2" ry="2" /> | |
| <text x="70.80" y="783.5" ></text> | |
| </g> | |
| <g > | |
| <title>syscall_trace_exit (22,222,972 samples, 0.01%)</title><rect x="36.8" y="693" width="0.2" height="15.0" fill="rgb(247,196,46)" rx="2" ry="2" /> | |
| <text x="39.83" y="703.5" ></text> | |
| </g> | |
| <g > | |
| <title>__audit_syscall_exit (16,588,599 samples, 0.01%)</title><rect x="980.4" y="549" width="0.1" height="15.0" fill="rgb(218,62,14)" rx="2" ry="2" /> | |
| <text x="983.36" y="559.5" ></text> | |
| </g> | |
| <g > | |
| <title>st_update_depth_stencil_alpha (25,077,900 samples, 0.01%)</title><rect x="994.4" y="629" width="0.1" height="15.0" fill="rgb(252,219,52)" rx="2" ry="2" /> | |
| <text x="997.38" y="639.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_unmarshal_Uniform4fv (1,437,757,564 samples, 0.80%)</title><rect x="465.1" y="805" width="9.4" height="15.0" fill="rgb(212,33,8)" rx="2" ry="2" /> | |
| <text x="468.15" y="815.5" ></text> | |
| </g> | |
| <g > | |
| <title>cnd_signal (178,092,845 samples, 0.10%)</title><rect x="190.8" y="725" width="1.1" height="15.0" fill="rgb(232,125,30)" rx="2" ry="2" /> | |
| <text x="193.77" y="735.5" ></text> | |
| </g> | |
| <g > | |
| <title>do_notify_resume (50,098,629 samples, 0.03%)</title><rect x="980.5" y="597" width="0.3" height="15.0" fill="rgb(233,129,30)" rx="2" ry="2" /> | |
| <text x="983.48" y="607.5" ></text> | |
| </g> | |
| <g > | |
| <title>el0t_64_sync (33,395,420 samples, 0.02%)</title><rect x="447.9" y="613" width="0.2" height="15.0" fill="rgb(217,56,13)" rx="2" ry="2" /> | |
| <text x="450.87" y="623.5" ></text> | |
| </g> | |
| <g > | |
| <title>___sys_recvmsg (24,008,647 samples, 0.01%)</title><rect x="508.9" y="565" width="0.1" height="15.0" fill="rgb(238,153,36)" rx="2" ry="2" /> | |
| <text x="511.89" y="575.5" ></text> | |
| </g> | |
| <g > | |
| <title>do_el0_svc (126,902,510 samples, 0.07%)</title><rect x="895.7" y="453" width="0.8" height="15.0" fill="rgb(218,60,14)" rx="2" ry="2" /> | |
| <text x="898.72" y="463.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_update_texture_state (60,925,351 samples, 0.03%)</title><rect x="827.0" y="565" width="0.4" height="15.0" fill="rgb(237,148,35)" rx="2" ry="2" /> | |
| <text x="829.99" y="575.5" ></text> | |
| </g> | |
| <g > | |
| <title>dma_fence_release (57,374,963 samples, 0.03%)</title><rect x="308.2" y="549" width="0.4" height="15.0" fill="rgb(234,136,32)" rx="2" ry="2" /> | |
| <text x="311.23" y="559.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_unmarshal_DrawArraysInstanced (30,001,017 samples, 0.02%)</title><rect x="1172.3" y="725" width="0.2" height="15.0" fill="rgb(209,20,4)" rx="2" ry="2" /> | |
| <text x="1175.26" y="735.5" ></text> | |
| </g> | |
| <g > | |
| <title>__aarch64_ldadd4_acq_rel (62,226,877 samples, 0.03%)</title><rect x="404.2" y="709" width="0.4" height="15.0" fill="rgb(228,108,25)" rx="2" ry="2" /> | |
| <text x="407.16" y="719.5" ></text> | |
| </g> | |
| <g > | |
| <title>el0_svc (17,012,329 samples, 0.01%)</title><rect x="805.9" y="501" width="0.1" height="15.0" fill="rgb(244,183,43)" rx="2" ry="2" /> | |
| <text x="808.88" y="511.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_UniformMatrix4fv (42,801,983 samples, 0.02%)</title><rect x="879.3" y="629" width="0.3" height="15.0" fill="rgb(235,139,33)" rx="2" ry="2" /> | |
| <text x="882.31" y="639.5" ></text> | |
| </g> | |
| <g > | |
| <title>syscall (430,543,276 samples, 0.24%)</title><rect x="341.9" y="805" width="2.8" height="15.0" fill="rgb(234,136,32)" rx="2" ry="2" /> | |
| <text x="344.92" y="815.5" ></text> | |
| </g> | |
| <g > | |
| <title>tc_buffer_map (123,212,270 samples, 0.07%)</title><rect x="816.4" y="629" width="0.8" height="15.0" fill="rgb(247,195,46)" rx="2" ry="2" /> | |
| <text x="819.38" y="639.5" ></text> | |
| </g> | |
| <g > | |
| <title>__printf_buffer (98,378,035 samples, 0.05%)</title><rect x="916.6" y="661" width="0.6" height="15.0" fill="rgb(219,68,16)" rx="2" ry="2" /> | |
| <text x="919.61" y="671.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_DrawElementsBaseVertex (536,311,118 samples, 0.30%)</title><rect x="1060.5" y="677" width="3.5" height="15.0" fill="rgb(214,41,10)" rx="2" ry="2" /> | |
| <text x="1063.49" y="687.5" ></text> | |
| </g> | |
| <g > | |
| <title>si_set_framebuffer_state (515,824,478 samples, 0.29%)</title><rect x="198.4" y="789" width="3.4" height="15.0" fill="rgb(211,31,7)" rx="2" ry="2" /> | |
| <text x="201.41" y="799.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_glthread_finish (16,371,254 samples, 0.01%)</title><rect x="792.1" y="245" width="0.1" height="15.0" fill="rgb(209,22,5)" rx="2" ry="2" /> | |
| <text x="795.08" y="255.5" ></text> | |
| </g> | |
| <g > | |
| <title>__aarch64_ldadd4_acq_rel (79,851,276 samples, 0.04%)</title><rect x="861.9" y="645" width="0.5" height="15.0" fill="rgb(228,108,25)" rx="2" ry="2" /> | |
| <text x="864.91" y="655.5" ></text> | |
| </g> | |
| <g > | |
| <title>st_prepare_draw (147,618,641 samples, 0.08%)</title><rect x="865.6" y="613" width="1.0" height="15.0" fill="rgb(214,45,10)" rx="2" ry="2" /> | |
| <text x="868.60" y="623.5" ></text> | |
| </g> | |
| <g > | |
| <title>rseq_update_cpu_node_id (21,631,504 samples, 0.01%)</title><rect x="973.1" y="565" width="0.2" height="15.0" fill="rgb(224,88,21)" rx="2" ry="2" /> | |
| <text x="976.14" y="575.5" ></text> | |
| </g> | |
| <g > | |
| <title>cso_set_vertex_elements (114,375,414 samples, 0.06%)</title><rect x="1134.5" y="629" width="0.7" height="15.0" fill="rgb(238,152,36)" rx="2" ry="2" /> | |
| <text x="1137.49" y="639.5" ></text> | |
| </g> | |
| <g > | |
| <title>__futex_wait (62,563,057 samples, 0.03%)</title><rect x="1095.4" y="533" width="0.4" height="15.0" fill="rgb(207,12,3)" rx="2" ry="2" /> | |
| <text x="1098.38" y="543.5" ></text> | |
| </g> | |
| <g > | |
| <title>do_el0_svc (70,368,550 samples, 0.04%)</title><rect x="35.0" y="741" width="0.5" height="15.0" fill="rgb(218,60,14)" rx="2" ry="2" /> | |
| <text x="38.04" y="751.5" ></text> | |
| </g> | |
| <g > | |
| <title>tc_call_draw_single (20,434,360 samples, 0.01%)</title><rect x="888.8" y="581" width="0.1" height="15.0" fill="rgb(247,193,46)" rx="2" ry="2" /> | |
| <text x="891.77" y="591.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_uniform (43,424,491 samples, 0.02%)</title><rect x="1089.9" y="677" width="0.3" height="15.0" fill="rgb(248,201,48)" rx="2" ry="2" /> | |
| <text x="1092.94" y="687.5" ></text> | |
| </g> | |
| <g > | |
| <title>[libSDL2_mixer-2.0.so.0.800.0] (873,429,568 samples, 0.48%)</title><rect x="21.9" y="773" width="5.7" height="15.0" fill="rgb(244,183,43)" rx="2" ry="2" /> | |
| <text x="24.85" y="783.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_validated_drawrangeelements (258,895,368 samples, 0.14%)</title><rect x="827.4" y="597" width="1.7" height="15.0" fill="rgb(230,115,27)" rx="2" ry="2" /> | |
| <text x="830.41" y="607.5" ></text> | |
| </g> | |
| <g > | |
| <title>st_invalidate_state (34,270,803 samples, 0.02%)</title><rect x="934.0" y="597" width="0.2" height="15.0" fill="rgb(245,184,44)" rx="2" ry="2" /> | |
| <text x="937.01" y="607.5" ></text> | |
| </g> | |
| <g > | |
| <title>st_update_framebuffer_state (23,182,968 samples, 0.01%)</title><rect x="1111.7" y="661" width="0.2" height="15.0" fill="rgb(231,123,29)" rx="2" ry="2" /> | |
| <text x="1114.71" y="671.5" ></text> | |
| </g> | |
| <g > | |
| <title>update_textures (331,301,943 samples, 0.18%)</title><rect x="1012.9" y="613" width="2.2" height="15.0" fill="rgb(232,125,29)" rx="2" ry="2" /> | |
| <text x="1015.89" y="623.5" ></text> | |
| </g> | |
| <g > | |
| <title>tc_add_shader_bindings_to_buffer_list (21,104,413 samples, 0.01%)</title><rect x="455.5" y="725" width="0.2" height="15.0" fill="rgb(252,218,52)" rx="2" ry="2" /> | |
| <text x="458.52" y="735.5" ></text> | |
| </g> | |
| <g > | |
| <title>vbo_exec_FlushVertices (81,596,986 samples, 0.05%)</title><rect x="877.7" y="613" width="0.5" height="15.0" fill="rgb(226,100,24)" rx="2" ry="2" /> | |
| <text x="880.69" y="623.5" ></text> | |
| </g> | |
| <g > | |
| <title>si_query_buffer_alloc (40,743,284 samples, 0.02%)</title><rect x="49.5" y="741" width="0.3" height="15.0" fill="rgb(220,73,17)" rx="2" ry="2" /> | |
| <text x="52.54" y="751.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_lookup_shader_program_err_glthread (146,337,494 samples, 0.08%)</title><rect x="482.2" y="757" width="1.0" height="15.0" fill="rgb(246,190,45)" rx="2" ry="2" /> | |
| <text x="485.23" y="767.5" ></text> | |
| </g> | |
| <g > | |
| <title>el0_svc_common.constprop.0 (18,434,936 samples, 0.01%)</title><rect x="1068.6" y="581" width="0.1" height="15.0" fill="rgb(224,89,21)" rx="2" ry="2" /> | |
| <text x="1071.58" y="591.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_update_state_locked (96,893,557 samples, 0.05%)</title><rect x="931.9" y="597" width="0.6" height="15.0" fill="rgb(214,43,10)" rx="2" ry="2" /> | |
| <text x="934.87" y="607.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_BufferSubData (26,453,406 samples, 0.01%)</title><rect x="372.7" y="789" width="0.2" height="15.0" fill="rgb(254,227,54)" rx="2" ry="2" /> | |
| <text x="375.73" y="799.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_uniform (115,647,503 samples, 0.06%)</title><rect x="1138.5" y="693" width="0.8" height="15.0" fill="rgb(248,201,48)" rx="2" ry="2" /> | |
| <text x="1141.53" y="703.5" ></text> | |
| </g> | |
| <g > | |
| <title>pthread_cond_signal@@GLIBC_2.17 (72,327,025 samples, 0.04%)</title><rect x="901.7" y="517" width="0.5" height="15.0" fill="rgb(232,126,30)" rx="2" ry="2" /> | |
| <text x="904.70" y="527.5" ></text> | |
| </g> | |
| <g > | |
| <title>cso_set_rasterizer (17,866,906 samples, 0.01%)</title><rect x="850.2" y="565" width="0.1" height="15.0" fill="rgb(242,172,41)" rx="2" ry="2" /> | |
| <text x="853.22" y="575.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_VertexAttribPointer (86,039,295 samples, 0.05%)</title><rect x="1092.9" y="693" width="0.6" height="15.0" fill="rgb(211,29,7)" rx="2" ry="2" /> | |
| <text x="1095.94" y="703.5" ></text> | |
| </g> | |
| <g > | |
| <title>vbo_exec_FlushVertices (24,836,106 samples, 0.01%)</title><rect x="865.0" y="613" width="0.1" height="15.0" fill="rgb(226,100,24)" rx="2" ry="2" /> | |
| <text x="867.96" y="623.5" ></text> | |
| </g> | |
| <g > | |
| <title>drm_sched_entity_error (24,164,101 samples, 0.01%)</title><rect x="305.5" y="533" width="0.1" height="15.0" fill="rgb(232,127,30)" rx="2" ry="2" /> | |
| <text x="308.47" y="543.5" ></text> | |
| </g> | |
| <g > | |
| <title>do_notify_resume (209,821,886 samples, 0.12%)</title><rect x="339.7" y="709" width="1.4" height="15.0" fill="rgb(233,129,30)" rx="2" ry="2" /> | |
| <text x="342.69" y="719.5" ></text> | |
| </g> | |
| <g > | |
| <title>[libGLdispatch.so.0.0.0] (78,968,397 samples, 0.04%)</title><rect x="750.1" y="661" width="0.5" height="15.0" fill="rgb(209,20,4)" rx="2" ry="2" /> | |
| <text x="753.07" y="671.5" ></text> | |
| </g> | |
| <g > | |
| <title>tc_call_set_vertex_buffers (1,648,453,675 samples, 0.91%)</title><rect x="237.6" y="805" width="10.8" height="15.0" fill="rgb(247,194,46)" rx="2" ry="2" /> | |
| <text x="240.64" y="815.5" ></text> | |
| </g> | |
| <g > | |
| <title>__schedule (30,462,132 samples, 0.02%)</title><rect x="1034.3" y="437" width="0.2" height="15.0" fill="rgb(227,103,24)" rx="2" ry="2" /> | |
| <text x="1037.28" y="447.5" ></text> | |
| </g> | |
| <g > | |
| <title>shared_dispatch_stub_307 (29,243,521 samples, 0.02%)</title><rect x="1040.5" y="725" width="0.2" height="15.0" fill="rgb(242,171,41)" rx="2" ry="2" /> | |
| <text x="1043.55" y="735.5" ></text> | |
| </g> | |
| <g > | |
| <title>futex_wake (432,945,798 samples, 0.24%)</title><rect x="341.9" y="821" width="2.8" height="15.0" fill="rgb(219,65,15)" rx="2" ry="2" /> | |
| <text x="344.91" y="831.5" ></text> | |
| </g> | |
| <g > | |
| <title>update_textures (16,242,330 samples, 0.01%)</title><rect x="826.5" y="565" width="0.1" height="15.0" fill="rgb(232,125,29)" rx="2" ry="2" /> | |
| <text x="829.47" y="575.5" ></text> | |
| </g> | |
| <g > | |
| <title>si_pm4_emit_shader (39,805,144 samples, 0.02%)</title><rect x="523.6" y="645" width="0.2" height="15.0" fill="rgb(227,102,24)" rx="2" ry="2" /> | |
| <text x="526.58" y="655.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_draw_arrays.part.0 (206,107,736 samples, 0.11%)</title><rect x="824.8" y="613" width="1.4" height="15.0" fill="rgb(227,104,25)" rx="2" ry="2" /> | |
| <text x="827.81" y="623.5" ></text> | |
| </g> | |
| <g > | |
| <title>unix_stream_sendmsg (200,087,817 samples, 0.11%)</title><rect x="541.2" y="469" width="1.3" height="15.0" fill="rgb(240,161,38)" rx="2" ry="2" /> | |
| <text x="544.20" y="479.5" ></text> | |
| </g> | |
| <g > | |
| <title>el0t_64_sync_handler (33,217,051 samples, 0.02%)</title><rect x="374.6" y="549" width="0.2" height="15.0" fill="rgb(211,32,7)" rx="2" ry="2" /> | |
| <text x="377.60" y="559.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_update_texture_state (171,493,141 samples, 0.09%)</title><rect x="1003.4" y="613" width="1.1" height="15.0" fill="rgb(237,148,35)" rx="2" ry="2" /> | |
| <text x="1006.39" y="623.5" ></text> | |
| </g> | |
| <g > | |
| <title>st_update_single_texture (21,667,899 samples, 0.01%)</title><rect x="1128.2" y="597" width="0.1" height="15.0" fill="rgb(208,15,3)" rx="2" ry="2" /> | |
| <text x="1131.18" y="607.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_lookup_shader_program_err_glthread (19,424,216 samples, 0.01%)</title><rect x="858.7" y="597" width="0.1" height="15.0" fill="rgb(246,190,45)" rx="2" ry="2" /> | |
| <text x="861.69" y="607.5" ></text> | |
| </g> | |
| <g > | |
| <title>si_fb_barrier_after_rendering (17,316,836 samples, 0.01%)</title><rect x="199.1" y="773" width="0.1" height="15.0" fill="rgb(233,131,31)" rx="2" ry="2" /> | |
| <text x="202.13" y="783.5" ></text> | |
| </g> | |
| <g > | |
| <title>el0_svc (127,320,407 samples, 0.07%)</title><rect x="1173.6" y="645" width="0.8" height="15.0" fill="rgb(244,183,43)" rx="2" ry="2" /> | |
| <text x="1176.57" y="655.5" ></text> | |
| </g> | |
| <g > | |
| <title>strcmp (583,611,006 samples, 0.32%)</title><rect x="907.6" y="693" width="3.8" height="15.0" fill="rgb(217,58,13)" rx="2" ry="2" /> | |
| <text x="910.61" y="703.5" ></text> | |
| </g> | |
| <g > | |
| <title>do_futex (30,059,340 samples, 0.02%)</title><rect x="884.6" y="453" width="0.2" height="15.0" fill="rgb(245,184,44)" rx="2" ry="2" /> | |
| <text x="887.62" y="463.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_uniform_matrix (94,105,990 samples, 0.05%)</title><rect x="1021.7" y="629" width="0.6" height="15.0" fill="rgb(215,47,11)" rx="2" ry="2" /> | |
| <text x="1024.71" y="639.5" ></text> | |
| </g> | |
| <g > | |
| <title>si_update_common_shader_state (134,979,781 samples, 0.07%)</title><rect x="54.4" y="757" width="0.9" height="15.0" fill="rgb(244,182,43)" rx="2" ry="2" /> | |
| <text x="57.44" y="767.5" ></text> | |
| </g> | |
| <g > | |
| <title>amdgpu_cs_add_buffer (72,990,734 samples, 0.04%)</title><rect x="209.9" y="741" width="0.5" height="15.0" fill="rgb(254,227,54)" rx="2" ry="2" /> | |
| <text x="212.92" y="751.5" ></text> | |
| </g> | |
| <g > | |
| <title>si_set_mutable_tex_desc_fields (1,102,783,227 samples, 0.61%)</title><rect x="217.4" y="741" width="7.2" height="15.0" fill="rgb(226,97,23)" rx="2" ry="2" /> | |
| <text x="220.39" y="751.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_update_state_locked (22,955,684 samples, 0.01%)</title><rect x="1080.9" y="645" width="0.2" height="15.0" fill="rgb(214,43,10)" rx="2" ry="2" /> | |
| <text x="1083.95" y="655.5" ></text> | |
| </g> | |
| <g > | |
| <title>si_emit_guardband (58,352,931 samples, 0.03%)</title><rect x="177.4" y="757" width="0.4" height="15.0" fill="rgb(234,134,32)" rx="2" ry="2" /> | |
| <text x="180.39" y="767.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_uniform (22,290,746 samples, 0.01%)</title><rect x="1064.6" y="645" width="0.2" height="15.0" fill="rgb(248,201,48)" rx="2" ry="2" /> | |
| <text x="1067.65" y="655.5" ></text> | |
| </g> | |
| <g > | |
| <title>el0t_64_sync (37,128,286 samples, 0.02%)</title><rect x="508.9" y="693" width="0.2" height="15.0" fill="rgb(217,56,13)" rx="2" ry="2" /> | |
| <text x="511.86" y="703.5" ></text> | |
| </g> | |
| <g > | |
| <title>el0t_64_sync_handler (32,087,987 samples, 0.02%)</title><rect x="877.5" y="485" width="0.2" height="15.0" fill="rgb(211,32,7)" rx="2" ry="2" /> | |
| <text x="880.46" y="495.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_update_texture_state (31,370,223 samples, 0.02%)</title><rect x="1152.9" y="645" width="0.2" height="15.0" fill="rgb(237,148,35)" rx="2" ry="2" /> | |
| <text x="1155.94" y="655.5" ></text> | |
| </g> | |
| <g > | |
| <title>[redeclipse] (65,834,210,039 samples, 36.46%)</title><rect x="615.8" y="741" width="430.2" height="15.0" fill="rgb(253,222,53)" rx="2" ry="2" /> | |
| <text x="618.77" y="751.5" >[redeclipse]</text> | |
| </g> | |
| <g > | |
| <title>_mesa_update_valid_to_render_state (74,770,406 samples, 0.04%)</title><rect x="483.2" y="773" width="0.5" height="15.0" fill="rgb(219,66,15)" rx="2" ry="2" /> | |
| <text x="486.18" y="783.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_unmarshal_UniformMatrix4fv (21,818,834 samples, 0.01%)</title><rect x="1154.9" y="709" width="0.2" height="15.0" fill="rgb(249,202,48)" rx="2" ry="2" /> | |
| <text x="1157.94" y="719.5" ></text> | |
| </g> | |
| <g > | |
| <title>tc_buffer_unmap (22,178,331 samples, 0.01%)</title><rect x="1155.2" y="661" width="0.2" height="15.0" fill="rgb(231,119,28)" rx="2" ry="2" /> | |
| <text x="1158.24" y="671.5" ></text> | |
| </g> | |
| <g > | |
| <title>st_upload_constants (1,630,040,257 samples, 0.90%)</title><rect x="408.8" y="741" width="10.7" height="15.0" fill="rgb(238,154,36)" rx="2" ry="2" /> | |
| <text x="411.81" y="751.5" ></text> | |
| </g> | |
| <g > | |
| <title>st_update_single_texture (16,460,232 samples, 0.01%)</title><rect x="825.6" y="549" width="0.1" height="15.0" fill="rgb(208,15,3)" rx="2" ry="2" /> | |
| <text x="828.58" y="559.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_UseProgram (493,340,377 samples, 0.27%)</title><rect x="1024.1" y="661" width="3.3" height="15.0" fill="rgb(212,36,8)" rx="2" ry="2" /> | |
| <text x="1027.15" y="671.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_unmarshal_ActiveTexture (211,448,711 samples, 0.12%)</title><rect x="345.6" y="805" width="1.4" height="15.0" fill="rgb(207,12,3)" rx="2" ry="2" /> | |
| <text x="348.62" y="815.5" ></text> | |
| </g> | |
| <g > | |
| <title>tc_call_bind_rasterizer_state (89,845,520 samples, 0.05%)</title><rect x="57.3" y="805" width="0.5" height="15.0" fill="rgb(220,71,17)" rx="2" ry="2" /> | |
| <text x="60.26" y="815.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_UniformMatrix4fv (35,478,487 samples, 0.02%)</title><rect x="1091.3" y="693" width="0.2" height="15.0" fill="rgb(235,139,33)" rx="2" ry="2" /> | |
| <text x="1094.27" y="703.5" ></text> | |
| </g> | |
| <g > | |
| <title>__GI___futex_abstimed_wait_cancelable64 (514,705,445 samples, 0.29%)</title><rect x="337.7" y="773" width="3.4" height="15.0" fill="rgb(215,48,11)" rx="2" ry="2" /> | |
| <text x="340.70" y="783.5" ></text> | |
| </g> | |
| <g > | |
| <title>__arm64_sys_futex (18,891,149 samples, 0.01%)</title><rect x="876.3" y="373" width="0.1" height="15.0" fill="rgb(247,196,47)" rx="2" ry="2" /> | |
| <text x="879.32" y="383.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_update_texture_state (49,745,179 samples, 0.03%)</title><rect x="824.4" y="565" width="0.3" height="15.0" fill="rgb(237,148,35)" rx="2" ry="2" /> | |
| <text x="827.39" y="575.5" ></text> | |
| </g> | |
| <g > | |
| <title>glthread_unmarshal_batch (47,301,023 samples, 0.03%)</title><rect x="794.4" y="277" width="0.3" height="15.0" fill="rgb(247,195,46)" rx="2" ry="2" /> | |
| <text x="797.36" y="287.5" ></text> | |
| </g> | |
| <g > | |
| <title>futex_wake (34,696,140 samples, 0.02%)</title><rect x="1177.9" y="565" width="0.2" height="15.0" fill="rgb(219,65,15)" rx="2" ry="2" /> | |
| <text x="1180.90" y="575.5" ></text> | |
| </g> | |
| <g > | |
| <title>rseq_update_cpu_node_id (177,830,542 samples, 0.10%)</title><rect x="32.2" y="677" width="1.1" height="15.0" fill="rgb(224,88,21)" rx="2" ry="2" /> | |
| <text x="35.16" y="687.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_UniformMatrix4fv (61,633,760 samples, 0.03%)</title><rect x="829.3" y="613" width="0.4" height="15.0" fill="rgb(235,139,33)" rx="2" ry="2" /> | |
| <text x="832.27" y="623.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_lookup_bufferobj.part.0 (27,101,764 samples, 0.02%)</title><rect x="1098.0" y="661" width="0.2" height="15.0" fill="rgb(223,84,20)" rx="2" ry="2" /> | |
| <text x="1101.03" y="671.5" ></text> | |
| </g> | |
| <g > | |
| <title>__sys_recvmsg (113,951,807 samples, 0.06%)</title><rect x="503.4" y="533" width="0.8" height="15.0" fill="rgb(252,216,51)" rx="2" ry="2" /> | |
| <text x="506.44" y="543.5" ></text> | |
| </g> | |
| <g > | |
| <title>st_get_texture_sampler_view_from_stobj (27,301,604 samples, 0.02%)</title><rect x="1059.7" y="613" width="0.2" height="15.0" fill="rgb(211,32,7)" rx="2" ry="2" /> | |
| <text x="1062.72" y="623.5" ></text> | |
| </g> | |
| <g > | |
| <title>bind_buffer_object (39,122,177 samples, 0.02%)</title><rect x="347.7" y="773" width="0.2" height="15.0" fill="rgb(246,190,45)" rx="2" ry="2" /> | |
| <text x="350.68" y="783.5" ></text> | |
| </g> | |
| <g > | |
| <title>__GI___ioctl (10,034,721,781 samples, 5.56%)</title><rect x="265.9" y="773" width="65.5" height="15.0" fill="rgb(232,128,30)" rx="2" ry="2" /> | |
| <text x="268.86" y="783.5" >__GI___..</text> | |
| </g> | |
| <g > | |
| <title>_mesa_unmarshal_UniformMatrix4fv (159,816,927 samples, 0.09%)</title><rect x="1141.9" y="709" width="1.1" height="15.0" fill="rgb(249,202,48)" rx="2" ry="2" /> | |
| <text x="1144.93" y="719.5" ></text> | |
| </g> | |
| <g > | |
| <title>do_el0_svc (24,537,597 samples, 0.01%)</title><rect x="418.8" y="581" width="0.2" height="15.0" fill="rgb(218,60,14)" rx="2" ry="2" /> | |
| <text x="421.82" y="591.5" ></text> | |
| </g> | |
| <g > | |
| <title>si_set_vertex_buffers (34,929,955 samples, 0.02%)</title><rect x="530.1" y="661" width="0.2" height="15.0" fill="rgb(240,161,38)" rx="2" ry="2" /> | |
| <text x="533.10" y="671.5" ></text> | |
| </g> | |
| <g > | |
| <title>el0_svc (164,835,939 samples, 0.09%)</title><rect x="895.7" y="469" width="1.1" height="15.0" fill="rgb(244,183,43)" rx="2" ry="2" /> | |
| <text x="898.68" y="479.5" ></text> | |
| </g> | |
| <g > | |
| <title>__futex_wait (56,305,810 samples, 0.03%)</title><rect x="530.8" y="517" width="0.3" height="15.0" fill="rgb(207,12,3)" rx="2" ry="2" /> | |
| <text x="533.78" y="527.5" ></text> | |
| </g> | |
| <g > | |
| <title>ttm_bo_put (157,293,127 samples, 0.09%)</title><rect x="285.1" y="533" width="1.0" height="15.0" fill="rgb(254,228,54)" rx="2" ry="2" /> | |
| <text x="288.09" y="543.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_validated_drawrangeelements (686,915,040 samples, 0.38%)</title><rect x="1084.2" y="677" width="4.5" height="15.0" fill="rgb(230,115,27)" rx="2" ry="2" /> | |
| <text x="1087.18" y="687.5" ></text> | |
| </g> | |
| <g > | |
| <title>el0_svc (53,926,767 samples, 0.03%)</title><rect x="11.0" y="725" width="0.4" height="15.0" fill="rgb(244,183,43)" rx="2" ry="2" /> | |
| <text x="14.01" y="735.5" ></text> | |
| </g> | |
| <g > | |
| <title>futex_wait_setup (25,413,513 samples, 0.01%)</title><rect x="531.0" y="501" width="0.1" height="15.0" fill="rgb(247,195,46)" rx="2" ry="2" /> | |
| <text x="533.98" y="511.5" ></text> | |
| </g> | |
| <g > | |
| <title>mtx_lock (18,669,292 samples, 0.01%)</title><rect x="190.6" y="725" width="0.1" height="15.0" fill="rgb(225,95,22)" rx="2" ry="2" /> | |
| <text x="193.62" y="735.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_reference_texobj_ (64,786,557 samples, 0.04%)</title><rect x="925.4" y="629" width="0.4" height="15.0" fill="rgb(229,111,26)" rx="2" ry="2" /> | |
| <text x="928.40" y="639.5" ></text> | |
| </g> | |
| <g > | |
| <title>[redeclipse] (4,675,935,110 samples, 2.59%)</title><rect x="768.8" y="453" width="30.5" height="15.0" fill="rgb(253,222,53)" rx="2" ry="2" /> | |
| <text x="771.79" y="463.5" >[r..</text> | |
| </g> | |
| <g > | |
| <title>st_upload_constants (32,059,699 samples, 0.02%)</title><rect x="1062.1" y="613" width="0.3" height="15.0" fill="rgb(238,154,36)" rx="2" ry="2" /> | |
| <text x="1065.14" y="623.5" ></text> | |
| </g> | |
| <g > | |
| <title>el0t_64_sync (165,653,578 samples, 0.09%)</title><rect x="13.4" y="725" width="1.0" height="15.0" fill="rgb(217,56,13)" rx="2" ry="2" /> | |
| <text x="16.36" y="735.5" ></text> | |
| </g> | |
| <g > | |
| <title>el0_svc (78,555,616 samples, 0.04%)</title><rect x="901.1" y="485" width="0.5" height="15.0" fill="rgb(244,183,43)" rx="2" ry="2" /> | |
| <text x="904.07" y="495.5" ></text> | |
| </g> | |
| <g > | |
| <title>map_buffer_range (266,240,353 samples, 0.15%)</title><rect x="832.4" y="677" width="1.7" height="15.0" fill="rgb(244,183,43)" rx="2" ry="2" /> | |
| <text x="835.35" y="687.5" ></text> | |
| </g> | |
| <g > | |
| <title>drm_ioctl_kernel (65,754,327 samples, 0.04%)</title><rect x="896.0" y="357" width="0.4" height="15.0" fill="rgb(226,101,24)" rx="2" ry="2" /> | |
| <text x="899.00" y="367.5" ></text> | |
| </g> | |
| <g > | |
| <title>tc_set_constant_buffer (15,398,902 samples, 0.01%)</title><rect x="995.6" y="597" width="0.1" height="15.0" fill="rgb(247,195,46)" rx="2" ry="2" /> | |
| <text x="998.62" y="607.5" ></text> | |
| </g> | |
| <g > | |
| <title>[libSDL2-2.0.so.0.3000.0] (115,450,614 samples, 0.06%)</title><rect x="504.9" y="773" width="0.8" height="15.0" fill="rgb(227,102,24)" rx="2" ry="2" /> | |
| <text x="507.95" y="783.5" ></text> | |
| </g> | |
| <g > | |
| <title>tc_invalidate_buffer (16,806,156 samples, 0.01%)</title><rect x="987.7" y="629" width="0.1" height="15.0" fill="rgb(223,85,20)" rx="2" ry="2" /> | |
| <text x="990.71" y="639.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_unmarshal_BufferData (52,260,956 samples, 0.03%)</title><rect x="1078.5" y="709" width="0.3" height="15.0" fill="rgb(243,175,41)" rx="2" ry="2" /> | |
| <text x="1081.50" y="719.5" ></text> | |
| </g> | |
| <g > | |
| <title>bind_texture_object (159,329,603 samples, 0.09%)</title><rect x="864.1" y="629" width="1.0" height="15.0" fill="rgb(221,73,17)" rx="2" ry="2" /> | |
| <text x="867.08" y="639.5" ></text> | |
| </g> | |
| <g > | |
| <title>amdgpu_cs_vm_handling (1,100,042,452 samples, 0.61%)</title><rect x="321.1" y="581" width="7.1" height="15.0" fill="rgb(245,185,44)" rx="2" ry="2" /> | |
| <text x="324.06" y="591.5" ></text> | |
| </g> | |
| <g > | |
| <title>el0_svc (62,692,808 samples, 0.03%)</title><rect x="884.6" y="533" width="0.4" height="15.0" fill="rgb(244,183,43)" rx="2" ry="2" /> | |
| <text x="887.59" y="543.5" ></text> | |
| </g> | |
| <g > | |
| <title>PulseHotplug (208,926,904 samples, 0.12%)</title><rect x="10.0" y="901" width="1.4" height="15.0" fill="rgb(224,87,20)" rx="2" ry="2" /> | |
| <text x="13.00" y="911.5" ></text> | |
| </g> | |
| <g > | |
| <title>do_futex (28,576,782 samples, 0.02%)</title><rect x="501.2" y="661" width="0.2" height="15.0" fill="rgb(245,184,44)" rx="2" ry="2" /> | |
| <text x="504.21" y="671.5" ></text> | |
| </g> | |
| <g > | |
| <title>[libSDL2-2.0.so.0.3000.0] (15,818,582 samples, 0.01%)</title><rect x="21.9" y="757" width="0.1" height="15.0" fill="rgb(227,102,24)" rx="2" ry="2" /> | |
| <text x="24.85" y="767.5" ></text> | |
| </g> | |
| <g > | |
| <title>gl_target_to_pipe (50,864,089 samples, 0.03%)</title><rect x="436.2" y="693" width="0.3" height="15.0" fill="rgb(235,141,33)" rx="2" ry="2" /> | |
| <text x="439.21" y="703.5" ></text> | |
| </g> | |
| <g > | |
| <title>__aarch64_cas4_sync (58,561,873 samples, 0.03%)</title><rect x="1055.9" y="693" width="0.4" height="15.0" fill="rgb(253,222,53)" rx="2" ry="2" /> | |
| <text x="1058.88" y="703.5" ></text> | |
| </g> | |
| <g > | |
| <title>__check_object_size.part.0 (23,396,410 samples, 0.01%)</title><rect x="541.5" y="421" width="0.2" height="15.0" fill="rgb(236,142,34)" rx="2" ry="2" /> | |
| <text x="544.51" y="431.5" ></text> | |
| </g> | |
| <g > | |
| <title>zap_pte_range (24,680,638 samples, 0.01%)</title><rect x="1189.6" y="613" width="0.2" height="15.0" fill="rgb(231,120,28)" rx="2" ry="2" /> | |
| <text x="1192.61" y="623.5" ></text> | |
| </g> | |
| <g > | |
| <title>st_get_sampler_views (16,370,946 samples, 0.01%)</title><rect x="941.9" y="565" width="0.1" height="15.0" fill="rgb(224,91,21)" rx="2" ry="2" /> | |
| <text x="944.90" y="575.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_use_program (1,025,030,263 samples, 0.57%)</title><rect x="483.8" y="757" width="6.6" height="15.0" fill="rgb(235,141,33)" rx="2" ry="2" /> | |
| <text x="486.75" y="767.5" ></text> | |
| </g> | |
| <g > | |
| <title>_int_free (21,261,567 samples, 0.01%)</title><rect x="1018.0" y="581" width="0.1" height="15.0" fill="rgb(247,196,46)" rx="2" ry="2" /> | |
| <text x="1020.98" y="591.5" ></text> | |
| </g> | |
| <g > | |
| <title>si_bind_vs_shader (16,221,397 samples, 0.01%)</title><rect x="85.7" y="725" width="0.1" height="15.0" fill="rgb(252,216,51)" rx="2" ry="2" /> | |
| <text x="88.67" y="735.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_UseProgram (58,359,095 samples, 0.03%)</title><rect x="491.5" y="773" width="0.3" height="15.0" fill="rgb(212,36,8)" rx="2" ry="2" /> | |
| <text x="494.45" y="783.5" ></text> | |
| </g> | |
| <g > | |
| <title>[libX11.so.6.4.0] (19,959,568 samples, 0.01%)</title><rect x="503.1" y="709" width="0.1" height="15.0" fill="rgb(220,73,17)" rx="2" ry="2" /> | |
| <text x="506.06" y="719.5" ></text> | |
| </g> | |
| <g > | |
| <title>update_single_program_texture (43,691,105 samples, 0.02%)</title><rect x="1083.7" y="613" width="0.3" height="15.0" fill="rgb(241,165,39)" rx="2" ry="2" /> | |
| <text x="1086.73" y="623.5" ></text> | |
| </g> | |
| <g > | |
| <title>tc_batch_flush (31,420,450 samples, 0.02%)</title><rect x="943.2" y="565" width="0.2" height="15.0" fill="rgb(249,206,49)" rx="2" ry="2" /> | |
| <text x="946.23" y="575.5" ></text> | |
| </g> | |
| <g > | |
| <title>strrchr (23,515,090 samples, 0.01%)</title><rect x="965.3" y="709" width="0.1" height="15.0" fill="rgb(250,210,50)" rx="2" ry="2" /> | |
| <text x="968.28" y="719.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_unmarshal_UnmapBuffer (67,405,881 samples, 0.04%)</title><rect x="829.7" y="629" width="0.4" height="15.0" fill="rgb(221,73,17)" rx="2" ry="2" /> | |
| <text x="832.67" y="639.5" ></text> | |
| </g> | |
| <g > | |
| <title>si_buffer_get_transfer (314,707,085 samples, 0.17%)</title><rect x="958.9" y="645" width="2.1" height="15.0" fill="rgb(224,91,21)" rx="2" ry="2" /> | |
| <text x="961.90" y="655.5" ></text> | |
| </g> | |
| <g > | |
| <title>pthread_cond_signal@@GLIBC_2.17 (28,613,532 samples, 0.02%)</title><rect x="418.8" y="645" width="0.2" height="15.0" fill="rgb(232,126,30)" rx="2" ry="2" /> | |
| <text x="421.79" y="655.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_glthread_finish (1,391,303,639 samples, 0.77%)</title><rect x="822.2" y="661" width="9.1" height="15.0" fill="rgb(209,22,5)" rx="2" ry="2" /> | |
| <text x="825.18" y="671.5" ></text> | |
| </g> | |
| <g > | |
| <title>__GI___memset_generic (234,237,559 samples, 0.13%)</title><rect x="183.9" y="741" width="1.5" height="15.0" fill="rgb(210,26,6)" rx="2" ry="2" /> | |
| <text x="186.86" y="751.5" ></text> | |
| </g> | |
| <g > | |
| <title>st_prepare_draw (107,888,669 samples, 0.06%)</title><rect x="376.3" y="773" width="0.7" height="15.0" fill="rgb(214,45,10)" rx="2" ry="2" /> | |
| <text x="379.27" y="783.5" ></text> | |
| </g> | |
| <g > | |
| <title>[libxcb.so.1.1.0] (403,640,638 samples, 0.22%)</title><rect x="540.7" y="725" width="2.7" height="15.0" fill="rgb(226,98,23)" rx="2" ry="2" /> | |
| <text x="543.71" y="735.5" ></text> | |
| </g> | |
| <g > | |
| <title>el0t_64_sync (331,293,231 samples, 0.18%)</title><rect x="1161.2" y="565" width="2.2" height="15.0" fill="rgb(217,56,13)" rx="2" ry="2" /> | |
| <text x="1164.19" y="575.5" ></text> | |
| </g> | |
| <g > | |
| <title>el0t_64_sync_handler (165,653,578 samples, 0.09%)</title><rect x="13.4" y="709" width="1.0" height="15.0" fill="rgb(211,32,7)" rx="2" ry="2" /> | |
| <text x="16.36" y="719.5" ></text> | |
| </g> | |
| <g > | |
| <title>[redeclipse] (3,648,979,529 samples, 2.02%)</title><rect x="771.1" y="325" width="23.9" height="15.0" fill="rgb(253,222,53)" rx="2" ry="2" /> | |
| <text x="774.10" y="335.5" >[..</text> | |
| </g> | |
| <g > | |
| <title>st_upload_constants (19,039,346 samples, 0.01%)</title><rect x="1112.2" y="645" width="0.2" height="15.0" fill="rgb(238,154,36)" rx="2" ry="2" /> | |
| <text x="1115.23" y="655.5" ></text> | |
| </g> | |
| <g > | |
| <title>__GI___memset_generic (73,462,339 samples, 0.04%)</title><rect x="896.9" y="565" width="0.5" height="15.0" fill="rgb(210,26,6)" rx="2" ry="2" /> | |
| <text x="899.93" y="575.5" ></text> | |
| </g> | |
| <g > | |
| <title>[libSDL2-2.0.so.0.3000.0] (21,113,262 samples, 0.01%)</title><rect x="1188.8" y="805" width="0.1" height="15.0" fill="rgb(227,102,24)" rx="2" ry="2" /> | |
| <text x="1191.77" y="815.5" ></text> | |
| </g> | |
| <g > | |
| <title>__glXInitialize (16,591,044 samples, 0.01%)</title><rect x="506.9" y="789" width="0.2" height="15.0" fill="rgb(223,84,20)" rx="2" ry="2" /> | |
| <text x="509.94" y="799.5" ></text> | |
| </g> | |
| <g > | |
| <title>tc_call_draw_single (22,499,088 samples, 0.01%)</title><rect x="517.6" y="677" width="0.1" height="15.0" fill="rgb(247,193,46)" rx="2" ry="2" /> | |
| <text x="520.58" y="687.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_reference_program_ (73,769,349 samples, 0.04%)</title><rect x="1145.2" y="645" width="0.4" height="15.0" fill="rgb(231,122,29)" rx="2" ry="2" /> | |
| <text x="1148.17" y="655.5" ></text> | |
| </g> | |
| <g > | |
| <title>invoke_syscall (23,233,375 samples, 0.01%)</title><rect x="877.5" y="421" width="0.1" height="15.0" fill="rgb(209,18,4)" rx="2" ry="2" /> | |
| <text x="880.50" y="431.5" ></text> | |
| </g> | |
| <g > | |
| <title>buffer_data_error (50,482,668 samples, 0.03%)</title><rect x="1078.5" y="693" width="0.3" height="15.0" fill="rgb(213,38,9)" rx="2" ry="2" /> | |
| <text x="1081.51" y="703.5" ></text> | |
| </g> | |
| <g > | |
| <title>gfx6_emit_shader_ps (99,598,891 samples, 0.06%)</title><rect x="139.9" y="773" width="0.7" height="15.0" fill="rgb(247,194,46)" rx="2" ry="2" /> | |
| <text x="142.91" y="783.5" ></text> | |
| </g> | |
| <g > | |
| <title>st_update_vp (174,296,217 samples, 0.10%)</title><rect x="407.6" y="741" width="1.1" height="15.0" fill="rgb(254,227,54)" rx="2" ry="2" /> | |
| <text x="410.57" y="751.5" ></text> | |
| </g> | |
| <g > | |
| <title>pthread_once@plt (17,097,908 samples, 0.01%)</title><rect x="982.2" y="661" width="0.1" height="15.0" fill="rgb(240,161,38)" rx="2" ry="2" /> | |
| <text x="985.21" y="671.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_unmarshal_DrawElementsPacked (3,557,032,498 samples, 1.97%)</title><rect x="1113.3" y="709" width="23.2" height="15.0" fill="rgb(225,92,22)" rx="2" ry="2" /> | |
| <text x="1116.29" y="719.5" >_..</text> | |
| </g> | |
| <g > | |
| <title>do_validate_attachment (18,030,337 samples, 0.01%)</title><rect x="379.7" y="693" width="0.2" height="15.0" fill="rgb(254,225,54)" rx="2" ry="2" /> | |
| <text x="382.74" y="703.5" ></text> | |
| </g> | |
| <g > | |
| <title>__asinf_finite@GLIBC_2.17 (18,536,728 samples, 0.01%)</title><rect x="1049.6" y="741" width="0.1" height="15.0" fill="rgb(227,105,25)" rx="2" ry="2" /> | |
| <text x="1052.62" y="751.5" ></text> | |
| </g> | |
| <g > | |
| <title>ttm_bo_validate (1,049,933,206 samples, 0.58%)</title><rect x="272.0" y="549" width="6.9" height="15.0" fill="rgb(244,179,42)" rx="2" ry="2" /> | |
| <text x="275.01" y="559.5" ></text> | |
| </g> | |
| <g > | |
| <title>cnd_signal (41,674,199 samples, 0.02%)</title><rect x="447.8" y="661" width="0.3" height="15.0" fill="rgb(232,125,30)" rx="2" ry="2" /> | |
| <text x="450.81" y="671.5" ></text> | |
| </g> | |
| <g > | |
| <title>__pthread_mutex_cond_lock (31,220,686 samples, 0.02%)</title><rect x="341.6" y="789" width="0.2" height="15.0" fill="rgb(243,176,42)" rx="2" ry="2" /> | |
| <text x="344.57" y="799.5" ></text> | |
| </g> | |
| <g > | |
| <title>map_buffer_range (473,416,073 samples, 0.26%)</title><rect x="903.3" y="693" width="3.1" height="15.0" fill="rgb(244,183,43)" rx="2" ry="2" /> | |
| <text x="906.28" y="703.5" ></text> | |
| </g> | |
| <g > | |
| <title>validate_uniform_parameters (23,279,430 samples, 0.01%)</title><rect x="473.9" y="773" width="0.1" height="15.0" fill="rgb(234,137,32)" rx="2" ry="2" /> | |
| <text x="476.86" y="783.5" ></text> | |
| </g> | |
| <g > | |
| <title>st_get_sampler_views (19,653,304 samples, 0.01%)</title><rect x="852.7" y="549" width="0.1" height="15.0" fill="rgb(224,91,21)" rx="2" ry="2" /> | |
| <text x="855.72" y="559.5" ></text> | |
| </g> | |
| <g > | |
| <title>__strlen_mte (15,769,168 samples, 0.01%)</title><rect x="1177.3" y="741" width="0.1" height="15.0" fill="rgb(227,102,24)" rx="2" ry="2" /> | |
| <text x="1180.31" y="751.5" ></text> | |
| </g> | |
| <g > | |
| <title>simplify_draw_info (15,643,167 samples, 0.01%)</title><rect x="1154.2" y="661" width="0.1" height="15.0" fill="rgb(228,107,25)" rx="2" ry="2" /> | |
| <text x="1157.23" y="671.5" ></text> | |
| </g> | |
| <g > | |
| <title>_glapi_set_dispatch (22,335,532 samples, 0.01%)</title><rect x="862.4" y="645" width="0.2" height="15.0" fill="rgb(208,15,3)" rx="2" ry="2" /> | |
| <text x="865.43" y="655.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_reference_program_ (17,589,288 samples, 0.01%)</title><rect x="1092.5" y="629" width="0.1" height="15.0" fill="rgb(231,122,29)" rx="2" ry="2" /> | |
| <text x="1095.50" y="639.5" ></text> | |
| </g> | |
| <g > | |
| <title>__aarch64_ldadd4_acq_rel (15,367,158 samples, 0.01%)</title><rect x="528.5" y="613" width="0.1" height="15.0" fill="rgb(228,108,25)" rx="2" ry="2" /> | |
| <text x="531.46" y="623.5" ></text> | |
| </g> | |
| <g > | |
| <title>futex_wait_queue (77,544,209 samples, 0.04%)</title><rect x="29.7" y="597" width="0.5" height="15.0" fill="rgb(225,92,22)" rx="2" ry="2" /> | |
| <text x="32.69" y="607.5" ></text> | |
| </g> | |
| <g > | |
| <title>invoke_syscall (32,027,935 samples, 0.02%)</title><rect x="1034.3" y="501" width="0.2" height="15.0" fill="rgb(209,18,4)" rx="2" ry="2" /> | |
| <text x="1037.27" y="511.5" ></text> | |
| </g> | |
| <g > | |
| <title>cso_set_vertex_elements (18,544,053 samples, 0.01%)</title><rect x="1088.1" y="613" width="0.1" height="15.0" fill="rgb(238,152,36)" rx="2" ry="2" /> | |
| <text x="1091.11" y="623.5" ></text> | |
| </g> | |
| <g > | |
| <title>__aarch64_ldadd4_acq_rel (64,441,210 samples, 0.04%)</title><rect x="1115.2" y="613" width="0.4" height="15.0" fill="rgb(228,108,25)" rx="2" ry="2" /> | |
| <text x="1118.17" y="623.5" ></text> | |
| </g> | |
| <g > | |
| <title>cso_set_samplers (26,589,258 samples, 0.01%)</title><rect x="851.6" y="565" width="0.2" height="15.0" fill="rgb(215,48,11)" rx="2" ry="2" /> | |
| <text x="854.65" y="575.5" ></text> | |
| </g> | |
| <g > | |
| <title>do_el0_svc (51,321,445 samples, 0.03%)</title><rect x="38.3" y="645" width="0.4" height="15.0" fill="rgb(218,60,14)" rx="2" ry="2" /> | |
| <text x="41.35" y="655.5" ></text> | |
| </g> | |
| <g > | |
| <title>el0_svc_common.constprop.0 (145,108,113 samples, 0.08%)</title><rect x="507.7" y="597" width="1.0" height="15.0" fill="rgb(224,89,21)" rx="2" ry="2" /> | |
| <text x="510.74" y="607.5" ></text> | |
| </g> | |
| <g > | |
| <title>si_set_sampler_view_desc (658,422,064 samples, 0.36%)</title><rect x="233.0" y="741" width="4.3" height="15.0" fill="rgb(216,53,12)" rx="2" ry="2" /> | |
| <text x="236.01" y="751.5" ></text> | |
| </g> | |
| <g > | |
| <title>amdgpu_do_add_buffer (16,267,424 samples, 0.01%)</title><rect x="195.6" y="757" width="0.1" height="15.0" fill="rgb(223,86,20)" rx="2" ry="2" /> | |
| <text x="198.59" y="767.5" ></text> | |
| </g> | |
| <g > | |
| <title>drm_sched_fence_alloc (32,394,854 samples, 0.02%)</title><rect x="306.0" y="533" width="0.2" height="15.0" fill="rgb(240,164,39)" rx="2" ry="2" /> | |
| <text x="308.99" y="543.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_update_state_locked (56,200,239 samples, 0.03%)</title><rect x="1058.4" y="645" width="0.3" height="15.0" fill="rgb(214,43,10)" rx="2" ry="2" /> | |
| <text x="1061.37" y="655.5" ></text> | |
| </g> | |
| <g > | |
| <title>st_get_texture_sampler_view_from_stobj (138,632,989 samples, 0.08%)</title><rect x="940.0" y="549" width="0.9" height="15.0" fill="rgb(211,32,7)" rx="2" ry="2" /> | |
| <text x="942.99" y="559.5" ></text> | |
| </g> | |
| <g > | |
| <title>[redeclipse] (76,707,312 samples, 0.04%)</title><rect x="1188.9" y="805" width="0.5" height="15.0" fill="rgb(253,222,53)" rx="2" ry="2" /> | |
| <text x="1191.91" y="815.5" ></text> | |
| </g> | |
| <g > | |
| <title>[libxcb.so.1.1.0] (47,448,701 samples, 0.03%)</title><rect x="508.8" y="741" width="0.3" height="15.0" fill="rgb(226,98,23)" rx="2" ry="2" /> | |
| <text x="511.80" y="751.5" ></text> | |
| </g> | |
| <g > | |
| <title>tc_draw_vbo (23,353,888 samples, 0.01%)</title><rect x="993.3" y="629" width="0.2" height="15.0" fill="rgb(207,9,2)" rx="2" ry="2" /> | |
| <text x="996.32" y="639.5" ></text> | |
| </g> | |
| <g > | |
| <title>__GI___ioctl (105,950,067 samples, 0.06%)</title><rect x="900.2" y="517" width="0.7" height="15.0" fill="rgb(232,128,30)" rx="2" ry="2" /> | |
| <text x="903.24" y="527.5" ></text> | |
| </g> | |
| <g > | |
| <title>amdgpu_ttm_tt_get_usermm (17,782,254 samples, 0.01%)</title><rect x="306.2" y="565" width="0.2" height="15.0" fill="rgb(222,82,19)" rx="2" ry="2" /> | |
| <text x="309.24" y="575.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_validated_drawrangeelements (85,415,315 samples, 0.05%)</title><rect x="934.8" y="613" width="0.5" height="15.0" fill="rgb(230,115,27)" rx="2" ry="2" /> | |
| <text x="937.75" y="623.5" ></text> | |
| </g> | |
| <g > | |
| <title>[libpulse.so.0.24.2] (199,093,430 samples, 0.11%)</title><rect x="13.3" y="773" width="1.3" height="15.0" fill="rgb(253,221,52)" rx="2" ry="2" /> | |
| <text x="16.30" y="783.5" ></text> | |
| </g> | |
| <g > | |
| <title>[redeclipse] (7,798,276,506 samples, 4.32%)</title><rect x="755.6" y="645" width="51.0" height="15.0" fill="rgb(253,222,53)" rx="2" ry="2" /> | |
| <text x="758.64" y="655.5" >[rede..</text> | |
| </g> | |
| <g > | |
| <title>_mesa_update_state_locked (181,610,524 samples, 0.10%)</title><rect x="1114.0" y="645" width="1.1" height="15.0" fill="rgb(214,43,10)" rx="2" ry="2" /> | |
| <text x="1116.96" y="655.5" ></text> | |
| </g> | |
| <g > | |
| <title>do_el0_svc (82,331,691 samples, 0.05%)</title><rect x="976.8" y="581" width="0.5" height="15.0" fill="rgb(218,60,14)" rx="2" ry="2" /> | |
| <text x="979.75" y="591.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_update_state (2,376,852,558 samples, 1.32%)</title><rect x="378.8" y="773" width="15.6" height="15.0" fill="rgb(222,78,18)" rx="2" ry="2" /> | |
| <text x="381.85" y="783.5" ></text> | |
| </g> | |
| <g > | |
| <title>u_upload_alloc (42,370,215 samples, 0.02%)</title><rect x="150.5" y="741" width="0.3" height="15.0" fill="rgb(235,138,33)" rx="2" ry="2" /> | |
| <text x="153.48" y="751.5" ></text> | |
| </g> | |
| <g > | |
| <title>cso_set_vertex_elements_direct (15,679,660 samples, 0.01%)</title><rect x="813.7" y="501" width="0.1" height="15.0" fill="rgb(222,80,19)" rx="2" ry="2" /> | |
| <text x="816.73" y="511.5" ></text> | |
| </g> | |
| <g > | |
| <title>st_get_texture_sampler_view_from_stobj (95,359,981 samples, 0.05%)</title><rect x="997.4" y="581" width="0.6" height="15.0" fill="rgb(211,32,7)" rx="2" ry="2" /> | |
| <text x="1000.35" y="591.5" ></text> | |
| </g> | |
| <g > | |
| <title>shared_dispatch_stub_461 (20,381,739 samples, 0.01%)</title><rect x="1073.7" y="741" width="0.1" height="15.0" fill="rgb(235,142,34)" rx="2" ry="2" /> | |
| <text x="1076.68" y="751.5" ></text> | |
| </g> | |
| <g > | |
| <title>__aarch64_ldadd4_acq_rel (16,099,773 samples, 0.01%)</title><rect x="950.1" y="581" width="0.1" height="15.0" fill="rgb(228,108,25)" rx="2" ry="2" /> | |
| <text x="953.11" y="591.5" ></text> | |
| </g> | |
| <g > | |
| <title>void st_update_array_templ< (80,851,199 samples, 0.04%)</title><rect x="1088.1" y="645" width="0.5" height="15.0" fill="rgb(243,178,42)" rx="2" ry="2" /> | |
| <text x="1091.10" y="655.5" ></text> | |
| </g> | |
| <g > | |
| <title>[libSDL2-2.0.so.0.3000.0] (15,764,770 samples, 0.01%)</title><rect x="505.4" y="725" width="0.1" height="15.0" fill="rgb(227,102,24)" rx="2" ry="2" /> | |
| <text x="508.35" y="735.5" ></text> | |
| </g> | |
| <g > | |
| <title>tc_set_framebuffer_state (26,750,417 samples, 0.01%)</title><rect x="375.1" y="757" width="0.2" height="15.0" fill="rgb(244,180,43)" rx="2" ry="2" /> | |
| <text x="378.10" y="767.5" ></text> | |
| </g> | |
| <g > | |
| <title>copy_uniform_matrix_to_storage (33,134,129 samples, 0.02%)</title><rect x="829.4" y="581" width="0.3" height="15.0" fill="rgb(209,20,4)" rx="2" ry="2" /> | |
| <text x="832.44" y="591.5" ></text> | |
| </g> | |
| <g > | |
| <title>dma_fence_release (54,932,143 samples, 0.03%)</title><rect x="308.2" y="517" width="0.4" height="15.0" fill="rgb(234,136,32)" rx="2" ry="2" /> | |
| <text x="311.24" y="527.5" ></text> | |
| </g> | |
| <g > | |
| <title>bind_texture_object (136,512,004 samples, 0.08%)</title><rect x="1103.4" y="677" width="0.9" height="15.0" fill="rgb(221,73,17)" rx="2" ry="2" /> | |
| <text x="1106.37" y="687.5" ></text> | |
| </g> | |
| <g > | |
| <title>void st_update_array_templ< (60,063,940 samples, 0.03%)</title><rect x="930.0" y="613" width="0.4" height="15.0" fill="rgb(243,178,42)" rx="2" ry="2" /> | |
| <text x="933.03" y="623.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_DrawArraysInstancedBaseInstance (114,776,994 samples, 0.06%)</title><rect x="928.2" y="645" width="0.8" height="15.0" fill="rgb(243,178,42)" rx="2" ry="2" /> | |
| <text x="931.24" y="655.5" ></text> | |
| </g> | |
| <g > | |
| <title>update_framebuffer (131,971,701 samples, 0.07%)</title><rect x="1080.1" y="629" width="0.8" height="15.0" fill="rgb(222,78,18)" rx="2" ry="2" /> | |
| <text x="1083.08" y="639.5" ></text> | |
| </g> | |
| <g > | |
| <title>u_upload_alloc (16,440,308 samples, 0.01%)</title><rect x="81.2" y="645" width="0.1" height="15.0" fill="rgb(235,138,33)" rx="2" ry="2" /> | |
| <text x="84.20" y="655.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_unmarshal_UniformMatrix4fv (63,541,351 samples, 0.04%)</title><rect x="829.3" y="629" width="0.4" height="15.0" fill="rgb(249,202,48)" rx="2" ry="2" /> | |
| <text x="832.26" y="639.5" ></text> | |
| </g> | |
| <g > | |
| <title>si_pipe_set_sampler_views (369,509,917 samples, 0.20%)</title><rect x="202.0" y="773" width="2.5" height="15.0" fill="rgb(226,100,24)" rx="2" ry="2" /> | |
| <text x="205.04" y="783.5" ></text> | |
| </g> | |
| <g > | |
| <title>strchr (139,426,086 samples, 0.08%)</title><rect x="1042.1" y="725" width="0.9" height="15.0" fill="rgb(237,147,35)" rx="2" ry="2" /> | |
| <text x="1045.12" y="735.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_update_state_locked (67,450,377 samples, 0.04%)</title><rect x="990.2" y="613" width="0.5" height="15.0" fill="rgb(214,43,10)" rx="2" ry="2" /> | |
| <text x="993.25" y="623.5" ></text> | |
| </g> | |
| <g > | |
| <title>__libc_recvmsg (34,216,535 samples, 0.02%)</title><rect x="1106.1" y="485" width="0.3" height="15.0" fill="rgb(220,72,17)" rx="2" ry="2" /> | |
| <text x="1109.15" y="495.5" ></text> | |
| </g> | |
| <g > | |
| <title>update_textures (3,493,447,830 samples, 1.93%)</title><rect x="427.9" y="741" width="22.8" height="15.0" fill="rgb(232,125,29)" rx="2" ry="2" /> | |
| <text x="430.88" y="751.5" >u..</text> | |
| </g> | |
| <g > | |
| <title>el0_svc (24,040,853 samples, 0.01%)</title><rect x="14.4" y="677" width="0.2" height="15.0" fill="rgb(244,183,43)" rx="2" ry="2" /> | |
| <text x="17.44" y="687.5" ></text> | |
| </g> | |
| <g > | |
| <title>__aarch64_cas4_sync (24,252,624 samples, 0.01%)</title><rect x="1013.0" y="565" width="0.2" height="15.0" fill="rgb(253,222,53)" rx="2" ry="2" /> | |
| <text x="1016.04" y="575.5" ></text> | |
| </g> | |
| <g > | |
| <title>drm_syncobj_find_fence (16,976,946 samples, 0.01%)</title><rect x="307.4" y="549" width="0.2" height="15.0" fill="rgb(218,63,15)" rx="2" ry="2" /> | |
| <text x="310.44" y="559.5" ></text> | |
| </g> | |
| <g > | |
| <title>__aarch64_ldadd4_acq_rel (37,495,656 samples, 0.02%)</title><rect x="816.5" y="581" width="0.2" height="15.0" fill="rgb(228,108,25)" rx="2" ry="2" /> | |
| <text x="819.45" y="591.5" ></text> | |
| </g> | |
| <g > | |
| <title>__aarch64_cas4_sync (26,078,875 samples, 0.01%)</title><rect x="48.0" y="741" width="0.2" height="15.0" fill="rgb(253,222,53)" rx="2" ry="2" /> | |
| <text x="51.03" y="751.5" ></text> | |
| </g> | |
| <g > | |
| <title>el0_svc_common.constprop.0 (137,686,466 samples, 0.08%)</title><rect x="191.0" y="613" width="0.9" height="15.0" fill="rgb(224,89,21)" rx="2" ry="2" /> | |
| <text x="194.04" y="623.5" ></text> | |
| </g> | |
| <g > | |
| <title>invoke_syscall (44,548,380 samples, 0.02%)</title><rect x="901.1" y="437" width="0.3" height="15.0" fill="rgb(209,18,4)" rx="2" ry="2" /> | |
| <text x="904.12" y="447.5" ></text> | |
| </g> | |
| <g > | |
| <title>amdgpu_cs_add_buffer (18,942,870 samples, 0.01%)</title><rect x="530.2" y="645" width="0.1" height="15.0" fill="rgb(254,227,54)" rx="2" ry="2" /> | |
| <text x="533.20" y="655.5" ></text> | |
| </g> | |
| <g > | |
| <title>syscall (164,163,810 samples, 0.09%)</title><rect x="979.7" y="661" width="1.1" height="15.0" fill="rgb(234,136,32)" rx="2" ry="2" /> | |
| <text x="982.73" y="671.5" ></text> | |
| </g> | |
| <g > | |
| <title>[redeclipse] (483,936,407 samples, 0.27%)</title><rect x="1046.0" y="725" width="3.2" height="15.0" fill="rgb(253,222,53)" rx="2" ry="2" /> | |
| <text x="1049.04" y="735.5" ></text> | |
| </g> | |
| <g > | |
| <title>amdgpu_cs_flush (23,458,286 samples, 0.01%)</title><rect x="885.0" y="565" width="0.2" height="15.0" fill="rgb(205,1,0)" rx="2" ry="2" /> | |
| <text x="888.01" y="575.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_draw_arrays.part.0 (19,383,878 samples, 0.01%)</title><rect x="782.5" y="53" width="0.1" height="15.0" fill="rgb(227,104,25)" rx="2" ry="2" /> | |
| <text x="785.51" y="63.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_VertexAttrib4fARB (24,761,591 samples, 0.01%)</title><rect x="1028.0" y="645" width="0.1" height="15.0" fill="rgb(251,214,51)" rx="2" ry="2" /> | |
| <text x="1030.97" y="655.5" ></text> | |
| </g> | |
| <g > | |
| <title>bind_buffer_object (25,745,988 samples, 0.01%)</title><rect x="982.5" y="645" width="0.2" height="15.0" fill="rgb(246,190,45)" rx="2" ry="2" /> | |
| <text x="985.53" y="655.5" ></text> | |
| </g> | |
| <g > | |
| <title>el0t_64_sync_handler (387,087,435 samples, 0.21%)</title><rect x="249.1" y="741" width="2.5" height="15.0" fill="rgb(211,32,7)" rx="2" ry="2" /> | |
| <text x="252.12" y="751.5" ></text> | |
| </g> | |
| <g > | |
| <title>hud_draw_string (79,345,387 samples, 0.04%)</title><rect x="512.5" y="693" width="0.5" height="15.0" fill="rgb(251,215,51)" rx="2" ry="2" /> | |
| <text x="515.47" y="703.5" ></text> | |
| </g> | |
| <g > | |
| <title>el0_svc (37,724,213 samples, 0.02%)</title><rect x="516.7" y="629" width="0.3" height="15.0" fill="rgb(244,183,43)" rx="2" ry="2" /> | |
| <text x="519.75" y="639.5" ></text> | |
| </g> | |
| <g > | |
| <title>cso_set_blend (20,852,516 samples, 0.01%)</title><rect x="1120.0" y="629" width="0.1" height="15.0" fill="rgb(252,217,51)" rx="2" ry="2" /> | |
| <text x="1122.98" y="639.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_unmarshal_DisableVertexAttribArray (49,261,657 samples, 0.03%)</title><rect x="927.9" y="661" width="0.3" height="15.0" fill="rgb(214,45,10)" rx="2" ry="2" /> | |
| <text x="930.90" y="671.5" ></text> | |
| </g> | |
| <g > | |
| <title>u_upload_alloc (18,472,685 samples, 0.01%)</title><rect x="944.3" y="565" width="0.1" height="15.0" fill="rgb(235,138,33)" rx="2" ry="2" /> | |
| <text x="947.33" y="575.5" ></text> | |
| </g> | |
| <g > | |
| <title>invoke_syscall (19,871,589 samples, 0.01%)</title><rect x="956.3" y="533" width="0.2" height="15.0" fill="rgb(209,18,4)" rx="2" ry="2" /> | |
| <text x="959.32" y="543.5" ></text> | |
| </g> | |
| <g > | |
| <title>util_blitter_restore_vertex_states (33,363,592 samples, 0.02%)</title><rect x="85.6" y="741" width="0.2" height="15.0" fill="rgb(252,218,52)" rx="2" ry="2" /> | |
| <text x="88.62" y="751.5" ></text> | |
| </g> | |
| <g > | |
| <title>cso_set_vertex_elements (72,692,807 samples, 0.04%)</title><rect x="1134.5" y="613" width="0.5" height="15.0" fill="rgb(238,152,36)" rx="2" ry="2" /> | |
| <text x="1137.49" y="623.5" ></text> | |
| </g> | |
| <g > | |
| <title>map_buffer_range (667,577,892 samples, 0.37%)</title><rect x="1035.9" y="725" width="4.4" height="15.0" fill="rgb(244,183,43)" rx="2" ry="2" /> | |
| <text x="1038.94" y="735.5" ></text> | |
| </g> | |
| <g > | |
| <title>__libc_recvmsg (243,021,525 samples, 0.13%)</title><rect x="1106.8" y="501" width="1.6" height="15.0" fill="rgb(220,72,17)" rx="2" ry="2" /> | |
| <text x="1109.76" y="511.5" ></text> | |
| </g> | |
| <g > | |
| <title>tc_invalidate_buffer (36,267,041 samples, 0.02%)</title><rect x="1078.5" y="661" width="0.2" height="15.0" fill="rgb(223,85,20)" rx="2" ry="2" /> | |
| <text x="1081.51" y="671.5" ></text> | |
| </g> | |
| <g > | |
| <title>__futex_wait (117,595,460 samples, 0.07%)</title><rect x="338.4" y="613" width="0.8" height="15.0" fill="rgb(207,12,3)" rx="2" ry="2" /> | |
| <text x="341.38" y="623.5" ></text> | |
| </g> | |
| <g > | |
| <title>el0_svc (60,362,550 samples, 0.03%)</title><rect x="14.7" y="693" width="0.4" height="15.0" fill="rgb(244,183,43)" rx="2" ry="2" /> | |
| <text x="17.73" y="703.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_BindBuffer (24,600,912 samples, 0.01%)</title><rect x="1097.7" y="677" width="0.1" height="15.0" fill="rgb(210,23,5)" rx="2" ry="2" /> | |
| <text x="1100.67" y="687.5" ></text> | |
| </g> | |
| <g > | |
| <title>strrchr (62,517,685 samples, 0.03%)</title><rect x="839.2" y="677" width="0.4" height="15.0" fill="rgb(250,210,50)" rx="2" ry="2" /> | |
| <text x="842.20" y="687.5" ></text> | |
| </g> | |
| <g > | |
| <title>ttm_resource_compat (1,017,101,855 samples, 0.56%)</title><rect x="272.2" y="533" width="6.7" height="15.0" fill="rgb(240,161,38)" rx="2" ry="2" /> | |
| <text x="275.20" y="543.5" ></text> | |
| </g> | |
| <g > | |
| <title>amdgpu_fence_destroy (31,879,728 samples, 0.02%)</title><rect x="538.3" y="677" width="0.2" height="15.0" fill="rgb(225,92,22)" rx="2" ry="2" /> | |
| <text x="541.31" y="687.5" ></text> | |
| </g> | |
| <g > | |
| <title>el0t_64_sync (87,304,940 samples, 0.05%)</title><rect x="1177.7" y="693" width="0.6" height="15.0" fill="rgb(217,56,13)" rx="2" ry="2" /> | |
| <text x="1180.70" y="703.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_update_texture_state (18,360,739 samples, 0.01%)</title><rect x="865.4" y="565" width="0.1" height="15.0" fill="rgb(237,148,35)" rx="2" ry="2" /> | |
| <text x="868.41" y="575.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_update_texture_state (40,936,457 samples, 0.02%)</title><rect x="928.5" y="581" width="0.3" height="15.0" fill="rgb(237,148,35)" rx="2" ry="2" /> | |
| <text x="931.49" y="591.5" ></text> | |
| </g> | |
| <g > | |
| <title>void si_draw_vbo< (420,286,599 samples, 0.23%)</title><rect x="888.9" y="581" width="2.7" height="15.0" fill="rgb(226,101,24)" rx="2" ry="2" /> | |
| <text x="891.90" y="591.5" ></text> | |
| </g> | |
| <g > | |
| <title>st_upload_constants (77,108,939 samples, 0.04%)</title><rect x="1061.8" y="629" width="0.6" height="15.0" fill="rgb(238,154,36)" rx="2" ry="2" /> | |
| <text x="1064.85" y="639.5" ></text> | |
| </g> | |
| <g > | |
| <title>blend_func_separate (18,209,339 samples, 0.01%)</title><rect x="987.6" y="661" width="0.1" height="15.0" fill="rgb(221,74,17)" rx="2" ry="2" /> | |
| <text x="990.58" y="671.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_unmarshal_BindTexture (88,325,926 samples, 0.05%)</title><rect x="363.8" y="789" width="0.6" height="15.0" fill="rgb(248,199,47)" rx="2" ry="2" /> | |
| <text x="366.78" y="799.5" ></text> | |
| </g> | |
| <g > | |
| <title>parse_offset (94,735,826 samples, 0.05%)</title><rect x="1179.5" y="725" width="0.7" height="15.0" fill="rgb(238,153,36)" rx="2" ry="2" /> | |
| <text x="1182.54" y="735.5" ></text> | |
| </g> | |
| <g > | |
| <title>update_textures (52,822,947 samples, 0.03%)</title><rect x="1112.5" y="661" width="0.4" height="15.0" fill="rgb(232,125,29)" rx="2" ry="2" /> | |
| <text x="1115.54" y="671.5" ></text> | |
| </g> | |
| <g > | |
| <title>__aarch64_ldadd4_acq_rel (259,947,773 samples, 0.14%)</title><rect x="483.9" y="725" width="1.7" height="15.0" fill="rgb(228,108,25)" rx="2" ry="2" /> | |
| <text x="486.85" y="735.5" ></text> | |
| </g> | |
| <g > | |
| <title>strncpy_from_user (29,010,091 samples, 0.02%)</title><rect x="1181.9" y="549" width="0.2" height="15.0" fill="rgb(248,198,47)" rx="2" ry="2" /> | |
| <text x="1184.86" y="559.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_unmarshal_Uniform3f (19,390,554 samples, 0.01%)</title><rect x="1090.4" y="709" width="0.1" height="15.0" fill="rgb(231,119,28)" rx="2" ry="2" /> | |
| <text x="1093.42" y="719.5" ></text> | |
| </g> | |
| <g > | |
| <title>amdgpu_gem_object_close (17,471,706 samples, 0.01%)</title><rect x="1189.8" y="613" width="0.2" height="15.0" fill="rgb(253,222,53)" rx="2" ry="2" /> | |
| <text x="1192.84" y="623.5" ></text> | |
| </g> | |
| <g > | |
| <title>st_prepare_draw (142,584,606 samples, 0.08%)</title><rect x="935.4" y="597" width="1.0" height="15.0" fill="rgb(214,45,10)" rx="2" ry="2" /> | |
| <text x="938.44" y="607.5" ></text> | |
| </g> | |
| <g > | |
| <title>vorbis_book_decode (25,146,281 samples, 0.01%)</title><rect x="24.9" y="677" width="0.2" height="15.0" fill="rgb(254,227,54)" rx="2" ry="2" /> | |
| <text x="27.89" y="687.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_marshal_MapBufferRange (31,942,459 samples, 0.02%)</title><rect x="955.6" y="693" width="0.2" height="15.0" fill="rgb(219,65,15)" rx="2" ry="2" /> | |
| <text x="958.60" y="703.5" ></text> | |
| </g> | |
| <g > | |
| <title>st_get_sampler_views (3,002,251,693 samples, 1.66%)</title><rect x="427.9" y="725" width="19.6" height="15.0" fill="rgb(224,91,21)" rx="2" ry="2" /> | |
| <text x="430.89" y="735.5" ></text> | |
| </g> | |
| <g > | |
| <title>drmIoctl (17,340,709 samples, 0.01%)</title><rect x="1034.1" y="565" width="0.1" height="15.0" fill="rgb(251,215,51)" rx="2" ry="2" /> | |
| <text x="1037.10" y="575.5" ></text> | |
| </g> | |
| <g > | |
| <title>gup_fast_fallback (33,433,076 samples, 0.02%)</title><rect x="252.9" y="613" width="0.2" height="15.0" fill="rgb(242,172,41)" rx="2" ry="2" /> | |
| <text x="255.93" y="623.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_test_framebuffer_completeness (18,484,465 samples, 0.01%)</title><rect x="1110.0" y="597" width="0.1" height="15.0" fill="rgb(229,113,27)" rx="2" ry="2" /> | |
| <text x="1112.98" y="607.5" ></text> | |
| </g> | |
| <g > | |
| <title>dma_fence_chain_walk (15,495,658 samples, 0.01%)</title><rect x="320.2" y="565" width="0.1" height="15.0" fill="rgb(220,72,17)" rx="2" ry="2" /> | |
| <text x="323.24" y="575.5" ></text> | |
| </g> | |
| <g > | |
| <title>vbo_exec_FlushVertices (31,568,595 samples, 0.02%)</title><rect x="1153.2" y="677" width="0.2" height="15.0" fill="rgb(226,100,24)" rx="2" ry="2" /> | |
| <text x="1156.22" y="687.5" ></text> | |
| </g> | |
| <g > | |
| <title>tc_call_draw_single (28,020,835 samples, 0.02%)</title><rect x="521.4" y="677" width="0.2" height="15.0" fill="rgb(247,193,46)" rx="2" ry="2" /> | |
| <text x="524.42" y="687.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_reference_texobj_ (15,402,320 samples, 0.01%)</title><rect x="823.7" y="597" width="0.1" height="15.0" fill="rgb(229,111,26)" rx="2" ry="2" /> | |
| <text x="826.74" y="607.5" ></text> | |
| </g> | |
| <g > | |
| <title>si_buffer_transfer_map (317,375,335 samples, 0.18%)</title><rect x="903.7" y="645" width="2.0" height="15.0" fill="rgb(237,151,36)" rx="2" ry="2" /> | |
| <text x="906.66" y="655.5" ></text> | |
| </g> | |
| <g > | |
| <title>cso_set_blend (21,131,360 samples, 0.01%)</title><rect x="1059.1" y="629" width="0.1" height="15.0" fill="rgb(252,217,51)" rx="2" ry="2" /> | |
| <text x="1062.05" y="639.5" ></text> | |
| </g> | |
| <g > | |
| <title>el0_svc_common.constprop.0 (134,962,090 samples, 0.07%)</title><rect x="503.4" y="581" width="0.9" height="15.0" fill="rgb(224,89,21)" rx="2" ry="2" /> | |
| <text x="506.42" y="591.5" ></text> | |
| </g> | |
| <g > | |
| <title>el0_svc_common.constprop.0 (28,805,078 samples, 0.02%)</title><rect x="538.3" y="549" width="0.2" height="15.0" fill="rgb(224,89,21)" rx="2" ry="2" /> | |
| <text x="541.32" y="559.5" ></text> | |
| </g> | |
| <g > | |
| <title>el0t_64_sync_handler (820,525,518 samples, 0.45%)</title><rect x="28.4" y="741" width="5.4" height="15.0" fill="rgb(211,32,7)" rx="2" ry="2" /> | |
| <text x="31.40" y="751.5" ></text> | |
| </g> | |
| <g > | |
| <title>__memcpy_generic (25,225,337 samples, 0.01%)</title><rect x="1075.3" y="757" width="0.2" height="15.0" fill="rgb(231,124,29)" rx="2" ry="2" /> | |
| <text x="1078.31" y="767.5" ></text> | |
| </g> | |
| <g > | |
| <title>update_single_program_texture (97,205,519 samples, 0.05%)</title><rect x="1003.9" y="581" width="0.6" height="15.0" fill="rgb(241,165,39)" rx="2" ry="2" /> | |
| <text x="1006.88" y="591.5" ></text> | |
| </g> | |
| <g > | |
| <title>do_validate_attachment (23,612,513 samples, 0.01%)</title><rect x="988.2" y="581" width="0.2" height="15.0" fill="rgb(254,225,54)" rx="2" ry="2" /> | |
| <text x="991.20" y="591.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_UseProgram (319,092,563 samples, 0.18%)</title><rect x="949.1" y="645" width="2.1" height="15.0" fill="rgb(212,36,8)" rx="2" ry="2" /> | |
| <text x="952.14" y="655.5" ></text> | |
| </g> | |
| <g > | |
| <title>el0_svc_common.constprop.0 (17,994,172 samples, 0.01%)</title><rect x="1172.8" y="613" width="0.2" height="15.0" fill="rgb(224,89,21)" rx="2" ry="2" /> | |
| <text x="1175.85" y="623.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_bufferobj_data (41,496,314 samples, 0.02%)</title><rect x="1078.5" y="677" width="0.3" height="15.0" fill="rgb(217,57,13)" rx="2" ry="2" /> | |
| <text x="1081.51" y="687.5" ></text> | |
| </g> | |
| <g > | |
| <title>el0t_64_sync_handler (129,580,904 samples, 0.07%)</title><rect x="36.1" y="757" width="0.9" height="15.0" fill="rgb(211,32,7)" rx="2" ry="2" /> | |
| <text x="39.14" y="767.5" ></text> | |
| </g> | |
| <g > | |
| <title>util_sparse_array_get (16,020,378 samples, 0.01%)</title><rect x="985.4" y="613" width="0.1" height="15.0" fill="rgb(241,168,40)" rx="2" ry="2" /> | |
| <text x="988.39" y="623.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_uniform (17,062,494 samples, 0.01%)</title><rect x="1019.5" y="629" width="0.1" height="15.0" fill="rgb(248,201,48)" rx="2" ry="2" /> | |
| <text x="1022.49" y="639.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_reference_texobj_ (47,146,353 samples, 0.03%)</title><rect x="848.1" y="565" width="0.3" height="15.0" fill="rgb(229,111,26)" rx="2" ry="2" /> | |
| <text x="851.05" y="575.5" ></text> | |
| </g> | |
| <g > | |
| <title>viewport (30,403,628 samples, 0.02%)</title><rect x="494.1" y="773" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" /> | |
| <text x="497.08" y="783.5" ></text> | |
| </g> | |
| <g > | |
| <title>do_notify_resume (39,448,554 samples, 0.02%)</title><rect x="1163.1" y="517" width="0.2" height="15.0" fill="rgb(233,129,30)" rx="2" ry="2" /> | |
| <text x="1166.09" y="527.5" ></text> | |
| </g> | |
| <g > | |
| <title>__aarch64_ldadd4_acq_rel (17,514,904 samples, 0.01%)</title><rect x="201.3" y="741" width="0.1" height="15.0" fill="rgb(228,108,25)" rx="2" ry="2" /> | |
| <text x="204.33" y="751.5" ></text> | |
| </g> | |
| <g > | |
| <title>pa_mainloop_prepare (74,871,677 samples, 0.04%)</title><rect x="14.6" y="789" width="0.5" height="15.0" fill="rgb(209,22,5)" rx="2" ry="2" /> | |
| <text x="17.64" y="799.5" ></text> | |
| </g> | |
| <g > | |
| <title>tc_call_set_sampler_views (505,765,778 samples, 0.28%)</title><rect x="891.9" y="597" width="3.3" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" /> | |
| <text x="894.91" y="607.5" ></text> | |
| </g> | |
| <g > | |
| <title>st_prepare_draw (255,302,882 samples, 0.14%)</title><rect x="1119.8" y="645" width="1.7" height="15.0" fill="rgb(214,45,10)" rx="2" ry="2" /> | |
| <text x="1122.83" y="655.5" ></text> | |
| </g> | |
| <g > | |
| <title>si_set_mutable_tex_desc_fields (147,671,314 samples, 0.08%)</title><rect x="893.3" y="517" width="1.0" height="15.0" fill="rgb(226,97,23)" rx="2" ry="2" /> | |
| <text x="896.33" y="527.5" ></text> | |
| </g> | |
| <g > | |
| <title>util_blitter_clear_custom.constprop.0 (25,129,177 samples, 0.01%)</title><rect x="85.1" y="741" width="0.1" height="15.0" fill="rgb(219,64,15)" rx="2" ry="2" /> | |
| <text x="88.07" y="751.5" ></text> | |
| </g> | |
| <g > | |
| <title>si_emit_gfx_resources_add_all_to_bo_list (27,158,836 samples, 0.02%)</title><rect x="83.3" y="709" width="0.2" height="15.0" fill="rgb(248,198,47)" rx="2" ry="2" /> | |
| <text x="86.34" y="719.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_ActiveTexture (33,038,993 samples, 0.02%)</title><rect x="1096.9" y="677" width="0.2" height="15.0" fill="rgb(244,179,42)" rx="2" ry="2" /> | |
| <text x="1099.90" y="687.5" ></text> | |
| </g> | |
| <g > | |
| <title>pthread_mutex_lock@@GLIBC_2.17 (16,334,356 samples, 0.01%)</title><rect x="38.8" y="725" width="0.1" height="15.0" fill="rgb(234,136,32)" rx="2" ry="2" /> | |
| <text x="41.81" y="735.5" ></text> | |
| </g> | |
| <g > | |
| <title>__futex_wait (19,079,733 samples, 0.01%)</title><rect x="516.8" y="517" width="0.1" height="15.0" fill="rgb(207,12,3)" rx="2" ry="2" /> | |
| <text x="519.79" y="527.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_UseProgram (20,091,563 samples, 0.01%)</title><rect x="976.1" y="661" width="0.1" height="15.0" fill="rgb(212,36,8)" rx="2" ry="2" /> | |
| <text x="979.10" y="671.5" ></text> | |
| </g> | |
| <g > | |
| <title>si_set_sampler_views (35,043,370 samples, 0.02%)</title><rect x="529.3" y="645" width="0.2" height="15.0" fill="rgb(218,61,14)" rx="2" ry="2" /> | |
| <text x="532.31" y="655.5" ></text> | |
| </g> | |
| <g > | |
| <title>__memcpy_generic (30,887,438 samples, 0.02%)</title><rect x="27.6" y="789" width="0.2" height="15.0" fill="rgb(231,124,29)" rx="2" ry="2" /> | |
| <text x="30.56" y="799.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_sampler_uniforms_are_valid (16,015,487 samples, 0.01%)</title><rect x="949.8" y="613" width="0.1" height="15.0" fill="rgb(254,229,54)" rx="2" ry="2" /> | |
| <text x="952.81" y="623.5" ></text> | |
| </g> | |
| <g > | |
| <title>el0t_64_sync (23,947,234 samples, 0.01%)</title><rect x="861.2" y="613" width="0.1" height="15.0" fill="rgb(217,56,13)" rx="2" ry="2" /> | |
| <text x="864.16" y="623.5" ></text> | |
| </g> | |
| <g > | |
| <title>dri3_flush_present_events (301,746,910 samples, 0.17%)</title><rect x="1106.5" y="549" width="2.0" height="15.0" fill="rgb(217,57,13)" rx="2" ry="2" /> | |
| <text x="1109.52" y="559.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_program_init_subroutine_defaults (100,355,120 samples, 0.06%)</title><rect x="1146.4" y="629" width="0.6" height="15.0" fill="rgb(231,122,29)" rx="2" ry="2" /> | |
| <text x="1149.39" y="639.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_glthread_finish (2,616,733,380 samples, 1.45%)</title><rect x="843.2" y="677" width="17.1" height="15.0" fill="rgb(209,22,5)" rx="2" ry="2" /> | |
| <text x="846.22" y="687.5" ></text> | |
| </g> | |
| <g > | |
| <title>__pthread_mutex_unlock_full (56,813,096 samples, 0.03%)</title><rect x="11.0" y="773" width="0.4" height="15.0" fill="rgb(230,115,27)" rx="2" ry="2" /> | |
| <text x="13.99" y="783.5" ></text> | |
| </g> | |
| <g > | |
| <title>__aarch64_ldadd4_acq_rel (701,424,457 samples, 0.39%)</title><rect x="210.4" y="725" width="4.6" height="15.0" fill="rgb(228,108,25)" rx="2" ry="2" /> | |
| <text x="213.44" y="735.5" ></text> | |
| </g> | |
| <g > | |
| <title>amdgpu_bo_ref (179,085,198 samples, 0.10%)</title><rect x="293.5" y="549" width="1.2" height="15.0" fill="rgb(216,54,13)" rx="2" ry="2" /> | |
| <text x="296.51" y="559.5" ></text> | |
| </g> | |
| <g > | |
| <title>el0t_64_sync (40,145,728 samples, 0.02%)</title><rect x="1105.9" y="453" width="0.2" height="15.0" fill="rgb(217,56,13)" rx="2" ry="2" /> | |
| <text x="1108.86" y="463.5" ></text> | |
| </g> | |
| <g > | |
| <title>hud_run (120,463,303 samples, 0.07%)</title><rect x="511.6" y="709" width="0.8" height="15.0" fill="rgb(223,84,20)" rx="2" ry="2" /> | |
| <text x="514.60" y="719.5" ></text> | |
| </g> | |
| <g > | |
| <title>tc_call_set_sampler_views (5,472,150,444 samples, 3.03%)</title><rect x="201.8" y="805" width="35.8" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" /> | |
| <text x="204.84" y="815.5" >tc_..</text> | |
| </g> | |
| <g > | |
| <title>amdgpu_do_add_buffer (77,796,473 samples, 0.04%)</title><rect x="47.4" y="757" width="0.5" height="15.0" fill="rgb(223,86,20)" rx="2" ry="2" /> | |
| <text x="50.41" y="767.5" ></text> | |
| </g> | |
| <g > | |
| <title>sock_poll (15,384,094 samples, 0.01%)</title><rect x="543.1" y="533" width="0.1" height="15.0" fill="rgb(223,84,20)" rx="2" ry="2" /> | |
| <text x="546.10" y="543.5" ></text> | |
| </g> | |
| <g > | |
| <title>st_get_texture_sampler_view_from_stobj (228,970,497 samples, 0.13%)</title><rect x="872.5" y="549" width="1.5" height="15.0" fill="rgb(211,32,7)" rx="2" ry="2" /> | |
| <text x="875.47" y="559.5" ></text> | |
| </g> | |
| <g > | |
| <title>bind_buffer_object (141,866,524 samples, 0.08%)</title><rect x="347.9" y="789" width="1.0" height="15.0" fill="rgb(246,190,45)" rx="2" ry="2" /> | |
| <text x="350.94" y="799.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_marshal_BufferSubData_merged (24,082,353 samples, 0.01%)</title><rect x="919.1" y="709" width="0.2" height="15.0" fill="rgb(214,41,9)" rx="2" ry="2" /> | |
| <text x="922.10" y="719.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_unmarshal_UniformMatrix4fv (42,801,983 samples, 0.02%)</title><rect x="879.3" y="645" width="0.3" height="15.0" fill="rgb(249,202,48)" rx="2" ry="2" /> | |
| <text x="882.31" y="655.5" ></text> | |
| </g> | |
| <g > | |
| <title>strcmp (19,764,233 samples, 0.01%)</title><rect x="806.5" y="629" width="0.1" height="15.0" fill="rgb(217,58,13)" rx="2" ry="2" /> | |
| <text x="809.48" y="639.5" ></text> | |
| </g> | |
| <g > | |
| <title>syscall_trace_exit (19,457,168 samples, 0.01%)</title><rect x="1108.2" y="389" width="0.2" height="15.0" fill="rgb(247,196,46)" rx="2" ry="2" /> | |
| <text x="1111.23" y="399.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_marshal_BufferSubData_merged (2,642,937,232 samples, 1.46%)</title><rect x="1076.9" y="757" width="17.3" height="15.0" fill="rgb(214,41,9)" rx="2" ry="2" /> | |
| <text x="1079.88" y="767.5" ></text> | |
| </g> | |
| <g > | |
| <title>cnd_signal (103,112,612 samples, 0.06%)</title><rect x="976.6" y="677" width="0.7" height="15.0" fill="rgb(232,125,30)" rx="2" ry="2" /> | |
| <text x="979.62" y="687.5" ></text> | |
| </g> | |
| <g > | |
| <title>__aarch64_cas4_sync (40,638,129 samples, 0.02%)</title><rect x="822.6" y="629" width="0.3" height="15.0" fill="rgb(253,222,53)" rx="2" ry="2" /> | |
| <text x="825.59" y="639.5" ></text> | |
| </g> | |
| <g > | |
| <title>__kmalloc_node_noprof (59,529,612 samples, 0.03%)</title><rect x="306.6" y="549" width="0.4" height="15.0" fill="rgb(245,185,44)" rx="2" ry="2" /> | |
| <text x="309.57" y="559.5" ></text> | |
| </g> | |
| <g > | |
| <title>strcmp (97,329,840 samples, 0.05%)</title><rect x="817.7" y="661" width="0.6" height="15.0" fill="rgb(217,58,13)" rx="2" ry="2" /> | |
| <text x="820.69" y="671.5" ></text> | |
| </g> | |
| <g > | |
| <title>do_el0_svc (88,973,709 samples, 0.05%)</title><rect x="1095.3" y="629" width="0.6" height="15.0" fill="rgb(218,60,14)" rx="2" ry="2" /> | |
| <text x="1098.34" y="639.5" ></text> | |
| </g> | |
| <g > | |
| <title>update_textures (20,972,058 samples, 0.01%)</title><rect x="1153.9" y="661" width="0.2" height="15.0" fill="rgb(232,125,29)" rx="2" ry="2" /> | |
| <text x="1156.92" y="671.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_reference_renderbuffer_ (59,052,405 samples, 0.03%)</title><rect x="1017.9" y="613" width="0.4" height="15.0" fill="rgb(211,28,6)" rx="2" ry="2" /> | |
| <text x="1020.88" y="623.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_marshal_MapBufferRange (131,698,025 samples, 0.07%)</title><rect x="799.4" y="453" width="0.9" height="15.0" fill="rgb(219,65,15)" rx="2" ry="2" /> | |
| <text x="802.44" y="463.5" ></text> | |
| </g> | |
| <g > | |
| <title>__printf_buffer (27,804,126 samples, 0.02%)</title><rect x="841.9" y="645" width="0.2" height="15.0" fill="rgb(219,68,16)" rx="2" ry="2" /> | |
| <text x="844.90" y="655.5" ></text> | |
| </g> | |
| <g > | |
| <title>st_update_depth_stencil_alpha (36,109,878 samples, 0.02%)</title><rect x="403.9" y="725" width="0.2" height="15.0" fill="rgb(252,219,52)" rx="2" ry="2" /> | |
| <text x="406.86" y="735.5" ></text> | |
| </g> | |
| <g > | |
| <title>__aarch64_ldadd4_acq_rel (16,798,797 samples, 0.01%)</title><rect x="997.2" y="581" width="0.1" height="15.0" fill="rgb(228,108,25)" rx="2" ry="2" /> | |
| <text x="1000.19" y="591.5" ></text> | |
| </g> | |
| <g > | |
| <title>void si_draw_vbo< (8,202,226,193 samples, 4.54%)</title><rect x="129.8" y="789" width="53.6" height="15.0" fill="rgb(226,101,24)" rx="2" ry="2" /> | |
| <text x="132.83" y="799.5" >void ..</text> | |
| </g> | |
| <g > | |
| <title>amdgpu_cs_flush (281,361,163 samples, 0.16%)</title><rect x="37.3" y="773" width="1.8" height="15.0" fill="rgb(205,1,0)" rx="2" ry="2" /> | |
| <text x="40.26" y="783.5" ></text> | |
| </g> | |
| <g > | |
| <title>void st_update_array_templ< (15,448,884 samples, 0.01%)</title><rect x="994.2" y="613" width="0.1" height="15.0" fill="rgb(243,178,42)" rx="2" ry="2" /> | |
| <text x="997.23" y="623.5" ></text> | |
| </g> | |
| <g > | |
| <title>__aarch64_ldadd4_acq_rel (41,471,687 samples, 0.02%)</title><rect x="1118.2" y="613" width="0.3" height="15.0" fill="rgb(228,108,25)" rx="2" ry="2" /> | |
| <text x="1121.21" y="623.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_Uniform4fv (66,572,087 samples, 0.04%)</title><rect x="465.4" y="789" width="0.5" height="15.0" fill="rgb(248,200,47)" rx="2" ry="2" /> | |
| <text x="468.42" y="799.5" ></text> | |
| </g> | |
| <g > | |
| <title>drmSyncobjDestroy (105,906,004 samples, 0.06%)</title><rect x="331.6" y="789" width="0.7" height="15.0" fill="rgb(205,0,0)" rx="2" ry="2" /> | |
| <text x="334.60" y="799.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_unmarshal_Uniform4f (37,798,526 samples, 0.02%)</title><rect x="1090.7" y="709" width="0.2" height="15.0" fill="rgb(224,89,21)" rx="2" ry="2" /> | |
| <text x="1093.67" y="719.5" ></text> | |
| </g> | |
| <g > | |
| <title>tc_call_bind_sampler_states (23,244,507 samples, 0.01%)</title><rect x="60.0" y="789" width="0.2" height="15.0" fill="rgb(243,176,42)" rx="2" ry="2" /> | |
| <text x="63.05" y="799.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_update_texture_state (178,339,251 samples, 0.10%)</title><rect x="991.1" y="597" width="1.1" height="15.0" fill="rgb(237,148,35)" rx="2" ry="2" /> | |
| <text x="994.05" y="607.5" ></text> | |
| </g> | |
| <g > | |
| <title>__aarch64_ldadd4_acq_rel (18,585,167 samples, 0.01%)</title><rect x="872.9" y="533" width="0.2" height="15.0" fill="rgb(228,108,25)" rx="2" ry="2" /> | |
| <text x="875.93" y="543.5" ></text> | |
| </g> | |
| <g > | |
| <title>el0t_64_sync (207,866,852 samples, 0.12%)</title><rect x="536.9" y="613" width="1.4" height="15.0" fill="rgb(217,56,13)" rx="2" ry="2" /> | |
| <text x="539.93" y="623.5" ></text> | |
| </g> | |
| <g > | |
| <title>invoke_syscall (170,785,293 samples, 0.09%)</title><rect x="1107.1" y="389" width="1.1" height="15.0" fill="rgb(209,18,4)" rx="2" ry="2" /> | |
| <text x="1110.06" y="399.5" ></text> | |
| </g> | |
| <g > | |
| <title>void st_update_array_templ< (22,804,415 samples, 0.01%)</title><rect x="856.6" y="565" width="0.2" height="15.0" fill="rgb(243,178,42)" rx="2" ry="2" /> | |
| <text x="859.62" y="575.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_UniformMatrix4fv (20,978,292 samples, 0.01%)</title><rect x="814.3" y="597" width="0.1" height="15.0" fill="rgb(235,139,33)" rx="2" ry="2" /> | |
| <text x="817.30" y="607.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_glthread_flush_batch (138,212,288 samples, 0.08%)</title><rect x="976.4" y="709" width="0.9" height="15.0" fill="rgb(239,158,38)" rx="2" ry="2" /> | |
| <text x="979.41" y="719.5" ></text> | |
| </g> | |
| <g > | |
| <title>el0t_64_sync_handler (19,792,176 samples, 0.01%)</title><rect x="1172.8" y="661" width="0.2" height="15.0" fill="rgb(211,32,7)" rx="2" ry="2" /> | |
| <text x="1175.84" y="671.5" ></text> | |
| </g> | |
| <g > | |
| <title>util_queue_add_job_locked.part.0 (15,308,801 samples, 0.01%)</title><rect x="944.5" y="581" width="0.1" height="15.0" fill="rgb(243,177,42)" rx="2" ry="2" /> | |
| <text x="947.53" y="591.5" ></text> | |
| </g> | |
| <g > | |
| <title>strcspn (63,908,265 samples, 0.04%)</title><rect x="801.3" y="469" width="0.4" height="15.0" fill="rgb(218,61,14)" rx="2" ry="2" /> | |
| <text x="804.26" y="479.5" ></text> | |
| </g> | |
| <g > | |
| <title>strpbrk (124,314,351 samples, 0.07%)</title><rect x="807.9" y="645" width="0.8" height="15.0" fill="rgb(250,210,50)" rx="2" ry="2" /> | |
| <text x="810.89" y="655.5" ></text> | |
| </g> | |
| <g > | |
| <title>__libc_recvmsg (33,834,516 samples, 0.02%)</title><rect x="374.6" y="581" width="0.2" height="15.0" fill="rgb(220,72,17)" rx="2" ry="2" /> | |
| <text x="377.59" y="591.5" ></text> | |
| </g> | |
| <g > | |
| <title>st_destroy_bound_image_handles_per_stage (22,621,376 samples, 0.01%)</title><rect x="412.2" y="709" width="0.2" height="15.0" fill="rgb(226,101,24)" rx="2" ry="2" /> | |
| <text x="415.21" y="719.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_unmarshal_MultiDrawArraysUserBuf (42,008,919 samples, 0.02%)</title><rect x="878.4" y="645" width="0.3" height="15.0" fill="rgb(208,16,3)" rx="2" ry="2" /> | |
| <text x="881.39" y="655.5" ></text> | |
| </g> | |
| <g > | |
| <title>el0_svc_common.constprop.0 (9,959,680,143 samples, 5.52%)</title><rect x="266.2" y="693" width="65.1" height="15.0" fill="rgb(224,89,21)" rx="2" ry="2" /> | |
| <text x="269.18" y="703.5" >el0_svc..</text> | |
| </g> | |
| <g > | |
| <title>__audit_syscall_exit (40,066,502 samples, 0.02%)</title><rect x="344.4" y="693" width="0.3" height="15.0" fill="rgb(218,62,14)" rx="2" ry="2" /> | |
| <text x="347.42" y="703.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_update_state_locked (33,785,766 samples, 0.02%)</title><rect x="376.0" y="757" width="0.2" height="15.0" fill="rgb(214,43,10)" rx="2" ry="2" /> | |
| <text x="378.99" y="767.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_unmarshal_VertexAttrib4Nubv (57,152,830 samples, 0.03%)</title><rect x="814.8" y="613" width="0.4" height="15.0" fill="rgb(245,184,44)" rx="2" ry="2" /> | |
| <text x="817.78" y="623.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_unmarshal_Uniform3fv (356,135,862 samples, 0.20%)</title><rect x="462.6" y="805" width="2.3" height="15.0" fill="rgb(218,63,15)" rx="2" ry="2" /> | |
| <text x="465.60" y="815.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_use_program (24,465,022 samples, 0.01%)</title><rect x="1147.8" y="645" width="0.1" height="15.0" fill="rgb(235,141,33)" rx="2" ry="2" /> | |
| <text x="1150.79" y="655.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_reference_texobj_ (144,118,142 samples, 0.08%)</title><rect x="1102.4" y="677" width="1.0" height="15.0" fill="rgb(229,111,26)" rx="2" ry="2" /> | |
| <text x="1105.43" y="687.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_glthread_finish (85,288,066 samples, 0.05%)</title><rect x="783.2" y="117" width="0.6" height="15.0" fill="rgb(209,22,5)" rx="2" ry="2" /> | |
| <text x="786.23" y="127.5" ></text> | |
| </g> | |
| <g > | |
| <title>__arm64_sys_newfstatat (809,224,504 samples, 0.45%)</title><rect x="1181.4" y="629" width="5.3" height="15.0" fill="rgb(254,228,54)" rx="2" ry="2" /> | |
| <text x="1184.44" y="639.5" ></text> | |
| </g> | |
| <g > | |
| <title>el0_svc (157,298,369 samples, 0.09%)</title><rect x="979.8" y="613" width="1.0" height="15.0" fill="rgb(244,183,43)" rx="2" ry="2" /> | |
| <text x="982.78" y="623.5" ></text> | |
| </g> | |
| <g > | |
| <title>pthread_cond_signal@@GLIBC_2.17 (33,974,148 samples, 0.02%)</title><rect x="956.3" y="629" width="0.2" height="15.0" fill="rgb(232,126,30)" rx="2" ry="2" /> | |
| <text x="959.28" y="639.5" ></text> | |
| </g> | |
| <g > | |
| <title>color_needs_decompression (22,782,656 samples, 0.01%)</title><rect x="216.8" y="757" width="0.1" height="15.0" fill="rgb(210,26,6)" rx="2" ry="2" /> | |
| <text x="219.76" y="767.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_unmarshal_Viewport (39,237,365 samples, 0.02%)</title><rect x="494.0" y="805" width="0.3" height="15.0" fill="rgb(242,172,41)" rx="2" ry="2" /> | |
| <text x="497.02" y="815.5" ></text> | |
| </g> | |
| <g > | |
| <title>si_query_buffer_reset (83,845,799 samples, 0.05%)</title><rect x="47.9" y="773" width="0.6" height="15.0" fill="rgb(215,50,11)" rx="2" ry="2" /> | |
| <text x="50.92" y="783.5" ></text> | |
| </g> | |
| <g > | |
| <title>cso_set_vertex_elements (16,634,409 samples, 0.01%)</title><rect x="811.6" y="533" width="0.1" height="15.0" fill="rgb(238,152,36)" rx="2" ry="2" /> | |
| <text x="814.59" y="543.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_marshal_MapBufferRange (1,976,695,617 samples, 1.09%)</title><rect x="1055.4" y="741" width="12.9" height="15.0" fill="rgb(219,65,15)" rx="2" ry="2" /> | |
| <text x="1058.41" y="751.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_use_program (143,464,260 samples, 0.08%)</title><rect x="1026.0" y="613" width="0.9" height="15.0" fill="rgb(235,141,33)" rx="2" ry="2" /> | |
| <text x="1029.01" y="623.5" ></text> | |
| </g> | |
| <g > | |
| <title>bind_texture_object (32,201,758 samples, 0.02%)</title><rect x="810.5" y="597" width="0.2" height="15.0" fill="rgb(221,73,17)" rx="2" ry="2" /> | |
| <text x="813.45" y="607.5" ></text> | |
| </g> | |
| <g > | |
| <title>amdgpu_bo_wait (15,967,107 samples, 0.01%)</title><rect x="1104.3" y="629" width="0.1" height="15.0" fill="rgb(241,168,40)" rx="2" ry="2" /> | |
| <text x="1107.29" y="639.5" ></text> | |
| </g> | |
| <g > | |
| <title>_itoa_word (30,425,599 samples, 0.02%)</title><rect x="970.5" y="677" width="0.2" height="15.0" fill="rgb(246,191,45)" rx="2" ry="2" /> | |
| <text x="973.50" y="687.5" ></text> | |
| </g> | |
| <g > | |
| <title>tc_call_draw_multi (16,227,057 samples, 0.01%)</title><rect x="85.9" y="805" width="0.1" height="15.0" fill="rgb(209,19,4)" rx="2" ry="2" /> | |
| <text x="88.87" y="815.5" ></text> | |
| </g> | |
| <g > | |
| <title>el0t_64_sync_handler (25,578,368 samples, 0.01%)</title><rect x="876.3" y="453" width="0.2" height="15.0" fill="rgb(211,32,7)" rx="2" ry="2" /> | |
| <text x="879.31" y="463.5" ></text> | |
| </g> | |
| <g > | |
| <title>si_pm4_emit_state (152,305,285 samples, 0.08%)</title><rect x="158.3" y="741" width="1.0" height="15.0" fill="rgb(232,128,30)" rx="2" ry="2" /> | |
| <text x="161.32" y="751.5" ></text> | |
| </g> | |
| <g > | |
| <title>el0t_64_sync (15,832,224 samples, 0.01%)</title><rect x="1050.5" y="693" width="0.1" height="15.0" fill="rgb(217,56,13)" rx="2" ry="2" /> | |
| <text x="1053.50" y="703.5" ></text> | |
| </g> | |
| <g > | |
| <title>si_bind_blend_state (49,716,324 samples, 0.03%)</title><rect x="50.0" y="789" width="0.3" height="15.0" fill="rgb(222,82,19)" rx="2" ry="2" /> | |
| <text x="52.99" y="799.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_update_framebuffer_visual (22,213,785 samples, 0.01%)</title><rect x="1080.7" y="597" width="0.2" height="15.0" fill="rgb(241,167,40)" rx="2" ry="2" /> | |
| <text x="1083.72" y="607.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_unmarshal_Clear (33,508,373 samples, 0.02%)</title><rect x="1057.8" y="693" width="0.2" height="15.0" fill="rgb(227,105,25)" rx="2" ry="2" /> | |
| <text x="1060.79" y="703.5" ></text> | |
| </g> | |
| <g > | |
| <title>__kmalloc_node_noprof (22,528,158 samples, 0.01%)</title><rect x="290.4" y="533" width="0.2" height="15.0" fill="rgb(245,185,44)" rx="2" ry="2" /> | |
| <text x="293.43" y="543.5" ></text> | |
| </g> | |
| <g > | |
| <title>ksys_read (21,103,875 samples, 0.01%)</title><rect x="13.0" y="565" width="0.1" height="15.0" fill="rgb(229,113,27)" rx="2" ry="2" /> | |
| <text x="15.98" y="575.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_uniform (21,481,549 samples, 0.01%)</title><rect x="1137.5" y="693" width="0.1" height="15.0" fill="rgb(248,201,48)" rx="2" ry="2" /> | |
| <text x="1140.48" y="703.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_uniform (16,439,166 samples, 0.01%)</title><rect x="1020.4" y="629" width="0.1" height="15.0" fill="rgb(248,201,48)" rx="2" ry="2" /> | |
| <text x="1023.43" y="639.5" ></text> | |
| </g> | |
| <g > | |
| <title>wake_up_q (25,103,021 samples, 0.01%)</title><rect x="456.0" y="517" width="0.2" height="15.0" fill="rgb(237,151,36)" rx="2" ry="2" /> | |
| <text x="459.04" y="527.5" ></text> | |
| </g> | |
| <g > | |
| <title>void amdgpu_cs_submit_ib< (446,826,451 samples, 0.25%)</title><rect x="334.5" y="805" width="2.9" height="15.0" fill="rgb(245,188,44)" rx="2" ry="2" /> | |
| <text x="337.50" y="815.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_unmarshal_BufferData (21,982,368 samples, 0.01%)</title><rect x="987.7" y="677" width="0.1" height="15.0" fill="rgb(243,175,41)" rx="2" ry="2" /> | |
| <text x="990.70" y="687.5" ></text> | |
| </g> | |
| <g > | |
| <title>void st_update_array_templ< (242,325,731 samples, 0.13%)</title><rect x="999.3" y="629" width="1.6" height="15.0" fill="rgb(243,178,42)" rx="2" ry="2" /> | |
| <text x="1002.30" y="639.5" ></text> | |
| </g> | |
| <g > | |
| <title>vbo_exec_FlushVertices (31,700,736 samples, 0.02%)</title><rect x="987.1" y="645" width="0.2" height="15.0" fill="rgb(226,100,24)" rx="2" ry="2" /> | |
| <text x="990.12" y="655.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_flush_vertices_for_uniforms (51,069,429 samples, 0.03%)</title><rect x="470.7" y="741" width="0.4" height="15.0" fill="rgb(211,31,7)" rx="2" ry="2" /> | |
| <text x="473.72" y="751.5" ></text> | |
| </g> | |
| <g > | |
| <title>amdgpu_cs_sync_rings (1,177,063,311 samples, 0.65%)</title><rect x="313.4" y="581" width="7.7" height="15.0" fill="rgb(210,25,5)" rx="2" ry="2" /> | |
| <text x="316.37" y="591.5" ></text> | |
| </g> | |
| <g > | |
| <title>strcspn (107,840,950 samples, 0.06%)</title><rect x="911.7" y="661" width="0.7" height="15.0" fill="rgb(218,61,14)" rx="2" ry="2" /> | |
| <text x="914.65" y="671.5" ></text> | |
| </g> | |
| <g > | |
| <title>fmod@@GLIBC_2.38 (19,930,130 samples, 0.01%)</title><rect x="1069.3" y="741" width="0.1" height="15.0" fill="rgb(205,1,0)" rx="2" ry="2" /> | |
| <text x="1072.30" y="751.5" ></text> | |
| </g> | |
| <g > | |
| <title>amdgpu_drm_ioctl (35,156,610 samples, 0.02%)</title><rect x="38.4" y="581" width="0.2" height="15.0" fill="rgb(246,190,45)" rx="2" ry="2" /> | |
| <text x="41.38" y="591.5" ></text> | |
| </g> | |
| <g > | |
| <title>memset (23,637,015 samples, 0.01%)</title><rect x="307.0" y="565" width="0.1" height="15.0" fill="rgb(208,14,3)" rx="2" ry="2" /> | |
| <text x="309.96" y="575.5" ></text> | |
| </g> | |
| <g > | |
| <title>tc_call_set_sampler_views (30,686,837 samples, 0.02%)</title><rect x="47.0" y="789" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" /> | |
| <text x="49.97" y="799.5" ></text> | |
| </g> | |
| <g > | |
| <title>cp_new_stat (16,452,057 samples, 0.01%)</title><rect x="1181.5" y="597" width="0.1" height="15.0" fill="rgb(223,83,19)" rx="2" ry="2" /> | |
| <text x="1184.47" y="607.5" ></text> | |
| </g> | |
| <g > | |
| <title>el0t_64_sync_handler (18,434,936 samples, 0.01%)</title><rect x="1068.6" y="629" width="0.1" height="15.0" fill="rgb(211,32,7)" rx="2" ry="2" /> | |
| <text x="1071.58" y="639.5" ></text> | |
| </g> | |
| <g > | |
| <title>amdgpu_do_add_buffer (22,355,583 samples, 0.01%)</title><rect x="82.9" y="677" width="0.2" height="15.0" fill="rgb(223,86,20)" rx="2" ry="2" /> | |
| <text x="85.93" y="687.5" ></text> | |
| </g> | |
| <g > | |
| <title>invoke_syscall (19,436,433 samples, 0.01%)</title><rect x="420.2" y="517" width="0.1" height="15.0" fill="rgb(209,18,4)" rx="2" ry="2" /> | |
| <text x="423.22" y="527.5" ></text> | |
| </g> | |
| <g > | |
| <title>cnd_signal (29,741,337 samples, 0.02%)</title><rect x="453.1" y="677" width="0.2" height="15.0" fill="rgb(232,125,30)" rx="2" ry="2" /> | |
| <text x="456.10" y="687.5" ></text> | |
| </g> | |
| <g > | |
| <title>amdgpu_bo_wait (38,708,913 samples, 0.02%)</title><rect x="48.0" y="757" width="0.3" height="15.0" fill="rgb(241,168,40)" rx="2" ry="2" /> | |
| <text x="51.02" y="767.5" ></text> | |
| </g> | |
| <g > | |
| <title>si_set_constant_buffer (231,865,940 samples, 0.13%)</title><rect x="196.0" y="773" width="1.5" height="15.0" fill="rgb(215,46,11)" rx="2" ry="2" /> | |
| <text x="198.98" y="783.5" ></text> | |
| </g> | |
| <g > | |
| <title>update_shader_samplers (29,675,016 samples, 0.02%)</title><rect x="1087.0" y="629" width="0.2" height="15.0" fill="rgb(229,113,27)" rx="2" ry="2" /> | |
| <text x="1090.02" y="639.5" ></text> | |
| </g> | |
| <g > | |
| <title>el0_svc (113,892,474 samples, 0.06%)</title><rect x="972.6" y="613" width="0.8" height="15.0" fill="rgb(244,183,43)" rx="2" ry="2" /> | |
| <text x="975.61" y="623.5" ></text> | |
| </g> | |
| <g > | |
| <title>gfx6_decompress_textures (29,608,072 samples, 0.02%)</title><rect x="138.3" y="773" width="0.2" height="15.0" fill="rgb(216,53,12)" rx="2" ry="2" /> | |
| <text x="141.33" y="783.5" ></text> | |
| </g> | |
| <g > | |
| <title>[redeclipse] (4,245,957,366 samples, 2.35%)</title><rect x="769.7" y="389" width="27.7" height="15.0" fill="rgb(253,222,53)" rx="2" ry="2" /> | |
| <text x="772.70" y="399.5" >[..</text> | |
| </g> | |
| <g > | |
| <title>si_bind_vertex_elements (81,052,685 samples, 0.04%)</title><rect x="60.3" y="789" width="0.5" height="15.0" fill="rgb(243,176,42)" rx="2" ry="2" /> | |
| <text x="63.29" y="799.5" ></text> | |
| </g> | |
| <g > | |
| <title>[libSDL2-2.0.so.0.3000.0] (208,926,904 samples, 0.12%)</title><rect x="10.0" y="837" width="1.4" height="15.0" fill="rgb(227,102,24)" rx="2" ry="2" /> | |
| <text x="13.00" y="847.5" ></text> | |
| </g> | |
| <g > | |
| <title>el0_svc_common.constprop.0 (82,331,691 samples, 0.05%)</title><rect x="976.8" y="565" width="0.5" height="15.0" fill="rgb(224,89,21)" rx="2" ry="2" /> | |
| <text x="979.75" y="575.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_update_state_locked (23,704,955 samples, 0.01%)</title><rect x="867.4" y="581" width="0.1" height="15.0" fill="rgb(214,43,10)" rx="2" ry="2" /> | |
| <text x="870.36" y="591.5" ></text> | |
| </g> | |
| <g > | |
| <title>__arm64_sys_ioctl (20,694,897 samples, 0.01%)</title><rect x="538.3" y="517" width="0.2" height="15.0" fill="rgb(207,11,2)" rx="2" ry="2" /> | |
| <text x="541.32" y="527.5" ></text> | |
| </g> | |
| <g > | |
| <title>rseq_update_cpu_node_id (29,661,446 samples, 0.02%)</title><rect x="980.5" y="565" width="0.2" height="15.0" fill="rgb(224,88,21)" rx="2" ry="2" /> | |
| <text x="983.55" y="575.5" ></text> | |
| </g> | |
| <g > | |
| <title>pipe_read (33,438,421 samples, 0.02%)</title><rect x="14.8" y="581" width="0.2" height="15.0" fill="rgb(210,25,6)" rx="2" ry="2" /> | |
| <text x="17.79" y="591.5" ></text> | |
| </g> | |
| <g > | |
| <title>invoke_syscall (17,578,970 samples, 0.01%)</title><rect x="418.8" y="549" width="0.2" height="15.0" fill="rgb(209,18,4)" rx="2" ry="2" /> | |
| <text x="421.84" y="559.5" ></text> | |
| </g> | |
| <g > | |
| <title>si_set_shader_buffer (19,947,828 samples, 0.01%)</title><rect x="81.7" y="677" width="0.1" height="15.0" fill="rgb(234,137,32)" rx="2" ry="2" /> | |
| <text x="84.70" y="687.5" ></text> | |
| </g> | |
| <g > | |
| <title>__arm64_sys_futex (28,181,949 samples, 0.02%)</title><rect x="843.4" y="517" width="0.2" height="15.0" fill="rgb(247,196,47)" rx="2" ry="2" /> | |
| <text x="846.44" y="527.5" ></text> | |
| </g> | |
| <g > | |
| <title>cnd_signal (16,504,186 samples, 0.01%)</title><rect x="1076.7" y="709" width="0.1" height="15.0" fill="rgb(232,125,30)" rx="2" ry="2" /> | |
| <text x="1079.68" y="719.5" ></text> | |
| </g> | |
| <g > | |
| <title>copy_uniforms_to_storage (15,816,466 samples, 0.01%)</title><rect x="1140.1" y="661" width="0.1" height="15.0" fill="rgb(250,207,49)" rx="2" ry="2" /> | |
| <text x="1143.10" y="671.5" ></text> | |
| </g> | |
| <g > | |
| <title>copy_uniform_matrix_to_storage (39,221,816 samples, 0.02%)</title><rect x="947.8" y="613" width="0.3" height="15.0" fill="rgb(209,20,4)" rx="2" ry="2" /> | |
| <text x="950.84" y="623.5" ></text> | |
| </g> | |
| <g > | |
| <title>si_fast_clear (233,779,873 samples, 0.13%)</title><rect x="80.4" y="773" width="1.6" height="15.0" fill="rgb(234,135,32)" rx="2" ry="2" /> | |
| <text x="83.43" y="783.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_marshal_Uniform3fv (17,056,990 samples, 0.01%)</title><rect x="955.9" y="709" width="0.1" height="15.0" fill="rgb(235,138,33)" rx="2" ry="2" /> | |
| <text x="958.90" y="719.5" ></text> | |
| </g> | |
| <g > | |
| <title>si_begin_new_gfx_cs (24,273,323 samples, 0.01%)</title><rect x="39.1" y="773" width="0.2" height="15.0" fill="rgb(234,134,32)" rx="2" ry="2" /> | |
| <text x="42.11" y="783.5" ></text> | |
| </g> | |
| <g > | |
| <title>si_begin_query (20,067,184 samples, 0.01%)</title><rect x="47.3" y="789" width="0.1" height="15.0" fill="rgb(218,64,15)" rx="2" ry="2" /> | |
| <text x="50.25" y="799.5" ></text> | |
| </g> | |
| <g > | |
| <title>__memcpy_generic (32,998,890 samples, 0.02%)</title><rect x="1021.1" y="629" width="0.2" height="15.0" fill="rgb(231,124,29)" rx="2" ry="2" /> | |
| <text x="1024.12" y="639.5" ></text> | |
| </g> | |
| <g > | |
| <title>futex_wait (45,110,400 samples, 0.02%)</title><rect x="972.7" y="517" width="0.2" height="15.0" fill="rgb(235,138,33)" rx="2" ry="2" /> | |
| <text x="975.65" y="527.5" ></text> | |
| </g> | |
| <g > | |
| <title>do_writev (271,878,652 samples, 0.15%)</title><rect x="540.9" y="565" width="1.8" height="15.0" fill="rgb(239,157,37)" rx="2" ry="2" /> | |
| <text x="543.95" y="575.5" ></text> | |
| </g> | |
| <g > | |
| <title>mtx_unlock (199,908,608 samples, 0.11%)</title><rect x="35.8" y="821" width="1.3" height="15.0" fill="rgb(209,19,4)" rx="2" ry="2" /> | |
| <text x="38.81" y="831.5" ></text> | |
| </g> | |
| <g > | |
| <title>[libz.so.1.3] (24,890,148 samples, 0.01%)</title><rect x="957.4" y="677" width="0.1" height="15.0" fill="rgb(230,116,27)" rx="2" ry="2" /> | |
| <text x="960.36" y="687.5" ></text> | |
| </g> | |
| <g > | |
| <title>link_path_walk.part.0.constprop.0 (365,540,032 samples, 0.20%)</title><rect x="1182.9" y="533" width="2.4" height="15.0" fill="rgb(248,199,47)" rx="2" ry="2" /> | |
| <text x="1185.91" y="543.5" ></text> | |
| </g> | |
| <g > | |
| <title>impl_thrd_routine (13,569,053,316 samples, 7.52%)</title><rect x="248.7" y="853" width="88.7" height="15.0" fill="rgb(229,110,26)" rx="2" ry="2" /> | |
| <text x="251.73" y="863.5" >impl_thrd_..</text> | |
| </g> | |
| <g > | |
| <title>_mesa_update_framebuffer (140,829,859 samples, 0.08%)</title><rect x="1080.0" y="645" width="0.9" height="15.0" fill="rgb(218,62,14)" rx="2" ry="2" /> | |
| <text x="1083.02" y="655.5" ></text> | |
| </g> | |
| <g > | |
| <title>gfx6_emit_framebuffer_state (19,817,104 samples, 0.01%)</title><rect x="83.1" y="693" width="0.1" height="15.0" fill="rgb(245,185,44)" rx="2" ry="2" /> | |
| <text x="86.09" y="703.5" ></text> | |
| </g> | |
| <g > | |
| <title>tc_set_sampler_views (287,256,966 samples, 0.16%)</title><rect x="448.1" y="709" width="1.9" height="15.0" fill="rgb(250,209,50)" rx="2" ry="2" /> | |
| <text x="451.09" y="719.5" ></text> | |
| </g> | |
| <g > | |
| <title>get_inode_acl (31,262,906 samples, 0.02%)</title><rect x="1183.9" y="469" width="0.2" height="15.0" fill="rgb(250,210,50)" rx="2" ry="2" /> | |
| <text x="1186.94" y="479.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_bind_vertex_buffer (49,260,079 samples, 0.03%)</title><rect x="952.4" y="613" width="0.3" height="15.0" fill="rgb(241,166,39)" rx="2" ry="2" /> | |
| <text x="955.36" y="623.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_marshal_ActiveTexture (15,515,208 samples, 0.01%)</title><rect x="971.6" y="725" width="0.1" height="15.0" fill="rgb(224,88,21)" rx="2" ry="2" /> | |
| <text x="974.61" y="735.5" ></text> | |
| </g> | |
| <g > | |
| <title>update_array.constprop.0 (76,785,943 samples, 0.04%)</title><rect x="493.3" y="773" width="0.5" height="15.0" fill="rgb(224,88,21)" rx="2" ry="2" /> | |
| <text x="496.33" y="783.5" ></text> | |
| </g> | |
| <g > | |
| <title>si_set_mutable_tex_desc_fields (938,823,603 samples, 0.52%)</title><rect x="218.5" y="725" width="6.1" height="15.0" fill="rgb(226,97,23)" rx="2" ry="2" /> | |
| <text x="221.46" y="735.5" ></text> | |
| </g> | |
| <g > | |
| <title>st_prepare_draw (20,960,493 samples, 0.01%)</title><rect x="1172.3" y="693" width="0.1" height="15.0" fill="rgb(214,45,10)" rx="2" ry="2" /> | |
| <text x="1175.31" y="703.5" ></text> | |
| </g> | |
| <g > | |
| <title>amdgpu_lookup_buffer (16,808,207 samples, 0.01%)</title><rect x="528.6" y="629" width="0.1" height="15.0" fill="rgb(216,54,13)" rx="2" ry="2" /> | |
| <text x="531.56" y="639.5" ></text> | |
| </g> | |
| <g > | |
| <title>el0t_64_sync (231,610,995 samples, 0.13%)</title><rect x="1106.8" y="469" width="1.6" height="15.0" fill="rgb(217,56,13)" rx="2" ry="2" /> | |
| <text x="1109.84" y="479.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_reference_texobj_ (83,518,697 samples, 0.05%)</title><rect x="1115.2" y="629" width="0.5" height="15.0" fill="rgb(229,111,26)" rx="2" ry="2" /> | |
| <text x="1118.17" y="639.5" ></text> | |
| </g> | |
| <g > | |
| <title>audit_copy_inode (97,638,523 samples, 0.05%)</title><rect x="1182.2" y="533" width="0.7" height="15.0" fill="rgb(214,41,9)" rx="2" ry="2" /> | |
| <text x="1185.22" y="543.5" ></text> | |
| </g> | |
| <g > | |
| <title>__aarch64_ldadd4_acq_rel (94,943,436 samples, 0.05%)</title><rect x="200.3" y="757" width="0.6" height="15.0" fill="rgb(228,108,25)" rx="2" ry="2" /> | |
| <text x="203.32" y="767.5" ></text> | |
| </g> | |
| <g > | |
| <title>dri2_allocate_textures (491,195,126 samples, 0.27%)</title><rect x="1105.5" y="613" width="3.2" height="15.0" fill="rgb(231,122,29)" rx="2" ry="2" /> | |
| <text x="1108.45" y="623.5" ></text> | |
| </g> | |
| <g > | |
| <title>_glapi_get_current (46,680,258 samples, 0.03%)</title><rect x="583.3" y="741" width="0.3" height="15.0" fill="rgb(233,130,31)" rx="2" ry="2" /> | |
| <text x="586.32" y="751.5" ></text> | |
| </g> | |
| <g > | |
| <title>__GI___pthread_mutex_unlock_usercnt (98,496,451 samples, 0.05%)</title><rect x="253.9" y="805" width="0.6" height="15.0" fill="rgb(231,123,29)" rx="2" ry="2" /> | |
| <text x="256.90" y="815.5" ></text> | |
| </g> | |
| <g > | |
| <title>tc_batch_flush (19,010,032 samples, 0.01%)</title><rect x="1136.2" y="645" width="0.1" height="15.0" fill="rgb(249,206,49)" rx="2" ry="2" /> | |
| <text x="1139.21" y="655.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_update_state (29,409,055 samples, 0.02%)</title><rect x="931.7" y="613" width="0.1" height="15.0" fill="rgb(222,78,18)" rx="2" ry="2" /> | |
| <text x="934.66" y="623.5" ></text> | |
| </g> | |
| <g > | |
| <title>strchr (75,889,352 samples, 0.04%)</title><rect x="907.1" y="693" width="0.5" height="15.0" fill="rgb(237,147,35)" rx="2" ry="2" /> | |
| <text x="910.07" y="703.5" ></text> | |
| </g> | |
| <g > | |
| <title>cnd_signal (15,308,801 samples, 0.01%)</title><rect x="944.5" y="565" width="0.1" height="15.0" fill="rgb(232,125,30)" rx="2" ry="2" /> | |
| <text x="947.53" y="575.5" ></text> | |
| </g> | |
| <g > | |
| <title>strcspn (38,506,714 samples, 0.02%)</title><rect x="792.3" y="261" width="0.3" height="15.0" fill="rgb(218,61,14)" rx="2" ry="2" /> | |
| <text x="795.34" y="271.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_update_state_locked (16,823,894 samples, 0.01%)</title><rect x="928.3" y="597" width="0.1" height="15.0" fill="rgb(214,43,10)" rx="2" ry="2" /> | |
| <text x="931.31" y="607.5" ></text> | |
| </g> | |
| <g > | |
| <title>strcspn (54,752,852 samples, 0.03%)</title><rect x="796.5" y="357" width="0.4" height="15.0" fill="rgb(218,61,14)" rx="2" ry="2" /> | |
| <text x="799.53" y="367.5" ></text> | |
| </g> | |
| <g > | |
| <title>[redeclipse] (266,969,043 samples, 0.15%)</title><rect x="781.3" y="133" width="1.7" height="15.0" fill="rgb(253,222,53)" rx="2" ry="2" /> | |
| <text x="784.30" y="143.5" ></text> | |
| </g> | |
| <g > | |
| <title>si_buffer_transfer_map (48,021,554 samples, 0.03%)</title><rect x="961.0" y="645" width="0.3" height="15.0" fill="rgb(237,151,36)" rx="2" ry="2" /> | |
| <text x="963.96" y="655.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_update_state_locked (43,233,594 samples, 0.02%)</title><rect x="1152.9" y="661" width="0.3" height="15.0" fill="rgb(214,43,10)" rx="2" ry="2" /> | |
| <text x="1155.91" y="671.5" ></text> | |
| </g> | |
| <g > | |
| <title>tc_call_bind_blend_state (48,123,857 samples, 0.03%)</title><rect x="50.3" y="789" width="0.3" height="15.0" fill="rgb(230,115,27)" rx="2" ry="2" /> | |
| <text x="53.32" y="799.5" ></text> | |
| </g> | |
| <g > | |
| <title>invoke_syscall (29,748,659 samples, 0.02%)</title><rect x="1160.8" y="485" width="0.2" height="15.0" fill="rgb(209,18,4)" rx="2" ry="2" /> | |
| <text x="1163.77" y="495.5" ></text> | |
| </g> | |
| <g > | |
| <title>st_get_sampler_view_format (18,894,669 samples, 0.01%)</title><rect x="873.8" y="517" width="0.2" height="15.0" fill="rgb(211,30,7)" rx="2" ry="2" /> | |
| <text x="876.85" y="527.5" ></text> | |
| </g> | |
| <g > | |
| <title>[redeclipse] (17,982,873,705 samples, 9.96%)</title><rect x="722.2" y="693" width="117.5" height="15.0" fill="rgb(253,222,53)" rx="2" ry="2" /> | |
| <text x="725.17" y="703.5" >[redeclipse]</text> | |
| </g> | |
| <g > | |
| <title>cso_set_vertex_elements (23,924,781 samples, 0.01%)</title><rect x="856.5" y="565" width="0.1" height="15.0" fill="rgb(238,152,36)" rx="2" ry="2" /> | |
| <text x="859.47" y="575.5" ></text> | |
| </g> | |
| <g > | |
| <title>shared_dispatch_stub_338 (16,472,917 samples, 0.01%)</title><rect x="1040.8" y="725" width="0.2" height="15.0" fill="rgb(216,53,12)" rx="2" ry="2" /> | |
| <text x="1043.84" y="735.5" ></text> | |
| </g> | |
| <g > | |
| <title>st_prepare_draw (199,370,883 samples, 0.11%)</title><rect x="929.1" y="629" width="1.3" height="15.0" fill="rgb(214,45,10)" rx="2" ry="2" /> | |
| <text x="932.12" y="639.5" ></text> | |
| </g> | |
| <g > | |
| <title>do_futex (24,040,853 samples, 0.01%)</title><rect x="14.4" y="597" width="0.2" height="15.0" fill="rgb(245,184,44)" rx="2" ry="2" /> | |
| <text x="17.44" y="607.5" ></text> | |
| </g> | |
| <g > | |
| <title>amdgpu_ctx_add_fence (68,220,809 samples, 0.04%)</title><rect x="308.2" y="565" width="0.4" height="15.0" fill="rgb(254,227,54)" rx="2" ry="2" /> | |
| <text x="311.16" y="575.5" ></text> | |
| </g> | |
| <g > | |
| <title>memcpy@plt (15,312,033 samples, 0.01%)</title><rect x="447.6" y="709" width="0.1" height="15.0" fill="rgb(224,88,21)" rx="2" ry="2" /> | |
| <text x="450.61" y="719.5" ></text> | |
| </g> | |
| <g > | |
| <title>util_queue_thread_func (20,726,969 samples, 0.01%)</title><rect x="254.7" y="821" width="0.1" height="15.0" fill="rgb(247,195,46)" rx="2" ry="2" /> | |
| <text x="257.68" y="831.5" ></text> | |
| </g> | |
| <g > | |
| <title>slab_alloc (52,625,464 samples, 0.03%)</title><rect x="833.2" y="565" width="0.3" height="15.0" fill="rgb(221,74,17)" rx="2" ry="2" /> | |
| <text x="836.17" y="575.5" ></text> | |
| </g> | |
| <g > | |
| <title>st_get_texture_sampler_view_from_stobj (376,305,058 samples, 0.21%)</title><rect x="852.8" y="549" width="2.5" height="15.0" fill="rgb(211,32,7)" rx="2" ry="2" /> | |
| <text x="855.85" y="559.5" ></text> | |
| </g> | |
| <g > | |
| <title>__vsprintf_internal (263,905,053 samples, 0.15%)</title><rect x="513.3" y="661" width="1.7" height="15.0" fill="rgb(248,199,47)" rx="2" ry="2" /> | |
| <text x="516.25" y="671.5" ></text> | |
| </g> | |
| <g > | |
| <title>[redeclipse] (5,424,170,789 samples, 3.00%)</title><rect x="767.9" y="533" width="35.5" height="15.0" fill="rgb(253,222,53)" rx="2" ry="2" /> | |
| <text x="770.92" y="543.5" >[re..</text> | |
| </g> | |
| <g > | |
| <title>st_get_sampler_views (55,335,734 samples, 0.03%)</title><rect x="865.9" y="581" width="0.4" height="15.0" fill="rgb(224,91,21)" rx="2" ry="2" /> | |
| <text x="868.90" y="591.5" ></text> | |
| </g> | |
| <g > | |
| <title>__libc_calloc (21,287,184 samples, 0.01%)</title><rect x="188.0" y="725" width="0.2" height="15.0" fill="rgb(205,4,0)" rx="2" ry="2" /> | |
| <text x="191.04" y="735.5" ></text> | |
| </g> | |
| <g > | |
| <title>el0_svc_common.constprop.0 (406,284,185 samples, 0.23%)</title><rect x="28.9" y="693" width="2.6" height="15.0" fill="rgb(224,89,21)" rx="2" ry="2" /> | |
| <text x="31.89" y="703.5" ></text> | |
| </g> | |
| <g > | |
| <title>el0_svc_common.constprop.0 (67,284,641 samples, 0.04%)</title><rect x="901.7" y="437" width="0.5" height="15.0" fill="rgb(224,89,21)" rx="2" ry="2" /> | |
| <text x="904.73" y="447.5" ></text> | |
| </g> | |
| <g > | |
| <title>__aarch64_ldadd4_acq_rel (30,659,486 samples, 0.02%)</title><rect x="520.1" y="661" width="0.2" height="15.0" fill="rgb(228,108,25)" rx="2" ry="2" /> | |
| <text x="523.11" y="671.5" ></text> | |
| </g> | |
| <g > | |
| <title>valid_texture_object.isra.0 (25,416,933 samples, 0.01%)</title><rect x="370.8" y="757" width="0.2" height="15.0" fill="rgb(239,158,38)" rx="2" ry="2" /> | |
| <text x="373.78" y="767.5" ></text> | |
| </g> | |
| <g > | |
| <title>__memcpy_generic (18,299,810 samples, 0.01%)</title><rect x="159.8" y="757" width="0.2" height="15.0" fill="rgb(231,124,29)" rx="2" ry="2" /> | |
| <text x="162.85" y="767.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_draw_arrays.part.0 (24,502,511 samples, 0.01%)</title><rect x="1058.8" y="661" width="0.2" height="15.0" fill="rgb(227,104,25)" rx="2" ry="2" /> | |
| <text x="1061.81" y="671.5" ></text> | |
| </g> | |
| <g > | |
| <title>el0t_64_sync (36,424,765 samples, 0.02%)</title><rect x="506.5" y="757" width="0.2" height="15.0" fill="rgb(217,56,13)" rx="2" ry="2" /> | |
| <text x="509.48" y="767.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_marshal_GetQueryObjectuiv (8,571,782,214 samples, 4.75%)</title><rect x="1094.8" y="757" width="56.0" height="15.0" fill="rgb(214,43,10)" rx="2" ry="2" /> | |
| <text x="1097.75" y="767.5" >_mesa..</text> | |
| </g> | |
| <g > | |
| <title>void si_draw_vbo< (24,639,532 samples, 0.01%)</title><rect x="521.4" y="661" width="0.2" height="15.0" fill="rgb(226,101,24)" rx="2" ry="2" /> | |
| <text x="524.45" y="671.5" ></text> | |
| </g> | |
| <g > | |
| <title>futex_q_lock (24,922,501 samples, 0.01%)</title><rect x="339.0" y="581" width="0.1" height="15.0" fill="rgb(219,64,15)" rx="2" ry="2" /> | |
| <text x="341.96" y="591.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_unmarshal_Disable (28,828,976 samples, 0.02%)</title><rect x="1058.0" y="693" width="0.2" height="15.0" fill="rgb(253,223,53)" rx="2" ry="2" /> | |
| <text x="1061.04" y="703.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_unmarshal_Uniform3f (126,670,644 samples, 0.07%)</title><rect x="461.8" y="805" width="0.8" height="15.0" fill="rgb(231,119,28)" rx="2" ry="2" /> | |
| <text x="464.77" y="815.5" ></text> | |
| </g> | |
| <g > | |
| <title>drm_sched_job_arm (18,370,883 samples, 0.01%)</title><rect x="312.3" y="565" width="0.1" height="15.0" fill="rgb(231,120,28)" rx="2" ry="2" /> | |
| <text x="315.28" y="575.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_VertexAttrib4Nubv (26,331,334 samples, 0.01%)</title><rect x="881.3" y="629" width="0.1" height="15.0" fill="rgb(231,121,29)" rx="2" ry="2" /> | |
| <text x="884.26" y="639.5" ></text> | |
| </g> | |
| <g > | |
| <title>invoke_syscall (24,323,117 samples, 0.01%)</title><rect x="516.8" y="581" width="0.1" height="15.0" fill="rgb(209,18,4)" rx="2" ry="2" /> | |
| <text x="519.77" y="591.5" ></text> | |
| </g> | |
| <g > | |
| <title>amdgpu_cs_add_buffer (184,022,456 samples, 0.10%)</title><rect x="157.1" y="741" width="1.2" height="15.0" fill="rgb(254,227,54)" rx="2" ry="2" /> | |
| <text x="160.10" y="751.5" ></text> | |
| </g> | |
| <g > | |
| <title>all (180,546,135,173 samples, 100%)</title><rect x="10.0" y="917" width="1180.0" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> | |
| <text x="13.00" y="927.5" ></text> | |
| </g> | |
| <g > | |
| <title>el0_svc_common.constprop.0 (75,416,654 samples, 0.04%)</title><rect x="501.1" y="709" width="0.5" height="15.0" fill="rgb(224,89,21)" rx="2" ry="2" /> | |
| <text x="504.13" y="719.5" ></text> | |
| </g> | |
| <g > | |
| <title>el0_svc_common.constprop.0 (44,009,564 samples, 0.02%)</title><rect x="843.4" y="549" width="0.3" height="15.0" fill="rgb(224,89,21)" rx="2" ry="2" /> | |
| <text x="846.44" y="559.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_use_shader_program (16,641,724 samples, 0.01%)</title><rect x="1143.4" y="661" width="0.1" height="15.0" fill="rgb(245,188,44)" rx="2" ry="2" /> | |
| <text x="1146.37" y="671.5" ></text> | |
| </g> | |
| <g > | |
| <title>__arm64_sys_futex (24,040,853 samples, 0.01%)</title><rect x="14.4" y="613" width="0.2" height="15.0" fill="rgb(247,196,47)" rx="2" ry="2" /> | |
| <text x="17.44" y="623.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_DrawElementsBaseVertex (21,998,905 samples, 0.01%)</title><rect x="866.7" y="629" width="0.1" height="15.0" fill="rgb(214,41,10)" rx="2" ry="2" /> | |
| <text x="869.70" y="639.5" ></text> | |
| </g> | |
| <g > | |
| <title>__GI___futex_abstimed_wait_cancelable64 (412,928,875 samples, 0.23%)</title><rect x="248.9" y="773" width="2.7" height="15.0" fill="rgb(215,48,11)" rx="2" ry="2" /> | |
| <text x="251.95" y="783.5" ></text> | |
| </g> | |
| <g > | |
| <title>[libpulsecommon-16.1.so] (575,699,861 samples, 0.32%)</title><rect x="11.4" y="853" width="3.7" height="15.0" fill="rgb(224,88,21)" rx="2" ry="2" /> | |
| <text x="14.37" y="863.5" ></text> | |
| </g> | |
| <g > | |
| <title>st_update_rasterizer (251,299,556 samples, 0.14%)</title><rect x="405.5" y="741" width="1.6" height="15.0" fill="rgb(240,164,39)" rx="2" ry="2" /> | |
| <text x="408.49" y="751.5" ></text> | |
| </g> | |
| <g > | |
| <title>vbo_exec_FlushVertices (30,236,435 samples, 0.02%)</title><rect x="1016.8" y="629" width="0.2" height="15.0" fill="rgb(226,100,24)" rx="2" ry="2" /> | |
| <text x="1019.75" y="639.5" ></text> | |
| </g> | |
| <g > | |
| <title>memcpy@plt (36,999,152 samples, 0.02%)</title><rect x="906.4" y="693" width="0.2" height="15.0" fill="rgb(224,88,21)" rx="2" ry="2" /> | |
| <text x="909.37" y="703.5" ></text> | |
| </g> | |
| <g > | |
| <title>drmIoctl (43,766,358 samples, 0.02%)</title><rect x="190.1" y="709" width="0.3" height="15.0" fill="rgb(251,215,51)" rx="2" ry="2" /> | |
| <text x="193.07" y="719.5" ></text> | |
| </g> | |
| <g > | |
| <title>_raw_spin_unlock_irqrestore (81,868,654 samples, 0.05%)</title><rect x="459.1" y="517" width="0.5" height="15.0" fill="rgb(228,106,25)" rx="2" ry="2" /> | |
| <text x="462.09" y="527.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_marshal_ActiveTexture (17,022,464 samples, 0.01%)</title><rect x="1076.3" y="757" width="0.1" height="15.0" fill="rgb(224,88,21)" rx="2" ry="2" /> | |
| <text x="1079.31" y="767.5" ></text> | |
| </g> | |
| <g > | |
| <title>futex_wait (168,162,042 samples, 0.09%)</title><rect x="979.7" y="677" width="1.1" height="15.0" fill="rgb(235,138,33)" rx="2" ry="2" /> | |
| <text x="982.72" y="687.5" ></text> | |
| </g> | |
| <g > | |
| <title>unix_stream_read_generic (40,203,158 samples, 0.02%)</title><rect x="508.1" y="469" width="0.2" height="15.0" fill="rgb(244,180,43)" rx="2" ry="2" /> | |
| <text x="511.05" y="479.5" ></text> | |
| </g> | |
| <g > | |
| <title>syscall (121,180,999 samples, 0.07%)</title><rect x="972.6" y="661" width="0.8" height="15.0" fill="rgb(234,136,32)" rx="2" ry="2" /> | |
| <text x="975.57" y="671.5" ></text> | |
| </g> | |
| <g > | |
| <title>[libpulse.so.0.24.2] (62,579,154 samples, 0.03%)</title><rect x="15.2" y="789" width="0.4" height="15.0" fill="rgb(253,221,52)" rx="2" ry="2" /> | |
| <text x="18.15" y="799.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_unmarshal_BlendFunc (21,556,720 samples, 0.01%)</title><rect x="371.0" y="805" width="0.1" height="15.0" fill="rgb(232,127,30)" rx="2" ry="2" /> | |
| <text x="373.96" y="815.5" ></text> | |
| </g> | |
| <g > | |
| <title>update_array.constprop.0 (22,782,940 samples, 0.01%)</title><rect x="1148.8" y="661" width="0.2" height="15.0" fill="rgb(224,88,21)" rx="2" ry="2" /> | |
| <text x="1151.83" y="671.5" ></text> | |
| </g> | |
| <g > | |
| <title>tc_add_draw_single_call (45,086,344 samples, 0.02%)</title><rect x="1119.4" y="645" width="0.3" height="15.0" fill="rgb(214,45,10)" rx="2" ry="2" /> | |
| <text x="1122.39" y="655.5" ></text> | |
| </g> | |
| <g > | |
| <title>map_buffer_range (26,803,120 samples, 0.01%)</title><rect x="1040.1" y="709" width="0.2" height="15.0" fill="rgb(244,183,43)" rx="2" ry="2" /> | |
| <text x="1043.13" y="719.5" ></text> | |
| </g> | |
| <g > | |
| <title>__GI___pthread_disable_asynccancel (15,542,039 samples, 0.01%)</title><rect x="33.8" y="773" width="0.1" height="15.0" fill="rgb(236,146,34)" rx="2" ry="2" /> | |
| <text x="36.76" y="783.5" ></text> | |
| </g> | |
| <g > | |
| <title>__arm64_sys_futex (21,775,661 samples, 0.01%)</title><rect x="877.5" y="405" width="0.1" height="15.0" fill="rgb(247,196,47)" rx="2" ry="2" /> | |
| <text x="880.51" y="415.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_DrawElementsBaseVertex (12,146,216,035 samples, 6.73%)</title><rect x="377.2" y="789" width="79.4" height="15.0" fill="rgb(214,41,10)" rx="2" ry="2" /> | |
| <text x="380.22" y="799.5" >_mesa_Dra..</text> | |
| </g> | |
| <g > | |
| <title>drmIoctl (166,612,204 samples, 0.09%)</title><rect x="895.7" y="533" width="1.1" height="15.0" fill="rgb(251,215,51)" rx="2" ry="2" /> | |
| <text x="898.67" y="543.5" ></text> | |
| </g> | |
| <g > | |
| <title>void si_draw_vbo< (213,677,884 samples, 0.12%)</title><rect x="128.4" y="773" width="1.4" height="15.0" fill="rgb(226,101,24)" rx="2" ry="2" /> | |
| <text x="131.43" y="783.5" ></text> | |
| </g> | |
| <g > | |
| <title>tc_set_constant_buffer (274,148,334 samples, 0.15%)</title><rect x="415.6" y="709" width="1.7" height="15.0" fill="rgb(247,195,46)" rx="2" ry="2" /> | |
| <text x="418.56" y="719.5" ></text> | |
| </g> | |
| <g > | |
| <title>tc_call_bind_sampler_states (360,088,307 samples, 0.20%)</title><rect x="57.8" y="805" width="2.4" height="15.0" fill="rgb(243,176,42)" rx="2" ry="2" /> | |
| <text x="60.85" y="815.5" ></text> | |
| </g> | |
| <g > | |
| <title>validate_uniform_parameters (43,710,319 samples, 0.02%)</title><rect x="1142.3" y="645" width="0.3" height="15.0" fill="rgb(234,137,32)" rx="2" ry="2" /> | |
| <text x="1145.31" y="655.5" ></text> | |
| </g> | |
| <g > | |
| <title>ttm_resource_places_compat (334,412,743 samples, 0.19%)</title><rect x="276.7" y="517" width="2.2" height="15.0" fill="rgb(243,178,42)" rx="2" ry="2" /> | |
| <text x="279.66" y="527.5" ></text> | |
| </g> | |
| <g > | |
| <title>futex_wait (44,548,380 samples, 0.02%)</title><rect x="901.1" y="389" width="0.3" height="15.0" fill="rgb(235,138,33)" rx="2" ry="2" /> | |
| <text x="904.12" y="399.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_marshal_Uniform4fv (76,128,451 samples, 0.04%)</title><rect x="956.0" y="709" width="0.5" height="15.0" fill="rgb(228,108,26)" rx="2" ry="2" /> | |
| <text x="959.01" y="719.5" ></text> | |
| </g> | |
| <g > | |
| <title>impl_thrd_routine (33,798,560,286 samples, 18.72%)</title><rect x="27.8" y="853" width="220.9" height="15.0" fill="rgb(229,110,26)" rx="2" ry="2" /> | |
| <text x="30.83" y="863.5" >impl_thrd_routine</text> | |
| </g> | |
| <g > | |
| <title>_mesa_set_enable (19,306,068 samples, 0.01%)</title><rect x="1136.6" y="677" width="0.1" height="15.0" fill="rgb(228,109,26)" rx="2" ry="2" /> | |
| <text x="1139.57" y="687.5" ></text> | |
| </g> | |
| <g > | |
| <title>__arm64_sys_futex (39,786,367 samples, 0.02%)</title><rect x="11.7" y="501" width="0.2" height="15.0" fill="rgb(247,196,47)" rx="2" ry="2" /> | |
| <text x="14.65" y="511.5" ></text> | |
| </g> | |
| <g > | |
| <title>__audit_syscall_exit (47,466,281 samples, 0.03%)</title><rect x="339.3" y="661" width="0.3" height="15.0" fill="rgb(218,62,14)" rx="2" ry="2" /> | |
| <text x="342.32" y="671.5" ></text> | |
| </g> | |
| <g > | |
| <title>[libGLdispatch.so.0.0.0] (201,470,471 samples, 0.11%)</title><rect x="720.9" y="693" width="1.3" height="15.0" fill="rgb(209,20,4)" rx="2" ry="2" /> | |
| <text x="723.85" y="703.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_update_texture_state (22,319,118 samples, 0.01%)</title><rect x="1060.7" y="613" width="0.1" height="15.0" fill="rgb(237,148,35)" rx="2" ry="2" /> | |
| <text x="1063.65" y="623.5" ></text> | |
| </g> | |
| <g > | |
| <title>cnd_signal (15,639,387 samples, 0.01%)</title><rect x="972.2" y="677" width="0.1" height="15.0" fill="rgb(232,125,30)" rx="2" ry="2" /> | |
| <text x="975.21" y="687.5" ></text> | |
| </g> | |
| <g > | |
| <title>st_destroy_bound_texture_handles_per_stage (31,707,083 samples, 0.02%)</title><rect x="413.1" y="693" width="0.2" height="15.0" fill="rgb(232,127,30)" rx="2" ry="2" /> | |
| <text x="416.06" y="703.5" ></text> | |
| </g> | |
| <g > | |
| <title>st_finalize_texture (58,692,319 samples, 0.03%)</title><rect x="1014.3" y="549" width="0.4" height="15.0" fill="rgb(232,124,29)" rx="2" ry="2" /> | |
| <text x="1017.31" y="559.5" ></text> | |
| </g> | |
| <g > | |
| <title>drm_release (33,155,764 samples, 0.02%)</title><rect x="1189.8" y="693" width="0.2" height="15.0" fill="rgb(252,217,52)" rx="2" ry="2" /> | |
| <text x="1192.78" y="703.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_Uniform4f (26,061,745 samples, 0.01%)</title><rect x="1020.4" y="661" width="0.2" height="15.0" fill="rgb(210,26,6)" rx="2" ry="2" /> | |
| <text x="1023.42" y="671.5" ></text> | |
| </g> | |
| <g > | |
| <title>amdgpu_cs_add_buffer (298,168,389 samples, 0.17%)</title><rect x="230.6" y="741" width="1.9" height="15.0" fill="rgb(254,227,54)" rx="2" ry="2" /> | |
| <text x="233.58" y="751.5" ></text> | |
| </g> | |
| <g > | |
| <title>tc_call_bind_depth_stencil_alpha_state (63,762,170 samples, 0.04%)</title><rect x="50.6" y="805" width="0.4" height="15.0" fill="rgb(232,126,30)" rx="2" ry="2" /> | |
| <text x="53.63" y="815.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_unmarshal_Clear (703,645,496 samples, 0.39%)</title><rect x="1104.8" y="709" width="4.6" height="15.0" fill="rgb(227,105,25)" rx="2" ry="2" /> | |
| <text x="1107.79" y="719.5" ></text> | |
| </g> | |
| <g > | |
| <title>do_futex (300,683,252 samples, 0.17%)</title><rect x="342.3" y="677" width="2.0" height="15.0" fill="rgb(245,184,44)" rx="2" ry="2" /> | |
| <text x="345.34" y="687.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_UniformMatrix4fv (47,045,612 samples, 0.03%)</title><rect x="1065.6" y="677" width="0.3" height="15.0" fill="rgb(235,139,33)" rx="2" ry="2" /> | |
| <text x="1068.60" y="687.5" ></text> | |
| </g> | |
| <g > | |
| <title>__GI___strchrnul (15,691,438 samples, 0.01%)</title><rect x="841.8" y="645" width="0.1" height="15.0" fill="rgb(224,89,21)" rx="2" ry="2" /> | |
| <text x="844.80" y="655.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_glthread_flush_batch (112,692,073 samples, 0.06%)</title><rect x="1177.5" y="773" width="0.8" height="15.0" fill="rgb(239,158,38)" rx="2" ry="2" /> | |
| <text x="1180.55" y="783.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_VertexAttrib4Nubv (41,559,670 samples, 0.02%)</title><rect x="830.1" y="613" width="0.3" height="15.0" fill="rgb(231,121,29)" rx="2" ry="2" /> | |
| <text x="833.12" y="623.5" ></text> | |
| </g> | |
| <g > | |
| <title>[libpulsecommon-16.1.so] (17,600,286 samples, 0.01%)</title><rect x="12.1" y="709" width="0.1" height="15.0" fill="rgb(224,88,21)" rx="2" ry="2" /> | |
| <text x="15.08" y="719.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_unmarshal_DrawElementsPacked (543,509,313 samples, 0.30%)</title><rect x="1060.5" y="693" width="3.5" height="15.0" fill="rgb(225,92,22)" rx="2" ry="2" /> | |
| <text x="1063.49" y="703.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_glthread_finish (64,431,366 samples, 0.04%)</title><rect x="782.3" y="101" width="0.4" height="15.0" fill="rgb(209,22,5)" rx="2" ry="2" /> | |
| <text x="785.32" y="111.5" ></text> | |
| </g> | |
| <g > | |
| <title>update_shader_samplers (15,769,221 samples, 0.01%)</title><rect x="811.1" y="565" width="0.1" height="15.0" fill="rgb(229,113,27)" rx="2" ry="2" /> | |
| <text x="814.09" y="575.5" ></text> | |
| </g> | |
| <g > | |
| <title>drmSyncobjDestroy (115,047,098 samples, 0.06%)</title><rect x="509.7" y="709" width="0.8" height="15.0" fill="rgb(205,0,0)" rx="2" ry="2" /> | |
| <text x="512.75" y="719.5" ></text> | |
| </g> | |
| <g > | |
| <title>_raw_spin_unlock_irqrestore (17,851,693 samples, 0.01%)</title><rect x="35.3" y="629" width="0.1" height="15.0" fill="rgb(228,106,25)" rx="2" ry="2" /> | |
| <text x="38.26" y="639.5" ></text> | |
| </g> | |
| <g > | |
| <title>__GI___strlen_asimd (22,234,737 samples, 0.01%)</title><rect x="796.3" y="357" width="0.1" height="15.0" fill="rgb(213,41,9)" rx="2" ry="2" /> | |
| <text x="799.28" y="367.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_UseProgram (38,275,520 samples, 0.02%)</title><rect x="949.2" y="629" width="0.2" height="15.0" fill="rgb(212,36,8)" rx="2" ry="2" /> | |
| <text x="952.15" y="639.5" ></text> | |
| </g> | |
| <g > | |
| <title>update_shader_samplers (56,885,710 samples, 0.03%)</title><rect x="1012.5" y="597" width="0.4" height="15.0" fill="rgb(229,113,27)" rx="2" ry="2" /> | |
| <text x="1015.52" y="607.5" ></text> | |
| </g> | |
| <g > | |
| <title>amdgpu_fence_create (67,845,683 samples, 0.04%)</title><rect x="38.3" y="757" width="0.4" height="15.0" fill="rgb(244,179,42)" rx="2" ry="2" /> | |
| <text x="41.26" y="767.5" ></text> | |
| </g> | |
| <g > | |
| <title>el0_svc (65,701,427 samples, 0.04%)</title><rect x="843.4" y="581" width="0.4" height="15.0" fill="rgb(244,183,43)" rx="2" ry="2" /> | |
| <text x="846.41" y="591.5" ></text> | |
| </g> | |
| <g > | |
| <title>__memcpy_generic (137,870,246 samples, 0.08%)</title><rect x="1123.2" y="629" width="0.9" height="15.0" fill="rgb(231,124,29)" rx="2" ry="2" /> | |
| <text x="1126.19" y="639.5" ></text> | |
| </g> | |
| <g > | |
| <title>tc_set_sampler_views (71,184,304 samples, 0.04%)</title><rect x="998.3" y="613" width="0.5" height="15.0" fill="rgb(250,209,50)" rx="2" ry="2" /> | |
| <text x="1001.32" y="623.5" ></text> | |
| </g> | |
| <g > | |
| <title>drm_syncobj_create_ioctl (21,125,875 samples, 0.01%)</title><rect x="900.6" y="341" width="0.1" height="15.0" fill="rgb(237,150,36)" rx="2" ry="2" /> | |
| <text x="903.60" y="351.5" ></text> | |
| </g> | |
| <g > | |
| <title>el0_svc_common.constprop.0 (82,078,367 samples, 0.05%)</title><rect x="331.7" y="677" width="0.5" height="15.0" fill="rgb(224,89,21)" rx="2" ry="2" /> | |
| <text x="334.66" y="687.5" ></text> | |
| </g> | |
| <g > | |
| <title>util_queue_add_job_locked.part.0 (20,120,129 samples, 0.01%)</title><rect x="805.9" y="597" width="0.1" height="15.0" fill="rgb(243,177,42)" rx="2" ry="2" /> | |
| <text x="808.86" y="607.5" ></text> | |
| </g> | |
| <g > | |
| <title>update_shader_samplers (18,800,117 samples, 0.01%)</title><rect x="865.8" y="597" width="0.1" height="15.0" fill="rgb(229,113,27)" rx="2" ry="2" /> | |
| <text x="868.76" y="607.5" ></text> | |
| </g> | |
| <g > | |
| <title>____fput (33,155,764 samples, 0.02%)</title><rect x="1189.8" y="725" width="0.2" height="15.0" fill="rgb(221,74,17)" rx="2" ry="2" /> | |
| <text x="1192.78" y="735.5" ></text> | |
| </g> | |
| <g > | |
| <title>read (28,041,081 samples, 0.02%)</title><rect x="12.9" y="709" width="0.2" height="15.0" fill="rgb(252,216,51)" rx="2" ry="2" /> | |
| <text x="15.95" y="719.5" ></text> | |
| </g> | |
| <g > | |
| <title>si_emit_db_render_state (45,304,456 samples, 0.03%)</title><rect x="176.8" y="757" width="0.3" height="15.0" fill="rgb(219,66,15)" rx="2" ry="2" /> | |
| <text x="179.82" y="767.5" ></text> | |
| </g> | |
| <g > | |
| <title>amdgpu_do_add_buffer (28,384,205 samples, 0.02%)</title><rect x="215.0" y="725" width="0.2" height="15.0" fill="rgb(223,86,20)" rx="2" ry="2" /> | |
| <text x="218.03" y="735.5" ></text> | |
| </g> | |
| <g > | |
| <title>amdgpu_cs_add_buffer (39,282,032 samples, 0.02%)</title><rect x="893.0" y="549" width="0.2" height="15.0" fill="rgb(254,227,54)" rx="2" ry="2" /> | |
| <text x="895.99" y="559.5" ></text> | |
| </g> | |
| <g > | |
| <title>el0t_64_sync (414,273,244 samples, 0.23%)</title><rect x="342.0" y="789" width="2.7" height="15.0" fill="rgb(217,56,13)" rx="2" ry="2" /> | |
| <text x="345.02" y="799.5" ></text> | |
| </g> | |
| <g > | |
| <title>si_buffer_create (31,999,018 samples, 0.02%)</title><rect x="419.0" y="709" width="0.2" height="15.0" fill="rgb(212,35,8)" rx="2" ry="2" /> | |
| <text x="422.02" y="719.5" ></text> | |
| </g> | |
| <g > | |
| <title>bool si_update_shaders< (786,027,246 samples, 0.44%)</title><rect x="133.2" y="773" width="5.1" height="15.0" fill="rgb(233,129,30)" rx="2" ry="2" /> | |
| <text x="136.20" y="783.5" ></text> | |
| </g> | |
| <g > | |
| <title>void st_update_array_templ< (57,673,293 samples, 0.03%)</title><rect x="1063.5" y="629" width="0.4" height="15.0" fill="rgb(243,178,42)" rx="2" ry="2" /> | |
| <text x="1066.50" y="639.5" ></text> | |
| </g> | |
| <g > | |
| <title>si_buffer_resources_begin_new_cs (28,668,988 samples, 0.02%)</title><rect x="141.0" y="757" width="0.2" height="15.0" fill="rgb(248,200,47)" rx="2" ry="2" /> | |
| <text x="144.00" y="767.5" ></text> | |
| </g> | |
| <g > | |
| <title>st_update_depth_stencil_alpha (27,744,602 samples, 0.02%)</title><rect x="1007.1" y="597" width="0.2" height="15.0" fill="rgb(252,219,52)" rx="2" ry="2" /> | |
| <text x="1010.09" y="607.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_VertexAttrib4Nubv (17,138,869 samples, 0.01%)</title><rect x="830.2" y="597" width="0.1" height="15.0" fill="rgb(231,121,29)" rx="2" ry="2" /> | |
| <text x="833.15" y="607.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_DrawElementsBaseVertex (25,791,346 samples, 0.01%)</title><rect x="847.3" y="613" width="0.2" height="15.0" fill="rgb(214,41,10)" rx="2" ry="2" /> | |
| <text x="850.32" y="623.5" ></text> | |
| </g> | |
| <g > | |
| <title>drmIoctl (57,002,438 samples, 0.03%)</title><rect x="38.3" y="725" width="0.4" height="15.0" fill="rgb(251,215,51)" rx="2" ry="2" /> | |
| <text x="41.32" y="735.5" ></text> | |
| </g> | |
| <g > | |
| <title>si_pm4_emit_shader (67,072,088 samples, 0.04%)</title><rect x="523.5" y="661" width="0.4" height="15.0" fill="rgb(227,102,24)" rx="2" ry="2" /> | |
| <text x="526.45" y="671.5" ></text> | |
| </g> | |
| <g > | |
| <title>cso_set_vertex_elements_direct (32,826,416 samples, 0.02%)</title><rect x="999.5" y="581" width="0.3" height="15.0" fill="rgb(222,80,19)" rx="2" ry="2" /> | |
| <text x="1002.54" y="591.5" ></text> | |
| </g> | |
| <g > | |
| <title>si_query_hw_emit_start (58,132,171 samples, 0.03%)</title><rect x="49.5" y="757" width="0.4" height="15.0" fill="rgb(251,215,51)" rx="2" ry="2" /> | |
| <text x="52.47" y="767.5" ></text> | |
| </g> | |
| <g > | |
| <title>__vsnprintf_internal (216,293,854 samples, 0.12%)</title><rect x="820.0" y="661" width="1.4" height="15.0" fill="rgb(237,150,35)" rx="2" ry="2" /> | |
| <text x="822.98" y="671.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_UseProgram (17,779,240 samples, 0.01%)</title><rect x="858.5" y="613" width="0.1" height="15.0" fill="rgb(212,36,8)" rx="2" ry="2" /> | |
| <text x="861.48" y="623.5" ></text> | |
| </g> | |
| <g > | |
| <title>si_is_resource_busy (19,158,380 samples, 0.01%)</title><rect x="1104.3" y="645" width="0.1" height="15.0" fill="rgb(233,132,31)" rx="2" ry="2" /> | |
| <text x="1107.29" y="655.5" ></text> | |
| </g> | |
| <g > | |
| <title>glActiveTexture (32,711,458 samples, 0.02%)</title><rect x="1166.0" y="757" width="0.2" height="15.0" fill="rgb(234,135,32)" rx="2" ry="2" /> | |
| <text x="1169.01" y="767.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_unmarshal_Flush (288,617,847 samples, 0.16%)</title><rect x="458.2" y="805" width="1.9" height="15.0" fill="rgb(253,222,53)" rx="2" ry="2" /> | |
| <text x="461.22" y="815.5" ></text> | |
| </g> | |
| <g > | |
| <title>__get_acl.part.0 (29,779,187 samples, 0.02%)</title><rect x="1183.9" y="453" width="0.2" height="15.0" fill="rgb(251,212,50)" rx="2" ry="2" /> | |
| <text x="1186.94" y="463.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_VertexAttribPointer (59,026,635 samples, 0.03%)</title><rect x="881.8" y="629" width="0.4" height="15.0" fill="rgb(211,29,7)" rx="2" ry="2" /> | |
| <text x="884.80" y="639.5" ></text> | |
| </g> | |
| <g > | |
| <title>si_ps_key_update_framebuffer (18,516,653 samples, 0.01%)</title><rect x="53.4" y="773" width="0.1" height="15.0" fill="rgb(218,60,14)" rx="2" ry="2" /> | |
| <text x="56.40" y="783.5" ></text> | |
| </g> | |
| <g > | |
| <title>st_update_blend (16,105,992 samples, 0.01%)</title><rect x="400.4" y="725" width="0.1" height="15.0" fill="rgb(250,209,50)" rx="2" ry="2" /> | |
| <text x="403.39" y="735.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_marshal_MapBufferRange (18,878,258 samples, 0.01%)</title><rect x="792.9" y="277" width="0.1" height="15.0" fill="rgb(219,65,15)" rx="2" ry="2" /> | |
| <text x="795.90" y="287.5" ></text> | |
| </g> | |
| <g > | |
| <title>glDrawRangeElements (18,538,158 samples, 0.01%)</title><rect x="1070.9" y="741" width="0.1" height="15.0" fill="rgb(239,158,37)" rx="2" ry="2" /> | |
| <text x="1073.89" y="751.5" ></text> | |
| </g> | |
| <g > | |
| <title>cfree@GLIBC_2.17 (26,224,787 samples, 0.01%)</title><rect x="1018.0" y="597" width="0.1" height="15.0" fill="rgb(224,88,21)" rx="2" ry="2" /> | |
| <text x="1020.96" y="607.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_shader_write_subroutine_indices (34,848,607 samples, 0.02%)</title><rect x="411.9" y="725" width="0.3" height="15.0" fill="rgb(227,105,25)" rx="2" ry="2" /> | |
| <text x="414.93" y="735.5" ></text> | |
| </g> | |
| <g > | |
| <title>_raw_spin_unlock_irqrestore (59,846,335 samples, 0.03%)</title><rect x="542.1" y="437" width="0.4" height="15.0" fill="rgb(228,106,25)" rx="2" ry="2" /> | |
| <text x="545.09" y="447.5" ></text> | |
| </g> | |
| <g > | |
| <title>amdgpu_cs_ioctl (9,678,241,237 samples, 5.36%)</title><rect x="267.2" y="597" width="63.3" height="15.0" fill="rgb(250,209,50)" rx="2" ry="2" /> | |
| <text x="270.21" y="607.5" >amdgpu..</text> | |
| </g> | |
| <g > | |
| <title>_mesa_validated_drawrangeelements (1,096,812,290 samples, 0.61%)</title><rect x="849.8" y="613" width="7.2" height="15.0" fill="rgb(230,115,27)" rx="2" ry="2" /> | |
| <text x="852.80" y="623.5" ></text> | |
| </g> | |
| <g > | |
| <title>thread_start (33,798,560,286 samples, 18.72%)</title><rect x="27.8" y="885" width="220.9" height="15.0" fill="rgb(212,34,8)" rx="2" ry="2" /> | |
| <text x="30.83" y="895.5" >thread_start</text> | |
| </g> | |
| <g > | |
| <title>_mesa_uniform (69,892,978 samples, 0.04%)</title><rect x="474.1" y="773" width="0.4" height="15.0" fill="rgb(248,201,48)" rx="2" ry="2" /> | |
| <text x="477.09" y="783.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_unmarshal_BindTexture (600,763,397 samples, 0.33%)</title><rect x="983.4" y="677" width="3.9" height="15.0" fill="rgb(248,199,47)" rx="2" ry="2" /> | |
| <text x="986.41" y="687.5" ></text> | |
| </g> | |
| <g > | |
| <title>__poll (168,957,086 samples, 0.09%)</title><rect x="13.3" y="741" width="1.1" height="15.0" fill="rgb(250,208,49)" rx="2" ry="2" /> | |
| <text x="16.34" y="751.5" ></text> | |
| </g> | |
| <g > | |
| <title>____sys_recvmsg (31,817,399 samples, 0.02%)</title><rect x="503.5" y="501" width="0.2" height="15.0" fill="rgb(224,90,21)" rx="2" ry="2" /> | |
| <text x="506.45" y="511.5" ></text> | |
| </g> | |
| <g > | |
| <title>st_update_single_texture (16,460,232 samples, 0.01%)</title><rect x="825.6" y="533" width="0.1" height="15.0" fill="rgb(208,15,3)" rx="2" ry="2" /> | |
| <text x="828.58" y="543.5" ></text> | |
| </g> | |
| <g > | |
| <title>amdgpu_bo_wait (64,963,511 samples, 0.04%)</title><rect x="1034.1" y="629" width="0.4" height="15.0" fill="rgb(241,168,40)" rx="2" ry="2" /> | |
| <text x="1037.07" y="639.5" ></text> | |
| </g> | |
| <g > | |
| <title>[libSDL2-2.0.so.0.3000.0] (95,466,523 samples, 0.05%)</title><rect x="21.2" y="773" width="0.7" height="15.0" fill="rgb(227,102,24)" rx="2" ry="2" /> | |
| <text x="24.23" y="783.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_BindTexture (40,317,721 samples, 0.02%)</title><rect x="349.9" y="773" width="0.3" height="15.0" fill="rgb(234,136,32)" rx="2" ry="2" /> | |
| <text x="352.95" y="783.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_unmarshal_DrawElementsPacked (18,749,843 samples, 0.01%)</title><rect x="782.0" y="53" width="0.1" height="15.0" fill="rgb(225,92,22)" rx="2" ry="2" /> | |
| <text x="784.98" y="63.5" ></text> | |
| </g> | |
| <g > | |
| <title>si_bind_rs_state (27,982,637 samples, 0.02%)</title><rect x="57.3" y="789" width="0.2" height="15.0" fill="rgb(233,130,31)" rx="2" ry="2" /> | |
| <text x="60.29" y="799.5" ></text> | |
| </g> | |
| <g > | |
| <title>amdgpu_cs_job_idx.isra.0 (45,955,935 samples, 0.03%)</title><rect x="305.4" y="565" width="0.3" height="15.0" fill="rgb(245,187,44)" rx="2" ry="2" /> | |
| <text x="308.41" y="575.5" ></text> | |
| </g> | |
| <g > | |
| <title>tc_batch_flush (16,037,936 samples, 0.01%)</title><rect x="880.1" y="597" width="0.1" height="15.0" fill="rgb(249,206,49)" rx="2" ry="2" /> | |
| <text x="883.05" y="607.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_unmarshal_DrawElementsPacked (20,236,849 samples, 0.01%)</title><rect x="945.1" y="645" width="0.1" height="15.0" fill="rgb(225,92,22)" rx="2" ry="2" /> | |
| <text x="948.08" y="655.5" ></text> | |
| </g> | |
| <g > | |
| <title>drm_syncobj_array_find (52,194,356 samples, 0.03%)</title><rect x="1161.9" y="389" width="0.3" height="15.0" fill="rgb(224,91,21)" rx="2" ry="2" /> | |
| <text x="1164.88" y="399.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_DrawElementsBaseVertex (16,036,927 samples, 0.01%)</title><rect x="857.0" y="613" width="0.1" height="15.0" fill="rgb(214,41,10)" rx="2" ry="2" /> | |
| <text x="860.00" y="623.5" ></text> | |
| </g> | |
| <g > | |
| <title>glthread_unmarshal_batch (219,384,660 samples, 0.12%)</title><rect x="1149.1" y="709" width="1.5" height="15.0" fill="rgb(247,195,46)" rx="2" ry="2" /> | |
| <text x="1152.14" y="719.5" ></text> | |
| </g> | |
| <g > | |
| <title>__memcpy_generic (23,091,515 samples, 0.01%)</title><rect x="1171.2" y="773" width="0.2" height="15.0" fill="rgb(231,124,29)" rx="2" ry="2" /> | |
| <text x="1174.22" y="783.5" ></text> | |
| </g> | |
| <g > | |
| <title>__arm64_sys_recvmsg (169,253,001 samples, 0.09%)</title><rect x="1107.1" y="373" width="1.1" height="15.0" fill="rgb(236,144,34)" rx="2" ry="2" /> | |
| <text x="1110.07" y="383.5" ></text> | |
| </g> | |
| <g > | |
| <title>ww_mutex_unlock (138,477,012 samples, 0.08%)</title><rect x="287.1" y="549" width="0.9" height="15.0" fill="rgb(249,206,49)" rx="2" ry="2" /> | |
| <text x="290.07" y="559.5" ></text> | |
| </g> | |
| <g > | |
| <title>si_set_shader_buffers (28,657,151 samples, 0.02%)</title><rect x="81.7" y="693" width="0.2" height="15.0" fill="rgb(241,170,40)" rx="2" ry="2" /> | |
| <text x="84.67" y="703.5" ></text> | |
| </g> | |
| <g > | |
| <title>glActiveTexture (18,989,946 samples, 0.01%)</title><rect x="1034.5" y="725" width="0.1" height="15.0" fill="rgb(234,135,32)" rx="2" ry="2" /> | |
| <text x="1037.49" y="735.5" ></text> | |
| </g> | |
| <g > | |
| <title>amdgpu_job_fence_release (19,851,460 samples, 0.01%)</title><rect x="308.5" y="469" width="0.1" height="15.0" fill="rgb(241,167,39)" rx="2" ry="2" /> | |
| <text x="311.47" y="479.5" ></text> | |
| </g> | |
| <g > | |
| <title>el0_svc (32,255,024 samples, 0.02%)</title><rect x="956.3" y="581" width="0.2" height="15.0" fill="rgb(244,183,43)" rx="2" ry="2" /> | |
| <text x="959.29" y="591.5" ></text> | |
| </g> | |
| <g > | |
| <title>notify_before_flush_cb (904,833,350 samples, 0.50%)</title><rect x="510.6" y="741" width="5.9" height="15.0" fill="rgb(226,99,23)" rx="2" ry="2" /> | |
| <text x="513.61" y="751.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_Uniform4f (17,213,893 samples, 0.01%)</title><rect x="1065.1" y="677" width="0.1" height="15.0" fill="rgb(210,26,6)" rx="2" ry="2" /> | |
| <text x="1068.07" y="687.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_flush_vertices_for_uniforms (20,439,475 samples, 0.01%)</title><rect x="829.5" y="565" width="0.1" height="15.0" fill="rgb(211,31,7)" rx="2" ry="2" /> | |
| <text x="832.46" y="575.5" ></text> | |
| </g> | |
| <g > | |
| <title>pthread_cond_signal@@GLIBC_2.17 (92,301,751 samples, 0.05%)</title><rect x="1177.7" y="709" width="0.6" height="15.0" fill="rgb(232,126,30)" rx="2" ry="2" /> | |
| <text x="1180.67" y="719.5" ></text> | |
| </g> | |
| <g > | |
| <title>amdgpu_lookup_buffer (265,306,476 samples, 0.15%)</title><rect x="332.4" y="805" width="1.8" height="15.0" fill="rgb(216,54,13)" rx="2" ry="2" /> | |
| <text x="335.43" y="815.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_unmarshal_Viewport (16,480,115 samples, 0.01%)</title><rect x="1029.3" y="677" width="0.1" height="15.0" fill="rgb(242,172,41)" rx="2" ry="2" /> | |
| <text x="1032.28" y="687.5" ></text> | |
| </g> | |
| <g > | |
| <title>security_file_permission (18,122,341 samples, 0.01%)</title><rect x="15.0" y="565" width="0.1" height="15.0" fill="rgb(225,96,23)" rx="2" ry="2" /> | |
| <text x="18.01" y="575.5" ></text> | |
| </g> | |
| <g > | |
| <title>drmIoctl (217,594,030 samples, 0.12%)</title><rect x="536.9" y="645" width="1.4" height="15.0" fill="rgb(251,215,51)" rx="2" ry="2" /> | |
| <text x="539.87" y="655.5" ></text> | |
| </g> | |
| <g > | |
| <title>amdgpu_cs_get_threshold_for_moves (29,600,705 samples, 0.02%)</title><rect x="278.9" y="565" width="0.2" height="15.0" fill="rgb(247,195,46)" rx="2" ry="2" /> | |
| <text x="281.91" y="575.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_unmarshal_VertexAttrib4fARB (82,859,593 samples, 0.05%)</title><rect x="1027.6" y="677" width="0.5" height="15.0" fill="rgb(215,47,11)" rx="2" ry="2" /> | |
| <text x="1030.59" y="687.5" ></text> | |
| </g> | |
| <g > | |
| <title>[redeclipse] (34,445,650,022 samples, 19.08%)</title><rect x="687.3" y="709" width="225.2" height="15.0" fill="rgb(253,222,53)" rx="2" ry="2" /> | |
| <text x="690.33" y="719.5" >[redeclipse]</text> | |
| </g> | |
| <g > | |
| <title>update_single_program_texture (22,015,975 samples, 0.01%)</title><rect x="824.6" y="533" width="0.1" height="15.0" fill="rgb(241,165,39)" rx="2" ry="2" /> | |
| <text x="827.57" y="543.5" ></text> | |
| </g> | |
| <g > | |
| <title>[libGLdispatch.so.0.0.0] (62,234,492 samples, 0.03%)</title><rect x="758.9" y="629" width="0.4" height="15.0" fill="rgb(209,20,4)" rx="2" ry="2" /> | |
| <text x="761.87" y="639.5" ></text> | |
| </g> | |
| <g > | |
| <title>el0_svc (146,638,714 samples, 0.08%)</title><rect x="507.7" y="629" width="1.0" height="15.0" fill="rgb(244,183,43)" rx="2" ry="2" /> | |
| <text x="510.73" y="639.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_glthread_finish (49,134,193 samples, 0.03%)</title><rect x="794.4" y="293" width="0.3" height="15.0" fill="rgb(209,22,5)" rx="2" ry="2" /> | |
| <text x="797.36" y="303.5" ></text> | |
| </g> | |
| <g > | |
| <title>kvfree (18,361,771 samples, 0.01%)</title><rect x="286.9" y="549" width="0.2" height="15.0" fill="rgb(209,22,5)" rx="2" ry="2" /> | |
| <text x="289.95" y="559.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_MapBufferRange (19,235,788 samples, 0.01%)</title><rect x="809.0" y="645" width="0.2" height="15.0" fill="rgb(238,156,37)" rx="2" ry="2" /> | |
| <text x="812.03" y="655.5" ></text> | |
| </g> | |
| <g > | |
| <title>strspn (22,635,038 samples, 0.01%)</title><rect x="785.1" y="149" width="0.1" height="15.0" fill="rgb(207,13,3)" rx="2" ry="2" /> | |
| <text x="788.10" y="159.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_unmarshal_DrawArraysInstanced (506,304,244 samples, 0.28%)</title><rect x="1080.0" y="709" width="3.3" height="15.0" fill="rgb(209,20,4)" rx="2" ry="2" /> | |
| <text x="1082.96" y="719.5" ></text> | |
| </g> | |
| <g > | |
| <title>si_set_vertex_buffers (103,641,277 samples, 0.06%)</title><rect x="529.6" y="677" width="0.7" height="15.0" fill="rgb(240,161,38)" rx="2" ry="2" /> | |
| <text x="532.65" y="687.5" ></text> | |
| </g> | |
| <g > | |
| <title>__aarch64_ldadd4_acq_rel (52,625,477 samples, 0.03%)</title><rect x="1145.7" y="629" width="0.3" height="15.0" fill="rgb(228,108,25)" rx="2" ry="2" /> | |
| <text x="1148.68" y="639.5" ></text> | |
| </g> | |
| <g > | |
| <title>memcmp (20,488,878 samples, 0.01%)</title><rect x="1135.1" y="597" width="0.1" height="15.0" fill="rgb(235,141,33)" rx="2" ry="2" /> | |
| <text x="1138.10" y="607.5" ></text> | |
| </g> | |
| <g > | |
| <title>amdgpu_add_fences_to_dependencies (346,554,803 samples, 0.19%)</title><rect x="263.5" y="805" width="2.2" height="15.0" fill="rgb(238,153,36)" rx="2" ry="2" /> | |
| <text x="266.47" y="815.5" ></text> | |
| </g> | |
| <g > | |
| <title>st_upload_constants (112,965,908 samples, 0.06%)</title><rect x="1011.3" y="597" width="0.8" height="15.0" fill="rgb(238,154,36)" rx="2" ry="2" /> | |
| <text x="1014.34" y="607.5" ></text> | |
| </g> | |
| <g > | |
| <title>__atan2f_finite@GLIBC_2.17 (22,680,784 samples, 0.01%)</title><rect x="1075.2" y="741" width="0.1" height="15.0" fill="rgb(250,207,49)" rx="2" ry="2" /> | |
| <text x="1078.16" y="751.5" ></text> | |
| </g> | |
| <g > | |
| <title>amdgpu_cs_add_buffer (24,252,539 samples, 0.01%)</title><rect x="82.9" y="693" width="0.2" height="15.0" fill="rgb(254,227,54)" rx="2" ry="2" /> | |
| <text x="85.93" y="703.5" ></text> | |
| </g> | |
| <g > | |
| <title>st_upload_constants (73,273,935 samples, 0.04%)</title><rect x="937.7" y="581" width="0.5" height="15.0" fill="rgb(238,154,36)" rx="2" ry="2" /> | |
| <text x="940.69" y="591.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_uniform (33,675,784 samples, 0.02%)</title><rect x="1020.0" y="645" width="0.3" height="15.0" fill="rgb(248,201,48)" rx="2" ry="2" /> | |
| <text x="1023.05" y="655.5" ></text> | |
| </g> | |
| <g > | |
| <title>st_update_depth_stencil_alpha (39,659,686 samples, 0.02%)</title><rect x="1007.0" y="613" width="0.3" height="15.0" fill="rgb(252,219,52)" rx="2" ry="2" /> | |
| <text x="1010.01" y="623.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_UseProgram (18,570,683 samples, 0.01%)</title><rect x="1172.6" y="709" width="0.1" height="15.0" fill="rgb(212,36,8)" rx="2" ry="2" /> | |
| <text x="1175.57" y="719.5" ></text> | |
| </g> | |
| <g > | |
| <title>tc_add_draw_single_call (140,746,016 samples, 0.08%)</title><rect x="455.4" y="757" width="1.0" height="15.0" fill="rgb(214,45,10)" rx="2" ry="2" /> | |
| <text x="458.44" y="767.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_update_state_locked (2,287,164,315 samples, 1.27%)</title><rect x="379.4" y="757" width="15.0" height="15.0" fill="rgb(214,43,10)" rx="2" ry="2" /> | |
| <text x="382.44" y="767.5" ></text> | |
| </g> | |
| <g > | |
| <title>el0t_64_sync_handler (62,692,808 samples, 0.03%)</title><rect x="884.6" y="549" width="0.4" height="15.0" fill="rgb(211,32,7)" rx="2" ry="2" /> | |
| <text x="887.59" y="559.5" ></text> | |
| </g> | |
| <g > | |
| <title>tc_set_framebuffer_state (37,071,760 samples, 0.02%)</title><rect x="405.2" y="725" width="0.2" height="15.0" fill="rgb(244,180,43)" rx="2" ry="2" /> | |
| <text x="408.16" y="735.5" ></text> | |
| </g> | |
| <g > | |
| <title>do_futex_fence_wait (80,759,446 samples, 0.04%)</title><rect x="843.3" y="661" width="0.5" height="15.0" fill="rgb(230,118,28)" rx="2" ry="2" /> | |
| <text x="846.32" y="671.5" ></text> | |
| </g> | |
| <g > | |
| <title>si_buffer_transfer_unmap (22,198,587 samples, 0.01%)</title><rect x="520.4" y="661" width="0.1" height="15.0" fill="rgb(221,75,18)" rx="2" ry="2" /> | |
| <text x="523.39" y="671.5" ></text> | |
| </g> | |
| <g > | |
| <title>drm_gem_object_lookup (772,811,898 samples, 0.43%)</title><rect x="294.7" y="549" width="5.0" height="15.0" fill="rgb(235,140,33)" rx="2" ry="2" /> | |
| <text x="297.68" y="559.5" ></text> | |
| </g> | |
| <g > | |
| <title>vbo_exec_copy_to_current (37,738,730 samples, 0.02%)</title><rect x="944.8" y="613" width="0.3" height="15.0" fill="rgb(218,60,14)" rx="2" ry="2" /> | |
| <text x="947.84" y="623.5" ></text> | |
| </g> | |
| <g > | |
| <title>do_futex_fence_wait (128,301,837 samples, 0.07%)</title><rect x="972.5" y="693" width="0.9" height="15.0" fill="rgb(230,118,28)" rx="2" ry="2" /> | |
| <text x="975.52" y="703.5" ></text> | |
| </g> | |
| <g > | |
| <title>do_el0_svc (22,802,325 samples, 0.01%)</title><rect x="453.1" y="581" width="0.2" height="15.0" fill="rgb(218,60,14)" rx="2" ry="2" /> | |
| <text x="456.15" y="591.5" ></text> | |
| </g> | |
| <g > | |
| <title>si_bind_dsa_state (38,651,805 samples, 0.02%)</title><rect x="50.8" y="773" width="0.2" height="15.0" fill="rgb(247,194,46)" rx="2" ry="2" /> | |
| <text x="53.80" y="783.5" ></text> | |
| </g> | |
| <g > | |
| <title>dri3_update_drawable (316,956,574 samples, 0.18%)</title><rect x="1106.5" y="565" width="2.1" height="15.0" fill="rgb(254,228,54)" rx="2" ry="2" /> | |
| <text x="1109.49" y="575.5" ></text> | |
| </g> | |
| <g > | |
| <title>st_prepare_draw (33,138,665 samples, 0.02%)</title><rect x="799.8" y="357" width="0.2" height="15.0" fill="rgb(214,45,10)" rx="2" ry="2" /> | |
| <text x="802.79" y="367.5" ></text> | |
| </g> | |
| <g > | |
| <title>amdgpu_cs_add_buffer (21,485,964 samples, 0.01%)</title><rect x="192.1" y="741" width="0.2" height="15.0" fill="rgb(254,227,54)" rx="2" ry="2" /> | |
| <text x="195.14" y="751.5" ></text> | |
| </g> | |
| <g > | |
| <title>ksys_write (40,380,146 samples, 0.02%)</title><rect x="15.2" y="597" width="0.3" height="15.0" fill="rgb(205,4,1)" rx="2" ry="2" /> | |
| <text x="18.19" y="607.5" ></text> | |
| </g> | |
| <g > | |
| <title>bind_texture_object (31,976,289 samples, 0.02%)</title><rect x="1057.5" y="677" width="0.2" height="15.0" fill="rgb(221,73,17)" rx="2" ry="2" /> | |
| <text x="1060.47" y="687.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_reference_program_ (16,374,300 samples, 0.01%)</title><rect x="1092.1" y="645" width="0.1" height="15.0" fill="rgb(231,122,29)" rx="2" ry="2" /> | |
| <text x="1095.12" y="655.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_marshal_VertexAttribPointer (25,422,002 samples, 0.01%)</title><rect x="1032.5" y="725" width="0.2" height="15.0" fill="rgb(241,168,40)" rx="2" ry="2" /> | |
| <text x="1035.50" y="735.5" ></text> | |
| </g> | |
| <g > | |
| <title>invoke_syscall (49,442,933 samples, 0.03%)</title><rect x="11.0" y="677" width="0.4" height="15.0" fill="rgb(209,18,4)" rx="2" ry="2" /> | |
| <text x="14.04" y="687.5" ></text> | |
| </g> | |
| <g > | |
| <title>shared_dispatch_stub_478 (15,361,836 samples, 0.01%)</title><rect x="834.2" y="677" width="0.1" height="15.0" fill="rgb(234,134,32)" rx="2" ry="2" /> | |
| <text x="837.20" y="687.5" ></text> | |
| </g> | |
| <g > | |
| <title>__aarch64_ldadd4_acq_rel (158,341,059 samples, 0.09%)</title><rect x="1036.8" y="645" width="1.0" height="15.0" fill="rgb(228,108,25)" rx="2" ry="2" /> | |
| <text x="1039.81" y="655.5" ></text> | |
| </g> | |
| <g > | |
| <title>update_textures (28,266,379 samples, 0.02%)</title><rect x="998.8" y="613" width="0.2" height="15.0" fill="rgb(232,125,29)" rx="2" ry="2" /> | |
| <text x="1001.78" y="623.5" ></text> | |
| </g> | |
| <g > | |
| <title>__aarch64_ldadd4_acq_rel (25,404,992 samples, 0.01%)</title><rect x="1100.8" y="661" width="0.1" height="15.0" fill="rgb(228,108,25)" rx="2" ry="2" /> | |
| <text x="1103.77" y="671.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_VertexAttribPointer (15,782,838 samples, 0.01%)</title><rect x="859.6" y="613" width="0.1" height="15.0" fill="rgb(211,29,7)" rx="2" ry="2" /> | |
| <text x="862.60" y="623.5" ></text> | |
| </g> | |
| <g > | |
| <title>glthread_unmarshal_batch (2,520,651,772 samples, 1.40%)</title><rect x="843.8" y="661" width="16.5" height="15.0" fill="rgb(247,195,46)" rx="2" ry="2" /> | |
| <text x="846.84" y="671.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_ActiveTexture (141,767,488 samples, 0.08%)</title><rect x="346.1" y="773" width="0.9" height="15.0" fill="rgb(244,179,42)" rx="2" ry="2" /> | |
| <text x="349.08" y="783.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_unmarshal_DrawElementsPacked (59,556,210 samples, 0.03%)</title><rect x="1154.4" y="709" width="0.4" height="15.0" fill="rgb(225,92,22)" rx="2" ry="2" /> | |
| <text x="1157.42" y="719.5" ></text> | |
| </g> | |
| <g > | |
| <title>st_Clear (102,271,678 samples, 0.06%)</title><rect x="1079.1" y="693" width="0.7" height="15.0" fill="rgb(211,30,7)" rx="2" ry="2" /> | |
| <text x="1082.13" y="703.5" ></text> | |
| </g> | |
| <g > | |
| <title>copy_uniforms_to_storage (29,178,074 samples, 0.02%)</title><rect x="1139.1" y="677" width="0.2" height="15.0" fill="rgb(250,207,49)" rx="2" ry="2" /> | |
| <text x="1142.07" y="687.5" ></text> | |
| </g> | |
| <g > | |
| <title>el0t_64_sync_handler (40,902,276 samples, 0.02%)</title><rect x="1160.8" y="549" width="0.2" height="15.0" fill="rgb(211,32,7)" rx="2" ry="2" /> | |
| <text x="1163.77" y="559.5" ></text> | |
| </g> | |
| <g > | |
| <title>util_blitter_clear_custom.constprop.0 (582,734,727 samples, 0.32%)</title><rect x="82.0" y="757" width="3.8" height="15.0" fill="rgb(219,64,15)" rx="2" ry="2" /> | |
| <text x="85.03" y="767.5" ></text> | |
| </g> | |
| <g > | |
| <title>drm_ioctl (68,946,654 samples, 0.04%)</title><rect x="537.5" y="485" width="0.4" height="15.0" fill="rgb(231,121,29)" rx="2" ry="2" /> | |
| <text x="540.47" y="495.5" ></text> | |
| </g> | |
| <g > | |
| <title>cso_restore_state (43,956,244 samples, 0.02%)</title><rect x="510.8" y="709" width="0.3" height="15.0" fill="rgb(229,110,26)" rx="2" ry="2" /> | |
| <text x="513.79" y="719.5" ></text> | |
| </g> | |
| <g > | |
| <title>__printf_buffer (95,379,622 samples, 0.05%)</title><rect x="820.2" y="629" width="0.6" height="15.0" fill="rgb(219,68,16)" rx="2" ry="2" /> | |
| <text x="823.19" y="639.5" ></text> | |
| </g> | |
| <g > | |
| <title>strcmp (106,733,455 samples, 0.06%)</title><rect x="835.6" y="677" width="0.7" height="15.0" fill="rgb(217,58,13)" rx="2" ry="2" /> | |
| <text x="838.59" y="687.5" ></text> | |
| </g> | |
| <g > | |
| <title>kfree (18,361,771 samples, 0.01%)</title><rect x="286.9" y="533" width="0.2" height="15.0" fill="rgb(222,78,18)" rx="2" ry="2" /> | |
| <text x="289.95" y="543.5" ></text> | |
| </g> | |
| <g > | |
| <title>do_el0_svc (67,284,641 samples, 0.04%)</title><rect x="901.7" y="453" width="0.5" height="15.0" fill="rgb(218,60,14)" rx="2" ry="2" /> | |
| <text x="904.73" y="463.5" ></text> | |
| </g> | |
| <g > | |
| <title>__aarch64_ldadd4_acq_rel (150,626,533 samples, 0.08%)</title><rect x="958.9" y="629" width="1.0" height="15.0" fill="rgb(228,108,25)" rx="2" ry="2" /> | |
| <text x="961.92" y="639.5" ></text> | |
| </g> | |
| <g > | |
| <title>pthread_mutex_lock@@GLIBC_2.17 (16,012,795 samples, 0.01%)</title><rect x="190.6" y="709" width="0.1" height="15.0" fill="rgb(234,136,32)" rx="2" ry="2" /> | |
| <text x="193.64" y="719.5" ></text> | |
| </g> | |
| <g > | |
| <title>[libxcb.so.1.1.0] (18,224,629 samples, 0.01%)</title><rect x="507.5" y="693" width="0.1" height="15.0" fill="rgb(226,98,23)" rx="2" ry="2" /> | |
| <text x="510.52" y="703.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_lookup_shader_program_err_glthread (58,829,249 samples, 0.03%)</title><rect x="1144.5" y="661" width="0.4" height="15.0" fill="rgb(246,190,45)" rx="2" ry="2" /> | |
| <text x="1147.52" y="671.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_flush_vertices_for_uniforms (20,750,442 samples, 0.01%)</title><rect x="947.9" y="597" width="0.1" height="15.0" fill="rgb(211,31,7)" rx="2" ry="2" /> | |
| <text x="950.90" y="607.5" ></text> | |
| </g> | |
| <g > | |
| <title>_glapi_get_current (133,822,346 samples, 0.07%)</title><rect x="614.9" y="725" width="0.9" height="15.0" fill="rgb(233,130,31)" rx="2" ry="2" /> | |
| <text x="617.89" y="735.5" ></text> | |
| </g> | |
| <g > | |
| <title>cso_set_vertex_elements (86,112,665 samples, 0.05%)</title><rect x="875.3" y="549" width="0.6" height="15.0" fill="rgb(238,152,36)" rx="2" ry="2" /> | |
| <text x="878.32" y="559.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_UniformMatrix4fv (83,003,443 samples, 0.05%)</title><rect x="947.6" y="645" width="0.5" height="15.0" fill="rgb(235,139,33)" rx="2" ry="2" /> | |
| <text x="950.60" y="655.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_unmarshal_Disable (26,560,024 samples, 0.01%)</title><rect x="1109.5" y="709" width="0.2" height="15.0" fill="rgb(253,223,53)" rx="2" ry="2" /> | |
| <text x="1112.55" y="719.5" ></text> | |
| </g> | |
| <g > | |
| <title>drm_exec_prepare_obj (775,239,372 samples, 0.43%)</title><rect x="279.6" y="565" width="5.1" height="15.0" fill="rgb(230,115,27)" rx="2" ry="2" /> | |
| <text x="282.64" y="575.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_use_program (48,323,320 samples, 0.03%)</title><rect x="1092.3" y="645" width="0.3" height="15.0" fill="rgb(235,141,33)" rx="2" ry="2" /> | |
| <text x="1095.32" y="655.5" ></text> | |
| </g> | |
| <g > | |
| <title>__aarch64_ldadd4_acq_rel (327,401,574 samples, 0.18%)</title><rect x="130.5" y="741" width="2.1" height="15.0" fill="rgb(228,108,25)" rx="2" ry="2" /> | |
| <text x="133.48" y="751.5" ></text> | |
| </g> | |
| <g > | |
| <title>unmap_single_vma.constprop.0 (26,766,945 samples, 0.01%)</title><rect x="1189.6" y="661" width="0.2" height="15.0" fill="rgb(211,27,6)" rx="2" ry="2" /> | |
| <text x="1192.60" y="671.5" ></text> | |
| </g> | |
| <g > | |
| <title>tc_call_bind_vs_state (28,003,663 samples, 0.02%)</title><rect x="885.8" y="597" width="0.2" height="15.0" fill="rgb(214,44,10)" rx="2" ry="2" /> | |
| <text x="888.83" y="607.5" ></text> | |
| </g> | |
| <g > | |
| <title>tc_set_sampler_views (18,031,236 samples, 0.01%)</title><rect x="929.8" y="597" width="0.2" height="15.0" fill="rgb(250,209,50)" rx="2" ry="2" /> | |
| <text x="932.84" y="607.5" ></text> | |
| </g> | |
| <g > | |
| <title>amdgpu_bo_wait (545,742,327 samples, 0.30%)</title><rect x="1160.2" y="661" width="3.5" height="15.0" fill="rgb(241,168,40)" rx="2" ry="2" /> | |
| <text x="1163.16" y="671.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_unmarshal_DrawElements (109,858,789 samples, 0.06%)</title><rect x="930.5" y="661" width="0.7" height="15.0" fill="rgb(247,195,46)" rx="2" ry="2" /> | |
| <text x="933.49" y="671.5" ></text> | |
| </g> | |
| <g > | |
| <title>amdgpu_bo_wait (72,687,413 samples, 0.04%)</title><rect x="371.3" y="725" width="0.5" height="15.0" fill="rgb(241,168,40)" rx="2" ry="2" /> | |
| <text x="374.30" y="735.5" ></text> | |
| </g> | |
| <g > | |
| <title>__rseq_handle_notify_resume (36,709,879 samples, 0.02%)</title><rect x="980.5" y="581" width="0.2" height="15.0" fill="rgb(238,153,36)" rx="2" ry="2" /> | |
| <text x="983.50" y="591.5" ></text> | |
| </g> | |
| <g > | |
| <title>__printf_buffer (16,957,596 samples, 0.01%)</title><rect x="786.9" y="149" width="0.1" height="15.0" fill="rgb(219,68,16)" rx="2" ry="2" /> | |
| <text x="789.85" y="159.5" ></text> | |
| </g> | |
| <g > | |
| <title>__aarch64_ldadd4_acq_rel (637,928,125 samples, 0.35%)</title><rect x="532.4" y="677" width="4.1" height="15.0" fill="rgb(228,108,25)" rx="2" ry="2" /> | |
| <text x="535.37" y="687.5" ></text> | |
| </g> | |
| <g > | |
| <title>__futex_wait (119,747,319 samples, 0.07%)</title><rect x="249.4" y="613" width="0.8" height="15.0" fill="rgb(207,12,3)" rx="2" ry="2" /> | |
| <text x="252.39" y="623.5" ></text> | |
| </g> | |
| <g > | |
| <title>tc_call_bind_fs_state (949,928,161 samples, 0.53%)</title><rect x="51.0" y="805" width="6.3" height="15.0" fill="rgb(218,60,14)" rx="2" ry="2" /> | |
| <text x="54.05" y="815.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_unmarshal_VertexAttrib4fARB (24,761,591 samples, 0.01%)</title><rect x="1028.0" y="661" width="0.1" height="15.0" fill="rgb(215,47,11)" rx="2" ry="2" /> | |
| <text x="1030.97" y="671.5" ></text> | |
| </g> | |
| <g > | |
| <title>do_sched_yield (32,027,935 samples, 0.02%)</title><rect x="1034.3" y="469" width="0.2" height="15.0" fill="rgb(214,43,10)" rx="2" ry="2" /> | |
| <text x="1037.27" y="479.5" ></text> | |
| </g> | |
| <g > | |
| <title>___sys_recvmsg (102,941,387 samples, 0.06%)</title><rect x="507.8" y="533" width="0.7" height="15.0" fill="rgb(238,153,36)" rx="2" ry="2" /> | |
| <text x="510.85" y="543.5" ></text> | |
| </g> | |
| <g > | |
| <title>st_get_sampler_views (35,528,508 samples, 0.02%)</title><rect x="1133.8" y="613" width="0.3" height="15.0" fill="rgb(224,91,21)" rx="2" ry="2" /> | |
| <text x="1136.84" y="623.5" ></text> | |
| </g> | |
| <g > | |
| <title>do_futex (55,660,025 samples, 0.03%)</title><rect x="538.9" y="501" width="0.4" height="15.0" fill="rgb(245,184,44)" rx="2" ry="2" /> | |
| <text x="541.94" y="511.5" ></text> | |
| </g> | |
| <g > | |
| <title>vfs_getattr (63,175,487 samples, 0.03%)</title><rect x="1186.3" y="565" width="0.4" height="15.0" fill="rgb(206,8,2)" rx="2" ry="2" /> | |
| <text x="1189.27" y="575.5" ></text> | |
| </g> | |
| <g > | |
| <title>strspn (30,941,169 samples, 0.02%)</title><rect x="789.0" y="197" width="0.2" height="15.0" fill="rgb(207,13,3)" rx="2" ry="2" /> | |
| <text x="791.98" y="207.5" ></text> | |
| </g> | |
| <g > | |
| <title>el0t_64_sync_handler (65,647,376 samples, 0.04%)</title><rect x="538.9" y="597" width="0.4" height="15.0" fill="rgb(211,32,7)" rx="2" ry="2" /> | |
| <text x="541.90" y="607.5" ></text> | |
| </g> | |
| <g > | |
| <title>do_notify_resume (48,446,415 samples, 0.03%)</title><rect x="973.0" y="597" width="0.3" height="15.0" fill="rgb(233,129,30)" rx="2" ry="2" /> | |
| <text x="976.02" y="607.5" ></text> | |
| </g> | |
| <g > | |
| <title>copy_uniforms_to_storage (29,445,431 samples, 0.02%)</title><rect x="461.4" y="773" width="0.2" height="15.0" fill="rgb(250,207,49)" rx="2" ry="2" /> | |
| <text x="464.39" y="783.5" ></text> | |
| </g> | |
| <g > | |
| <title>st_update_rasterizer (44,891,619 samples, 0.02%)</title><rect x="1122.2" y="629" width="0.3" height="15.0" fill="rgb(240,164,39)" rx="2" ry="2" /> | |
| <text x="1125.17" y="639.5" ></text> | |
| </g> | |
| <g > | |
| <title>copy_uniforms_to_storage (98,252,448 samples, 0.05%)</title><rect x="1141.1" y="677" width="0.7" height="15.0" fill="rgb(250,207,49)" rx="2" ry="2" /> | |
| <text x="1144.12" y="687.5" ></text> | |
| </g> | |
| <g > | |
| <title>bind_texture_object (76,527,841 samples, 0.04%)</title><rect x="864.5" y="613" width="0.5" height="15.0" fill="rgb(221,73,17)" rx="2" ry="2" /> | |
| <text x="867.46" y="623.5" ></text> | |
| </g> | |
| <g > | |
| <title>__aarch64_ldadd4_acq_rel (73,981,523 samples, 0.04%)</title><rect x="47.4" y="741" width="0.5" height="15.0" fill="rgb(228,108,25)" rx="2" ry="2" /> | |
| <text x="50.41" y="751.5" ></text> | |
| </g> | |
| <g > | |
| <title>st_get_texture_sampler_view_from_stobj (86,555,642 samples, 0.05%)</title><rect x="1087.3" y="613" width="0.5" height="15.0" fill="rgb(211,32,7)" rx="2" ry="2" /> | |
| <text x="1090.27" y="623.5" ></text> | |
| </g> | |
| <g > | |
| <title>[libxcb.so.1.1.0] (186,608,621 samples, 0.10%)</title><rect x="507.5" y="709" width="1.2" height="15.0" fill="rgb(226,98,23)" rx="2" ry="2" /> | |
| <text x="510.48" y="719.5" ></text> | |
| </g> | |
| <g > | |
| <title>do_validate_attachment (36,974,481 samples, 0.02%)</title><rect x="1080.4" y="597" width="0.3" height="15.0" fill="rgb(254,225,54)" rx="2" ry="2" /> | |
| <text x="1083.42" y="607.5" ></text> | |
| </g> | |
| <g > | |
| <title>si_bind_ps_shader (767,023,781 samples, 0.42%)</title><rect x="51.1" y="789" width="5.0" height="15.0" fill="rgb(240,164,39)" rx="2" ry="2" /> | |
| <text x="54.11" y="799.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_uniform_matrix (167,853,298 samples, 0.09%)</title><rect x="474.9" y="757" width="1.1" height="15.0" fill="rgb(215,47,11)" rx="2" ry="2" /> | |
| <text x="477.87" y="767.5" ></text> | |
| </g> | |
| <g > | |
| <title>idr_alloc (18,986,475 samples, 0.01%)</title><rect x="189.4" y="485" width="0.2" height="15.0" fill="rgb(210,25,6)" rx="2" ry="2" /> | |
| <text x="192.44" y="495.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_reference_program_ (267,007,912 samples, 0.15%)</title><rect x="483.8" y="741" width="1.8" height="15.0" fill="rgb(231,122,29)" rx="2" ry="2" /> | |
| <text x="486.85" y="751.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_uniform_matrix (29,364,225 samples, 0.02%)</title><rect x="879.3" y="597" width="0.2" height="15.0" fill="rgb(215,47,11)" rx="2" ry="2" /> | |
| <text x="882.33" y="607.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_unmarshal_Uniform4fv (82,099,111 samples, 0.05%)</title><rect x="474.0" y="789" width="0.5" height="15.0" fill="rgb(212,33,8)" rx="2" ry="2" /> | |
| <text x="477.01" y="799.5" ></text> | |
| </g> | |
| <g > | |
| <title>ovl_other_xattr_get (61,474,490 samples, 0.03%)</title><rect x="1182.3" y="485" width="0.4" height="15.0" fill="rgb(214,42,10)" rx="2" ry="2" /> | |
| <text x="1185.25" y="495.5" ></text> | |
| </g> | |
| <g > | |
| <title>st_prepare_draw (1,662,600,464 samples, 0.92%)</title><rect x="1005.7" y="629" width="10.9" height="15.0" fill="rgb(214,45,10)" rx="2" ry="2" /> | |
| <text x="1008.69" y="639.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_set_enable (21,379,570 samples, 0.01%)</title><rect x="1058.1" y="661" width="0.1" height="15.0" fill="rgb(228,109,26)" rx="2" ry="2" /> | |
| <text x="1061.09" y="671.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_unmarshal_BeginQuery (47,067,095 samples, 0.03%)</title><rect x="347.0" y="805" width="0.3" height="15.0" fill="rgb(241,166,39)" rx="2" ry="2" /> | |
| <text x="350.01" y="815.5" ></text> | |
| </g> | |
| <g > | |
| <title>[libvorbis.so.0.4.9] (152,371,574 samples, 0.08%)</title><rect x="23.2" y="677" width="1.0" height="15.0" fill="rgb(233,129,30)" rx="2" ry="2" /> | |
| <text x="26.19" y="687.5" ></text> | |
| </g> | |
| <g > | |
| <title>__sincosf (84,088,764 samples, 0.05%)</title><rect x="1075.5" y="757" width="0.5" height="15.0" fill="rgb(246,188,45)" rx="2" ry="2" /> | |
| <text x="1078.47" y="767.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_unmarshal_Uniform2fv (22,840,594 samples, 0.01%)</title><rect x="461.6" y="789" width="0.2" height="15.0" fill="rgb(225,92,22)" rx="2" ry="2" /> | |
| <text x="464.62" y="799.5" ></text> | |
| </g> | |
| <g > | |
| <title>_glapi_set_dispatch (27,566,244 samples, 0.02%)</title><rect x="922.1" y="661" width="0.2" height="15.0" fill="rgb(208,15,3)" rx="2" ry="2" /> | |
| <text x="925.08" y="671.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_unmarshal_BindTexture (3,298,637,370 samples, 1.83%)</title><rect x="349.4" y="805" width="21.6" height="15.0" fill="rgb(248,199,47)" rx="2" ry="2" /> | |
| <text x="352.40" y="815.5" >_..</text> | |
| </g> | |
| <g > | |
| <title>__memcpy_generic (37,070,286 samples, 0.02%)</title><rect x="470.3" y="757" width="0.3" height="15.0" fill="rgb(231,124,29)" rx="2" ry="2" /> | |
| <text x="473.33" y="767.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_lookup_shader_program_err_glthread (19,827,847 samples, 0.01%)</title><rect x="1066.5" y="645" width="0.1" height="15.0" fill="rgb(246,190,45)" rx="2" ry="2" /> | |
| <text x="1069.49" y="655.5" ></text> | |
| </g> | |
| <g > | |
| <title>__vfscanf_internal (70,716,655 samples, 0.04%)</title><rect x="1179.7" y="677" width="0.4" height="15.0" fill="rgb(210,26,6)" rx="2" ry="2" /> | |
| <text x="1182.67" y="687.5" ></text> | |
| </g> | |
| <g > | |
| <title>amdgpu_cs_flush (25,875,269 samples, 0.01%)</title><rect x="536.5" y="677" width="0.2" height="15.0" fill="rgb(205,1,0)" rx="2" ry="2" /> | |
| <text x="539.54" y="687.5" ></text> | |
| </g> | |
| <g > | |
| <title>__audit_syscall_exit (21,381,376 samples, 0.01%)</title><rect x="36.8" y="677" width="0.2" height="15.0" fill="rgb(218,62,14)" rx="2" ry="2" /> | |
| <text x="39.84" y="687.5" ></text> | |
| </g> | |
| <g > | |
| <title>slab_zalloc (46,474,898 samples, 0.03%)</title><rect x="1072.0" y="645" width="0.3" height="15.0" fill="rgb(232,128,30)" rx="2" ry="2" /> | |
| <text x="1074.97" y="655.5" ></text> | |
| </g> | |
| <g > | |
| <title>si_set_sampler_view_desc (93,918,931 samples, 0.05%)</title><rect x="528.7" y="645" width="0.6" height="15.0" fill="rgb(216,53,12)" rx="2" ry="2" /> | |
| <text x="531.69" y="655.5" ></text> | |
| </g> | |
| <g > | |
| <title>util_queue_thread_func (13,569,053,316 samples, 7.52%)</title><rect x="248.7" y="837" width="88.7" height="15.0" fill="rgb(247,195,46)" rx="2" ry="2" /> | |
| <text x="251.73" y="847.5" >util_queue..</text> | |
| </g> | |
| <g > | |
| <title>ttm_lru_bulk_move_tail (20,165,185 samples, 0.01%)</title><rect x="312.5" y="565" width="0.1" height="15.0" fill="rgb(250,209,50)" rx="2" ry="2" /> | |
| <text x="315.48" y="575.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_validated_drawrangeelements (116,841,998 samples, 0.06%)</title><rect x="1118.9" y="661" width="0.8" height="15.0" fill="rgb(230,115,27)" rx="2" ry="2" /> | |
| <text x="1121.93" y="671.5" ></text> | |
| </g> | |
| <g > | |
| <title>unix_poll (15,384,094 samples, 0.01%)</title><rect x="543.1" y="517" width="0.1" height="15.0" fill="rgb(244,179,43)" rx="2" ry="2" /> | |
| <text x="546.10" y="527.5" ></text> | |
| </g> | |
| <g > | |
| <title>futex_wait_setup (27,064,579 samples, 0.01%)</title><rect x="972.8" y="485" width="0.1" height="15.0" fill="rgb(247,195,46)" rx="2" ry="2" /> | |
| <text x="975.77" y="495.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_uniform_matrix (35,478,487 samples, 0.02%)</title><rect x="1091.3" y="677" width="0.2" height="15.0" fill="rgb(215,47,11)" rx="2" ry="2" /> | |
| <text x="1094.27" y="687.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_unmarshal_UnmapBuffer (46,155,667 samples, 0.03%)</title><rect x="879.7" y="629" width="0.3" height="15.0" fill="rgb(221,73,17)" rx="2" ry="2" /> | |
| <text x="882.67" y="639.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_unmarshal_BindBuffer (22,151,202 samples, 0.01%)</title><rect x="844.1" y="645" width="0.1" height="15.0" fill="rgb(223,86,20)" rx="2" ry="2" /> | |
| <text x="847.10" y="655.5" ></text> | |
| </g> | |
| <g > | |
| <title>cfree@GLIBC_2.17 (24,889,103 samples, 0.01%)</title><rect x="790.5" y="229" width="0.2" height="15.0" fill="rgb(224,88,21)" rx="2" ry="2" /> | |
| <text x="793.51" y="239.5" ></text> | |
| </g> | |
| <g > | |
| <title>do_el0_svc (839,967,971 samples, 0.47%)</title><rect x="1181.4" y="677" width="5.5" height="15.0" fill="rgb(218,60,14)" rx="2" ry="2" /> | |
| <text x="1184.40" y="687.5" ></text> | |
| </g> | |
| <g > | |
| <title>get_user_pages_fast (34,337,494 samples, 0.02%)</title><rect x="252.9" y="629" width="0.2" height="15.0" fill="rgb(229,111,26)" rx="2" ry="2" /> | |
| <text x="255.92" y="639.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_update_state_locked (18,272,609 samples, 0.01%)</title><rect x="931.7" y="597" width="0.1" height="15.0" fill="rgb(214,43,10)" rx="2" ry="2" /> | |
| <text x="934.73" y="607.5" ></text> | |
| </g> | |
| <g > | |
| <title>tc_buffer_map (108,394,421 samples, 0.06%)</title><rect x="961.3" y="661" width="0.7" height="15.0" fill="rgb(247,195,46)" rx="2" ry="2" /> | |
| <text x="964.27" y="671.5" ></text> | |
| </g> | |
| <g > | |
| <title>st_prepare_draw (204,215,742 samples, 0.11%)</title><rect x="812.8" y="565" width="1.3" height="15.0" fill="rgb(214,45,10)" rx="2" ry="2" /> | |
| <text x="815.77" y="575.5" ></text> | |
| </g> | |
| <g > | |
| <title>amdgpu_cs_add_buffer (78,919,678 samples, 0.04%)</title><rect x="195.4" y="773" width="0.5" height="15.0" fill="rgb(254,227,54)" rx="2" ry="2" /> | |
| <text x="198.42" y="783.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_unmarshal_Uniform2fv (66,190,975 samples, 0.04%)</title><rect x="1137.6" y="709" width="0.5" height="15.0" fill="rgb(225,92,22)" rx="2" ry="2" /> | |
| <text x="1140.64" y="719.5" ></text> | |
| </g> | |
| <g > | |
| <title>__vsnprintf_chk (228,959,850 samples, 0.13%)</title><rect x="916.3" y="709" width="1.5" height="15.0" fill="rgb(247,193,46)" rx="2" ry="2" /> | |
| <text x="919.33" y="719.5" ></text> | |
| </g> | |
| <g > | |
| <title>void st_update_array_templ< (15,951,895 samples, 0.01%)</title><rect x="1063.8" y="613" width="0.1" height="15.0" fill="rgb(243,178,42)" rx="2" ry="2" /> | |
| <text x="1066.77" y="623.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_glthread_flush_batch (37,636,039 samples, 0.02%)</title><rect x="1068.5" y="725" width="0.2" height="15.0" fill="rgb(239,158,38)" rx="2" ry="2" /> | |
| <text x="1071.46" y="735.5" ></text> | |
| </g> | |
| <g > | |
| <title>malloc (23,051,961 samples, 0.01%)</title><rect x="1181.0" y="805" width="0.2" height="15.0" fill="rgb(230,119,28)" rx="2" ry="2" /> | |
| <text x="1184.05" y="815.5" ></text> | |
| </g> | |
| <g > | |
| <title>tc_call_flush (1,438,424,697 samples, 0.80%)</title><rect x="183.7" y="805" width="9.4" height="15.0" fill="rgb(208,17,4)" rx="2" ry="2" /> | |
| <text x="186.70" y="815.5" ></text> | |
| </g> | |
| <g > | |
| <title>amdgpu_cs_parser_bos.isra.0 (2,309,733,487 samples, 1.28%)</title><rect x="269.7" y="581" width="15.1" height="15.0" fill="rgb(218,63,15)" rx="2" ry="2" /> | |
| <text x="272.69" y="591.5" ></text> | |
| </g> | |
| <g > | |
| <title>do_el0_svc (67,203,635 samples, 0.04%)</title><rect x="542.9" y="629" width="0.4" height="15.0" fill="rgb(218,60,14)" rx="2" ry="2" /> | |
| <text x="545.89" y="639.5" ></text> | |
| </g> | |
| <g > | |
| <title>memcpy@plt (17,715,408 samples, 0.01%)</title><rect x="962.2" y="709" width="0.1" height="15.0" fill="rgb(224,88,21)" rx="2" ry="2" /> | |
| <text x="965.16" y="719.5" ></text> | |
| </g> | |
| <g > | |
| <title>_int_free (15,814,325 samples, 0.01%)</title><rect x="527.9" y="629" width="0.1" height="15.0" fill="rgb(247,196,46)" rx="2" ry="2" /> | |
| <text x="530.88" y="639.5" ></text> | |
| </g> | |
| <g > | |
| <title>do_notify_resume (331,264,772 samples, 0.18%)</title><rect x="31.6" y="709" width="2.1" height="15.0" fill="rgb(233,129,30)" rx="2" ry="2" /> | |
| <text x="34.57" y="719.5" ></text> | |
| </g> | |
| <g > | |
| <title>tc_set_sampler_views (43,118,175 samples, 0.02%)</title><rect x="941.6" y="565" width="0.3" height="15.0" fill="rgb(250,209,50)" rx="2" ry="2" /> | |
| <text x="944.61" y="575.5" ></text> | |
| </g> | |
| <g > | |
| <title>__libc_recvmsg (159,198,624 samples, 0.09%)</title><rect x="507.6" y="693" width="1.1" height="15.0" fill="rgb(220,72,17)" rx="2" ry="2" /> | |
| <text x="510.65" y="703.5" ></text> | |
| </g> | |
| <g > | |
| <title>st_update_single_texture (30,609,269 samples, 0.02%)</title><rect x="1063.1" y="597" width="0.2" height="15.0" fill="rgb(208,15,3)" rx="2" ry="2" /> | |
| <text x="1066.09" y="607.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_MultiDrawArrays (42,008,919 samples, 0.02%)</title><rect x="878.4" y="629" width="0.3" height="15.0" fill="rgb(216,53,12)" rx="2" ry="2" /> | |
| <text x="881.39" y="639.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_marshal_MapBufferRange (36,335,467 samples, 0.02%)</title><rect x="791.4" y="245" width="0.2" height="15.0" fill="rgb(219,65,15)" rx="2" ry="2" /> | |
| <text x="794.39" y="255.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_unmarshal_Uniform3f (60,467,120 samples, 0.03%)</title><rect x="1138.1" y="709" width="0.4" height="15.0" fill="rgb(231,119,28)" rx="2" ry="2" /> | |
| <text x="1141.07" y="719.5" ></text> | |
| </g> | |
| <g > | |
| <title>glthread_unmarshal_batch (62,531,923 samples, 0.03%)</title><rect x="1093.7" y="709" width="0.4" height="15.0" fill="rgb(247,195,46)" rx="2" ry="2" /> | |
| <text x="1096.68" y="719.5" ></text> | |
| </g> | |
| <g > | |
| <title>el0t_64_sync_handler (146,638,714 samples, 0.08%)</title><rect x="507.7" y="645" width="1.0" height="15.0" fill="rgb(211,32,7)" rx="2" ry="2" /> | |
| <text x="510.73" y="655.5" ></text> | |
| </g> | |
| <g > | |
| <title>void si_draw_vbo< (800,748,525 samples, 0.44%)</title><rect x="521.6" y="677" width="5.2" height="15.0" fill="rgb(226,101,24)" rx="2" ry="2" /> | |
| <text x="524.61" y="687.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_unmarshal_UniformMatrix4fv (20,978,292 samples, 0.01%)</title><rect x="814.3" y="613" width="0.1" height="15.0" fill="rgb(249,202,48)" rx="2" ry="2" /> | |
| <text x="817.30" y="623.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_VertexAttrib4Nubv (44,440,301 samples, 0.02%)</title><rect x="881.4" y="613" width="0.3" height="15.0" fill="rgb(231,121,29)" rx="2" ry="2" /> | |
| <text x="884.43" y="623.5" ></text> | |
| </g> | |
| <g > | |
| <title>____sys_recvmsg (74,743,239 samples, 0.04%)</title><rect x="507.8" y="517" width="0.5" height="15.0" fill="rgb(224,90,21)" rx="2" ry="2" /> | |
| <text x="510.85" y="527.5" ></text> | |
| </g> | |
| <g > | |
| <title>tc_call_bind_sampler_states (19,892,422 samples, 0.01%)</title><rect x="42.9" y="789" width="0.1" height="15.0" fill="rgb(243,176,42)" rx="2" ry="2" /> | |
| <text x="45.91" y="799.5" ></text> | |
| </g> | |
| <g > | |
| <title>st_prepare_draw (175,755,866 samples, 0.10%)</title><rect x="824.9" y="597" width="1.2" height="15.0" fill="rgb(214,45,10)" rx="2" ry="2" /> | |
| <text x="827.92" y="607.5" ></text> | |
| </g> | |
| <g > | |
| <title>st_update_framebuffer_state (26,652,908 samples, 0.01%)</title><rect x="1081.9" y="645" width="0.2" height="15.0" fill="rgb(231,123,29)" rx="2" ry="2" /> | |
| <text x="1084.89" y="655.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_uniform (29,983,442 samples, 0.02%)</title><rect x="946.1" y="629" width="0.2" height="15.0" fill="rgb(248,201,48)" rx="2" ry="2" /> | |
| <text x="949.12" y="639.5" ></text> | |
| </g> | |
| <g > | |
| <title>invoke_syscall (51,588,547 samples, 0.03%)</title><rect x="35.1" y="709" width="0.3" height="15.0" fill="rgb(209,18,4)" rx="2" ry="2" /> | |
| <text x="38.06" y="719.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_unmarshal_BindBuffer (53,624,604 samples, 0.03%)</title><rect x="922.4" y="645" width="0.3" height="15.0" fill="rgb(223,86,20)" rx="2" ry="2" /> | |
| <text x="925.40" y="655.5" ></text> | |
| </g> | |
| <g > | |
| <title>vbo_exec_copy_to_current (18,284,413 samples, 0.01%)</title><rect x="993.0" y="629" width="0.1" height="15.0" fill="rgb(218,60,14)" rx="2" ry="2" /> | |
| <text x="995.95" y="639.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_test_framebuffer_completeness (51,704,690 samples, 0.03%)</title><rect x="1110.0" y="613" width="0.3" height="15.0" fill="rgb(229,113,27)" rx="2" ry="2" /> | |
| <text x="1112.97" y="623.5" ></text> | |
| </g> | |
| <g > | |
| <title>el0_svc (247,850,548 samples, 0.14%)</title><rect x="188.4" y="645" width="1.6" height="15.0" fill="rgb(244,183,43)" rx="2" ry="2" /> | |
| <text x="191.41" y="655.5" ></text> | |
| </g> | |
| <g > | |
| <title>si_query_hw_emit_start (164,817,222 samples, 0.09%)</title><rect x="48.8" y="773" width="1.1" height="15.0" fill="rgb(251,215,51)" rx="2" ry="2" /> | |
| <text x="51.81" y="783.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_bufferobj_map_range (54,331,797 samples, 0.03%)</title><rect x="1036.1" y="693" width="0.4" height="15.0" fill="rgb(206,7,1)" rx="2" ry="2" /> | |
| <text x="1039.12" y="703.5" ></text> | |
| </g> | |
| <g > | |
| <title>si_flush_gfx_cs (1,385,609,836 samples, 0.77%)</title><rect x="183.9" y="773" width="9.0" height="15.0" fill="rgb(242,171,41)" rx="2" ry="2" /> | |
| <text x="186.85" y="783.5" ></text> | |
| </g> | |
| <g > | |
| <title>__printf_fp_l_buffer (214,074,912 samples, 0.12%)</title><rect x="513.6" y="629" width="1.4" height="15.0" fill="rgb(212,33,8)" rx="2" ry="2" /> | |
| <text x="516.58" y="639.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_unmarshal_UniformMatrix4fv (333,536,520 samples, 0.18%)</title><rect x="474.7" y="805" width="2.2" height="15.0" fill="rgb(249,202,48)" rx="2" ry="2" /> | |
| <text x="477.74" y="815.5" ></text> | |
| </g> | |
| <g > | |
| <title>futex_wait_queue (15,619,151 samples, 0.01%)</title><rect x="901.2" y="357" width="0.1" height="15.0" fill="rgb(225,92,22)" rx="2" ry="2" /> | |
| <text x="904.18" y="367.5" ></text> | |
| </g> | |
| <g > | |
| <title>amdgpu_do_add_buffer (21,070,519 samples, 0.01%)</title><rect x="337.2" y="789" width="0.2" height="15.0" fill="rgb(223,86,20)" rx="2" ry="2" /> | |
| <text x="340.24" y="799.5" ></text> | |
| </g> | |
| <g > | |
| <title>vbo_exec_FlushVertices (17,934,834 samples, 0.01%)</title><rect x="865.0" y="597" width="0.1" height="15.0" fill="rgb(226,100,24)" rx="2" ry="2" /> | |
| <text x="867.97" y="607.5" ></text> | |
| </g> | |
| <g > | |
| <title>png_read_row (21,569,673 samples, 0.01%)</title><rect x="741.3" y="629" width="0.1" height="15.0" fill="rgb(253,220,52)" rx="2" ry="2" /> | |
| <text x="744.30" y="639.5" ></text> | |
| </g> | |
| <g > | |
| <title>tc_buffer_map (497,003,831 samples, 0.28%)</title><rect x="958.8" y="677" width="3.2" height="15.0" fill="rgb(247,195,46)" rx="2" ry="2" /> | |
| <text x="961.78" y="687.5" ></text> | |
| </g> | |
| <g > | |
| <title>el0_svc (139,718,591 samples, 0.08%)</title><rect x="1095.3" y="645" width="0.9" height="15.0" fill="rgb(244,183,43)" rx="2" ry="2" /> | |
| <text x="1098.27" y="655.5" ></text> | |
| </g> | |
| <g > | |
| <title>syscall_trace_exit (44,216,010 samples, 0.02%)</title><rect x="344.4" y="709" width="0.3" height="15.0" fill="rgb(247,196,46)" rx="2" ry="2" /> | |
| <text x="347.42" y="719.5" ></text> | |
| </g> | |
| <g > | |
| <title>gup_fast_fallback (17,084,592 samples, 0.01%)</title><rect x="972.8" y="437" width="0.1" height="15.0" fill="rgb(242,172,41)" rx="2" ry="2" /> | |
| <text x="975.83" y="447.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_validated_drawrangeelements (15,643,310 samples, 0.01%)</title><rect x="785.9" y="85" width="0.1" height="15.0" fill="rgb(230,115,27)" rx="2" ry="2" /> | |
| <text x="788.86" y="95.5" ></text> | |
| </g> | |
| <g > | |
| <title>drm_ioctl (54,088,086 samples, 0.03%)</title><rect x="510.1" y="533" width="0.3" height="15.0" fill="rgb(231,121,29)" rx="2" ry="2" /> | |
| <text x="513.05" y="543.5" ></text> | |
| </g> | |
| <g > | |
| <title>glDrawRangeElements (64,924,262 samples, 0.04%)</title><rect x="1166.9" y="757" width="0.4" height="15.0" fill="rgb(239,158,37)" rx="2" ry="2" /> | |
| <text x="1169.92" y="767.5" ></text> | |
| </g> | |
| <g > | |
| <title>rt_mutex_wait_proxy_lock (31,625,941 samples, 0.02%)</title><rect x="10.8" y="613" width="0.2" height="15.0" fill="rgb(233,132,31)" rx="2" ry="2" /> | |
| <text x="13.77" y="623.5" ></text> | |
| </g> | |
| <g > | |
| <title>glsl_contains_opaque (17,130,841 samples, 0.01%)</title><rect x="473.3" y="773" width="0.1" height="15.0" fill="rgb(252,217,52)" rx="2" ry="2" /> | |
| <text x="476.28" y="783.5" ></text> | |
| </g> | |
| <g > | |
| <title>framebuffer_texture_with_dims (34,343,820 samples, 0.02%)</title><rect x="1018.7" y="645" width="0.2" height="15.0" fill="rgb(237,151,36)" rx="2" ry="2" /> | |
| <text x="1021.70" y="655.5" ></text> | |
| </g> | |
| <g > | |
| <title>amdgpu_cs_add_buffer (16,016,159 samples, 0.01%)</title><rect x="530.0" y="661" width="0.1" height="15.0" fill="rgb(254,227,54)" rx="2" ry="2" /> | |
| <text x="532.99" y="671.5" ></text> | |
| </g> | |
| <g > | |
| <title>security_inode_getsecurity (45,446,803 samples, 0.03%)</title><rect x="1182.3" y="421" width="0.3" height="15.0" fill="rgb(241,169,40)" rx="2" ry="2" /> | |
| <text x="1185.35" y="431.5" ></text> | |
| </g> | |
| <g > | |
| <title>__arm64_sys_futex (61,860,372 samples, 0.03%)</title><rect x="976.8" y="533" width="0.4" height="15.0" fill="rgb(247,196,47)" rx="2" ry="2" /> | |
| <text x="979.78" y="543.5" ></text> | |
| </g> | |
| <g > | |
| <title>do_notify_resume (27,904,069 samples, 0.02%)</title><rect x="16.6" y="693" width="0.2" height="15.0" fill="rgb(233,129,30)" rx="2" ry="2" /> | |
| <text x="19.57" y="703.5" ></text> | |
| </g> | |
| <g > | |
| <title>slab_zalloc (33,922,402 samples, 0.02%)</title><rect x="816.7" y="581" width="0.3" height="15.0" fill="rgb(232,128,30)" rx="2" ry="2" /> | |
| <text x="819.73" y="591.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_BindTexture (17,134,214 samples, 0.01%)</title><rect x="985.7" y="645" width="0.1" height="15.0" fill="rgb(234,136,32)" rx="2" ry="2" /> | |
| <text x="988.70" y="655.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_BindTexture (70,059,204 samples, 0.04%)</title><rect x="363.8" y="773" width="0.5" height="15.0" fill="rgb(234,136,32)" rx="2" ry="2" /> | |
| <text x="366.80" y="783.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_unmarshal_VertexAttribPointer_packed (57,565,048 samples, 0.03%)</title><rect x="1067.4" y="693" width="0.4" height="15.0" fill="rgb(232,124,29)" rx="2" ry="2" /> | |
| <text x="1070.41" y="703.5" ></text> | |
| </g> | |
| <g > | |
| <title>amdgpu_bo_wait (21,774,235 samples, 0.01%)</title><rect x="973.9" y="597" width="0.1" height="15.0" fill="rgb(241,168,40)" rx="2" ry="2" /> | |
| <text x="976.85" y="607.5" ></text> | |
| </g> | |
| <g > | |
| <title>[libxcb.so.1.1.0] (17,100,071 samples, 0.01%)</title><rect x="504.7" y="693" width="0.1" height="15.0" fill="rgb(226,98,23)" rx="2" ry="2" /> | |
| <text x="507.73" y="703.5" ></text> | |
| </g> | |
| <g > | |
| <title>tc_call_set_vertex_buffers (127,344,227 samples, 0.07%)</title><rect x="529.6" y="693" width="0.8" height="15.0" fill="rgb(247,194,46)" rx="2" ry="2" /> | |
| <text x="532.58" y="703.5" ></text> | |
| </g> | |
| <g > | |
| <title>gup_fast_fallback (29,090,521 samples, 0.02%)</title><rect x="1095.6" y="469" width="0.2" height="15.0" fill="rgb(242,172,41)" rx="2" ry="2" /> | |
| <text x="1098.57" y="479.5" ></text> | |
| </g> | |
| <g > | |
| <title>tc_call_set_vertex_buffers (126,499,764 samples, 0.07%)</title><rect x="247.6" y="789" width="0.8" height="15.0" fill="rgb(247,194,46)" rx="2" ry="2" /> | |
| <text x="250.58" y="799.5" ></text> | |
| </g> | |
| <g > | |
| <title>do_futex_fence_wait (40,933,055 samples, 0.02%)</title><rect x="516.7" y="709" width="0.3" height="15.0" fill="rgb(230,118,28)" rx="2" ry="2" /> | |
| <text x="519.73" y="719.5" ></text> | |
| </g> | |
| <g > | |
| <title>ac_init_cb_surface (36,355,042 samples, 0.02%)</title><rect x="198.8" y="773" width="0.3" height="15.0" fill="rgb(254,228,54)" rx="2" ry="2" /> | |
| <text x="201.85" y="783.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_update_texture_state (1,007,083,667 samples, 0.56%)</title><rect x="385.0" y="725" width="6.6" height="15.0" fill="rgb(237,148,35)" rx="2" ry="2" /> | |
| <text x="388.04" y="735.5" ></text> | |
| </g> | |
| <g > | |
| <title>__tz_convert (16,690,386 samples, 0.01%)</title><rect x="1180.5" y="789" width="0.2" height="15.0" fill="rgb(217,56,13)" rx="2" ry="2" /> | |
| <text x="1183.54" y="799.5" ></text> | |
| </g> | |
| <g > | |
| <title>el0t_64_sync (17,012,329 samples, 0.01%)</title><rect x="805.9" y="533" width="0.1" height="15.0" fill="rgb(217,56,13)" rx="2" ry="2" /> | |
| <text x="808.88" y="543.5" ></text> | |
| </g> | |
| <g > | |
| <title>_raw_spin_unlock_irq (33,301,105 samples, 0.02%)</title><rect x="11.1" y="629" width="0.2" height="15.0" fill="rgb(215,47,11)" rx="2" ry="2" /> | |
| <text x="14.05" y="639.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_marshal_DrawRangeElements (57,630,184 samples, 0.03%)</title><rect x="1054.9" y="741" width="0.4" height="15.0" fill="rgb(229,111,26)" rx="2" ry="2" /> | |
| <text x="1057.92" y="751.5" ></text> | |
| </g> | |
| <g > | |
| <title>u_upload_alloc (107,917,752 samples, 0.06%)</title><rect x="417.3" y="709" width="0.8" height="15.0" fill="rgb(235,138,33)" rx="2" ry="2" /> | |
| <text x="420.35" y="719.5" ></text> | |
| </g> | |
| <g > | |
| <title>do_iter_readv_writev (215,310,253 samples, 0.12%)</title><rect x="541.1" y="517" width="1.4" height="15.0" fill="rgb(221,76,18)" rx="2" ry="2" /> | |
| <text x="544.12" y="527.5" ></text> | |
| </g> | |
| <g > | |
| <title>cso_set_vertex_elements_direct (41,682,607 samples, 0.02%)</title><rect x="1135.0" y="613" width="0.2" height="15.0" fill="rgb(222,80,19)" rx="2" ry="2" /> | |
| <text x="1137.97" y="623.5" ></text> | |
| </g> | |
| <g > | |
| <title>consume_skb (20,144,533 samples, 0.01%)</title><rect x="508.1" y="453" width="0.2" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" /> | |
| <text x="511.13" y="463.5" ></text> | |
| </g> | |
| <g > | |
| <title>el0t_64_sync_handler (18,062,737 samples, 0.01%)</title><rect x="39.0" y="677" width="0.1" height="15.0" fill="rgb(211,32,7)" rx="2" ry="2" /> | |
| <text x="41.98" y="687.5" ></text> | |
| </g> | |
| <g > | |
| <title>el0_svc (25,520,389 samples, 0.01%)</title><rect x="418.8" y="597" width="0.2" height="15.0" fill="rgb(244,183,43)" rx="2" ry="2" /> | |
| <text x="421.81" y="607.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_bufferobj_map_range (135,839,417 samples, 0.08%)</title><rect x="816.3" y="645" width="0.9" height="15.0" fill="rgb(206,7,1)" rx="2" ry="2" /> | |
| <text x="819.30" y="655.5" ></text> | |
| </g> | |
| <g > | |
| <title>void st_update_array_impl< (17,774,044 samples, 0.01%)</title><rect x="1112.9" y="661" width="0.1" height="15.0" fill="rgb(217,56,13)" rx="2" ry="2" /> | |
| <text x="1115.88" y="671.5" ></text> | |
| </g> | |
| <g > | |
| <title>invoke_syscall (31,740,309 samples, 0.02%)</title><rect x="884.6" y="485" width="0.2" height="15.0" fill="rgb(209,18,4)" rx="2" ry="2" /> | |
| <text x="887.62" y="495.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_lookup_shader_program_err_glthread (22,822,577 samples, 0.01%)</title><rect x="1091.8" y="677" width="0.2" height="15.0" fill="rgb(246,190,45)" rx="2" ry="2" /> | |
| <text x="1094.81" y="687.5" ></text> | |
| </g> | |
| <g > | |
| <title>do_vfs_ioctl (17,016,673 samples, 0.01%)</title><rect x="189.6" y="565" width="0.1" height="15.0" fill="rgb(227,102,24)" rx="2" ry="2" /> | |
| <text x="192.62" y="575.5" ></text> | |
| </g> | |
| <g > | |
| <title>pa_write@plt (16,394,839 samples, 0.01%)</title><rect x="15.5" y="757" width="0.1" height="15.0" fill="rgb(230,117,28)" rx="2" ry="2" /> | |
| <text x="18.46" y="767.5" ></text> | |
| </g> | |
| <g > | |
| <title>el0_svc_common.constprop.0 (27,187,332 samples, 0.02%)</title><rect x="956.3" y="549" width="0.2" height="15.0" fill="rgb(224,89,21)" rx="2" ry="2" /> | |
| <text x="959.32" y="559.5" ></text> | |
| </g> | |
| <g > | |
| <title>si_buffer_transfer_map (22,223,694 samples, 0.01%)</title><rect x="833.8" y="613" width="0.1" height="15.0" fill="rgb(237,151,36)" rx="2" ry="2" /> | |
| <text x="836.79" y="623.5" ></text> | |
| </g> | |
| <g > | |
| <title>unmap_buffer (32,677,658 samples, 0.02%)</title><rect x="1066.0" y="677" width="0.2" height="15.0" fill="rgb(233,131,31)" rx="2" ry="2" /> | |
| <text x="1068.97" y="687.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_UseProgram (25,151,251 samples, 0.01%)</title><rect x="1091.6" y="677" width="0.2" height="15.0" fill="rgb(212,36,8)" rx="2" ry="2" /> | |
| <text x="1094.60" y="687.5" ></text> | |
| </g> | |
| <g > | |
| <title>update_textures (17,549,639 samples, 0.01%)</title><rect x="930.8" y="597" width="0.1" height="15.0" fill="rgb(232,125,29)" rx="2" ry="2" /> | |
| <text x="933.81" y="607.5" ></text> | |
| </g> | |
| <g > | |
| <title>map_buffer_range (17,232,894 samples, 0.01%)</title><rect x="906.3" y="677" width="0.1" height="15.0" fill="rgb(244,183,43)" rx="2" ry="2" /> | |
| <text x="909.26" y="687.5" ></text> | |
| </g> | |
| <g > | |
| <title>st_context_flush (4,538,648,315 samples, 2.51%)</title><rect x="510.6" y="757" width="29.7" height="15.0" fill="rgb(223,84,20)" rx="2" ry="2" /> | |
| <text x="513.60" y="767.5" >st..</text> | |
| </g> | |
| <g > | |
| <title>el0_svc_common.constprop.0 (104,278,313 samples, 0.06%)</title><rect x="1173.7" y="613" width="0.7" height="15.0" fill="rgb(224,89,21)" rx="2" ry="2" /> | |
| <text x="1176.72" y="623.5" ></text> | |
| </g> | |
| <g > | |
| <title>slab_alloc (123,126,151 samples, 0.07%)</title><rect x="1038.1" y="613" width="0.8" height="15.0" fill="rgb(221,74,17)" rx="2" ry="2" /> | |
| <text x="1041.11" y="623.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_update_texture_state (44,511,850 samples, 0.02%)</title><rect x="867.6" y="565" width="0.3" height="15.0" fill="rgb(237,148,35)" rx="2" ry="2" /> | |
| <text x="870.61" y="575.5" ></text> | |
| </g> | |
| <g > | |
| <title>si_buffer_transfer_map (17,716,139 samples, 0.01%)</title><rect x="1168.7" y="693" width="0.1" height="15.0" fill="rgb(237,151,36)" rx="2" ry="2" /> | |
| <text x="1171.71" y="703.5" ></text> | |
| </g> | |
| <g > | |
| <title>strcspn (39,789,806 samples, 0.02%)</title><rect x="795.3" y="325" width="0.3" height="15.0" fill="rgb(218,61,14)" rx="2" ry="2" /> | |
| <text x="798.32" y="335.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_uniform_matrix (20,379,371 samples, 0.01%)</title><rect x="1155.0" y="677" width="0.1" height="15.0" fill="rgb(215,47,11)" rx="2" ry="2" /> | |
| <text x="1157.95" y="687.5" ></text> | |
| </g> | |
| <g > | |
| <title>amdgpu_bo_map (28,743,013 samples, 0.02%)</title><rect x="1160.0" y="661" width="0.2" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" /> | |
| <text x="1162.97" y="671.5" ></text> | |
| </g> | |
| <g > | |
| <title>get_query_object (68,612,385 samples, 0.04%)</title><rect x="1034.0" y="725" width="0.5" height="15.0" fill="rgb(236,144,34)" rx="2" ry="2" /> | |
| <text x="1037.04" y="735.5" ></text> | |
| </g> | |
| <g > | |
| <title>tc_buffer_map (52,983,873 samples, 0.03%)</title><rect x="1168.8" y="709" width="0.4" height="15.0" fill="rgb(247,195,46)" rx="2" ry="2" /> | |
| <text x="1171.83" y="719.5" ></text> | |
| </g> | |
| <g > | |
| <title>read (28,016,369 samples, 0.02%)</title><rect x="12.9" y="693" width="0.2" height="15.0" fill="rgb(252,216,51)" rx="2" ry="2" /> | |
| <text x="15.95" y="703.5" ></text> | |
| </g> | |
| <g > | |
| <title>strcmp (114,176,562 samples, 0.06%)</title><rect x="963.5" y="709" width="0.7" height="15.0" fill="rgb(217,58,13)" rx="2" ry="2" /> | |
| <text x="966.47" y="719.5" ></text> | |
| </g> | |
| <g > | |
| <title>cso_set_samplers (18,229,920 samples, 0.01%)</title><rect x="1012.3" y="597" width="0.2" height="15.0" fill="rgb(215,48,11)" rx="2" ry="2" /> | |
| <text x="1015.34" y="607.5" ></text> | |
| </g> | |
| <g > | |
| <title>cso_set_fragment_shader_handle (21,161,079 samples, 0.01%)</title><rect x="397.9" y="741" width="0.2" height="15.0" fill="rgb(229,112,26)" rx="2" ry="2" /> | |
| <text x="400.94" y="751.5" ></text> | |
| </g> | |
| <g > | |
| <title>tc_call_end_query (40,797,671 samples, 0.02%)</title><rect x="183.4" y="805" width="0.3" height="15.0" fill="rgb(206,8,1)" rx="2" ry="2" /> | |
| <text x="186.44" y="815.5" ></text> | |
| </g> | |
| <g > | |
| <title>si_launch_grid_internal_ssbos (163,209,939 samples, 0.09%)</title><rect x="80.8" y="709" width="1.1" height="15.0" fill="rgb(218,63,15)" rx="2" ry="2" /> | |
| <text x="83.79" y="719.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_FramebufferTexture2D (220,643,887 samples, 0.12%)</title><rect x="1017.5" y="661" width="1.4" height="15.0" fill="rgb(216,51,12)" rx="2" ry="2" /> | |
| <text x="1020.49" y="671.5" ></text> | |
| </g> | |
| <g > | |
| <title>vbo_exec_FlushVertices (19,463,543 samples, 0.01%)</title><rect x="456.4" y="757" width="0.1" height="15.0" fill="rgb(226,100,24)" rx="2" ry="2" /> | |
| <text x="459.37" y="767.5" ></text> | |
| </g> | |
| <g > | |
| <title>[libvorbis.so.0.4.9] (33,707,607 samples, 0.02%)</title><rect x="22.9" y="677" width="0.3" height="15.0" fill="rgb(233,129,30)" rx="2" ry="2" /> | |
| <text x="25.95" y="687.5" ></text> | |
| </g> | |
| <g > | |
| <title>tc_bind_sampler_states (170,947,150 samples, 0.09%)</title><rect x="420.1" y="709" width="1.1" height="15.0" fill="rgb(218,61,14)" rx="2" ry="2" /> | |
| <text x="423.07" y="719.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_reference_framebuffer_ (27,412,540 samples, 0.02%)</title><rect x="349.0" y="773" width="0.2" height="15.0" fill="rgb(216,54,13)" rx="2" ry="2" /> | |
| <text x="352.00" y="783.5" ></text> | |
| </g> | |
| <g > | |
| <title>tc_call_bind_vs_state (77,805,570 samples, 0.04%)</title><rect x="518.6" y="693" width="0.5" height="15.0" fill="rgb(214,44,10)" rx="2" ry="2" /> | |
| <text x="521.63" y="703.5" ></text> | |
| </g> | |
| <g > | |
| <title>tc_add_set_vertex_buffers_call (28,753,112 samples, 0.02%)</title><rect x="455.2" y="709" width="0.2" height="15.0" fill="rgb(214,45,10)" rx="2" ry="2" /> | |
| <text x="458.24" y="719.5" ></text> | |
| </g> | |
| <g > | |
| <title>__glxHashLookup (16,840,509 samples, 0.01%)</title><rect x="507.1" y="789" width="0.1" height="15.0" fill="rgb(245,188,45)" rx="2" ry="2" /> | |
| <text x="510.05" y="799.5" ></text> | |
| </g> | |
| <g > | |
| <title>do_el0_svc (27,187,332 samples, 0.02%)</title><rect x="956.3" y="565" width="0.2" height="15.0" fill="rgb(218,60,14)" rx="2" ry="2" /> | |
| <text x="959.32" y="575.5" ></text> | |
| </g> | |
| <g > | |
| <title>si_bind_vs_shader (93,198,463 samples, 0.05%)</title><rect x="61.3" y="773" width="0.6" height="15.0" fill="rgb(252,216,51)" rx="2" ry="2" /> | |
| <text x="64.30" y="783.5" ></text> | |
| </g> | |
| <g > | |
| <title>si_pm4_emit_dsa (22,300,857 samples, 0.01%)</title><rect x="179.1" y="757" width="0.1" height="15.0" fill="rgb(238,152,36)" rx="2" ry="2" /> | |
| <text x="182.09" y="767.5" ></text> | |
| </g> | |
| <g > | |
| <title>__memcpy_generic (16,380,684 samples, 0.01%)</title><rect x="850.9" y="565" width="0.1" height="15.0" fill="rgb(231,124,29)" rx="2" ry="2" /> | |
| <text x="853.90" y="575.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_marshal_MapBufferRange (19,664,048 samples, 0.01%)</title><rect x="831.3" y="661" width="0.1" height="15.0" fill="rgb(219,65,15)" rx="2" ry="2" /> | |
| <text x="834.29" y="671.5" ></text> | |
| </g> | |
| <g > | |
| <title>__memcpy_generic (23,745,219 samples, 0.01%)</title><rect x="798.7" y="437" width="0.1" height="15.0" fill="rgb(231,124,29)" rx="2" ry="2" /> | |
| <text x="801.66" y="447.5" ></text> | |
| </g> | |
| <g > | |
| <title>__strlen_mte (55,683,496 samples, 0.03%)</title><rect x="1052.8" y="693" width="0.4" height="15.0" fill="rgb(227,102,24)" rx="2" ry="2" /> | |
| <text x="1055.82" y="703.5" ></text> | |
| </g> | |
| <g > | |
| <title>cso_set_samplers (18,539,319 samples, 0.01%)</title><rect x="827.8" y="533" width="0.1" height="15.0" fill="rgb(215,48,11)" rx="2" ry="2" /> | |
| <text x="830.79" y="543.5" ></text> | |
| </g> | |
| <g > | |
| <title>st_invalidate_state (80,357,750 samples, 0.04%)</title><rect x="391.7" y="741" width="0.5" height="15.0" fill="rgb(245,184,44)" rx="2" ry="2" /> | |
| <text x="394.69" y="751.5" ></text> | |
| </g> | |
| <g > | |
| <title>el0_svc_common.constprop.0 (36,424,765 samples, 0.02%)</title><rect x="506.5" y="693" width="0.2" height="15.0" fill="rgb(224,89,21)" rx="2" ry="2" /> | |
| <text x="509.48" y="703.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_unmarshal_DrawElementsPacked (49,694,313 samples, 0.03%)</title><rect x="799.7" y="405" width="0.3" height="15.0" fill="rgb(225,92,22)" rx="2" ry="2" /> | |
| <text x="802.69" y="415.5" ></text> | |
| </g> | |
| <g > | |
| <title>tc_call_begin_query (417,929,662 samples, 0.23%)</title><rect x="47.2" y="805" width="2.8" height="15.0" fill="rgb(226,96,23)" rx="2" ry="2" /> | |
| <text x="50.23" y="815.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_update_array_format (15,837,489 samples, 0.01%)</title><rect x="1093.4" y="645" width="0.1" height="15.0" fill="rgb(228,109,26)" rx="2" ry="2" /> | |
| <text x="1096.38" y="655.5" ></text> | |
| </g> | |
| <g > | |
| <title>ac_prepare_cs_clear_copy_buffer (16,755,828 samples, 0.01%)</title><rect x="80.6" y="693" width="0.1" height="15.0" fill="rgb(235,138,33)" rx="2" ry="2" /> | |
| <text x="83.57" y="703.5" ></text> | |
| </g> | |
| <g > | |
| <title>void st_update_array_templ< (619,746,809 samples, 0.34%)</title><rect x="451.4" y="741" width="4.0" height="15.0" fill="rgb(243,178,42)" rx="2" ry="2" /> | |
| <text x="454.39" y="751.5" ></text> | |
| </g> | |
| <g > | |
| <title>cfree@GLIBC_2.17 (16,926,578 samples, 0.01%)</title><rect x="788.6" y="197" width="0.1" height="15.0" fill="rgb(224,88,21)" rx="2" ry="2" /> | |
| <text x="791.56" y="207.5" ></text> | |
| </g> | |
| <g > | |
| <title>cnd_signal (84,471,800 samples, 0.05%)</title><rect x="901.6" y="549" width="0.6" height="15.0" fill="rgb(232,125,30)" rx="2" ry="2" /> | |
| <text x="904.62" y="559.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_unmarshal_BindTexture (860,391,095 samples, 0.48%)</title><rect x="1098.6" y="709" width="5.7" height="15.0" fill="rgb(248,199,47)" rx="2" ry="2" /> | |
| <text x="1101.64" y="719.5" ></text> | |
| </g> | |
| <g > | |
| <title>amdgpu_bo_create (67,526,482 samples, 0.04%)</title><rect x="515.3" y="645" width="0.4" height="15.0" fill="rgb(207,13,3)" rx="2" ry="2" /> | |
| <text x="518.30" y="655.5" ></text> | |
| </g> | |
| <g > | |
| <title>si_create_surface (26,085,840 samples, 0.01%)</title><rect x="1089.6" y="613" width="0.1" height="15.0" fill="rgb(245,186,44)" rx="2" ry="2" /> | |
| <text x="1092.58" y="623.5" ></text> | |
| </g> | |
| <g > | |
| <title>cso_set_vertex_elements_direct (82,536,225 samples, 0.05%)</title><rect x="875.3" y="533" width="0.6" height="15.0" fill="rgb(222,80,19)" rx="2" ry="2" /> | |
| <text x="878.32" y="543.5" ></text> | |
| </g> | |
| <g > | |
| <title>wake_q_add_safe (25,559,410 samples, 0.01%)</title><rect x="343.2" y="645" width="0.2" height="15.0" fill="rgb(254,225,53)" rx="2" ry="2" /> | |
| <text x="346.24" y="655.5" ></text> | |
| </g> | |
| <g > | |
| <title>el0t_64_sync_handler (17,012,329 samples, 0.01%)</title><rect x="805.9" y="517" width="0.1" height="15.0" fill="rgb(211,32,7)" rx="2" ry="2" /> | |
| <text x="808.88" y="527.5" ></text> | |
| </g> | |
| <g > | |
| <title>shared_dispatch_stub_551 (46,645,575 samples, 0.03%)</title><rect x="1041.5" y="725" width="0.3" height="15.0" fill="rgb(235,142,34)" rx="2" ry="2" /> | |
| <text x="1044.54" y="735.5" ></text> | |
| </g> | |
| <g > | |
| <title>cso_set_vertex_elements_direct (153,341,058 samples, 0.08%)</title><rect x="451.5" y="693" width="1.0" height="15.0" fill="rgb(222,80,19)" rx="2" ry="2" /> | |
| <text x="454.55" y="703.5" ></text> | |
| </g> | |
| <g > | |
| <title>vorbis_book_decode (17,986,005 samples, 0.01%)</title><rect x="24.9" y="661" width="0.2" height="15.0" fill="rgb(254,227,54)" rx="2" ry="2" /> | |
| <text x="27.94" y="671.5" ></text> | |
| </g> | |
| <g > | |
| <title>do_futex (85,916,872 samples, 0.05%)</title><rect x="1173.7" y="565" width="0.6" height="15.0" fill="rgb(245,184,44)" rx="2" ry="2" /> | |
| <text x="1176.74" y="575.5" ></text> | |
| </g> | |
| <g > | |
| <title>glthread_unmarshal_batch (18,878,258 samples, 0.01%)</title><rect x="792.9" y="245" width="0.1" height="15.0" fill="rgb(247,195,46)" rx="2" ry="2" /> | |
| <text x="795.90" y="255.5" ></text> | |
| </g> | |
| <g > | |
| <title>update_program (16,045,606 samples, 0.01%)</title><rect x="1110.8" y="645" width="0.1" height="15.0" fill="rgb(236,145,34)" rx="2" ry="2" /> | |
| <text x="1113.83" y="655.5" ></text> | |
| </g> | |
| <g > | |
| <title>si_query_hw_get_result (64,963,511 samples, 0.04%)</title><rect x="1034.1" y="661" width="0.4" height="15.0" fill="rgb(239,156,37)" rx="2" ry="2" /> | |
| <text x="1037.07" y="671.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_use_program (34,164,679 samples, 0.02%)</title><rect x="859.1" y="581" width="0.2" height="15.0" fill="rgb(235,141,33)" rx="2" ry="2" /> | |
| <text x="862.12" y="591.5" ></text> | |
| </g> | |
| <g > | |
| <title>__posix_memalign (15,750,963 samples, 0.01%)</title><rect x="419.0" y="677" width="0.1" height="15.0" fill="rgb(246,190,45)" rx="2" ry="2" /> | |
| <text x="422.02" y="687.5" ></text> | |
| </g> | |
| <g > | |
| <title>st_prepare_draw (15,711,722 samples, 0.01%)</title><rect x="782.5" y="37" width="0.1" height="15.0" fill="rgb(214,45,10)" rx="2" ry="2" /> | |
| <text x="785.53" y="47.5" ></text> | |
| </g> | |
| <g > | |
| <title>get_vfs_caps_from_disk (78,808,837 samples, 0.04%)</title><rect x="1182.3" y="517" width="0.5" height="15.0" fill="rgb(220,69,16)" rx="2" ry="2" /> | |
| <text x="1185.25" y="527.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_uniform (54,753,385 samples, 0.03%)</title><rect x="946.5" y="645" width="0.4" height="15.0" fill="rgb(248,201,48)" rx="2" ry="2" /> | |
| <text x="949.55" y="655.5" ></text> | |
| </g> | |
| <g > | |
| <title>si_bind_vertex_elements (51,089,096 samples, 0.03%)</title><rect x="60.8" y="773" width="0.4" height="15.0" fill="rgb(243,176,42)" rx="2" ry="2" /> | |
| <text x="63.82" y="783.5" ></text> | |
| </g> | |
| <g > | |
| <title>__arm64_sys_ioctl (118,262,182 samples, 0.07%)</title><rect x="895.7" y="405" width="0.8" height="15.0" fill="rgb(207,11,2)" rx="2" ry="2" /> | |
| <text x="898.72" y="415.5" ></text> | |
| </g> | |
| <g > | |
| <title>__GI___ioctl (30,367,821 samples, 0.02%)</title><rect x="538.3" y="629" width="0.2" height="15.0" fill="rgb(232,128,30)" rx="2" ry="2" /> | |
| <text x="541.31" y="639.5" ></text> | |
| </g> | |
| <g > | |
| <title>[redeclipse] (764,996,041 samples, 0.42%)</title><rect x="780.2" y="165" width="5.0" height="15.0" fill="rgb(253,222,53)" rx="2" ry="2" /> | |
| <text x="783.25" y="175.5" ></text> | |
| </g> | |
| <g > | |
| <title>el0_svc_common.constprop.0 (39,962,889 samples, 0.02%)</title><rect x="884.6" y="501" width="0.3" height="15.0" fill="rgb(224,89,21)" rx="2" ry="2" /> | |
| <text x="887.60" y="511.5" ></text> | |
| </g> | |
| <g > | |
| <title>check_heap_object (48,660,637 samples, 0.03%)</title><rect x="289.8" y="533" width="0.3" height="15.0" fill="rgb(241,165,39)" rx="2" ry="2" /> | |
| <text x="292.80" y="543.5" ></text> | |
| </g> | |
| <g > | |
| <title>pb_cache_add_buffer (16,954,026 samples, 0.01%)</title><rect x="334.3" y="805" width="0.1" height="15.0" fill="rgb(221,77,18)" rx="2" ry="2" /> | |
| <text x="337.30" y="815.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_reference_texobj_ (47,745,662 samples, 0.03%)</title><rect x="990.7" y="597" width="0.4" height="15.0" fill="rgb(229,111,26)" rx="2" ry="2" /> | |
| <text x="993.74" y="607.5" ></text> | |
| </g> | |
| <g > | |
| <title>syscall (74,191,160 samples, 0.04%)</title><rect x="843.4" y="629" width="0.4" height="15.0" fill="rgb(234,136,32)" rx="2" ry="2" /> | |
| <text x="846.36" y="639.5" ></text> | |
| </g> | |
| <g > | |
| <title>__memcpy_generic (166,526,964 samples, 0.09%)</title><rect x="840.4" y="693" width="1.1" height="15.0" fill="rgb(231,124,29)" rx="2" ry="2" /> | |
| <text x="843.43" y="703.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_validated_drawrangeelements (486,772,973 samples, 0.27%)</title><rect x="394.7" y="757" width="3.1" height="15.0" fill="rgb(230,115,27)" rx="2" ry="2" /> | |
| <text x="397.66" y="767.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_update_state_locked (76,747,074 samples, 0.04%)</title><rect x="826.9" y="581" width="0.5" height="15.0" fill="rgb(214,43,10)" rx="2" ry="2" /> | |
| <text x="829.91" y="591.5" ></text> | |
| </g> | |
| <g > | |
| <title>st_finalize_texture (45,696,980 samples, 0.03%)</title><rect x="874.1" y="517" width="0.3" height="15.0" fill="rgb(232,124,29)" rx="2" ry="2" /> | |
| <text x="877.09" y="527.5" ></text> | |
| </g> | |
| <g > | |
| <title>validate_array_format.constprop.0 (62,596,545 samples, 0.03%)</title><rect x="492.9" y="757" width="0.4" height="15.0" fill="rgb(232,126,30)" rx="2" ry="2" /> | |
| <text x="495.91" y="767.5" ></text> | |
| </g> | |
| <g > | |
| <title>__aarch64_ldadd4_acq_rel (26,531,342 samples, 0.01%)</title><rect x="1150.8" y="725" width="0.2" height="15.0" fill="rgb(228,108,25)" rx="2" ry="2" /> | |
| <text x="1153.85" y="735.5" ></text> | |
| </g> | |
| <g > | |
| <title>el0t_64_sync (43,928,057 samples, 0.02%)</title><rect x="10.7" y="757" width="0.3" height="15.0" fill="rgb(217,56,13)" rx="2" ry="2" /> | |
| <text x="13.69" y="767.5" ></text> | |
| </g> | |
| <g > | |
| <title>__GI___ioctl (17,340,709 samples, 0.01%)</title><rect x="1034.1" y="549" width="0.1" height="15.0" fill="rgb(232,128,30)" rx="2" ry="2" /> | |
| <text x="1037.10" y="559.5" ></text> | |
| </g> | |
| <g > | |
| <title>el0_svc (65,647,376 samples, 0.04%)</title><rect x="538.9" y="581" width="0.4" height="15.0" fill="rgb(244,183,43)" rx="2" ry="2" /> | |
| <text x="541.90" y="591.5" ></text> | |
| </g> | |
| <g > | |
| <title>glDrawRangeElements (22,686,975 samples, 0.01%)</title><rect x="1175.7" y="773" width="0.2" height="15.0" fill="rgb(239,158,37)" rx="2" ry="2" /> | |
| <text x="1178.70" y="783.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_BeginQueryIndexed (31,023,179 samples, 0.02%)</title><rect x="347.0" y="773" width="0.2" height="15.0" fill="rgb(223,83,20)" rx="2" ry="2" /> | |
| <text x="350.05" y="783.5" ></text> | |
| </g> | |
| <g > | |
| <title>memblock_is_map_memory (20,577,600 samples, 0.01%)</title><rect x="290.0" y="517" width="0.1" height="15.0" fill="rgb(212,32,7)" rx="2" ry="2" /> | |
| <text x="292.98" y="527.5" ></text> | |
| </g> | |
| <g > | |
| <title>st_make_bound_images_resident (23,197,892 samples, 0.01%)</title><rect x="1011.0" y="597" width="0.2" height="15.0" fill="rgb(241,167,40)" rx="2" ry="2" /> | |
| <text x="1014.03" y="607.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_unmarshal_BindFramebuffer (81,674,890 samples, 0.05%)</title><rect x="348.9" y="805" width="0.5" height="15.0" fill="rgb(245,185,44)" rx="2" ry="2" /> | |
| <text x="351.86" y="815.5" ></text> | |
| </g> | |
| <g > | |
| <title>__aarch64_ldadd4_acq_rel (15,540,966 samples, 0.01%)</title><rect x="895.2" y="565" width="0.1" height="15.0" fill="rgb(228,108,25)" rx="2" ry="2" /> | |
| <text x="898.25" y="575.5" ></text> | |
| </g> | |
| <g > | |
| <title>tc_set_sampler_views (375,530,453 samples, 0.21%)</title><rect x="447.5" y="725" width="2.5" height="15.0" fill="rgb(250,209,50)" rx="2" ry="2" /> | |
| <text x="450.52" y="735.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_update_texture_state (24,414,181 samples, 0.01%)</title><rect x="1153.0" y="629" width="0.1" height="15.0" fill="rgb(237,148,35)" rx="2" ry="2" /> | |
| <text x="1155.98" y="639.5" ></text> | |
| </g> | |
| <g > | |
| <title>futex_wake (73,950,193 samples, 0.04%)</title><rect x="1173.8" y="549" width="0.5" height="15.0" fill="rgb(219,65,15)" rx="2" ry="2" /> | |
| <text x="1176.81" y="559.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_access_flags_to_transfer_flags (20,817,983 samples, 0.01%)</title><rect x="958.3" y="677" width="0.2" height="15.0" fill="rgb(248,200,47)" rx="2" ry="2" /> | |
| <text x="961.31" y="687.5" ></text> | |
| </g> | |
| <g > | |
| <title>wake_up_q (37,005,524 samples, 0.02%)</title><rect x="539.0" y="469" width="0.3" height="15.0" fill="rgb(237,151,36)" rx="2" ry="2" /> | |
| <text x="542.05" y="479.5" ></text> | |
| </g> | |
| <g > | |
| <title>el0t_64_sync_handler (23,338,102 samples, 0.01%)</title><rect x="453.1" y="613" width="0.2" height="15.0" fill="rgb(211,32,7)" rx="2" ry="2" /> | |
| <text x="456.14" y="623.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_glthread_finish (8,053,571,179 samples, 4.46%)</title><rect x="978.4" y="709" width="52.6" height="15.0" fill="rgb(209,22,5)" rx="2" ry="2" /> | |
| <text x="981.39" y="719.5" >_mesa..</text> | |
| </g> | |
| <g > | |
| <title>si_set_sampler_view_desc (408,843,717 samples, 0.23%)</title><rect x="224.6" y="741" width="2.7" height="15.0" fill="rgb(216,53,12)" rx="2" ry="2" /> | |
| <text x="227.60" y="751.5" ></text> | |
| </g> | |
| <g > | |
| <title>validate_uniform_parameters (25,085,240 samples, 0.01%)</title><rect x="462.2" y="741" width="0.1" height="15.0" fill="rgb(234,137,32)" rx="2" ry="2" /> | |
| <text x="465.16" y="751.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_uniform (16,734,767 samples, 0.01%)</title><rect x="1064.3" y="677" width="0.1" height="15.0" fill="rgb(248,201,48)" rx="2" ry="2" /> | |
| <text x="1067.32" y="687.5" ></text> | |
| </g> | |
| <g > | |
| <title>pthread_cond_wait@@GLIBC_2.17 (165,667,233 samples, 0.09%)</title><rect x="10.3" y="805" width="1.1" height="15.0" fill="rgb(231,119,28)" rx="2" ry="2" /> | |
| <text x="13.28" y="815.5" ></text> | |
| </g> | |
| <g > | |
| <title>copy_uniforms_to_storage (46,808,049 samples, 0.03%)</title><rect x="1021.1" y="645" width="0.3" height="15.0" fill="rgb(250,207,49)" rx="2" ry="2" /> | |
| <text x="1024.12" y="655.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_unmarshal_UnmapBuffer (48,037,850 samples, 0.03%)</title><rect x="1023.2" y="661" width="0.3" height="15.0" fill="rgb(221,73,17)" rx="2" ry="2" /> | |
| <text x="1026.19" y="671.5" ></text> | |
| </g> | |
| <g > | |
| <title>st_prepare_draw (1,131,920,639 samples, 0.63%)</title><rect x="993.5" y="645" width="7.4" height="15.0" fill="rgb(214,45,10)" rx="2" ry="2" /> | |
| <text x="996.48" y="655.5" ></text> | |
| </g> | |
| <g > | |
| <title>__aarch64_ldadd4_acq_rel (25,861,821 samples, 0.01%)</title><rect x="924.2" y="613" width="0.2" height="15.0" fill="rgb(228,108,25)" rx="2" ry="2" /> | |
| <text x="927.19" y="623.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_uniform (64,634,625 samples, 0.04%)</title><rect x="1020.7" y="645" width="0.4" height="15.0" fill="rgb(248,201,48)" rx="2" ry="2" /> | |
| <text x="1023.69" y="655.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_marshal_MapBufferRange (5,493,640,150 samples, 3.04%)</title><rect x="919.9" y="709" width="35.9" height="15.0" fill="rgb(219,65,15)" rx="2" ry="2" /> | |
| <text x="922.90" y="719.5" >_me..</text> | |
| </g> | |
| <g > | |
| <title>_mesa_lookup_or_create_texture (243,599,852 samples, 0.13%)</title><rect x="844.4" y="613" width="1.6" height="15.0" fill="rgb(235,140,33)" rx="2" ry="2" /> | |
| <text x="847.39" y="623.5" ></text> | |
| </g> | |
| <g > | |
| <title>pthread_cond_wait@@GLIBC_2.17 (22,475,110 samples, 0.01%)</title><rect x="252.4" y="789" width="0.1" height="15.0" fill="rgb(231,119,28)" rx="2" ry="2" /> | |
| <text x="255.36" y="799.5" ></text> | |
| </g> | |
| <g > | |
| <title>idr_find (214,020,635 samples, 0.12%)</title><rect x="298.3" y="517" width="1.4" height="15.0" fill="rgb(245,185,44)" rx="2" ry="2" /> | |
| <text x="301.29" y="527.5" ></text> | |
| </g> | |
| <g > | |
| <title>st_prepare_draw (39,929,115 samples, 0.02%)</title><rect x="1061.4" y="629" width="0.2" height="15.0" fill="rgb(214,45,10)" rx="2" ry="2" /> | |
| <text x="1064.36" y="639.5" ></text> | |
| </g> | |
| <g > | |
| <title>do_futex_fence_wait (87,296,306 samples, 0.05%)</title><rect x="901.0" y="565" width="0.6" height="15.0" fill="rgb(230,118,28)" rx="2" ry="2" /> | |
| <text x="904.01" y="575.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_lookup_shader_program_err_glthread (22,420,783 samples, 0.01%)</title><rect x="880.6" y="613" width="0.2" height="15.0" fill="rgb(246,190,45)" rx="2" ry="2" /> | |
| <text x="883.62" y="623.5" ></text> | |
| </g> | |
| <g > | |
| <title>tc_is_buffer_busy (51,058,519 samples, 0.03%)</title><rect x="372.1" y="741" width="0.3" height="15.0" fill="rgb(253,222,53)" rx="2" ry="2" /> | |
| <text x="375.07" y="751.5" ></text> | |
| </g> | |
| <g > | |
| <title>si_bind_ps_shader (339,197,132 samples, 0.19%)</title><rect x="51.2" y="773" width="2.2" height="15.0" fill="rgb(240,164,39)" rx="2" ry="2" /> | |
| <text x="54.18" y="783.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_unmarshal_MultiDrawArraysUserBuf (50,509,010 samples, 0.03%)</title><rect x="945.5" y="661" width="0.4" height="15.0" fill="rgb(208,16,3)" rx="2" ry="2" /> | |
| <text x="948.52" y="671.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_unmarshal_BindBuffer (237,265,918 samples, 0.13%)</title><rect x="347.3" y="805" width="1.6" height="15.0" fill="rgb(223,86,20)" rx="2" ry="2" /> | |
| <text x="350.31" y="815.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_uniform (52,124,070 samples, 0.03%)</title><rect x="1020.0" y="661" width="0.4" height="15.0" fill="rgb(248,201,48)" rx="2" ry="2" /> | |
| <text x="1023.05" y="671.5" ></text> | |
| </g> | |
| <g > | |
| <title>vbo_exec_copy_to_current (18,832,455 samples, 0.01%)</title><rect x="1153.2" y="645" width="0.2" height="15.0" fill="rgb(218,60,14)" rx="2" ry="2" /> | |
| <text x="1156.24" y="655.5" ></text> | |
| </g> | |
| <g > | |
| <title>___sys_recvmsg (28,047,490 samples, 0.02%)</title><rect x="1105.9" y="325" width="0.2" height="15.0" fill="rgb(238,153,36)" rx="2" ry="2" /> | |
| <text x="1108.89" y="335.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_validated_drawrangeelements (407,439,155 samples, 0.23%)</title><rect x="1061.3" y="661" width="2.6" height="15.0" fill="rgb(230,115,27)" rx="2" ry="2" /> | |
| <text x="1064.28" y="671.5" ></text> | |
| </g> | |
| <g > | |
| <title>st_get_sampler_views (41,349,650 samples, 0.02%)</title><rect x="813.2" y="533" width="0.3" height="15.0" fill="rgb(224,91,21)" rx="2" ry="2" /> | |
| <text x="816.18" y="543.5" ></text> | |
| </g> | |
| <g > | |
| <title>invoke_syscall (88,278,181 samples, 0.05%)</title><rect x="900.3" y="421" width="0.6" height="15.0" fill="rgb(209,18,4)" rx="2" ry="2" /> | |
| <text x="903.30" y="431.5" ></text> | |
| </g> | |
| <g > | |
| <title>el0_svc (146,209,985 samples, 0.08%)</title><rect x="191.0" y="645" width="0.9" height="15.0" fill="rgb(244,183,43)" rx="2" ry="2" /> | |
| <text x="193.98" y="655.5" ></text> | |
| </g> | |
| <g > | |
| <title>unmap_vmas (26,766,945 samples, 0.01%)</title><rect x="1189.6" y="677" width="0.2" height="15.0" fill="rgb(243,176,42)" rx="2" ry="2" /> | |
| <text x="1192.60" y="687.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_unmarshal_UnmapBuffer (18,714,831 samples, 0.01%)</title><rect x="955.0" y="645" width="0.2" height="15.0" fill="rgb(221,73,17)" rx="2" ry="2" /> | |
| <text x="958.03" y="655.5" ></text> | |
| </g> | |
| <g > | |
| <title>tc_driver_internal_flush_notify (19,633,551 samples, 0.01%)</title><rect x="192.8" y="757" width="0.1" height="15.0" fill="rgb(223,83,20)" rx="2" ry="2" /> | |
| <text x="195.78" y="767.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_VertexAttrib4Nubv (44,671,160 samples, 0.02%)</title><rect x="951.7" y="629" width="0.3" height="15.0" fill="rgb(231,121,29)" rx="2" ry="2" /> | |
| <text x="954.73" y="639.5" ></text> | |
| </g> | |
| <g > | |
| <title>el0t_64_sync (139,718,591 samples, 0.08%)</title><rect x="1095.3" y="677" width="0.9" height="15.0" fill="rgb(217,56,13)" rx="2" ry="2" /> | |
| <text x="1098.27" y="687.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_glthread_finish (17,222,442 samples, 0.01%)</title><rect x="798.8" y="421" width="0.1" height="15.0" fill="rgb(209,22,5)" rx="2" ry="2" /> | |
| <text x="801.82" y="431.5" ></text> | |
| </g> | |
| <g > | |
| <title>dma_fence_chain_walk (140,974,048 samples, 0.08%)</title><rect x="318.0" y="549" width="0.9" height="15.0" fill="rgb(220,72,17)" rx="2" ry="2" /> | |
| <text x="320.96" y="559.5" ></text> | |
| </g> | |
| <g > | |
| <title>do_futex_fence_wait (149,594,885 samples, 0.08%)</title><rect x="530.6" y="709" width="1.0" height="15.0" fill="rgb(230,118,28)" rx="2" ry="2" /> | |
| <text x="533.60" y="719.5" ></text> | |
| </g> | |
| <g > | |
| <title>amdgpu_cs_add_buffer (148,579,101 samples, 0.08%)</title><rect x="172.4" y="757" width="0.9" height="15.0" fill="rgb(254,227,54)" rx="2" ry="2" /> | |
| <text x="175.36" y="767.5" ></text> | |
| </g> | |
| <g > | |
| <title>tc_get_query_result (68,612,385 samples, 0.04%)</title><rect x="1034.0" y="677" width="0.5" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" /> | |
| <text x="1037.04" y="687.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_lookup_or_create_texture (306,221,202 samples, 0.17%)</title><rect x="983.7" y="645" width="2.0" height="15.0" fill="rgb(235,140,33)" rx="2" ry="2" /> | |
| <text x="986.70" y="655.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_Uniform4f (29,734,104 samples, 0.02%)</title><rect x="464.9" y="789" width="0.2" height="15.0" fill="rgb(210,26,6)" rx="2" ry="2" /> | |
| <text x="467.95" y="799.5" ></text> | |
| </g> | |
| <g > | |
| <title>st_destroy_bound_image_handles_per_stage (17,582,190 samples, 0.01%)</title><rect x="1124.3" y="597" width="0.1" height="15.0" fill="rgb(226,101,24)" rx="2" ry="2" /> | |
| <text x="1127.29" y="607.5" ></text> | |
| </g> | |
| <g > | |
| <title>tc_get_query_result (107,752,926 samples, 0.06%)</title><rect x="1164.9" y="693" width="0.7" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" /> | |
| <text x="1167.89" y="703.5" ></text> | |
| </g> | |
| <g > | |
| <title>[libz.so.1.3] (37,412,731 samples, 0.02%)</title><rect x="884.1" y="661" width="0.2" height="15.0" fill="rgb(230,116,27)" rx="2" ry="2" /> | |
| <text x="887.09" y="671.5" ></text> | |
| </g> | |
| <g > | |
| <title>__GI___strchrnul (46,386,519 samples, 0.03%)</title><rect x="969.0" y="677" width="0.3" height="15.0" fill="rgb(224,89,21)" rx="2" ry="2" /> | |
| <text x="971.98" y="687.5" ></text> | |
| </g> | |
| <g > | |
| <title>tc_batch_flush (218,504,745 samples, 0.12%)</title><rect x="458.4" y="757" width="1.4" height="15.0" fill="rgb(249,206,49)" rx="2" ry="2" /> | |
| <text x="461.42" y="767.5" ></text> | |
| </g> | |
| <g > | |
| <title>audit_reset_context.part.0.constprop.0 (20,059,092 samples, 0.01%)</title><rect x="344.5" y="677" width="0.2" height="15.0" fill="rgb(248,200,47)" rx="2" ry="2" /> | |
| <text x="347.53" y="687.5" ></text> | |
| </g> | |
| <g > | |
| <title>__aarch64_ldadd4_acq_rel (21,675,594 samples, 0.01%)</title><rect x="374.2" y="725" width="0.2" height="15.0" fill="rgb(228,108,25)" rx="2" ry="2" /> | |
| <text x="377.22" y="735.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_unmarshal_UseProgram (18,570,683 samples, 0.01%)</title><rect x="1172.6" y="725" width="0.1" height="15.0" fill="rgb(226,99,23)" rx="2" ry="2" /> | |
| <text x="1175.57" y="735.5" ></text> | |
| </g> | |
| <g > | |
| <title>el0_svc (37,128,286 samples, 0.02%)</title><rect x="508.9" y="661" width="0.2" height="15.0" fill="rgb(244,183,43)" rx="2" ry="2" /> | |
| <text x="511.86" y="671.5" ></text> | |
| </g> | |
| <g > | |
| <title>si_bind_vs_shader (19,527,287 samples, 0.01%)</title><rect x="885.8" y="581" width="0.2" height="15.0" fill="rgb(252,216,51)" rx="2" ry="2" /> | |
| <text x="888.83" y="591.5" ></text> | |
| </g> | |
| <g > | |
| <title>pthread_cond_signal@@GLIBC_2.17 (16,504,186 samples, 0.01%)</title><rect x="1076.7" y="677" width="0.1" height="15.0" fill="rgb(232,126,30)" rx="2" ry="2" /> | |
| <text x="1079.68" y="687.5" ></text> | |
| </g> | |
| <g > | |
| <title>[libpng16.so.16.43.0] (21,569,673 samples, 0.01%)</title><rect x="741.3" y="613" width="0.1" height="15.0" fill="rgb(211,30,7)" rx="2" ry="2" /> | |
| <text x="744.30" y="623.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_lookup_or_create_texture (25,661,651 samples, 0.01%)</title><rect x="810.2" y="565" width="0.2" height="15.0" fill="rgb(235,140,33)" rx="2" ry="2" /> | |
| <text x="813.23" y="575.5" ></text> | |
| </g> | |
| <g > | |
| <title>el0t_64_sync (84,013,753 samples, 0.05%)</title><rect x="331.7" y="741" width="0.5" height="15.0" fill="rgb(217,56,13)" rx="2" ry="2" /> | |
| <text x="334.65" y="751.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_get_min_invocations_per_fragment (21,624,829 samples, 0.01%)</title><rect x="1122.5" y="629" width="0.1" height="15.0" fill="rgb(246,190,45)" rx="2" ry="2" /> | |
| <text x="1125.50" y="639.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_reference_shader_program_ (21,707,253 samples, 0.01%)</title><rect x="489.9" y="725" width="0.2" height="15.0" fill="rgb(241,168,40)" rx="2" ry="2" /> | |
| <text x="492.92" y="735.5" ></text> | |
| </g> | |
| <g > | |
| <title>st_get_sampler_views (76,334,962 samples, 0.04%)</title><rect x="450.0" y="709" width="0.5" height="15.0" fill="rgb(224,91,21)" rx="2" ry="2" /> | |
| <text x="453.04" y="719.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_UniformMatrix4fv (153,000,900 samples, 0.08%)</title><rect x="1142.0" y="693" width="1.0" height="15.0" fill="rgb(235,139,33)" rx="2" ry="2" /> | |
| <text x="1144.96" y="703.5" ></text> | |
| </g> | |
| <g > | |
| <title>st_update_fp (62,145,728 samples, 0.03%)</title><rect x="400.6" y="725" width="0.4" height="15.0" fill="rgb(207,12,3)" rx="2" ry="2" /> | |
| <text x="403.64" y="735.5" ></text> | |
| </g> | |
| <g > | |
| <title>get_futex_key (35,449,774 samples, 0.02%)</title><rect x="1095.5" y="501" width="0.3" height="15.0" fill="rgb(252,216,51)" rx="2" ry="2" /> | |
| <text x="1098.54" y="511.5" ></text> | |
| </g> | |
| <g > | |
| <title>st_get_texture_sampler_view_from_stobj (182,626,513 samples, 0.10%)</title><rect x="1013.0" y="581" width="1.2" height="15.0" fill="rgb(211,32,7)" rx="2" ry="2" /> | |
| <text x="1016.00" y="591.5" ></text> | |
| </g> | |
| <g > | |
| <title>void st_update_array_templ< (104,927,585 samples, 0.06%)</title><rect x="1135.4" y="629" width="0.6" height="15.0" fill="rgb(243,178,42)" rx="2" ry="2" /> | |
| <text x="1138.36" y="639.5" ></text> | |
| </g> | |
| <g > | |
| <title>si_flush_all_queues (1,472,841,682 samples, 0.82%)</title><rect x="530.5" y="725" width="9.6" height="15.0" fill="rgb(212,36,8)" rx="2" ry="2" /> | |
| <text x="533.51" y="735.5" ></text> | |
| </g> | |
| <g > | |
| <title>el0t_64_sync_handler (40,145,728 samples, 0.02%)</title><rect x="1105.9" y="437" width="0.2" height="15.0" fill="rgb(211,32,7)" rx="2" ry="2" /> | |
| <text x="1108.86" y="447.5" ></text> | |
| </g> | |
| <g > | |
| <title>color_needs_decompression (72,810,846 samples, 0.04%)</title><rect x="232.5" y="741" width="0.5" height="15.0" fill="rgb(210,26,6)" rx="2" ry="2" /> | |
| <text x="235.53" y="751.5" ></text> | |
| </g> | |
| <g > | |
| <title>do_el0_svc (35,357,736 samples, 0.02%)</title><rect x="508.9" y="645" width="0.2" height="15.0" fill="rgb(218,60,14)" rx="2" ry="2" /> | |
| <text x="511.88" y="655.5" ></text> | |
| </g> | |
| <g > | |
| <title>el0t_64_sync_handler (37,724,213 samples, 0.02%)</title><rect x="516.7" y="645" width="0.3" height="15.0" fill="rgb(211,32,7)" rx="2" ry="2" /> | |
| <text x="519.75" y="655.5" ></text> | |
| </g> | |
| <g > | |
| <title>loader_dri3_get_buffers (451,723,255 samples, 0.25%)</title><rect x="1105.7" y="581" width="2.9" height="15.0" fill="rgb(250,209,50)" rx="2" ry="2" /> | |
| <text x="1108.68" y="591.5" ></text> | |
| </g> | |
| <g > | |
| <title>cso_set_vertex_elements_direct (62,105,815 samples, 0.03%)</title><rect x="999.8" y="597" width="0.4" height="15.0" fill="rgb(222,80,19)" rx="2" ry="2" /> | |
| <text x="1002.77" y="607.5" ></text> | |
| </g> | |
| <g > | |
| <title>si_set_sampler_view_desc (164,714,790 samples, 0.09%)</title><rect x="893.3" y="549" width="1.1" height="15.0" fill="rgb(216,53,12)" rx="2" ry="2" /> | |
| <text x="896.28" y="559.5" ></text> | |
| </g> | |
| <g > | |
| <title>validate_array_and_format.isra.0 (26,747,998 samples, 0.01%)</title><rect x="952.7" y="613" width="0.2" height="15.0" fill="rgb(211,28,6)" rx="2" ry="2" /> | |
| <text x="955.70" y="623.5" ></text> | |
| </g> | |
| <g > | |
| <title>el0t_64_sync_handler (23,056,031 samples, 0.01%)</title><rect x="1126.2" y="517" width="0.1" height="15.0" fill="rgb(211,32,7)" rx="2" ry="2" /> | |
| <text x="1129.17" y="527.5" ></text> | |
| </g> | |
| <g > | |
| <title>tc_add_sized_call (56,445,070 samples, 0.03%)</title><rect x="447.7" y="709" width="0.4" height="15.0" fill="rgb(245,187,44)" rx="2" ry="2" /> | |
| <text x="450.72" y="719.5" ></text> | |
| </g> | |
| <g > | |
| <title>do_futex_fence_wait (176,973,070 samples, 0.10%)</title><rect x="979.7" y="693" width="1.1" height="15.0" fill="rgb(230,118,28)" rx="2" ry="2" /> | |
| <text x="982.66" y="703.5" ></text> | |
| </g> | |
| <g > | |
| <title>st_Clear (21,708,255 samples, 0.01%)</title><rect x="1057.9" y="677" width="0.1" height="15.0" fill="rgb(211,30,7)" rx="2" ry="2" /> | |
| <text x="1060.87" y="687.5" ></text> | |
| </g> | |
| <g > | |
| <title>void si_draw_vbo< (371,287,668 samples, 0.21%)</title><rect x="82.5" y="725" width="2.4" height="15.0" fill="rgb(226,101,24)" rx="2" ry="2" /> | |
| <text x="85.48" y="735.5" ></text> | |
| </g> | |
| <g > | |
| <title>vbo_exec_FlushVertices (17,693,009 samples, 0.01%)</title><rect x="928.9" y="629" width="0.1" height="15.0" fill="rgb(226,100,24)" rx="2" ry="2" /> | |
| <text x="931.87" y="639.5" ></text> | |
| </g> | |
| <g > | |
| <title>strcmp (21,966,567 samples, 0.01%)</title><rect x="807.7" y="645" width="0.2" height="15.0" fill="rgb(217,58,13)" rx="2" ry="2" /> | |
| <text x="810.71" y="655.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_update_texture_renderbuffer (21,753,527 samples, 0.01%)</title><rect x="1089.1" y="661" width="0.1" height="15.0" fill="rgb(228,106,25)" rx="2" ry="2" /> | |
| <text x="1092.05" y="671.5" ></text> | |
| </g> | |
| <g > | |
| <title>copy_uniforms_to_storage (18,291,084 samples, 0.01%)</title><rect x="1138.3" y="661" width="0.1" height="15.0" fill="rgb(250,207,49)" rx="2" ry="2" /> | |
| <text x="1141.31" y="671.5" ></text> | |
| </g> | |
| <g > | |
| <title>unmap_page_range (26,766,945 samples, 0.01%)</title><rect x="1189.6" y="645" width="0.2" height="15.0" fill="rgb(206,5,1)" rx="2" ry="2" /> | |
| <text x="1192.60" y="655.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_unmarshal_DrawArraysInstanced (1,805,894,144 samples, 1.00%)</title><rect x="989.7" y="677" width="11.8" height="15.0" fill="rgb(209,20,4)" rx="2" ry="2" /> | |
| <text x="992.68" y="687.5" ></text> | |
| </g> | |
| <g > | |
| <title>__check_object_size.part.0 (16,416,473 samples, 0.01%)</title><rect x="1181.9" y="517" width="0.2" height="15.0" fill="rgb(236,142,34)" rx="2" ry="2" /> | |
| <text x="1184.94" y="527.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_ActiveTexture (38,580,373 samples, 0.02%)</title><rect x="345.7" y="789" width="0.3" height="15.0" fill="rgb(244,179,42)" rx="2" ry="2" /> | |
| <text x="348.74" y="799.5" ></text> | |
| </g> | |
| <g > | |
| <title>__GI___strlen_asimd (29,393,981 samples, 0.02%)</title><rect x="801.9" y="485" width="0.2" height="15.0" fill="rgb(213,41,9)" rx="2" ry="2" /> | |
| <text x="804.90" y="495.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_uniform (56,327,937 samples, 0.03%)</title><rect x="947.1" y="629" width="0.4" height="15.0" fill="rgb(248,201,48)" rx="2" ry="2" /> | |
| <text x="950.13" y="639.5" ></text> | |
| </g> | |
| <g > | |
| <title>do_exit (63,814,501 samples, 0.04%)</title><rect x="1189.6" y="757" width="0.4" height="15.0" fill="rgb(231,122,29)" rx="2" ry="2" /> | |
| <text x="1192.58" y="767.5" ></text> | |
| </g> | |
| <g > | |
| <title>__libc_calloc (27,774,677 samples, 0.02%)</title><rect x="1017.7" y="613" width="0.1" height="15.0" fill="rgb(205,4,0)" rx="2" ry="2" /> | |
| <text x="1020.65" y="623.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_DrawArraysInstancedBaseInstance (32,403,665 samples, 0.02%)</title><rect x="810.7" y="597" width="0.2" height="15.0" fill="rgb(243,178,42)" rx="2" ry="2" /> | |
| <text x="813.71" y="607.5" ></text> | |
| </g> | |
| <g > | |
| <title>do_el0_svc (36,887,008 samples, 0.02%)</title><rect x="1105.9" y="405" width="0.2" height="15.0" fill="rgb(218,60,14)" rx="2" ry="2" /> | |
| <text x="1108.89" y="415.5" ></text> | |
| </g> | |
| <g > | |
| <title>el0_svc (28,016,369 samples, 0.02%)</title><rect x="12.9" y="645" width="0.2" height="15.0" fill="rgb(244,183,43)" rx="2" ry="2" /> | |
| <text x="15.95" y="655.5" ></text> | |
| </g> | |
| <g > | |
| <title>update_shader_samplers (18,539,319 samples, 0.01%)</title><rect x="827.8" y="549" width="0.1" height="15.0" fill="rgb(229,113,27)" rx="2" ry="2" /> | |
| <text x="830.79" y="559.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_unmarshal_UnmapBuffer (145,898,284 samples, 0.08%)</title><rect x="948.2" y="661" width="0.9" height="15.0" fill="rgb(221,73,17)" rx="2" ry="2" /> | |
| <text x="951.17" y="671.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_unmarshal_EnableVertexAttribArray (32,361,916 samples, 0.02%)</title><rect x="945.3" y="661" width="0.2" height="15.0" fill="rgb(218,64,15)" rx="2" ry="2" /> | |
| <text x="948.31" y="671.5" ></text> | |
| </g> | |
| <g > | |
| <title>__xa_alloc (19,681,825 samples, 0.01%)</title><rect x="314.9" y="533" width="0.2" height="15.0" fill="rgb(242,170,40)" rx="2" ry="2" /> | |
| <text x="317.92" y="543.5" ></text> | |
| </g> | |
| <g > | |
| <title>st_get_sampler_views (65,946,405 samples, 0.04%)</title><rect x="825.3" y="565" width="0.4" height="15.0" fill="rgb(224,91,21)" rx="2" ry="2" /> | |
| <text x="828.26" y="575.5" ></text> | |
| </g> | |
| <g > | |
| <title>strpbrk (138,449,056 samples, 0.08%)</title><rect x="1044.3" y="725" width="0.9" height="15.0" fill="rgb(250,210,50)" rx="2" ry="2" /> | |
| <text x="1047.31" y="735.5" ></text> | |
| </g> | |
| <g > | |
| <title>st_prepare_draw (25,872,428 samples, 0.01%)</title><rect x="376.3" y="757" width="0.2" height="15.0" fill="rgb(214,45,10)" rx="2" ry="2" /> | |
| <text x="379.30" y="767.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_update_valid_to_render_state (23,569,412 samples, 0.01%)</title><rect x="1092.0" y="677" width="0.1" height="15.0" fill="rgb(219,66,15)" rx="2" ry="2" /> | |
| <text x="1094.96" y="687.5" ></text> | |
| </g> | |
| <g > | |
| <title>el0_svc (87,304,940 samples, 0.05%)</title><rect x="1177.7" y="661" width="0.6" height="15.0" fill="rgb(244,183,43)" rx="2" ry="2" /> | |
| <text x="1180.70" y="671.5" ></text> | |
| </g> | |
| <g > | |
| <title>[unknown] (29,898,649 samples, 0.02%)</title><rect x="1074.8" y="757" width="0.2" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" /> | |
| <text x="1077.76" y="767.5" ></text> | |
| </g> | |
| <g > | |
| <title>strspn (18,041,784 samples, 0.01%)</title><rect x="786.6" y="165" width="0.1" height="15.0" fill="rgb(207,13,3)" rx="2" ry="2" /> | |
| <text x="789.58" y="175.5" ></text> | |
| </g> | |
| <g > | |
| <title>glDrawRangeElements (18,919,789 samples, 0.01%)</title><rect x="958.0" y="709" width="0.2" height="15.0" fill="rgb(239,158,37)" rx="2" ry="2" /> | |
| <text x="961.03" y="719.5" ></text> | |
| </g> | |
| <g > | |
| <title>el0t_64_sync (137,840,135 samples, 0.08%)</title><rect x="530.7" y="661" width="0.9" height="15.0" fill="rgb(217,56,13)" rx="2" ry="2" /> | |
| <text x="533.68" y="671.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_unmarshal_VertexAttribPointer_packed (301,154,271 samples, 0.17%)</title><rect x="492.1" y="805" width="1.9" height="15.0" fill="rgb(232,124,29)" rx="2" ry="2" /> | |
| <text x="495.06" y="815.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_lookup_shader_program_err_glthread (30,205,277 samples, 0.02%)</title><rect x="858.6" y="613" width="0.2" height="15.0" fill="rgb(246,190,45)" rx="2" ry="2" /> | |
| <text x="861.62" y="623.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_unmarshal_BindBuffer (17,454,617 samples, 0.01%)</title><rect x="498.1" y="789" width="0.1" height="15.0" fill="rgb(223,86,20)" rx="2" ry="2" /> | |
| <text x="501.07" y="799.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_update_state_locked (33,330,414 samples, 0.02%)</title><rect x="1060.6" y="629" width="0.2" height="15.0" fill="rgb(214,43,10)" rx="2" ry="2" /> | |
| <text x="1063.58" y="639.5" ></text> | |
| </g> | |
| <g > | |
| <title>__vsnprintf_chk (17,928,420 samples, 0.01%)</title><rect x="785.7" y="165" width="0.1" height="15.0" fill="rgb(247,193,46)" rx="2" ry="2" /> | |
| <text x="788.68" y="175.5" ></text> | |
| </g> | |
| <g > | |
| <title>validate_map_buffer_range (44,686,810 samples, 0.02%)</title><rect x="918.1" y="677" width="0.3" height="15.0" fill="rgb(242,170,40)" rx="2" ry="2" /> | |
| <text x="921.06" y="687.5" ></text> | |
| </g> | |
| <g > | |
| <title>get_user_pages_fast (29,090,521 samples, 0.02%)</title><rect x="1095.6" y="485" width="0.2" height="15.0" fill="rgb(229,111,26)" rx="2" ry="2" /> | |
| <text x="1098.57" y="495.5" ></text> | |
| </g> | |
| <g > | |
| <title>loader_dri3_swap_buffers_msc (23,119,204 samples, 0.01%)</title><rect x="540.5" y="773" width="0.2" height="15.0" fill="rgb(205,3,0)" rx="2" ry="2" /> | |
| <text x="543.51" y="783.5" ></text> | |
| </g> | |
| <g > | |
| <title>update_array.constprop.0 (38,191,754 samples, 0.02%)</title><rect x="953.4" y="613" width="0.3" height="15.0" fill="rgb(224,88,21)" rx="2" ry="2" /> | |
| <text x="956.41" y="623.5" ></text> | |
| </g> | |
| <g > | |
| <title>[libvorbisfile.so.3.3.8] (816,742,496 samples, 0.45%)</title><rect x="22.0" y="725" width="5.3" height="15.0" fill="rgb(239,158,37)" rx="2" ry="2" /> | |
| <text x="24.98" y="735.5" ></text> | |
| </g> | |
| <g > | |
| <title>drm_sched_job_init (33,458,808 samples, 0.02%)</title><rect x="306.0" y="549" width="0.2" height="15.0" fill="rgb(231,123,29)" rx="2" ry="2" /> | |
| <text x="308.99" y="559.5" ></text> | |
| </g> | |
| <g > | |
| <title>pthread_cond_signal@@GLIBC_2.17 (29,741,337 samples, 0.02%)</title><rect x="453.1" y="661" width="0.2" height="15.0" fill="rgb(232,126,30)" rx="2" ry="2" /> | |
| <text x="456.10" y="671.5" ></text> | |
| </g> | |
| <g > | |
| <title>tc_bind_fs_state (26,948,839 samples, 0.01%)</title><rect x="402.8" y="725" width="0.2" height="15.0" fill="rgb(243,175,42)" rx="2" ry="2" /> | |
| <text x="405.79" y="735.5" ></text> | |
| </g> | |
| <g > | |
| <title>st_prepare_draw (53,020,163 samples, 0.03%)</title><rect x="975.6" y="629" width="0.3" height="15.0" fill="rgb(214,45,10)" rx="2" ry="2" /> | |
| <text x="978.57" y="639.5" ></text> | |
| </g> | |
| <g > | |
| <title>el0_svc_common.constprop.0 (39,521,426 samples, 0.02%)</title><rect x="254.2" y="709" width="0.3" height="15.0" fill="rgb(224,89,21)" rx="2" ry="2" /> | |
| <text x="257.24" y="719.5" ></text> | |
| </g> | |
| <g > | |
| <title>__sock_sendmsg (213,882,420 samples, 0.12%)</title><rect x="541.1" y="485" width="1.4" height="15.0" fill="rgb(217,57,13)" rx="2" ry="2" /> | |
| <text x="544.13" y="495.5" ></text> | |
| </g> | |
| <g > | |
| <title>drm_exec_init (35,002,484 samples, 0.02%)</title><rect x="329.9" y="581" width="0.3" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> | |
| <text x="332.94" y="591.5" ></text> | |
| </g> | |
| <g > | |
| <title>si_check_render_feedback (92,259,598 samples, 0.05%)</title><rect x="175.8" y="757" width="0.6" height="15.0" fill="rgb(222,79,18)" rx="2" ry="2" /> | |
| <text x="178.79" y="767.5" ></text> | |
| </g> | |
| <g > | |
| <title>drmIoctl (340,217,391 samples, 0.19%)</title><rect x="1161.2" y="597" width="2.2" height="15.0" fill="rgb(251,215,51)" rx="2" ry="2" /> | |
| <text x="1164.15" y="607.5" ></text> | |
| </g> | |
| <g > | |
| <title>get_buffer (22,835,823 samples, 0.01%)</title><rect x="971.1" y="693" width="0.1" height="15.0" fill="rgb(237,147,35)" rx="2" ry="2" /> | |
| <text x="974.08" y="703.5" ></text> | |
| </g> | |
| <g > | |
| <title>__libc_recvmsg (34,216,535 samples, 0.02%)</title><rect x="1106.1" y="501" width="0.3" height="15.0" fill="rgb(220,72,17)" rx="2" ry="2" /> | |
| <text x="1109.15" y="511.5" ></text> | |
| </g> | |
| <g > | |
| <title>__arm64_sys_recvmsg (121,650,451 samples, 0.07%)</title><rect x="507.8" y="565" width="0.8" height="15.0" fill="rgb(236,144,34)" rx="2" ry="2" /> | |
| <text x="510.81" y="575.5" ></text> | |
| </g> | |
| <g > | |
| <title>void st_update_array_templ< (152,063,991 samples, 0.08%)</title><rect x="943.5" y="581" width="0.9" height="15.0" fill="rgb(243,178,42)" rx="2" ry="2" /> | |
| <text x="946.46" y="591.5" ></text> | |
| </g> | |
| <g > | |
| <title>tc_buffer_map (39,445,417 samples, 0.02%)</title><rect x="975.0" y="645" width="0.2" height="15.0" fill="rgb(247,195,46)" rx="2" ry="2" /> | |
| <text x="977.97" y="655.5" ></text> | |
| </g> | |
| <g > | |
| <title>si_emit_guardband (17,627,862 samples, 0.01%)</title><rect x="526.0" y="645" width="0.1" height="15.0" fill="rgb(234,134,32)" rx="2" ry="2" /> | |
| <text x="529.00" y="655.5" ></text> | |
| </g> | |
| <g > | |
| <title>el0_svc_common.constprop.0 (231,882,586 samples, 0.13%)</title><rect x="338.2" y="693" width="1.5" height="15.0" fill="rgb(224,89,21)" rx="2" ry="2" /> | |
| <text x="341.15" y="703.5" ></text> | |
| </g> | |
| <g > | |
| <title>dri2_allocate_textures (15,774,791 samples, 0.01%)</title><rect x="1105.5" y="597" width="0.1" height="15.0" fill="rgb(231,122,29)" rx="2" ry="2" /> | |
| <text x="1108.47" y="607.5" ></text> | |
| </g> | |
| <g > | |
| <title>__slab_alloc.constprop.0 (18,771,513 samples, 0.01%)</title><rect x="305.8" y="533" width="0.1" height="15.0" fill="rgb(229,112,26)" rx="2" ry="2" /> | |
| <text x="308.81" y="543.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_bind_vertex_buffer (68,359,119 samples, 0.04%)</title><rect x="492.2" y="757" width="0.5" height="15.0" fill="rgb(241,166,39)" rx="2" ry="2" /> | |
| <text x="495.21" y="767.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_uniform_matrix (213,366,514 samples, 0.12%)</title><rect x="1021.7" y="645" width="1.4" height="15.0" fill="rgb(215,47,11)" rx="2" ry="2" /> | |
| <text x="1024.68" y="655.5" ></text> | |
| </g> | |
| <g > | |
| <title>get_query_object (991,783,896 samples, 0.55%)</title><rect x="1159.5" y="757" width="6.5" height="15.0" fill="rgb(236,144,34)" rx="2" ry="2" /> | |
| <text x="1162.53" y="767.5" ></text> | |
| </g> | |
| <g > | |
| <title>el0t_64_sync (56,070,934 samples, 0.03%)</title><rect x="38.3" y="693" width="0.4" height="15.0" fill="rgb(217,56,13)" rx="2" ry="2" /> | |
| <text x="41.32" y="703.5" ></text> | |
| </g> | |
| <g > | |
| <title>el0_svc (32,087,987 samples, 0.02%)</title><rect x="877.5" y="469" width="0.2" height="15.0" fill="rgb(244,183,43)" rx="2" ry="2" /> | |
| <text x="880.46" y="479.5" ></text> | |
| </g> | |
| <g > | |
| <title>strcspn (110,629,599 samples, 0.06%)</title><rect x="803.4" y="533" width="0.7" height="15.0" fill="rgb(218,61,14)" rx="2" ry="2" /> | |
| <text x="806.37" y="543.5" ></text> | |
| </g> | |
| <g > | |
| <title>pa_pdispatch_run (18,695,163 samples, 0.01%)</title><rect x="11.9" y="677" width="0.1" height="15.0" fill="rgb(231,122,29)" rx="2" ry="2" /> | |
| <text x="14.91" y="687.5" ></text> | |
| </g> | |
| <g > | |
| <title>pthread_cond_signal@@GLIBC_2.17 (142,654,165 samples, 0.08%)</title><rect x="1173.5" y="693" width="0.9" height="15.0" fill="rgb(232,126,30)" rx="2" ry="2" /> | |
| <text x="1176.47" y="703.5" ></text> | |
| </g> | |
| <g > | |
| <title>el0t_64_sync (65,647,376 samples, 0.04%)</title><rect x="538.9" y="613" width="0.4" height="15.0" fill="rgb(217,56,13)" rx="2" ry="2" /> | |
| <text x="541.90" y="623.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_uniform_matrix (81,221,174 samples, 0.04%)</title><rect x="947.6" y="629" width="0.5" height="15.0" fill="rgb(215,47,11)" rx="2" ry="2" /> | |
| <text x="950.61" y="639.5" ></text> | |
| </g> | |
| <g > | |
| <title>xas_store (15,844,393 samples, 0.01%)</title><rect x="314.9" y="517" width="0.2" height="15.0" fill="rgb(207,9,2)" rx="2" ry="2" /> | |
| <text x="317.95" y="527.5" ></text> | |
| </g> | |
| <g > | |
| <title>__aarch64_cas4_sync (501,389,088 samples, 0.28%)</title><rect x="478.8" y="757" width="3.2" height="15.0" fill="rgb(253,222,53)" rx="2" ry="2" /> | |
| <text x="481.76" y="767.5" ></text> | |
| </g> | |
| <g > | |
| <title>__sys_recvmsg (22,614,084 samples, 0.01%)</title><rect x="1106.2" y="357" width="0.1" height="15.0" fill="rgb(252,216,51)" rx="2" ry="2" /> | |
| <text x="1109.19" y="367.5" ></text> | |
| </g> | |
| <g > | |
| <title>validate_uniform_parameters (39,416,284 samples, 0.02%)</title><rect x="1137.8" y="661" width="0.2" height="15.0" fill="rgb(234,137,32)" rx="2" ry="2" /> | |
| <text x="1140.78" y="671.5" ></text> | |
| </g> | |
| <g > | |
| <title>do_ovl_get_acl (19,987,038 samples, 0.01%)</title><rect x="1184.0" y="421" width="0.1" height="15.0" fill="rgb(251,213,51)" rx="2" ry="2" /> | |
| <text x="1186.98" y="431.5" ></text> | |
| </g> | |
| <g > | |
| <title>tc_add_set_vertex_buffers_call (20,002,888 samples, 0.01%)</title><rect x="877.2" y="549" width="0.1" height="15.0" fill="rgb(214,45,10)" rx="2" ry="2" /> | |
| <text x="880.19" y="559.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_bind_vertex_buffer (51,748,934 samples, 0.03%)</title><rect x="1028.2" y="629" width="0.3" height="15.0" fill="rgb(241,166,39)" rx="2" ry="2" /> | |
| <text x="1031.20" y="639.5" ></text> | |
| </g> | |
| <g > | |
| <title>util_queue_add_job_locked.part.0 (16,504,186 samples, 0.01%)</title><rect x="1076.7" y="725" width="0.1" height="15.0" fill="rgb(243,177,42)" rx="2" ry="2" /> | |
| <text x="1079.68" y="735.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_unmarshal_UseProgram (102,805,217 samples, 0.06%)</title><rect x="880.5" y="645" width="0.7" height="15.0" fill="rgb(226,99,23)" rx="2" ry="2" /> | |
| <text x="883.55" y="655.5" ></text> | |
| </g> | |
| <g > | |
| <title>glthread_unmarshal_batch (15,382,041 samples, 0.01%)</title><rect x="979.5" y="677" width="0.1" height="15.0" fill="rgb(247,195,46)" rx="2" ry="2" /> | |
| <text x="982.54" y="687.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_unmarshal_BindTexture (102,179,958 samples, 0.06%)</title><rect x="1151.9" y="709" width="0.6" height="15.0" fill="rgb(248,199,47)" rx="2" ry="2" /> | |
| <text x="1154.86" y="719.5" ></text> | |
| </g> | |
| <g > | |
| <title>__vsnprintf_chk (25,499,422 samples, 0.01%)</title><rect x="789.5" y="213" width="0.2" height="15.0" fill="rgb(247,193,46)" rx="2" ry="2" /> | |
| <text x="792.54" y="223.5" ></text> | |
| </g> | |
| <g > | |
| <title>st_upload_constants (71,490,830 samples, 0.04%)</title><rect x="995.3" y="613" width="0.5" height="15.0" fill="rgb(238,154,36)" rx="2" ry="2" /> | |
| <text x="998.33" y="623.5" ></text> | |
| </g> | |
| <g > | |
| <title>__printf_fp_buffer_1.constprop.0.isra.0 (192,374,310 samples, 0.11%)</title><rect x="513.6" y="613" width="1.2" height="15.0" fill="rgb(240,164,39)" rx="2" ry="2" /> | |
| <text x="516.59" y="623.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_unmarshal_DrawArraysInstanced (343,599,690 samples, 0.19%)</title><rect x="1058.2" y="693" width="2.3" height="15.0" fill="rgb(209,20,4)" rx="2" ry="2" /> | |
| <text x="1061.25" y="703.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_unmarshal_Enable (20,824,775 samples, 0.01%)</title><rect x="1136.6" y="693" width="0.1" height="15.0" fill="rgb(207,12,3)" rx="2" ry="2" /> | |
| <text x="1139.57" y="703.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_unmarshal_UseProgram (2,259,369,215 samples, 1.25%)</title><rect x="477.1" y="805" width="14.8" height="15.0" fill="rgb(226,99,23)" rx="2" ry="2" /> | |
| <text x="480.09" y="815.5" ></text> | |
| </g> | |
| <g > | |
| <title>tc_call_bind_rasterizer_state (26,313,123 samples, 0.01%)</title><rect x="518.3" y="693" width="0.2" height="15.0" fill="rgb(220,71,17)" rx="2" ry="2" /> | |
| <text x="521.31" y="703.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_uniform (20,197,020 samples, 0.01%)</title><rect x="1019.6" y="645" width="0.1" height="15.0" fill="rgb(248,201,48)" rx="2" ry="2" /> | |
| <text x="1022.62" y="655.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_tex_target_to_index (15,525,276 samples, 0.01%)</title><rect x="1152.2" y="661" width="0.1" height="15.0" fill="rgb(233,131,31)" rx="2" ry="2" /> | |
| <text x="1155.18" y="671.5" ></text> | |
| </g> | |
| <g > | |
| <title>__memcpy_generic (17,026,963 samples, 0.01%)</title><rect x="419.8" y="709" width="0.2" height="15.0" fill="rgb(231,124,29)" rx="2" ry="2" /> | |
| <text x="422.84" y="719.5" ></text> | |
| </g> | |
| <g > | |
| <title>si_buffer_get_transfer (22,319,910 samples, 0.01%)</title><rect x="975.0" y="613" width="0.1" height="15.0" fill="rgb(224,91,21)" rx="2" ry="2" /> | |
| <text x="977.99" y="623.5" ></text> | |
| </g> | |
| <g > | |
| <title>si_emit_graphics_shader_pointers (647,330,075 samples, 0.36%)</title><rect x="141.6" y="757" width="4.2" height="15.0" fill="rgb(232,125,29)" rx="2" ry="2" /> | |
| <text x="144.55" y="767.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_unmarshal_Uniform3fv (58,382,911 samples, 0.03%)</title><rect x="946.5" y="661" width="0.4" height="15.0" fill="rgb(218,63,15)" rx="2" ry="2" /> | |
| <text x="949.55" y="671.5" ></text> | |
| </g> | |
| <g > | |
| <title>slab_free (436,114,944 samples, 0.24%)</title><rect x="73.2" y="789" width="2.9" height="15.0" fill="rgb(249,204,48)" rx="2" ry="2" /> | |
| <text x="76.24" y="799.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_unmarshal_BufferSubData (156,002,059 samples, 0.09%)</title><rect x="372.7" y="805" width="1.0" height="15.0" fill="rgb(218,60,14)" rx="2" ry="2" /> | |
| <text x="375.71" y="815.5" ></text> | |
| </g> | |
| <g > | |
| <title>_raw_spin_unlock_irqrestore (17,298,675 samples, 0.01%)</title><rect x="1162.6" y="357" width="0.1" height="15.0" fill="rgb(228,106,25)" rx="2" ry="2" /> | |
| <text x="1165.57" y="367.5" ></text> | |
| </g> | |
| <g > | |
| <title>__arm64_sys_futex (30,059,340 samples, 0.02%)</title><rect x="884.6" y="469" width="0.2" height="15.0" fill="rgb(247,196,47)" rx="2" ry="2" /> | |
| <text x="887.62" y="479.5" ></text> | |
| </g> | |
| <g > | |
| <title>tc_bind_sampler_states (116,876,314 samples, 0.06%)</title><rect x="420.4" y="693" width="0.8" height="15.0" fill="rgb(218,61,14)" rx="2" ry="2" /> | |
| <text x="423.43" y="703.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_unmarshal_VertexAttrib4Nubv (74,144,870 samples, 0.04%)</title><rect x="881.2" y="645" width="0.5" height="15.0" fill="rgb(245,184,44)" rx="2" ry="2" /> | |
| <text x="884.24" y="655.5" ></text> | |
| </g> | |
| <g > | |
| <title>st_destroy_bound_texture_handles_per_stage (24,217,261 samples, 0.01%)</title><rect x="412.8" y="709" width="0.1" height="15.0" fill="rgb(232,127,30)" rx="2" ry="2" /> | |
| <text x="415.78" y="719.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_VertexAttribPointer (153,798,202 samples, 0.09%)</title><rect x="1028.2" y="661" width="1.0" height="15.0" fill="rgb(211,29,7)" rx="2" ry="2" /> | |
| <text x="1031.18" y="671.5" ></text> | |
| </g> | |
| <g > | |
| <title>st_make_bound_images_resident (38,413,317 samples, 0.02%)</title><rect x="1124.1" y="629" width="0.3" height="15.0" fill="rgb(241,167,40)" rx="2" ry="2" /> | |
| <text x="1127.15" y="639.5" ></text> | |
| </g> | |
| <g > | |
| <title>tc_buffer_unmap (45,350,688 samples, 0.03%)</title><rect x="880.2" y="597" width="0.3" height="15.0" fill="rgb(231,119,28)" rx="2" ry="2" /> | |
| <text x="883.16" y="607.5" ></text> | |
| </g> | |
| <g > | |
| <title>tc_buffer_subdata.part.0 (30,234,053 samples, 0.02%)</title><rect x="1176.8" y="773" width="0.2" height="15.0" fill="rgb(231,120,28)" rx="2" ry="2" /> | |
| <text x="1179.79" y="783.5" ></text> | |
| </g> | |
| <g > | |
| <title>futex_wait (58,146,818 samples, 0.03%)</title><rect x="530.8" y="533" width="0.4" height="15.0" fill="rgb(235,138,33)" rx="2" ry="2" /> | |
| <text x="533.78" y="543.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_sampler_uniforms_are_valid (26,887,573 samples, 0.01%)</title><rect x="1144.9" y="661" width="0.2" height="15.0" fill="rgb(254,229,54)" rx="2" ry="2" /> | |
| <text x="1147.90" y="671.5" ></text> | |
| </g> | |
| <g > | |
| <title>pa_flist_pop (17,560,976 samples, 0.01%)</title><rect x="15.9" y="773" width="0.1" height="15.0" fill="rgb(244,183,43)" rx="2" ry="2" /> | |
| <text x="18.88" y="783.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_uniform (57,851,953 samples, 0.03%)</title><rect x="1137.7" y="677" width="0.3" height="15.0" fill="rgb(248,201,48)" rx="2" ry="2" /> | |
| <text x="1140.66" y="687.5" ></text> | |
| </g> | |
| <g > | |
| <title>bind_texture_object (231,007,587 samples, 0.13%)</title><rect x="985.8" y="661" width="1.5" height="15.0" fill="rgb(221,73,17)" rx="2" ry="2" /> | |
| <text x="988.82" y="671.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_marshal_GetQueryObjectuiv (25,870,226 samples, 0.01%)</title><rect x="1150.6" y="741" width="0.2" height="15.0" fill="rgb(214,43,10)" rx="2" ry="2" /> | |
| <text x="1153.60" y="751.5" ></text> | |
| </g> | |
| <g > | |
| <title>__arm64_sys_ioctl (82,169,409 samples, 0.05%)</title><rect x="509.9" y="565" width="0.5" height="15.0" fill="rgb(207,11,2)" rx="2" ry="2" /> | |
| <text x="512.89" y="575.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_unmarshal_BindBuffer (104,251,518 samples, 0.06%)</title><rect x="982.4" y="677" width="0.7" height="15.0" fill="rgb(223,86,20)" rx="2" ry="2" /> | |
| <text x="985.38" y="687.5" ></text> | |
| </g> | |
| <g > | |
| <title>st_convert_sampler (17,161,730 samples, 0.01%)</title><rect x="872.2" y="549" width="0.1" height="15.0" fill="rgb(242,172,41)" rx="2" ry="2" /> | |
| <text x="875.22" y="559.5" ></text> | |
| </g> | |
| <g > | |
| <title>__aarch64_ldadd4_acq_rel (38,201,174 samples, 0.02%)</title><rect x="139.0" y="725" width="0.3" height="15.0" fill="rgb(228,108,25)" rx="2" ry="2" /> | |
| <text x="142.04" y="735.5" ></text> | |
| </g> | |
| <g > | |
| <title>do_el0_svc (93,122,550 samples, 0.05%)</title><rect x="36.4" y="725" width="0.6" height="15.0" fill="rgb(218,60,14)" rx="2" ry="2" /> | |
| <text x="39.37" y="735.5" ></text> | |
| </g> | |
| <g > | |
| <title>__aarch64_ldadd4_acq_rel (15,529,392 samples, 0.01%)</title><rect x="1057.5" y="645" width="0.1" height="15.0" fill="rgb(228,108,25)" rx="2" ry="2" /> | |
| <text x="1060.47" y="655.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_marshal_Uniform4fv (23,908,414 samples, 0.01%)</title><rect x="831.5" y="677" width="0.2" height="15.0" fill="rgb(228,108,26)" rx="2" ry="2" /> | |
| <text x="834.52" y="687.5" ></text> | |
| </g> | |
| <g > | |
| <title>tc_batch_execute (59,384,441 samples, 0.03%)</title><rect x="517.4" y="693" width="0.4" height="15.0" fill="rgb(249,205,49)" rx="2" ry="2" /> | |
| <text x="520.42" y="703.5" ></text> | |
| </g> | |
| <g > | |
| <title>_XFlush (17,100,071 samples, 0.01%)</title><rect x="504.7" y="757" width="0.1" height="15.0" fill="rgb(211,27,6)" rx="2" ry="2" /> | |
| <text x="507.73" y="767.5" ></text> | |
| </g> | |
| <g > | |
| <title>[redeclipse] (5,721,744,516 samples, 3.17%)</title><rect x="767.1" y="597" width="37.4" height="15.0" fill="rgb(253,222,53)" rx="2" ry="2" /> | |
| <text x="770.07" y="607.5" >[re..</text> | |
| </g> | |
| <g > | |
| <title>_mesa_glthread_flush_batch (188,262,737 samples, 0.10%)</title><rect x="1173.2" y="757" width="1.3" height="15.0" fill="rgb(239,158,38)" rx="2" ry="2" /> | |
| <text x="1176.22" y="767.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_reference_program_ (16,031,678 samples, 0.01%)</title><rect x="1008.2" y="597" width="0.1" height="15.0" fill="rgb(231,122,29)" rx="2" ry="2" /> | |
| <text x="1011.19" y="607.5" ></text> | |
| </g> | |
| <g > | |
| <title>__printf_buffer (269,344,607 samples, 0.15%)</title><rect x="969.0" y="693" width="1.7" height="15.0" fill="rgb(219,68,16)" rx="2" ry="2" /> | |
| <text x="971.96" y="703.5" ></text> | |
| </g> | |
| <g > | |
| <title>futex_wake (102,090,786 samples, 0.06%)</title><rect x="459.0" y="549" width="0.6" height="15.0" fill="rgb(219,65,15)" rx="2" ry="2" /> | |
| <text x="461.97" y="559.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_MapBufferRange (80,902,329 samples, 0.04%)</title><rect x="971.0" y="709" width="0.6" height="15.0" fill="rgb(238,156,37)" rx="2" ry="2" /> | |
| <text x="974.03" y="719.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_validated_drawrangeelements (53,020,163 samples, 0.03%)</title><rect x="975.6" y="645" width="0.3" height="15.0" fill="rgb(230,115,27)" rx="2" ry="2" /> | |
| <text x="978.57" y="655.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_DrawElementsBaseVertex (3,526,524,726 samples, 1.95%)</title><rect x="1113.4" y="693" width="23.0" height="15.0" fill="rgb(214,41,10)" rx="2" ry="2" /> | |
| <text x="1116.36" y="703.5" >_..</text> | |
| </g> | |
| <g > | |
| <title>do_futex (34,671,241 samples, 0.02%)</title><rect x="16.9" y="629" width="0.2" height="15.0" fill="rgb(245,184,44)" rx="2" ry="2" /> | |
| <text x="19.88" y="639.5" ></text> | |
| </g> | |
| <g > | |
| <title>amdgpu_bo_fence_wait (187,496,710 samples, 0.10%)</title><rect x="895.6" y="581" width="1.2" height="15.0" fill="rgb(214,41,9)" rx="2" ry="2" /> | |
| <text x="898.55" y="591.5" ></text> | |
| </g> | |
| <g > | |
| <title>glActiveTexture (28,023,864 samples, 0.02%)</title><rect x="1069.6" y="741" width="0.2" height="15.0" fill="rgb(234,135,32)" rx="2" ry="2" /> | |
| <text x="1072.60" y="751.5" ></text> | |
| </g> | |
| <g > | |
| <title>_itoa_word (27,631,313 samples, 0.02%)</title><rect x="917.5" y="661" width="0.2" height="15.0" fill="rgb(246,191,45)" rx="2" ry="2" /> | |
| <text x="920.52" y="671.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_marshal_MapBufferRange (16,371,254 samples, 0.01%)</title><rect x="792.1" y="261" width="0.1" height="15.0" fill="rgb(219,65,15)" rx="2" ry="2" /> | |
| <text x="795.08" y="271.5" ></text> | |
| </g> | |
| <g > | |
| <title>el0_svc (40,902,276 samples, 0.02%)</title><rect x="1160.8" y="533" width="0.2" height="15.0" fill="rgb(244,183,43)" rx="2" ry="2" /> | |
| <text x="1163.77" y="543.5" ></text> | |
| </g> | |
| <g > | |
| <title>_int_free_merge_chunk (17,293,722 samples, 0.01%)</title><rect x="201.2" y="709" width="0.1" height="15.0" fill="rgb(240,163,39)" rx="2" ry="2" /> | |
| <text x="204.15" y="719.5" ></text> | |
| </g> | |
| <g > | |
| <title>el0t_64_sync (37,724,213 samples, 0.02%)</title><rect x="516.7" y="661" width="0.3" height="15.0" fill="rgb(217,56,13)" rx="2" ry="2" /> | |
| <text x="519.75" y="671.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_update_texture_state (35,194,723 samples, 0.02%)</title><rect x="1060.9" y="613" width="0.3" height="15.0" fill="rgb(237,148,35)" rx="2" ry="2" /> | |
| <text x="1063.92" y="623.5" ></text> | |
| </g> | |
| <g > | |
| <title>__aarch64_ldadd4_acq_rel (29,563,291 samples, 0.02%)</title><rect x="528.2" y="645" width="0.2" height="15.0" fill="rgb(228,108,25)" rx="2" ry="2" /> | |
| <text x="531.21" y="655.5" ></text> | |
| </g> | |
| <g > | |
| <title>st_make_bound_samplers_resident (24,013,140 samples, 0.01%)</title><rect x="1124.4" y="629" width="0.2" height="15.0" fill="rgb(234,136,32)" rx="2" ry="2" /> | |
| <text x="1127.40" y="639.5" ></text> | |
| </g> | |
| <g > | |
| <title>amdgpu_bo_map (16,766,983 samples, 0.01%)</title><rect x="1164.8" y="661" width="0.1" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" /> | |
| <text x="1167.78" y="671.5" ></text> | |
| </g> | |
| <g > | |
| <title>cso_set_vertex_elements_direct (28,035,755 samples, 0.02%)</title><rect x="1015.8" y="581" width="0.2" height="15.0" fill="rgb(222,80,19)" rx="2" ry="2" /> | |
| <text x="1018.81" y="591.5" ></text> | |
| </g> | |
| <g > | |
| <title>do_el0_svc (205,087,125 samples, 0.11%)</title><rect x="1107.0" y="421" width="1.4" height="15.0" fill="rgb(218,60,14)" rx="2" ry="2" /> | |
| <text x="1110.01" y="431.5" ></text> | |
| </g> | |
| <g > | |
| <title>pthread_cond_signal@@GLIBC_2.17 (36,777,051 samples, 0.02%)</title><rect x="420.1" y="629" width="0.3" height="15.0" fill="rgb(232,126,30)" rx="2" ry="2" /> | |
| <text x="423.15" y="639.5" ></text> | |
| </g> | |
| <g > | |
| <title>invoke_syscall (125,853,497 samples, 0.07%)</title><rect x="191.0" y="597" width="0.9" height="15.0" fill="rgb(209,18,4)" rx="2" ry="2" /> | |
| <text x="194.05" y="607.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_unmarshal_DrawArraysInstanced (294,142,517 samples, 0.16%)</title><rect x="824.3" y="629" width="1.9" height="15.0" fill="rgb(209,20,4)" rx="2" ry="2" /> | |
| <text x="827.28" y="639.5" ></text> | |
| </g> | |
| <g > | |
| <title>oggpack_look (54,070,435 samples, 0.03%)</title><rect x="25.3" y="661" width="0.4" height="15.0" fill="rgb(248,198,47)" rx="2" ry="2" /> | |
| <text x="28.33" y="671.5" ></text> | |
| </g> | |
| <g > | |
| <title>__GI___strlen_asimd (19,936,302 samples, 0.01%)</title><rect x="792.7" y="277" width="0.2" height="15.0" fill="rgb(213,41,9)" rx="2" ry="2" /> | |
| <text x="795.75" y="287.5" ></text> | |
| </g> | |
| <g > | |
| <title>cso_set_rasterizer (55,444,400 samples, 0.03%)</title><rect x="1120.1" y="629" width="0.4" height="15.0" fill="rgb(242,172,41)" rx="2" ry="2" /> | |
| <text x="1123.12" y="639.5" ></text> | |
| </g> | |
| <g > | |
| <title>bind_buffer_object (42,164,957 samples, 0.02%)</title><rect x="1077.2" y="693" width="0.3" height="15.0" fill="rgb(246,190,45)" rx="2" ry="2" /> | |
| <text x="1080.23" y="703.5" ></text> | |
| </g> | |
| <g > | |
| <title>exit_mm (28,990,851 samples, 0.02%)</title><rect x="1189.6" y="741" width="0.2" height="15.0" fill="rgb(236,144,34)" rx="2" ry="2" /> | |
| <text x="1192.58" y="751.5" ></text> | |
| </g> | |
| <g > | |
| <title>amdgpu_fence_destroy (21,205,288 samples, 0.01%)</title><rect x="515.4" y="565" width="0.2" height="15.0" fill="rgb(225,92,22)" rx="2" ry="2" /> | |
| <text x="518.43" y="575.5" ></text> | |
| </g> | |
| <g > | |
| <title>amdgpu_do_add_buffer (21,485,964 samples, 0.01%)</title><rect x="192.1" y="725" width="0.2" height="15.0" fill="rgb(223,86,20)" rx="2" ry="2" /> | |
| <text x="195.14" y="735.5" ></text> | |
| </g> | |
| <g > | |
| <title>slab_zalloc (25,959,362 samples, 0.01%)</title><rect x="816.8" y="565" width="0.2" height="15.0" fill="rgb(232,128,30)" rx="2" ry="2" /> | |
| <text x="819.78" y="575.5" ></text> | |
| </g> | |
| <g > | |
| <title>update_program (24,345,227 samples, 0.01%)</title><rect x="1115.0" y="629" width="0.1" height="15.0" fill="rgb(236,145,34)" rx="2" ry="2" /> | |
| <text x="1117.98" y="639.5" ></text> | |
| </g> | |
| <g > | |
| <title>[libSDL2-2.0.so.0.3000.0] (1,943,799,868 samples, 1.08%)</title><rect x="15.1" y="837" width="12.7" height="15.0" fill="rgb(227,102,24)" rx="2" ry="2" /> | |
| <text x="18.13" y="847.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_validated_drawrangeelements (34,874,278 samples, 0.02%)</title><rect x="1113.5" y="661" width="0.2" height="15.0" fill="rgb(230,115,27)" rx="2" ry="2" /> | |
| <text x="1116.49" y="671.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_glthread_flush_batch (22,221,021 samples, 0.01%)</title><rect x="805.8" y="613" width="0.2" height="15.0" fill="rgb(239,158,38)" rx="2" ry="2" /> | |
| <text x="808.84" y="623.5" ></text> | |
| </g> | |
| <g > | |
| <title>cso_set_vertex_elements (27,552,466 samples, 0.02%)</title><rect x="813.7" y="533" width="0.2" height="15.0" fill="rgb(238,152,36)" rx="2" ry="2" /> | |
| <text x="816.72" y="543.5" ></text> | |
| </g> | |
| <g > | |
| <title>validate_array_format.constprop.0 (21,210,278 samples, 0.01%)</title><rect x="1093.1" y="661" width="0.2" height="15.0" fill="rgb(232,126,30)" rx="2" ry="2" /> | |
| <text x="1096.13" y="671.5" ></text> | |
| </g> | |
| <g > | |
| <title>el0t_64_sync (23,338,102 samples, 0.01%)</title><rect x="453.1" y="629" width="0.2" height="15.0" fill="rgb(217,56,13)" rx="2" ry="2" /> | |
| <text x="456.14" y="639.5" ></text> | |
| </g> | |
| <g > | |
| <title>__aarch64_ldadd4_acq_rel (20,923,637 samples, 0.01%)</title><rect x="1013.2" y="565" width="0.1" height="15.0" fill="rgb(228,108,25)" rx="2" ry="2" /> | |
| <text x="1016.20" y="575.5" ></text> | |
| </g> | |
| <g > | |
| <title>rseq_update_cpu_node_id (16,450,008 samples, 0.01%)</title><rect x="896.6" y="421" width="0.1" height="15.0" fill="rgb(224,88,21)" rx="2" ry="2" /> | |
| <text x="899.61" y="431.5" ></text> | |
| </g> | |
| <g > | |
| <title>el0_svc (39,786,367 samples, 0.02%)</title><rect x="11.7" y="565" width="0.2" height="15.0" fill="rgb(244,183,43)" rx="2" ry="2" /> | |
| <text x="14.65" y="575.5" ></text> | |
| </g> | |
| <g > | |
| <title>update_program (130,212,380 samples, 0.07%)</title><rect x="393.5" y="725" width="0.9" height="15.0" fill="rgb(236,145,34)" rx="2" ry="2" /> | |
| <text x="396.53" y="735.5" ></text> | |
| </g> | |
| <g > | |
| <title>drm_sched_wakeup_if_can_queue (175,672,195 samples, 0.10%)</title><rect x="311.0" y="549" width="1.2" height="15.0" fill="rgb(227,101,24)" rx="2" ry="2" /> | |
| <text x="314.05" y="559.5" ></text> | |
| </g> | |
| <g > | |
| <title>amdgpu_bo_wait (17,475,867 samples, 0.01%)</title><rect x="974.0" y="581" width="0.1" height="15.0" fill="rgb(241,168,40)" rx="2" ry="2" /> | |
| <text x="976.99" y="591.5" ></text> | |
| </g> | |
| <g > | |
| <title>__printf_buffer_write (20,769,229 samples, 0.01%)</title><rect x="1052.5" y="677" width="0.1" height="15.0" fill="rgb(220,73,17)" rx="2" ry="2" /> | |
| <text x="1055.47" y="687.5" ></text> | |
| </g> | |
| <g > | |
| <title>__audit_inode (110,337,008 samples, 0.06%)</title><rect x="1182.1" y="549" width="0.8" height="15.0" fill="rgb(212,32,7)" rx="2" ry="2" /> | |
| <text x="1185.13" y="559.5" ></text> | |
| </g> | |
| <g > | |
| <title>drmSyncobjCreate (223,327,235 samples, 0.12%)</title><rect x="536.8" y="661" width="1.5" height="15.0" fill="rgb(224,87,21)" rx="2" ry="2" /> | |
| <text x="539.84" y="671.5" ></text> | |
| </g> | |
| <g > | |
| <title>dri3_flush_present_events (49,221,553 samples, 0.03%)</title><rect x="508.8" y="773" width="0.3" height="15.0" fill="rgb(217,57,13)" rx="2" ry="2" /> | |
| <text x="511.79" y="783.5" ></text> | |
| </g> | |
| <g > | |
| <title>futex_wait (23,947,234 samples, 0.01%)</title><rect x="861.2" y="645" width="0.1" height="15.0" fill="rgb(235,138,33)" rx="2" ry="2" /> | |
| <text x="864.16" y="655.5" ></text> | |
| </g> | |
| <g > | |
| <title>amdgpu_lookup_buffer (81,265,678 samples, 0.05%)</title><rect x="154.7" y="741" width="0.5" height="15.0" fill="rgb(216,54,13)" rx="2" ry="2" /> | |
| <text x="157.66" y="751.5" ></text> | |
| </g> | |
| <g > | |
| <title>enet_malloc (22,256,509 samples, 0.01%)</title><rect x="1174.6" y="757" width="0.2" height="15.0" fill="rgb(252,217,52)" rx="2" ry="2" /> | |
| <text x="1177.62" y="767.5" ></text> | |
| </g> | |
| <g > | |
| <title>[libpulsecommon-16.1.so] (277,464,472 samples, 0.15%)</title><rect x="11.4" y="773" width="1.8" height="15.0" fill="rgb(224,88,21)" rx="2" ry="2" /> | |
| <text x="14.38" y="783.5" ></text> | |
| </g> | |
| <g > | |
| <title>st_update_single_texture (94,524,280 samples, 0.05%)</title><rect x="855.3" y="549" width="0.6" height="15.0" fill="rgb(208,15,3)" rx="2" ry="2" /> | |
| <text x="858.31" y="559.5" ></text> | |
| </g> | |
| <g > | |
| <title>tc_set_sampler_views (29,445,133 samples, 0.02%)</title><rect x="1014.8" y="581" width="0.2" height="15.0" fill="rgb(250,209,50)" rx="2" ry="2" /> | |
| <text x="1017.80" y="591.5" ></text> | |
| </g> | |
| <g > | |
| <title>gfx6_emit_barrier (59,107,140 samples, 0.03%)</title><rect x="138.5" y="773" width="0.4" height="15.0" fill="rgb(253,225,53)" rx="2" ry="2" /> | |
| <text x="141.53" y="783.5" ></text> | |
| </g> | |
| <g > | |
| <title>invoke_syscall (40,380,146 samples, 0.02%)</title><rect x="15.2" y="629" width="0.3" height="15.0" fill="rgb(209,18,4)" rx="2" ry="2" /> | |
| <text x="18.19" y="639.5" ></text> | |
| </g> | |
| <g > | |
| <title>amdgpu_vm_bo_update (354,051,459 samples, 0.20%)</title><rect x="325.9" y="565" width="2.3" height="15.0" fill="rgb(230,118,28)" rx="2" ry="2" /> | |
| <text x="328.87" y="575.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_marshal_DrawRangeElements (52,298,259 samples, 0.03%)</title><rect x="977.7" y="725" width="0.3" height="15.0" fill="rgb(229,111,26)" rx="2" ry="2" /> | |
| <text x="980.67" y="735.5" ></text> | |
| </g> | |
| <g > | |
| <title>el0t_64_sync (127,320,407 samples, 0.07%)</title><rect x="1173.6" y="677" width="0.8" height="15.0" fill="rgb(217,56,13)" rx="2" ry="2" /> | |
| <text x="1176.57" y="687.5" ></text> | |
| </g> | |
| <g > | |
| <title>_int_free_merge_chunk (18,196,217 samples, 0.01%)</title><rect x="201.1" y="725" width="0.2" height="15.0" fill="rgb(240,163,39)" rx="2" ry="2" /> | |
| <text x="204.15" y="735.5" ></text> | |
| </g> | |
| <g > | |
| <title>si_upload_descriptors (760,486,487 samples, 0.42%)</title><rect x="145.8" y="757" width="5.0" height="15.0" fill="rgb(233,131,31)" rx="2" ry="2" /> | |
| <text x="148.79" y="767.5" ></text> | |
| </g> | |
| <g > | |
| <title>pa_read (28,069,395 samples, 0.02%)</title><rect x="12.9" y="725" width="0.2" height="15.0" fill="rgb(238,153,36)" rx="2" ry="2" /> | |
| <text x="15.95" y="735.5" ></text> | |
| </g> | |
| <g > | |
| <title>do_futex (51,588,547 samples, 0.03%)</title><rect x="35.1" y="677" width="0.3" height="15.0" fill="rgb(245,184,44)" rx="2" ry="2" /> | |
| <text x="38.06" y="687.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_unmarshal_VertexAttrib4fARB (33,332,557 samples, 0.02%)</title><rect x="952.0" y="661" width="0.2" height="15.0" fill="rgb(215,47,11)" rx="2" ry="2" /> | |
| <text x="955.02" y="671.5" ></text> | |
| </g> | |
| <g > | |
| <title>[redeclipse] (1,943,214,561 samples, 1.08%)</title><rect x="776.5" y="213" width="12.7" height="15.0" fill="rgb(253,222,53)" rx="2" ry="2" /> | |
| <text x="779.50" y="223.5" ></text> | |
| </g> | |
| <g > | |
| <title>do_futex (45,110,400 samples, 0.02%)</title><rect x="972.7" y="533" width="0.2" height="15.0" fill="rgb(245,184,44)" rx="2" ry="2" /> | |
| <text x="975.65" y="543.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_update_valid_to_render_state (32,299,551 samples, 0.02%)</title><rect x="1144.9" y="677" width="0.2" height="15.0" fill="rgb(219,66,15)" rx="2" ry="2" /> | |
| <text x="1147.90" y="687.5" ></text> | |
| </g> | |
| <g > | |
| <title>invoke_syscall (18,346,173 samples, 0.01%)</title><rect x="10.3" y="677" width="0.1" height="15.0" fill="rgb(209,18,4)" rx="2" ry="2" /> | |
| <text x="13.32" y="687.5" ></text> | |
| </g> | |
| <g > | |
| <title>update_textures (24,078,094 samples, 0.01%)</title><rect x="941.9" y="581" width="0.1" height="15.0" fill="rgb(232,125,29)" rx="2" ry="2" /> | |
| <text x="944.89" y="591.5" ></text> | |
| </g> | |
| <g > | |
| <title>update_single_program_texture (283,965,332 samples, 0.16%)</title><rect x="1116.1" y="613" width="1.9" height="15.0" fill="rgb(241,165,39)" rx="2" ry="2" /> | |
| <text x="1119.14" y="623.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_unmarshal_UniformMatrix4fv (228,049,084 samples, 0.13%)</title><rect x="1021.6" y="677" width="1.5" height="15.0" fill="rgb(249,202,48)" rx="2" ry="2" /> | |
| <text x="1024.64" y="687.5" ></text> | |
| </g> | |
| <g > | |
| <title>st_framebuffer_validate (73,622,365 samples, 0.04%)</title><rect x="374.4" y="741" width="0.5" height="15.0" fill="rgb(230,117,28)" rx="2" ry="2" /> | |
| <text x="377.44" y="751.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_bufferobj_map_range (244,468,948 samples, 0.14%)</title><rect x="1167.6" y="741" width="1.6" height="15.0" fill="rgb(206,7,1)" rx="2" ry="2" /> | |
| <text x="1170.60" y="751.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_update_state (193,954,956 samples, 0.11%)</title><rect x="1080.0" y="677" width="1.3" height="15.0" fill="rgb(222,78,18)" rx="2" ry="2" /> | |
| <text x="1083.01" y="687.5" ></text> | |
| </g> | |
| <g > | |
| <title>si_buffer_resources_begin_new_cs (17,115,170 samples, 0.01%)</title><rect x="83.4" y="693" width="0.1" height="15.0" fill="rgb(248,200,47)" rx="2" ry="2" /> | |
| <text x="86.36" y="703.5" ></text> | |
| </g> | |
| <g > | |
| <title>ovl_get_link (20,485,224 samples, 0.01%)</title><rect x="1185.8" y="485" width="0.1" height="15.0" fill="rgb(214,42,10)" rx="2" ry="2" /> | |
| <text x="1188.76" y="495.5" ></text> | |
| </g> | |
| <g > | |
| <title>void st_update_array_templ< (64,192,629 samples, 0.04%)</title><rect x="828.6" y="565" width="0.4" height="15.0" fill="rgb(243,178,42)" rx="2" ry="2" /> | |
| <text x="831.59" y="575.5" ></text> | |
| </g> | |
| <g > | |
| <title>strcspn (120,601,269 samples, 0.07%)</title><rect x="807.9" y="613" width="0.8" height="15.0" fill="rgb(218,61,14)" rx="2" ry="2" /> | |
| <text x="810.91" y="623.5" ></text> | |
| </g> | |
| <g > | |
| <title>start_thread (13,569,053,316 samples, 7.52%)</title><rect x="248.7" y="869" width="88.7" height="15.0" fill="rgb(212,34,8)" rx="2" ry="2" /> | |
| <text x="251.73" y="879.5" >start_thread</text> | |
| </g> | |
| <g > | |
| <title>_mesa_marshal_MapBufferRange (39,904,117 samples, 0.02%)</title><rect x="1031.0" y="709" width="0.3" height="15.0" fill="rgb(219,65,15)" rx="2" ry="2" /> | |
| <text x="1034.03" y="719.5" ></text> | |
| </g> | |
| <g > | |
| <title>upload_unmap_internal (48,369,558 samples, 0.03%)</title><rect x="418.1" y="709" width="0.3" height="15.0" fill="rgb(236,146,35)" rx="2" ry="2" /> | |
| <text x="421.05" y="719.5" ></text> | |
| </g> | |
| <g > | |
| <title>cso_restore_state (17,829,881 samples, 0.01%)</title><rect x="510.8" y="693" width="0.1" height="15.0" fill="rgb(229,110,26)" rx="2" ry="2" /> | |
| <text x="513.80" y="703.5" ></text> | |
| </g> | |
| <g > | |
| <title>drm_ioctl (37,931,960 samples, 0.02%)</title><rect x="900.5" y="373" width="0.2" height="15.0" fill="rgb(231,121,29)" rx="2" ry="2" /> | |
| <text x="903.49" y="383.5" ></text> | |
| </g> | |
| <g > | |
| <title>_raw_spin_unlock_irqrestore (22,423,994 samples, 0.01%)</title><rect x="1178.0" y="533" width="0.1" height="15.0" fill="rgb(228,106,25)" rx="2" ry="2" /> | |
| <text x="1180.98" y="543.5" ></text> | |
| </g> | |
| <g > | |
| <title>__arm64_sys_ppoll (96,747,647 samples, 0.05%)</title><rect x="13.5" y="629" width="0.6" height="15.0" fill="rgb(230,115,27)" rx="2" ry="2" /> | |
| <text x="16.47" y="639.5" ></text> | |
| </g> | |
| <g > | |
| <title>tc_call_bind_vertex_elements_state (52,343,226 samples, 0.03%)</title><rect x="60.8" y="789" width="0.4" height="15.0" fill="rgb(216,51,12)" rx="2" ry="2" /> | |
| <text x="63.81" y="799.5" ></text> | |
| </g> | |
| <g > | |
| <title>st_update_framebuffer_state (95,146,775 samples, 0.05%)</title><rect x="404.8" y="741" width="0.6" height="15.0" fill="rgb(231,123,29)" rx="2" ry="2" /> | |
| <text x="407.79" y="751.5" ></text> | |
| </g> | |
| <g > | |
| <title>dma_resv_iter_first (86,481,254 samples, 0.05%)</title><rect x="318.9" y="549" width="0.5" height="15.0" fill="rgb(219,66,15)" rx="2" ry="2" /> | |
| <text x="321.88" y="559.5" ></text> | |
| </g> | |
| <g > | |
| <title>wake_up_q (33,766,124 samples, 0.02%)</title><rect x="901.9" y="357" width="0.2" height="15.0" fill="rgb(237,151,36)" rx="2" ry="2" /> | |
| <text x="904.87" y="367.5" ></text> | |
| </g> | |
| <g > | |
| <title>__aarch64_ldadd4_rel (34,783,188 samples, 0.02%)</title><rect x="341.3" y="773" width="0.3" height="15.0" fill="rgb(238,153,36)" rx="2" ry="2" /> | |
| <text x="344.34" y="783.5" ></text> | |
| </g> | |
| <g > | |
| <title>tc_call_set_constant_buffer (766,286,389 samples, 0.42%)</title><rect x="193.3" y="805" width="5.0" height="15.0" fill="rgb(222,79,18)" rx="2" ry="2" /> | |
| <text x="196.25" y="815.5" ></text> | |
| </g> | |
| <g > | |
| <title>unix_stream_recvmsg (25,253,864 samples, 0.01%)</title><rect x="503.5" y="469" width="0.2" height="15.0" fill="rgb(251,213,51)" rx="2" ry="2" /> | |
| <text x="506.50" y="479.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_Uniform2f (22,380,265 samples, 0.01%)</title><rect x="1019.5" y="661" width="0.1" height="15.0" fill="rgb(223,86,20)" rx="2" ry="2" /> | |
| <text x="1022.46" y="671.5" ></text> | |
| </g> | |
| <g > | |
| <title>el0_svc_common.constprop.0 (69,638,372 samples, 0.04%)</title><rect x="35.0" y="725" width="0.5" height="15.0" fill="rgb(224,89,21)" rx="2" ry="2" /> | |
| <text x="38.05" y="735.5" ></text> | |
| </g> | |
| <g > | |
| <title>vbo_exec_copy_to_current (43,218,975 samples, 0.02%)</title><rect x="877.7" y="581" width="0.3" height="15.0" fill="rgb(218,60,14)" rx="2" ry="2" /> | |
| <text x="880.71" y="591.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_update_renderbuffer_surface (38,606,148 samples, 0.02%)</title><rect x="1018.4" y="613" width="0.3" height="15.0" fill="rgb(236,144,34)" rx="2" ry="2" /> | |
| <text x="1021.41" y="623.5" ></text> | |
| </g> | |
| <g > | |
| <title>get_query_result (912,806,422 samples, 0.51%)</title><rect x="1159.6" y="725" width="6.0" height="15.0" fill="rgb(228,106,25)" rx="2" ry="2" /> | |
| <text x="1162.63" y="735.5" ></text> | |
| </g> | |
| <g > | |
| <title>glthread_unmarshal_batch (233,241,159 samples, 0.13%)</title><rect x="1029.4" y="677" width="1.5" height="15.0" fill="rgb(247,195,46)" rx="2" ry="2" /> | |
| <text x="1032.39" y="687.5" ></text> | |
| </g> | |
| <g > | |
| <title>void st_update_array_templ< (72,068,526 samples, 0.04%)</title><rect x="1016.1" y="597" width="0.5" height="15.0" fill="rgb(243,178,42)" rx="2" ry="2" /> | |
| <text x="1019.09" y="607.5" ></text> | |
| </g> | |
| <g > | |
| <title>syscall (23,947,234 samples, 0.01%)</title><rect x="861.2" y="629" width="0.1" height="15.0" fill="rgb(234,136,32)" rx="2" ry="2" /> | |
| <text x="864.16" y="639.5" ></text> | |
| </g> | |
| <g > | |
| <title>clear_rseq_cs.isra.0 (22,815,329 samples, 0.01%)</title><rect x="340.8" y="693" width="0.2" height="15.0" fill="rgb(250,210,50)" rx="2" ry="2" /> | |
| <text x="343.82" y="703.5" ></text> | |
| </g> | |
| <g > | |
| <title>cso_set_framebuffer (30,578,536 samples, 0.02%)</title><rect x="374.2" y="757" width="0.2" height="15.0" fill="rgb(217,59,14)" rx="2" ry="2" /> | |
| <text x="377.20" y="767.5" ></text> | |
| </g> | |
| <g > | |
| <title>__aarch64_ldadd4_acq_rel (89,971,798 samples, 0.05%)</title><rect x="1129.4" y="597" width="0.6" height="15.0" fill="rgb(228,108,25)" rx="2" ry="2" /> | |
| <text x="1132.38" y="607.5" ></text> | |
| </g> | |
| <g > | |
| <title>void st_update_array_templ< (23,247,996 samples, 0.01%)</title><rect x="931.0" y="597" width="0.1" height="15.0" fill="rgb(243,178,42)" rx="2" ry="2" /> | |
| <text x="933.95" y="607.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_reference_texobj_ (41,964,699 samples, 0.02%)</title><rect x="370.5" y="757" width="0.3" height="15.0" fill="rgb(229,111,26)" rx="2" ry="2" /> | |
| <text x="373.51" y="767.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_Clear (32,411,859 samples, 0.02%)</title><rect x="373.7" y="789" width="0.2" height="15.0" fill="rgb(214,41,10)" rx="2" ry="2" /> | |
| <text x="376.74" y="799.5" ></text> | |
| </g> | |
| <g > | |
| <title>__futex_wait (26,429,787 samples, 0.01%)</title><rect x="884.6" y="421" width="0.2" height="15.0" fill="rgb(207,12,3)" rx="2" ry="2" /> | |
| <text x="887.65" y="431.5" ></text> | |
| </g> | |
| <g > | |
| <title>__GI___strlen_asimd (51,488,790 samples, 0.03%)</title><rect x="1049.2" y="741" width="0.3" height="15.0" fill="rgb(213,41,9)" rx="2" ry="2" /> | |
| <text x="1052.21" y="751.5" ></text> | |
| </g> | |
| <g > | |
| <title>update_shader_samplers (73,590,314 samples, 0.04%)</title><rect x="871.8" y="565" width="0.5" height="15.0" fill="rgb(229,113,27)" rx="2" ry="2" /> | |
| <text x="874.85" y="575.5" ></text> | |
| </g> | |
| <g > | |
| <title>strcmp@plt (19,671,772 samples, 0.01%)</title><rect x="911.4" y="693" width="0.2" height="15.0" fill="rgb(233,132,31)" rx="2" ry="2" /> | |
| <text x="914.43" y="703.5" ></text> | |
| </g> | |
| <g > | |
| <title>do_futex (49,442,933 samples, 0.03%)</title><rect x="11.0" y="645" width="0.4" height="15.0" fill="rgb(245,184,44)" rx="2" ry="2" /> | |
| <text x="14.04" y="655.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_bind_framebuffers (24,685,516 samples, 0.01%)</title><rect x="1098.4" y="693" width="0.2" height="15.0" fill="rgb(211,29,7)" rx="2" ry="2" /> | |
| <text x="1101.44" y="703.5" ></text> | |
| </g> | |
| <g > | |
| <title>do_el0_svc (214,822,642 samples, 0.12%)</title><rect x="249.2" y="709" width="1.4" height="15.0" fill="rgb(218,60,14)" rx="2" ry="2" /> | |
| <text x="252.21" y="719.5" ></text> | |
| </g> | |
| <g > | |
| <title>bind_texture_object (42,269,774 samples, 0.02%)</title><rect x="1078.2" y="693" width="0.3" height="15.0" fill="rgb(221,73,17)" rx="2" ry="2" /> | |
| <text x="1081.18" y="703.5" ></text> | |
| </g> | |
| <g > | |
| <title>tc_add_sized_call (16,993,771 samples, 0.01%)</title><rect x="874.5" y="549" width="0.1" height="15.0" fill="rgb(245,187,44)" rx="2" ry="2" /> | |
| <text x="877.46" y="559.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_unmarshal_Uniform2f (26,305,498 samples, 0.01%)</title><rect x="460.4" y="805" width="0.2" height="15.0" fill="rgb(237,149,35)" rx="2" ry="2" /> | |
| <text x="463.39" y="815.5" ></text> | |
| </g> | |
| <g > | |
| <title>invoke_syscall (25,582,249 samples, 0.01%)</title><rect x="508.9" y="613" width="0.2" height="15.0" fill="rgb(209,18,4)" rx="2" ry="2" /> | |
| <text x="511.89" y="623.5" ></text> | |
| </g> | |
| <g > | |
| <title>__condvar_dec_grefs (36,237,366 samples, 0.02%)</title><rect x="252.0" y="789" width="0.2" height="15.0" fill="rgb(226,98,23)" rx="2" ry="2" /> | |
| <text x="254.97" y="799.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_VertexAttribPointer (15,318,179 samples, 0.01%)</title><rect x="830.6" y="613" width="0.1" height="15.0" fill="rgb(211,29,7)" rx="2" ry="2" /> | |
| <text x="833.60" y="623.5" ></text> | |
| </g> | |
| <g > | |
| <title>st_prepare_draw (18,799,196 samples, 0.01%)</title><rect x="869.8" y="581" width="0.1" height="15.0" fill="rgb(214,45,10)" rx="2" ry="2" /> | |
| <text x="872.83" y="591.5" ></text> | |
| </g> | |
| <g > | |
| <title>do_el0_svc (19,734,986 samples, 0.01%)</title><rect x="515.4" y="453" width="0.2" height="15.0" fill="rgb(218,60,14)" rx="2" ry="2" /> | |
| <text x="518.44" y="463.5" ></text> | |
| </g> | |
| <g > | |
| <title>amdgpu_cs_pass1 (2,887,108,865 samples, 1.60%)</title><rect x="288.3" y="581" width="18.8" height="15.0" fill="rgb(229,114,27)" rx="2" ry="2" /> | |
| <text x="291.25" y="591.5" ></text> | |
| </g> | |
| <g > | |
| <title>[libxcb.so.1.1.0] (403,640,638 samples, 0.22%)</title><rect x="540.7" y="741" width="2.7" height="15.0" fill="rgb(226,98,23)" rx="2" ry="2" /> | |
| <text x="543.71" y="751.5" ></text> | |
| </g> | |
| <g > | |
| <title>[libSDL2-2.0.so.0.3000.0] (58,212,483 samples, 0.03%)</title><rect x="505.1" y="757" width="0.4" height="15.0" fill="rgb(227,102,24)" rx="2" ry="2" /> | |
| <text x="508.13" y="767.5" ></text> | |
| </g> | |
| <g > | |
| <title>bind_texture_object (59,970,453 samples, 0.03%)</title><rect x="846.7" y="613" width="0.4" height="15.0" fill="rgb(221,73,17)" rx="2" ry="2" /> | |
| <text x="849.68" y="623.5" ></text> | |
| </g> | |
| <g > | |
| <title>st_make_bound_samplers_resident (90,154,881 samples, 0.05%)</title><rect x="412.7" y="725" width="0.6" height="15.0" fill="rgb(234,136,32)" rx="2" ry="2" /> | |
| <text x="415.68" y="735.5" ></text> | |
| </g> | |
| <g > | |
| <title>el0t_64_sync_handler (69,848,188 samples, 0.04%)</title><rect x="254.0" y="757" width="0.5" height="15.0" fill="rgb(211,32,7)" rx="2" ry="2" /> | |
| <text x="257.05" y="767.5" ></text> | |
| </g> | |
| <g > | |
| <title>__libc_recvmsg (155,022,928 samples, 0.09%)</title><rect x="503.3" y="677" width="1.0" height="15.0" fill="rgb(220,72,17)" rx="2" ry="2" /> | |
| <text x="506.30" y="687.5" ></text> | |
| </g> | |
| <g > | |
| <title>pthread_cond_signal@@GLIBC_2.17 (15,308,801 samples, 0.01%)</title><rect x="944.5" y="533" width="0.1" height="15.0" fill="rgb(232,126,30)" rx="2" ry="2" /> | |
| <text x="947.53" y="543.5" ></text> | |
| </g> | |
| <g > | |
| <title>syscall_trace_exit (19,424,807 samples, 0.01%)</title><rect x="1186.8" y="645" width="0.1" height="15.0" fill="rgb(247,196,46)" rx="2" ry="2" /> | |
| <text x="1189.76" y="655.5" ></text> | |
| </g> | |
| <g > | |
| <title>strpbrk (111,038,111 samples, 0.06%)</title><rect x="911.6" y="677" width="0.8" height="15.0" fill="rgb(250,210,50)" rx="2" ry="2" /> | |
| <text x="914.63" y="687.5" ></text> | |
| </g> | |
| <g > | |
| <title>do_el0_svc (49,642,791 samples, 0.03%)</title><rect x="901.1" y="469" width="0.3" height="15.0" fill="rgb(218,60,14)" rx="2" ry="2" /> | |
| <text x="904.12" y="479.5" ></text> | |
| </g> | |
| <g > | |
| <title>memcmp (38,663,209 samples, 0.02%)</title><rect x="999.9" y="581" width="0.3" height="15.0" fill="rgb(235,141,33)" rx="2" ry="2" /> | |
| <text x="1002.93" y="591.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_unmarshal_BindBuffer (20,023,934 samples, 0.01%)</title><rect x="1077.1" y="693" width="0.1" height="15.0" fill="rgb(223,86,20)" rx="2" ry="2" /> | |
| <text x="1080.10" y="703.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_unmarshal_DrawElementsPacked (12,358,857,165 samples, 6.85%)</title><rect x="377.0" y="805" width="80.8" height="15.0" fill="rgb(225,92,22)" rx="2" ry="2" /> | |
| <text x="379.99" y="815.5" >_mesa_unm..</text> | |
| </g> | |
| <g > | |
| <title>strcmp (15,916,007 samples, 0.01%)</title><rect x="790.7" y="229" width="0.1" height="15.0" fill="rgb(217,58,13)" rx="2" ry="2" /> | |
| <text x="793.72" y="239.5" ></text> | |
| </g> | |
| <g > | |
| <title>__GI_____strtod_l_internal (29,952,915 samples, 0.02%)</title><rect x="788.0" y="181" width="0.2" height="15.0" fill="rgb(209,20,4)" rx="2" ry="2" /> | |
| <text x="790.98" y="191.5" ></text> | |
| </g> | |
| <g > | |
| <title>do_el0_svc (32,811,024 samples, 0.02%)</title><rect x="374.6" y="517" width="0.2" height="15.0" fill="rgb(218,60,14)" rx="2" ry="2" /> | |
| <text x="377.60" y="527.5" ></text> | |
| </g> | |
| <g > | |
| <title>el0t_64_sync_handler (479,844,058 samples, 0.27%)</title><rect x="337.9" y="741" width="3.2" height="15.0" fill="rgb(211,32,7)" rx="2" ry="2" /> | |
| <text x="340.93" y="751.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_unmarshal_Uniform3fv (18,494,376 samples, 0.01%)</title><rect x="878.9" y="645" width="0.1" height="15.0" fill="rgb(218,63,15)" rx="2" ry="2" /> | |
| <text x="881.85" y="655.5" ></text> | |
| </g> | |
| <g > | |
| <title>bool si_update_shaders< (55,216,606 samples, 0.03%)</title><rect x="889.1" y="565" width="0.4" height="15.0" fill="rgb(233,129,30)" rx="2" ry="2" /> | |
| <text x="892.10" y="575.5" ></text> | |
| </g> | |
| <g > | |
| <title>si_begin_new_gfx_cs (40,331,730 samples, 0.02%)</title><rect x="539.6" y="677" width="0.2" height="15.0" fill="rgb(234,134,32)" rx="2" ry="2" /> | |
| <text x="542.55" y="687.5" ></text> | |
| </g> | |
| <g > | |
| <title>si_emit_graphics_shader_pointers (49,780,742 samples, 0.03%)</title><rect x="522.7" y="645" width="0.3" height="15.0" fill="rgb(232,125,29)" rx="2" ry="2" /> | |
| <text x="525.67" y="655.5" ></text> | |
| </g> | |
| <g > | |
| <title>__GI___strchrnul (32,946,217 samples, 0.02%)</title><rect x="1051.8" y="693" width="0.2" height="15.0" fill="rgb(224,89,21)" rx="2" ry="2" /> | |
| <text x="1054.82" y="703.5" ></text> | |
| </g> | |
| <g > | |
| <title>invoke_syscall (28,181,949 samples, 0.02%)</title><rect x="843.4" y="533" width="0.2" height="15.0" fill="rgb(209,18,4)" rx="2" ry="2" /> | |
| <text x="846.44" y="543.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_unmarshal_Uniform4f (27,736,200 samples, 0.02%)</title><rect x="1020.4" y="677" width="0.2" height="15.0" fill="rgb(224,89,21)" rx="2" ry="2" /> | |
| <text x="1023.41" y="687.5" ></text> | |
| </g> | |
| <g > | |
| <title>tc_call_bind_depth_stencil_alpha_state (38,651,805 samples, 0.02%)</title><rect x="50.8" y="789" width="0.2" height="15.0" fill="rgb(232,126,30)" rx="2" ry="2" /> | |
| <text x="53.80" y="799.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_reference_program_ (63,514,351 samples, 0.04%)</title><rect x="404.2" y="725" width="0.4" height="15.0" fill="rgb(231,122,29)" rx="2" ry="2" /> | |
| <text x="407.16" y="735.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_uniform (33,748,548 samples, 0.02%)</title><rect x="1064.6" y="661" width="0.3" height="15.0" fill="rgb(248,201,48)" rx="2" ry="2" /> | |
| <text x="1067.65" y="671.5" ></text> | |
| </g> | |
| <g > | |
| <title>update_program (27,614,475 samples, 0.02%)</title><rect x="849.6" y="581" width="0.2" height="15.0" fill="rgb(236,145,34)" rx="2" ry="2" /> | |
| <text x="852.59" y="591.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_glthread_finish (42,704,225 samples, 0.02%)</title><rect x="785.8" y="149" width="0.3" height="15.0" fill="rgb(209,22,5)" rx="2" ry="2" /> | |
| <text x="788.79" y="159.5" ></text> | |
| </g> | |
| <g > | |
| <title>si_pm4_emit_shader (21,847,845 samples, 0.01%)</title><rect x="890.4" y="549" width="0.1" height="15.0" fill="rgb(227,102,24)" rx="2" ry="2" /> | |
| <text x="893.37" y="559.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_unmarshal_VertexAttrib3fARB (28,922,955 samples, 0.02%)</title><rect x="1027.4" y="677" width="0.2" height="15.0" fill="rgb(221,77,18)" rx="2" ry="2" /> | |
| <text x="1030.39" y="687.5" ></text> | |
| </g> | |
| <g > | |
| <title>update_shader_samplers (29,868,330 samples, 0.02%)</title><rect x="813.0" y="533" width="0.2" height="15.0" fill="rgb(229,113,27)" rx="2" ry="2" /> | |
| <text x="815.99" y="543.5" ></text> | |
| </g> | |
| <g > | |
| <title>__GI___ioctl (57,002,438 samples, 0.03%)</title><rect x="38.3" y="709" width="0.4" height="15.0" fill="rgb(232,128,30)" rx="2" ry="2" /> | |
| <text x="41.32" y="719.5" ></text> | |
| </g> | |
| <g > | |
| <title>__aarch64_cas4_sync (95,644,794 samples, 0.05%)</title><rect x="983.7" y="629" width="0.7" height="15.0" fill="rgb(253,222,53)" rx="2" ry="2" /> | |
| <text x="986.74" y="639.5" ></text> | |
| </g> | |
| <g > | |
| <title>do_el0_svc (36,205,028 samples, 0.02%)</title><rect x="190.1" y="629" width="0.2" height="15.0" fill="rgb(218,60,14)" rx="2" ry="2" /> | |
| <text x="193.11" y="639.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_validate_DrawElements (38,096,187 samples, 0.02%)</title><rect x="394.4" y="773" width="0.2" height="15.0" fill="rgb(230,119,28)" rx="2" ry="2" /> | |
| <text x="397.38" y="783.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_unmarshal_Enable (29,271,321 samples, 0.02%)</title><rect x="1136.5" y="709" width="0.2" height="15.0" fill="rgb(207,12,3)" rx="2" ry="2" /> | |
| <text x="1139.54" y="719.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_unmarshal_DrawElements (68,092,509 samples, 0.04%)</title><rect x="826.2" y="629" width="0.4" height="15.0" fill="rgb(247,195,46)" rx="2" ry="2" /> | |
| <text x="829.20" y="639.5" ></text> | |
| </g> | |
| <g > | |
| <title>void si_emit_spi_map<4> (49,847,479 samples, 0.03%)</title><rect x="182.3" y="757" width="0.3" height="15.0" fill="rgb(233,132,31)" rx="2" ry="2" /> | |
| <text x="185.26" y="767.5" ></text> | |
| </g> | |
| <g > | |
| <title>tc_buffer_unmap (24,478,639 samples, 0.01%)</title><rect x="814.6" y="581" width="0.1" height="15.0" fill="rgb(231,119,28)" rx="2" ry="2" /> | |
| <text x="817.59" y="591.5" ></text> | |
| </g> | |
| <g > | |
| <title>void amdgpu_cs_submit_ib< (12,639,026,305 samples, 7.00%)</title><rect x="254.8" y="821" width="82.6" height="15.0" fill="rgb(245,188,44)" rx="2" ry="2" /> | |
| <text x="257.81" y="831.5" >void amdg..</text> | |
| </g> | |
| <g > | |
| <title>ac_init_cb_surface (20,490,588 samples, 0.01%)</title><rect x="198.9" y="757" width="0.1" height="15.0" fill="rgb(254,228,54)" rx="2" ry="2" /> | |
| <text x="201.89" y="767.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_VertexAttribPointer (106,387,943 samples, 0.06%)</title><rect x="1028.2" y="645" width="0.7" height="15.0" fill="rgb(211,29,7)" rx="2" ry="2" /> | |
| <text x="1031.18" y="655.5" ></text> | |
| </g> | |
| <g > | |
| <title>si_emit_graphics_shader_pointers (1,432,320,577 samples, 0.79%)</title><rect x="141.4" y="773" width="9.4" height="15.0" fill="rgb(232,125,29)" rx="2" ry="2" /> | |
| <text x="144.39" y="783.5" ></text> | |
| </g> | |
| <g > | |
| <title>strspn (32,050,422 samples, 0.02%)</title><rect x="818.6" y="661" width="0.2" height="15.0" fill="rgb(207,13,3)" rx="2" ry="2" /> | |
| <text x="821.61" y="671.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_DrawElementsBaseVertex (833,999,828 samples, 0.46%)</title><rect x="1083.3" y="693" width="5.4" height="15.0" fill="rgb(214,41,10)" rx="2" ry="2" /> | |
| <text x="1086.28" y="703.5" ></text> | |
| </g> | |
| <g > | |
| <title>invoke_syscall (57,196,568 samples, 0.03%)</title><rect x="14.8" y="645" width="0.3" height="15.0" fill="rgb(209,18,4)" rx="2" ry="2" /> | |
| <text x="17.75" y="655.5" ></text> | |
| </g> | |
| <g > | |
| <title>redeclipse (105,253,802,169 samples, 58.30%)</title><rect x="502.1" y="901" width="687.9" height="15.0" fill="rgb(241,169,40)" rx="2" ry="2" /> | |
| <text x="505.09" y="911.5" >redeclipse</text> | |
| </g> | |
| <g > | |
| <title>_mesa_FramebufferTexture2D (146,872,657 samples, 0.08%)</title><rect x="1088.9" y="693" width="1.0" height="15.0" fill="rgb(216,51,12)" rx="2" ry="2" /> | |
| <text x="1091.93" y="703.5" ></text> | |
| </g> | |
| <g > | |
| <title>__arm64_sys_futex (18,249,284 samples, 0.01%)</title><rect x="420.2" y="501" width="0.1" height="15.0" fill="rgb(247,196,47)" rx="2" ry="2" /> | |
| <text x="423.22" y="511.5" ></text> | |
| </g> | |
| <g > | |
| <title>st_get_texture_sampler_view_from_stobj (35,719,090 samples, 0.02%)</title><rect x="1062.9" y="581" width="0.2" height="15.0" fill="rgb(211,32,7)" rx="2" ry="2" /> | |
| <text x="1065.86" y="591.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_update_texture_state (42,988,661 samples, 0.02%)</title><rect x="827.1" y="549" width="0.3" height="15.0" fill="rgb(237,148,35)" rx="2" ry="2" /> | |
| <text x="830.11" y="559.5" ></text> | |
| </g> | |
| <g > | |
| <title>[unknown] (53,112,593 samples, 0.03%)</title><rect x="965.5" y="725" width="0.3" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" /> | |
| <text x="968.47" y="735.5" ></text> | |
| </g> | |
| <g > | |
| <title>_glapi_get_current (15,924,566 samples, 0.01%)</title><rect x="549.0" y="773" width="0.1" height="15.0" fill="rgb(233,130,31)" rx="2" ry="2" /> | |
| <text x="552.02" y="783.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_marshal_MapBufferRange (50,756,224 samples, 0.03%)</title><rect x="784.4" y="149" width="0.3" height="15.0" fill="rgb(219,65,15)" rx="2" ry="2" /> | |
| <text x="787.39" y="159.5" ></text> | |
| </g> | |
| <g > | |
| <title>glDrawRangeElements (44,261,294 samples, 0.02%)</title><rect x="1035.5" y="725" width="0.2" height="15.0" fill="rgb(239,158,37)" rx="2" ry="2" /> | |
| <text x="1038.45" y="735.5" ></text> | |
| </g> | |
| <g > | |
| <title>el0_svc_common.constprop.0 (26,371,151 samples, 0.01%)</title><rect x="447.9" y="549" width="0.2" height="15.0" fill="rgb(224,89,21)" rx="2" ry="2" /> | |
| <text x="450.91" y="559.5" ></text> | |
| </g> | |
| <g > | |
| <title>[libpulse.so.0.24.2] (575,699,861 samples, 0.32%)</title><rect x="11.4" y="837" width="3.7" height="15.0" fill="rgb(253,221,52)" rx="2" ry="2" /> | |
| <text x="14.37" y="847.5" ></text> | |
| </g> | |
| <g > | |
| <title>update_shader_samplers (245,622,640 samples, 0.14%)</title><rect x="1126.4" y="645" width="1.6" height="15.0" fill="rgb(229,113,27)" rx="2" ry="2" /> | |
| <text x="1129.43" y="655.5" ></text> | |
| </g> | |
| <g > | |
| <title>amdgpu_do_add_buffer (23,797,989 samples, 0.01%)</title><rect x="83.8" y="677" width="0.1" height="15.0" fill="rgb(223,86,20)" rx="2" ry="2" /> | |
| <text x="86.76" y="687.5" ></text> | |
| </g> | |
| <g > | |
| <title>do_el0_svc (43,928,057 samples, 0.02%)</title><rect x="10.7" y="709" width="0.3" height="15.0" fill="rgb(218,60,14)" rx="2" ry="2" /> | |
| <text x="13.69" y="719.5" ></text> | |
| </g> | |
| <g > | |
| <title>futex_wake (17,141,198 samples, 0.01%)</title><rect x="876.3" y="341" width="0.1" height="15.0" fill="rgb(219,65,15)" rx="2" ry="2" /> | |
| <text x="879.33" y="351.5" ></text> | |
| </g> | |
| <g > | |
| <title>__futex_wait (44,548,380 samples, 0.02%)</title><rect x="901.1" y="373" width="0.3" height="15.0" fill="rgb(207,12,3)" rx="2" ry="2" /> | |
| <text x="904.12" y="383.5" ></text> | |
| </g> | |
| <g > | |
| <title>cso_set_blend (23,785,495 samples, 0.01%)</title><rect x="1005.9" y="597" width="0.2" height="15.0" fill="rgb(252,217,51)" rx="2" ry="2" /> | |
| <text x="1008.90" y="607.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_update_state (85,012,695 samples, 0.05%)</title><rect x="928.3" y="629" width="0.5" height="15.0" fill="rgb(222,78,18)" rx="2" ry="2" /> | |
| <text x="931.28" y="639.5" ></text> | |
| </g> | |
| <g > | |
| <title>__mmput (28,990,851 samples, 0.02%)</title><rect x="1189.6" y="709" width="0.2" height="15.0" fill="rgb(249,203,48)" rx="2" ry="2" /> | |
| <text x="1192.58" y="719.5" ></text> | |
| </g> | |
| <g > | |
| <title>[libGLX.so.0.0.0] (130,747,848 samples, 0.07%)</title><rect x="505.9" y="789" width="0.9" height="15.0" fill="rgb(219,64,15)" rx="2" ry="2" /> | |
| <text x="508.92" y="799.5" ></text> | |
| </g> | |
| <g > | |
| <title>update_program (117,674,880 samples, 0.07%)</title><rect x="1118.1" y="645" width="0.8" height="15.0" fill="rgb(236,145,34)" rx="2" ry="2" /> | |
| <text x="1121.13" y="655.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_DepthRange (20,747,776 samples, 0.01%)</title><rect x="989.3" y="661" width="0.1" height="15.0" fill="rgb(238,156,37)" rx="2" ry="2" /> | |
| <text x="992.26" y="671.5" ></text> | |
| </g> | |
| <g > | |
| <title>el0t_64_sync_handler (845,336,097 samples, 0.47%)</title><rect x="1181.4" y="709" width="5.5" height="15.0" fill="rgb(211,32,7)" rx="2" ry="2" /> | |
| <text x="1184.37" y="719.5" ></text> | |
| </g> | |
| <g > | |
| <title>si_begin_new_gfx_cs (79,644,849 samples, 0.04%)</title><rect x="539.4" y="693" width="0.5" height="15.0" fill="rgb(234,134,32)" rx="2" ry="2" /> | |
| <text x="542.36" y="703.5" ></text> | |
| </g> | |
| <g > | |
| <title>__arm64_sys_futex (49,442,933 samples, 0.03%)</title><rect x="11.0" y="661" width="0.4" height="15.0" fill="rgb(247,196,47)" rx="2" ry="2" /> | |
| <text x="14.04" y="671.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_reference_texobj_ (87,981,575 samples, 0.05%)</title><rect x="384.4" y="709" width="0.6" height="15.0" fill="rgb(229,111,26)" rx="2" ry="2" /> | |
| <text x="387.43" y="719.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_uniform (49,362,706 samples, 0.03%)</title><rect x="879.0" y="629" width="0.3" height="15.0" fill="rgb(248,201,48)" rx="2" ry="2" /> | |
| <text x="881.99" y="639.5" ></text> | |
| </g> | |
| <g > | |
| <title>do_el0_svc (40,902,276 samples, 0.02%)</title><rect x="1160.8" y="517" width="0.2" height="15.0" fill="rgb(218,60,14)" rx="2" ry="2" /> | |
| <text x="1163.77" y="527.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_DrawElementsBaseVertex (154,692,873 samples, 0.09%)</title><rect x="456.8" y="773" width="1.0" height="15.0" fill="rgb(214,41,10)" rx="2" ry="2" /> | |
| <text x="459.75" y="783.5" ></text> | |
| </g> | |
| <g > | |
| <title>futex_wait_queue (47,947,901 samples, 0.03%)</title><rect x="249.7" y="597" width="0.3" height="15.0" fill="rgb(225,92,22)" rx="2" ry="2" /> | |
| <text x="252.70" y="607.5" ></text> | |
| </g> | |
| <g > | |
| <title>strpbrk (142,917,951 samples, 0.08%)</title><rect x="964.3" y="709" width="0.9" height="15.0" fill="rgb(250,210,50)" rx="2" ry="2" /> | |
| <text x="967.26" y="719.5" ></text> | |
| </g> | |
| <g > | |
| <title>void si_emit_spi_map<5> (66,128,205 samples, 0.04%)</title><rect x="182.6" y="757" width="0.4" height="15.0" fill="rgb(227,102,24)" rx="2" ry="2" /> | |
| <text x="185.59" y="767.5" ></text> | |
| </g> | |
| <g > | |
| <title>void st_update_array_templ< (80,224,612 samples, 0.04%)</title><rect x="1000.4" y="613" width="0.5" height="15.0" fill="rgb(243,178,42)" rx="2" ry="2" /> | |
| <text x="1003.36" y="623.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_unmarshal_DrawArraysInstanced (220,095,016 samples, 0.12%)</title><rect x="865.2" y="645" width="1.5" height="15.0" fill="rgb(209,20,4)" rx="2" ry="2" /> | |
| <text x="868.25" y="655.5" ></text> | |
| </g> | |
| <g > | |
| <title>__aarch64_ldadd4_acq_rel (78,364,018 samples, 0.04%)</title><rect x="920.1" y="677" width="0.5" height="15.0" fill="rgb(228,108,25)" rx="2" ry="2" /> | |
| <text x="923.07" y="687.5" ></text> | |
| </g> | |
| <g > | |
| <title>kvfree (32,589,503 samples, 0.02%)</title><rect x="288.0" y="565" width="0.3" height="15.0" fill="rgb(209,22,5)" rx="2" ry="2" /> | |
| <text x="291.04" y="575.5" ></text> | |
| </g> | |
| <g > | |
| <title>validate_uniform_parameters (140,363,636 samples, 0.08%)</title><rect x="1140.2" y="661" width="0.9" height="15.0" fill="rgb(234,137,32)" rx="2" ry="2" /> | |
| <text x="1143.20" y="671.5" ></text> | |
| </g> | |
| <g > | |
| <title>tc_buffer_map (53,807,919 samples, 0.03%)</title><rect x="373.3" y="773" width="0.3" height="15.0" fill="rgb(247,195,46)" rx="2" ry="2" /> | |
| <text x="376.27" y="783.5" ></text> | |
| </g> | |
| <g > | |
| <title>si_set_framebuffer_state (129,564,425 samples, 0.07%)</title><rect x="199.3" y="773" width="0.9" height="15.0" fill="rgb(211,31,7)" rx="2" ry="2" /> | |
| <text x="202.31" y="783.5" ></text> | |
| </g> | |
| <g > | |
| <title>do_futex (18,386,053 samples, 0.01%)</title><rect x="453.1" y="517" width="0.2" height="15.0" fill="rgb(245,184,44)" rx="2" ry="2" /> | |
| <text x="456.15" y="527.5" ></text> | |
| </g> | |
| <g > | |
| <title>si_buffer_get_transfer (33,318,433 samples, 0.02%)</title><rect x="373.3" y="741" width="0.2" height="15.0" fill="rgb(224,91,21)" rx="2" ry="2" /> | |
| <text x="376.28" y="751.5" ></text> | |
| </g> | |
| <g > | |
| <title>finish_task_switch.isra.0 (16,643,397 samples, 0.01%)</title><rect x="338.8" y="549" width="0.1" height="15.0" fill="rgb(246,189,45)" rx="2" ry="2" /> | |
| <text x="341.82" y="559.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_update_state (72,066,210 samples, 0.04%)</title><rect x="379.0" y="757" width="0.4" height="15.0" fill="rgb(222,78,18)" rx="2" ry="2" /> | |
| <text x="381.97" y="767.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_unmarshal_BindBuffer (45,687,678 samples, 0.03%)</title><rect x="982.4" y="661" width="0.3" height="15.0" fill="rgb(223,86,20)" rx="2" ry="2" /> | |
| <text x="985.40" y="671.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_marshal_UnmapBuffer (26,905,260 samples, 0.01%)</title><rect x="956.6" y="709" width="0.2" height="15.0" fill="rgb(237,149,35)" rx="2" ry="2" /> | |
| <text x="959.59" y="719.5" ></text> | |
| </g> | |
| <g > | |
| <title>st_Clear (23,084,748 samples, 0.01%)</title><rect x="1104.9" y="677" width="0.1" height="15.0" fill="rgb(211,30,7)" rx="2" ry="2" /> | |
| <text x="1107.89" y="687.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_get_active_states (15,365,666 samples, 0.01%)</title><rect x="392.2" y="725" width="0.1" height="15.0" fill="rgb(243,177,42)" rx="2" ry="2" /> | |
| <text x="395.21" y="735.5" ></text> | |
| </g> | |
| <g > | |
| <title>si_pm4_emit_shader (40,153,189 samples, 0.02%)</title><rect x="890.3" y="565" width="0.2" height="15.0" fill="rgb(227,102,24)" rx="2" ry="2" /> | |
| <text x="893.28" y="575.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_uniform (16,934,361 samples, 0.01%)</title><rect x="1064.5" y="661" width="0.1" height="15.0" fill="rgb(248,201,48)" rx="2" ry="2" /> | |
| <text x="1067.47" y="671.5" ></text> | |
| </g> | |
| <g > | |
| <title>futex_lock_pi (17,204,197 samples, 0.01%)</title><rect x="17.0" y="613" width="0.1" height="15.0" fill="rgb(247,194,46)" rx="2" ry="2" /> | |
| <text x="20.00" y="623.5" ></text> | |
| </g> | |
| <g > | |
| <title>si_upload_descriptors (226,197,294 samples, 0.13%)</title><rect x="144.3" y="741" width="1.5" height="15.0" fill="rgb(233,131,31)" rx="2" ry="2" /> | |
| <text x="147.31" y="751.5" ></text> | |
| </g> | |
| <g > | |
| <title>st_make_bound_images_resident (49,983,408 samples, 0.03%)</title><rect x="412.4" y="709" width="0.3" height="15.0" fill="rgb(241,167,40)" rx="2" ry="2" /> | |
| <text x="415.36" y="719.5" ></text> | |
| </g> | |
| <g > | |
| <title>__aarch64_swp4_acq (26,370,463 samples, 0.01%)</title><rect x="341.6" y="773" width="0.1" height="15.0" fill="rgb(205,4,0)" rx="2" ry="2" /> | |
| <text x="344.57" y="783.5" ></text> | |
| </g> | |
| <g > | |
| <title>update_shader_samplers (1,275,779,031 samples, 0.71%)</title><rect x="419.5" y="741" width="8.4" height="15.0" fill="rgb(229,113,27)" rx="2" ry="2" /> | |
| <text x="422.54" y="751.5" ></text> | |
| </g> | |
| <g > | |
| <title>st_update_single_texture (79,674,745 samples, 0.04%)</title><rect x="428.4" y="693" width="0.6" height="15.0" fill="rgb(208,15,3)" rx="2" ry="2" /> | |
| <text x="431.44" y="703.5" ></text> | |
| </g> | |
| <g > | |
| <title>cso_set_vertex_elements (18,488,824 samples, 0.01%)</title><rect x="1113.0" y="645" width="0.1" height="15.0" fill="rgb(238,152,36)" rx="2" ry="2" /> | |
| <text x="1116.01" y="655.5" ></text> | |
| </g> | |
| <g > | |
| <title>el0t_64_sync (33,217,051 samples, 0.02%)</title><rect x="374.6" y="565" width="0.2" height="15.0" fill="rgb(217,56,13)" rx="2" ry="2" /> | |
| <text x="377.60" y="575.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_reference_texobj_ (19,077,487 samples, 0.01%)</title><rect x="1115.6" y="613" width="0.1" height="15.0" fill="rgb(229,111,26)" rx="2" ry="2" /> | |
| <text x="1118.59" y="623.5" ></text> | |
| </g> | |
| <g > | |
| <title>st_get_sampler_view_format (17,496,787 samples, 0.01%)</title><rect x="997.9" y="565" width="0.1" height="15.0" fill="rgb(211,30,7)" rx="2" ry="2" /> | |
| <text x="1000.86" y="575.5" ></text> | |
| </g> | |
| <g > | |
| <title>do_group_exit (63,814,501 samples, 0.04%)</title><rect x="1189.6" y="773" width="0.4" height="15.0" fill="rgb(219,67,16)" rx="2" ry="2" /> | |
| <text x="1192.58" y="783.5" ></text> | |
| </g> | |
| <g > | |
| <title>bind_texture_object (24,755,133 samples, 0.01%)</title><rect x="1152.4" y="693" width="0.1" height="15.0" fill="rgb(221,73,17)" rx="2" ry="2" /> | |
| <text x="1155.36" y="703.5" ></text> | |
| </g> | |
| <g > | |
| <title>validate_array_and_format.isra.0 (30,734,824 samples, 0.02%)</title><rect x="492.7" y="757" width="0.2" height="15.0" fill="rgb(211,28,6)" rx="2" ry="2" /> | |
| <text x="495.71" y="767.5" ></text> | |
| </g> | |
| <g > | |
| <title>update_single_program_texture (35,945,178 samples, 0.02%)</title><rect x="928.5" y="565" width="0.3" height="15.0" fill="rgb(241,165,39)" rx="2" ry="2" /> | |
| <text x="931.52" y="575.5" ></text> | |
| </g> | |
| <g > | |
| <title>unmap_buffer (17,007,443 samples, 0.01%)</title><rect x="949.0" y="629" width="0.1" height="15.0" fill="rgb(233,131,31)" rx="2" ry="2" /> | |
| <text x="952.02" y="639.5" ></text> | |
| </g> | |
| <g > | |
| <title>ac_set_mutable_tex_desc_fields (153,397,095 samples, 0.08%)</title><rect x="217.4" y="725" width="1.0" height="15.0" fill="rgb(231,120,28)" rx="2" ry="2" /> | |
| <text x="220.40" y="735.5" ></text> | |
| </g> | |
| <g > | |
| <title>__aarch64_ldadd4_acq_rel (15,880,392 samples, 0.01%)</title><rect x="523.3" y="629" width="0.1" height="15.0" fill="rgb(228,108,25)" rx="2" ry="2" /> | |
| <text x="526.31" y="639.5" ></text> | |
| </g> | |
| <g > | |
| <title>void st_update_array_impl< (63,872,915 samples, 0.04%)</title><rect x="942.0" y="597" width="0.5" height="15.0" fill="rgb(217,56,13)" rx="2" ry="2" /> | |
| <text x="945.05" y="607.5" ></text> | |
| </g> | |
| <g > | |
| <title>__memcpy_generic (76,015,176 samples, 0.04%)</title><rect x="1170.4" y="741" width="0.5" height="15.0" fill="rgb(231,124,29)" rx="2" ry="2" /> | |
| <text x="1173.39" y="751.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_VertexAttribPointer (223,517,673 samples, 0.12%)</title><rect x="952.3" y="645" width="1.4" height="15.0" fill="rgb(211,29,7)" rx="2" ry="2" /> | |
| <text x="955.27" y="655.5" ></text> | |
| </g> | |
| <g > | |
| <title>amdgpu_lookup_buffer (74,775,463 samples, 0.04%)</title><rect x="132.6" y="757" width="0.5" height="15.0" fill="rgb(216,54,13)" rx="2" ry="2" /> | |
| <text x="135.65" y="767.5" ></text> | |
| </g> | |
| <g > | |
| <title>get_query_object (61,582,521 samples, 0.03%)</title><rect x="1165.6" y="741" width="0.4" height="15.0" fill="rgb(236,144,34)" rx="2" ry="2" /> | |
| <text x="1168.60" y="751.5" ></text> | |
| </g> | |
| <g > | |
| <title>void st_update_array_templ< (21,146,593 samples, 0.01%)</title><rect x="1060.1" y="645" width="0.1" height="15.0" fill="rgb(243,178,42)" rx="2" ry="2" /> | |
| <text x="1063.08" y="655.5" ></text> | |
| </g> | |
| <g > | |
| <title>update_single_program_texture (15,874,578 samples, 0.01%)</title><rect x="810.8" y="517" width="0.1" height="15.0" fill="rgb(241,165,39)" rx="2" ry="2" /> | |
| <text x="813.78" y="527.5" ></text> | |
| </g> | |
| <g > | |
| <title>void st_update_array_templ< (28,904,192 samples, 0.02%)</title><rect x="828.8" y="549" width="0.2" height="15.0" fill="rgb(243,178,42)" rx="2" ry="2" /> | |
| <text x="831.82" y="559.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_use_program (18,198,873 samples, 0.01%)</title><rect x="951.1" y="597" width="0.1" height="15.0" fill="rgb(235,141,33)" rx="2" ry="2" /> | |
| <text x="954.11" y="607.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_uniform (352,579,528 samples, 0.20%)</title><rect x="1139.6" y="693" width="2.3" height="15.0" fill="rgb(248,201,48)" rx="2" ry="2" /> | |
| <text x="1142.56" y="703.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_update_valid_to_render_state (16,015,487 samples, 0.01%)</title><rect x="949.8" y="629" width="0.1" height="15.0" fill="rgb(219,66,15)" rx="2" ry="2" /> | |
| <text x="952.81" y="639.5" ></text> | |
| </g> | |
| <g > | |
| <title>vbo_exec_FlushVertices (18,931,529 samples, 0.01%)</title><rect x="926.7" y="629" width="0.1" height="15.0" fill="rgb(226,100,24)" rx="2" ry="2" /> | |
| <text x="929.68" y="639.5" ></text> | |
| </g> | |
| <g > | |
| <title>amdgpu_vram_mgr_compatible (665,171,273 samples, 0.37%)</title><rect x="272.3" y="517" width="4.4" height="15.0" fill="rgb(244,179,42)" rx="2" ry="2" /> | |
| <text x="275.32" y="527.5" ></text> | |
| </g> | |
| <g > | |
| <title>memcmp (195,826,823 samples, 0.11%)</title><rect x="471.7" y="757" width="1.3" height="15.0" fill="rgb(235,141,33)" rx="2" ry="2" /> | |
| <text x="474.71" y="767.5" ></text> | |
| </g> | |
| <g > | |
| <title>glthread_unmarshal_batch (30,219,845 samples, 0.02%)</title><rect x="781.9" y="69" width="0.2" height="15.0" fill="rgb(247,195,46)" rx="2" ry="2" /> | |
| <text x="784.92" y="79.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_bufferobj_data (16,806,156 samples, 0.01%)</title><rect x="987.7" y="645" width="0.1" height="15.0" fill="rgb(217,57,13)" rx="2" ry="2" /> | |
| <text x="990.71" y="655.5" ></text> | |
| </g> | |
| <g > | |
| <title>void st_update_array_templ< (128,511,973 samples, 0.07%)</title><rect x="876.5" y="565" width="0.9" height="15.0" fill="rgb(243,178,42)" rx="2" ry="2" /> | |
| <text x="879.54" y="575.5" ></text> | |
| </g> | |
| <g > | |
| <title>si_set_constant_buffer (24,547,543 samples, 0.01%)</title><rect x="891.7" y="581" width="0.2" height="15.0" fill="rgb(215,46,11)" rx="2" ry="2" /> | |
| <text x="894.71" y="591.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_uniform_matrix (93,121,037 samples, 0.05%)</title><rect x="1142.0" y="661" width="0.6" height="15.0" fill="rgb(215,47,11)" rx="2" ry="2" /> | |
| <text x="1144.99" y="671.5" ></text> | |
| </g> | |
| <g > | |
| <title>do_validate_attachment (21,219,277 samples, 0.01%)</title><rect x="1110.1" y="597" width="0.1" height="15.0" fill="rgb(254,225,54)" rx="2" ry="2" /> | |
| <text x="1113.10" y="607.5" ></text> | |
| </g> | |
| <g > | |
| <title>el0t_64_sync (16,941,715 samples, 0.01%)</title><rect x="977.9" y="629" width="0.1" height="15.0" fill="rgb(217,56,13)" rx="2" ry="2" /> | |
| <text x="980.90" y="639.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_glthread_finish (8,535,399,184 samples, 4.73%)</title><rect x="1094.8" y="741" width="55.8" height="15.0" fill="rgb(209,22,5)" rx="2" ry="2" /> | |
| <text x="1097.82" y="751.5" >_mesa..</text> | |
| </g> | |
| <g > | |
| <title>_mesa_unmarshal_BindBuffer (21,612,672 samples, 0.01%)</title><rect x="973.5" y="677" width="0.1" height="15.0" fill="rgb(223,86,20)" rx="2" ry="2" /> | |
| <text x="976.51" y="687.5" ></text> | |
| </g> | |
| <g > | |
| <title>si_query_hw_emit_stop (16,912,906 samples, 0.01%)</title><rect x="183.5" y="757" width="0.1" height="15.0" fill="rgb(223,86,20)" rx="2" ry="2" /> | |
| <text x="186.51" y="767.5" ></text> | |
| </g> | |
| <g > | |
| <title>futex_wake (123,736,700 samples, 0.07%)</title><rect x="252.8" y="661" width="0.8" height="15.0" fill="rgb(219,65,15)" rx="2" ry="2" /> | |
| <text x="255.78" y="671.5" ></text> | |
| </g> | |
| <g > | |
| <title>cso_set_vertex_elements (20,033,808 samples, 0.01%)</title><rect x="930.1" y="597" width="0.1" height="15.0" fill="rgb(238,152,36)" rx="2" ry="2" /> | |
| <text x="933.06" y="607.5" ></text> | |
| </g> | |
| <g > | |
| <title>tc_buffer_unmap (18,805,263 samples, 0.01%)</title><rect x="814.6" y="565" width="0.1" height="15.0" fill="rgb(231,119,28)" rx="2" ry="2" /> | |
| <text x="817.63" y="575.5" ></text> | |
| </g> | |
| <g > | |
| <title>si_begin_new_gfx_cs (92,043,814 samples, 0.05%)</title><rect x="192.1" y="757" width="0.6" height="15.0" fill="rgb(234,134,32)" rx="2" ry="2" /> | |
| <text x="195.08" y="767.5" ></text> | |
| </g> | |
| <g > | |
| <title>getname_flags.part.0 (69,673,965 samples, 0.04%)</title><rect x="1181.6" y="565" width="0.5" height="15.0" fill="rgb(207,10,2)" rx="2" ry="2" /> | |
| <text x="1184.60" y="575.5" ></text> | |
| </g> | |
| <g > | |
| <title>si_update_last_vgt_stage_state (20,304,244 samples, 0.01%)</title><rect x="518.8" y="645" width="0.1" height="15.0" fill="rgb(219,66,15)" rx="2" ry="2" /> | |
| <text x="521.75" y="655.5" ></text> | |
| </g> | |
| <g > | |
| <title>unmap_buffer (92,255,218 samples, 0.05%)</title><rect x="1023.5" y="661" width="0.6" height="15.0" fill="rgb(233,131,31)" rx="2" ry="2" /> | |
| <text x="1026.51" y="671.5" ></text> | |
| </g> | |
| <g > | |
| <title>el0_svc (36,424,765 samples, 0.02%)</title><rect x="506.5" y="725" width="0.2" height="15.0" fill="rgb(244,183,43)" rx="2" ry="2" /> | |
| <text x="509.48" y="735.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_update_state_locked (301,765,899 samples, 0.17%)</title><rect x="867.5" y="597" width="2.0" height="15.0" fill="rgb(214,43,10)" rx="2" ry="2" /> | |
| <text x="870.51" y="607.5" ></text> | |
| </g> | |
| <g > | |
| <title>__aarch64_cas4_sync (128,491,980 samples, 0.07%)</title><rect x="852.9" y="533" width="0.8" height="15.0" fill="rgb(253,222,53)" rx="2" ry="2" /> | |
| <text x="855.87" y="543.5" ></text> | |
| </g> | |
| <g > | |
| <title>drm_ioctl_kernel (34,602,083 samples, 0.02%)</title><rect x="537.7" y="469" width="0.2" height="15.0" fill="rgb(226,101,24)" rx="2" ry="2" /> | |
| <text x="540.70" y="479.5" ></text> | |
| </g> | |
| <g > | |
| <title>do_el0_svc (137,686,466 samples, 0.08%)</title><rect x="191.0" y="629" width="0.9" height="15.0" fill="rgb(218,60,14)" rx="2" ry="2" /> | |
| <text x="194.04" y="639.5" ></text> | |
| </g> | |
| <g > | |
| <title>pa_mainloop_run (575,699,861 samples, 0.32%)</title><rect x="11.4" y="821" width="3.7" height="15.0" fill="rgb(208,15,3)" rx="2" ry="2" /> | |
| <text x="14.37" y="831.5" ></text> | |
| </g> | |
| <g > | |
| <title>si_buffer_get_transfer (125,211,886 samples, 0.07%)</title><rect x="832.7" y="613" width="0.8" height="15.0" fill="rgb(224,91,21)" rx="2" ry="2" /> | |
| <text x="835.69" y="623.5" ></text> | |
| </g> | |
| <g > | |
| <title>__GI___memset_generic (31,167,153 samples, 0.02%)</title><rect x="37.3" y="757" width="0.2" height="15.0" fill="rgb(210,26,6)" rx="2" ry="2" /> | |
| <text x="40.31" y="767.5" ></text> | |
| </g> | |
| <g > | |
| <title>__arm64_sys_recvmsg (31,169,428 samples, 0.02%)</title><rect x="374.6" y="469" width="0.2" height="15.0" fill="rgb(236,144,34)" rx="2" ry="2" /> | |
| <text x="377.60" y="479.5" ></text> | |
| </g> | |
| <g > | |
| <title>util_sparse_array_get (87,205,427 samples, 0.05%)</title><rect x="363.0" y="741" width="0.6" height="15.0" fill="rgb(241,168,40)" rx="2" ry="2" /> | |
| <text x="366.01" y="751.5" ></text> | |
| </g> | |
| <g > | |
| <title>validate_uniform_parameters (22,808,649 samples, 0.01%)</title><rect x="946.2" y="613" width="0.1" height="15.0" fill="rgb(234,137,32)" rx="2" ry="2" /> | |
| <text x="949.17" y="623.5" ></text> | |
| </g> | |
| <g > | |
| <title>st_upload_constants (29,546,956 samples, 0.02%)</title><rect x="402.6" y="725" width="0.2" height="15.0" fill="rgb(238,154,36)" rx="2" ry="2" /> | |
| <text x="405.60" y="735.5" ></text> | |
| </g> | |
| <g > | |
| <title>strcspn (17,767,433 samples, 0.01%)</title><rect x="784.9" y="149" width="0.1" height="15.0" fill="rgb(218,61,14)" rx="2" ry="2" /> | |
| <text x="787.93" y="159.5" ></text> | |
| </g> | |
| <g > | |
| <title>__printf_buffer (25,818,512 samples, 0.01%)</title><rect x="512.5" y="661" width="0.2" height="15.0" fill="rgb(219,68,16)" rx="2" ry="2" /> | |
| <text x="515.54" y="671.5" ></text> | |
| </g> | |
| <g > | |
| <title>[libGLX.so.0.0.0] (59,927,031 samples, 0.03%)</title><rect x="506.0" y="773" width="0.4" height="15.0" fill="rgb(219,64,15)" rx="2" ry="2" /> | |
| <text x="509.03" y="783.5" ></text> | |
| </g> | |
| <g > | |
| <title>tc_set_sampler_views (57,771,913 samples, 0.03%)</title><rect x="855.9" y="565" width="0.4" height="15.0" fill="rgb(250,209,50)" rx="2" ry="2" /> | |
| <text x="858.92" y="575.5" ></text> | |
| </g> | |
| <g > | |
| <title>tc_call_buffer_unmap (228,619,016 samples, 0.13%)</title><rect x="519.1" y="693" width="1.5" height="15.0" fill="rgb(205,4,1)" rx="2" ry="2" /> | |
| <text x="522.14" y="703.5" ></text> | |
| </g> | |
| <g > | |
| <title>si_query_buffer_reset (29,761,399 samples, 0.02%)</title><rect x="48.3" y="757" width="0.2" height="15.0" fill="rgb(215,50,11)" rx="2" ry="2" /> | |
| <text x="51.27" y="767.5" ></text> | |
| </g> | |
| <g > | |
| <title>update_single_program_texture (17,656,252 samples, 0.01%)</title><rect x="1081.1" y="613" width="0.1" height="15.0" fill="rgb(241,165,39)" rx="2" ry="2" /> | |
| <text x="1084.10" y="623.5" ></text> | |
| </g> | |
| <g > | |
| <title>bind_buffer_object (36,257,779 samples, 0.02%)</title><rect x="923.1" y="629" width="0.2" height="15.0" fill="rgb(246,190,45)" rx="2" ry="2" /> | |
| <text x="926.09" y="639.5" ></text> | |
| </g> | |
| <g > | |
| <title>__printf_buffer_write (27,053,733 samples, 0.01%)</title><rect x="917.2" y="661" width="0.2" height="15.0" fill="rgb(220,73,17)" rx="2" ry="2" /> | |
| <text x="920.25" y="671.5" ></text> | |
| </g> | |
| <g > | |
| <title>si_shader_select (17,769,617 samples, 0.01%)</title><rect x="82.7" y="693" width="0.1" height="15.0" fill="rgb(254,227,54)" rx="2" ry="2" /> | |
| <text x="85.70" y="703.5" ></text> | |
| </g> | |
| <g > | |
| <title>si_pm4_emit_shader (1,267,029,596 samples, 0.70%)</title><rect x="151.5" y="773" width="8.3" height="15.0" fill="rgb(227,102,24)" rx="2" ry="2" /> | |
| <text x="154.53" y="783.5" ></text> | |
| </g> | |
| <g > | |
| <title>amdgpu_cs_flush (20,451,315 samples, 0.01%)</title><rect x="523.3" y="645" width="0.1" height="15.0" fill="rgb(205,1,0)" rx="2" ry="2" /> | |
| <text x="526.31" y="655.5" ></text> | |
| </g> | |
| <g > | |
| <title>amdgpu_cs_flush (61,939,199 samples, 0.03%)</title><rect x="517.0" y="661" width="0.4" height="15.0" fill="rgb(205,1,0)" rx="2" ry="2" /> | |
| <text x="520.00" y="671.5" ></text> | |
| </g> | |
| <g > | |
| <title>strcspn (16,803,562 samples, 0.01%)</title><rect x="788.8" y="197" width="0.1" height="15.0" fill="rgb(218,61,14)" rx="2" ry="2" /> | |
| <text x="791.81" y="207.5" ></text> | |
| </g> | |
| <g > | |
| <title>update_array.constprop.0 (33,664,140 samples, 0.02%)</title><rect x="1093.3" y="677" width="0.2" height="15.0" fill="rgb(224,88,21)" rx="2" ry="2" /> | |
| <text x="1096.27" y="687.5" ></text> | |
| </g> | |
| <g > | |
| <title>amdgpu_cs_add_buffer (59,989,760 samples, 0.03%)</title><rect x="139.0" y="757" width="0.4" height="15.0" fill="rgb(254,227,54)" rx="2" ry="2" /> | |
| <text x="142.01" y="767.5" ></text> | |
| </g> | |
| <g > | |
| <title>st_update_single_texture (24,009,774 samples, 0.01%)</title><rect x="828.2" y="517" width="0.2" height="15.0" fill="rgb(208,15,3)" rx="2" ry="2" /> | |
| <text x="831.23" y="527.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_BlendFunc (15,828,602 samples, 0.01%)</title><rect x="824.2" y="613" width="0.1" height="15.0" fill="rgb(218,64,15)" rx="2" ry="2" /> | |
| <text x="827.15" y="623.5" ></text> | |
| </g> | |
| <g > | |
| <title>__arm64_sys_sched_yield (32,027,935 samples, 0.02%)</title><rect x="1034.3" y="485" width="0.2" height="15.0" fill="rgb(217,55,13)" rx="2" ry="2" /> | |
| <text x="1037.27" y="495.5" ></text> | |
| </g> | |
| <g > | |
| <title>__GI___strlen_asimd (19,895,018 samples, 0.01%)</title><rect x="791.2" y="245" width="0.1" height="15.0" fill="rgb(213,41,9)" rx="2" ry="2" /> | |
| <text x="794.17" y="255.5" ></text> | |
| </g> | |
| <g > | |
| <title>syscall (66,178,026 samples, 0.04%)</title><rect x="884.6" y="581" width="0.4" height="15.0" fill="rgb(234,136,32)" rx="2" ry="2" /> | |
| <text x="887.57" y="591.5" ></text> | |
| </g> | |
| <g > | |
| <title>el0t_64_sync_handler (104,264,380 samples, 0.06%)</title><rect x="900.3" y="485" width="0.6" height="15.0" fill="rgb(211,32,7)" rx="2" ry="2" /> | |
| <text x="903.25" y="495.5" ></text> | |
| </g> | |
| <g > | |
| <title>memcmp (24,803,041 samples, 0.01%)</title><rect x="60.4" y="773" width="0.2" height="15.0" fill="rgb(235,141,33)" rx="2" ry="2" /> | |
| <text x="63.41" y="783.5" ></text> | |
| </g> | |
| <g > | |
| <title>tc_set_sampler_views (37,043,877 samples, 0.02%)</title><rect x="856.1" y="549" width="0.2" height="15.0" fill="rgb(250,209,50)" rx="2" ry="2" /> | |
| <text x="859.06" y="559.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_BindTexture (2,161,614,204 samples, 1.20%)</title><rect x="349.6" y="789" width="14.2" height="15.0" fill="rgb(234,136,32)" rx="2" ry="2" /> | |
| <text x="352.65" y="799.5" ></text> | |
| </g> | |
| <g > | |
| <title>cso_set_samplers (95,219,439 samples, 0.05%)</title><rect x="938.6" y="565" width="0.6" height="15.0" fill="rgb(215,48,11)" rx="2" ry="2" /> | |
| <text x="941.61" y="575.5" ></text> | |
| </g> | |
| <g > | |
| <title>do_el0_svc (82,476,691 samples, 0.05%)</title><rect x="331.7" y="693" width="0.5" height="15.0" fill="rgb(218,60,14)" rx="2" ry="2" /> | |
| <text x="334.66" y="703.5" ></text> | |
| </g> | |
| <g > | |
| <title>do_futex (36,359,959 samples, 0.02%)</title><rect x="36.5" y="661" width="0.2" height="15.0" fill="rgb(245,184,44)" rx="2" ry="2" /> | |
| <text x="39.47" y="671.5" ></text> | |
| </g> | |
| <g > | |
| <title>slab_zalloc (70,949,150 samples, 0.04%)</title><rect x="833.0" y="597" width="0.5" height="15.0" fill="rgb(232,128,30)" rx="2" ry="2" /> | |
| <text x="836.05" y="607.5" ></text> | |
| </g> | |
| <g > | |
| <title>[redeclipse] (2,403,116,573 samples, 1.33%)</title><rect x="774.6" y="229" width="15.7" height="15.0" fill="rgb(253,222,53)" rx="2" ry="2" /> | |
| <text x="777.62" y="239.5" ></text> | |
| </g> | |
| <g > | |
| <title>[redeclipse] (6,043,841,051 samples, 3.35%)</title><rect x="765.3" y="613" width="39.5" height="15.0" fill="rgb(253,222,53)" rx="2" ry="2" /> | |
| <text x="768.28" y="623.5" >[re..</text> | |
| </g> | |
| <g > | |
| <title>do_el0_svc (29,096,610 samples, 0.02%)</title><rect x="1106.2" y="421" width="0.2" height="15.0" fill="rgb(218,60,14)" rx="2" ry="2" /> | |
| <text x="1109.18" y="431.5" ></text> | |
| </g> | |
| <g > | |
| <title>si_is_resource_busy (22,928,754 samples, 0.01%)</title><rect x="927.1" y="597" width="0.2" height="15.0" fill="rgb(233,132,31)" rx="2" ry="2" /> | |
| <text x="930.12" y="607.5" ></text> | |
| </g> | |
| <g > | |
| <title>validate_uniform_parameters (30,605,299 samples, 0.02%)</title><rect x="1090.0" y="661" width="0.2" height="15.0" fill="rgb(234,137,32)" rx="2" ry="2" /> | |
| <text x="1093.02" y="671.5" ></text> | |
| </g> | |
| <g > | |
| <title>strcspn (44,118,924 samples, 0.02%)</title><rect x="799.0" y="437" width="0.3" height="15.0" fill="rgb(218,61,14)" rx="2" ry="2" /> | |
| <text x="802.01" y="447.5" ></text> | |
| </g> | |
| <g > | |
| <title>si_pm4_emit_rasterizer (86,859,218 samples, 0.05%)</title><rect x="179.2" y="757" width="0.6" height="15.0" fill="rgb(254,225,54)" rx="2" ry="2" /> | |
| <text x="182.23" y="767.5" ></text> | |
| </g> | |
| <g > | |
| <title>vbo_exec_wrap_upgrade_vertex (15,599,957 samples, 0.01%)</title><rect x="830.3" y="597" width="0.1" height="15.0" fill="rgb(237,148,35)" rx="2" ry="2" /> | |
| <text x="833.28" y="607.5" ></text> | |
| </g> | |
| <g > | |
| <title>void st_update_array_templ< (32,546,875 samples, 0.02%)</title><rect x="811.6" y="565" width="0.2" height="15.0" fill="rgb(243,178,42)" rx="2" ry="2" /> | |
| <text x="814.57" y="575.5" ></text> | |
| </g> | |
| <g > | |
| <title>amdgpu_bo_wait (26,161,526 samples, 0.01%)</title><rect x="371.8" y="709" width="0.1" height="15.0" fill="rgb(241,168,40)" rx="2" ry="2" /> | |
| <text x="374.78" y="719.5" ></text> | |
| </g> | |
| <g > | |
| <title>import_iovec (40,010,563 samples, 0.02%)</title><rect x="503.8" y="485" width="0.3" height="15.0" fill="rgb(241,168,40)" rx="2" ry="2" /> | |
| <text x="506.80" y="495.5" ></text> | |
| </g> | |
| <g > | |
| <title>slab_zalloc (150,488,235 samples, 0.08%)</title><rect x="960.0" y="629" width="1.0" height="15.0" fill="rgb(232,128,30)" rx="2" ry="2" /> | |
| <text x="962.98" y="639.5" ></text> | |
| </g> | |
| <g > | |
| <title>update_textures (80,996,443 samples, 0.04%)</title><rect x="929.4" y="613" width="0.6" height="15.0" fill="rgb(232,125,29)" rx="2" ry="2" /> | |
| <text x="932.45" y="623.5" ></text> | |
| </g> | |
| <g > | |
| <title>[redeclipse] (5,616,586,157 samples, 3.11%)</title><rect x="767.6" y="565" width="36.7" height="15.0" fill="rgb(253,222,53)" rx="2" ry="2" /> | |
| <text x="770.56" y="575.5" >[re..</text> | |
| </g> | |
| <g > | |
| <title>[redeclipse] (7,069,505,601 samples, 3.92%)</title><rect x="759.3" y="629" width="46.2" height="15.0" fill="rgb(253,222,53)" rx="2" ry="2" /> | |
| <text x="762.27" y="639.5" >[red..</text> | |
| </g> | |
| <g > | |
| <title>_mesa_UseProgram (162,178,403 samples, 0.09%)</title><rect x="858.5" y="629" width="1.0" height="15.0" fill="rgb(212,36,8)" rx="2" ry="2" /> | |
| <text x="861.48" y="639.5" ></text> | |
| </g> | |
| <g > | |
| <title>do_futex (39,786,367 samples, 0.02%)</title><rect x="11.7" y="485" width="0.2" height="15.0" fill="rgb(245,184,44)" rx="2" ry="2" /> | |
| <text x="14.65" y="495.5" ></text> | |
| </g> | |
| <g > | |
| <title>unix_stream_recvmsg (53,385,297 samples, 0.03%)</title><rect x="508.0" y="485" width="0.3" height="15.0" fill="rgb(251,213,51)" rx="2" ry="2" /> | |
| <text x="510.97" y="495.5" ></text> | |
| </g> | |
| <g > | |
| <title>__arm64_sys_ioctl (30,457,572 samples, 0.02%)</title><rect x="190.1" y="581" width="0.2" height="15.0" fill="rgb(207,11,2)" rx="2" ry="2" /> | |
| <text x="193.11" y="591.5" ></text> | |
| </g> | |
| <g > | |
| <title>cso_set_vertex_elements (27,417,094 samples, 0.02%)</title><rect x="511.3" y="709" width="0.1" height="15.0" fill="rgb(238,152,36)" rx="2" ry="2" /> | |
| <text x="514.27" y="719.5" ></text> | |
| </g> | |
| <g > | |
| <title>validate_map_buffer_range (49,768,660 samples, 0.03%)</title><rect x="971.2" y="693" width="0.4" height="15.0" fill="rgb(242,170,40)" rx="2" ry="2" /> | |
| <text x="974.23" y="703.5" ></text> | |
| </g> | |
| <g > | |
| <title>amdgpu_do_add_buffer (412,397,585 samples, 0.23%)</title><rect x="152.0" y="741" width="2.7" height="15.0" fill="rgb(223,86,20)" rx="2" ry="2" /> | |
| <text x="154.97" y="751.5" ></text> | |
| </g> | |
| <g > | |
| <title>bind_buffer_object (18,367,088 samples, 0.01%)</title><rect x="1077.4" y="677" width="0.1" height="15.0" fill="rgb(246,190,45)" rx="2" ry="2" /> | |
| <text x="1080.38" y="687.5" ></text> | |
| </g> | |
| <g > | |
| <title>st_get_sampler_views (20,598,733 samples, 0.01%)</title><rect x="1082.8" y="645" width="0.1" height="15.0" fill="rgb(224,91,21)" rx="2" ry="2" /> | |
| <text x="1085.81" y="655.5" ></text> | |
| </g> | |
| <g > | |
| <title>validate_uniform_parameters (53,892,752 samples, 0.03%)</title><rect x="461.0" y="757" width="0.4" height="15.0" fill="rgb(234,137,32)" rx="2" ry="2" /> | |
| <text x="464.03" y="767.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_update_array_format (15,485,838 samples, 0.01%)</title><rect x="1148.9" y="645" width="0.1" height="15.0" fill="rgb(228,109,26)" rx="2" ry="2" /> | |
| <text x="1151.88" y="655.5" ></text> | |
| </g> | |
| <g > | |
| <title>si_buffer_transfer_map (185,615,676 samples, 0.10%)</title><rect x="1071.3" y="693" width="1.2" height="15.0" fill="rgb(237,151,36)" rx="2" ry="2" /> | |
| <text x="1074.30" y="703.5" ></text> | |
| </g> | |
| <g > | |
| <title>_int_free_create_chunk (17,293,722 samples, 0.01%)</title><rect x="201.2" y="693" width="0.1" height="15.0" fill="rgb(244,182,43)" rx="2" ry="2" /> | |
| <text x="204.15" y="703.5" ></text> | |
| </g> | |
| <g > | |
| <title>__aarch64_ldadd4_acq_rel (34,782,257 samples, 0.02%)</title><rect x="517.0" y="645" width="0.3" height="15.0" fill="rgb(228,108,25)" rx="2" ry="2" /> | |
| <text x="520.03" y="655.5" ></text> | |
| </g> | |
| <g > | |
| <title>pthread_cond_wait@@GLIBC_2.17 (1,058,718,669 samples, 0.59%)</title><rect x="28.0" y="805" width="7.0" height="15.0" fill="rgb(231,119,28)" rx="2" ry="2" /> | |
| <text x="31.04" y="815.5" ></text> | |
| </g> | |
| <g > | |
| <title>PulseMainloop (575,699,861 samples, 0.32%)</title><rect x="11.4" y="901" width="3.7" height="15.0" fill="rgb(229,113,27)" rx="2" ry="2" /> | |
| <text x="14.37" y="911.5" ></text> | |
| </g> | |
| <g > | |
| <title>void st_update_array_templ< (32,908,378 samples, 0.02%)</title><rect x="825.9" y="581" width="0.2" height="15.0" fill="rgb(243,178,42)" rx="2" ry="2" /> | |
| <text x="828.86" y="591.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_update_state_locked (104,599,653 samples, 0.06%)</title><rect x="1060.6" y="645" width="0.7" height="15.0" fill="rgb(214,43,10)" rx="2" ry="2" /> | |
| <text x="1063.58" y="655.5" ></text> | |
| </g> | |
| <g > | |
| <title>void st_update_array_templ< (303,550,298 samples, 0.17%)</title><rect x="942.5" y="597" width="1.9" height="15.0" fill="rgb(243,178,42)" rx="2" ry="2" /> | |
| <text x="945.47" y="607.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_unmarshal_DisableVertexAttribArray (15,707,087 samples, 0.01%)</title><rect x="375.8" y="789" width="0.2" height="15.0" fill="rgb(214,45,10)" rx="2" ry="2" /> | |
| <text x="378.85" y="799.5" ></text> | |
| </g> | |
| <g > | |
| <title>__aarch64_ldadd4_rel (36,688,546 samples, 0.02%)</title><rect x="34.1" y="773" width="0.2" height="15.0" fill="rgb(238,153,36)" rx="2" ry="2" /> | |
| <text x="37.11" y="783.5" ></text> | |
| </g> | |
| <g > | |
| <title>amdgpu_cs_pass2 (79,914,343 samples, 0.04%)</title><rect x="307.1" y="581" width="0.5" height="15.0" fill="rgb(223,84,20)" rx="2" ry="2" /> | |
| <text x="310.12" y="591.5" ></text> | |
| </g> | |
| <g > | |
| <title>el0_svc (23,947,234 samples, 0.01%)</title><rect x="861.2" y="581" width="0.1" height="15.0" fill="rgb(244,183,43)" rx="2" ry="2" /> | |
| <text x="864.16" y="591.5" ></text> | |
| </g> | |
| <g > | |
| <title>strcspn (30,181,794 samples, 0.02%)</title><rect x="798.0" y="405" width="0.2" height="15.0" fill="rgb(218,61,14)" rx="2" ry="2" /> | |
| <text x="801.01" y="415.5" ></text> | |
| </g> | |
| <g > | |
| <title>__libc_start_call_main (105,189,987,668 samples, 58.26%)</title><rect x="502.1" y="853" width="687.5" height="15.0" fill="rgb(210,26,6)" rx="2" ry="2" /> | |
| <text x="505.09" y="863.5" >__libc_start_call_main</text> | |
| </g> | |
| <g > | |
| <title>_mesa_sampler_uniforms_are_valid (18,965,819 samples, 0.01%)</title><rect x="487.1" y="725" width="0.1" height="15.0" fill="rgb(254,229,54)" rx="2" ry="2" /> | |
| <text x="490.10" y="735.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_uniform (20,777,009 samples, 0.01%)</title><rect x="461.6" y="773" width="0.2" height="15.0" fill="rgb(248,201,48)" rx="2" ry="2" /> | |
| <text x="464.63" y="783.5" ></text> | |
| </g> | |
| <g > | |
| <title>st_Clear (69,276,275 samples, 0.04%)</title><rect x="988.6" y="661" width="0.4" height="15.0" fill="rgb(211,30,7)" rx="2" ry="2" /> | |
| <text x="991.59" y="671.5" ></text> | |
| </g> | |
| <g > | |
| <title>[redeclipse] (2,927,696,041 samples, 1.62%)</title><rect x="772.8" y="261" width="19.2" height="15.0" fill="rgb(253,222,53)" rx="2" ry="2" /> | |
| <text x="775.83" y="271.5" ></text> | |
| </g> | |
| <g > | |
| <title>do_el0_svc (37,287,209 samples, 0.02%)</title><rect x="16.9" y="693" width="0.2" height="15.0" fill="rgb(218,60,14)" rx="2" ry="2" /> | |
| <text x="19.88" y="703.5" ></text> | |
| </g> | |
| <g > | |
| <title>si_bind_ps_shader (29,819,649 samples, 0.02%)</title><rect x="518.0" y="677" width="0.2" height="15.0" fill="rgb(240,164,39)" rx="2" ry="2" /> | |
| <text x="520.99" y="687.5" ></text> | |
| </g> | |
| <g > | |
| <title>upload_unmap_internal (28,919,183 samples, 0.02%)</title><rect x="419.3" y="725" width="0.2" height="15.0" fill="rgb(236,146,35)" rx="2" ry="2" /> | |
| <text x="422.27" y="735.5" ></text> | |
| </g> | |
| <g > | |
| <title>__aarch64_swp4_acq_rel (15,390,087 samples, 0.01%)</title><rect x="248.7" y="821" width="0.1" height="15.0" fill="rgb(205,3,0)" rx="2" ry="2" /> | |
| <text x="251.73" y="831.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_unmarshal_Uniform2fv (21,888,410 samples, 0.01%)</title><rect x="1019.6" y="677" width="0.2" height="15.0" fill="rgb(225,92,22)" rx="2" ry="2" /> | |
| <text x="1022.62" y="687.5" ></text> | |
| </g> | |
| <g > | |
| <title>pa_mainloop_iterate (16,186,751 samples, 0.01%)</title><rect x="13.2" y="789" width="0.1" height="15.0" fill="rgb(216,51,12)" rx="2" ry="2" /> | |
| <text x="16.19" y="799.5" ></text> | |
| </g> | |
| <g > | |
| <title>st_prepare_draw (36,013,542 samples, 0.02%)</title><rect x="1154.6" y="661" width="0.2" height="15.0" fill="rgb(214,45,10)" rx="2" ry="2" /> | |
| <text x="1157.57" y="671.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_lookup_or_create_texture (36,502,414 samples, 0.02%)</title><rect x="1057.2" y="645" width="0.2" height="15.0" fill="rgb(235,140,33)" rx="2" ry="2" /> | |
| <text x="1060.19" y="655.5" ></text> | |
| </g> | |
| <g > | |
| <title>vfs_read (17,800,367 samples, 0.01%)</title><rect x="13.0" y="549" width="0.1" height="15.0" fill="rgb(224,88,21)" rx="2" ry="2" /> | |
| <text x="16.00" y="559.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_uniform (29,032,106 samples, 0.02%)</title><rect x="1090.7" y="661" width="0.2" height="15.0" fill="rgb(248,201,48)" rx="2" ry="2" /> | |
| <text x="1093.69" y="671.5" ></text> | |
| </g> | |
| <g > | |
| <title>tc_call_set_constant_buffer (36,391,749 samples, 0.02%)</title><rect x="526.9" y="693" width="0.3" height="15.0" fill="rgb(222,79,18)" rx="2" ry="2" /> | |
| <text x="529.93" y="703.5" ></text> | |
| </g> | |
| <g > | |
| <title>do_futex_fence_wait (23,947,234 samples, 0.01%)</title><rect x="861.2" y="661" width="0.1" height="15.0" fill="rgb(230,118,28)" rx="2" ry="2" /> | |
| <text x="864.16" y="671.5" ></text> | |
| </g> | |
| <g > | |
| <title>util_queue_thread_func (33,110,658 samples, 0.02%)</title><rect x="248.5" y="821" width="0.2" height="15.0" fill="rgb(247,195,46)" rx="2" ry="2" /> | |
| <text x="251.52" y="831.5" ></text> | |
| </g> | |
| <g > | |
| <title>cso_set_vertex_elements (35,536,356 samples, 0.02%)</title><rect x="1088.1" y="629" width="0.2" height="15.0" fill="rgb(238,152,36)" rx="2" ry="2" /> | |
| <text x="1091.11" y="639.5" ></text> | |
| </g> | |
| <g > | |
| <title>glthread_unmarshal_batch (7,667,896,655 samples, 4.25%)</title><rect x="980.8" y="693" width="50.1" height="15.0" fill="rgb(247,195,46)" rx="2" ry="2" /> | |
| <text x="983.82" y="703.5" >glthr..</text> | |
| </g> | |
| <g > | |
| <title>__aarch64_cas4_sync (68,477,359 samples, 0.04%)</title><rect x="872.5" y="533" width="0.4" height="15.0" fill="rgb(253,222,53)" rx="2" ry="2" /> | |
| <text x="875.48" y="543.5" ></text> | |
| </g> | |
| <g > | |
| <title>do_el0_svc (104,278,313 samples, 0.06%)</title><rect x="1173.7" y="629" width="0.7" height="15.0" fill="rgb(218,60,14)" rx="2" ry="2" /> | |
| <text x="1176.72" y="639.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_use_shader_program (289,344,529 samples, 0.16%)</title><rect x="1025.5" y="645" width="1.9" height="15.0" fill="rgb(245,188,44)" rx="2" ry="2" /> | |
| <text x="1028.48" y="655.5" ></text> | |
| </g> | |
| <g > | |
| <title>[redeclipse] (4,429,176,007 samples, 2.45%)</title><rect x="769.3" y="421" width="29.0" height="15.0" fill="rgb(253,222,53)" rx="2" ry="2" /> | |
| <text x="772.32" y="431.5" >[r..</text> | |
| </g> | |
| <g > | |
| <title>_mesa_uniform (21,888,410 samples, 0.01%)</title><rect x="1019.6" y="661" width="0.2" height="15.0" fill="rgb(248,201,48)" rx="2" ry="2" /> | |
| <text x="1022.62" y="671.5" ></text> | |
| </g> | |
| <g > | |
| <title>st_upload_constants (211,068,433 samples, 0.12%)</title><rect x="1085.6" y="645" width="1.4" height="15.0" fill="rgb(238,154,36)" rx="2" ry="2" /> | |
| <text x="1088.62" y="655.5" ></text> | |
| </g> | |
| <g > | |
| <title>get_user_pages_fast (22,309,306 samples, 0.01%)</title><rect x="980.2" y="453" width="0.1" height="15.0" fill="rgb(229,111,26)" rx="2" ry="2" /> | |
| <text x="983.17" y="463.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_MultiDrawArrays (41,132,652 samples, 0.02%)</title><rect x="945.5" y="645" width="0.3" height="15.0" fill="rgb(216,53,12)" rx="2" ry="2" /> | |
| <text x="948.52" y="655.5" ></text> | |
| </g> | |
| <g > | |
| <title>cso_set_rasterizer (18,636,546 samples, 0.01%)</title><rect x="512.1" y="693" width="0.2" height="15.0" fill="rgb(242,172,41)" rx="2" ry="2" /> | |
| <text x="515.13" y="703.5" ></text> | |
| </g> | |
| <g > | |
| <title>el0_svc (16,941,715 samples, 0.01%)</title><rect x="977.9" y="597" width="0.1" height="15.0" fill="rgb(244,183,43)" rx="2" ry="2" /> | |
| <text x="980.90" y="607.5" ></text> | |
| </g> | |
| <g > | |
| <title>tc_set_sampler_views (54,543,229 samples, 0.03%)</title><rect x="998.4" y="597" width="0.4" height="15.0" fill="rgb(250,209,50)" rx="2" ry="2" /> | |
| <text x="1001.43" y="607.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_test_framebuffer_completeness (30,053,481 samples, 0.02%)</title><rect x="379.5" y="693" width="0.2" height="15.0" fill="rgb(229,113,27)" rx="2" ry="2" /> | |
| <text x="382.55" y="703.5" ></text> | |
| </g> | |
| <g > | |
| <title>update_shader_samplers (17,317,635 samples, 0.01%)</title><rect x="994.1" y="613" width="0.1" height="15.0" fill="rgb(229,113,27)" rx="2" ry="2" /> | |
| <text x="997.09" y="623.5" ></text> | |
| </g> | |
| <g > | |
| <title>tc_add_draw_single_call (22,547,513 samples, 0.01%)</title><rect x="869.9" y="581" width="0.2" height="15.0" fill="rgb(214,45,10)" rx="2" ry="2" /> | |
| <text x="872.95" y="591.5" ></text> | |
| </g> | |
| <g > | |
| <title>pthread_cond_signal@@GLIBC_2.17 (67,319,618 samples, 0.04%)</title><rect x="455.8" y="677" width="0.5" height="15.0" fill="rgb(232,126,30)" rx="2" ry="2" /> | |
| <text x="458.84" y="687.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_glthread_flush_batch (26,883,414 samples, 0.01%)</title><rect x="1172.8" y="757" width="0.2" height="15.0" fill="rgb(239,158,38)" rx="2" ry="2" /> | |
| <text x="1175.79" y="767.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_unmarshal_UseProgram (327,875,953 samples, 0.18%)</title><rect x="949.1" y="661" width="2.2" height="15.0" fill="rgb(226,99,23)" rx="2" ry="2" /> | |
| <text x="952.13" y="671.5" ></text> | |
| </g> | |
| <g > | |
| <title>__pthread_mutex_unlock_full (29,550,363 samples, 0.02%)</title><rect x="17.1" y="757" width="0.2" height="15.0" fill="rgb(230,115,27)" rx="2" ry="2" /> | |
| <text x="20.14" y="767.5" ></text> | |
| </g> | |
| <g > | |
| <title>__aarch64_ldadd4_acq_rel (147,676,153 samples, 0.08%)</title><rect x="892.0" y="549" width="1.0" height="15.0" fill="rgb(228,108,25)" rx="2" ry="2" /> | |
| <text x="895.02" y="559.5" ></text> | |
| </g> | |
| <g > | |
| <title>__aarch64_cas4_sync (17,242,479 samples, 0.01%)</title><rect x="880.6" y="597" width="0.1" height="15.0" fill="rgb(253,222,53)" rx="2" ry="2" /> | |
| <text x="883.62" y="607.5" ></text> | |
| </g> | |
| <g > | |
| <title>ac_get_cb_number_type (17,387,624 samples, 0.01%)</title><rect x="198.7" y="773" width="0.1" height="15.0" fill="rgb(253,222,53)" rx="2" ry="2" /> | |
| <text x="201.73" y="783.5" ></text> | |
| </g> | |
| <g > | |
| <title>st_get_texture_sampler_view_from_stobj (2,322,937,016 samples, 1.29%)</title><rect x="429.0" y="709" width="15.1" height="15.0" fill="rgb(211,32,7)" rx="2" ry="2" /> | |
| <text x="431.96" y="719.5" ></text> | |
| </g> | |
| <g > | |
| <title>get_futex_key (92,662,844 samples, 0.05%)</title><rect x="342.6" y="645" width="0.6" height="15.0" fill="rgb(252,216,51)" rx="2" ry="2" /> | |
| <text x="345.62" y="655.5" ></text> | |
| </g> | |
| <g > | |
| <title>tc_buffer_do_flush_region (26,327,278 samples, 0.01%)</title><rect x="1023.8" y="613" width="0.2" height="15.0" fill="rgb(224,87,20)" rx="2" ry="2" /> | |
| <text x="1026.82" y="623.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_unmarshal_UnmapBuffer (16,677,643 samples, 0.01%)</title><rect x="814.5" y="597" width="0.1" height="15.0" fill="rgb(221,73,17)" rx="2" ry="2" /> | |
| <text x="817.47" y="607.5" ></text> | |
| </g> | |
| <g > | |
| <title>memcmp (32,163,113 samples, 0.02%)</title><rect x="464.6" y="757" width="0.2" height="15.0" fill="rgb(235,141,33)" rx="2" ry="2" /> | |
| <text x="467.58" y="767.5" ></text> | |
| </g> | |
| <g > | |
| <title>__GI___strchrnul (17,623,298 samples, 0.01%)</title><rect x="513.3" y="629" width="0.1" height="15.0" fill="rgb(224,89,21)" rx="2" ry="2" /> | |
| <text x="516.27" y="639.5" ></text> | |
| </g> | |
| <g > | |
| <title>st_invalidate_state (16,555,695 samples, 0.01%)</title><rect x="1004.5" y="613" width="0.1" height="15.0" fill="rgb(245,184,44)" rx="2" ry="2" /> | |
| <text x="1007.51" y="623.5" ></text> | |
| </g> | |
| <g > | |
| <title>st_prepare_draw (66,096,049 samples, 0.04%)</title><rect x="850.2" y="581" width="0.4" height="15.0" fill="rgb(214,45,10)" rx="2" ry="2" /> | |
| <text x="853.15" y="591.5" ></text> | |
| </g> | |
| <g > | |
| <title>ovl_getattr (40,710,111 samples, 0.02%)</title><rect x="1186.4" y="533" width="0.2" height="15.0" fill="rgb(243,179,42)" rx="2" ry="2" /> | |
| <text x="1189.38" y="543.5" ></text> | |
| </g> | |
| <g > | |
| <title>dri3_flush_present_events (41,656,171 samples, 0.02%)</title><rect x="1105.9" y="533" width="0.2" height="15.0" fill="rgb(217,57,13)" rx="2" ry="2" /> | |
| <text x="1108.85" y="543.5" ></text> | |
| </g> | |
| <g > | |
| <title>cso_set_samplers (22,758,856 samples, 0.01%)</title><rect x="995.9" y="613" width="0.2" height="15.0" fill="rgb(215,48,11)" rx="2" ry="2" /> | |
| <text x="998.93" y="623.5" ></text> | |
| </g> | |
| <g > | |
| <title>el0_svc (69,081,120 samples, 0.04%)</title><rect x="901.7" y="469" width="0.5" height="15.0" fill="rgb(244,183,43)" rx="2" ry="2" /> | |
| <text x="904.72" y="479.5" ></text> | |
| </g> | |
| <g > | |
| <title>[redeclipse] (53,112,593 samples, 0.03%)</title><rect x="965.5" y="709" width="0.3" height="15.0" fill="rgb(253,222,53)" rx="2" ry="2" /> | |
| <text x="968.47" y="719.5" ></text> | |
| </g> | |
| <g > | |
| <title>skb_release_head_state (23,694,378 samples, 0.01%)</title><rect x="1107.6" y="245" width="0.2" height="15.0" fill="rgb(226,100,24)" rx="2" ry="2" /> | |
| <text x="1110.63" y="255.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_update_array_format (34,486,887 samples, 0.02%)</title><rect x="493.6" y="741" width="0.2" height="15.0" fill="rgb(228,109,26)" rx="2" ry="2" /> | |
| <text x="496.60" y="751.5" ></text> | |
| </g> | |
| <g > | |
| <title>_vbo_current_attrib (28,644,070 samples, 0.02%)</title><rect x="999.3" y="613" width="0.2" height="15.0" fill="rgb(206,6,1)" rx="2" ry="2" /> | |
| <text x="1002.32" y="623.5" ></text> | |
| </g> | |
| <g > | |
| <title>memcmp (22,689,205 samples, 0.01%)</title><rect x="461.4" y="757" width="0.2" height="15.0" fill="rgb(235,141,33)" rx="2" ry="2" /> | |
| <text x="464.42" y="767.5" ></text> | |
| </g> | |
| <g > | |
| <title>si_query_hw_end (34,815,531 samples, 0.02%)</title><rect x="183.5" y="789" width="0.2" height="15.0" fill="rgb(245,185,44)" rx="2" ry="2" /> | |
| <text x="186.47" y="799.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_reference_program_ (20,779,375 samples, 0.01%)</title><rect x="394.2" y="709" width="0.2" height="15.0" fill="rgb(231,122,29)" rx="2" ry="2" /> | |
| <text x="397.25" y="719.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_glthread_finish (48,949,113 samples, 0.03%)</title><rect x="784.4" y="133" width="0.3" height="15.0" fill="rgb(209,22,5)" rx="2" ry="2" /> | |
| <text x="787.39" y="143.5" ></text> | |
| </g> | |
| <g > | |
| <title>st_get_sampler_views (40,884,780 samples, 0.02%)</title><rect x="811.2" y="549" width="0.3" height="15.0" fill="rgb(224,91,21)" rx="2" ry="2" /> | |
| <text x="814.19" y="559.5" ></text> | |
| </g> | |
| <g > | |
| <title>si_add_all_descriptors_to_bo_list (18,146,729 samples, 0.01%)</title><rect x="192.3" y="741" width="0.1" height="15.0" fill="rgb(220,70,16)" rx="2" ry="2" /> | |
| <text x="195.28" y="751.5" ></text> | |
| </g> | |
| <g > | |
| <title>si_ps_key_update_framebuffer_rasterizer_sample_shading (65,660,243 samples, 0.04%)</title><rect x="53.6" y="773" width="0.4" height="15.0" fill="rgb(238,155,37)" rx="2" ry="2" /> | |
| <text x="56.59" y="783.5" ></text> | |
| </g> | |
| <g > | |
| <title>si_set_sampler_views (480,441,997 samples, 0.27%)</title><rect x="892.0" y="565" width="3.2" height="15.0" fill="rgb(218,61,14)" rx="2" ry="2" /> | |
| <text x="895.02" y="575.5" ></text> | |
| </g> | |
| <g > | |
| <title>el0t_64_sync_handler (33,395,420 samples, 0.02%)</title><rect x="447.9" y="597" width="0.2" height="15.0" fill="rgb(211,32,7)" rx="2" ry="2" /> | |
| <text x="450.87" y="607.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_unmarshal_BindTexture (18,831,883 samples, 0.01%)</title><rect x="985.7" y="661" width="0.1" height="15.0" fill="rgb(248,199,47)" rx="2" ry="2" /> | |
| <text x="988.70" y="671.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_wait_query (68,612,385 samples, 0.04%)</title><rect x="1034.0" y="709" width="0.5" height="15.0" fill="rgb(217,55,13)" rx="2" ry="2" /> | |
| <text x="1037.04" y="719.5" ></text> | |
| </g> | |
| <g > | |
| <title>__aarch64_ldadd4_acq_rel (31,132,957 samples, 0.02%)</title><rect x="1160.4" y="645" width="0.2" height="15.0" fill="rgb(228,108,25)" rx="2" ry="2" /> | |
| <text x="1163.38" y="655.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_update_valid_to_render_state (78,658,591 samples, 0.04%)</title><rect x="487.2" y="725" width="0.5" height="15.0" fill="rgb(219,66,15)" rx="2" ry="2" /> | |
| <text x="490.22" y="735.5" ></text> | |
| </g> | |
| <g > | |
| <title>dri_st_framebuffer_validate (63,697,745 samples, 0.04%)</title><rect x="374.5" y="725" width="0.4" height="15.0" fill="rgb(206,5,1)" rx="2" ry="2" /> | |
| <text x="377.46" y="735.5" ></text> | |
| </g> | |
| <g > | |
| <title>wake_up_q (137,632,793 samples, 0.08%)</title><rect x="343.4" y="645" width="0.9" height="15.0" fill="rgb(237,151,36)" rx="2" ry="2" /> | |
| <text x="346.41" y="655.5" ></text> | |
| </g> | |
| <g > | |
| <title>memcpy@plt (20,168,391 samples, 0.01%)</title><rect x="1072.8" y="741" width="0.2" height="15.0" fill="rgb(224,88,21)" rx="2" ry="2" /> | |
| <text x="1075.82" y="751.5" ></text> | |
| </g> | |
| <g > | |
| <title>__printf_fp_buffer_1.constprop.0.isra.0 (111,339,819 samples, 0.06%)</title><rect x="513.8" y="597" width="0.8" height="15.0" fill="rgb(240,164,39)" rx="2" ry="2" /> | |
| <text x="516.83" y="607.5" ></text> | |
| </g> | |
| <g > | |
| <title>amdgpu_get_new_ib (27,592,086 samples, 0.02%)</title><rect x="538.5" y="677" width="0.2" height="15.0" fill="rgb(240,164,39)" rx="2" ry="2" /> | |
| <text x="541.52" y="687.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_unmarshal_BindBuffer (64,276,897 samples, 0.04%)</title><rect x="1077.1" y="709" width="0.4" height="15.0" fill="rgb(223,86,20)" rx="2" ry="2" /> | |
| <text x="1080.08" y="719.5" ></text> | |
| </g> | |
| <g > | |
| <title>drm_exec_cleanup (21,449,492 samples, 0.01%)</title><rect x="279.5" y="565" width="0.1" height="15.0" fill="rgb(223,86,20)" rx="2" ry="2" /> | |
| <text x="282.46" y="575.5" ></text> | |
| </g> | |
| <g > | |
| <title>simple_copy_to_iter (19,542,270 samples, 0.01%)</title><rect x="1107.8" y="213" width="0.1" height="15.0" fill="rgb(228,110,26)" rx="2" ry="2" /> | |
| <text x="1110.80" y="223.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_uniform (16,178,019 samples, 0.01%)</title><rect x="946.9" y="613" width="0.1" height="15.0" fill="rgb(248,201,48)" rx="2" ry="2" /> | |
| <text x="949.94" y="623.5" ></text> | |
| </g> | |
| <g > | |
| <title>si_bind_ps_shader (19,460,319 samples, 0.01%)</title><rect x="518.2" y="661" width="0.1" height="15.0" fill="rgb(240,164,39)" rx="2" ry="2" /> | |
| <text x="521.18" y="671.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_DrawElementsBaseVertex (66,204,800 samples, 0.04%)</title><rect x="826.2" y="613" width="0.4" height="15.0" fill="rgb(214,41,10)" rx="2" ry="2" /> | |
| <text x="829.21" y="623.5" ></text> | |
| </g> | |
| <g > | |
| <title>st_make_bound_samplers_resident (25,364,783 samples, 0.01%)</title><rect x="1011.2" y="597" width="0.1" height="15.0" fill="rgb(234,136,32)" rx="2" ry="2" /> | |
| <text x="1014.18" y="607.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_marshal_MapBufferRange (17,222,442 samples, 0.01%)</title><rect x="798.8" y="437" width="0.1" height="15.0" fill="rgb(219,65,15)" rx="2" ry="2" /> | |
| <text x="801.82" y="447.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_uniform (15,604,620 samples, 0.01%)</title><rect x="1065.1" y="661" width="0.1" height="15.0" fill="rgb(248,201,48)" rx="2" ry="2" /> | |
| <text x="1068.08" y="671.5" ></text> | |
| </g> | |
| <g > | |
| <title>__memcpy_generic (141,090,398 samples, 0.08%)</title><rect x="1085.6" y="629" width="0.9" height="15.0" fill="rgb(231,124,29)" rx="2" ry="2" /> | |
| <text x="1088.62" y="639.5" ></text> | |
| </g> | |
| <g > | |
| <title>si_buffer_transfer_map (376,263,551 samples, 0.21%)</title><rect x="958.8" y="661" width="2.5" height="15.0" fill="rgb(237,151,36)" rx="2" ry="2" /> | |
| <text x="961.81" y="671.5" ></text> | |
| </g> | |
| <g > | |
| <title>el0_svc (29,053,370 samples, 0.02%)</title><rect x="420.2" y="565" width="0.2" height="15.0" fill="rgb(244,183,43)" rx="2" ry="2" /> | |
| <text x="423.20" y="575.5" ></text> | |
| </g> | |
| <g > | |
| <title>cso_set_depth_stencil_alpha (27,744,602 samples, 0.02%)</title><rect x="1007.1" y="581" width="0.2" height="15.0" fill="rgb(254,227,54)" rx="2" ry="2" /> | |
| <text x="1010.09" y="591.5" ></text> | |
| </g> | |
| <g > | |
| <title>copy_msghdr_from_user (17,266,340 samples, 0.01%)</title><rect x="508.9" y="549" width="0.1" height="15.0" fill="rgb(240,161,38)" rx="2" ry="2" /> | |
| <text x="511.93" y="559.5" ></text> | |
| </g> | |
| <g > | |
| <title>__condvar_dec_grefs (43,195,867 samples, 0.02%)</title><rect x="34.1" y="789" width="0.3" height="15.0" fill="rgb(226,98,23)" rx="2" ry="2" /> | |
| <text x="37.07" y="799.5" ></text> | |
| </g> | |
| <g > | |
| <title>el0t_64_sync_handler (153,405,578 samples, 0.08%)</title><rect x="503.3" y="629" width="1.0" height="15.0" fill="rgb(211,32,7)" rx="2" ry="2" /> | |
| <text x="506.31" y="639.5" ></text> | |
| </g> | |
| <g > | |
| <title>validate_uniform_parameters (19,950,165 samples, 0.01%)</title><rect x="1064.9" y="645" width="0.1" height="15.0" fill="rgb(234,137,32)" rx="2" ry="2" /> | |
| <text x="1067.89" y="655.5" ></text> | |
| </g> | |
| <g > | |
| <title>xcb_poll_for_special_event (35,765,502 samples, 0.02%)</title><rect x="1106.1" y="533" width="0.3" height="15.0" fill="rgb(224,90,21)" rx="2" ry="2" /> | |
| <text x="1109.14" y="543.5" ></text> | |
| </g> | |
| <g > | |
| <title>futex_wait (146,361,052 samples, 0.08%)</title><rect x="1095.2" y="709" width="1.0" height="15.0" fill="rgb(235,138,33)" rx="2" ry="2" /> | |
| <text x="1098.25" y="719.5" ></text> | |
| </g> | |
| <g > | |
| <title>si_ps_key_update_framebuffer_blend_dsa_rasterizer (28,365,480 samples, 0.02%)</title><rect x="50.1" y="757" width="0.2" height="15.0" fill="rgb(222,80,19)" rx="2" ry="2" /> | |
| <text x="53.08" y="767.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_uniform (45,071,835 samples, 0.02%)</title><rect x="1138.1" y="677" width="0.3" height="15.0" fill="rgb(248,201,48)" rx="2" ry="2" /> | |
| <text x="1141.14" y="687.5" ></text> | |
| </g> | |
| <g > | |
| <title>__futex_wait (202,108,260 samples, 0.11%)</title><rect x="29.2" y="613" width="1.3" height="15.0" fill="rgb(207,12,3)" rx="2" ry="2" /> | |
| <text x="32.20" y="623.5" ></text> | |
| </g> | |
| <g > | |
| <title>si_buffer_do_flush_region (24,747,868 samples, 0.01%)</title><rect x="519.6" y="645" width="0.2" height="15.0" fill="rgb(241,169,40)" rx="2" ry="2" /> | |
| <text x="522.64" y="655.5" ></text> | |
| </g> | |
| <g > | |
| <title>do_futex (136,025,576 samples, 0.08%)</title><rect x="338.3" y="645" width="0.9" height="15.0" fill="rgb(245,184,44)" rx="2" ry="2" /> | |
| <text x="341.28" y="655.5" ></text> | |
| </g> | |
| <g > | |
| <title>el0t_64_sync_handler (23,947,234 samples, 0.01%)</title><rect x="861.2" y="597" width="0.1" height="15.0" fill="rgb(211,32,7)" rx="2" ry="2" /> | |
| <text x="864.16" y="607.5" ></text> | |
| </g> | |
| <g > | |
| <title>st_get_sampler_views (40,682,515 samples, 0.02%)</title><rect x="1128.1" y="613" width="0.2" height="15.0" fill="rgb(224,91,21)" rx="2" ry="2" /> | |
| <text x="1131.05" y="623.5" ></text> | |
| </g> | |
| <g > | |
| <title>tc_bind_sampler_states (22,946,827 samples, 0.01%)</title><rect x="1126.5" y="613" width="0.2" height="15.0" fill="rgb(218,61,14)" rx="2" ry="2" /> | |
| <text x="1129.55" y="623.5" ></text> | |
| </g> | |
| <g > | |
| <title>tc_buffer_unmap (19,174,974 samples, 0.01%)</title><rect x="1066.0" y="645" width="0.1" height="15.0" fill="rgb(231,119,28)" rx="2" ry="2" /> | |
| <text x="1068.99" y="655.5" ></text> | |
| </g> | |
| <g > | |
| <title>do_el0_svc (26,261,261 samples, 0.01%)</title><rect x="420.2" y="549" width="0.2" height="15.0" fill="rgb(218,60,14)" rx="2" ry="2" /> | |
| <text x="423.22" y="559.5" ></text> | |
| </g> | |
| <g > | |
| <title>si_invalidate_inlinable_uniforms (27,182,935 samples, 0.02%)</title><rect x="61.9" y="757" width="0.2" height="15.0" fill="rgb(233,132,31)" rx="2" ry="2" /> | |
| <text x="64.92" y="767.5" ></text> | |
| </g> | |
| <g > | |
| <title>__aarch64_ldadd4_acq_rel (79,039,399 samples, 0.04%)</title><rect x="1071.4" y="661" width="0.5" height="15.0" fill="rgb(228,108,25)" rx="2" ry="2" /> | |
| <text x="1074.36" y="671.5" ></text> | |
| </g> | |
| <g > | |
| <title>cso_set_vertex_elements (41,828,528 samples, 0.02%)</title><rect x="942.6" y="565" width="0.3" height="15.0" fill="rgb(238,152,36)" rx="2" ry="2" /> | |
| <text x="945.65" y="575.5" ></text> | |
| </g> | |
| <g > | |
| <title>start_thread (1,943,799,868 samples, 1.08%)</title><rect x="15.1" y="869" width="12.7" height="15.0" fill="rgb(212,34,8)" rx="2" ry="2" /> | |
| <text x="18.13" y="879.5" ></text> | |
| </g> | |
| <g > | |
| <title>pthread_cond_signal@@GLIBC_2.17 (21,753,763 samples, 0.01%)</title><rect x="1172.8" y="709" width="0.2" height="15.0" fill="rgb(232,126,30)" rx="2" ry="2" /> | |
| <text x="1175.82" y="719.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_unmarshal_BufferData (89,957,239 samples, 0.05%)</title><rect x="927.0" y="661" width="0.6" height="15.0" fill="rgb(243,175,41)" rx="2" ry="2" /> | |
| <text x="930.03" y="671.5" ></text> | |
| </g> | |
| <g > | |
| <title>cfree@GLIBC_2.17 (17,664,787 samples, 0.01%)</title><rect x="527.9" y="645" width="0.1" height="15.0" fill="rgb(224,88,21)" rx="2" ry="2" /> | |
| <text x="530.88" y="655.5" ></text> | |
| </g> | |
| <g > | |
| <title>__rseq_handle_notify_resume (39,995,232 samples, 0.02%)</title><rect x="14.1" y="661" width="0.3" height="15.0" fill="rgb(238,153,36)" rx="2" ry="2" /> | |
| <text x="17.11" y="671.5" ></text> | |
| </g> | |
| <g > | |
| <title>remove_attachment (33,151,332 samples, 0.02%)</title><rect x="1137.0" y="661" width="0.3" height="15.0" fill="rgb(245,185,44)" rx="2" ry="2" /> | |
| <text x="1140.04" y="671.5" ></text> | |
| </g> | |
| <g > | |
| <title>syscall_trace_exit (18,020,978 samples, 0.01%)</title><rect x="253.6" y="709" width="0.1" height="15.0" fill="rgb(247,196,46)" rx="2" ry="2" /> | |
| <text x="256.62" y="719.5" ></text> | |
| </g> | |
| <g > | |
| <title>mdct_backward (18,694,003 samples, 0.01%)</title><rect x="22.6" y="677" width="0.1" height="15.0" fill="rgb(242,173,41)" rx="2" ry="2" /> | |
| <text x="25.56" y="687.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_use_program (56,754,510 samples, 0.03%)</title><rect x="491.1" y="741" width="0.3" height="15.0" fill="rgb(235,141,33)" rx="2" ry="2" /> | |
| <text x="494.07" y="751.5" ></text> | |
| </g> | |
| <g > | |
| <title>st_update_framebuffer_state (66,189,976 samples, 0.04%)</title><rect x="1081.8" y="661" width="0.4" height="15.0" fill="rgb(231,123,29)" rx="2" ry="2" /> | |
| <text x="1084.77" y="671.5" ></text> | |
| </g> | |
| <g > | |
| <title>__GI___lll_lock_wake (90,606,772 samples, 0.05%)</title><rect x="253.9" y="789" width="0.6" height="15.0" fill="rgb(210,23,5)" rx="2" ry="2" /> | |
| <text x="256.91" y="799.5" ></text> | |
| </g> | |
| <g > | |
| <title>__aarch64_cas4_sync (26,164,192 samples, 0.01%)</title><rect x="823.2" y="581" width="0.1" height="15.0" fill="rgb(253,222,53)" rx="2" ry="2" /> | |
| <text x="826.16" y="591.5" ></text> | |
| </g> | |
| <g > | |
| <title>st_get_texture_sampler_view_from_stobj (26,044,544 samples, 0.01%)</title><rect x="811.2" y="533" width="0.2" height="15.0" fill="rgb(211,32,7)" rx="2" ry="2" /> | |
| <text x="814.19" y="543.5" ></text> | |
| </g> | |
| <g > | |
| <title>skb_copy_datagram_from_iter (41,478,367 samples, 0.02%)</title><rect x="541.5" y="453" width="0.3" height="15.0" fill="rgb(215,49,11)" rx="2" ry="2" /> | |
| <text x="544.48" y="463.5" ></text> | |
| </g> | |
| <g > | |
| <title>copy_iovec_from_user (35,406,338 samples, 0.02%)</title><rect x="503.8" y="469" width="0.3" height="15.0" fill="rgb(207,9,2)" rx="2" ry="2" /> | |
| <text x="506.82" y="479.5" ></text> | |
| </g> | |
| <g > | |
| <title>invoke_syscall (47,021,910 samples, 0.03%)</title><rect x="972.7" y="565" width="0.3" height="15.0" fill="rgb(209,18,4)" rx="2" ry="2" /> | |
| <text x="975.65" y="575.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_Uniform4f (22,951,305 samples, 0.01%)</title><rect x="946.9" y="645" width="0.2" height="15.0" fill="rgb(210,26,6)" rx="2" ry="2" /> | |
| <text x="949.93" y="655.5" ></text> | |
| </g> | |
| <g > | |
| <title>strcspn (29,929,158 samples, 0.02%)</title><rect x="786.4" y="165" width="0.2" height="15.0" fill="rgb(218,61,14)" rx="2" ry="2" /> | |
| <text x="789.37" y="175.5" ></text> | |
| </g> | |
| <g > | |
| <title>tc_call_clear (944,305,131 samples, 0.52%)</title><rect x="79.7" y="805" width="6.2" height="15.0" fill="rgb(233,129,30)" rx="2" ry="2" /> | |
| <text x="82.70" y="815.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_bufferobj_map_range (24,230,767 samples, 0.01%)</title><rect x="1071.1" y="709" width="0.2" height="15.0" fill="rgb(206,7,1)" rx="2" ry="2" /> | |
| <text x="1074.13" y="719.5" ></text> | |
| </g> | |
| <g > | |
| <title>__vsnprintf_internal (17,282,558 samples, 0.01%)</title><rect x="970.7" y="693" width="0.1" height="15.0" fill="rgb(237,150,35)" rx="2" ry="2" /> | |
| <text x="973.73" y="703.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_unmarshal_Uniform4fv (124,082,052 samples, 0.07%)</title><rect x="499.3" y="789" width="0.8" height="15.0" fill="rgb(212,33,8)" rx="2" ry="2" /> | |
| <text x="502.31" y="799.5" ></text> | |
| </g> | |
| <g > | |
| <title>do_el0_svc (168,697,761 samples, 0.09%)</title><rect x="252.6" y="741" width="1.1" height="15.0" fill="rgb(218,60,14)" rx="2" ry="2" /> | |
| <text x="255.65" y="751.5" ></text> | |
| </g> | |
| <g > | |
| <title>pthread_cond_signal@@GLIBC_2.17 (20,121,086 samples, 0.01%)</title><rect x="977.9" y="645" width="0.1" height="15.0" fill="rgb(232,126,30)" rx="2" ry="2" /> | |
| <text x="980.88" y="655.5" ></text> | |
| </g> | |
| <g > | |
| <title>si_bind_sampler_states (299,497,931 samples, 0.17%)</title><rect x="58.1" y="789" width="1.9" height="15.0" fill="rgb(236,143,34)" rx="2" ry="2" /> | |
| <text x="61.09" y="799.5" ></text> | |
| </g> | |
| <g > | |
| <title>[libxcb.so.1.1.0] (35,765,502 samples, 0.02%)</title><rect x="1106.1" y="517" width="0.3" height="15.0" fill="rgb(226,98,23)" rx="2" ry="2" /> | |
| <text x="1109.14" y="527.5" ></text> | |
| </g> | |
| <g > | |
| <title>st_update_rasterizer (47,070,462 samples, 0.03%)</title><rect x="936.9" y="581" width="0.3" height="15.0" fill="rgb(240,164,39)" rx="2" ry="2" /> | |
| <text x="939.87" y="591.5" ></text> | |
| </g> | |
| <g > | |
| <title>st_prepare_draw (17,069,600 samples, 0.01%)</title><rect x="993.2" y="629" width="0.1" height="15.0" fill="rgb(214,45,10)" rx="2" ry="2" /> | |
| <text x="996.21" y="639.5" ></text> | |
| </g> | |
| <g > | |
| <title>el0t_64_sync_handler (84,013,753 samples, 0.05%)</title><rect x="331.7" y="725" width="0.5" height="15.0" fill="rgb(211,32,7)" rx="2" ry="2" /> | |
| <text x="334.65" y="735.5" ></text> | |
| </g> | |
| <g > | |
| <title>amdgpu_bo_is_referenced (18,267,240 samples, 0.01%)</title><rect x="48.3" y="741" width="0.1" height="15.0" fill="rgb(242,170,40)" rx="2" ry="2" /> | |
| <text x="51.29" y="751.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_unmarshal_DrawArraysInstanced (267,138,904 samples, 0.15%)</title><rect x="1152.7" y="709" width="1.7" height="15.0" fill="rgb(209,20,4)" rx="2" ry="2" /> | |
| <text x="1155.68" y="719.5" ></text> | |
| </g> | |
| <g > | |
| <title>void st_update_array_templ< (333,089,432 samples, 0.18%)</title><rect x="875.2" y="581" width="2.2" height="15.0" fill="rgb(243,178,42)" rx="2" ry="2" /> | |
| <text x="878.20" y="591.5" ></text> | |
| </g> | |
| <g > | |
| <title>cnd_signal (20,120,129 samples, 0.01%)</title><rect x="805.9" y="581" width="0.1" height="15.0" fill="rgb(232,125,30)" rx="2" ry="2" /> | |
| <text x="808.86" y="591.5" ></text> | |
| </g> | |
| <g > | |
| <title>unmap_buffer (38,082,261 samples, 0.02%)</title><rect x="1155.2" y="693" width="0.2" height="15.0" fill="rgb(233,131,31)" rx="2" ry="2" /> | |
| <text x="1158.18" y="703.5" ></text> | |
| </g> | |
| <g > | |
| <title>__aarch64_ldadd4_acq_rel (39,384,658 samples, 0.02%)</title><rect x="1025.5" y="597" width="0.3" height="15.0" fill="rgb(228,108,25)" rx="2" ry="2" /> | |
| <text x="1028.51" y="607.5" ></text> | |
| </g> | |
| <g > | |
| <title>si_draw_rectangle (396,727,804 samples, 0.22%)</title><rect x="82.3" y="741" width="2.6" height="15.0" fill="rgb(206,8,1)" rx="2" ry="2" /> | |
| <text x="85.32" y="751.5" ></text> | |
| </g> | |
| <g > | |
| <title>st_convert_sampler (22,132,725 samples, 0.01%)</title><rect x="852.6" y="549" width="0.1" height="15.0" fill="rgb(242,172,41)" rx="2" ry="2" /> | |
| <text x="855.55" y="559.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_update_state_locked (111,765,702 samples, 0.06%)</title><rect x="1083.4" y="661" width="0.8" height="15.0" fill="rgb(214,43,10)" rx="2" ry="2" /> | |
| <text x="1086.44" y="671.5" ></text> | |
| </g> | |
| <g > | |
| <title>vbo_exec_FlushVertices (38,317,231 samples, 0.02%)</title><rect x="456.4" y="773" width="0.2" height="15.0" fill="rgb(226,100,24)" rx="2" ry="2" /> | |
| <text x="459.36" y="783.5" ></text> | |
| </g> | |
| <g > | |
| <title>__printf_buffer (28,897,094 samples, 0.02%)</title><rect x="513.4" y="629" width="0.2" height="15.0" fill="rgb(219,68,16)" rx="2" ry="2" /> | |
| <text x="516.39" y="639.5" ></text> | |
| </g> | |
| <g > | |
| <title>pa_mainloop_iterate (575,699,861 samples, 0.32%)</title><rect x="11.4" y="805" width="3.7" height="15.0" fill="rgb(216,51,12)" rx="2" ry="2" /> | |
| <text x="14.37" y="815.5" ></text> | |
| </g> | |
| <g > | |
| <title>__aarch64_ldadd4_acq_rel (161,103,849 samples, 0.09%)</title><rect x="194.4" y="773" width="1.0" height="15.0" fill="rgb(228,108,25)" rx="2" ry="2" /> | |
| <text x="197.37" y="783.5" ></text> | |
| </g> | |
| <g > | |
| <title>st_framebuffer_validate (577,096,596 samples, 0.32%)</title><rect x="1105.3" y="645" width="3.8" height="15.0" fill="rgb(230,117,28)" rx="2" ry="2" /> | |
| <text x="1108.32" y="655.5" ></text> | |
| </g> | |
| <g > | |
| <title>__atan2f (109,766,123 samples, 0.06%)</title><rect x="1049.7" y="741" width="0.8" height="15.0" fill="rgb(241,166,39)" rx="2" ry="2" /> | |
| <text x="1052.74" y="751.5" ></text> | |
| </g> | |
| <g > | |
| <title>[libGLdispatch.so.0.0.0] (73,750,584 samples, 0.04%)</title><rect x="741.5" y="677" width="0.4" height="15.0" fill="rgb(209,20,4)" rx="2" ry="2" /> | |
| <text x="744.45" y="687.5" ></text> | |
| </g> | |
| <g > | |
| <title>cso_set_samplers (615,323,807 samples, 0.34%)</title><rect x="422.4" y="709" width="4.0" height="15.0" fill="rgb(215,48,11)" rx="2" ry="2" /> | |
| <text x="425.36" y="719.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_reference_shader_program_ (79,646,933 samples, 0.04%)</title><rect x="478.2" y="757" width="0.5" height="15.0" fill="rgb(241,168,40)" rx="2" ry="2" /> | |
| <text x="481.20" y="767.5" ></text> | |
| </g> | |
| <g > | |
| <title>glActiveTexture (22,140,278 samples, 0.01%)</title><rect x="815.9" y="661" width="0.2" height="15.0" fill="rgb(234,135,32)" rx="2" ry="2" /> | |
| <text x="818.93" y="671.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_update_state_locked (81,541,722 samples, 0.05%)</title><rect x="928.3" y="613" width="0.5" height="15.0" fill="rgb(214,43,10)" rx="2" ry="2" /> | |
| <text x="931.31" y="623.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_VertexAttribPointer (26,324,918 samples, 0.01%)</title><rect x="859.6" y="629" width="0.2" height="15.0" fill="rgb(211,29,7)" rx="2" ry="2" /> | |
| <text x="862.60" y="639.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_use_shader_program (16,085,836 samples, 0.01%)</title><rect x="881.1" y="597" width="0.1" height="15.0" fill="rgb(245,188,44)" rx="2" ry="2" /> | |
| <text x="884.08" y="607.5" ></text> | |
| </g> | |
| <g > | |
| <title>si_update_last_vgt_stage_state (23,382,386 samples, 0.01%)</title><rect x="518.7" y="661" width="0.2" height="15.0" fill="rgb(219,66,15)" rx="2" ry="2" /> | |
| <text x="521.75" y="671.5" ></text> | |
| </g> | |
| <g > | |
| <title>void st_update_array_templ< (24,430,082 samples, 0.01%)</title><rect x="866.4" y="597" width="0.2" height="15.0" fill="rgb(243,178,42)" rx="2" ry="2" /> | |
| <text x="869.40" y="607.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_unmarshal_Uniform3fv (58,856,244 samples, 0.03%)</title><rect x="1020.0" y="677" width="0.4" height="15.0" fill="rgb(218,63,15)" rx="2" ry="2" /> | |
| <text x="1023.03" y="687.5" ></text> | |
| </g> | |
| <g > | |
| <title>st_update_rasterizer (16,182,755 samples, 0.01%)</title><rect x="1059.5" y="629" width="0.1" height="15.0" fill="rgb(240,164,39)" rx="2" ry="2" /> | |
| <text x="1062.47" y="639.5" ></text> | |
| </g> | |
| <g > | |
| <title>si_flush_all_queues (328,240,859 samples, 0.18%)</title><rect x="37.2" y="805" width="2.1" height="15.0" fill="rgb(212,36,8)" rx="2" ry="2" /> | |
| <text x="40.16" y="815.5" ></text> | |
| </g> | |
| <g > | |
| <title>tc_call_draw_single (507,651,637 samples, 0.28%)</title><rect x="43.3" y="789" width="3.4" height="15.0" fill="rgb(247,193,46)" rx="2" ry="2" /> | |
| <text x="46.34" y="799.5" ></text> | |
| </g> | |
| <g > | |
| <title>si_set_active_descriptors_for_shader (45,797,633 samples, 0.03%)</title><rect x="62.7" y="741" width="0.3" height="15.0" fill="rgb(217,57,13)" rx="2" ry="2" /> | |
| <text x="65.68" y="751.5" ></text> | |
| </g> | |
| <g > | |
| <title>__GI___strchrnul (27,327,993 samples, 0.02%)</title><rect x="820.0" y="629" width="0.2" height="15.0" fill="rgb(224,89,21)" rx="2" ry="2" /> | |
| <text x="823.01" y="639.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_lookup_bufferobj.part.0 (28,982,119 samples, 0.02%)</title><rect x="1098.0" y="677" width="0.2" height="15.0" fill="rgb(223,84,20)" rx="2" ry="2" /> | |
| <text x="1101.02" y="687.5" ></text> | |
| </g> | |
| <g > | |
| <title>__aarch64_ldadd4_acq_rel (124,283,995 samples, 0.07%)</title><rect x="903.8" y="613" width="0.8" height="15.0" fill="rgb(228,108,25)" rx="2" ry="2" /> | |
| <text x="906.76" y="623.5" ></text> | |
| </g> | |
| <g > | |
| <title>__aarch64_ldadd4_acq_rel (26,274,503 samples, 0.01%)</title><rect x="932.6" y="565" width="0.1" height="15.0" fill="rgb(228,108,25)" rx="2" ry="2" /> | |
| <text x="935.56" y="575.5" ></text> | |
| </g> | |
| <g > | |
| <title>si_flush_all_queues (65,201,408 samples, 0.04%)</title><rect x="517.0" y="693" width="0.4" height="15.0" fill="rgb(212,36,8)" rx="2" ry="2" /> | |
| <text x="520.00" y="703.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_Uniform3f (36,901,303 samples, 0.02%)</title><rect x="1064.6" y="677" width="0.3" height="15.0" fill="rgb(217,56,13)" rx="2" ry="2" /> | |
| <text x="1067.62" y="687.5" ></text> | |
| </g> | |
| <g > | |
| <title>__tzfile_read (862,044,008 samples, 0.48%)</title><rect x="1181.3" y="757" width="5.7" height="15.0" fill="rgb(236,143,34)" rx="2" ry="2" /> | |
| <text x="1184.33" y="767.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_update_state (50,876,163 samples, 0.03%)</title><rect x="812.2" y="581" width="0.4" height="15.0" fill="rgb(222,78,18)" rx="2" ry="2" /> | |
| <text x="815.22" y="591.5" ></text> | |
| </g> | |
| <g > | |
| <title>bind_buffer_object (55,345,066 samples, 0.03%)</title><rect x="982.7" y="661" width="0.4" height="15.0" fill="rgb(246,190,45)" rx="2" ry="2" /> | |
| <text x="985.70" y="671.5" ></text> | |
| </g> | |
| <g > | |
| <title>___slab_alloc (47,975,501 samples, 0.03%)</title><rect x="299.8" y="501" width="0.3" height="15.0" fill="rgb(230,115,27)" rx="2" ry="2" /> | |
| <text x="302.78" y="511.5" ></text> | |
| </g> | |
| <g > | |
| <title>__aarch64_cas4_sync (31,792,808 samples, 0.02%)</title><rect x="1024.7" y="629" width="0.2" height="15.0" fill="rgb(253,222,53)" rx="2" ry="2" /> | |
| <text x="1027.72" y="639.5" ></text> | |
| </g> | |
| <g > | |
| <title>si_is_format_supported (17,028,267 samples, 0.01%)</title><rect x="1002.3" y="549" width="0.1" height="15.0" fill="rgb(240,164,39)" rx="2" ry="2" /> | |
| <text x="1005.33" y="559.5" ></text> | |
| </g> | |
| <g > | |
| <title>cso_set_vertex_elements (157,256,568 samples, 0.09%)</title><rect x="451.5" y="709" width="1.1" height="15.0" fill="rgb(238,152,36)" rx="2" ry="2" /> | |
| <text x="454.55" y="719.5" ></text> | |
| </g> | |
| <g > | |
| <title>si_set_sampler_view_desc (77,679,289 samples, 0.04%)</title><rect x="894.7" y="533" width="0.5" height="15.0" fill="rgb(216,53,12)" rx="2" ry="2" /> | |
| <text x="897.65" y="543.5" ></text> | |
| </g> | |
| <g > | |
| <title>glthread_unmarshal_batch (1,326,803,398 samples, 0.73%)</title><rect x="822.6" y="645" width="8.7" height="15.0" fill="rgb(247,195,46)" rx="2" ry="2" /> | |
| <text x="825.58" y="655.5" ></text> | |
| </g> | |
| <g > | |
| <title>__libc_recvmsg (155,724,552 samples, 0.09%)</title><rect x="507.7" y="677" width="1.0" height="15.0" fill="rgb(220,72,17)" rx="2" ry="2" /> | |
| <text x="510.67" y="687.5" ></text> | |
| </g> | |
| <g > | |
| <title>si_query_hw_get_result (107,752,926 samples, 0.06%)</title><rect x="1164.9" y="677" width="0.7" height="15.0" fill="rgb(239,156,37)" rx="2" ry="2" /> | |
| <text x="1167.89" y="687.5" ></text> | |
| </g> | |
| <g > | |
| <title>st_update_single_texture (87,153,375 samples, 0.05%)</title><rect x="855.4" y="533" width="0.5" height="15.0" fill="rgb(208,15,3)" rx="2" ry="2" /> | |
| <text x="858.35" y="543.5" ></text> | |
| </g> | |
| <g > | |
| <title>si_upload_descriptors (20,837,303 samples, 0.01%)</title><rect x="81.2" y="661" width="0.1" height="15.0" fill="rgb(233,131,31)" rx="2" ry="2" /> | |
| <text x="84.18" y="671.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_lookup_or_create_texture (125,111,879 samples, 0.07%)</title><rect x="924.4" y="613" width="0.8" height="15.0" fill="rgb(235,140,33)" rx="2" ry="2" /> | |
| <text x="927.36" y="623.5" ></text> | |
| </g> | |
| <g > | |
| <title>dri3_update_drawable (46,675,238 samples, 0.03%)</title><rect x="374.5" y="661" width="0.3" height="15.0" fill="rgb(254,228,54)" rx="2" ry="2" /> | |
| <text x="377.54" y="671.5" ></text> | |
| </g> | |
| <g > | |
| <title>tc_call_draw_single (849,321,100 samples, 0.47%)</title><rect x="886.1" y="597" width="5.5" height="15.0" fill="rgb(247,193,46)" rx="2" ry="2" /> | |
| <text x="889.10" y="607.5" ></text> | |
| </g> | |
| <g > | |
| <title>tc_buffer_map (558,887,747 samples, 0.31%)</title><rect x="1036.5" y="693" width="3.6" height="15.0" fill="rgb(247,195,46)" rx="2" ry="2" /> | |
| <text x="1039.48" y="703.5" ></text> | |
| </g> | |
| <g > | |
| <title>gfx6_emit_framebuffer_state (46,077,332 samples, 0.03%)</title><rect x="129.9" y="757" width="0.3" height="15.0" fill="rgb(245,185,44)" rx="2" ry="2" /> | |
| <text x="132.89" y="767.5" ></text> | |
| </g> | |
| <g > | |
| <title>__aarch64_ldadd4_acq_rel (17,209,991 samples, 0.01%)</title><rect x="198.3" y="789" width="0.1" height="15.0" fill="rgb(228,108,25)" rx="2" ry="2" /> | |
| <text x="201.29" y="799.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_unmarshal_BindBuffer (128,721,333 samples, 0.07%)</title><rect x="1097.6" y="709" width="0.8" height="15.0" fill="rgb(223,86,20)" rx="2" ry="2" /> | |
| <text x="1100.59" y="719.5" ></text> | |
| </g> | |
| <g > | |
| <title>tc_buffer_do_flush_region (26,034,110 samples, 0.01%)</title><rect x="880.3" y="581" width="0.2" height="15.0" fill="rgb(224,87,20)" rx="2" ry="2" /> | |
| <text x="883.28" y="591.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_tex_target_to_index (29,649,852 samples, 0.02%)</title><rect x="985.5" y="629" width="0.2" height="15.0" fill="rgb(233,131,31)" rx="2" ry="2" /> | |
| <text x="988.49" y="639.5" ></text> | |
| </g> | |
| <g > | |
| <title>validate_array_and_format.isra.0 (28,104,914 samples, 0.02%)</title><rect x="1148.4" y="661" width="0.2" height="15.0" fill="rgb(211,28,6)" rx="2" ry="2" /> | |
| <text x="1151.38" y="671.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_DrawElementsBaseVertex (31,806,243 samples, 0.02%)</title><rect x="783.5" y="69" width="0.2" height="15.0" fill="rgb(214,41,10)" rx="2" ry="2" /> | |
| <text x="786.49" y="79.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_unmarshal_EndQuery (23,920,062 samples, 0.01%)</title><rect x="1136.8" y="709" width="0.2" height="15.0" fill="rgb(221,78,18)" rx="2" ry="2" /> | |
| <text x="1139.81" y="719.5" ></text> | |
| </g> | |
| <g > | |
| <title>update_program (34,489,400 samples, 0.02%)</title><rect x="992.4" y="613" width="0.2" height="15.0" fill="rgb(236,145,34)" rx="2" ry="2" /> | |
| <text x="995.42" y="623.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_DrawElementsBaseVertex (102,519,550 samples, 0.06%)</title><rect x="930.5" y="645" width="0.7" height="15.0" fill="rgb(214,41,10)" rx="2" ry="2" /> | |
| <text x="933.50" y="655.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_update_clear_state (24,544,448 samples, 0.01%)</title><rect x="373.8" y="773" width="0.1" height="15.0" fill="rgb(205,3,0)" rx="2" ry="2" /> | |
| <text x="376.76" y="783.5" ></text> | |
| </g> | |
| <g > | |
| <title>c23_timespec_get (16,175,027 samples, 0.01%)</title><rect x="332.3" y="773" width="0.1" height="15.0" fill="rgb(234,135,32)" rx="2" ry="2" /> | |
| <text x="335.32" y="783.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_lookup_or_create_texture (212,864,888 samples, 0.12%)</title><rect x="1100.9" y="661" width="1.4" height="15.0" fill="rgb(235,140,33)" rx="2" ry="2" /> | |
| <text x="1103.93" y="671.5" ></text> | |
| </g> | |
| <g > | |
| <title>copy_uniforms_to_storage (15,600,721 samples, 0.01%)</title><rect x="1019.9" y="629" width="0.1" height="15.0" fill="rgb(250,207,49)" rx="2" ry="2" /> | |
| <text x="1022.92" y="639.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_reference_texobj_ (103,993,607 samples, 0.06%)</title><rect x="846.0" y="613" width="0.7" height="15.0" fill="rgb(229,111,26)" rx="2" ry="2" /> | |
| <text x="849.00" y="623.5" ></text> | |
| </g> | |
| <g > | |
| <title>si_bind_ps_shader (18,023,876 samples, 0.01%)</title><rect x="82.2" y="741" width="0.1" height="15.0" fill="rgb(240,164,39)" rx="2" ry="2" /> | |
| <text x="85.20" y="751.5" ></text> | |
| </g> | |
| <g > | |
| <title>amdgpu_bo_map (644,934,266 samples, 0.36%)</title><rect x="1160.0" y="677" width="4.2" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" /> | |
| <text x="1162.96" y="687.5" ></text> | |
| </g> | |
| <g > | |
| <title>syscall (148,167,055 samples, 0.08%)</title><rect x="530.6" y="677" width="1.0" height="15.0" fill="rgb(234,136,32)" rx="2" ry="2" /> | |
| <text x="533.61" y="687.5" ></text> | |
| </g> | |
| <g > | |
| <title>os_wait_until_zero_abs_timeout (40,532,328 samples, 0.02%)</title><rect x="1034.2" y="613" width="0.3" height="15.0" fill="rgb(217,57,13)" rx="2" ry="2" /> | |
| <text x="1037.22" y="623.5" ></text> | |
| </g> | |
| <g > | |
| <title>do_futex (44,548,380 samples, 0.02%)</title><rect x="901.1" y="405" width="0.3" height="15.0" fill="rgb(245,184,44)" rx="2" ry="2" /> | |
| <text x="904.12" y="415.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_uniform (81,838,395 samples, 0.05%)</title><rect x="857.3" y="613" width="0.6" height="15.0" fill="rgb(248,201,48)" rx="2" ry="2" /> | |
| <text x="860.34" y="623.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_update_state (455,388,138 samples, 0.25%)</title><rect x="931.6" y="629" width="2.9" height="15.0" fill="rgb(222,78,18)" rx="2" ry="2" /> | |
| <text x="934.57" y="639.5" ></text> | |
| </g> | |
| <g > | |
| <title>tc_buffer_map (47,858,085 samples, 0.03%)</title><rect x="833.7" y="629" width="0.3" height="15.0" fill="rgb(247,195,46)" rx="2" ry="2" /> | |
| <text x="836.69" y="639.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_update_texture_state (35,483,513 samples, 0.02%)</title><rect x="1110.6" y="645" width="0.2" height="15.0" fill="rgb(237,148,35)" rx="2" ry="2" /> | |
| <text x="1113.59" y="655.5" ></text> | |
| </g> | |
| <g > | |
| <title>update_single_program_texture (22,731,836 samples, 0.01%)</title><rect x="1058.5" y="597" width="0.2" height="15.0" fill="rgb(241,165,39)" rx="2" ry="2" /> | |
| <text x="1061.53" y="607.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_unmarshal_DrawElementsPacked (22,455,257 samples, 0.01%)</title><rect x="794.4" y="261" width="0.1" height="15.0" fill="rgb(225,92,22)" rx="2" ry="2" /> | |
| <text x="797.40" y="271.5" ></text> | |
| </g> | |
| <g > | |
| <title>cap_inode_getsecurity (35,792,715 samples, 0.02%)</title><rect x="1182.4" y="405" width="0.2" height="15.0" fill="rgb(238,154,36)" rx="2" ry="2" /> | |
| <text x="1185.39" y="415.5" ></text> | |
| </g> | |
| <g > | |
| <title>el0t_64_sync_handler (16,780,893 samples, 0.01%)</title><rect x="943.3" y="469" width="0.1" height="15.0" fill="rgb(211,32,7)" rx="2" ry="2" /> | |
| <text x="946.32" y="479.5" ></text> | |
| </g> | |
| <g > | |
| <title>si_emit_gfx_resources_add_all_to_bo_list (67,889,666 samples, 0.04%)</title><rect x="141.0" y="773" width="0.4" height="15.0" fill="rgb(248,198,47)" rx="2" ry="2" /> | |
| <text x="143.95" y="783.5" ></text> | |
| </g> | |
| <g > | |
| <title>tc_batch_execute (16,061,646 samples, 0.01%)</title><rect x="248.6" y="805" width="0.1" height="15.0" fill="rgb(249,205,49)" rx="2" ry="2" /> | |
| <text x="251.63" y="815.5" ></text> | |
| </g> | |
| <g > | |
| <title>pa_mainloop_wakeup (62,579,154 samples, 0.03%)</title><rect x="15.2" y="773" width="0.4" height="15.0" fill="rgb(242,174,41)" rx="2" ry="2" /> | |
| <text x="18.15" y="783.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_use_shader_program (152,365,490 samples, 0.08%)</title><rect x="490.4" y="757" width="1.0" height="15.0" fill="rgb(245,188,44)" rx="2" ry="2" /> | |
| <text x="493.45" y="767.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_update_texture_state (125,568,271 samples, 0.07%)</title><rect x="1003.7" y="597" width="0.8" height="15.0" fill="rgb(237,148,35)" rx="2" ry="2" /> | |
| <text x="1006.69" y="607.5" ></text> | |
| </g> | |
| <g > | |
| <title>st_update_blend (15,905,764 samples, 0.01%)</title><rect x="1121.5" y="645" width="0.1" height="15.0" fill="rgb(250,209,50)" rx="2" ry="2" /> | |
| <text x="1124.50" y="655.5" ></text> | |
| </g> | |
| <g > | |
| <title>tc_set_sampler_views (20,867,236 samples, 0.01%)</title><rect x="828.4" y="549" width="0.1" height="15.0" fill="rgb(250,209,50)" rx="2" ry="2" /> | |
| <text x="831.39" y="559.5" ></text> | |
| </g> | |
| <g > | |
| <title>__aarch64_cas4_sync (59,978,658 samples, 0.03%)</title><rect x="344.8" y="805" width="0.4" height="15.0" fill="rgb(253,222,53)" rx="2" ry="2" /> | |
| <text x="347.76" y="815.5" ></text> | |
| </g> | |
| <g > | |
| <title>do_el0_svc (284,981,403 samples, 0.16%)</title><rect x="1161.2" y="517" width="1.9" height="15.0" fill="rgb(218,60,14)" rx="2" ry="2" /> | |
| <text x="1164.22" y="527.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_reference_program_ (94,286,582 samples, 0.05%)</title><rect x="489.3" y="725" width="0.6" height="15.0" fill="rgb(231,122,29)" rx="2" ry="2" /> | |
| <text x="492.31" y="735.5" ></text> | |
| </g> | |
| <g > | |
| <title>tc_buffer_unmap (50,548,896 samples, 0.03%)</title><rect x="1023.7" y="629" width="0.3" height="15.0" fill="rgb(231,119,28)" rx="2" ry="2" /> | |
| <text x="1026.66" y="639.5" ></text> | |
| </g> | |
| <g > | |
| <title>update_textures (53,046,319 samples, 0.03%)</title><rect x="1059.7" y="645" width="0.4" height="15.0" fill="rgb(232,125,29)" rx="2" ry="2" /> | |
| <text x="1062.71" y="655.5" ></text> | |
| </g> | |
| <g > | |
| <title>__arm64_sys_futex (140,114,592 samples, 0.08%)</title><rect x="252.7" y="693" width="0.9" height="15.0" fill="rgb(247,196,47)" rx="2" ry="2" /> | |
| <text x="255.68" y="703.5" ></text> | |
| </g> | |
| <g > | |
| <title>c23_timespec_get (66,847,543 samples, 0.04%)</title><rect x="1163.7" y="645" width="0.5" height="15.0" fill="rgb(234,135,32)" rx="2" ry="2" /> | |
| <text x="1166.73" y="655.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_uniform (18,494,376 samples, 0.01%)</title><rect x="878.9" y="629" width="0.1" height="15.0" fill="rgb(248,201,48)" rx="2" ry="2" /> | |
| <text x="881.85" y="639.5" ></text> | |
| </g> | |
| <g > | |
| <title>el0_svc_common.constprop.0 (40,380,146 samples, 0.02%)</title><rect x="15.2" y="645" width="0.3" height="15.0" fill="rgb(224,89,21)" rx="2" ry="2" /> | |
| <text x="18.19" y="655.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_unmarshal_DrawArraysInstanced (158,688,855 samples, 0.09%)</title><rect x="376.0" y="805" width="1.0" height="15.0" fill="rgb(209,20,4)" rx="2" ry="2" /> | |
| <text x="378.95" y="815.5" ></text> | |
| </g> | |
| <g > | |
| <title>cso_set_samplers (31,533,259 samples, 0.02%)</title><rect x="871.6" y="565" width="0.2" height="15.0" fill="rgb(215,48,11)" rx="2" ry="2" /> | |
| <text x="874.57" y="575.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_unmarshal_ActiveTexture (27,380,608 samples, 0.02%)</title><rect x="843.9" y="645" width="0.2" height="15.0" fill="rgb(207,12,3)" rx="2" ry="2" /> | |
| <text x="846.92" y="655.5" ></text> | |
| </g> | |
| <g > | |
| <title>walk_component (114,732,972 samples, 0.06%)</title><rect x="1184.5" y="517" width="0.8" height="15.0" fill="rgb(241,167,40)" rx="2" ry="2" /> | |
| <text x="1187.55" y="527.5" ></text> | |
| </g> | |
| <g > | |
| <title>__aarch64_ldadd4_acq_rel (16,374,300 samples, 0.01%)</title><rect x="1092.1" y="629" width="0.1" height="15.0" fill="rgb(228,108,25)" rx="2" ry="2" /> | |
| <text x="1095.12" y="639.5" ></text> | |
| </g> | |
| <g > | |
| <title>cso_set_vertex_elements (102,399,386 samples, 0.06%)</title><rect x="999.5" y="613" width="0.7" height="15.0" fill="rgb(238,152,36)" rx="2" ry="2" /> | |
| <text x="1002.51" y="623.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_uniform (143,933,813 samples, 0.08%)</title><rect x="460.7" y="789" width="0.9" height="15.0" fill="rgb(248,201,48)" rx="2" ry="2" /> | |
| <text x="463.68" y="799.5" ></text> | |
| </g> | |
| <g > | |
| <title>el0_svc_common.constprop.0 (232,775,187 samples, 0.13%)</title><rect x="188.5" y="613" width="1.5" height="15.0" fill="rgb(224,89,21)" rx="2" ry="2" /> | |
| <text x="191.49" y="623.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_update_state (36,481,868 samples, 0.02%)</title><rect x="376.0" y="773" width="0.2" height="15.0" fill="rgb(222,78,18)" rx="2" ry="2" /> | |
| <text x="378.97" y="783.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_uniform_matrix (151,456,032 samples, 0.08%)</title><rect x="1142.0" y="677" width="1.0" height="15.0" fill="rgb(215,47,11)" rx="2" ry="2" /> | |
| <text x="1144.97" y="687.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_lookup_or_create_texture (53,385,858 samples, 0.03%)</title><rect x="1151.9" y="677" width="0.4" height="15.0" fill="rgb(235,140,33)" rx="2" ry="2" /> | |
| <text x="1154.94" y="687.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_update_state_locked (367,880,937 samples, 0.20%)</title><rect x="990.2" y="629" width="2.4" height="15.0" fill="rgb(214,43,10)" rx="2" ry="2" /> | |
| <text x="993.24" y="639.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_marshal_MapBufferRange (42,704,225 samples, 0.02%)</title><rect x="785.8" y="165" width="0.3" height="15.0" fill="rgb(219,65,15)" rx="2" ry="2" /> | |
| <text x="788.79" y="175.5" ></text> | |
| </g> | |
| <g > | |
| <title>si_buffer_transfer_map (154,254,250 samples, 0.09%)</title><rect x="1167.8" y="709" width="1.0" height="15.0" fill="rgb(237,151,36)" rx="2" ry="2" /> | |
| <text x="1170.82" y="719.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_uniform (29,872,494 samples, 0.02%)</title><rect x="1091.0" y="677" width="0.1" height="15.0" fill="rgb(248,201,48)" rx="2" ry="2" /> | |
| <text x="1093.95" y="687.5" ></text> | |
| </g> | |
| <g > | |
| <title>__check_object_size.part.0 (24,284,601 samples, 0.01%)</title><rect x="290.3" y="533" width="0.1" height="15.0" fill="rgb(236,142,34)" rx="2" ry="2" /> | |
| <text x="293.25" y="543.5" ></text> | |
| </g> | |
| <g > | |
| <title>__GI___futex_abstimed_wait_cancelable64 (535,068,689 samples, 0.30%)</title><rect x="337.7" y="789" width="3.5" height="15.0" fill="rgb(215,48,11)" rx="2" ry="2" /> | |
| <text x="340.69" y="799.5" ></text> | |
| </g> | |
| <g > | |
| <title>[libGLdispatch.so.0.0.0] (267,329,065 samples, 0.15%)</title><rect x="581.9" y="757" width="1.7" height="15.0" fill="rgb(209,20,4)" rx="2" ry="2" /> | |
| <text x="584.88" y="767.5" ></text> | |
| </g> | |
| <g > | |
| <title>____sys_recvmsg (132,616,190 samples, 0.07%)</title><rect x="1107.1" y="325" width="0.8" height="15.0" fill="rgb(224,90,21)" rx="2" ry="2" /> | |
| <text x="1110.07" y="335.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_uniform (22,958,657 samples, 0.01%)</title><rect x="946.3" y="613" width="0.2" height="15.0" fill="rgb(248,201,48)" rx="2" ry="2" /> | |
| <text x="949.34" y="623.5" ></text> | |
| </g> | |
| <g > | |
| <title>XCheckIfEvent (330,448,649 samples, 0.18%)</title><rect x="502.8" y="773" width="2.1" height="15.0" fill="rgb(206,6,1)" rx="2" ry="2" /> | |
| <text x="505.76" y="783.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_reference_program_ (186,851,543 samples, 0.10%)</title><rect x="392.3" y="725" width="1.2" height="15.0" fill="rgb(231,122,29)" rx="2" ry="2" /> | |
| <text x="395.31" y="735.5" ></text> | |
| </g> | |
| <g > | |
| <title>__futex_wait (43,297,911 samples, 0.02%)</title><rect x="972.7" y="501" width="0.2" height="15.0" fill="rgb(207,12,3)" rx="2" ry="2" /> | |
| <text x="975.66" y="511.5" ></text> | |
| </g> | |
| <g > | |
| <title>__memcpy_generic (16,214,947 samples, 0.01%)</title><rect x="820.8" y="613" width="0.1" height="15.0" fill="rgb(231,124,29)" rx="2" ry="2" /> | |
| <text x="823.82" y="623.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_marshal_Enable (19,141,028 samples, 0.01%)</title><rect x="1094.6" y="757" width="0.1" height="15.0" fill="rgb(224,88,21)" rx="2" ry="2" /> | |
| <text x="1097.57" y="767.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_BindTexture (199,562,727 samples, 0.11%)</title><rect x="862.7" y="629" width="1.3" height="15.0" fill="rgb(234,136,32)" rx="2" ry="2" /> | |
| <text x="865.72" y="639.5" ></text> | |
| </g> | |
| <g > | |
| <title>viewport (36,955,500 samples, 0.02%)</title><rect x="494.0" y="789" width="0.3" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" /> | |
| <text x="497.04" y="799.5" ></text> | |
| </g> | |
| <g > | |
| <title>__libc_calloc (16,208,788 samples, 0.01%)</title><rect x="516.0" y="661" width="0.1" height="15.0" fill="rgb(205,4,0)" rx="2" ry="2" /> | |
| <text x="519.02" y="671.5" ></text> | |
| </g> | |
| <g > | |
| <title>__aarch64_ldadd4_acq_rel (20,129,198 samples, 0.01%)</title><rect x="371.5" y="709" width="0.1" height="15.0" fill="rgb(228,108,25)" rx="2" ry="2" /> | |
| <text x="374.46" y="719.5" ></text> | |
| </g> | |
| <g > | |
| <title>do_el0_svc (99,038,635 samples, 0.05%)</title><rect x="900.3" y="453" width="0.6" height="15.0" fill="rgb(218,60,14)" rx="2" ry="2" /> | |
| <text x="903.29" y="463.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_use_shader_program (1,189,677,540 samples, 0.66%)</title><rect x="483.7" y="773" width="7.7" height="15.0" fill="rgb(245,188,44)" rx="2" ry="2" /> | |
| <text x="486.67" y="783.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_glthread_finish (18,878,258 samples, 0.01%)</title><rect x="792.9" y="261" width="0.1" height="15.0" fill="rgb(209,22,5)" rx="2" ry="2" /> | |
| <text x="795.90" y="271.5" ></text> | |
| </g> | |
| <g > | |
| <title>glActiveTexture (25,516,402 samples, 0.01%)</title><rect x="1174.9" y="773" width="0.2" height="15.0" fill="rgb(234,135,32)" rx="2" ry="2" /> | |
| <text x="1177.89" y="783.5" ></text> | |
| </g> | |
| <g > | |
| <title>el0_svc (148,777,241 samples, 0.08%)</title><rect x="458.9" y="645" width="0.9" height="15.0" fill="rgb(244,183,43)" rx="2" ry="2" /> | |
| <text x="461.86" y="655.5" ></text> | |
| </g> | |
| <g > | |
| <title>pthread_cond_signal@@GLIBC_2.17 (67,291,788 samples, 0.04%)</title><rect x="538.9" y="629" width="0.4" height="15.0" fill="rgb(232,126,30)" rx="2" ry="2" /> | |
| <text x="541.89" y="639.5" ></text> | |
| </g> | |
| <g > | |
| <title>si_set_active_descriptors (20,703,806 samples, 0.01%)</title><rect x="62.3" y="725" width="0.1" height="15.0" fill="rgb(233,130,31)" rx="2" ry="2" /> | |
| <text x="65.27" y="735.5" ></text> | |
| </g> | |
| <g > | |
| <title>set_depth_range_no_notify (19,211,850 samples, 0.01%)</title><rect x="989.3" y="629" width="0.1" height="15.0" fill="rgb(206,5,1)" rx="2" ry="2" /> | |
| <text x="992.27" y="639.5" ></text> | |
| </g> | |
| <g > | |
| <title>void st_update_array_templ< (41,055,422 samples, 0.02%)</title><rect x="403.4" y="725" width="0.3" height="15.0" fill="rgb(243,178,42)" rx="2" ry="2" /> | |
| <text x="406.41" y="735.5" ></text> | |
| </g> | |
| <g > | |
| <title>do_el0_svc (288,664,581 samples, 0.16%)</title><rect x="540.9" y="629" width="1.9" height="15.0" fill="rgb(218,60,14)" rx="2" ry="2" /> | |
| <text x="543.90" y="639.5" ></text> | |
| </g> | |
| <g > | |
| <title>__sys_recvmsg (31,405,517 samples, 0.02%)</title><rect x="1105.9" y="341" width="0.2" height="15.0" fill="rgb(252,216,51)" rx="2" ry="2" /> | |
| <text x="1108.89" y="351.5" ></text> | |
| </g> | |
| <g > | |
| <title>clear_rseq_cs.isra.0 (26,442,740 samples, 0.01%)</title><rect x="251.4" y="693" width="0.1" height="15.0" fill="rgb(250,210,50)" rx="2" ry="2" /> | |
| <text x="254.37" y="703.5" ></text> | |
| </g> | |
| <g > | |
| <title>si_create_surface (29,474,144 samples, 0.02%)</title><rect x="1108.9" y="613" width="0.2" height="15.0" fill="rgb(245,186,44)" rx="2" ry="2" /> | |
| <text x="1111.89" y="623.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_update_array_format (26,266,802 samples, 0.01%)</title><rect x="953.5" y="597" width="0.2" height="15.0" fill="rgb(228,109,26)" rx="2" ry="2" /> | |
| <text x="956.49" y="607.5" ></text> | |
| </g> | |
| <g > | |
| <title>powf@@GLIBC_2.27 (32,051,707 samples, 0.02%)</title><rect x="1073.0" y="741" width="0.2" height="15.0" fill="rgb(226,96,23)" rx="2" ry="2" /> | |
| <text x="1075.99" y="751.5" ></text> | |
| </g> | |
| <g > | |
| <title>update_single_program_texture (28,166,932 samples, 0.02%)</title><rect x="1061.0" y="597" width="0.2" height="15.0" fill="rgb(241,165,39)" rx="2" ry="2" /> | |
| <text x="1063.97" y="607.5" ></text> | |
| </g> | |
| <g > | |
| <title>vorbis_synthesis_blockin (34,874,051 samples, 0.02%)</title><rect x="27.1" y="709" width="0.2" height="15.0" fill="rgb(225,96,23)" rx="2" ry="2" /> | |
| <text x="30.07" y="719.5" ></text> | |
| </g> | |
| <g > | |
| <title>call_rcu (19,851,460 samples, 0.01%)</title><rect x="308.5" y="453" width="0.1" height="15.0" fill="rgb(206,7,1)" rx="2" ry="2" /> | |
| <text x="311.47" y="463.5" ></text> | |
| </g> | |
| <g > | |
| <title>__aarch64_ldadd4_acq_rel (21,468,562 samples, 0.01%)</title><rect x="1025.8" y="597" width="0.1" height="15.0" fill="rgb(228,108,25)" rx="2" ry="2" /> | |
| <text x="1028.78" y="607.5" ></text> | |
| </g> | |
| <g > | |
| <title>el0_svc (40,380,146 samples, 0.02%)</title><rect x="15.2" y="677" width="0.3" height="15.0" fill="rgb(244,183,43)" rx="2" ry="2" /> | |
| <text x="18.19" y="687.5" ></text> | |
| </g> | |
| <g > | |
| <title>do_notify_resume (49,637,099 samples, 0.03%)</title><rect x="531.3" y="613" width="0.3" height="15.0" fill="rgb(233,129,30)" rx="2" ry="2" /> | |
| <text x="534.25" y="623.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_unmarshal_DrawArraysInstanced (20,310,546 samples, 0.01%)</title><rect x="509.2" y="725" width="0.2" height="15.0" fill="rgb(209,20,4)" rx="2" ry="2" /> | |
| <text x="512.24" y="735.5" ></text> | |
| </g> | |
| <g > | |
| <title>vbo_exec_copy_to_current (26,727,894 samples, 0.01%)</title><rect x="1016.8" y="613" width="0.2" height="15.0" fill="rgb(218,60,14)" rx="2" ry="2" /> | |
| <text x="1019.78" y="623.5" ></text> | |
| </g> | |
| <g > | |
| <title>tc_set_sampler_views (26,940,850 samples, 0.01%)</title><rect x="450.5" y="709" width="0.2" height="15.0" fill="rgb(250,209,50)" rx="2" ry="2" /> | |
| <text x="453.54" y="719.5" ></text> | |
| </g> | |
| <g > | |
| <title>u_upload_alloc (109,640,373 samples, 0.06%)</title><rect x="515.2" y="693" width="0.7" height="15.0" fill="rgb(235,138,33)" rx="2" ry="2" /> | |
| <text x="518.20" y="703.5" ></text> | |
| </g> | |
| <g > | |
| <title>do_sys_poll (43,455,739 samples, 0.02%)</title><rect x="542.9" y="565" width="0.3" height="15.0" fill="rgb(219,68,16)" rx="2" ry="2" /> | |
| <text x="545.94" y="575.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_unmarshal_ActiveTexture (39,389,284 samples, 0.02%)</title><rect x="1096.9" y="709" width="0.2" height="15.0" fill="rgb(207,12,3)" rx="2" ry="2" /> | |
| <text x="1099.86" y="719.5" ></text> | |
| </g> | |
| <g > | |
| <title>el0_svc_common.constprop.0 (33,627,369 samples, 0.02%)</title><rect x="1034.3" y="517" width="0.2" height="15.0" fill="rgb(224,89,21)" rx="2" ry="2" /> | |
| <text x="1037.27" y="527.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_unmarshal_VertexAttribPointer_packed (17,807,183 samples, 0.01%)</title><rect x="955.2" y="645" width="0.1" height="15.0" fill="rgb(232,124,29)" rx="2" ry="2" /> | |
| <text x="958.22" y="655.5" ></text> | |
| </g> | |
| <g > | |
| <title>__memcpy_generic (16,472,356 samples, 0.01%)</title><rect x="15.6" y="789" width="0.1" height="15.0" fill="rgb(231,124,29)" rx="2" ry="2" /> | |
| <text x="18.56" y="799.5" ></text> | |
| </g> | |
| <g > | |
| <title>impl_thrd_routine (25,194,860,000 samples, 13.95%)</title><rect x="337.4" y="853" width="164.7" height="15.0" fill="rgb(229,110,26)" rx="2" ry="2" /> | |
| <text x="340.42" y="863.5" >impl_thrd_routine</text> | |
| </g> | |
| <g > | |
| <title>void si_draw_vbo< (122,724,276 samples, 0.07%)</title><rect x="84.1" y="709" width="0.8" height="15.0" fill="rgb(226,101,24)" rx="2" ry="2" /> | |
| <text x="87.09" y="719.5" ></text> | |
| </g> | |
| <g > | |
| <title>do_futex (59,681,495 samples, 0.03%)</title><rect x="530.8" y="549" width="0.4" height="15.0" fill="rgb(245,184,44)" rx="2" ry="2" /> | |
| <text x="533.77" y="559.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_uniform (53,731,161 samples, 0.03%)</title><rect x="1065.2" y="677" width="0.4" height="15.0" fill="rgb(248,201,48)" rx="2" ry="2" /> | |
| <text x="1068.20" y="687.5" ></text> | |
| </g> | |
| <g > | |
| <title>__futex_lock_pi64 (24,040,853 samples, 0.01%)</title><rect x="14.4" y="725" width="0.2" height="15.0" fill="rgb(235,138,33)" rx="2" ry="2" /> | |
| <text x="17.44" y="735.5" ></text> | |
| </g> | |
| <g > | |
| <title>si_query_buffer_alloc (60,963,161 samples, 0.03%)</title><rect x="49.1" y="757" width="0.4" height="15.0" fill="rgb(220,73,17)" rx="2" ry="2" /> | |
| <text x="52.08" y="767.5" ></text> | |
| </g> | |
| <g > | |
| <title>xattr_getsecurity (45,446,803 samples, 0.03%)</title><rect x="1182.3" y="437" width="0.3" height="15.0" fill="rgb(209,20,4)" rx="2" ry="2" /> | |
| <text x="1185.35" y="447.5" ></text> | |
| </g> | |
| <g > | |
| <title>inode_permission.part.0 (219,149,233 samples, 0.12%)</title><rect x="1183.1" y="517" width="1.4" height="15.0" fill="rgb(218,63,15)" rx="2" ry="2" /> | |
| <text x="1186.05" y="527.5" ></text> | |
| </g> | |
| <g > | |
| <title>el0_svc_common.constprop.0 (18,346,173 samples, 0.01%)</title><rect x="10.3" y="693" width="0.1" height="15.0" fill="rgb(224,89,21)" rx="2" ry="2" /> | |
| <text x="13.32" y="703.5" ></text> | |
| </g> | |
| <g > | |
| <title>update_program (18,758,965 samples, 0.01%)</title><rect x="1084.0" y="645" width="0.2" height="15.0" fill="rgb(236,145,34)" rx="2" ry="2" /> | |
| <text x="1087.05" y="655.5" ></text> | |
| </g> | |
| <g > | |
| <title>__GI_____strtoull_l_internal (33,142,624 samples, 0.02%)</title><rect x="818.9" y="677" width="0.2" height="15.0" fill="rgb(254,226,54)" rx="2" ry="2" /> | |
| <text x="821.85" y="687.5" ></text> | |
| </g> | |
| <g > | |
| <title>si_buffer_create (98,821,990 samples, 0.05%)</title><rect x="515.2" y="677" width="0.6" height="15.0" fill="rgb(212,35,8)" rx="2" ry="2" /> | |
| <text x="518.20" y="687.5" ></text> | |
| </g> | |
| <g > | |
| <title>st_get_sampler_views (15,891,207 samples, 0.01%)</title><rect x="975.8" y="597" width="0.1" height="15.0" fill="rgb(224,91,21)" rx="2" ry="2" /> | |
| <text x="978.76" y="607.5" ></text> | |
| </g> | |
| <g > | |
| <title>strcspn (16,468,708 samples, 0.01%)</title><rect x="790.0" y="213" width="0.1" height="15.0" fill="rgb(218,61,14)" rx="2" ry="2" /> | |
| <text x="793.03" y="223.5" ></text> | |
| </g> | |
| <g > | |
| <title>si_update_vs_viewport_state (51,930,634 samples, 0.03%)</title><rect x="64.7" y="757" width="0.4" height="15.0" fill="rgb(220,69,16)" rx="2" ry="2" /> | |
| <text x="67.73" y="767.5" ></text> | |
| </g> | |
| <g > | |
| <title>vorbis_book_decode (39,933,862 samples, 0.02%)</title><rect x="22.7" y="677" width="0.2" height="15.0" fill="rgb(254,227,54)" rx="2" ry="2" /> | |
| <text x="25.69" y="687.5" ></text> | |
| </g> | |
| <g > | |
| <title>pthread_cond_wait@@GLIBC_2.17 (29,550,363 samples, 0.02%)</title><rect x="17.1" y="773" width="0.2" height="15.0" fill="rgb(231,119,28)" rx="2" ry="2" /> | |
| <text x="20.14" y="783.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_draw_arrays.part.0 (1,260,209,282 samples, 0.70%)</title><rect x="993.1" y="661" width="8.2" height="15.0" fill="rgb(227,104,25)" rx="2" ry="2" /> | |
| <text x="996.07" y="671.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_lookup_or_create_texture (266,617,464 samples, 0.15%)</title><rect x="923.5" y="629" width="1.8" height="15.0" fill="rgb(235,140,33)" rx="2" ry="2" /> | |
| <text x="926.53" y="639.5" ></text> | |
| </g> | |
| <g > | |
| <title>tc_set_constant_buffer (16,070,713 samples, 0.01%)</title><rect x="1012.1" y="597" width="0.1" height="15.0" fill="rgb(247,195,46)" rx="2" ry="2" /> | |
| <text x="1015.08" y="607.5" ></text> | |
| </g> | |
| <g > | |
| <title>st_update_framebuffer_state (26,508,888 samples, 0.01%)</title><rect x="405.0" y="725" width="0.2" height="15.0" fill="rgb(231,123,29)" rx="2" ry="2" /> | |
| <text x="407.99" y="735.5" ></text> | |
| </g> | |
| <g > | |
| <title>el0_svc_common.constprop.0 (49,642,791 samples, 0.03%)</title><rect x="901.1" y="453" width="0.3" height="15.0" fill="rgb(224,89,21)" rx="2" ry="2" /> | |
| <text x="904.12" y="463.5" ></text> | |
| </g> | |
| <g > | |
| <title>tc_call_set_constant_buffer (40,926,873 samples, 0.02%)</title><rect x="891.6" y="597" width="0.3" height="15.0" fill="rgb(222,79,18)" rx="2" ry="2" /> | |
| <text x="894.65" y="607.5" ></text> | |
| </g> | |
| <g > | |
| <title>st_update_single_texture (124,430,825 samples, 0.07%)</title><rect x="1132.4" y="597" width="0.8" height="15.0" fill="rgb(208,15,3)" rx="2" ry="2" /> | |
| <text x="1135.43" y="607.5" ></text> | |
| </g> | |
| <g > | |
| <title>amdgpu_cs_submit_ib_kernelq (10,052,240,225 samples, 5.57%)</title><rect x="265.9" y="805" width="65.7" height="15.0" fill="rgb(209,19,4)" rx="2" ry="2" /> | |
| <text x="268.86" y="815.5" >amdgpu_..</text> | |
| </g> | |
| <g > | |
| <title>_mesa_update_state (108,260,579 samples, 0.06%)</title><rect x="1060.6" y="661" width="0.7" height="15.0" fill="rgb(222,78,18)" rx="2" ry="2" /> | |
| <text x="1063.56" y="671.5" ></text> | |
| </g> | |
| <g > | |
| <title>__do_sys_newfstatat (802,533,607 samples, 0.44%)</title><rect x="1181.4" y="613" width="5.3" height="15.0" fill="rgb(243,177,42)" rx="2" ry="2" /> | |
| <text x="1184.44" y="623.5" ></text> | |
| </g> | |
| <g > | |
| <title>glDrawArrays (19,406,825 samples, 0.01%)</title><rect x="1070.7" y="741" width="0.2" height="15.0" fill="rgb(235,140,33)" rx="2" ry="2" /> | |
| <text x="1073.74" y="751.5" ></text> | |
| </g> | |
| <g > | |
| <title>__arm64_sys_ioctl (16,587,503 samples, 0.01%)</title><rect x="515.4" y="405" width="0.2" height="15.0" fill="rgb(207,11,2)" rx="2" ry="2" /> | |
| <text x="518.44" y="415.5" ></text> | |
| </g> | |
| <g > | |
| <title>do_el0_svc (140,820,026 samples, 0.08%)</title><rect x="458.9" y="629" width="0.9" height="15.0" fill="rgb(218,60,14)" rx="2" ry="2" /> | |
| <text x="461.91" y="639.5" ></text> | |
| </g> | |
| <g > | |
| <title>[libpulsecommon-16.1.so] (15,948,139 samples, 0.01%)</title><rect x="12.6" y="725" width="0.1" height="15.0" fill="rgb(224,88,21)" rx="2" ry="2" /> | |
| <text x="15.56" y="735.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_framebuffer_texture (27,343,525 samples, 0.02%)</title><rect x="460.1" y="773" width="0.2" height="15.0" fill="rgb(251,213,50)" rx="2" ry="2" /> | |
| <text x="463.11" y="783.5" ></text> | |
| </g> | |
| <g > | |
| <title>__run_exit_handlers (45,798,076 samples, 0.03%)</title><rect x="687.0" y="693" width="0.3" height="15.0" fill="rgb(216,51,12)" rx="2" ry="2" /> | |
| <text x="690.03" y="703.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_use_shader_program (433,892,904 samples, 0.24%)</title><rect x="1145.1" y="677" width="2.8" height="15.0" fill="rgb(245,188,44)" rx="2" ry="2" /> | |
| <text x="1148.11" y="687.5" ></text> | |
| </g> | |
| <g > | |
| <title>amdgpu_cs_add_buffer (536,199,512 samples, 0.30%)</title><rect x="151.7" y="757" width="3.5" height="15.0" fill="rgb(254,227,54)" rx="2" ry="2" /> | |
| <text x="154.69" y="767.5" ></text> | |
| </g> | |
| <g > | |
| <title>update_textures (120,378,994 samples, 0.07%)</title><rect x="1062.6" y="629" width="0.8" height="15.0" fill="rgb(232,125,29)" rx="2" ry="2" /> | |
| <text x="1065.64" y="639.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_update_texture_state (51,989,450 samples, 0.03%)</title><rect x="928.4" y="597" width="0.4" height="15.0" fill="rgb(237,148,35)" rx="2" ry="2" /> | |
| <text x="931.42" y="607.5" ></text> | |
| </g> | |
| <g > | |
| <title>el0t_64_sync (479,844,058 samples, 0.27%)</title><rect x="337.9" y="757" width="3.2" height="15.0" fill="rgb(217,56,13)" rx="2" ry="2" /> | |
| <text x="340.93" y="767.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_uniform (40,481,859 samples, 0.02%)</title><rect x="946.6" y="629" width="0.2" height="15.0" fill="rgb(248,201,48)" rx="2" ry="2" /> | |
| <text x="949.56" y="639.5" ></text> | |
| </g> | |
| <g > | |
| <title>[redeclipse] (48,859,399,660 samples, 27.06%)</title><rect x="646.1" y="725" width="319.4" height="15.0" fill="rgb(253,222,53)" rx="2" ry="2" /> | |
| <text x="649.14" y="735.5" >[redeclipse]</text> | |
| </g> | |
| <g > | |
| <title>_mesa_validated_drawrangeelements (26,908,774 samples, 0.01%)</title><rect x="1001.8" y="629" width="0.2" height="15.0" fill="rgb(230,115,27)" rx="2" ry="2" /> | |
| <text x="1004.83" y="639.5" ></text> | |
| </g> | |
| <g > | |
| <title>mtx_lock (18,035,588 samples, 0.01%)</title><rect x="38.8" y="741" width="0.1" height="15.0" fill="rgb(225,95,22)" rx="2" ry="2" /> | |
| <text x="41.80" y="751.5" ></text> | |
| </g> | |
| <g > | |
| <title>glthread_unmarshal_batch (69,604,982 samples, 0.04%)</title><rect x="1155.9" y="709" width="0.4" height="15.0" fill="rgb(247,195,46)" rx="2" ry="2" /> | |
| <text x="1158.88" y="719.5" ></text> | |
| </g> | |
| <g > | |
| <title>[redeclipse] (5,120,631,166 samples, 2.84%)</title><rect x="768.3" y="485" width="33.5" height="15.0" fill="rgb(253,222,53)" rx="2" ry="2" /> | |
| <text x="771.34" y="495.5" >[r..</text> | |
| </g> | |
| <g > | |
| <title>invoke_syscall (70,384,258 samples, 0.04%)</title><rect x="331.7" y="661" width="0.4" height="15.0" fill="rgb(209,18,4)" rx="2" ry="2" /> | |
| <text x="334.67" y="671.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_update_state_locked (447,278,708 samples, 0.25%)</title><rect x="1002.1" y="629" width="3.0" height="15.0" fill="rgb(214,43,10)" rx="2" ry="2" /> | |
| <text x="1005.14" y="639.5" ></text> | |
| </g> | |
| <g > | |
| <title>[libxcb.so.1.1.0] (278,131,955 samples, 0.15%)</title><rect x="1106.6" y="517" width="1.8" height="15.0" fill="rgb(226,98,23)" rx="2" ry="2" /> | |
| <text x="1109.58" y="527.5" ></text> | |
| </g> | |
| <g > | |
| <title>__pthread_mutex_cond_lock_full (49,961,254 samples, 0.03%)</title><rect x="10.7" y="789" width="0.3" height="15.0" fill="rgb(219,67,16)" rx="2" ry="2" /> | |
| <text x="13.66" y="799.5" ></text> | |
| </g> | |
| <g > | |
| <title>pthread_cond_wait@@GLIBC_2.17 (135,526,033 samples, 0.08%)</title><rect x="16.4" y="789" width="0.9" height="15.0" fill="rgb(231,119,28)" rx="2" ry="2" /> | |
| <text x="19.45" y="799.5" ></text> | |
| </g> | |
| <g > | |
| <title>void st_update_array_impl< (38,104,727 samples, 0.02%)</title><rect x="1015.1" y="613" width="0.2" height="15.0" fill="rgb(217,56,13)" rx="2" ry="2" /> | |
| <text x="1018.06" y="623.5" ></text> | |
| </g> | |
| <g > | |
| <title>amdgpu_cs_add_buffer (1,069,883,297 samples, 0.59%)</title><rect x="209.8" y="757" width="7.0" height="15.0" fill="rgb(254,227,54)" rx="2" ry="2" /> | |
| <text x="212.77" y="767.5" ></text> | |
| </g> | |
| <g > | |
| <title>update_shader_samplers (127,880,207 samples, 0.07%)</title><rect x="938.6" y="581" width="0.8" height="15.0" fill="rgb(229,113,27)" rx="2" ry="2" /> | |
| <text x="941.56" y="591.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_marshal_Uniform4fv (73,650,985 samples, 0.04%)</title><rect x="1031.5" y="725" width="0.5" height="15.0" fill="rgb(228,108,26)" rx="2" ry="2" /> | |
| <text x="1034.48" y="735.5" ></text> | |
| </g> | |
| <g > | |
| <title>st_finalize_texture (26,240,786 samples, 0.01%)</title><rect x="1063.1" y="565" width="0.2" height="15.0" fill="rgb(232,124,29)" rx="2" ry="2" /> | |
| <text x="1066.12" y="575.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_lookup_bufferobj.part.0 (24,514,358 samples, 0.01%)</title><rect x="982.7" y="629" width="0.2" height="15.0" fill="rgb(223,84,20)" rx="2" ry="2" /> | |
| <text x="985.73" y="639.5" ></text> | |
| </g> | |
| <g > | |
| <title>do_el0_svc (72,129,869 samples, 0.04%)</title><rect x="1177.8" y="645" width="0.5" height="15.0" fill="rgb(218,60,14)" rx="2" ry="2" /> | |
| <text x="1180.80" y="655.5" ></text> | |
| </g> | |
| <g > | |
| <title>st_get_sampler_view_format (198,608,939 samples, 0.11%)</title><rect x="442.8" y="677" width="1.3" height="15.0" fill="rgb(211,30,7)" rx="2" ry="2" /> | |
| <text x="445.84" y="687.5" ></text> | |
| </g> | |
| <g > | |
| <title>strcmp (15,958,558 samples, 0.01%)</title><rect x="795.2" y="325" width="0.1" height="15.0" fill="rgb(217,58,13)" rx="2" ry="2" /> | |
| <text x="798.21" y="335.5" ></text> | |
| </g> | |
| <g > | |
| <title>drm_syncobj_destroy_ioctl (20,830,621 samples, 0.01%)</title><rect x="331.9" y="581" width="0.1" height="15.0" fill="rgb(218,63,15)" rx="2" ry="2" /> | |
| <text x="334.88" y="591.5" ></text> | |
| </g> | |
| <g > | |
| <title>gfx6_decompress_textures (242,813,333 samples, 0.13%)</title><rect x="173.9" y="757" width="1.6" height="15.0" fill="rgb(216,53,12)" rx="2" ry="2" /> | |
| <text x="176.91" y="767.5" ></text> | |
| </g> | |
| <g > | |
| <title>pa_pdispatch_run (92,746,512 samples, 0.05%)</title><rect x="11.5" y="693" width="0.6" height="15.0" fill="rgb(231,122,29)" rx="2" ry="2" /> | |
| <text x="14.47" y="703.5" ></text> | |
| </g> | |
| <g > | |
| <title>si_bind_ps_shader (42,228,836 samples, 0.02%)</title><rect x="885.4" y="581" width="0.3" height="15.0" fill="rgb(240,164,39)" rx="2" ry="2" /> | |
| <text x="888.41" y="591.5" ></text> | |
| </g> | |
| <g > | |
| <title>[libz.so.1.3] (24,890,148 samples, 0.01%)</title><rect x="957.4" y="693" width="0.1" height="15.0" fill="rgb(230,116,27)" rx="2" ry="2" /> | |
| <text x="960.36" y="703.5" ></text> | |
| </g> | |
| <g > | |
| <title>util_queue_add_job (20,625,531 samples, 0.01%)</title><rect x="190.6" y="741" width="0.2" height="15.0" fill="rgb(241,167,40)" rx="2" ry="2" /> | |
| <text x="193.62" y="751.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_update_state (23,666,438 samples, 0.01%)</title><rect x="930.5" y="629" width="0.2" height="15.0" fill="rgb(222,78,18)" rx="2" ry="2" /> | |
| <text x="933.54" y="639.5" ></text> | |
| </g> | |
| <g > | |
| <title>[libGLdispatch.so.0.0.0] (53,004,598 samples, 0.03%)</title><rect x="764.9" y="613" width="0.4" height="15.0" fill="rgb(209,20,4)" rx="2" ry="2" /> | |
| <text x="767.93" y="623.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_UseProgram (119,033,783 samples, 0.07%)</title><rect x="477.3" y="773" width="0.8" height="15.0" fill="rgb(212,36,8)" rx="2" ry="2" /> | |
| <text x="480.30" y="783.5" ></text> | |
| </g> | |
| <g > | |
| <title>util_copy_framebuffer_state (16,840,683 samples, 0.01%)</title><rect x="988.7" y="613" width="0.1" height="15.0" fill="rgb(234,137,32)" rx="2" ry="2" /> | |
| <text x="991.68" y="623.5" ></text> | |
| </g> | |
| <g > | |
| <title>invoke_syscall (307,451,664 samples, 0.17%)</title><rect x="342.3" y="709" width="2.0" height="15.0" fill="rgb(209,18,4)" rx="2" ry="2" /> | |
| <text x="345.31" y="719.5" ></text> | |
| </g> | |
| <g > | |
| <title>wake_up_q (57,553,799 samples, 0.03%)</title><rect x="1173.9" y="533" width="0.4" height="15.0" fill="rgb(237,151,36)" rx="2" ry="2" /> | |
| <text x="1176.92" y="543.5" ></text> | |
| </g> | |
| <g > | |
| <title>update_textures (99,667,705 samples, 0.06%)</title><rect x="827.9" y="565" width="0.7" height="15.0" fill="rgb(232,125,29)" rx="2" ry="2" /> | |
| <text x="830.91" y="575.5" ></text> | |
| </g> | |
| <g > | |
| <title>el0_svc (295,835,597 samples, 0.16%)</title><rect x="540.9" y="645" width="1.9" height="15.0" fill="rgb(244,183,43)" rx="2" ry="2" /> | |
| <text x="543.86" y="655.5" ></text> | |
| </g> | |
| <g > | |
| <title>futex_get_value_locked (21,301,151 samples, 0.01%)</title><rect x="338.4" y="597" width="0.2" height="15.0" fill="rgb(224,91,21)" rx="2" ry="2" /> | |
| <text x="341.44" y="607.5" ></text> | |
| </g> | |
| <g > | |
| <title>__arch_copy_from_user (18,576,787 samples, 0.01%)</title><rect x="267.3" y="581" width="0.1" height="15.0" fill="rgb(254,229,54)" rx="2" ry="2" /> | |
| <text x="270.29" y="591.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_unmarshal_DrawElementsPacked (76,914,622 samples, 0.04%)</title><rect x="975.4" y="677" width="0.5" height="15.0" fill="rgb(225,92,22)" rx="2" ry="2" /> | |
| <text x="978.42" y="687.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_marshal_DrawArrays (20,441,390 samples, 0.01%)</title><rect x="977.5" y="725" width="0.2" height="15.0" fill="rgb(225,93,22)" rx="2" ry="2" /> | |
| <text x="980.53" y="735.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_reference_texobj_ (23,533,952 samples, 0.01%)</title><rect x="986.2" y="629" width="0.1" height="15.0" fill="rgb(229,111,26)" rx="2" ry="2" /> | |
| <text x="989.20" y="639.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_marshal_MapBufferRange (49,134,193 samples, 0.03%)</title><rect x="794.4" y="309" width="0.3" height="15.0" fill="rgb(219,65,15)" rx="2" ry="2" /> | |
| <text x="797.36" y="319.5" ></text> | |
| </g> | |
| <g > | |
| <title>util_queue_add_job_locked.part.0 (37,429,930 samples, 0.02%)</title><rect x="420.1" y="661" width="0.3" height="15.0" fill="rgb(243,177,42)" rx="2" ry="2" /> | |
| <text x="423.15" y="671.5" ></text> | |
| </g> | |
| <g > | |
| <title>__arm64_sys_futex (47,021,910 samples, 0.03%)</title><rect x="972.7" y="549" width="0.3" height="15.0" fill="rgb(247,196,47)" rx="2" ry="2" /> | |
| <text x="975.65" y="559.5" ></text> | |
| </g> | |
| <g > | |
| <title>el0_svc (38,984,265 samples, 0.02%)</title><rect x="1034.2" y="549" width="0.3" height="15.0" fill="rgb(244,183,43)" rx="2" ry="2" /> | |
| <text x="1037.23" y="559.5" ></text> | |
| </g> | |
| <g > | |
| <title>do_futex (19,741,930 samples, 0.01%)</title><rect x="877.5" y="389" width="0.1" height="15.0" fill="rgb(245,184,44)" rx="2" ry="2" /> | |
| <text x="880.52" y="399.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_unlock_context_textures (18,578,186 samples, 0.01%)</title><rect x="378.0" y="757" width="0.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> | |
| <text x="380.96" y="767.5" ></text> | |
| </g> | |
| <g > | |
| <title>cnd_signal (21,753,763 samples, 0.01%)</title><rect x="1172.8" y="725" width="0.2" height="15.0" fill="rgb(232,125,30)" rx="2" ry="2" /> | |
| <text x="1175.82" y="735.5" ></text> | |
| </g> | |
| <g > | |
| <title>tc_add_all_gfx_bindings_to_buffer_list (20,144,965 samples, 0.01%)</title><rect x="1136.0" y="645" width="0.2" height="15.0" fill="rgb(243,177,42)" rx="2" ry="2" /> | |
| <text x="1139.05" y="655.5" ></text> | |
| </g> | |
| <g > | |
| <title>st_prepare_draw (26,144,803 samples, 0.01%)</title><rect x="783.5" y="37" width="0.2" height="15.0" fill="rgb(214,45,10)" rx="2" ry="2" /> | |
| <text x="786.53" y="47.5" ></text> | |
| </g> | |
| <g > | |
| <title>strcspn (22,959,454 samples, 0.01%)</title><rect x="794.8" y="309" width="0.1" height="15.0" fill="rgb(218,61,14)" rx="2" ry="2" /> | |
| <text x="797.78" y="319.5" ></text> | |
| </g> | |
| <g > | |
| <title>el0t_64_sync (164,835,939 samples, 0.09%)</title><rect x="895.7" y="501" width="1.1" height="15.0" fill="rgb(217,56,13)" rx="2" ry="2" /> | |
| <text x="898.68" y="511.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_unmarshal_Uniform4f (16,019,721 samples, 0.01%)</title><rect x="1139.3" y="709" width="0.1" height="15.0" fill="rgb(224,89,21)" rx="2" ry="2" /> | |
| <text x="1142.31" y="719.5" ></text> | |
| </g> | |
| <g > | |
| <title>vfs_statx (704,136,965 samples, 0.39%)</title><rect x="1182.1" y="581" width="4.6" height="15.0" fill="rgb(242,172,41)" rx="2" ry="2" /> | |
| <text x="1185.08" y="591.5" ></text> | |
| </g> | |
| <g > | |
| <title>update_shader_samplers (965,038,585 samples, 0.53%)</title><rect x="421.6" y="725" width="6.3" height="15.0" fill="rgb(229,113,27)" rx="2" ry="2" /> | |
| <text x="424.58" y="735.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_unmarshal_DrawElementsPacked (2,395,966,540 samples, 1.33%)</title><rect x="1001.5" y="677" width="15.6" height="15.0" fill="rgb(225,92,22)" rx="2" ry="2" /> | |
| <text x="1004.49" y="687.5" ></text> | |
| </g> | |
| <g > | |
| <title>u_upload_alloc (149,912,063 samples, 0.08%)</title><rect x="149.5" y="725" width="1.0" height="15.0" fill="rgb(235,138,33)" rx="2" ry="2" /> | |
| <text x="152.50" y="735.5" ></text> | |
| </g> | |
| <g > | |
| <title>pa_memexport_put (24,585,853 samples, 0.01%)</title><rect x="12.6" y="741" width="0.1" height="15.0" fill="rgb(242,173,41)" rx="2" ry="2" /> | |
| <text x="15.56" y="751.5" ></text> | |
| </g> | |
| <g > | |
| <title>st_manager_flush_frontbuffer (18,211,815 samples, 0.01%)</title><rect x="540.3" y="757" width="0.1" height="15.0" fill="rgb(213,37,8)" rx="2" ry="2" /> | |
| <text x="543.26" y="767.5" ></text> | |
| </g> | |
| <g > | |
| <title>sockfd_lookup_light (15,864,382 samples, 0.01%)</title><rect x="504.1" y="517" width="0.1" height="15.0" fill="rgb(225,95,22)" rx="2" ry="2" /> | |
| <text x="507.08" y="527.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_disable_vertex_array_attribs (18,839,254 samples, 0.01%)</title><rect x="928.1" y="629" width="0.1" height="15.0" fill="rgb(240,162,38)" rx="2" ry="2" /> | |
| <text x="931.09" y="639.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_tex_target_to_index (30,723,415 samples, 0.02%)</title><rect x="363.6" y="757" width="0.2" height="15.0" fill="rgb(233,131,31)" rx="2" ry="2" /> | |
| <text x="366.58" y="767.5" ></text> | |
| </g> | |
| <g > | |
| <title>__aarch64_ldadd4_acq_rel (74,740,237 samples, 0.04%)</title><rect x="1056.3" y="693" width="0.5" height="15.0" fill="rgb(228,108,25)" rx="2" ry="2" /> | |
| <text x="1059.27" y="703.5" ></text> | |
| </g> | |
| <g > | |
| <title>st_update_sample_shading (42,822,555 samples, 0.02%)</title><rect x="407.1" y="741" width="0.3" height="15.0" fill="rgb(237,150,36)" rx="2" ry="2" /> | |
| <text x="410.14" y="751.5" ></text> | |
| </g> | |
| <g > | |
| <title>__aarch64_ldadd4_acq_rel (37,031,908 samples, 0.02%)</title><rect x="198.4" y="773" width="0.3" height="15.0" fill="rgb(228,108,25)" rx="2" ry="2" /> | |
| <text x="201.43" y="783.5" ></text> | |
| </g> | |
| <g > | |
| <title>strspn (18,354,515 samples, 0.01%)</title><rect x="794.1" y="293" width="0.1" height="15.0" fill="rgb(207,13,3)" rx="2" ry="2" /> | |
| <text x="797.07" y="303.5" ></text> | |
| </g> | |
| <g > | |
| <title>ov_read (854,105,768 samples, 0.47%)</title><rect x="22.0" y="757" width="5.6" height="15.0" fill="rgb(209,18,4)" rx="2" ry="2" /> | |
| <text x="24.98" y="767.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_update_state (156,616,619 samples, 0.09%)</title><rect x="1109.9" y="677" width="1.0" height="15.0" fill="rgb(222,78,18)" rx="2" ry="2" /> | |
| <text x="1112.91" y="687.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_update_valid_to_render_state (32,321,359 samples, 0.02%)</title><rect x="950.2" y="597" width="0.2" height="15.0" fill="rgb(219,66,15)" rx="2" ry="2" /> | |
| <text x="953.23" y="607.5" ></text> | |
| </g> | |
| <g > | |
| <title>do_el0_svc (101,492,616 samples, 0.06%)</title><rect x="13.4" y="677" width="0.7" height="15.0" fill="rgb(218,60,14)" rx="2" ry="2" /> | |
| <text x="16.44" y="687.5" ></text> | |
| </g> | |
| <g > | |
| <title>validate_uniform_parameters (19,636,367 samples, 0.01%)</title><rect x="879.1" y="597" width="0.1" height="15.0" fill="rgb(234,137,32)" rx="2" ry="2" /> | |
| <text x="882.07" y="607.5" ></text> | |
| </g> | |
| <g > | |
| <title>el0_svc_common.constprop.0 (67,203,635 samples, 0.04%)</title><rect x="542.9" y="613" width="0.4" height="15.0" fill="rgb(224,89,21)" rx="2" ry="2" /> | |
| <text x="545.89" y="623.5" ></text> | |
| </g> | |
| <g > | |
| <title>bool si_update_shaders< (32,165,858 samples, 0.02%)</title><rect x="889.1" y="549" width="0.2" height="15.0" fill="rgb(233,129,30)" rx="2" ry="2" /> | |
| <text x="892.10" y="559.5" ></text> | |
| </g> | |
| <g > | |
| <title>update_single_program_texture (20,784,319 samples, 0.01%)</title><rect x="1110.7" y="613" width="0.1" height="15.0" fill="rgb(241,165,39)" rx="2" ry="2" /> | |
| <text x="1113.69" y="623.5" ></text> | |
| </g> | |
| <g > | |
| <title>update_shader_samplers (53,190,951 samples, 0.03%)</title><rect x="403.0" y="725" width="0.4" height="15.0" fill="rgb(229,113,27)" rx="2" ry="2" /> | |
| <text x="406.03" y="735.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_uniform (18,571,786 samples, 0.01%)</title><rect x="1019.8" y="629" width="0.1" height="15.0" fill="rgb(248,201,48)" rx="2" ry="2" /> | |
| <text x="1022.79" y="639.5" ></text> | |
| </g> | |
| <g > | |
| <title>do_el0_svc (381,418,455 samples, 0.21%)</title><rect x="342.2" y="741" width="2.5" height="15.0" fill="rgb(218,60,14)" rx="2" ry="2" /> | |
| <text x="345.24" y="751.5" ></text> | |
| </g> | |
| <g > | |
| <title>shared_dispatch_stub_682 (17,519,339 samples, 0.01%)</title><rect x="962.8" y="709" width="0.2" height="15.0" fill="rgb(253,223,53)" rx="2" ry="2" /> | |
| <text x="965.85" y="719.5" ></text> | |
| </g> | |
| <g > | |
| <title>vfs_getattr_nosec (53,768,831 samples, 0.03%)</title><rect x="1186.3" y="549" width="0.4" height="15.0" fill="rgb(230,118,28)" rx="2" ry="2" /> | |
| <text x="1189.33" y="559.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_update_framebuffer (24,544,448 samples, 0.01%)</title><rect x="373.8" y="757" width="0.1" height="15.0" fill="rgb(218,62,14)" rx="2" ry="2" /> | |
| <text x="376.76" y="767.5" ></text> | |
| </g> | |
| <g > | |
| <title>__arm64_sys_futex (40,834,037 samples, 0.02%)</title><rect x="455.9" y="565" width="0.3" height="15.0" fill="rgb(247,196,47)" rx="2" ry="2" /> | |
| <text x="458.94" y="575.5" ></text> | |
| </g> | |
| <g > | |
| <title>amdgpu_lookup_buffer (37,180,107 samples, 0.02%)</title><rect x="195.7" y="757" width="0.2" height="15.0" fill="rgb(216,54,13)" rx="2" ry="2" /> | |
| <text x="198.69" y="767.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_MapBufferRange (27,146,011 samples, 0.02%)</title><rect x="1053.5" y="741" width="0.1" height="15.0" fill="rgb(238,156,37)" rx="2" ry="2" /> | |
| <text x="1056.45" y="751.5" ></text> | |
| </g> | |
| <g > | |
| <title>__aarch64_ldadd4_acq_rel (20,970,450 samples, 0.01%)</title><rect x="950.0" y="581" width="0.1" height="15.0" fill="rgb(228,108,25)" rx="2" ry="2" /> | |
| <text x="952.97" y="591.5" ></text> | |
| </g> | |
| <g > | |
| <title>st_prepare_draw (26,391,672 samples, 0.01%)</title><rect x="935.0" y="597" width="0.1" height="15.0" fill="rgb(214,45,10)" rx="2" ry="2" /> | |
| <text x="937.98" y="607.5" ></text> | |
| </g> | |
| <g > | |
| <title>Mix_PlayingMusic (16,913,844 samples, 0.01%)</title><rect x="548.6" y="773" width="0.1" height="15.0" fill="rgb(208,14,3)" rx="2" ry="2" /> | |
| <text x="551.61" y="783.5" ></text> | |
| </g> | |
| <g > | |
| <title>__aarch64_ldadd4_acq_rel (16,031,678 samples, 0.01%)</title><rect x="1008.2" y="581" width="0.1" height="15.0" fill="rgb(228,108,25)" rx="2" ry="2" /> | |
| <text x="1011.19" y="591.5" ></text> | |
| </g> | |
| <g > | |
| <title>st_manager_validate_framebuffers (74,097,538 samples, 0.04%)</title><rect x="374.4" y="757" width="0.5" height="15.0" fill="rgb(251,215,51)" rx="2" ry="2" /> | |
| <text x="377.44" y="767.5" ></text> | |
| </g> | |
| <g > | |
| <title>__arm64_sys_write (40,380,146 samples, 0.02%)</title><rect x="15.2" y="613" width="0.3" height="15.0" fill="rgb(254,226,54)" rx="2" ry="2" /> | |
| <text x="18.19" y="623.5" ></text> | |
| </g> | |
| <g > | |
| <title>drm_ioctl_kernel (37,149,722 samples, 0.02%)</title><rect x="510.2" y="517" width="0.2" height="15.0" fill="rgb(226,101,24)" rx="2" ry="2" /> | |
| <text x="513.16" y="527.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_DrawElementsBaseVertex (387,165,936 samples, 0.21%)</title><rect x="826.7" y="613" width="2.5" height="15.0" fill="rgb(214,41,10)" rx="2" ry="2" /> | |
| <text x="829.67" y="623.5" ></text> | |
| </g> | |
| <g > | |
| <title>schedule (15,619,151 samples, 0.01%)</title><rect x="901.2" y="341" width="0.1" height="15.0" fill="rgb(254,229,54)" rx="2" ry="2" /> | |
| <text x="904.18" y="351.5" ></text> | |
| </g> | |
| <g > | |
| <title>drmSyncobjDestroy (30,367,821 samples, 0.02%)</title><rect x="538.3" y="661" width="0.2" height="15.0" fill="rgb(205,0,0)" rx="2" ry="2" /> | |
| <text x="541.31" y="671.5" ></text> | |
| </g> | |
| <g > | |
| <title>st_make_bound_images_resident (16,703,217 samples, 0.01%)</title><rect x="1011.1" y="581" width="0.1" height="15.0" fill="rgb(241,167,40)" rx="2" ry="2" /> | |
| <text x="1014.07" y="591.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_uniform (23,210,317 samples, 0.01%)</title><rect x="465.0" y="773" width="0.1" height="15.0" fill="rgb(248,201,48)" rx="2" ry="2" /> | |
| <text x="467.99" y="783.5" ></text> | |
| </g> | |
| <g > | |
| <title>copy_msghdr_from_user (32,009,108 samples, 0.02%)</title><rect x="1107.9" y="325" width="0.2" height="15.0" fill="rgb(240,161,38)" rx="2" ry="2" /> | |
| <text x="1110.93" y="335.5" ></text> | |
| </g> | |
| <g > | |
| <title>__aarch64_ldadd4_acq_rel (96,286,432 samples, 0.05%)</title><rect x="407.6" y="709" width="0.6" height="15.0" fill="rgb(228,108,25)" rx="2" ry="2" /> | |
| <text x="410.62" y="719.5" ></text> | |
| </g> | |
| <g > | |
| <title>el0t_64_sync_handler (19,734,986 samples, 0.01%)</title><rect x="515.4" y="485" width="0.2" height="15.0" fill="rgb(211,32,7)" rx="2" ry="2" /> | |
| <text x="518.44" y="495.5" ></text> | |
| </g> | |
| <g > | |
| <title>slab_zalloc (115,688,124 samples, 0.06%)</title><rect x="904.6" y="613" width="0.7" height="15.0" fill="rgb(232,128,30)" rx="2" ry="2" /> | |
| <text x="907.59" y="623.5" ></text> | |
| </g> | |
| <g > | |
| <title>si_create_surface (28,905,505 samples, 0.02%)</title><rect x="1018.4" y="581" width="0.2" height="15.0" fill="rgb(245,186,44)" rx="2" ry="2" /> | |
| <text x="1021.44" y="591.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_MapBufferRange (23,314,928 samples, 0.01%)</title><rect x="821.6" y="661" width="0.1" height="15.0" fill="rgb(238,156,37)" rx="2" ry="2" /> | |
| <text x="824.55" y="671.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_unmarshal_DrawElementsPacked (398,400,705 samples, 0.22%)</title><rect x="826.6" y="629" width="2.6" height="15.0" fill="rgb(225,92,22)" rx="2" ry="2" /> | |
| <text x="829.65" y="639.5" ></text> | |
| </g> | |
| <g > | |
| <title>audit_reset_context.part.0.constprop.0 (26,450,685 samples, 0.01%)</title><rect x="339.4" y="645" width="0.2" height="15.0" fill="rgb(248,200,47)" rx="2" ry="2" /> | |
| <text x="342.42" y="655.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_FramebufferTexture2D (33,752,935 samples, 0.02%)</title><rect x="460.1" y="789" width="0.2" height="15.0" fill="rgb(216,51,12)" rx="2" ry="2" /> | |
| <text x="463.10" y="799.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_use_shader_program (26,835,404 samples, 0.01%)</title><rect x="1092.6" y="661" width="0.2" height="15.0" fill="rgb(245,188,44)" rx="2" ry="2" /> | |
| <text x="1095.64" y="671.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_update_framebuffer_visual (22,601,327 samples, 0.01%)</title><rect x="1002.5" y="581" width="0.1" height="15.0" fill="rgb(241,167,40)" rx="2" ry="2" /> | |
| <text x="1005.47" y="591.5" ></text> | |
| </g> | |
| <g > | |
| <title>util_copy_framebuffer_state (29,866,330 samples, 0.02%)</title><rect x="201.5" y="757" width="0.2" height="15.0" fill="rgb(234,137,32)" rx="2" ry="2" /> | |
| <text x="204.46" y="767.5" ></text> | |
| </g> | |
| <g > | |
| <title>tc_set_sampler_views (45,787,950 samples, 0.03%)</title><rect x="1014.7" y="597" width="0.3" height="15.0" fill="rgb(250,209,50)" rx="2" ry="2" /> | |
| <text x="1017.70" y="607.5" ></text> | |
| </g> | |
| <g > | |
| <title>amdgpu_cs_add_buffer (156,319,475 samples, 0.09%)</title><rect x="246.6" y="757" width="1.0" height="15.0" fill="rgb(254,227,54)" rx="2" ry="2" /> | |
| <text x="249.55" y="767.5" ></text> | |
| </g> | |
| <g > | |
| <title>futex_wait (28,430,270 samples, 0.02%)</title><rect x="884.6" y="437" width="0.2" height="15.0" fill="rgb(235,138,33)" rx="2" ry="2" /> | |
| <text x="887.63" y="447.5" ></text> | |
| </g> | |
| <g > | |
| <title>exit_mmap (28,990,851 samples, 0.02%)</title><rect x="1189.6" y="693" width="0.2" height="15.0" fill="rgb(236,143,34)" rx="2" ry="2" /> | |
| <text x="1192.58" y="703.5" ></text> | |
| </g> | |
| <g > | |
| <title>vfs_fstatat (779,652,258 samples, 0.43%)</title><rect x="1181.6" y="597" width="5.1" height="15.0" fill="rgb(232,127,30)" rx="2" ry="2" /> | |
| <text x="1184.59" y="607.5" ></text> | |
| </g> | |
| <g > | |
| <title>__kmalloc_noprof (28,958,065 samples, 0.02%)</title><rect x="305.7" y="549" width="0.2" height="15.0" fill="rgb(235,138,33)" rx="2" ry="2" /> | |
| <text x="308.75" y="559.5" ></text> | |
| </g> | |
| <g > | |
| <title>void st_update_array_templ< (21,529,356 samples, 0.01%)</title><rect x="825.9" y="565" width="0.2" height="15.0" fill="rgb(243,178,42)" rx="2" ry="2" /> | |
| <text x="828.93" y="575.5" ></text> | |
| </g> | |
| <g > | |
| <title>st_get_sampler_views (795,868,080 samples, 0.44%)</title><rect x="1128.0" y="629" width="5.2" height="15.0" fill="rgb(224,91,21)" rx="2" ry="2" /> | |
| <text x="1131.04" y="639.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_flush_vertices_for_uniforms (29,953,890 samples, 0.02%)</title><rect x="1141.2" y="661" width="0.2" height="15.0" fill="rgb(211,31,7)" rx="2" ry="2" /> | |
| <text x="1144.21" y="671.5" ></text> | |
| </g> | |
| <g > | |
| <title>shared_dispatch_stub_478 (15,537,831 samples, 0.01%)</title><rect x="906.8" y="693" width="0.1" height="15.0" fill="rgb(234,134,32)" rx="2" ry="2" /> | |
| <text x="909.83" y="703.5" ></text> | |
| </g> | |
| <g > | |
| <title>st_glFlush (266,395,588 samples, 0.15%)</title><rect x="458.3" y="789" width="1.7" height="15.0" fill="rgb(224,88,21)" rx="2" ry="2" /> | |
| <text x="461.28" y="799.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_marshal_UniformMatrix4fv (16,360,880 samples, 0.01%)</title><rect x="883.6" y="693" width="0.2" height="15.0" fill="rgb(215,47,11)" rx="2" ry="2" /> | |
| <text x="886.65" y="703.5" ></text> | |
| </g> | |
| <g > | |
| <title>tc_add_draw_single_call (33,000,934 samples, 0.02%)</title><rect x="1005.5" y="613" width="0.2" height="15.0" fill="rgb(214,45,10)" rx="2" ry="2" /> | |
| <text x="1008.48" y="623.5" ></text> | |
| </g> | |
| <g > | |
| <title>dri3_flush_present_events (205,524,522 samples, 0.11%)</title><rect x="507.4" y="741" width="1.4" height="15.0" fill="rgb(217,57,13)" rx="2" ry="2" /> | |
| <text x="510.42" y="751.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_MapBufferRange (109,267,760 samples, 0.06%)</title><rect x="970.9" y="725" width="0.7" height="15.0" fill="rgb(238,156,37)" rx="2" ry="2" /> | |
| <text x="973.89" y="735.5" ></text> | |
| </g> | |
| <g > | |
| <title>vfs_writev (266,587,314 samples, 0.15%)</title><rect x="541.0" y="549" width="1.7" height="15.0" fill="rgb(238,153,36)" rx="2" ry="2" /> | |
| <text x="543.98" y="559.5" ></text> | |
| </g> | |
| <g > | |
| <title>__arm64_sys_futex (304,379,902 samples, 0.17%)</title><rect x="342.3" y="693" width="2.0" height="15.0" fill="rgb(247,196,47)" rx="2" ry="2" /> | |
| <text x="345.32" y="703.5" ></text> | |
| </g> | |
| <g > | |
| <title>amdgpu_vm_bo_find (173,289,626 samples, 0.10%)</title><rect x="328.6" y="581" width="1.1" height="15.0" fill="rgb(240,164,39)" rx="2" ry="2" /> | |
| <text x="331.59" y="591.5" ></text> | |
| </g> | |
| <g > | |
| <title>invoke_syscall (64,605,478 samples, 0.04%)</title><rect x="530.7" y="581" width="0.5" height="15.0" fill="rgb(209,18,4)" rx="2" ry="2" /> | |
| <text x="533.73" y="591.5" ></text> | |
| </g> | |
| <g > | |
| <title>get_user_pages_fast (17,084,592 samples, 0.01%)</title><rect x="972.8" y="453" width="0.1" height="15.0" fill="rgb(229,111,26)" rx="2" ry="2" /> | |
| <text x="975.83" y="463.5" ></text> | |
| </g> | |
| <g > | |
| <title>pthread_cond_signal@@GLIBC_2.17 (75,872,187 samples, 0.04%)</title><rect x="538.8" y="645" width="0.5" height="15.0" fill="rgb(232,126,30)" rx="2" ry="2" /> | |
| <text x="541.84" y="655.5" ></text> | |
| </g> | |
| <g > | |
| <title>st_update_single_texture (129,522,957 samples, 0.07%)</title><rect x="1132.4" y="613" width="0.8" height="15.0" fill="rgb(208,15,3)" rx="2" ry="2" /> | |
| <text x="1135.40" y="623.5" ></text> | |
| </g> | |
| <g > | |
| <title>do_el0_svc (81,092,056 samples, 0.04%)</title><rect x="530.7" y="613" width="0.6" height="15.0" fill="rgb(218,60,14)" rx="2" ry="2" /> | |
| <text x="533.72" y="623.5" ></text> | |
| </g> | |
| <g > | |
| <title>__aarch64_ldadd4_acq_rel (23,217,492 samples, 0.01%)</title><rect x="373.3" y="725" width="0.1" height="15.0" fill="rgb(228,108,25)" rx="2" ry="2" /> | |
| <text x="376.28" y="735.5" ></text> | |
| </g> | |
| <g > | |
| <title>tc_call_buffer_unmap (19,670,288 samples, 0.01%)</title><rect x="43.2" y="789" width="0.1" height="15.0" fill="rgb(205,4,1)" rx="2" ry="2" /> | |
| <text x="46.20" y="799.5" ></text> | |
| </g> | |
| <g > | |
| <title>el0t_64_sync_handler (157,298,369 samples, 0.09%)</title><rect x="979.8" y="629" width="1.0" height="15.0" fill="rgb(211,32,7)" rx="2" ry="2" /> | |
| <text x="982.78" y="639.5" ></text> | |
| </g> | |
| <g > | |
| <title>tc_buffer_subdata.part.0 (21,377,448 samples, 0.01%)</title><rect x="1078.9" y="693" width="0.2" height="15.0" fill="rgb(231,120,28)" rx="2" ry="2" /> | |
| <text x="1081.92" y="703.5" ></text> | |
| </g> | |
| <g > | |
| <title>rseq_update_cpu_node_id (113,570,146 samples, 0.06%)</title><rect x="340.1" y="677" width="0.7" height="15.0" fill="rgb(224,88,21)" rx="2" ry="2" /> | |
| <text x="343.07" y="687.5" ></text> | |
| </g> | |
| <g > | |
| <title>cso_set_vertex_elements_direct (65,666,608 samples, 0.04%)</title><rect x="1015.4" y="565" width="0.4" height="15.0" fill="rgb(222,80,19)" rx="2" ry="2" /> | |
| <text x="1018.37" y="575.5" ></text> | |
| </g> | |
| <g > | |
| <title>memcmp (28,458,891 samples, 0.02%)</title><rect x="452.7" y="693" width="0.2" height="15.0" fill="rgb(235,141,33)" rx="2" ry="2" /> | |
| <text x="455.72" y="703.5" ></text> | |
| </g> | |
| <g > | |
| <title>el0_svc (84,013,753 samples, 0.05%)</title><rect x="331.7" y="709" width="0.5" height="15.0" fill="rgb(244,183,43)" rx="2" ry="2" /> | |
| <text x="334.65" y="719.5" ></text> | |
| </g> | |
| <g > | |
| <title>import_iovec (24,610,511 samples, 0.01%)</title><rect x="1108.0" y="309" width="0.1" height="15.0" fill="rgb(241,168,40)" rx="2" ry="2" /> | |
| <text x="1110.98" y="319.5" ></text> | |
| </g> | |
| <g > | |
| <title>strpbrk (131,535,517 samples, 0.07%)</title><rect x="964.3" y="693" width="0.9" height="15.0" fill="rgb(250,210,50)" rx="2" ry="2" /> | |
| <text x="967.33" y="703.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_use_program (15,580,007 samples, 0.01%)</title><rect x="1155.6" y="661" width="0.1" height="15.0" fill="rgb(235,141,33)" rx="2" ry="2" /> | |
| <text x="1158.56" y="671.5" ></text> | |
| </g> | |
| <g > | |
| <title>vbo_exec_FlushVertices (24,943,396 samples, 0.01%)</title><rect x="987.1" y="629" width="0.2" height="15.0" fill="rgb(226,100,24)" rx="2" ry="2" /> | |
| <text x="990.14" y="639.5" ></text> | |
| </g> | |
| <g > | |
| <title>__audit_syscall_exit (21,249,910 samples, 0.01%)</title><rect x="501.5" y="677" width="0.1" height="15.0" fill="rgb(218,62,14)" rx="2" ry="2" /> | |
| <text x="504.47" y="687.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_glthread_finish (30,219,845 samples, 0.02%)</title><rect x="781.9" y="85" width="0.2" height="15.0" fill="rgb(209,22,5)" rx="2" ry="2" /> | |
| <text x="784.92" y="95.5" ></text> | |
| </g> | |
| <g > | |
| <title>si_query_hw_prepare_buffer (35,659,752 samples, 0.02%)</title><rect x="49.2" y="725" width="0.3" height="15.0" fill="rgb(243,178,42)" rx="2" ry="2" /> | |
| <text x="52.24" y="735.5" ></text> | |
| </g> | |
| <g > | |
| <title>st_get_texture_sampler_view_from_stobj (27,961,972 samples, 0.02%)</title><rect x="866.0" y="549" width="0.2" height="15.0" fill="rgb(211,32,7)" rx="2" ry="2" /> | |
| <text x="868.98" y="559.5" ></text> | |
| </g> | |
| <g > | |
| <title>memcmp (25,186,818 samples, 0.01%)</title><rect x="476.5" y="741" width="0.1" height="15.0" fill="rgb(235,141,33)" rx="2" ry="2" /> | |
| <text x="479.48" y="751.5" ></text> | |
| </g> | |
| <g > | |
| <title>pthread_cond_signal@@GLIBC_2.17 (91,131,611 samples, 0.05%)</title><rect x="976.7" y="645" width="0.6" height="15.0" fill="rgb(232,126,30)" rx="2" ry="2" /> | |
| <text x="979.69" y="655.5" ></text> | |
| </g> | |
| <g > | |
| <title>el0t_64_sync_handler (26,534,506 samples, 0.01%)</title><rect x="418.8" y="613" width="0.2" height="15.0" fill="rgb(211,32,7)" rx="2" ry="2" /> | |
| <text x="421.81" y="623.5" ></text> | |
| </g> | |
| <g > | |
| <title>st_get_sampler_views (491,980,015 samples, 0.27%)</title><rect x="852.7" y="565" width="3.2" height="15.0" fill="rgb(224,91,21)" rx="2" ry="2" /> | |
| <text x="855.71" y="575.5" ></text> | |
| </g> | |
| <g > | |
| <title>_raw_spin_unlock_irqrestore (42,024,958 samples, 0.02%)</title><rect x="976.9" y="469" width="0.3" height="15.0" fill="rgb(228,106,25)" rx="2" ry="2" /> | |
| <text x="979.91" y="479.5" ></text> | |
| </g> | |
| <g > | |
| <title>unix_stream_read_generic (18,097,012 samples, 0.01%)</title><rect x="374.6" y="373" width="0.2" height="15.0" fill="rgb(244,180,43)" rx="2" ry="2" /> | |
| <text x="377.64" y="383.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_validated_drawrangeelements (53,063,734 samples, 0.03%)</title><rect x="849.8" y="597" width="0.4" height="15.0" fill="rgb(230,115,27)" rx="2" ry="2" /> | |
| <text x="852.80" y="607.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_lookup_or_create_texture (55,937,066 samples, 0.03%)</title><rect x="1077.8" y="677" width="0.4" height="15.0" fill="rgb(235,140,33)" rx="2" ry="2" /> | |
| <text x="1080.79" y="687.5" ></text> | |
| </g> | |
| <g > | |
| <title>st_prepare_draw (228,470,681 samples, 0.13%)</title><rect x="827.5" y="581" width="1.5" height="15.0" fill="rgb(214,45,10)" rx="2" ry="2" /> | |
| <text x="830.52" y="591.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_uniform (18,676,954 samples, 0.01%)</title><rect x="1019.5" y="645" width="0.1" height="15.0" fill="rgb(248,201,48)" rx="2" ry="2" /> | |
| <text x="1022.48" y="655.5" ></text> | |
| </g> | |
| <g > | |
| <title>amdgpu_cs_flush (1,174,433,095 samples, 0.65%)</title><rect x="531.7" y="693" width="7.6" height="15.0" fill="rgb(205,1,0)" rx="2" ry="2" /> | |
| <text x="534.67" y="703.5" ></text> | |
| </g> | |
| <g > | |
| <title>update_program (332,429,589 samples, 0.18%)</title><rect x="392.2" y="741" width="2.2" height="15.0" fill="rgb(236,145,34)" rx="2" ry="2" /> | |
| <text x="395.21" y="751.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_unmarshal_Disable (26,891,881 samples, 0.01%)</title><rect x="989.4" y="677" width="0.2" height="15.0" fill="rgb(253,223,53)" rx="2" ry="2" /> | |
| <text x="992.40" y="687.5" ></text> | |
| </g> | |
| <g > | |
| <title>si_buffer_transfer_unmap (188,676,716 samples, 0.10%)</title><rect x="76.1" y="773" width="1.2" height="15.0" fill="rgb(221,75,18)" rx="2" ry="2" /> | |
| <text x="79.11" y="783.5" ></text> | |
| </g> | |
| <g > | |
| <title>hud_stop_queries (28,617,217 samples, 0.02%)</title><rect x="513.0" y="693" width="0.2" height="15.0" fill="rgb(231,121,29)" rx="2" ry="2" /> | |
| <text x="515.99" y="703.5" ></text> | |
| </g> | |
| <g > | |
| <title>xcb_poll_for_special_event (41,811,587 samples, 0.02%)</title><rect x="374.6" y="629" width="0.2" height="15.0" fill="rgb(224,90,21)" rx="2" ry="2" /> | |
| <text x="377.57" y="639.5" ></text> | |
| </g> | |
| <g > | |
| <title>si_fast_clear (30,984,040 samples, 0.02%)</title><rect x="80.1" y="757" width="0.2" height="15.0" fill="rgb(234,135,32)" rx="2" ry="2" /> | |
| <text x="83.09" y="767.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_unmarshal_Uniform1fv (39,534,328 samples, 0.02%)</title><rect x="1019.2" y="677" width="0.2" height="15.0" fill="rgb(231,122,29)" rx="2" ry="2" /> | |
| <text x="1022.19" y="687.5" ></text> | |
| </g> | |
| <g > | |
| <title>st_prepare_draw (126,355,471 samples, 0.07%)</title><rect x="811.0" y="581" width="0.8" height="15.0" fill="rgb(214,45,10)" rx="2" ry="2" /> | |
| <text x="813.96" y="591.5" ></text> | |
| </g> | |
| <g > | |
| <title>el0t_64_sync_handler (32,255,024 samples, 0.02%)</title><rect x="956.3" y="597" width="0.2" height="15.0" fill="rgb(211,32,7)" rx="2" ry="2" /> | |
| <text x="959.29" y="607.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_unmarshal_EnableVertexAttribArray (24,815,456 samples, 0.01%)</title><rect x="457.9" y="805" width="0.1" height="15.0" fill="rgb(218,64,15)" rx="2" ry="2" /> | |
| <text x="460.86" y="815.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_unmarshal_BindTexture (532,277,437 samples, 0.29%)</title><rect x="923.3" y="661" width="3.5" height="15.0" fill="rgb(248,199,47)" rx="2" ry="2" /> | |
| <text x="926.33" y="671.5" ></text> | |
| </g> | |
| <g > | |
| <title>__aarch64_ldadd4_acq_rel (52,359,005 samples, 0.03%)</title><rect x="832.7" y="597" width="0.3" height="15.0" fill="rgb(228,108,25)" rx="2" ry="2" /> | |
| <text x="835.70" y="607.5" ></text> | |
| </g> | |
| <g > | |
| <title>strcspn (127,319,735 samples, 0.07%)</title><rect x="1044.4" y="693" width="0.8" height="15.0" fill="rgb(218,61,14)" rx="2" ry="2" /> | |
| <text x="1047.38" y="703.5" ></text> | |
| </g> | |
| <g > | |
| <title>__aarch64_ldadd4_acq_rel (77,109,113 samples, 0.04%)</title><rect x="921.6" y="661" width="0.5" height="15.0" fill="rgb(228,108,25)" rx="2" ry="2" /> | |
| <text x="924.57" y="671.5" ></text> | |
| </g> | |
| <g > | |
| <title>[redeclipse] (5,375,025,984 samples, 2.98%)</title><rect x="768.0" y="517" width="35.1" height="15.0" fill="rgb(253,222,53)" rx="2" ry="2" /> | |
| <text x="771.00" y="527.5" >[r..</text> | |
| </g> | |
| <g > | |
| <title>invoke_syscall (111,330,756 samples, 0.06%)</title><rect x="458.9" y="597" width="0.7" height="15.0" fill="rgb(209,18,4)" rx="2" ry="2" /> | |
| <text x="461.92" y="607.5" ></text> | |
| </g> | |
| <g > | |
| <title>deflate (39,219,705 samples, 0.02%)</title><rect x="884.1" y="693" width="0.2" height="15.0" fill="rgb(230,115,27)" rx="2" ry="2" /> | |
| <text x="887.07" y="703.5" ></text> | |
| </g> | |
| <g > | |
| <title>st_get_sampler_views (16,263,095 samples, 0.01%)</title><rect x="998.8" y="597" width="0.1" height="15.0" fill="rgb(224,91,21)" rx="2" ry="2" /> | |
| <text x="1001.79" y="607.5" ></text> | |
| </g> | |
| <g > | |
| <title>glDrawArrays (19,134,134 samples, 0.01%)</title><rect x="957.9" y="709" width="0.1" height="15.0" fill="rgb(235,140,33)" rx="2" ry="2" /> | |
| <text x="960.90" y="719.5" ></text> | |
| </g> | |
| <g > | |
| <title>cso_set_samplers (39,960,288 samples, 0.02%)</title><rect x="1126.4" y="629" width="0.3" height="15.0" fill="rgb(215,48,11)" rx="2" ry="2" /> | |
| <text x="1129.43" y="639.5" ></text> | |
| </g> | |
| <g > | |
| <title>cso_set_vertex_elements (221,844,049 samples, 0.12%)</title><rect x="451.5" y="725" width="1.5" height="15.0" fill="rgb(238,152,36)" rx="2" ry="2" /> | |
| <text x="454.51" y="735.5" ></text> | |
| </g> | |
| <g > | |
| <title>___vsnprintf (33,516,494 samples, 0.02%)</title><rect x="512.5" y="677" width="0.2" height="15.0" fill="rgb(249,205,49)" rx="2" ry="2" /> | |
| <text x="515.49" y="687.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_update_texture_state (30,513,518 samples, 0.02%)</title><rect x="812.3" y="549" width="0.2" height="15.0" fill="rgb(237,148,35)" rx="2" ry="2" /> | |
| <text x="815.32" y="559.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_get_min_invocations_per_fragment (24,169,246 samples, 0.01%)</title><rect x="407.2" y="725" width="0.2" height="15.0" fill="rgb(246,190,45)" rx="2" ry="2" /> | |
| <text x="410.22" y="735.5" ></text> | |
| </g> | |
| <g > | |
| <title>glthread_unmarshal_batch (16,632,353 samples, 0.01%)</title><rect x="502.0" y="805" width="0.1" height="15.0" fill="rgb(247,195,46)" rx="2" ry="2" /> | |
| <text x="504.98" y="815.5" ></text> | |
| </g> | |
| <g > | |
| <title>syscall_trace_exit (23,026,791 samples, 0.01%)</title><rect x="501.5" y="693" width="0.1" height="15.0" fill="rgb(247,196,46)" rx="2" ry="2" /> | |
| <text x="504.47" y="703.5" ></text> | |
| </g> | |
| <g > | |
| <title>___sys_recvmsg (25,676,573 samples, 0.01%)</title><rect x="374.6" y="437" width="0.2" height="15.0" fill="rgb(238,153,36)" rx="2" ry="2" /> | |
| <text x="377.60" y="447.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_unmarshal_DrawArraysInstanced (348,076,115 samples, 0.19%)</title><rect x="928.2" y="661" width="2.3" height="15.0" fill="rgb(209,20,4)" rx="2" ry="2" /> | |
| <text x="931.22" y="671.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_test_framebuffer_completeness (73,834,738 samples, 0.04%)</title><rect x="988.0" y="597" width="0.4" height="15.0" fill="rgb(229,113,27)" rx="2" ry="2" /> | |
| <text x="990.96" y="607.5" ></text> | |
| </g> | |
| <g > | |
| <title>st_upload_constants (25,906,264 samples, 0.01%)</title><rect x="1082.5" y="645" width="0.2" height="15.0" fill="rgb(238,154,36)" rx="2" ry="2" /> | |
| <text x="1085.51" y="655.5" ></text> | |
| </g> | |
| <g > | |
| <title>__aarch64_ldadd4_rel (33,556,843 samples, 0.02%)</title><rect x="252.0" y="773" width="0.2" height="15.0" fill="rgb(238,153,36)" rx="2" ry="2" /> | |
| <text x="254.99" y="783.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_validated_drawrangeelements (1,235,819,035 samples, 0.68%)</title><rect x="869.6" y="613" width="8.1" height="15.0" fill="rgb(230,115,27)" rx="2" ry="2" /> | |
| <text x="872.62" y="623.5" ></text> | |
| </g> | |
| <g > | |
| <title>__aarch64_ldadd4_acq_rel (106,441,184 samples, 0.06%)</title><rect x="37.5" y="757" width="0.7" height="15.0" fill="rgb(228,108,25)" rx="2" ry="2" /> | |
| <text x="40.52" y="767.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_reference_program_ (100,325,310 samples, 0.06%)</title><rect x="407.6" y="725" width="0.7" height="15.0" fill="rgb(231,122,29)" rx="2" ry="2" /> | |
| <text x="410.61" y="735.5" ></text> | |
| </g> | |
| <g > | |
| <title>unmap_buffer (50,559,352 samples, 0.03%)</title><rect x="829.8" y="613" width="0.3" height="15.0" fill="rgb(233,131,31)" rx="2" ry="2" /> | |
| <text x="832.78" y="623.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_use_program (222,376,129 samples, 0.12%)</title><rect x="1025.5" y="629" width="1.4" height="15.0" fill="rgb(235,141,33)" rx="2" ry="2" /> | |
| <text x="1028.49" y="639.5" ></text> | |
| </g> | |
| <g > | |
| <title>futex_wait (24,378,508 samples, 0.01%)</title><rect x="843.4" y="485" width="0.2" height="15.0" fill="rgb(235,138,33)" rx="2" ry="2" /> | |
| <text x="846.45" y="495.5" ></text> | |
| </g> | |
| <g > | |
| <title>tc_buffer_unmap (32,216,214 samples, 0.02%)</title><rect x="829.8" y="581" width="0.3" height="15.0" fill="rgb(231,119,28)" rx="2" ry="2" /> | |
| <text x="832.84" y="591.5" ></text> | |
| </g> | |
| <g > | |
| <title>do_el0_svc (57,196,568 samples, 0.03%)</title><rect x="14.8" y="677" width="0.3" height="15.0" fill="rgb(218,60,14)" rx="2" ry="2" /> | |
| <text x="17.75" y="687.5" ></text> | |
| </g> | |
| <g > | |
| <title>amdgpu_bo_map (1,093,327,315 samples, 0.61%)</title><rect x="895.5" y="613" width="7.1" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" /> | |
| <text x="898.49" y="623.5" ></text> | |
| </g> | |
| <g > | |
| <title>__aarch64_swp4_acq (28,087,474 samples, 0.02%)</title><rect x="34.4" y="773" width="0.1" height="15.0" fill="rgb(205,4,0)" rx="2" ry="2" /> | |
| <text x="37.36" y="783.5" ></text> | |
| </g> | |
| <g > | |
| <title>buffer_data_error (20,183,099 samples, 0.01%)</title><rect x="987.7" y="661" width="0.1" height="15.0" fill="rgb(213,38,9)" rx="2" ry="2" /> | |
| <text x="990.71" y="671.5" ></text> | |
| </g> | |
| <g > | |
| <title>invoke_syscall (45,460,172 samples, 0.03%)</title><rect x="36.4" y="693" width="0.3" height="15.0" fill="rgb(209,18,4)" rx="2" ry="2" /> | |
| <text x="39.43" y="703.5" ></text> | |
| </g> | |
| <g > | |
| <title>update_array.constprop.0 (62,343,956 samples, 0.03%)</title><rect x="953.3" y="629" width="0.4" height="15.0" fill="rgb(224,88,21)" rx="2" ry="2" /> | |
| <text x="956.25" y="639.5" ></text> | |
| </g> | |
| <g > | |
| <title>__GI_____strtod_l_internal (16,948,310 samples, 0.01%)</title><rect x="785.3" y="149" width="0.1" height="15.0" fill="rgb(209,20,4)" rx="2" ry="2" /> | |
| <text x="788.31" y="159.5" ></text> | |
| </g> | |
| <g > | |
| <title>pa_fdsem_post (16,784,005 samples, 0.01%)</title><rect x="12.8" y="725" width="0.1" height="15.0" fill="rgb(248,201,48)" rx="2" ry="2" /> | |
| <text x="15.77" y="735.5" ></text> | |
| </g> | |
| <g > | |
| <title>st_finalize_texture (24,575,899 samples, 0.01%)</title><rect x="1087.8" y="581" width="0.2" height="15.0" fill="rgb(232,124,29)" rx="2" ry="2" /> | |
| <text x="1090.84" y="591.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_reference_texobj_ (605,458,414 samples, 0.34%)</title><rect x="364.4" y="773" width="3.9" height="15.0" fill="rgb(229,111,26)" rx="2" ry="2" /> | |
| <text x="367.37" y="783.5" ></text> | |
| </g> | |
| <g > | |
| <title>st_upload_constants (132,656,664 samples, 0.07%)</title><rect x="995.0" y="629" width="0.9" height="15.0" fill="rgb(238,154,36)" rx="2" ry="2" /> | |
| <text x="998.03" y="639.5" ></text> | |
| </g> | |
| <g > | |
| <title>_raw_spin_unlock_irqrestore (81,859,193 samples, 0.05%)</title><rect x="191.3" y="517" width="0.6" height="15.0" fill="rgb(228,106,25)" rx="2" ry="2" /> | |
| <text x="194.32" y="527.5" ></text> | |
| </g> | |
| <g > | |
| <title>Mix_SetPanning (40,286,238 samples, 0.02%)</title><rect x="544.5" y="805" width="0.3" height="15.0" fill="rgb(242,171,40)" rx="2" ry="2" /> | |
| <text x="547.52" y="815.5" ></text> | |
| </g> | |
| <g > | |
| <title>si_buffer_transfer_map (35,740,155 samples, 0.02%)</title><rect x="1072.3" y="677" width="0.2" height="15.0" fill="rgb(237,151,36)" rx="2" ry="2" /> | |
| <text x="1075.28" y="687.5" ></text> | |
| </g> | |
| <g > | |
| <title>si_pm4_emit_shader (630,163,818 samples, 0.35%)</title><rect x="155.2" y="757" width="4.1" height="15.0" fill="rgb(227,102,24)" rx="2" ry="2" /> | |
| <text x="158.19" y="767.5" ></text> | |
| </g> | |
| <g > | |
| <title>si_compute_clear_copy_buffer (205,503,921 samples, 0.11%)</title><rect x="80.5" y="725" width="1.4" height="15.0" fill="rgb(235,141,33)" rx="2" ry="2" /> | |
| <text x="83.52" y="735.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_marshal_Uniform4fv (61,831,490 samples, 0.03%)</title><rect x="883.2" y="693" width="0.4" height="15.0" fill="rgb(228,108,26)" rx="2" ry="2" /> | |
| <text x="886.24" y="703.5" ></text> | |
| </g> | |
| <g > | |
| <title>unix_stream_recvmsg (21,057,204 samples, 0.01%)</title><rect x="374.6" y="389" width="0.2" height="15.0" fill="rgb(251,213,51)" rx="2" ry="2" /> | |
| <text x="377.62" y="399.5" ></text> | |
| </g> | |
| <g > | |
| <title>el0t_64_sync_handler (43,928,057 samples, 0.02%)</title><rect x="10.7" y="741" width="0.3" height="15.0" fill="rgb(211,32,7)" rx="2" ry="2" /> | |
| <text x="13.69" y="751.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_update_state (28,664,800 samples, 0.02%)</title><rect x="867.3" y="597" width="0.2" height="15.0" fill="rgb(222,78,18)" rx="2" ry="2" /> | |
| <text x="870.33" y="607.5" ></text> | |
| </g> | |
| <g > | |
| <title>el0_svc_common.constprop.0 (37,287,209 samples, 0.02%)</title><rect x="16.9" y="677" width="0.2" height="15.0" fill="rgb(224,89,21)" rx="2" ry="2" /> | |
| <text x="19.88" y="687.5" ></text> | |
| </g> | |
| <g > | |
| <title>__rseq_handle_notify_resume (104,478,983 samples, 0.06%)</title><rect x="250.7" y="693" width="0.7" height="15.0" fill="rgb(238,153,36)" rx="2" ry="2" /> | |
| <text x="253.68" y="703.5" ></text> | |
| </g> | |
| <g > | |
| <title>util_queue_add_job_locked.part.0 (32,787,136 samples, 0.02%)</title><rect x="418.8" y="693" width="0.2" height="15.0" fill="rgb(243,177,42)" rx="2" ry="2" /> | |
| <text x="421.77" y="703.5" ></text> | |
| </g> | |
| <g > | |
| <title>pthread_cond_signal@@GLIBC_2.17 (20,120,129 samples, 0.01%)</title><rect x="805.9" y="565" width="0.1" height="15.0" fill="rgb(232,126,30)" rx="2" ry="2" /> | |
| <text x="808.86" y="575.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_update_texture_state (66,611,195 samples, 0.04%)</title><rect x="932.0" y="581" width="0.5" height="15.0" fill="rgb(237,148,35)" rx="2" ry="2" /> | |
| <text x="935.02" y="591.5" ></text> | |
| </g> | |
| <g > | |
| <title>validate_uniform_parameters (90,184,898 samples, 0.05%)</title><rect x="475.4" y="741" width="0.6" height="15.0" fill="rgb(234,137,32)" rx="2" ry="2" /> | |
| <text x="478.38" y="751.5" ></text> | |
| </g> | |
| <g > | |
| <title>tc_buffer_map (211,823,776 samples, 0.12%)</title><rect x="1167.8" y="725" width="1.4" height="15.0" fill="rgb(247,195,46)" rx="2" ry="2" /> | |
| <text x="1170.81" y="735.5" ></text> | |
| </g> | |
| <g > | |
| <title>si_bind_vs_shader (199,162,956 samples, 0.11%)</title><rect x="66.3" y="773" width="1.3" height="15.0" fill="rgb(252,216,51)" rx="2" ry="2" /> | |
| <text x="69.32" y="783.5" ></text> | |
| </g> | |
| <g > | |
| <title>amdgpu_bo_map (64,963,511 samples, 0.04%)</title><rect x="1034.1" y="645" width="0.4" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" /> | |
| <text x="1037.07" y="655.5" ></text> | |
| </g> | |
| <g > | |
| <title>el0t_64_irq (16,020,625 samples, 0.01%)</title><rect x="128.1" y="773" width="0.2" height="15.0" fill="rgb(247,194,46)" rx="2" ry="2" /> | |
| <text x="131.15" y="783.5" ></text> | |
| </g> | |
| <g > | |
| <title>slab_alloc (95,514,477 samples, 0.05%)</title><rect x="904.7" y="581" width="0.6" height="15.0" fill="rgb(221,74,17)" rx="2" ry="2" /> | |
| <text x="907.72" y="591.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_unmarshal_Uniform4fv (183,822,933 samples, 0.10%)</title><rect x="857.2" y="645" width="1.2" height="15.0" fill="rgb(212,33,8)" rx="2" ry="2" /> | |
| <text x="860.24" y="655.5" ></text> | |
| </g> | |
| <g > | |
| <title>pa_mainloop_dispatch (279,476,743 samples, 0.15%)</title><rect x="11.4" y="789" width="1.8" height="15.0" fill="rgb(233,129,31)" rx="2" ry="2" /> | |
| <text x="14.37" y="799.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_unmarshal_Enable (30,409,030 samples, 0.02%)</title><rect x="1017.1" y="677" width="0.2" height="15.0" fill="rgb(207,12,3)" rx="2" ry="2" /> | |
| <text x="1020.15" y="687.5" ></text> | |
| </g> | |
| <g > | |
| <title>invoke_syscall (63,616,806 samples, 0.04%)</title><rect x="542.9" y="597" width="0.4" height="15.0" fill="rgb(209,18,4)" rx="2" ry="2" /> | |
| <text x="545.90" y="607.5" ></text> | |
| </g> | |
| <g > | |
| <title>__vsnprintf_internal (17,928,420 samples, 0.01%)</title><rect x="785.7" y="149" width="0.1" height="15.0" fill="rgb(237,150,35)" rx="2" ry="2" /> | |
| <text x="788.68" y="159.5" ></text> | |
| </g> | |
| <g > | |
| <title>st_get_texture_sampler_view_from_stobj (183,531,614 samples, 0.10%)</title><rect x="854.1" y="533" width="1.2" height="15.0" fill="rgb(211,32,7)" rx="2" ry="2" /> | |
| <text x="857.11" y="543.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_uniform_matrix (45,280,532 samples, 0.03%)</title><rect x="1065.6" y="661" width="0.3" height="15.0" fill="rgb(215,47,11)" rx="2" ry="2" /> | |
| <text x="1068.61" y="671.5" ></text> | |
| </g> | |
| <g > | |
| <title>amdgpu_fence_destroy (46,451,632 samples, 0.03%)</title><rect x="190.1" y="741" width="0.3" height="15.0" fill="rgb(225,92,22)" rx="2" ry="2" /> | |
| <text x="193.07" y="751.5" ></text> | |
| </g> | |
| <g > | |
| <title>cso_set_vertex_elements_direct (41,828,528 samples, 0.02%)</title><rect x="942.6" y="549" width="0.3" height="15.0" fill="rgb(222,80,19)" rx="2" ry="2" /> | |
| <text x="945.65" y="559.5" ></text> | |
| </g> | |
| <g > | |
| <title>el0_svc_common.constprop.0 (23,671,371 samples, 0.01%)</title><rect x="418.8" y="565" width="0.2" height="15.0" fill="rgb(224,89,21)" rx="2" ry="2" /> | |
| <text x="421.83" y="575.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_unmarshal_Scissor (16,603,825 samples, 0.01%)</title><rect x="1019.1" y="677" width="0.1" height="15.0" fill="rgb(230,117,28)" rx="2" ry="2" /> | |
| <text x="1022.08" y="687.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_DrawArraysInstancedBaseInstance (27,568,925 samples, 0.02%)</title><rect x="1152.7" y="677" width="0.2" height="15.0" fill="rgb(243,178,42)" rx="2" ry="2" /> | |
| <text x="1155.72" y="687.5" ></text> | |
| </g> | |
| <g > | |
| <title>st_get_texture_sampler_view_from_stobj (198,225,836 samples, 0.11%)</title><rect x="939.6" y="565" width="1.3" height="15.0" fill="rgb(211,32,7)" rx="2" ry="2" /> | |
| <text x="942.61" y="575.5" ></text> | |
| </g> | |
| <g > | |
| <title>util_queue_add_job (15,917,302 samples, 0.01%)</title><rect x="1173.3" y="741" width="0.1" height="15.0" fill="rgb(241,167,40)" rx="2" ry="2" /> | |
| <text x="1176.29" y="751.5" ></text> | |
| </g> | |
| <g > | |
| <title>el0t_64_sync (32,255,024 samples, 0.02%)</title><rect x="956.3" y="613" width="0.2" height="15.0" fill="rgb(217,56,13)" rx="2" ry="2" /> | |
| <text x="959.29" y="623.5" ></text> | |
| </g> | |
| <g > | |
| <title>__printf_buffer_write (26,946,695 samples, 0.01%)</title><rect x="820.8" y="629" width="0.2" height="15.0" fill="rgb(220,73,17)" rx="2" ry="2" /> | |
| <text x="823.81" y="639.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_update_texture_state (50,622,017 samples, 0.03%)</title><rect x="1083.7" y="645" width="0.3" height="15.0" fill="rgb(237,148,35)" rx="2" ry="2" /> | |
| <text x="1086.68" y="655.5" ></text> | |
| </g> | |
| <g > | |
| <title>si_execute_clears (217,672,432 samples, 0.12%)</title><rect x="80.5" y="757" width="1.4" height="15.0" fill="rgb(242,171,40)" rx="2" ry="2" /> | |
| <text x="83.47" y="767.5" ></text> | |
| </g> | |
| <g > | |
| <title>el0t_64_sync (65,701,427 samples, 0.04%)</title><rect x="843.4" y="613" width="0.4" height="15.0" fill="rgb(217,56,13)" rx="2" ry="2" /> | |
| <text x="846.41" y="623.5" ></text> | |
| </g> | |
| <g > | |
| <title>__arm64_sys_futex (43,928,057 samples, 0.02%)</title><rect x="10.7" y="661" width="0.3" height="15.0" fill="rgb(247,196,47)" rx="2" ry="2" /> | |
| <text x="13.69" y="671.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_bufferobj_data (188,860,911 samples, 0.10%)</title><rect x="371.3" y="773" width="1.2" height="15.0" fill="rgb(217,57,13)" rx="2" ry="2" /> | |
| <text x="374.26" y="783.5" ></text> | |
| </g> | |
| <g > | |
| <title>tc_call_bind_fs_state (19,460,319 samples, 0.01%)</title><rect x="518.2" y="677" width="0.1" height="15.0" fill="rgb(218,60,14)" rx="2" ry="2" /> | |
| <text x="521.18" y="687.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_validate_DrawElements (19,675,188 samples, 0.01%)</title><rect x="869.5" y="613" width="0.1" height="15.0" fill="rgb(230,119,28)" rx="2" ry="2" /> | |
| <text x="872.49" y="623.5" ></text> | |
| </g> | |
| <g > | |
| <title>cnd_signal (36,777,051 samples, 0.02%)</title><rect x="420.1" y="645" width="0.3" height="15.0" fill="rgb(232,125,30)" rx="2" ry="2" /> | |
| <text x="423.15" y="655.5" ></text> | |
| </g> | |
| <g > | |
| <title>__vsnprintf_internal (22,841,381 samples, 0.01%)</title><rect x="1053.2" y="709" width="0.2" height="15.0" fill="rgb(237,150,35)" rx="2" ry="2" /> | |
| <text x="1056.24" y="719.5" ></text> | |
| </g> | |
| <g > | |
| <title>si_set_constant_buffer (109,310,523 samples, 0.06%)</title><rect x="197.5" y="773" width="0.8" height="15.0" fill="rgb(215,46,11)" rx="2" ry="2" /> | |
| <text x="200.55" y="783.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_reference_program_ (41,164,430 samples, 0.02%)</title><rect x="1025.5" y="613" width="0.3" height="15.0" fill="rgb(231,122,29)" rx="2" ry="2" /> | |
| <text x="1028.50" y="623.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_unmarshal_Uniform3fv (26,717,766 samples, 0.01%)</title><rect x="1064.9" y="693" width="0.1" height="15.0" fill="rgb(218,63,15)" rx="2" ry="2" /> | |
| <text x="1067.87" y="703.5" ></text> | |
| </g> | |
| <g > | |
| <title>hud_run (893,539,738 samples, 0.49%)</title><rect x="510.6" y="725" width="5.9" height="15.0" fill="rgb(223,84,20)" rx="2" ry="2" /> | |
| <text x="513.63" y="735.5" ></text> | |
| </g> | |
| <g > | |
| <title>blitter_set_common_draw_rect_state (19,987,559 samples, 0.01%)</title><rect x="82.1" y="741" width="0.1" height="15.0" fill="rgb(235,139,33)" rx="2" ry="2" /> | |
| <text x="85.07" y="751.5" ></text> | |
| </g> | |
| <g > | |
| <title>copy_uniforms_to_storage (61,293,916 samples, 0.03%)</title><rect x="467.8" y="757" width="0.4" height="15.0" fill="rgb(250,207,49)" rx="2" ry="2" /> | |
| <text x="470.79" y="767.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_DrawElementsBaseVertex (58,089,676 samples, 0.03%)</title><rect x="1154.4" y="693" width="0.4" height="15.0" fill="rgb(214,41,10)" rx="2" ry="2" /> | |
| <text x="1157.42" y="703.5" ></text> | |
| </g> | |
| <g > | |
| <title>tc_add_set_vertex_buffers_call (22,202,958 samples, 0.01%)</title><rect x="1000.2" y="613" width="0.1" height="15.0" fill="rgb(214,45,10)" rx="2" ry="2" /> | |
| <text x="1003.18" y="623.5" ></text> | |
| </g> | |
| <g > | |
| <title>futex_wake (47,550,707 samples, 0.03%)</title><rect x="539.0" y="485" width="0.3" height="15.0" fill="rgb(219,65,15)" rx="2" ry="2" /> | |
| <text x="541.98" y="495.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_update_state_locked (23,666,438 samples, 0.01%)</title><rect x="930.5" y="613" width="0.2" height="15.0" fill="rgb(214,43,10)" rx="2" ry="2" /> | |
| <text x="933.54" y="623.5" ></text> | |
| </g> | |
| <g > | |
| <title>malloc (18,464,398 samples, 0.01%)</title><rect x="789.8" y="213" width="0.2" height="15.0" fill="rgb(230,119,28)" rx="2" ry="2" /> | |
| <text x="792.84" y="223.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_DrawElementsBaseVertex (16,905,037 samples, 0.01%)</title><rect x="782.0" y="37" width="0.1" height="15.0" fill="rgb(214,41,10)" rx="2" ry="2" /> | |
| <text x="784.98" y="47.5" ></text> | |
| </g> | |
| <g > | |
| <title>pthread_cond_signal@@GLIBC_2.17 (99,649,643 samples, 0.06%)</title><rect x="976.6" y="661" width="0.7" height="15.0" fill="rgb(232,126,30)" rx="2" ry="2" /> | |
| <text x="979.64" y="671.5" ></text> | |
| </g> | |
| <g > | |
| <title>mtx_lock (22,796,440 samples, 0.01%)</title><rect x="253.8" y="821" width="0.1" height="15.0" fill="rgb(225,95,22)" rx="2" ry="2" /> | |
| <text x="256.75" y="831.5" ></text> | |
| </g> | |
| <g > | |
| <title>__aarch64_cas4_sync (162,838,104 samples, 0.09%)</title><rect x="1128.3" y="597" width="1.1" height="15.0" fill="rgb(253,222,53)" rx="2" ry="2" /> | |
| <text x="1131.32" y="607.5" ></text> | |
| </g> | |
| <g > | |
| <title>update_textures (85,443,643 samples, 0.05%)</title><rect x="825.3" y="581" width="0.5" height="15.0" fill="rgb(232,125,29)" rx="2" ry="2" /> | |
| <text x="828.26" y="591.5" ></text> | |
| </g> | |
| <g > | |
| <title>__memcpy_generic (20,995,148 samples, 0.01%)</title><rect x="806.6" y="645" width="0.1" height="15.0" fill="rgb(231,124,29)" rx="2" ry="2" /> | |
| <text x="809.61" y="655.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_unmarshal_DisableVertexAttribArray (16,498,730 samples, 0.01%)</title><rect x="989.6" y="677" width="0.1" height="15.0" fill="rgb(214,45,10)" rx="2" ry="2" /> | |
| <text x="992.58" y="687.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_glthread_finish (20,227,052 samples, 0.01%)</title><rect x="1031.2" y="693" width="0.1" height="15.0" fill="rgb(209,22,5)" rx="2" ry="2" /> | |
| <text x="1034.15" y="703.5" ></text> | |
| </g> | |
| <g > | |
| <title>__fdget (34,620,549 samples, 0.02%)</title><rect x="266.2" y="645" width="0.3" height="15.0" fill="rgb(214,41,10)" rx="2" ry="2" /> | |
| <text x="269.25" y="655.5" ></text> | |
| </g> | |
| <g > | |
| <title>_IO_file_seekoff@@GLIBC_2.17 (22,330,204 samples, 0.01%)</title><rect x="1050.5" y="725" width="0.1" height="15.0" fill="rgb(216,53,12)" rx="2" ry="2" /> | |
| <text x="1053.46" y="735.5" ></text> | |
| </g> | |
| <g > | |
| <title>el0t_64_sync_handler (207,866,852 samples, 0.12%)</title><rect x="536.9" y="597" width="1.4" height="15.0" fill="rgb(211,32,7)" rx="2" ry="2" /> | |
| <text x="539.93" y="607.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_VertexAttrib4Nubv (17,872,791 samples, 0.01%)</title><rect x="951.5" y="629" width="0.1" height="15.0" fill="rgb(231,121,29)" rx="2" ry="2" /> | |
| <text x="954.46" y="639.5" ></text> | |
| </g> | |
| <g > | |
| <title>st_update_blend (24,060,137 samples, 0.01%)</title><rect x="936.4" y="597" width="0.1" height="15.0" fill="rgb(250,209,50)" rx="2" ry="2" /> | |
| <text x="939.37" y="607.5" ></text> | |
| </g> | |
| <g > | |
| <title>st_finalize_texture (79,946,337 samples, 0.04%)</title><rect x="855.4" y="517" width="0.5" height="15.0" fill="rgb(232,124,29)" rx="2" ry="2" /> | |
| <text x="858.40" y="527.5" ></text> | |
| </g> | |
| <g > | |
| <title>si_shader_select (307,883,555 samples, 0.17%)</title><rect x="136.3" y="757" width="2.0" height="15.0" fill="rgb(254,227,54)" rx="2" ry="2" /> | |
| <text x="139.32" y="767.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_unmarshal_BufferData (140,395,891 samples, 0.08%)</title><rect x="973.7" y="677" width="1.0" height="15.0" fill="rgb(243,175,41)" rx="2" ry="2" /> | |
| <text x="976.74" y="687.5" ></text> | |
| </g> | |
| <g > | |
| <title>vbo_exec_wrap_upgrade_vertex (23,434,015 samples, 0.01%)</title><rect x="1027.8" y="645" width="0.2" height="15.0" fill="rgb(237,148,35)" rx="2" ry="2" /> | |
| <text x="1030.82" y="655.5" ></text> | |
| </g> | |
| <g > | |
| <title>update_textures (17,695,986 samples, 0.01%)</title><rect x="975.8" y="613" width="0.1" height="15.0" fill="rgb(232,125,29)" rx="2" ry="2" /> | |
| <text x="978.76" y="623.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_unmarshal_DepthRange (17,055,839 samples, 0.01%)</title><rect x="847.1" y="645" width="0.1" height="15.0" fill="rgb(252,219,52)" rx="2" ry="2" /> | |
| <text x="850.11" y="655.5" ></text> | |
| </g> | |
| <g > | |
| <title>el0t_64_sync_handler (73,796,496 samples, 0.04%)</title><rect x="542.8" y="661" width="0.5" height="15.0" fill="rgb(211,32,7)" rx="2" ry="2" /> | |
| <text x="545.84" y="671.5" ></text> | |
| </g> | |
| <g > | |
| <title>vbo_exec_copy_to_current (25,383,163 samples, 0.01%)</title><rect x="992.8" y="613" width="0.2" height="15.0" fill="rgb(218,60,14)" rx="2" ry="2" /> | |
| <text x="995.78" y="623.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_draw_arrays.part.0 (144,285,383 samples, 0.08%)</title><rect x="810.9" y="597" width="1.0" height="15.0" fill="rgb(227,104,25)" rx="2" ry="2" /> | |
| <text x="813.92" y="607.5" ></text> | |
| </g> | |
| <g > | |
| <title>amdgpu_cs_flush (28,915,206 samples, 0.02%)</title><rect x="900.0" y="565" width="0.1" height="15.0" fill="rgb(205,1,0)" rx="2" ry="2" /> | |
| <text x="902.96" y="575.5" ></text> | |
| </g> | |
| <g > | |
| <title>_raw_spin_lock (128,579,666 samples, 0.07%)</title><rect x="321.2" y="565" width="0.9" height="15.0" fill="rgb(239,160,38)" rx="2" ry="2" /> | |
| <text x="324.23" y="575.5" ></text> | |
| </g> | |
| <g > | |
| <title>__memcpy_generic (93,152,692 samples, 0.05%)</title><rect x="819.3" y="677" width="0.6" height="15.0" fill="rgb(231,124,29)" rx="2" ry="2" /> | |
| <text x="822.26" y="687.5" ></text> | |
| </g> | |
| <g > | |
| <title>[redeclipse] (105,189,987,668 samples, 58.26%)</title><rect x="502.1" y="885" width="687.5" height="15.0" fill="rgb(253,222,53)" rx="2" ry="2" /> | |
| <text x="505.09" y="895.5" >[redeclipse]</text> | |
| </g> | |
| <g > | |
| <title>st_prepare_draw (100,215,680 samples, 0.06%)</title><rect x="993.7" y="629" width="0.6" height="15.0" fill="rgb(214,45,10)" rx="2" ry="2" /> | |
| <text x="996.68" y="639.5" ></text> | |
| </g> | |
| <g > | |
| <title>__sincosf (83,599,032 samples, 0.05%)</title><rect x="968.3" y="725" width="0.5" height="15.0" fill="rgb(246,188,45)" rx="2" ry="2" /> | |
| <text x="971.26" y="735.5" ></text> | |
| </g> | |
| <g > | |
| <title>validate_uniform_parameters (49,277,878 samples, 0.03%)</title><rect x="1138.8" y="661" width="0.3" height="15.0" fill="rgb(234,137,32)" rx="2" ry="2" /> | |
| <text x="1141.75" y="671.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_reference_texobj_ (351,688,598 samples, 0.19%)</title><rect x="382.7" y="725" width="2.3" height="15.0" fill="rgb(229,111,26)" rx="2" ry="2" /> | |
| <text x="385.74" y="735.5" ></text> | |
| </g> | |
| <g > | |
| <title>__isoc23_strtoul (16,871,207 samples, 0.01%)</title><rect x="967.0" y="725" width="0.1" height="15.0" fill="rgb(243,178,42)" rx="2" ry="2" /> | |
| <text x="970.01" y="735.5" ></text> | |
| </g> | |
| <g > | |
| <title>el0t_64_sync (40,380,146 samples, 0.02%)</title><rect x="15.2" y="709" width="0.3" height="15.0" fill="rgb(217,56,13)" rx="2" ry="2" /> | |
| <text x="18.19" y="719.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_reference_program_ (44,592,314 samples, 0.02%)</title><rect x="1118.2" y="629" width="0.3" height="15.0" fill="rgb(231,122,29)" rx="2" ry="2" /> | |
| <text x="1121.20" y="639.5" ></text> | |
| </g> | |
| <g > | |
| <title>strcmp (145,749,644 samples, 0.08%)</title><rect x="1043.2" y="725" width="0.9" height="15.0" fill="rgb(217,58,13)" rx="2" ry="2" /> | |
| <text x="1046.18" y="735.5" ></text> | |
| </g> | |
| <g > | |
| <title>st_update_vp (20,410,718 samples, 0.01%)</title><rect x="937.3" y="597" width="0.1" height="15.0" fill="rgb(254,227,54)" rx="2" ry="2" /> | |
| <text x="940.29" y="607.5" ></text> | |
| </g> | |
| <g > | |
| <title>el0_svc (137,840,135 samples, 0.08%)</title><rect x="530.7" y="629" width="0.9" height="15.0" fill="rgb(244,183,43)" rx="2" ry="2" /> | |
| <text x="533.68" y="639.5" ></text> | |
| </g> | |
| <g > | |
| <title>set_viewport_no_notify (30,403,628 samples, 0.02%)</title><rect x="494.1" y="757" width="0.2" height="15.0" fill="rgb(216,51,12)" rx="2" ry="2" /> | |
| <text x="497.08" y="767.5" ></text> | |
| </g> | |
| <g > | |
| <title>mktime (916,826,357 samples, 0.51%)</title><rect x="1181.2" y="805" width="6.0" height="15.0" fill="rgb(233,133,31)" rx="2" ry="2" /> | |
| <text x="1184.22" y="815.5" ></text> | |
| </g> | |
| <g > | |
| <title>futex_wait (215,521,559 samples, 0.12%)</title><rect x="29.2" y="629" width="1.4" height="15.0" fill="rgb(235,138,33)" rx="2" ry="2" /> | |
| <text x="32.16" y="639.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_update_state_locked (104,391,765 samples, 0.06%)</title><rect x="1002.7" y="613" width="0.7" height="15.0" fill="rgb(214,43,10)" rx="2" ry="2" /> | |
| <text x="1005.71" y="623.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_reference_shader_program_ (20,888,659 samples, 0.01%)</title><rect x="1143.6" y="661" width="0.1" height="15.0" fill="rgb(241,168,40)" rx="2" ry="2" /> | |
| <text x="1146.59" y="671.5" ></text> | |
| </g> | |
| <g > | |
| <title>tc_batch_execute (32,037,204 samples, 0.02%)</title><rect x="885.2" y="597" width="0.2" height="15.0" fill="rgb(249,205,49)" rx="2" ry="2" /> | |
| <text x="888.19" y="607.5" ></text> | |
| </g> | |
| <g > | |
| <title>si_upload_descriptors (20,217,988 samples, 0.01%)</title><rect x="889.8" y="533" width="0.2" height="15.0" fill="rgb(233,131,31)" rx="2" ry="2" /> | |
| <text x="892.83" y="543.5" ></text> | |
| </g> | |
| <g > | |
| <title>malloc (18,187,244 samples, 0.01%)</title><rect x="1035.8" y="725" width="0.1" height="15.0" fill="rgb(230,119,28)" rx="2" ry="2" /> | |
| <text x="1038.80" y="735.5" ></text> | |
| </g> | |
| <g > | |
| <title>futex_wake (282,063,625 samples, 0.16%)</title><rect x="342.5" y="661" width="1.8" height="15.0" fill="rgb(219,65,15)" rx="2" ry="2" /> | |
| <text x="345.46" y="671.5" ></text> | |
| </g> | |
| <g > | |
| <title>tc_flush (246,557,743 samples, 0.14%)</title><rect x="458.4" y="773" width="1.6" height="15.0" fill="rgb(233,132,31)" rx="2" ry="2" /> | |
| <text x="461.41" y="783.5" ></text> | |
| </g> | |
| <g > | |
| <title>do_futex (122,840,746 samples, 0.07%)</title><rect x="191.1" y="565" width="0.8" height="15.0" fill="rgb(245,184,44)" rx="2" ry="2" /> | |
| <text x="194.06" y="575.5" ></text> | |
| </g> | |
| <g > | |
| <title>st_get_sampler_views (270,818,102 samples, 0.15%)</title><rect x="1012.9" y="597" width="1.8" height="15.0" fill="rgb(224,91,21)" rx="2" ry="2" /> | |
| <text x="1015.93" y="607.5" ></text> | |
| </g> | |
| <g > | |
| <title>update_shader_samplers (163,589,304 samples, 0.09%)</title><rect x="938.3" y="597" width="1.1" height="15.0" fill="rgb(229,113,27)" rx="2" ry="2" /> | |
| <text x="941.33" y="607.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_update_state_locked (16,292,478 samples, 0.01%)</title><rect x="826.2" y="581" width="0.1" height="15.0" fill="rgb(214,43,10)" rx="2" ry="2" /> | |
| <text x="829.24" y="591.5" ></text> | |
| </g> | |
| <g > | |
| <title>el0t_64_sync_handler (127,320,407 samples, 0.07%)</title><rect x="1173.6" y="661" width="0.8" height="15.0" fill="rgb(211,32,7)" rx="2" ry="2" /> | |
| <text x="1176.57" y="671.5" ></text> | |
| </g> | |
| <g > | |
| <title>strchr (33,404,843 samples, 0.02%)</title><rect x="807.5" y="645" width="0.2" height="15.0" fill="rgb(237,147,35)" rx="2" ry="2" /> | |
| <text x="810.48" y="655.5" ></text> | |
| </g> | |
| <g > | |
| <title>futex_wait_queue (20,974,578 samples, 0.01%)</title><rect x="530.8" y="501" width="0.2" height="15.0" fill="rgb(225,92,22)" rx="2" ry="2" /> | |
| <text x="533.84" y="511.5" ></text> | |
| </g> | |
| <g > | |
| <title>audit_reset_context.part.0.constprop.0 (37,157,638 samples, 0.02%)</title><rect x="31.1" y="645" width="0.3" height="15.0" fill="rgb(248,200,47)" rx="2" ry="2" /> | |
| <text x="34.14" y="655.5" ></text> | |
| </g> | |
| <g > | |
| <title>update_shader_samplers (38,680,788 samples, 0.02%)</title><rect x="825.0" y="581" width="0.3" height="15.0" fill="rgb(229,113,27)" rx="2" ry="2" /> | |
| <text x="828.00" y="591.5" ></text> | |
| </g> | |
| <g > | |
| <title>loader_dri3_get_buffers (57,815,429 samples, 0.03%)</title><rect x="374.5" y="677" width="0.4" height="15.0" fill="rgb(250,209,50)" rx="2" ry="2" /> | |
| <text x="377.49" y="687.5" ></text> | |
| </g> | |
| <g > | |
| <title>util_sparse_array_get (19,836,650 samples, 0.01%)</title><rect x="923.0" y="597" width="0.1" height="15.0" fill="rgb(241,168,40)" rx="2" ry="2" /> | |
| <text x="925.95" y="607.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_reference_texobj_ (35,910,207 samples, 0.02%)</title><rect x="1003.5" y="597" width="0.2" height="15.0" fill="rgb(229,111,26)" rx="2" ry="2" /> | |
| <text x="1006.46" y="607.5" ></text> | |
| </g> | |
| <g > | |
| <title>tc_buffer_unmap (67,485,352 samples, 0.04%)</title><rect x="1023.6" y="645" width="0.4" height="15.0" fill="rgb(231,119,28)" rx="2" ry="2" /> | |
| <text x="1026.55" y="655.5" ></text> | |
| </g> | |
| <g > | |
| <title>strpbrk (128,800,283 samples, 0.07%)</title><rect x="1044.4" y="709" width="0.8" height="15.0" fill="rgb(250,210,50)" rx="2" ry="2" /> | |
| <text x="1047.37" y="719.5" ></text> | |
| </g> | |
| <g > | |
| <title>rseq_get_rseq_cs.isra.0 (32,056,525 samples, 0.02%)</title><rect x="250.7" y="677" width="0.2" height="15.0" fill="rgb(210,26,6)" rx="2" ry="2" /> | |
| <text x="253.72" y="687.5" ></text> | |
| </g> | |
| <g > | |
| <title>invoke_syscall (144,015,407 samples, 0.08%)</title><rect x="252.7" y="709" width="0.9" height="15.0" fill="rgb(209,18,4)" rx="2" ry="2" /> | |
| <text x="255.66" y="719.5" ></text> | |
| </g> | |
| <g > | |
| <title>el0_svc (182,192,566 samples, 0.10%)</title><rect x="252.6" y="757" width="1.1" height="15.0" fill="rgb(244,183,43)" rx="2" ry="2" /> | |
| <text x="255.56" y="767.5" ></text> | |
| </g> | |
| <g > | |
| <title>tc_invalidate_buffer (172,600,168 samples, 0.10%)</title><rect x="371.3" y="757" width="1.1" height="15.0" fill="rgb(223,85,20)" rx="2" ry="2" /> | |
| <text x="374.28" y="767.5" ></text> | |
| </g> | |
| <g > | |
| <title>__aarch64_ldadd4_acq_rel (22,163,151 samples, 0.01%)</title><rect x="1003.5" y="581" width="0.1" height="15.0" fill="rgb(228,108,25)" rx="2" ry="2" /> | |
| <text x="1006.46" y="591.5" ></text> | |
| </g> | |
| <g > | |
| <title>__slab_alloc.constprop.0 (47,975,501 samples, 0.03%)</title><rect x="299.8" y="517" width="0.3" height="15.0" fill="rgb(229,112,26)" rx="2" ry="2" /> | |
| <text x="302.78" y="527.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_VertexAttribPointer (19,715,058 samples, 0.01%)</title><rect x="815.2" y="581" width="0.1" height="15.0" fill="rgb(211,29,7)" rx="2" ry="2" /> | |
| <text x="818.17" y="591.5" ></text> | |
| </g> | |
| <g > | |
| <title>el0_svc_common.constprop.0 (36,887,008 samples, 0.02%)</title><rect x="1105.9" y="389" width="0.2" height="15.0" fill="rgb(224,89,21)" rx="2" ry="2" /> | |
| <text x="1108.89" y="399.5" ></text> | |
| </g> | |
| <g > | |
| <title>st_update_framebuffer_state (35,630,901 samples, 0.02%)</title><rect x="1085.1" y="645" width="0.3" height="15.0" fill="rgb(231,123,29)" rx="2" ry="2" /> | |
| <text x="1088.12" y="655.5" ></text> | |
| </g> | |
| <g > | |
| <title>cso_set_blend (22,801,292 samples, 0.01%)</title><rect x="399.2" y="725" width="0.2" height="15.0" fill="rgb(252,217,51)" rx="2" ry="2" /> | |
| <text x="402.22" y="735.5" ></text> | |
| </g> | |
| <g > | |
| <title>vbo_exec_copy_to_current (16,631,883 samples, 0.01%)</title><rect x="456.4" y="741" width="0.1" height="15.0" fill="rgb(218,60,14)" rx="2" ry="2" /> | |
| <text x="459.39" y="751.5" ></text> | |
| </g> | |
| <g > | |
| <title>st_update_rasterizer (17,419,316 samples, 0.01%)</title><rect x="1007.8" y="613" width="0.1" height="15.0" fill="rgb(240,164,39)" rx="2" ry="2" /> | |
| <text x="1010.82" y="623.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_update_texture_state (50,993,489 samples, 0.03%)</title><rect x="990.3" y="597" width="0.4" height="15.0" fill="rgb(237,148,35)" rx="2" ry="2" /> | |
| <text x="993.33" y="607.5" ></text> | |
| </g> | |
| <g > | |
| <title>el0t_64_irq_handler (16,020,625 samples, 0.01%)</title><rect x="128.1" y="757" width="0.2" height="15.0" fill="rgb(241,169,40)" rx="2" ry="2" /> | |
| <text x="131.15" y="767.5" ></text> | |
| </g> | |
| <g > | |
| <title>futex_wait (66,178,026 samples, 0.04%)</title><rect x="884.6" y="597" width="0.4" height="15.0" fill="rgb(235,138,33)" rx="2" ry="2" /> | |
| <text x="887.57" y="607.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_MapBufferRange (32,078,628 samples, 0.02%)</title><rect x="842.5" y="677" width="0.2" height="15.0" fill="rgb(238,156,37)" rx="2" ry="2" /> | |
| <text x="845.48" y="687.5" ></text> | |
| </g> | |
| <g > | |
| <title>memcpy@plt (27,728,164 samples, 0.02%)</title><rect x="1040.3" y="725" width="0.2" height="15.0" fill="rgb(224,88,21)" rx="2" ry="2" /> | |
| <text x="1043.30" y="735.5" ></text> | |
| </g> | |
| <g > | |
| <title>gfx6_emit_framebuffer_state (16,242,093 samples, 0.01%)</title><rect x="521.6" y="645" width="0.2" height="15.0" fill="rgb(245,185,44)" rx="2" ry="2" /> | |
| <text x="524.65" y="655.5" ></text> | |
| </g> | |
| <g > | |
| <title>glDrawRangeElements (17,139,827 samples, 0.01%)</title><rect x="832.1" y="677" width="0.1" height="15.0" fill="rgb(239,158,37)" rx="2" ry="2" /> | |
| <text x="835.12" y="687.5" ></text> | |
| </g> | |
| <g > | |
| <title>cso_set_blend (21,858,592 samples, 0.01%)</title><rect x="935.5" y="581" width="0.1" height="15.0" fill="rgb(252,217,51)" rx="2" ry="2" /> | |
| <text x="938.50" y="591.5" ></text> | |
| </g> | |
| <g > | |
| <title>__audit_syscall_exit (16,178,220 samples, 0.01%)</title><rect x="1108.2" y="373" width="0.1" height="15.0" fill="rgb(218,62,14)" rx="2" ry="2" /> | |
| <text x="1111.24" y="383.5" ></text> | |
| </g> | |
| <g > | |
| <title>path_lookupat (505,607,512 samples, 0.28%)</title><rect x="1182.9" y="549" width="3.3" height="15.0" fill="rgb(250,208,49)" rx="2" ry="2" /> | |
| <text x="1185.90" y="559.5" ></text> | |
| </g> | |
| <g > | |
| <title>do_futex (19,871,589 samples, 0.01%)</title><rect x="956.3" y="501" width="0.2" height="15.0" fill="rgb(245,184,44)" rx="2" ry="2" /> | |
| <text x="959.32" y="511.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_use_program (92,058,509 samples, 0.05%)</title><rect x="1066.6" y="645" width="0.6" height="15.0" fill="rgb(235,141,33)" rx="2" ry="2" /> | |
| <text x="1069.65" y="655.5" ></text> | |
| </g> | |
| <g > | |
| <title>hack_digit (44,493,398 samples, 0.02%)</title><rect x="514.6" y="597" width="0.2" height="15.0" fill="rgb(253,222,53)" rx="2" ry="2" /> | |
| <text x="517.56" y="607.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_DrawArraysInstancedBaseInstance (44,322,642 samples, 0.02%)</title><rect x="376.0" y="789" width="0.2" height="15.0" fill="rgb(243,178,42)" rx="2" ry="2" /> | |
| <text x="378.95" y="799.5" ></text> | |
| </g> | |
| <g > | |
| <title>dma_resv_iter_next (121,333,242 samples, 0.07%)</title><rect x="319.4" y="549" width="0.8" height="15.0" fill="rgb(247,196,46)" rx="2" ry="2" /> | |
| <text x="322.45" y="559.5" ></text> | |
| </g> | |
| <g > | |
| <title>_raw_spin_lock (126,346,444 samples, 0.07%)</title><rect x="267.4" y="581" width="0.9" height="15.0" fill="rgb(239,160,38)" rx="2" ry="2" /> | |
| <text x="270.43" y="591.5" ></text> | |
| </g> | |
| <g > | |
| <title>__GI___strlen_asimd (169,232,360 samples, 0.09%)</title><rect x="965.8" y="725" width="1.1" height="15.0" fill="rgb(213,41,9)" rx="2" ry="2" /> | |
| <text x="968.82" y="735.5" ></text> | |
| </g> | |
| <g > | |
| <title>si_bind_rs_state (23,015,211 samples, 0.01%)</title><rect x="518.3" y="661" width="0.2" height="15.0" fill="rgb(233,130,31)" rx="2" ry="2" /> | |
| <text x="521.33" y="671.5" ></text> | |
| </g> | |
| <g > | |
| <title>do_futex (107,209,795 samples, 0.06%)</title><rect x="458.9" y="565" width="0.7" height="15.0" fill="rgb(245,184,44)" rx="2" ry="2" /> | |
| <text x="461.93" y="575.5" ></text> | |
| </g> | |
| <g > | |
| <title>si_bind_dsa_state (15,931,012 samples, 0.01%)</title><rect x="50.7" y="789" width="0.1" height="15.0" fill="rgb(247,194,46)" rx="2" ry="2" /> | |
| <text x="53.69" y="799.5" ></text> | |
| </g> | |
| <g > | |
| <title>render_texture.constprop.0 (41,153,364 samples, 0.02%)</title><rect x="1089.5" y="661" width="0.3" height="15.0" fill="rgb(230,116,27)" rx="2" ry="2" /> | |
| <text x="1092.52" y="671.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_DrawElementsBaseVertex (17,195,081 samples, 0.01%)</title><rect x="878.3" y="613" width="0.1" height="15.0" fill="rgb(214,41,10)" rx="2" ry="2" /> | |
| <text x="881.26" y="623.5" ></text> | |
| </g> | |
| <g > | |
| <title>__aarch64_cas4_sync (1,444,953,377 samples, 0.80%)</title><rect x="350.3" y="757" width="9.4" height="15.0" fill="rgb(253,222,53)" rx="2" ry="2" /> | |
| <text x="353.30" y="767.5" ></text> | |
| </g> | |
| <g > | |
| <title>syscall_trace_exit (62,642,660 samples, 0.03%)</title><rect x="339.3" y="677" width="0.4" height="15.0" fill="rgb(247,196,46)" rx="2" ry="2" /> | |
| <text x="342.26" y="687.5" ></text> | |
| </g> | |
| <g > | |
| <title>el0_svc_common.constprop.0 (99,038,635 samples, 0.05%)</title><rect x="900.3" y="437" width="0.6" height="15.0" fill="rgb(224,89,21)" rx="2" ry="2" /> | |
| <text x="903.29" y="447.5" ></text> | |
| </g> | |
| <g > | |
| <title>update_array.constprop.0 (37,408,664 samples, 0.02%)</title><rect x="1028.9" y="645" width="0.2" height="15.0" fill="rgb(224,88,21)" rx="2" ry="2" /> | |
| <text x="1031.87" y="655.5" ></text> | |
| </g> | |
| <g > | |
| <title>validate_uniform_parameters (24,336,620 samples, 0.01%)</title><rect x="946.7" y="613" width="0.1" height="15.0" fill="rgb(234,137,32)" rx="2" ry="2" /> | |
| <text x="949.66" y="623.5" ></text> | |
| </g> | |
| <g > | |
| <title>[redeclipse] (17,684,497 samples, 0.01%)</title><rect x="1074.8" y="741" width="0.1" height="15.0" fill="rgb(253,222,53)" rx="2" ry="2" /> | |
| <text x="1077.76" y="751.5" ></text> | |
| </g> | |
| <g > | |
| <title>st_prepare_draw (34,043,828 samples, 0.02%)</title><rect x="826.4" y="581" width="0.2" height="15.0" fill="rgb(214,45,10)" rx="2" ry="2" /> | |
| <text x="829.38" y="591.5" ></text> | |
| </g> | |
| <g > | |
| <title>vorbis_book_decodevv_add (287,866,224 samples, 0.16%)</title><rect x="25.1" y="677" width="1.8" height="15.0" fill="rgb(247,195,46)" rx="2" ry="2" /> | |
| <text x="28.06" y="687.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_update_framebuffer (87,000,732 samples, 0.05%)</title><rect x="379.4" y="741" width="0.6" height="15.0" fill="rgb(218,62,14)" rx="2" ry="2" /> | |
| <text x="382.44" y="751.5" ></text> | |
| </g> | |
| <g > | |
| <title>st_Clear (20,728,161 samples, 0.01%)</title><rect x="374.0" y="773" width="0.2" height="15.0" fill="rgb(211,30,7)" rx="2" ry="2" /> | |
| <text x="377.02" y="783.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_VertexAttrib4fARB (21,711,857 samples, 0.01%)</title><rect x="491.9" y="789" width="0.1" height="15.0" fill="rgb(251,214,51)" rx="2" ry="2" /> | |
| <text x="494.89" y="799.5" ></text> | |
| </g> | |
| <g > | |
| <title>si_buffer_transfer_unmap (155,145,557 samples, 0.09%)</title><rect x="72.2" y="773" width="1.0" height="15.0" fill="rgb(221,75,18)" rx="2" ry="2" /> | |
| <text x="75.23" y="783.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_validated_drawrangeelements (17,486,508 samples, 0.01%)</title><rect x="1084.2" y="661" width="0.1" height="15.0" fill="rgb(230,115,27)" rx="2" ry="2" /> | |
| <text x="1087.19" y="671.5" ></text> | |
| </g> | |
| <g > | |
| <title>main (105,189,987,668 samples, 58.26%)</title><rect x="502.1" y="837" width="687.5" height="15.0" fill="rgb(243,179,42)" rx="2" ry="2" /> | |
| <text x="505.09" y="847.5" >main</text> | |
| </g> | |
| <g > | |
| <title>validate_uniform_parameters (16,345,647 samples, 0.01%)</title><rect x="879.4" y="581" width="0.1" height="15.0" fill="rgb(234,137,32)" rx="2" ry="2" /> | |
| <text x="882.42" y="591.5" ></text> | |
| </g> | |
| <g > | |
| <title>SDLAudioP2 (1,943,799,868 samples, 1.08%)</title><rect x="15.1" y="901" width="12.7" height="15.0" fill="rgb(240,162,38)" rx="2" ry="2" /> | |
| <text x="18.13" y="911.5" ></text> | |
| </g> | |
| <g > | |
| <title>__aarch64_cas4_sync (24,645,205 samples, 0.01%)</title><rect x="939.6" y="549" width="0.2" height="15.0" fill="rgb(253,222,53)" rx="2" ry="2" /> | |
| <text x="942.65" y="559.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_lookup_or_create_texture (190,883,403 samples, 0.11%)</title><rect x="862.8" y="613" width="1.2" height="15.0" fill="rgb(235,140,33)" rx="2" ry="2" /> | |
| <text x="865.77" y="623.5" ></text> | |
| </g> | |
| <g > | |
| <title>futex_get_value_locked (45,162,404 samples, 0.03%)</title><rect x="29.3" y="597" width="0.3" height="15.0" fill="rgb(224,91,21)" rx="2" ry="2" /> | |
| <text x="32.34" y="607.5" ></text> | |
| </g> | |
| <g > | |
| <title>zap_pmd_range.isra.0 (26,766,945 samples, 0.01%)</title><rect x="1189.6" y="629" width="0.2" height="15.0" fill="rgb(244,180,43)" rx="2" ry="2" /> | |
| <text x="1192.60" y="639.5" ></text> | |
| </g> | |
| <g > | |
| <title>st_update_rasterizer (27,925,954 samples, 0.02%)</title><rect x="935.9" y="581" width="0.2" height="15.0" fill="rgb(240,164,39)" rx="2" ry="2" /> | |
| <text x="938.93" y="591.5" ></text> | |
| </g> | |
| <g > | |
| <title>__arm64_sys_futex (18,346,173 samples, 0.01%)</title><rect x="10.3" y="661" width="0.1" height="15.0" fill="rgb(247,196,47)" rx="2" ry="2" /> | |
| <text x="13.32" y="671.5" ></text> | |
| </g> | |
| <g > | |
| <title>tc_set_sampler_views (15,645,714 samples, 0.01%)</title><rect x="828.4" y="533" width="0.1" height="15.0" fill="rgb(250,209,50)" rx="2" ry="2" /> | |
| <text x="831.42" y="543.5" ></text> | |
| </g> | |
| <g > | |
| <title>amdgpu_sync_entry_free (17,871,345 samples, 0.01%)</title><rect x="314.8" y="549" width="0.1" height="15.0" fill="rgb(245,187,44)" rx="2" ry="2" /> | |
| <text x="317.79" y="559.5" ></text> | |
| </g> | |
| <g > | |
| <title>get_futex_key (22,292,446 samples, 0.01%)</title><rect x="531.0" y="485" width="0.1" height="15.0" fill="rgb(252,216,51)" rx="2" ry="2" /> | |
| <text x="534.00" y="495.5" ></text> | |
| </g> | |
| <g > | |
| <title>__check_object_size (57,244,671 samples, 0.03%)</title><rect x="289.8" y="565" width="0.4" height="15.0" fill="rgb(226,98,23)" rx="2" ry="2" /> | |
| <text x="292.78" y="575.5" ></text> | |
| </g> | |
| <g > | |
| <title>el0t_64_sync_handler (38,984,265 samples, 0.02%)</title><rect x="1034.2" y="565" width="0.3" height="15.0" fill="rgb(211,32,7)" rx="2" ry="2" /> | |
| <text x="1037.23" y="575.5" ></text> | |
| </g> | |
| <g > | |
| <title>tc_batch_execute (32,345,677,008 samples, 17.92%)</title><rect x="37.1" y="821" width="211.4" height="15.0" fill="rgb(249,205,49)" rx="2" ry="2" /> | |
| <text x="40.11" y="831.5" >tc_batch_execute</text> | |
| </g> | |
| <g > | |
| <title>_mesa_unmarshal_Uniform1fv (18,686,928 samples, 0.01%)</title><rect x="1064.3" y="693" width="0.1" height="15.0" fill="rgb(231,122,29)" rx="2" ry="2" /> | |
| <text x="1067.31" y="703.5" ></text> | |
| </g> | |
| <g > | |
| <title>IMG_LoadTyped_RW (21,569,673 samples, 0.01%)</title><rect x="741.3" y="677" width="0.1" height="15.0" fill="rgb(239,160,38)" rx="2" ry="2" /> | |
| <text x="744.30" y="687.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_uniform (61,356,980 samples, 0.03%)</title><rect x="1137.7" y="693" width="0.4" height="15.0" fill="rgb(248,201,48)" rx="2" ry="2" /> | |
| <text x="1140.66" y="703.5" ></text> | |
| </g> | |
| <g > | |
| <title>glsl_type_is_matrix (18,758,217 samples, 0.01%)</title><rect x="476.7" y="757" width="0.1" height="15.0" fill="rgb(220,72,17)" rx="2" ry="2" /> | |
| <text x="479.69" y="767.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_uniform (16,979,235 samples, 0.01%)</title><rect x="1019.2" y="645" width="0.1" height="15.0" fill="rgb(248,201,48)" rx="2" ry="2" /> | |
| <text x="1022.23" y="655.5" ></text> | |
| </g> | |
| <g > | |
| <title>amdgpu_bo_wait (26,100,262 samples, 0.01%)</title><rect x="1163.5" y="645" width="0.1" height="15.0" fill="rgb(241,168,40)" rx="2" ry="2" /> | |
| <text x="1166.46" y="655.5" ></text> | |
| </g> | |
| <g > | |
| <title>__arm64_sys_futex (15,979,218 samples, 0.01%)</title><rect x="447.9" y="517" width="0.1" height="15.0" fill="rgb(247,196,47)" rx="2" ry="2" /> | |
| <text x="450.91" y="527.5" ></text> | |
| </g> | |
| <g > | |
| <title>st_make_bound_samplers_resident (50,538,679 samples, 0.03%)</title><rect x="412.9" y="709" width="0.4" height="15.0" fill="rgb(234,136,32)" rx="2" ry="2" /> | |
| <text x="415.94" y="719.5" ></text> | |
| </g> | |
| <g > | |
| <title>__aarch64_ldadd4_acq_rel (38,777,481 samples, 0.02%)</title><rect x="822.2" y="645" width="0.3" height="15.0" fill="rgb(228,108,25)" rx="2" ry="2" /> | |
| <text x="825.24" y="655.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_DrawElementsBaseVertex (21,558,582 samples, 0.01%)</title><rect x="785.8" y="101" width="0.2" height="15.0" fill="rgb(214,41,10)" rx="2" ry="2" /> | |
| <text x="788.83" y="111.5" ></text> | |
| </g> | |
| <g > | |
| <title>bind_buffer_object (88,486,648 samples, 0.05%)</title><rect x="922.7" y="645" width="0.6" height="15.0" fill="rgb(246,190,45)" rx="2" ry="2" /> | |
| <text x="925.75" y="655.5" ></text> | |
| </g> | |
| <g > | |
| <title>el0_svc_common.constprop.0 (16,568,876 samples, 0.01%)</title><rect x="39.0" y="629" width="0.1" height="15.0" fill="rgb(224,89,21)" rx="2" ry="2" /> | |
| <text x="41.99" y="639.5" ></text> | |
| </g> | |
| <g > | |
| <title>tc_call_buffer_unmap (36,930,929 samples, 0.02%)</title><rect x="520.4" y="677" width="0.2" height="15.0" fill="rgb(205,4,1)" rx="2" ry="2" /> | |
| <text x="523.39" y="687.5" ></text> | |
| </g> | |
| <g > | |
| <title>vbo_exec_copy_to_current (18,465,783 samples, 0.01%)</title><rect x="945.0" y="597" width="0.1" height="15.0" fill="rgb(218,60,14)" rx="2" ry="2" /> | |
| <text x="947.96" y="607.5" ></text> | |
| </g> | |
| <g > | |
| <title>amdgpu_sync_fence (289,845,062 samples, 0.16%)</title><rect x="323.8" y="565" width="1.9" height="15.0" fill="rgb(226,97,23)" rx="2" ry="2" /> | |
| <text x="326.81" y="575.5" ></text> | |
| </g> | |
| <g > | |
| <title>pthread_cond_signal@@GLIBC_2.17 (170,490,655 samples, 0.09%)</title><rect x="458.7" y="709" width="1.1" height="15.0" fill="rgb(232,126,30)" rx="2" ry="2" /> | |
| <text x="461.72" y="719.5" ></text> | |
| </g> | |
| <g > | |
| <title>slab_zalloc (53,201,198 samples, 0.03%)</title><rect x="1168.4" y="661" width="0.3" height="15.0" fill="rgb(232,128,30)" rx="2" ry="2" /> | |
| <text x="1171.37" y="671.5" ></text> | |
| </g> | |
| <g > | |
| <title>invoke_syscall (39,786,367 samples, 0.02%)</title><rect x="11.7" y="517" width="0.2" height="15.0" fill="rgb(209,18,4)" rx="2" ry="2" /> | |
| <text x="14.65" y="527.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_update_state (462,887,635 samples, 0.26%)</title><rect x="1002.0" y="645" width="3.1" height="15.0" fill="rgb(222,78,18)" rx="2" ry="2" /> | |
| <text x="1005.04" y="655.5" ></text> | |
| </g> | |
| <g > | |
| <title>el0t_64_sync_handler (39,786,367 samples, 0.02%)</title><rect x="11.7" y="581" width="0.2" height="15.0" fill="rgb(211,32,7)" rx="2" ry="2" /> | |
| <text x="14.65" y="591.5" ></text> | |
| </g> | |
| <g > | |
| <title>buffer_data_error (20,173,857 samples, 0.01%)</title><rect x="927.5" y="629" width="0.1" height="15.0" fill="rgb(213,38,9)" rx="2" ry="2" /> | |
| <text x="930.49" y="639.5" ></text> | |
| </g> | |
| <g > | |
| <title>__GI___writev (298,987,210 samples, 0.17%)</title><rect x="540.8" y="693" width="2.0" height="15.0" fill="rgb(217,56,13)" rx="2" ry="2" /> | |
| <text x="543.84" y="703.5" ></text> | |
| </g> | |
| <g > | |
| <title>el0_svc_common.constprop.0 (19,405,162 samples, 0.01%)</title><rect x="1126.2" y="469" width="0.1" height="15.0" fill="rgb(224,89,21)" rx="2" ry="2" /> | |
| <text x="1129.20" y="479.5" ></text> | |
| </g> | |
| <g > | |
| <title>cnd_signal (23,089,425 samples, 0.01%)</title><rect x="943.3" y="533" width="0.1" height="15.0" fill="rgb(232,125,30)" rx="2" ry="2" /> | |
| <text x="946.28" y="543.5" ></text> | |
| </g> | |
| <g > | |
| <title>st_update_rasterizer (192,309,194 samples, 0.11%)</title><rect x="405.9" y="725" width="1.2" height="15.0" fill="rgb(240,164,39)" rx="2" ry="2" /> | |
| <text x="408.88" y="735.5" ></text> | |
| </g> | |
| <g > | |
| <title>amdgpu_drm_ioctl (144,191,936 samples, 0.08%)</title><rect x="188.7" y="565" width="0.9" height="15.0" fill="rgb(246,190,45)" rx="2" ry="2" /> | |
| <text x="191.68" y="575.5" ></text> | |
| </g> | |
| <g > | |
| <title>gfx6_emit_framebuffer_state (74,814,839 samples, 0.04%)</title><rect x="139.4" y="757" width="0.5" height="15.0" fill="rgb(245,185,44)" rx="2" ry="2" /> | |
| <text x="142.41" y="767.5" ></text> | |
| </g> | |
| <g > | |
| <title>si_query_hw_begin (382,450,125 samples, 0.21%)</title><rect x="47.4" y="789" width="2.5" height="15.0" fill="rgb(214,44,10)" rx="2" ry="2" /> | |
| <text x="50.38" y="799.5" ></text> | |
| </g> | |
| <g > | |
| <title>cso_set_rasterizer (26,403,719 samples, 0.01%)</title><rect x="935.6" y="581" width="0.2" height="15.0" fill="rgb(242,172,41)" rx="2" ry="2" /> | |
| <text x="938.64" y="591.5" ></text> | |
| </g> | |
| <g > | |
| <title>st_prepare_draw (79,176,527 samples, 0.04%)</title><rect x="870.1" y="581" width="0.5" height="15.0" fill="rgb(214,45,10)" rx="2" ry="2" /> | |
| <text x="873.13" y="591.5" ></text> | |
| </g> | |
| <g > | |
| <title>tc_batch_flush (40,111,061 samples, 0.02%)</title><rect x="876.2" y="549" width="0.3" height="15.0" fill="rgb(249,206,49)" rx="2" ry="2" /> | |
| <text x="879.21" y="559.5" ></text> | |
| </g> | |
| <g > | |
| <title>mdct_backward (206,554,513 samples, 0.11%)</title><rect x="23.2" y="693" width="1.3" height="15.0" fill="rgb(242,173,41)" rx="2" ry="2" /> | |
| <text x="26.18" y="703.5" ></text> | |
| </g> | |
| <g > | |
| <title>vbo_exec_FlushVertices (16,248,161 samples, 0.01%)</title><rect x="1022.6" y="581" width="0.1" height="15.0" fill="rgb(226,100,24)" rx="2" ry="2" /> | |
| <text x="1025.61" y="591.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_Clear (105,048,700 samples, 0.06%)</title><rect x="987.9" y="661" width="0.7" height="15.0" fill="rgb(214,41,10)" rx="2" ry="2" /> | |
| <text x="990.90" y="671.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_DrawElementsBaseVertex (1,734,682,603 samples, 0.96%)</title><rect x="866.9" y="629" width="11.3" height="15.0" fill="rgb(214,41,10)" rx="2" ry="2" /> | |
| <text x="869.89" y="639.5" ></text> | |
| </g> | |
| <g > | |
| <title>vfs_write (38,055,281 samples, 0.02%)</title><rect x="15.2" y="581" width="0.3" height="15.0" fill="rgb(250,209,50)" rx="2" ry="2" /> | |
| <text x="18.21" y="591.5" ></text> | |
| </g> | |
| <g > | |
| <title>strcspn (396,438,257 samples, 0.22%)</title><rect x="836.5" y="645" width="2.6" height="15.0" fill="rgb(218,61,14)" rx="2" ry="2" /> | |
| <text x="839.52" y="655.5" ></text> | |
| </g> | |
| <g > | |
| <title>el0t_64_sync_handler (414,273,244 samples, 0.23%)</title><rect x="342.0" y="773" width="2.7" height="15.0" fill="rgb(211,32,7)" rx="2" ry="2" /> | |
| <text x="345.02" y="783.5" ></text> | |
| </g> | |
| <g > | |
| <title>el0_svc (110,593,581 samples, 0.06%)</title><rect x="500.9" y="741" width="0.7" height="15.0" fill="rgb(244,183,43)" rx="2" ry="2" /> | |
| <text x="503.90" y="751.5" ></text> | |
| </g> | |
| <g > | |
| <title>amdgpu_cs_add_buffer (15,528,903 samples, 0.01%)</title><rect x="139.8" y="741" width="0.1" height="15.0" fill="rgb(254,227,54)" rx="2" ry="2" /> | |
| <text x="142.78" y="751.5" ></text> | |
| </g> | |
| <g > | |
| <title>update_program (67,301,834 samples, 0.04%)</title><rect x="1004.6" y="613" width="0.5" height="15.0" fill="rgb(236,145,34)" rx="2" ry="2" /> | |
| <text x="1007.62" y="623.5" ></text> | |
| </g> | |
| <g > | |
| <title>[redeclipse] (98,124,461 samples, 0.05%)</title><rect x="781.6" y="117" width="0.6" height="15.0" fill="rgb(253,222,53)" rx="2" ry="2" /> | |
| <text x="784.58" y="127.5" ></text> | |
| </g> | |
| <g > | |
| <title>[libc.so.6] (45,798,076 samples, 0.03%)</title><rect x="687.0" y="709" width="0.3" height="15.0" fill="rgb(223,84,20)" rx="2" ry="2" /> | |
| <text x="690.03" y="719.5" ></text> | |
| </g> | |
| <g > | |
| <title>idr_find (15,797,378 samples, 0.01%)</title><rect x="328.3" y="565" width="0.1" height="15.0" fill="rgb(245,185,44)" rx="2" ry="2" /> | |
| <text x="331.27" y="575.5" ></text> | |
| </g> | |
| <g > | |
| <title>el0t_64_sync_handler (85,686,266 samples, 0.05%)</title><rect x="976.7" y="613" width="0.6" height="15.0" fill="rgb(211,32,7)" rx="2" ry="2" /> | |
| <text x="979.73" y="623.5" ></text> | |
| </g> | |
| <g > | |
| <title>tc_call_bind_fs_state (173,785,182 samples, 0.10%)</title><rect x="56.1" y="789" width="1.2" height="15.0" fill="rgb(218,60,14)" rx="2" ry="2" /> | |
| <text x="59.12" y="799.5" ></text> | |
| </g> | |
| <g > | |
| <title>strcspn (89,910,214 samples, 0.05%)</title><rect x="802.5" y="501" width="0.6" height="15.0" fill="rgb(218,61,14)" rx="2" ry="2" /> | |
| <text x="805.51" y="511.5" ></text> | |
| </g> | |
| <g > | |
| <title>update_program (18,804,372 samples, 0.01%)</title><rect x="849.6" y="565" width="0.2" height="15.0" fill="rgb(236,145,34)" rx="2" ry="2" /> | |
| <text x="852.64" y="575.5" ></text> | |
| </g> | |
| <g > | |
| <title>rt_mutex_slowlock_block.constprop.0 (31,625,941 samples, 0.02%)</title><rect x="10.8" y="597" width="0.2" height="15.0" fill="rgb(235,139,33)" rx="2" ry="2" /> | |
| <text x="13.77" y="607.5" ></text> | |
| </g> | |
| <g > | |
| <title>st_get_texture_sampler_view_from_stobj (33,467,647 samples, 0.02%)</title><rect x="813.2" y="517" width="0.2" height="15.0" fill="rgb(211,32,7)" rx="2" ry="2" /> | |
| <text x="816.18" y="527.5" ></text> | |
| </g> | |
| <g > | |
| <title>__atan2f_finite@GLIBC_2.17 (70,460,496 samples, 0.04%)</title><rect x="1050.0" y="725" width="0.5" height="15.0" fill="rgb(250,207,49)" rx="2" ry="2" /> | |
| <text x="1053.00" y="735.5" ></text> | |
| </g> | |
| <g > | |
| <title>__aarch64_ldadd4_acq_rel (35,017,450 samples, 0.02%)</title><rect x="848.1" y="549" width="0.2" height="15.0" fill="rgb(228,108,25)" rx="2" ry="2" /> | |
| <text x="851.07" y="559.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_sampler_uniforms_are_valid (21,729,614 samples, 0.01%)</title><rect x="1092.0" y="661" width="0.1" height="15.0" fill="rgb(254,229,54)" rx="2" ry="2" /> | |
| <text x="1094.96" y="671.5" ></text> | |
| </g> | |
| <g > | |
| <title>util_queue_add_job_locked.part.0 (16,992,943 samples, 0.01%)</title><rect x="856.8" y="565" width="0.2" height="15.0" fill="rgb(243,177,42)" rx="2" ry="2" /> | |
| <text x="859.84" y="575.5" ></text> | |
| </g> | |
| <g > | |
| <title>tc_set_sampler_views (68,175,069 samples, 0.04%)</title><rect x="1133.4" y="613" width="0.4" height="15.0" fill="rgb(250,209,50)" rx="2" ry="2" /> | |
| <text x="1136.38" y="623.5" ></text> | |
| </g> | |
| <g > | |
| <title>drm_exec_lock_obj (480,310,369 samples, 0.27%)</title><rect x="281.5" y="549" width="3.1" height="15.0" fill="rgb(236,142,34)" rx="2" ry="2" /> | |
| <text x="284.47" y="559.5" ></text> | |
| </g> | |
| <g > | |
| <title>wake_up_q (29,675,931 samples, 0.02%)</title><rect x="11.7" y="453" width="0.2" height="15.0" fill="rgb(237,151,36)" rx="2" ry="2" /> | |
| <text x="14.72" y="463.5" ></text> | |
| </g> | |
| <g > | |
| <title>tc_set_constant_buffer (35,615,617 samples, 0.02%)</title><rect x="1011.8" y="581" width="0.2" height="15.0" fill="rgb(247,195,46)" rx="2" ry="2" /> | |
| <text x="1014.77" y="591.5" ></text> | |
| </g> | |
| <g > | |
| <title>drmIoctl (21,205,288 samples, 0.01%)</title><rect x="515.4" y="533" width="0.2" height="15.0" fill="rgb(251,215,51)" rx="2" ry="2" /> | |
| <text x="518.43" y="543.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_unmarshal_DrawArraysInstanced (178,432,777 samples, 0.10%)</title><rect x="810.7" y="613" width="1.2" height="15.0" fill="rgb(209,20,4)" rx="2" ry="2" /> | |
| <text x="813.71" y="623.5" ></text> | |
| </g> | |
| <g > | |
| <title>amdgpu_do_add_buffer (737,600,659 samples, 0.41%)</title><rect x="210.4" y="741" width="4.8" height="15.0" fill="rgb(223,86,20)" rx="2" ry="2" /> | |
| <text x="213.39" y="751.5" ></text> | |
| </g> | |
| <g > | |
| <title>amdgpu_bo_list_entry_cmp (108,499,647 samples, 0.06%)</title><rect x="300.1" y="533" width="0.7" height="15.0" fill="rgb(221,75,18)" rx="2" ry="2" /> | |
| <text x="303.12" y="543.5" ></text> | |
| </g> | |
| <g > | |
| <title>util_queue_add_job_locked.part.0 (77,548,012 samples, 0.04%)</title><rect x="538.8" y="677" width="0.5" height="15.0" fill="rgb(243,177,42)" rx="2" ry="2" /> | |
| <text x="541.84" y="687.5" ></text> | |
| </g> | |
| <g > | |
| <title>validate_array_format.constprop.0 (58,782,659 samples, 0.03%)</title><rect x="952.9" y="613" width="0.4" height="15.0" fill="rgb(232,126,30)" rx="2" ry="2" /> | |
| <text x="955.87" y="623.5" ></text> | |
| </g> | |
| <g > | |
| <title>__libc_recvmsg (236,581,943 samples, 0.13%)</title><rect x="1106.8" y="485" width="1.6" height="15.0" fill="rgb(220,72,17)" rx="2" ry="2" /> | |
| <text x="1109.81" y="495.5" ></text> | |
| </g> | |
| <g > | |
| <title>invoke_syscall (9,898,249,337 samples, 5.48%)</title><rect x="266.2" y="677" width="64.7" height="15.0" fill="rgb(209,18,4)" rx="2" ry="2" /> | |
| <text x="269.23" y="687.5" >invoke_..</text> | |
| </g> | |
| <g > | |
| <title>_mesa_VertexAttrib4Nubv (40,209,177 samples, 0.02%)</title><rect x="814.8" y="597" width="0.3" height="15.0" fill="rgb(231,121,29)" rx="2" ry="2" /> | |
| <text x="817.79" y="607.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_unmarshal_DrawElementsPacked (176,846,309 samples, 0.10%)</title><rect x="456.6" y="789" width="1.2" height="15.0" fill="rgb(225,92,22)" rx="2" ry="2" /> | |
| <text x="459.61" y="799.5" ></text> | |
| </g> | |
| <g > | |
| <title>__memcpy_generic (32,312,995 samples, 0.02%)</title><rect x="1061.8" y="613" width="0.3" height="15.0" fill="rgb(231,124,29)" rx="2" ry="2" /> | |
| <text x="1064.85" y="623.5" ></text> | |
| </g> | |
| <g > | |
| <title>__memcpy_generic (194,417,283 samples, 0.11%)</title><rect x="146.0" y="741" width="1.2" height="15.0" fill="rgb(231,124,29)" rx="2" ry="2" /> | |
| <text x="148.96" y="751.5" ></text> | |
| </g> | |
| <g > | |
| <title>el0_svc_common.constprop.0 (27,399,487 samples, 0.02%)</title><rect x="1106.2" y="405" width="0.2" height="15.0" fill="rgb(224,89,21)" rx="2" ry="2" /> | |
| <text x="1109.19" y="415.5" ></text> | |
| </g> | |
| <g > | |
| <title>invoke_syscall (34,671,241 samples, 0.02%)</title><rect x="16.9" y="661" width="0.2" height="15.0" fill="rgb(209,18,4)" rx="2" ry="2" /> | |
| <text x="19.88" y="671.5" ></text> | |
| </g> | |
| <g > | |
| <title>__sched_yield (40,532,328 samples, 0.02%)</title><rect x="1034.2" y="597" width="0.3" height="15.0" fill="rgb(213,40,9)" rx="2" ry="2" /> | |
| <text x="1037.22" y="607.5" ></text> | |
| </g> | |
| <g > | |
| <title>tc_call_bind_rasterizer_state (23,015,211 samples, 0.01%)</title><rect x="518.3" y="677" width="0.2" height="15.0" fill="rgb(220,71,17)" rx="2" ry="2" /> | |
| <text x="521.33" y="687.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_lookup_bufferobj.part.0 (59,655,241 samples, 0.03%)</title><rect x="348.0" y="773" width="0.4" height="15.0" fill="rgb(223,84,20)" rx="2" ry="2" /> | |
| <text x="350.97" y="783.5" ></text> | |
| </g> | |
| <g > | |
| <title>update_shader_samplers (164,602,892 samples, 0.09%)</title><rect x="851.6" y="581" width="1.1" height="15.0" fill="rgb(229,113,27)" rx="2" ry="2" /> | |
| <text x="854.62" y="591.5" ></text> | |
| </g> | |
| <g > | |
| <title>do_futex (18,891,149 samples, 0.01%)</title><rect x="876.3" y="357" width="0.1" height="15.0" fill="rgb(245,184,44)" rx="2" ry="2" /> | |
| <text x="879.32" y="367.5" ></text> | |
| </g> | |
| <g > | |
| <title>update_shader_samplers (43,259,713 samples, 0.02%)</title><rect x="812.9" y="549" width="0.3" height="15.0" fill="rgb(229,113,27)" rx="2" ry="2" /> | |
| <text x="815.90" y="559.5" ></text> | |
| </g> | |
| <g > | |
| <title>si_update_ps_colorbuf0_slot.part.0 (61,267,335 samples, 0.03%)</title><rect x="53.0" y="757" width="0.4" height="15.0" fill="rgb(254,228,54)" rx="2" ry="2" /> | |
| <text x="56.00" y="767.5" ></text> | |
| </g> | |
| <g > | |
| <title>vbo_exec_FlushVertices (24,699,219 samples, 0.01%)</title><rect x="1022.6" y="597" width="0.2" height="15.0" fill="rgb(226,100,24)" rx="2" ry="2" /> | |
| <text x="1025.60" y="607.5" ></text> | |
| </g> | |
| <g > | |
| <title>tc_invalidate_buffer (31,380,043 samples, 0.02%)</title><rect x="1104.3" y="661" width="0.2" height="15.0" fill="rgb(223,85,20)" rx="2" ry="2" /> | |
| <text x="1107.29" y="671.5" ></text> | |
| </g> | |
| <g > | |
| <title>__aarch64_ldadd4_acq_rel (16,267,424 samples, 0.01%)</title><rect x="195.6" y="741" width="0.1" height="15.0" fill="rgb(228,108,25)" rx="2" ry="2" /> | |
| <text x="198.59" y="751.5" ></text> | |
| </g> | |
| <g > | |
| <title>el0t_64_sync_handler (28,016,369 samples, 0.02%)</title><rect x="12.9" y="661" width="0.2" height="15.0" fill="rgb(211,32,7)" rx="2" ry="2" /> | |
| <text x="15.95" y="671.5" ></text> | |
| </g> | |
| <g > | |
| <title>pthread_cond_wait@@GLIBC_2.17 (48,933,519 samples, 0.03%)</title><rect x="34.6" y="789" width="0.4" height="15.0" fill="rgb(231,119,28)" rx="2" ry="2" /> | |
| <text x="37.64" y="799.5" ></text> | |
| </g> | |
| <g > | |
| <title>el0t_64_sync_handler (60,362,550 samples, 0.03%)</title><rect x="14.7" y="709" width="0.4" height="15.0" fill="rgb(211,32,7)" rx="2" ry="2" /> | |
| <text x="17.73" y="719.5" ></text> | |
| </g> | |
| <g > | |
| <title>pa_pstream_send_memblock (45,600,230 samples, 0.03%)</title><rect x="15.9" y="789" width="0.3" height="15.0" fill="rgb(245,188,44)" rx="2" ry="2" /> | |
| <text x="18.86" y="799.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_unmarshal_Uniform4f (24,933,546 samples, 0.01%)</title><rect x="946.9" y="661" width="0.2" height="15.0" fill="rgb(224,89,21)" rx="2" ry="2" /> | |
| <text x="949.93" y="671.5" ></text> | |
| </g> | |
| <g > | |
| <title>bind_texture_object (163,964,060 samples, 0.09%)</title><rect x="846.0" y="629" width="1.1" height="15.0" fill="rgb(221,73,17)" rx="2" ry="2" /> | |
| <text x="849.00" y="639.5" ></text> | |
| </g> | |
| <g > | |
| <title>get_futex_key (18,800,478 samples, 0.01%)</title><rect x="35.1" y="645" width="0.1" height="15.0" fill="rgb(252,216,51)" rx="2" ry="2" /> | |
| <text x="38.12" y="655.5" ></text> | |
| </g> | |
| <g > | |
| <title>futex_wake (110,123,297 samples, 0.06%)</title><rect x="191.1" y="549" width="0.8" height="15.0" fill="rgb(219,65,15)" rx="2" ry="2" /> | |
| <text x="194.14" y="559.5" ></text> | |
| </g> | |
| <g > | |
| <title>__ftello64 (24,010,894 samples, 0.01%)</title><rect x="1050.5" y="741" width="0.1" height="15.0" fill="rgb(228,107,25)" rx="2" ry="2" /> | |
| <text x="1053.46" y="751.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_unmarshal_DrawElementsPacked (21,558,582 samples, 0.01%)</title><rect x="785.8" y="117" width="0.2" height="15.0" fill="rgb(225,92,22)" rx="2" ry="2" /> | |
| <text x="788.83" y="127.5" ></text> | |
| </g> | |
| <g > | |
| <title>copy_uniforms_to_storage (15,850,684 samples, 0.01%)</title><rect x="1091.1" y="677" width="0.1" height="15.0" fill="rgb(250,207,49)" rx="2" ry="2" /> | |
| <text x="1094.15" y="687.5" ></text> | |
| </g> | |
| <g > | |
| <title>[libX11.so.6.4.0] (205,371,110 samples, 0.11%)</title><rect x="503.1" y="725" width="1.3" height="15.0" fill="rgb(220,73,17)" rx="2" ry="2" /> | |
| <text x="506.06" y="735.5" ></text> | |
| </g> | |
| <g > | |
| <title>glthread_unmarshal_batch (234,579,405 samples, 0.13%)</title><rect x="953.8" y="661" width="1.5" height="15.0" fill="rgb(247,195,46)" rx="2" ry="2" /> | |
| <text x="956.80" y="671.5" ></text> | |
| </g> | |
| <g > | |
| <title>tc_add_set_vertex_buffers_call (43,590,248 samples, 0.02%)</title><rect x="876.2" y="565" width="0.3" height="15.0" fill="rgb(214,45,10)" rx="2" ry="2" /> | |
| <text x="879.20" y="575.5" ></text> | |
| </g> | |
| <g > | |
| <title>amdgpu_bo_create_list_entry_array (61,497,309 samples, 0.03%)</title><rect x="290.2" y="565" width="0.4" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" /> | |
| <text x="293.17" y="575.5" ></text> | |
| </g> | |
| <g > | |
| <title>pa_mainloop_poll (199,093,430 samples, 0.11%)</title><rect x="13.3" y="789" width="1.3" height="15.0" fill="rgb(225,93,22)" rx="2" ry="2" /> | |
| <text x="16.30" y="799.5" ></text> | |
| </g> | |
| <g > | |
| <title>si_alloc_buffer_struct (15,750,963 samples, 0.01%)</title><rect x="419.0" y="693" width="0.1" height="15.0" fill="rgb(253,224,53)" rx="2" ry="2" /> | |
| <text x="422.02" y="703.5" ></text> | |
| </g> | |
| <g > | |
| <title>amdgpu_cs_add_buffer (27,600,619 samples, 0.02%)</title><rect x="130.3" y="757" width="0.2" height="15.0" fill="rgb(254,227,54)" rx="2" ry="2" /> | |
| <text x="133.29" y="767.5" ></text> | |
| </g> | |
| <g > | |
| <title>si_flush_gfx_cs (872,506,608 samples, 0.48%)</title><rect x="896.9" y="597" width="5.7" height="15.0" fill="rgb(242,171,41)" rx="2" ry="2" /> | |
| <text x="899.93" y="607.5" ></text> | |
| </g> | |
| <g > | |
| <title>st_prepare_draw (342,725,201 samples, 0.19%)</title><rect x="1111.0" y="677" width="2.2" height="15.0" fill="rgb(214,45,10)" rx="2" ry="2" /> | |
| <text x="1113.98" y="687.5" ></text> | |
| </g> | |
| <g > | |
| <title>util_queue_add_job_locked.part.0 (21,753,763 samples, 0.01%)</title><rect x="1172.8" y="741" width="0.2" height="15.0" fill="rgb(243,177,42)" rx="2" ry="2" /> | |
| <text x="1175.82" y="751.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_unmarshal_UnmapBuffer (25,988,440 samples, 0.01%)</title><rect x="476.9" y="805" width="0.2" height="15.0" fill="rgb(221,73,17)" rx="2" ry="2" /> | |
| <text x="479.92" y="815.5" ></text> | |
| </g> | |
| <g > | |
| <title>__printf_buffer (19,800,480 samples, 0.01%)</title><rect x="789.6" y="181" width="0.1" height="15.0" fill="rgb(219,68,16)" rx="2" ry="2" /> | |
| <text x="792.55" y="191.5" ></text> | |
| </g> | |
| <g > | |
| <title>__aarch64_ldadd4_acq_rel (569,440,961 samples, 0.32%)</title><rect x="237.9" y="773" width="3.7" height="15.0" fill="rgb(228,108,25)" rx="2" ry="2" /> | |
| <text x="240.86" y="783.5" ></text> | |
| </g> | |
| <g > | |
| <title>do_el0_svc (96,581,697 samples, 0.05%)</title><rect x="509.8" y="613" width="0.7" height="15.0" fill="rgb(218,60,14)" rx="2" ry="2" /> | |
| <text x="512.85" y="623.5" ></text> | |
| </g> | |
| <g > | |
| <title>vbo_exec_FlushVertices (44,665,169 samples, 0.02%)</title><rect x="877.7" y="597" width="0.3" height="15.0" fill="rgb(226,100,24)" rx="2" ry="2" /> | |
| <text x="880.70" y="607.5" ></text> | |
| </g> | |
| <g > | |
| <title>update_framebuffer (91,398,686 samples, 0.05%)</title><rect x="988.0" y="613" width="0.6" height="15.0" fill="rgb(222,78,18)" rx="2" ry="2" /> | |
| <text x="990.96" y="623.5" ></text> | |
| </g> | |
| <g > | |
| <title>audit_reset_context.part.0.constprop.0 (23,329,126 samples, 0.01%)</title><rect x="331.1" y="645" width="0.1" height="15.0" fill="rgb(248,200,47)" rx="2" ry="2" /> | |
| <text x="334.09" y="655.5" ></text> | |
| </g> | |
| <g > | |
| <title>__memcpy_generic (20,634,635 samples, 0.01%)</title><rect x="974.8" y="645" width="0.2" height="15.0" fill="rgb(231,124,29)" rx="2" ry="2" /> | |
| <text x="977.83" y="655.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_uniform (32,520,463 samples, 0.02%)</title><rect x="1019.2" y="661" width="0.2" height="15.0" fill="rgb(248,201,48)" rx="2" ry="2" /> | |
| <text x="1022.23" y="671.5" ></text> | |
| </g> | |
| <g > | |
| <title>deflate (26,559,151 samples, 0.01%)</title><rect x="957.4" y="709" width="0.1" height="15.0" fill="rgb(230,115,27)" rx="2" ry="2" /> | |
| <text x="960.35" y="719.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_DrawElementsBaseVertex (322,636,091 samples, 0.18%)</title><rect x="812.1" y="597" width="2.1" height="15.0" fill="rgb(214,41,10)" rx="2" ry="2" /> | |
| <text x="815.12" y="607.5" ></text> | |
| </g> | |
| <g > | |
| <title>generic_permission (48,825,872 samples, 0.03%)</title><rect x="1183.9" y="485" width="0.3" height="15.0" fill="rgb(228,107,25)" rx="2" ry="2" /> | |
| <text x="1186.86" y="495.5" ></text> | |
| </g> | |
| <g > | |
| <title>do_el0_svc (102,419,777 samples, 0.06%)</title><rect x="979.8" y="597" width="0.7" height="15.0" fill="rgb(218,60,14)" rx="2" ry="2" /> | |
| <text x="982.81" y="607.5" ></text> | |
| </g> | |
| <g > | |
| <title>el0t_64_sync (153,405,578 samples, 0.08%)</title><rect x="503.3" y="645" width="1.0" height="15.0" fill="rgb(217,56,13)" rx="2" ry="2" /> | |
| <text x="506.31" y="655.5" ></text> | |
| </g> | |
| <g > | |
| <title>st_prepare_draw (77,804,592 samples, 0.04%)</title><rect x="1153.7" y="677" width="0.5" height="15.0" fill="rgb(214,45,10)" rx="2" ry="2" /> | |
| <text x="1156.68" y="687.5" ></text> | |
| </g> | |
| <g > | |
| <title>pthread_cond_signal@@GLIBC_2.17 (155,826,387 samples, 0.09%)</title><rect x="190.9" y="693" width="1.0" height="15.0" fill="rgb(232,126,30)" rx="2" ry="2" /> | |
| <text x="193.92" y="703.5" ></text> | |
| </g> | |
| <g > | |
| <title>syscall (84,000,781 samples, 0.05%)</title><rect x="901.0" y="533" width="0.6" height="15.0" fill="rgb(234,136,32)" rx="2" ry="2" /> | |
| <text x="904.04" y="543.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_VertexAttrib4fARB (49,804,970 samples, 0.03%)</title><rect x="1027.6" y="661" width="0.4" height="15.0" fill="rgb(251,214,51)" rx="2" ry="2" /> | |
| <text x="1030.65" y="671.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_glthread_finish (959,468,392 samples, 0.53%)</title><rect x="809.4" y="645" width="6.3" height="15.0" fill="rgb(209,22,5)" rx="2" ry="2" /> | |
| <text x="812.40" y="655.5" ></text> | |
| </g> | |
| <g > | |
| <title>tc_buffer_map (19,688,488 samples, 0.01%)</title><rect x="1170.9" y="741" width="0.1" height="15.0" fill="rgb(247,195,46)" rx="2" ry="2" /> | |
| <text x="1173.88" y="751.5" ></text> | |
| </g> | |
| <g > | |
| <title>__printf_buffer (126,124,542 samples, 0.07%)</title><rect x="969.3" y="677" width="0.8" height="15.0" fill="rgb(219,68,16)" rx="2" ry="2" /> | |
| <text x="972.28" y="687.5" ></text> | |
| </g> | |
| <g > | |
| <title>__aarch64_cas4_sync (20,367,757 samples, 0.01%)</title><rect x="349.0" y="757" width="0.1" height="15.0" fill="rgb(253,222,53)" rx="2" ry="2" /> | |
| <text x="352.00" y="767.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_unmarshal_DrawElements (23,737,939 samples, 0.01%)</title><rect x="866.7" y="645" width="0.1" height="15.0" fill="rgb(247,195,46)" rx="2" ry="2" /> | |
| <text x="869.69" y="655.5" ></text> | |
| </g> | |
| <g > | |
| <title>cso_set_vertex_elements (18,826,739 samples, 0.01%)</title><rect x="1063.5" y="597" width="0.1" height="15.0" fill="rgb(238,152,36)" rx="2" ry="2" /> | |
| <text x="1066.51" y="607.5" ></text> | |
| </g> | |
| <g > | |
| <title>amdgpu_fence_destroy (119,298,643 samples, 0.07%)</title><rect x="509.7" y="725" width="0.8" height="15.0" fill="rgb(225,92,22)" rx="2" ry="2" /> | |
| <text x="512.72" y="735.5" ></text> | |
| </g> | |
| <g > | |
| <title>futex_wait_setup (38,641,713 samples, 0.02%)</title><rect x="1095.5" y="517" width="0.3" height="15.0" fill="rgb(247,195,46)" rx="2" ry="2" /> | |
| <text x="1098.53" y="527.5" ></text> | |
| </g> | |
| <g > | |
| <title>start_thread (208,926,904 samples, 0.12%)</title><rect x="10.0" y="869" width="1.4" height="15.0" fill="rgb(212,34,8)" rx="2" ry="2" /> | |
| <text x="13.00" y="879.5" ></text> | |
| </g> | |
| <g > | |
| <title>pthread_cond_signal@@GLIBC_2.17 (21,753,763 samples, 0.01%)</title><rect x="1172.8" y="693" width="0.2" height="15.0" fill="rgb(232,126,30)" rx="2" ry="2" /> | |
| <text x="1175.82" y="703.5" ></text> | |
| </g> | |
| <g > | |
| <title>tc_set_constant_buffer (65,073,117 samples, 0.04%)</title><rect x="1125.9" y="629" width="0.4" height="15.0" fill="rgb(247,195,46)" rx="2" ry="2" /> | |
| <text x="1128.92" y="639.5" ></text> | |
| </g> | |
| <g > | |
| <title>kvmalloc_node_noprof (55,467,508 samples, 0.03%)</title><rect x="299.7" y="549" width="0.4" height="15.0" fill="rgb(210,25,5)" rx="2" ry="2" /> | |
| <text x="302.73" y="559.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_update_texture_state (108,580,297 samples, 0.06%)</title><rect x="1114.3" y="629" width="0.7" height="15.0" fill="rgb(237,148,35)" rx="2" ry="2" /> | |
| <text x="1117.27" y="639.5" ></text> | |
| </g> | |
| <g > | |
| <title>futex_wait_setup (18,074,804 samples, 0.01%)</title><rect x="901.3" y="357" width="0.1" height="15.0" fill="rgb(247,195,46)" rx="2" ry="2" /> | |
| <text x="904.28" y="367.5" ></text> | |
| </g> | |
| <g > | |
| <title>drmSyncobjDestroy (21,205,288 samples, 0.01%)</title><rect x="515.4" y="549" width="0.2" height="15.0" fill="rgb(205,0,0)" rx="2" ry="2" /> | |
| <text x="518.43" y="559.5" ></text> | |
| </g> | |
| <g > | |
| <title>[redeclipse] (96,057,319,092 samples, 53.20%)</title><rect x="549.2" y="789" width="627.8" height="15.0" fill="rgb(253,222,53)" rx="2" ry="2" /> | |
| <text x="552.18" y="799.5" >[redeclipse]</text> | |
| </g> | |
| <g > | |
| <title>amdgpu_fence_wait (177,751,286 samples, 0.10%)</title><rect x="895.6" y="565" width="1.2" height="15.0" fill="rgb(227,105,25)" rx="2" ry="2" /> | |
| <text x="898.62" y="575.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_program_init_subroutine_defaults (34,185,655 samples, 0.02%)</title><rect x="950.5" y="581" width="0.2" height="15.0" fill="rgb(231,122,29)" rx="2" ry="2" /> | |
| <text x="953.51" y="591.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_unmarshal_Uniform3fv (22,986,323 samples, 0.01%)</title><rect x="499.1" y="789" width="0.2" height="15.0" fill="rgb(218,63,15)" rx="2" ry="2" /> | |
| <text x="502.15" y="799.5" ></text> | |
| </g> | |
| <g > | |
| <title>do_el0_svc (56,097,574 samples, 0.03%)</title><rect x="972.7" y="597" width="0.3" height="15.0" fill="rgb(218,60,14)" rx="2" ry="2" /> | |
| <text x="975.65" y="607.5" ></text> | |
| </g> | |
| <g > | |
| <title>update_single_program_texture (19,081,673 samples, 0.01%)</title><rect x="1153.0" y="613" width="0.1" height="15.0" fill="rgb(241,165,39)" rx="2" ry="2" /> | |
| <text x="1156.01" y="623.5" ></text> | |
| </g> | |
| <g > | |
| <title>__arm64_sys_futex (16,449,748 samples, 0.01%)</title><rect x="418.8" y="533" width="0.2" height="15.0" fill="rgb(247,196,47)" rx="2" ry="2" /> | |
| <text x="421.84" y="543.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_unmarshal_BindTexture (109,545,682 samples, 0.06%)</title><rect x="1077.7" y="709" width="0.8" height="15.0" fill="rgb(248,199,47)" rx="2" ry="2" /> | |
| <text x="1080.74" y="719.5" ></text> | |
| </g> | |
| <g > | |
| <title>__rseq_handle_notify_resume (21,613,489 samples, 0.01%)</title><rect x="1096.0" y="613" width="0.1" height="15.0" fill="rgb(238,153,36)" rx="2" ry="2" /> | |
| <text x="1098.96" y="623.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_glthread_finish (2,631,654,399 samples, 1.46%)</title><rect x="1076.9" y="741" width="17.2" height="15.0" fill="rgb(209,22,5)" rx="2" ry="2" /> | |
| <text x="1079.89" y="751.5" ></text> | |
| </g> | |
| <g > | |
| <title>si_alloc_buffer_struct (20,104,642 samples, 0.01%)</title><rect x="150.5" y="709" width="0.1" height="15.0" fill="rgb(253,224,53)" rx="2" ry="2" /> | |
| <text x="153.50" y="719.5" ></text> | |
| </g> | |
| <g > | |
| <title>amdgpu_sync_resv (768,879,976 samples, 0.43%)</title><rect x="315.2" y="565" width="5.0" height="15.0" fill="rgb(246,188,45)" rx="2" ry="2" /> | |
| <text x="318.22" y="575.5" ></text> | |
| </g> | |
| <g > | |
| <title>el0t_64_sync (40,902,276 samples, 0.02%)</title><rect x="1160.8" y="565" width="0.2" height="15.0" fill="rgb(217,56,13)" rx="2" ry="2" /> | |
| <text x="1163.77" y="575.5" ></text> | |
| </g> | |
| <g > | |
| <title>[redeclipse] (3,120,329,286 samples, 1.73%)</title><rect x="772.3" y="277" width="20.4" height="15.0" fill="rgb(253,222,53)" rx="2" ry="2" /> | |
| <text x="775.29" y="287.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_update_state (343,028,430 samples, 0.19%)</title><rect x="867.2" y="613" width="2.3" height="15.0" fill="rgb(222,78,18)" rx="2" ry="2" /> | |
| <text x="870.25" y="623.5" ></text> | |
| </g> | |
| <g > | |
| <title>vbo_exec_copy_to_current (35,317,397 samples, 0.02%)</title><rect x="878.0" y="597" width="0.2" height="15.0" fill="rgb(218,60,14)" rx="2" ry="2" /> | |
| <text x="881.00" y="607.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_update_texture_state (200,606,951 samples, 0.11%)</title><rect x="867.9" y="581" width="1.3" height="15.0" fill="rgb(237,148,35)" rx="2" ry="2" /> | |
| <text x="870.92" y="591.5" ></text> | |
| </g> | |
| <g > | |
| <title>__radix_tree_lookup (213,061,545 samples, 0.12%)</title><rect x="298.3" y="501" width="1.4" height="15.0" fill="rgb(253,222,53)" rx="2" ry="2" /> | |
| <text x="301.29" y="511.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_marshal_Flush (115,949,048 samples, 0.06%)</title><rect x="1177.5" y="789" width="0.8" height="15.0" fill="rgb(219,68,16)" rx="2" ry="2" /> | |
| <text x="1180.55" y="799.5" ></text> | |
| </g> | |
| <g > | |
| <title>update_textures (20,175,511 samples, 0.01%)</title><rect x="376.8" y="757" width="0.1" height="15.0" fill="rgb(232,125,29)" rx="2" ry="2" /> | |
| <text x="379.76" y="767.5" ></text> | |
| </g> | |
| <g > | |
| <title>drm_ioctl_kernel (9,714,004,967 samples, 5.38%)</title><rect x="267.1" y="613" width="63.5" height="15.0" fill="rgb(226,101,24)" rx="2" ry="2" /> | |
| <text x="270.15" y="623.5" >drm_io..</text> | |
| </g> | |
| <g > | |
| <title>si_query_hw_get_result (757,595,419 samples, 0.42%)</title><rect x="1159.9" y="693" width="5.0" height="15.0" fill="rgb(239,156,37)" rx="2" ry="2" /> | |
| <text x="1162.94" y="703.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_uniform (23,561,661 samples, 0.01%)</title><rect x="1064.9" y="661" width="0.1" height="15.0" fill="rgb(248,201,48)" rx="2" ry="2" /> | |
| <text x="1067.87" y="671.5" ></text> | |
| </g> | |
| <g > | |
| <title>tc_buffer_map (229,904,483 samples, 0.13%)</title><rect x="1071.3" y="709" width="1.5" height="15.0" fill="rgb(247,195,46)" rx="2" ry="2" /> | |
| <text x="1074.29" y="719.5" ></text> | |
| </g> | |
| <g > | |
| <title>drm_syncobj_create_ioctl (51,294,799 samples, 0.03%)</title><rect x="189.3" y="517" width="0.3" height="15.0" fill="rgb(237,150,36)" rx="2" ry="2" /> | |
| <text x="192.25" y="527.5" ></text> | |
| </g> | |
| <g > | |
| <title>cnd_signal (21,677,866 samples, 0.01%)</title><rect x="1068.6" y="693" width="0.1" height="15.0" fill="rgb(232,125,30)" rx="2" ry="2" /> | |
| <text x="1071.56" y="703.5" ></text> | |
| </g> | |
| <g > | |
| <title>util_sparse_array_get (18,763,951 samples, 0.01%)</title><rect x="1102.2" y="645" width="0.1" height="15.0" fill="rgb(241,168,40)" rx="2" ry="2" /> | |
| <text x="1105.20" y="655.5" ></text> | |
| </g> | |
| <g > | |
| <title>si_pm4_emit_state (25,107,186 samples, 0.01%)</title><rect x="159.8" y="773" width="0.2" height="15.0" fill="rgb(232,128,30)" rx="2" ry="2" /> | |
| <text x="162.82" y="783.5" ></text> | |
| </g> | |
| <g > | |
| <title>invoke_syscall (200,824,815 samples, 0.11%)</title><rect x="188.5" y="597" width="1.3" height="15.0" fill="rgb(209,18,4)" rx="2" ry="2" /> | |
| <text x="191.51" y="607.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_uniform (48,875,634 samples, 0.03%)</title><rect x="462.0" y="757" width="0.3" height="15.0" fill="rgb(248,201,48)" rx="2" ry="2" /> | |
| <text x="465.00" y="767.5" ></text> | |
| </g> | |
| <g > | |
| <title>si_check_render_feedback (16,356,862 samples, 0.01%)</title><rect x="525.7" y="645" width="0.1" height="15.0" fill="rgb(222,79,18)" rx="2" ry="2" /> | |
| <text x="528.69" y="655.5" ></text> | |
| </g> | |
| <g > | |
| <title>el0_svc (845,336,097 samples, 0.47%)</title><rect x="1181.4" y="693" width="5.5" height="15.0" fill="rgb(244,183,43)" rx="2" ry="2" /> | |
| <text x="1184.37" y="703.5" ></text> | |
| </g> | |
| <g > | |
| <title>st_get_sampler_view_format (18,473,531 samples, 0.01%)</title><rect x="940.8" y="533" width="0.1" height="15.0" fill="rgb(211,30,7)" rx="2" ry="2" /> | |
| <text x="943.78" y="543.5" ></text> | |
| </g> | |
| <g > | |
| <title>buffer_data_error (89,957,239 samples, 0.05%)</title><rect x="927.0" y="645" width="0.6" height="15.0" fill="rgb(213,38,9)" rx="2" ry="2" /> | |
| <text x="930.03" y="655.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_use_shader_program (24,688,291 samples, 0.01%)</title><rect x="1024.4" y="629" width="0.2" height="15.0" fill="rgb(245,188,44)" rx="2" ry="2" /> | |
| <text x="1027.41" y="639.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_UniformMatrix4fv (216,534,967 samples, 0.12%)</title><rect x="1021.7" y="661" width="1.4" height="15.0" fill="rgb(235,139,33)" rx="2" ry="2" /> | |
| <text x="1024.66" y="671.5" ></text> | |
| </g> | |
| <g > | |
| <title>__aarch64_ldadd4_acq_rel (114,095,474 samples, 0.06%)</title><rect x="359.7" y="757" width="0.8" height="15.0" fill="rgb(228,108,25)" rx="2" ry="2" /> | |
| <text x="362.74" y="767.5" ></text> | |
| </g> | |
| <g > | |
| <title>do_el0_svc (9,965,259,243 samples, 5.52%)</title><rect x="266.2" y="709" width="65.1" height="15.0" fill="rgb(218,60,14)" rx="2" ry="2" /> | |
| <text x="269.18" y="719.5" >do_el0_..</text> | |
| </g> | |
| <g > | |
| <title>_mesa_unmarshal_UseProgram (59,038,731 samples, 0.03%)</title><rect x="491.4" y="789" width="0.4" height="15.0" fill="rgb(226,99,23)" rx="2" ry="2" /> | |
| <text x="494.45" y="799.5" ></text> | |
| </g> | |
| <g > | |
| <title>__arm64_sys_futex (140,383,858 samples, 0.08%)</title><rect x="249.3" y="661" width="0.9" height="15.0" fill="rgb(247,196,47)" rx="2" ry="2" /> | |
| <text x="252.28" y="671.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_unmarshal_DepthRange (25,764,154 samples, 0.01%)</title><rect x="989.2" y="677" width="0.2" height="15.0" fill="rgb(252,219,52)" rx="2" ry="2" /> | |
| <text x="992.23" y="687.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_update_valid_to_render_state (16,766,316 samples, 0.01%)</title><rect x="1146.2" y="629" width="0.1" height="15.0" fill="rgb(219,66,15)" rx="2" ry="2" /> | |
| <text x="1149.15" y="639.5" ></text> | |
| </g> | |
| <g > | |
| <title>__sys_recvmsg (116,832,979 samples, 0.06%)</title><rect x="507.8" y="549" width="0.8" height="15.0" fill="rgb(252,216,51)" rx="2" ry="2" /> | |
| <text x="510.82" y="559.5" ></text> | |
| </g> | |
| <g > | |
| <title>vbo_exec_FlushVertices (29,231,504 samples, 0.02%)</title><rect x="944.6" y="613" width="0.2" height="15.0" fill="rgb(226,100,24)" rx="2" ry="2" /> | |
| <text x="947.65" y="623.5" ></text> | |
| </g> | |
| <g > | |
| <title>tc_add_set_vertex_buffers_call (57,419,223 samples, 0.03%)</title><rect x="453.0" y="725" width="0.3" height="15.0" fill="rgb(214,45,10)" rx="2" ry="2" /> | |
| <text x="455.96" y="735.5" ></text> | |
| </g> | |
| <g > | |
| <title>__audit_syscall_exit (17,805,103 samples, 0.01%)</title><rect x="1186.8" y="629" width="0.1" height="15.0" fill="rgb(218,62,14)" rx="2" ry="2" /> | |
| <text x="1189.76" y="639.5" ></text> | |
| </g> | |
| <g > | |
| <title>el0_svc_common.constprop.0 (205,087,125 samples, 0.11%)</title><rect x="1107.0" y="405" width="1.4" height="15.0" fill="rgb(224,89,21)" rx="2" ry="2" /> | |
| <text x="1110.01" y="415.5" ></text> | |
| </g> | |
| <g > | |
| <title>__libc_recvmsg (42,009,443 samples, 0.02%)</title><rect x="508.8" y="725" width="0.3" height="15.0" fill="rgb(220,72,17)" rx="2" ry="2" /> | |
| <text x="511.83" y="735.5" ></text> | |
| </g> | |
| <g > | |
| <title>st_get_sampler_views (162,868,589 samples, 0.09%)</title><rect x="427.9" y="709" width="1.1" height="15.0" fill="rgb(224,91,21)" rx="2" ry="2" /> | |
| <text x="430.89" y="719.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_bind_vertex_buffer (16,252,041 samples, 0.01%)</title><rect x="1093.0" y="661" width="0.1" height="15.0" fill="rgb(241,166,39)" rx="2" ry="2" /> | |
| <text x="1095.97" y="671.5" ></text> | |
| </g> | |
| <g > | |
| <title>st_update_fp (25,831,495 samples, 0.01%)</title><rect x="1006.5" y="597" width="0.1" height="15.0" fill="rgb(207,12,3)" rx="2" ry="2" /> | |
| <text x="1009.46" y="607.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_unmarshal_UseProgram (169,141,136 samples, 0.09%)</title><rect x="858.5" y="645" width="1.1" height="15.0" fill="rgb(226,99,23)" rx="2" ry="2" /> | |
| <text x="861.48" y="655.5" ></text> | |
| </g> | |
| <g > | |
| <title>glBindTexture (58,686,747 samples, 0.03%)</title><rect x="1034.7" y="725" width="0.4" height="15.0" fill="rgb(224,91,21)" rx="2" ry="2" /> | |
| <text x="1037.68" y="735.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_flush_vertices_for_uniforms (50,374,990 samples, 0.03%)</title><rect x="1022.4" y="613" width="0.4" height="15.0" fill="rgb(211,31,7)" rx="2" ry="2" /> | |
| <text x="1025.43" y="623.5" ></text> | |
| </g> | |
| <g > | |
| <title>unmap_buffer (87,356,917 samples, 0.05%)</title><rect x="880.0" y="629" width="0.5" height="15.0" fill="rgb(233,131,31)" rx="2" ry="2" /> | |
| <text x="882.98" y="639.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_update_state_locked (67,783,952 samples, 0.04%)</title><rect x="847.6" y="581" width="0.5" height="15.0" fill="rgb(214,43,10)" rx="2" ry="2" /> | |
| <text x="850.61" y="591.5" ></text> | |
| </g> | |
| <g > | |
| <title>__arm64_sys_futex (18,386,053 samples, 0.01%)</title><rect x="453.1" y="533" width="0.2" height="15.0" fill="rgb(247,196,47)" rx="2" ry="2" /> | |
| <text x="456.15" y="543.5" ></text> | |
| </g> | |
| <g > | |
| <title>st_get_texture_sampler_view_from_stobj (112,764,821 samples, 0.06%)</title><rect x="1013.5" y="565" width="0.7" height="15.0" fill="rgb(211,32,7)" rx="2" ry="2" /> | |
| <text x="1016.46" y="575.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_update_state_locked (329,853,569 samples, 0.18%)</title><rect x="847.6" y="597" width="2.2" height="15.0" fill="rgb(214,43,10)" rx="2" ry="2" /> | |
| <text x="850.61" y="607.5" ></text> | |
| </g> | |
| <g > | |
| <title>st_get_sampler_views (120,208,190 samples, 0.07%)</title><rect x="1087.2" y="629" width="0.8" height="15.0" fill="rgb(224,91,21)" rx="2" ry="2" /> | |
| <text x="1090.21" y="639.5" ></text> | |
| </g> | |
| <g > | |
| <title>[libSDL2_mixer-2.0.so.0.800.0] (1,266,738,801 samples, 0.70%)</title><rect x="19.3" y="789" width="8.3" height="15.0" fill="rgb(244,183,43)" rx="2" ry="2" /> | |
| <text x="22.28" y="799.5" ></text> | |
| </g> | |
| <g > | |
| <title>__arm64_sys_ioctl (262,316,027 samples, 0.15%)</title><rect x="1161.2" y="469" width="1.7" height="15.0" fill="rgb(207,11,2)" rx="2" ry="2" /> | |
| <text x="1164.23" y="479.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_unmarshal_BindBuffer (20,449,130 samples, 0.01%)</title><rect x="1056.9" y="693" width="0.1" height="15.0" fill="rgb(223,86,20)" rx="2" ry="2" /> | |
| <text x="1059.91" y="703.5" ></text> | |
| </g> | |
| <g > | |
| <title>st_get_texture_sampler_view_from_stobj (26,595,686 samples, 0.01%)</title><rect x="813.2" y="501" width="0.2" height="15.0" fill="rgb(211,32,7)" rx="2" ry="2" /> | |
| <text x="816.23" y="511.5" ></text> | |
| </g> | |
| <g > | |
| <title>pthread_cond_signal@@GLIBC_2.17 (16,504,186 samples, 0.01%)</title><rect x="1076.7" y="693" width="0.1" height="15.0" fill="rgb(232,126,30)" rx="2" ry="2" /> | |
| <text x="1079.68" y="703.5" ></text> | |
| </g> | |
| <g > | |
| <title>_glapi_set_dispatch (30,864,581 samples, 0.02%)</title><rect x="979.1" y="693" width="0.2" height="15.0" fill="rgb(208,15,3)" rx="2" ry="2" /> | |
| <text x="982.09" y="703.5" ></text> | |
| </g> | |
| <g > | |
| <title>drm_ioctl_kernel (27,283,144 samples, 0.02%)</title><rect x="331.8" y="597" width="0.2" height="15.0" fill="rgb(226,101,24)" rx="2" ry="2" /> | |
| <text x="334.84" y="607.5" ></text> | |
| </g> | |
| <g > | |
| <title>slab_alloc (25,959,362 samples, 0.01%)</title><rect x="816.8" y="549" width="0.2" height="15.0" fill="rgb(221,74,17)" rx="2" ry="2" /> | |
| <text x="819.78" y="559.5" ></text> | |
| </g> | |
| <g > | |
| <title>el0t_64_sync (157,298,369 samples, 0.09%)</title><rect x="979.8" y="645" width="1.0" height="15.0" fill="rgb(217,56,13)" rx="2" ry="2" /> | |
| <text x="982.78" y="655.5" ></text> | |
| </g> | |
| <g > | |
| <title>pthread_cond_broadcast@@GLIBC_2.17 (40,813,938 samples, 0.02%)</title><rect x="11.6" y="629" width="0.3" height="15.0" fill="rgb(236,144,34)" rx="2" ry="2" /> | |
| <text x="14.65" y="639.5" ></text> | |
| </g> | |
| <g > | |
| <title>el0t_64_sync (129,580,904 samples, 0.07%)</title><rect x="36.1" y="773" width="0.9" height="15.0" fill="rgb(217,56,13)" rx="2" ry="2" /> | |
| <text x="39.14" y="783.5" ></text> | |
| </g> | |
| <g > | |
| <title>util_copy_framebuffer_state (27,974,488 samples, 0.02%)</title><rect x="374.2" y="741" width="0.2" height="15.0" fill="rgb(234,137,32)" rx="2" ry="2" /> | |
| <text x="377.22" y="751.5" ></text> | |
| </g> | |
| <g > | |
| <title>si_emit_graphics_shader_pointers (104,857,234 samples, 0.06%)</title><rect x="889.6" y="565" width="0.6" height="15.0" fill="rgb(232,125,29)" rx="2" ry="2" /> | |
| <text x="892.56" y="575.5" ></text> | |
| </g> | |
| <g > | |
| <title>si_set_active_descriptors_for_shader (26,589,915 samples, 0.01%)</title><rect x="62.2" y="741" width="0.2" height="15.0" fill="rgb(217,57,13)" rx="2" ry="2" /> | |
| <text x="65.23" y="751.5" ></text> | |
| </g> | |
| <g > | |
| <title>rseq_update_cpu_node_id (32,821,537 samples, 0.02%)</title><rect x="14.2" y="645" width="0.2" height="15.0" fill="rgb(224,88,21)" rx="2" ry="2" /> | |
| <text x="17.15" y="655.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_unmarshal_DrawElementsPacked (25,950,808 samples, 0.01%)</title><rect x="784.4" y="101" width="0.2" height="15.0" fill="rgb(225,92,22)" rx="2" ry="2" /> | |
| <text x="787.44" y="111.5" ></text> | |
| </g> | |
| <g > | |
| <title>__GI___ioctl (258,954,442 samples, 0.14%)</title><rect x="188.3" y="693" width="1.7" height="15.0" fill="rgb(232,128,30)" rx="2" ry="2" /> | |
| <text x="191.34" y="703.5" ></text> | |
| </g> | |
| <g > | |
| <title>pa_write (46,184,315 samples, 0.03%)</title><rect x="15.2" y="757" width="0.3" height="15.0" fill="rgb(214,43,10)" rx="2" ry="2" /> | |
| <text x="18.15" y="767.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_update_valid_to_render_state (23,408,004 samples, 0.01%)</title><rect x="483.5" y="757" width="0.2" height="15.0" fill="rgb(219,66,15)" rx="2" ry="2" /> | |
| <text x="486.52" y="767.5" ></text> | |
| </g> | |
| <g > | |
| <title>audit_reset_context.part.0.constprop.0 (16,070,702 samples, 0.01%)</title><rect x="250.4" y="645" width="0.1" height="15.0" fill="rgb(248,200,47)" rx="2" ry="2" /> | |
| <text x="253.37" y="655.5" ></text> | |
| </g> | |
| <g > | |
| <title>viewport (21,248,593 samples, 0.01%)</title><rect x="1093.5" y="693" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" /> | |
| <text x="1096.54" y="703.5" ></text> | |
| </g> | |
| <g > | |
| <title>inflate (15,547,848 samples, 0.01%)</title><rect x="741.3" y="597" width="0.1" height="15.0" fill="rgb(239,159,38)" rx="2" ry="2" /> | |
| <text x="744.34" y="607.5" ></text> | |
| </g> | |
| <g > | |
| <title>[redeclipse] (24,844,165 samples, 0.01%)</title><rect x="781.8" y="101" width="0.1" height="15.0" fill="rgb(253,222,53)" rx="2" ry="2" /> | |
| <text x="784.76" y="111.5" ></text> | |
| </g> | |
| <g > | |
| <title>schedule (30,462,132 samples, 0.02%)</title><rect x="1034.3" y="453" width="0.2" height="15.0" fill="rgb(254,229,54)" rx="2" ry="2" /> | |
| <text x="1037.28" y="463.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_unmarshal_BlendFunc (42,694,327 samples, 0.02%)</title><rect x="987.4" y="677" width="0.3" height="15.0" fill="rgb(232,127,30)" rx="2" ry="2" /> | |
| <text x="990.42" y="687.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_framebuffer_texture (128,291,918 samples, 0.07%)</title><rect x="1089.0" y="677" width="0.8" height="15.0" fill="rgb(251,213,50)" rx="2" ry="2" /> | |
| <text x="1091.96" y="687.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_reference_program_ (29,951,897 samples, 0.02%)</title><rect x="1122.7" y="629" width="0.2" height="15.0" fill="rgb(231,122,29)" rx="2" ry="2" /> | |
| <text x="1125.75" y="639.5" ></text> | |
| </g> | |
| <g > | |
| <title>el0t_64_sync (820,525,518 samples, 0.45%)</title><rect x="28.4" y="757" width="5.4" height="15.0" fill="rgb(217,56,13)" rx="2" ry="2" /> | |
| <text x="31.40" y="767.5" ></text> | |
| </g> | |
| <g > | |
| <title>tc_call_draw_single (240,265,583 samples, 0.13%)</title><rect x="128.3" y="789" width="1.5" height="15.0" fill="rgb(247,193,46)" rx="2" ry="2" /> | |
| <text x="131.26" y="799.5" ></text> | |
| </g> | |
| <g > | |
| <title>el0t_64_sync_handler (146,601,652 samples, 0.08%)</title><rect x="191.0" y="661" width="0.9" height="15.0" fill="rgb(211,32,7)" rx="2" ry="2" /> | |
| <text x="193.98" y="671.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_VertexAttribPointer (30,008,351 samples, 0.02%)</title><rect x="1067.4" y="661" width="0.2" height="15.0" fill="rgb(211,29,7)" rx="2" ry="2" /> | |
| <text x="1070.42" y="671.5" ></text> | |
| </g> | |
| <g > | |
| <title>bool si_update_shaders< (23,171,825 samples, 0.01%)</title><rect x="173.7" y="757" width="0.1" height="15.0" fill="rgb(233,129,30)" rx="2" ry="2" /> | |
| <text x="176.68" y="767.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_draw_arrays.part.0 (149,541,857 samples, 0.08%)</title><rect x="1153.4" y="693" width="1.0" height="15.0" fill="rgb(227,104,25)" rx="2" ry="2" /> | |
| <text x="1156.42" y="703.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_DrawArraysInstancedBaseInstance (15,555,516 samples, 0.01%)</title><rect x="782.4" y="53" width="0.1" height="15.0" fill="rgb(243,178,42)" rx="2" ry="2" /> | |
| <text x="785.41" y="63.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_DrawElementsBaseVertex (54,761,079 samples, 0.03%)</title><rect x="1001.7" y="645" width="0.3" height="15.0" fill="rgb(214,41,10)" rx="2" ry="2" /> | |
| <text x="1004.68" y="655.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_uniform_matrix (33,865,997 samples, 0.02%)</title><rect x="947.6" y="613" width="0.2" height="15.0" fill="rgb(215,47,11)" rx="2" ry="2" /> | |
| <text x="950.62" y="623.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_use_shader_program (103,922,170 samples, 0.06%)</title><rect x="1066.6" y="661" width="0.7" height="15.0" fill="rgb(245,188,44)" rx="2" ry="2" /> | |
| <text x="1069.65" y="671.5" ></text> | |
| </g> | |
| <g > | |
| <title>st_update_sample_shading (28,199,565 samples, 0.02%)</title><rect x="1122.5" y="645" width="0.1" height="15.0" fill="rgb(237,150,36)" rx="2" ry="2" /> | |
| <text x="1125.46" y="655.5" ></text> | |
| </g> | |
| <g > | |
| <title>dri_image_drawable_get_buffers (468,147,945 samples, 0.26%)</title><rect x="1105.6" y="597" width="3.0" height="15.0" fill="rgb(228,106,25)" rx="2" ry="2" /> | |
| <text x="1108.58" y="607.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_marshal_BindTexture (36,159,865 samples, 0.02%)</title><rect x="1076.5" y="757" width="0.3" height="15.0" fill="rgb(214,44,10)" rx="2" ry="2" /> | |
| <text x="1079.55" y="767.5" ></text> | |
| </g> | |
| <g > | |
| <title>tc_call_buffer_unmap (551,719,307 samples, 0.31%)</title><rect x="76.1" y="789" width="3.6" height="15.0" fill="rgb(205,4,1)" rx="2" ry="2" /> | |
| <text x="79.09" y="799.5" ></text> | |
| </g> | |
| <g > | |
| <title>[unknown] (16,242,093 samples, 0.01%)</title><rect x="521.6" y="661" width="0.2" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" /> | |
| <text x="524.65" y="671.5" ></text> | |
| </g> | |
| <g > | |
| <title>tc_call_bind_blend_state (23,707,867 samples, 0.01%)</title><rect x="517.8" y="693" width="0.2" height="15.0" fill="rgb(230,115,27)" rx="2" ry="2" /> | |
| <text x="520.81" y="703.5" ></text> | |
| </g> | |
| <g > | |
| <title>get_query_object (2,818,341,605 samples, 1.56%)</title><rect x="884.4" y="693" width="18.5" height="15.0" fill="rgb(236,144,34)" rx="2" ry="2" /> | |
| <text x="887.44" y="703.5" ></text> | |
| </g> | |
| <g > | |
| <title>vorbis_book_decodevv_add (190,735,418 samples, 0.11%)</title><rect x="25.7" y="661" width="1.2" height="15.0" fill="rgb(247,195,46)" rx="2" ry="2" /> | |
| <text x="28.69" y="671.5" ></text> | |
| </g> | |
| <g > | |
| <title>util_sparse_array_get (61,797,495 samples, 0.03%)</title><rect x="482.8" y="741" width="0.4" height="15.0" fill="rgb(241,168,40)" rx="2" ry="2" /> | |
| <text x="485.78" y="751.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_use_program (23,988,276 samples, 0.01%)</title><rect x="880.9" y="581" width="0.2" height="15.0" fill="rgb(235,141,33)" rx="2" ry="2" /> | |
| <text x="883.92" y="591.5" ></text> | |
| </g> | |
| <g > | |
| <title>validate_map_buffer_range (25,832,205 samples, 0.01%)</title><rect x="842.5" y="661" width="0.2" height="15.0" fill="rgb(242,170,40)" rx="2" ry="2" /> | |
| <text x="845.52" y="671.5" ></text> | |
| </g> | |
| <g > | |
| <title>vbo_exec_copy_to_current (21,050,025 samples, 0.01%)</title><rect x="944.7" y="597" width="0.1" height="15.0" fill="rgb(218,60,14)" rx="2" ry="2" /> | |
| <text x="947.70" y="607.5" ></text> | |
| </g> | |
| <g > | |
| <title>el0_svc_common.constprop.0 (284,981,403 samples, 0.16%)</title><rect x="1161.2" y="501" width="1.9" height="15.0" fill="rgb(224,89,21)" rx="2" ry="2" /> | |
| <text x="1164.22" y="511.5" ></text> | |
| </g> | |
| <g > | |
| <title>amdgpu_cs_submit (866,636,270 samples, 0.48%)</title><rect x="307.7" y="581" width="5.7" height="15.0" fill="rgb(218,63,15)" rx="2" ry="2" /> | |
| <text x="310.70" y="591.5" ></text> | |
| </g> | |
| <g > | |
| <title>el0t_64_sync_handler (37,128,286 samples, 0.02%)</title><rect x="508.9" y="677" width="0.2" height="15.0" fill="rgb(211,32,7)" rx="2" ry="2" /> | |
| <text x="511.86" y="687.5" ></text> | |
| </g> | |
| <g > | |
| <title>futex_wait (85,683,762 samples, 0.05%)</title><rect x="901.0" y="549" width="0.6" height="15.0" fill="rgb(235,138,33)" rx="2" ry="2" /> | |
| <text x="904.02" y="559.5" ></text> | |
| </g> | |
| <g > | |
| <title>vbo_exec_copy_to_current (23,275,435 samples, 0.01%)</title><rect x="987.1" y="613" width="0.2" height="15.0" fill="rgb(218,60,14)" rx="2" ry="2" /> | |
| <text x="990.15" y="623.5" ></text> | |
| </g> | |
| <g > | |
| <title>st_finalize_texture (45,087,026 samples, 0.02%)</title><rect x="444.2" y="693" width="0.3" height="15.0" fill="rgb(232,124,29)" rx="2" ry="2" /> | |
| <text x="447.16" y="703.5" ></text> | |
| </g> | |
| <g > | |
| <title>futex_wait_setup (24,594,719 samples, 0.01%)</title><rect x="250.0" y="597" width="0.2" height="15.0" fill="rgb(247,195,46)" rx="2" ry="2" /> | |
| <text x="253.01" y="607.5" ></text> | |
| </g> | |
| <g > | |
| <title>si_set_active_descriptors_for_shader (29,390,849 samples, 0.02%)</title><rect x="54.2" y="757" width="0.2" height="15.0" fill="rgb(217,57,13)" rx="2" ry="2" /> | |
| <text x="57.25" y="767.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_marshal_BindBuffer (41,076,332 samples, 0.02%)</title><rect x="918.5" y="709" width="0.3" height="15.0" fill="rgb(240,161,38)" rx="2" ry="2" /> | |
| <text x="921.53" y="719.5" ></text> | |
| </g> | |
| <g > | |
| <title>[unknown] (22,690,006 samples, 0.01%)</title><rect x="800.8" y="469" width="0.2" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" /> | |
| <text x="803.81" y="479.5" ></text> | |
| </g> | |
| <g > | |
| <title>bind_texture_object (131,580,439 samples, 0.07%)</title><rect x="925.8" y="629" width="0.9" height="15.0" fill="rgb(221,73,17)" rx="2" ry="2" /> | |
| <text x="928.82" y="639.5" ></text> | |
| </g> | |
| <g > | |
| <title>glthread_unmarshal_batch (30,256,867 samples, 0.02%)</title><rect x="978.1" y="693" width="0.2" height="15.0" fill="rgb(247,195,46)" rx="2" ry="2" /> | |
| <text x="981.11" y="703.5" ></text> | |
| </g> | |
| <g > | |
| <title>do_iter_write (244,892,642 samples, 0.14%)</title><rect x="541.0" y="533" width="1.6" height="15.0" fill="rgb(221,75,18)" rx="2" ry="2" /> | |
| <text x="544.02" y="543.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_uniform (50,176,001 samples, 0.03%)</title><rect x="1089.9" y="693" width="0.4" height="15.0" fill="rgb(248,201,48)" rx="2" ry="2" /> | |
| <text x="1092.94" y="703.5" ></text> | |
| </g> | |
| <g > | |
| <title>si_shader_select (23,050,748 samples, 0.01%)</title><rect x="889.3" y="549" width="0.2" height="15.0" fill="rgb(254,227,54)" rx="2" ry="2" /> | |
| <text x="892.31" y="559.5" ></text> | |
| </g> | |
| <g > | |
| <title>cso_set_rasterizer (155,688,082 samples, 0.09%)</title><rect x="399.4" y="725" width="1.0" height="15.0" fill="rgb(242,172,41)" rx="2" ry="2" /> | |
| <text x="402.37" y="735.5" ></text> | |
| </g> | |
| <g > | |
| <title>thread_start (25,194,860,000 samples, 13.95%)</title><rect x="337.4" y="885" width="164.7" height="15.0" fill="rgb(212,34,8)" rx="2" ry="2" /> | |
| <text x="340.42" y="895.5" >thread_start</text> | |
| </g> | |
| <g > | |
| <title>_mesa_update_state_locked (771,709,161 samples, 0.43%)</title><rect x="1113.9" y="661" width="5.0" height="15.0" fill="rgb(214,43,10)" rx="2" ry="2" /> | |
| <text x="1116.86" y="671.5" ></text> | |
| </g> | |
| <g > | |
| <title>bind_texture_object (280,630,146 samples, 0.16%)</title><rect x="1102.4" y="693" width="1.9" height="15.0" fill="rgb(221,73,17)" rx="2" ry="2" /> | |
| <text x="1105.43" y="703.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_framebuffer_texture (176,113,755 samples, 0.10%)</title><rect x="1017.6" y="645" width="1.1" height="15.0" fill="rgb(251,213,50)" rx="2" ry="2" /> | |
| <text x="1020.55" y="655.5" ></text> | |
| </g> | |
| <g > | |
| <title>tc_call_bind_vertex_elements_state (15,713,385 samples, 0.01%)</title><rect x="518.5" y="693" width="0.1" height="15.0" fill="rgb(216,51,12)" rx="2" ry="2" /> | |
| <text x="521.53" y="703.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_glthread_flush_batch (32,058,877 samples, 0.02%)</title><rect x="883.4" y="677" width="0.2" height="15.0" fill="rgb(239,158,38)" rx="2" ry="2" /> | |
| <text x="886.44" y="687.5" ></text> | |
| </g> | |
| <g > | |
| <title>invoke_syscall (61,860,372 samples, 0.03%)</title><rect x="976.8" y="549" width="0.4" height="15.0" fill="rgb(209,18,4)" rx="2" ry="2" /> | |
| <text x="979.78" y="559.5" ></text> | |
| </g> | |
| <g > | |
| <title>futex_wait (129,742,653 samples, 0.07%)</title><rect x="338.3" y="629" width="0.9" height="15.0" fill="rgb(235,138,33)" rx="2" ry="2" /> | |
| <text x="341.32" y="639.5" ></text> | |
| </g> | |
| <g > | |
| <title>IMG_LoadPNG_RW (21,569,673 samples, 0.01%)</title><rect x="741.3" y="661" width="0.1" height="15.0" fill="rgb(206,8,2)" rx="2" ry="2" /> | |
| <text x="744.30" y="671.5" ></text> | |
| </g> | |
| <g > | |
| <title>bool si_update_shaders< (464,983,172 samples, 0.26%)</title><rect x="133.3" y="757" width="3.0" height="15.0" fill="rgb(233,129,30)" rx="2" ry="2" /> | |
| <text x="136.28" y="767.5" ></text> | |
| </g> | |
| <g > | |
| <title>el0_svc (73,796,496 samples, 0.04%)</title><rect x="542.8" y="645" width="0.5" height="15.0" fill="rgb(244,183,43)" rx="2" ry="2" /> | |
| <text x="545.84" y="655.5" ></text> | |
| </g> | |
| <g > | |
| <title>__tzfile_compute (114,846,941 samples, 0.06%)</title><rect x="1179.5" y="757" width="0.7" height="15.0" fill="rgb(205,4,0)" rx="2" ry="2" /> | |
| <text x="1182.46" y="767.5" ></text> | |
| </g> | |
| <g > | |
| <title>tc_get_query_result (887,654,545 samples, 0.49%)</title><rect x="1159.8" y="709" width="5.8" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" /> | |
| <text x="1162.79" y="719.5" ></text> | |
| </g> | |
| <g > | |
| <title>ovl_get_inode_acl (23,182,416 samples, 0.01%)</title><rect x="1184.0" y="437" width="0.1" height="15.0" fill="rgb(210,23,5)" rx="2" ry="2" /> | |
| <text x="1186.98" y="447.5" ></text> | |
| </g> | |
| <g > | |
| <title>__aarch64_cas4_sync (29,218,308 samples, 0.02%)</title><rect x="254.8" y="805" width="0.2" height="15.0" fill="rgb(253,222,53)" rx="2" ry="2" /> | |
| <text x="257.85" y="815.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_marshal_MapBufferRange (1,412,541,405 samples, 0.78%)</title><rect x="822.2" y="677" width="9.2" height="15.0" fill="rgb(219,65,15)" rx="2" ry="2" /> | |
| <text x="825.18" y="687.5" ></text> | |
| </g> | |
| <g > | |
| <title>update_program (40,477,947 samples, 0.02%)</title><rect x="1004.8" y="597" width="0.3" height="15.0" fill="rgb(236,145,34)" rx="2" ry="2" /> | |
| <text x="1007.80" y="607.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_bufferobj_data (32,951,251 samples, 0.02%)</title><rect x="1104.3" y="677" width="0.2" height="15.0" fill="rgb(217,57,13)" rx="2" ry="2" /> | |
| <text x="1107.29" y="687.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_bufferobj_map_range (21,486,677 samples, 0.01%)</title><rect x="832.5" y="645" width="0.1" height="15.0" fill="rgb(206,7,1)" rx="2" ry="2" /> | |
| <text x="835.51" y="655.5" ></text> | |
| </g> | |
| <g > | |
| <title>st_update_depth_stencil_alpha (15,754,117 samples, 0.01%)</title><rect x="936.5" y="597" width="0.1" height="15.0" fill="rgb(252,219,52)" rx="2" ry="2" /> | |
| <text x="939.53" y="607.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_unmarshal_UniformMatrix3fv (30,061,783 samples, 0.02%)</title><rect x="474.5" y="805" width="0.2" height="15.0" fill="rgb(205,2,0)" rx="2" ry="2" /> | |
| <text x="477.55" y="815.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_validated_drawrangeelements (16,084,243 samples, 0.01%)</title><rect x="867.1" y="597" width="0.1" height="15.0" fill="rgb(230,115,27)" rx="2" ry="2" /> | |
| <text x="870.08" y="607.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_marshal_Uniform4fv (25,852,922 samples, 0.01%)</title><rect x="805.8" y="629" width="0.2" height="15.0" fill="rgb(228,108,26)" rx="2" ry="2" /> | |
| <text x="808.83" y="639.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_unmarshal_Uniform4f (21,546,643 samples, 0.01%)</title><rect x="1065.0" y="693" width="0.2" height="15.0" fill="rgb(224,89,21)" rx="2" ry="2" /> | |
| <text x="1068.04" y="703.5" ></text> | |
| </g> | |
| <g > | |
| <title>tc_buffer_map (41,385,841 samples, 0.02%)</title><rect x="1072.5" y="693" width="0.3" height="15.0" fill="rgb(247,195,46)" rx="2" ry="2" /> | |
| <text x="1075.51" y="703.5" ></text> | |
| </g> | |
| <g > | |
| <title>si_buffer_get_transfer (16,095,776 samples, 0.01%)</title><rect x="1045.9" y="677" width="0.1" height="15.0" fill="rgb(224,91,21)" rx="2" ry="2" /> | |
| <text x="1048.87" y="687.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_update_texture_renderbuffer (36,741,710 samples, 0.02%)</title><rect x="1017.6" y="629" width="0.3" height="15.0" fill="rgb(228,106,25)" rx="2" ry="2" /> | |
| <text x="1020.64" y="639.5" ></text> | |
| </g> | |
| <g > | |
| <title>_raw_spin_unlock_irq (17,467,044 samples, 0.01%)</title><rect x="16.9" y="613" width="0.1" height="15.0" fill="rgb(215,47,11)" rx="2" ry="2" /> | |
| <text x="19.88" y="623.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_uniform_matrix (24,787,951 samples, 0.01%)</title><rect x="474.6" y="773" width="0.1" height="15.0" fill="rgb(215,47,11)" rx="2" ry="2" /> | |
| <text x="477.58" y="783.5" ></text> | |
| </g> | |
| <g > | |
| <title>update_textures (571,225,297 samples, 0.32%)</title><rect x="852.7" y="581" width="3.7" height="15.0" fill="rgb(232,125,29)" rx="2" ry="2" /> | |
| <text x="855.70" y="591.5" ></text> | |
| </g> | |
| <g > | |
| <title>drm_syncobj_create_ioctl (33,291,272 samples, 0.02%)</title><rect x="537.7" y="453" width="0.2" height="15.0" fill="rgb(237,150,36)" rx="2" ry="2" /> | |
| <text x="540.70" y="463.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_update_framebuffer (91,398,686 samples, 0.05%)</title><rect x="988.0" y="629" width="0.6" height="15.0" fill="rgb(218,62,14)" rx="2" ry="2" /> | |
| <text x="990.96" y="639.5" ></text> | |
| </g> | |
| <g > | |
| <title>el0t_64_sync (39,219,753 samples, 0.02%)</title><rect x="190.1" y="677" width="0.3" height="15.0" fill="rgb(217,56,13)" rx="2" ry="2" /> | |
| <text x="193.10" y="687.5" ></text> | |
| </g> | |
| <g > | |
| <title>[libXi.so.6.1.0] (22,861,439 samples, 0.01%)</title><rect x="504.4" y="709" width="0.2" height="15.0" fill="rgb(245,184,44)" rx="2" ry="2" /> | |
| <text x="507.42" y="719.5" ></text> | |
| </g> | |
| <g > | |
| <title>__aarch64_ldadd4_acq_rel (396,462,831 samples, 0.22%)</title><rect x="152.0" y="725" width="2.6" height="15.0" fill="rgb(228,108,25)" rx="2" ry="2" /> | |
| <text x="154.98" y="735.5" ></text> | |
| </g> | |
| <g > | |
| <title>dri_flush (4,785,366,999 samples, 2.65%)</title><rect x="509.1" y="773" width="31.3" height="15.0" fill="rgb(212,32,7)" rx="2" ry="2" /> | |
| <text x="512.11" y="783.5" >dr..</text> | |
| </g> | |
| <g > | |
| <title>tc_add_shader_bindings_to_buffer_list (16,924,005 samples, 0.01%)</title><rect x="1136.1" y="629" width="0.1" height="15.0" fill="rgb(252,218,52)" rx="2" ry="2" /> | |
| <text x="1139.07" y="639.5" ></text> | |
| </g> | |
| <g > | |
| <title>tc_improve_map_buffer_flags.part.0 (15,307,681 samples, 0.01%)</title><rect x="1040.0" y="661" width="0.1" height="15.0" fill="rgb(214,42,10)" rx="2" ry="2" /> | |
| <text x="1043.01" y="671.5" ></text> | |
| </g> | |
| <g > | |
| <title>st_prepare_draw (93,490,619 samples, 0.05%)</title><rect x="1084.4" y="645" width="0.6" height="15.0" fill="rgb(214,45,10)" rx="2" ry="2" /> | |
| <text x="1087.36" y="655.5" ></text> | |
| </g> | |
| <g > | |
| <title>tc_buffer_subdata.part.0 (106,341,565 samples, 0.06%)</title><rect x="1045.3" y="725" width="0.7" height="15.0" fill="rgb(231,120,28)" rx="2" ry="2" /> | |
| <text x="1048.34" y="735.5" ></text> | |
| </g> | |
| <g > | |
| <title>__libc_recvmsg (40,145,728 samples, 0.02%)</title><rect x="1105.9" y="485" width="0.2" height="15.0" fill="rgb(220,72,17)" rx="2" ry="2" /> | |
| <text x="1108.86" y="495.5" ></text> | |
| </g> | |
| <g > | |
| <title>pthread_cond_wait@@GLIBC_2.17 (649,273,228 samples, 0.36%)</title><rect x="337.6" y="805" width="4.3" height="15.0" fill="rgb(231,119,28)" rx="2" ry="2" /> | |
| <text x="340.64" y="815.5" ></text> | |
| </g> | |
| <g > | |
| <title>el0_svc (16,780,893 samples, 0.01%)</title><rect x="943.3" y="453" width="0.1" height="15.0" fill="rgb(244,183,43)" rx="2" ry="2" /> | |
| <text x="946.32" y="463.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_update_state_locked (396,747,015 samples, 0.22%)</title><rect x="380.0" y="741" width="2.6" height="15.0" fill="rgb(214,43,10)" rx="2" ry="2" /> | |
| <text x="383.01" y="751.5" ></text> | |
| </g> | |
| <g > | |
| <title>el0t_64_sync_handler (61,425,998 samples, 0.03%)</title><rect x="455.9" y="645" width="0.4" height="15.0" fill="rgb(211,32,7)" rx="2" ry="2" /> | |
| <text x="458.88" y="655.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_disable_vertex_array_attribs (15,707,087 samples, 0.01%)</title><rect x="375.8" y="773" width="0.2" height="15.0" fill="rgb(240,162,38)" rx="2" ry="2" /> | |
| <text x="378.85" y="783.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_DrawElementsBaseVertex (49,694,313 samples, 0.03%)</title><rect x="799.7" y="389" width="0.3" height="15.0" fill="rgb(214,41,10)" rx="2" ry="2" /> | |
| <text x="802.69" y="399.5" ></text> | |
| </g> | |
| <g > | |
| <title>__arm64_sys_ppoll (50,760,799 samples, 0.03%)</title><rect x="542.9" y="581" width="0.4" height="15.0" fill="rgb(230,115,27)" rx="2" ry="2" /> | |
| <text x="545.93" y="591.5" ></text> | |
| </g> | |
| <g > | |
| <title>__poll (77,356,660 samples, 0.04%)</title><rect x="542.8" y="693" width="0.5" height="15.0" fill="rgb(250,208,49)" rx="2" ry="2" /> | |
| <text x="545.82" y="703.5" ></text> | |
| </g> | |
| <g > | |
| <title>[libpulse.so.0.24.2] (67,319,699 samples, 0.04%)</title><rect x="11.5" y="677" width="0.4" height="15.0" fill="rgb(253,221,52)" rx="2" ry="2" /> | |
| <text x="14.47" y="687.5" ></text> | |
| </g> | |
| <g > | |
| <title>strspn (17,018,534 samples, 0.01%)</title><rect x="801.7" y="469" width="0.1" height="15.0" fill="rgb(207,13,3)" rx="2" ry="2" /> | |
| <text x="804.70" y="479.5" ></text> | |
| </g> | |
| <g > | |
| <title>get_futex_key (17,575,001 samples, 0.01%)</title><rect x="30.4" y="581" width="0.1" height="15.0" fill="rgb(252,216,51)" rx="2" ry="2" /> | |
| <text x="33.37" y="591.5" ></text> | |
| </g> | |
| <g > | |
| <title>__memcpy_generic (147,283,885 samples, 0.08%)</title><rect x="967.3" y="725" width="1.0" height="15.0" fill="rgb(231,124,29)" rx="2" ry="2" /> | |
| <text x="970.30" y="735.5" ></text> | |
| </g> | |
| <g > | |
| <title>__vsnprintf_internal (25,499,422 samples, 0.01%)</title><rect x="789.5" y="197" width="0.2" height="15.0" fill="rgb(237,150,35)" rx="2" ry="2" /> | |
| <text x="792.54" y="207.5" ></text> | |
| </g> | |
| <g > | |
| <title>__GI___libc_write (46,184,315 samples, 0.03%)</title><rect x="15.2" y="725" width="0.3" height="15.0" fill="rgb(217,57,13)" rx="2" ry="2" /> | |
| <text x="18.15" y="735.5" ></text> | |
| </g> | |
| <g > | |
| <title>__aarch64_ldadd4_acq_rel (403,695,408 samples, 0.22%)</title><rect x="433.6" y="693" width="2.6" height="15.0" fill="rgb(228,108,25)" rx="2" ry="2" /> | |
| <text x="436.58" y="703.5" ></text> | |
| </g> | |
| <g > | |
| <title>[[vdso]] (45,239,947 samples, 0.03%)</title><rect x="1163.8" y="597" width="0.3" height="15.0" fill="rgb(218,60,14)" rx="2" ry="2" /> | |
| <text x="1166.84" y="607.5" ></text> | |
| </g> | |
| <g > | |
| <title>st_prepare_draw (1,398,056,952 samples, 0.77%)</title><rect x="935.3" y="613" width="9.1" height="15.0" fill="rgb(214,45,10)" rx="2" ry="2" /> | |
| <text x="938.31" y="623.5" ></text> | |
| </g> | |
| <g > | |
| <title>do_el0_svc (145,108,113 samples, 0.08%)</title><rect x="507.7" y="613" width="1.0" height="15.0" fill="rgb(218,60,14)" rx="2" ry="2" /> | |
| <text x="510.74" y="623.5" ></text> | |
| </g> | |
| <g > | |
| <title>slab_alloc (43,177,170 samples, 0.02%)</title><rect x="1072.0" y="629" width="0.3" height="15.0" fill="rgb(221,74,17)" rx="2" ry="2" /> | |
| <text x="1075.00" y="639.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_unmarshal_VertexAttribPointer_packed (94,539,636 samples, 0.05%)</title><rect x="1092.9" y="709" width="0.6" height="15.0" fill="rgb(232,124,29)" rx="2" ry="2" /> | |
| <text x="1095.91" y="719.5" ></text> | |
| </g> | |
| <g > | |
| <title>tc_batch_flush (23,922,475 samples, 0.01%)</title><rect x="856.8" y="581" width="0.2" height="15.0" fill="rgb(249,206,49)" rx="2" ry="2" /> | |
| <text x="859.79" y="591.5" ></text> | |
| </g> | |
| <g > | |
| <title>si_buffer_get_transfer (78,080,662 samples, 0.04%)</title><rect x="816.4" y="597" width="0.6" height="15.0" fill="rgb(224,91,21)" rx="2" ry="2" /> | |
| <text x="819.44" y="607.5" ></text> | |
| </g> | |
| <g > | |
| <title>do_futex (137,783,565 samples, 0.08%)</title><rect x="252.7" y="677" width="0.9" height="15.0" fill="rgb(245,184,44)" rx="2" ry="2" /> | |
| <text x="255.69" y="687.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_marshal_MapBufferRange (8,106,115,016 samples, 4.49%)</title><rect x="978.3" y="725" width="53.0" height="15.0" fill="rgb(219,65,15)" rx="2" ry="2" /> | |
| <text x="981.31" y="735.5" >_mesa..</text> | |
| </g> | |
| <g > | |
| <title>u_upload_alloc (25,662,586 samples, 0.01%)</title><rect x="526.5" y="645" width="0.2" height="15.0" fill="rgb(235,138,33)" rx="2" ry="2" /> | |
| <text x="529.55" y="655.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_UniformMatrix3fv (28,153,435 samples, 0.02%)</title><rect x="474.6" y="789" width="0.1" height="15.0" fill="rgb(241,168,40)" rx="2" ry="2" /> | |
| <text x="477.56" y="799.5" ></text> | |
| </g> | |
| <g > | |
| <title>util_queue_add_job_locked.part.0 (23,312,918 samples, 0.01%)</title><rect x="1068.6" y="709" width="0.1" height="15.0" fill="rgb(243,177,42)" rx="2" ry="2" /> | |
| <text x="1071.56" y="719.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_update_texture_state (23,700,348 samples, 0.01%)</title><rect x="1083.5" y="629" width="0.2" height="15.0" fill="rgb(237,148,35)" rx="2" ry="2" /> | |
| <text x="1086.52" y="639.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_BindTexture (556,856,775 samples, 0.31%)</title><rect x="1098.7" y="693" width="3.7" height="15.0" fill="rgb(234,136,32)" rx="2" ry="2" /> | |
| <text x="1101.73" y="703.5" ></text> | |
| </g> | |
| <g > | |
| <title>tc_draw_vbo (18,905,116 samples, 0.01%)</title><rect x="1001.2" y="629" width="0.1" height="15.0" fill="rgb(207,9,2)" rx="2" ry="2" /> | |
| <text x="1004.18" y="639.5" ></text> | |
| </g> | |
| <g > | |
| <title>tc_buffer_map (210,949,608 samples, 0.12%)</title><rect x="832.6" y="645" width="1.4" height="15.0" fill="rgb(247,195,46)" rx="2" ry="2" /> | |
| <text x="835.65" y="655.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_glthread_flush_batch (17,542,362 samples, 0.01%)</title><rect x="1032.0" y="709" width="0.1" height="15.0" fill="rgb(239,158,38)" rx="2" ry="2" /> | |
| <text x="1035.00" y="719.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_VertexAttrib4fARB (15,791,260 samples, 0.01%)</title><rect x="1027.7" y="645" width="0.1" height="15.0" fill="rgb(251,214,51)" rx="2" ry="2" /> | |
| <text x="1030.68" y="655.5" ></text> | |
| </g> | |
| <g > | |
| <title>__update_cpu_freelist_fast (17,838,623 samples, 0.01%)</title><rect x="288.1" y="533" width="0.2" height="15.0" fill="rgb(226,98,23)" rx="2" ry="2" /> | |
| <text x="291.14" y="543.5" ></text> | |
| </g> | |
| <g > | |
| <title>futex_lock_pi (40,910,708 samples, 0.02%)</title><rect x="10.7" y="629" width="0.3" height="15.0" fill="rgb(247,194,46)" rx="2" ry="2" /> | |
| <text x="13.71" y="639.5" ></text> | |
| </g> | |
| <g > | |
| <title>__memcpy_generic (79,875,173 samples, 0.04%)</title><rect x="1045.3" y="709" width="0.6" height="15.0" fill="rgb(231,124,29)" rx="2" ry="2" /> | |
| <text x="1048.34" y="719.5" ></text> | |
| </g> | |
| <g > | |
| <title>pb_slab_alloc_reclaimed (63,846,680 samples, 0.04%)</title><rect x="515.3" y="629" width="0.4" height="15.0" fill="rgb(253,223,53)" rx="2" ry="2" /> | |
| <text x="518.33" y="639.5" ></text> | |
| </g> | |
| <g > | |
| <title>glthread_unmarshal_batch (5,254,399,932 samples, 2.91%)</title><rect x="921.1" y="677" width="34.3" height="15.0" fill="rgb(247,195,46)" rx="2" ry="2" /> | |
| <text x="924.06" y="687.5" >gl..</text> | |
| </g> | |
| <g > | |
| <title>_copy_to_iter (17,800,367 samples, 0.01%)</title><rect x="13.0" y="517" width="0.1" height="15.0" fill="rgb(227,105,25)" rx="2" ry="2" /> | |
| <text x="16.00" y="527.5" ></text> | |
| </g> | |
| <g > | |
| <title>do_futex (136,993,964 samples, 0.08%)</title><rect x="249.3" y="645" width="0.9" height="15.0" fill="rgb(245,184,44)" rx="2" ry="2" /> | |
| <text x="252.30" y="655.5" ></text> | |
| </g> | |
| <g > | |
| <title>do_futex (18,346,173 samples, 0.01%)</title><rect x="10.3" y="645" width="0.1" height="15.0" fill="rgb(245,184,44)" rx="2" ry="2" /> | |
| <text x="13.32" y="655.5" ></text> | |
| </g> | |
| <g > | |
| <title>st_convert_sampler (229,236,631 samples, 0.13%)</title><rect x="426.4" y="709" width="1.5" height="15.0" fill="rgb(242,172,41)" rx="2" ry="2" /> | |
| <text x="429.38" y="719.5" ></text> | |
| </g> | |
| <g > | |
| <title>invoke_syscall (31,046,538 samples, 0.02%)</title><rect x="190.1" y="597" width="0.2" height="15.0" fill="rgb(209,18,4)" rx="2" ry="2" /> | |
| <text x="193.11" y="607.5" ></text> | |
| </g> | |
| <g > | |
| <title>___sys_recvmsg (20,350,611 samples, 0.01%)</title><rect x="1106.2" y="341" width="0.1" height="15.0" fill="rgb(238,153,36)" rx="2" ry="2" /> | |
| <text x="1109.21" y="351.5" ></text> | |
| </g> | |
| <g > | |
| <title>glthread_unmarshal_batch (36,859,380 samples, 0.02%)</title><rect x="785.8" y="133" width="0.3" height="15.0" fill="rgb(247,195,46)" rx="2" ry="2" /> | |
| <text x="788.82" y="143.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_bufferobj_map_range (50,159,680 samples, 0.03%)</title><rect x="958.5" y="677" width="0.3" height="15.0" fill="rgb(206,7,1)" rx="2" ry="2" /> | |
| <text x="961.45" y="687.5" ></text> | |
| </g> | |
| <g > | |
| <title>amdgpu_drm_ioctl (25,939,417 samples, 0.01%)</title><rect x="190.1" y="565" width="0.2" height="15.0" fill="rgb(246,190,45)" rx="2" ry="2" /> | |
| <text x="193.12" y="575.5" ></text> | |
| </g> | |
| <g > | |
| <title>__mktime_internal (138,357,261 samples, 0.08%)</title><rect x="1179.4" y="805" width="0.9" height="15.0" fill="rgb(230,119,28)" rx="2" ry="2" /> | |
| <text x="1182.37" y="815.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_glthread_finish (1,969,294,793 samples, 1.09%)</title><rect x="1055.4" y="725" width="12.9" height="15.0" fill="rgb(209,22,5)" rx="2" ry="2" /> | |
| <text x="1058.42" y="735.5" ></text> | |
| </g> | |
| <g > | |
| <title>unmap_buffer (17,864,937 samples, 0.01%)</title><rect x="1024.0" y="645" width="0.1" height="15.0" fill="rgb(233,131,31)" rx="2" ry="2" /> | |
| <text x="1027.00" y="655.5" ></text> | |
| </g> | |
| <g > | |
| <title>vbo_exec_FlushVertices (30,656,643 samples, 0.02%)</title><rect x="992.7" y="629" width="0.3" height="15.0" fill="rgb(226,100,24)" rx="2" ry="2" /> | |
| <text x="995.75" y="639.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_reference_texobj_ (25,799,441 samples, 0.01%)</title><rect x="386.5" y="709" width="0.2" height="15.0" fill="rgb(229,111,26)" rx="2" ry="2" /> | |
| <text x="389.51" y="719.5" ></text> | |
| </g> | |
| <g > | |
| <title>amdgpu_bo_map (58,960,133 samples, 0.03%)</title><rect x="905.3" y="613" width="0.4" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" /> | |
| <text x="908.35" y="623.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_test_framebuffer_completeness (58,885,148 samples, 0.03%)</title><rect x="379.5" y="709" width="0.4" height="15.0" fill="rgb(229,113,27)" rx="2" ry="2" /> | |
| <text x="382.53" y="719.5" ></text> | |
| </g> | |
| <g > | |
| <title>touch_atime (17,685,114 samples, 0.01%)</title><rect x="1185.9" y="485" width="0.1" height="15.0" fill="rgb(205,2,0)" rx="2" ry="2" /> | |
| <text x="1188.93" y="495.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_unmarshal_BindTexture (95,906,067 samples, 0.05%)</title><rect x="1057.1" y="693" width="0.6" height="15.0" fill="rgb(248,199,47)" rx="2" ry="2" /> | |
| <text x="1060.05" y="703.5" ></text> | |
| </g> | |
| <g > | |
| <title>invoke_syscall (36,533,658 samples, 0.02%)</title><rect x="501.2" y="693" width="0.2" height="15.0" fill="rgb(209,18,4)" rx="2" ry="2" /> | |
| <text x="504.18" y="703.5" ></text> | |
| </g> | |
| <g > | |
| <title>el0t_64_sync_handler (53,926,767 samples, 0.03%)</title><rect x="11.0" y="741" width="0.4" height="15.0" fill="rgb(211,32,7)" rx="2" ry="2" /> | |
| <text x="14.01" y="751.5" ></text> | |
| </g> | |
| <g > | |
| <title>strchr (175,353,723 samples, 0.10%)</title><rect x="834.3" y="677" width="1.2" height="15.0" fill="rgb(237,147,35)" rx="2" ry="2" /> | |
| <text x="837.35" y="687.5" ></text> | |
| </g> | |
| <g > | |
| <title>enet_packet_create (22,256,509 samples, 0.01%)</title><rect x="1174.6" y="773" width="0.2" height="15.0" fill="rgb(231,123,29)" rx="2" ry="2" /> | |
| <text x="1177.62" y="783.5" ></text> | |
| </g> | |
| <g > | |
| <title>util_queue_add_job_locked.part.0 (17,091,263 samples, 0.01%)</title><rect x="1031.8" y="693" width="0.2" height="15.0" fill="rgb(243,177,42)" rx="2" ry="2" /> | |
| <text x="1034.85" y="703.5" ></text> | |
| </g> | |
| <g > | |
| <title>__aarch64_cas4_sync (85,207,916 samples, 0.05%)</title><rect x="862.8" y="597" width="0.5" height="15.0" fill="rgb(253,222,53)" rx="2" ry="2" /> | |
| <text x="865.79" y="607.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_validate_DrawElements (22,521,491 samples, 0.01%)</title><rect x="934.5" y="629" width="0.2" height="15.0" fill="rgb(230,119,28)" rx="2" ry="2" /> | |
| <text x="937.54" y="639.5" ></text> | |
| </g> | |
| <g > | |
| <title>_raw_spin_unlock_irqrestore (131,768,325 samples, 0.07%)</title><rect x="343.4" y="629" width="0.9" height="15.0" fill="rgb(228,106,25)" rx="2" ry="2" /> | |
| <text x="346.43" y="639.5" ></text> | |
| </g> | |
| <g > | |
| <title>__el0_irq_handler_common (16,020,625 samples, 0.01%)</title><rect x="128.1" y="741" width="0.2" height="15.0" fill="rgb(206,5,1)" rx="2" ry="2" /> | |
| <text x="131.15" y="751.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_uniform (16,133,106 samples, 0.01%)</title><rect x="945.9" y="645" width="0.1" height="15.0" fill="rgb(248,201,48)" rx="2" ry="2" /> | |
| <text x="948.86" y="655.5" ></text> | |
| </g> | |
| <g > | |
| <title>st_prepare_draw (82,239,490 samples, 0.05%)</title><rect x="1111.0" y="661" width="0.6" height="15.0" fill="rgb(214,45,10)" rx="2" ry="2" /> | |
| <text x="1114.02" y="671.5" ></text> | |
| </g> | |
| <g > | |
| <title>st_update_blend (20,703,484 samples, 0.01%)</title><rect x="1006.3" y="597" width="0.2" height="15.0" fill="rgb(250,209,50)" rx="2" ry="2" /> | |
| <text x="1009.32" y="607.5" ></text> | |
| </g> | |
| <g > | |
| <title>si_set_sampler_view_desc (1,536,197,445 samples, 0.85%)</title><rect x="217.2" y="757" width="10.1" height="15.0" fill="rgb(216,53,12)" rx="2" ry="2" /> | |
| <text x="220.23" y="767.5" ></text> | |
| </g> | |
| <g > | |
| <title>pa_threaded_mainloop_wait (205,788,092 samples, 0.11%)</title><rect x="10.0" y="821" width="1.4" height="15.0" fill="rgb(243,176,42)" rx="2" ry="2" /> | |
| <text x="13.02" y="831.5" ></text> | |
| </g> | |
| <g > | |
| <title>update_shader_samplers (24,513,604 samples, 0.01%)</title><rect x="1112.4" y="661" width="0.1" height="15.0" fill="rgb(229,113,27)" rx="2" ry="2" /> | |
| <text x="1115.38" y="671.5" ></text> | |
| </g> | |
| <g > | |
| <title>syscall (186,296,026 samples, 0.10%)</title><rect x="252.5" y="805" width="1.2" height="15.0" fill="rgb(234,136,32)" rx="2" ry="2" /> | |
| <text x="255.53" y="815.5" ></text> | |
| </g> | |
| <g > | |
| <title>amdgpu_fence_destroy (108,849,551 samples, 0.06%)</title><rect x="331.6" y="805" width="0.7" height="15.0" fill="rgb(225,92,22)" rx="2" ry="2" /> | |
| <text x="334.58" y="815.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_DrawElementsBaseVertex (76,914,622 samples, 0.04%)</title><rect x="975.4" y="661" width="0.5" height="15.0" fill="rgb(214,41,10)" rx="2" ry="2" /> | |
| <text x="978.42" y="671.5" ></text> | |
| </g> | |
| <g > | |
| <title>do_futex (20,735,119 samples, 0.01%)</title><rect x="516.8" y="549" width="0.1" height="15.0" fill="rgb(245,184,44)" rx="2" ry="2" /> | |
| <text x="519.78" y="559.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_reference_texobj_ (41,597,053 samples, 0.02%)</title><rect x="932.6" y="581" width="0.2" height="15.0" fill="rgb(229,111,26)" rx="2" ry="2" /> | |
| <text x="935.56" y="591.5" ></text> | |
| </g> | |
| <g > | |
| <title>__memcpy_generic (55,571,238 samples, 0.03%)</title><rect x="159.3" y="741" width="0.4" height="15.0" fill="rgb(231,124,29)" rx="2" ry="2" /> | |
| <text x="162.35" y="751.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_unmarshal_ActiveTexture (33,038,993 samples, 0.02%)</title><rect x="1096.9" y="693" width="0.2" height="15.0" fill="rgb(207,12,3)" rx="2" ry="2" /> | |
| <text x="1099.90" y="703.5" ></text> | |
| </g> | |
| <g > | |
| <title>valid_texture_object.isra.0 (46,200,321 samples, 0.03%)</title><rect x="384.7" y="693" width="0.3" height="15.0" fill="rgb(239,158,38)" rx="2" ry="2" /> | |
| <text x="387.70" y="703.5" ></text> | |
| </g> | |
| <g > | |
| <title>amdgpu_cs_add_buffer (45,141,111 samples, 0.03%)</title><rect x="241.6" y="757" width="0.3" height="15.0" fill="rgb(254,227,54)" rx="2" ry="2" /> | |
| <text x="244.61" y="767.5" ></text> | |
| </g> | |
| <g > | |
| <title>wake_up_q (58,689,449 samples, 0.03%)</title><rect x="253.2" y="645" width="0.4" height="15.0" fill="rgb(237,151,36)" rx="2" ry="2" /> | |
| <text x="256.21" y="655.5" ></text> | |
| </g> | |
| <g > | |
| <title>amdgpu_bo_unref (170,192,019 samples, 0.09%)</title><rect x="285.0" y="549" width="1.1" height="15.0" fill="rgb(250,209,50)" rx="2" ry="2" /> | |
| <text x="288.00" y="559.5" ></text> | |
| </g> | |
| <g > | |
| <title>st_update_single_texture (16,457,431 samples, 0.01%)</title><rect x="929.7" y="581" width="0.1" height="15.0" fill="rgb(208,15,3)" rx="2" ry="2" /> | |
| <text x="932.73" y="591.5" ></text> | |
| </g> | |
| <g > | |
| <title>[redeclipse] (98,425,218,934 samples, 54.52%)</title><rect x="544.2" y="821" width="643.3" height="15.0" fill="rgb(253,222,53)" rx="2" ry="2" /> | |
| <text x="547.19" y="831.5" >[redeclipse]</text> | |
| </g> | |
| <g > | |
| <title>_mesa_UniformMatrix4fv (319,931,697 samples, 0.18%)</title><rect x="474.8" y="789" width="2.1" height="15.0" fill="rgb(235,139,33)" rx="2" ry="2" /> | |
| <text x="477.77" y="799.5" ></text> | |
| </g> | |
| <g > | |
| <title>el0_svc (17,340,709 samples, 0.01%)</title><rect x="1034.1" y="501" width="0.1" height="15.0" fill="rgb(244,183,43)" rx="2" ry="2" /> | |
| <text x="1037.10" y="511.5" ></text> | |
| </g> | |
| <g > | |
| <title>strchr@plt (22,844,799 samples, 0.01%)</title><rect x="1043.0" y="725" width="0.2" height="15.0" fill="rgb(253,221,52)" rx="2" ry="2" /> | |
| <text x="1046.03" y="735.5" ></text> | |
| </g> | |
| <g > | |
| <title>vorbis_book_decodevv_add (16,003,926 samples, 0.01%)</title><rect x="24.8" y="661" width="0.1" height="15.0" fill="rgb(247,195,46)" rx="2" ry="2" /> | |
| <text x="27.79" y="671.5" ></text> | |
| </g> | |
| <g > | |
| <title>[libz.so.1.3] (403,608,720 samples, 0.22%)</title><rect x="1156.8" y="725" width="2.6" height="15.0" fill="rgb(230,116,27)" rx="2" ry="2" /> | |
| <text x="1159.80" y="735.5" ></text> | |
| </g> | |
| <g > | |
| <title>update_array.constprop.0 (40,076,768 samples, 0.02%)</title><rect x="1148.7" y="677" width="0.3" height="15.0" fill="rgb(224,88,21)" rx="2" ry="2" /> | |
| <text x="1151.71" y="687.5" ></text> | |
| </g> | |
| <g > | |
| <title>__GI_____strtod_l_internal (20,536,408 samples, 0.01%)</title><rect x="785.3" y="165" width="0.1" height="15.0" fill="rgb(209,20,4)" rx="2" ry="2" /> | |
| <text x="788.31" y="175.5" ></text> | |
| </g> | |
| <g > | |
| <title>update_array.constprop.0 (23,311,033 samples, 0.01%)</title><rect x="1093.3" y="661" width="0.2" height="15.0" fill="rgb(224,88,21)" rx="2" ry="2" /> | |
| <text x="1096.34" y="671.5" ></text> | |
| </g> | |
| <g > | |
| <title>st_update_single_texture (64,684,995 samples, 0.04%)</title><rect x="874.0" y="549" width="0.4" height="15.0" fill="rgb(208,15,3)" rx="2" ry="2" /> | |
| <text x="876.97" y="559.5" ></text> | |
| </g> | |
| <g > | |
| <title>st_update_vp (23,024,617 samples, 0.01%)</title><rect x="1008.3" y="597" width="0.1" height="15.0" fill="rgb(254,227,54)" rx="2" ry="2" /> | |
| <text x="1011.29" y="607.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_unmarshal_UseProgram (21,863,743 samples, 0.01%)</title><rect x="976.1" y="677" width="0.1" height="15.0" fill="rgb(226,99,23)" rx="2" ry="2" /> | |
| <text x="979.10" y="687.5" ></text> | |
| </g> | |
| <g > | |
| <title>__time (25,103,609 samples, 0.01%)</title><rect x="1180.3" y="805" width="0.2" height="15.0" fill="rgb(251,215,51)" rx="2" ry="2" /> | |
| <text x="1183.30" y="815.5" ></text> | |
| </g> | |
| <g > | |
| <title>__memcpy_generic (19,926,341 samples, 0.01%)</title><rect x="970.1" y="661" width="0.2" height="15.0" fill="rgb(231,124,29)" rx="2" ry="2" /> | |
| <text x="973.13" y="671.5" ></text> | |
| </g> | |
| <g > | |
| <title>update_shader_samplers (127,427,389 samples, 0.07%)</title><rect x="851.9" y="565" width="0.8" height="15.0" fill="rgb(229,113,27)" rx="2" ry="2" /> | |
| <text x="854.87" y="575.5" ></text> | |
| </g> | |
| <g > | |
| <title>util_queue_add_job_locked.part.0 (186,706,502 samples, 0.10%)</title><rect x="190.8" y="741" width="1.2" height="15.0" fill="rgb(243,177,42)" rx="2" ry="2" /> | |
| <text x="193.76" y="751.5" ></text> | |
| </g> | |
| <g > | |
| <title>[libvorbis.so.0.4.9] (143,630,654 samples, 0.08%)</title><rect x="22.0" y="693" width="0.9" height="15.0" fill="rgb(233,129,30)" rx="2" ry="2" /> | |
| <text x="25.01" y="703.5" ></text> | |
| </g> | |
| <g > | |
| <title>_tc_sync.constprop.0 (1,675,061,400 samples, 0.93%)</title><rect x="884.5" y="629" width="10.9" height="15.0" fill="rgb(208,15,3)" rx="2" ry="2" /> | |
| <text x="887.48" y="639.5" ></text> | |
| </g> | |
| <g > | |
| <title>el0_svc_common.constprop.0 (32,811,024 samples, 0.02%)</title><rect x="374.6" y="501" width="0.2" height="15.0" fill="rgb(224,89,21)" rx="2" ry="2" /> | |
| <text x="377.60" y="511.5" ></text> | |
| </g> | |
| <g > | |
| <title>__aarch64_cas4_sync (113,938,441 samples, 0.06%)</title><rect x="980.8" y="677" width="0.8" height="15.0" fill="rgb(253,222,53)" rx="2" ry="2" /> | |
| <text x="983.83" y="687.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_unmarshal_BindFramebuffer (52,928,039 samples, 0.03%)</title><rect x="983.1" y="677" width="0.3" height="15.0" fill="rgb(245,185,44)" rx="2" ry="2" /> | |
| <text x="986.06" y="687.5" ></text> | |
| </g> | |
| <g > | |
| <title>validate_uniform_parameters (32,438,969 samples, 0.02%)</title><rect x="1020.9" y="629" width="0.2" height="15.0" fill="rgb(234,137,32)" rx="2" ry="2" /> | |
| <text x="1023.90" y="639.5" ></text> | |
| </g> | |
| <g > | |
| <title>drm_ioctl (115,641,656 samples, 0.06%)</title><rect x="188.8" y="549" width="0.8" height="15.0" fill="rgb(231,121,29)" rx="2" ry="2" /> | |
| <text x="191.84" y="559.5" ></text> | |
| </g> | |
| <g > | |
| <title>amdgpu_cs_bo_validate (1,285,411,412 samples, 0.71%)</title><rect x="270.5" y="565" width="8.4" height="15.0" fill="rgb(229,111,26)" rx="2" ry="2" /> | |
| <text x="273.51" y="575.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_UseProgram (749,625,729 samples, 0.42%)</title><rect x="1143.0" y="693" width="4.9" height="15.0" fill="rgb(212,36,8)" rx="2" ry="2" /> | |
| <text x="1146.05" y="703.5" ></text> | |
| </g> | |
| <g > | |
| <title>powf@@GLIBC_2.27 (16,580,245 samples, 0.01%)</title><rect x="962.3" y="709" width="0.1" height="15.0" fill="rgb(226,96,23)" rx="2" ry="2" /> | |
| <text x="965.27" y="719.5" ></text> | |
| </g> | |
| <g > | |
| <title>st_update_single_texture (24,575,899 samples, 0.01%)</title><rect x="1087.8" y="613" width="0.2" height="15.0" fill="rgb(208,15,3)" rx="2" ry="2" /> | |
| <text x="1090.84" y="623.5" ></text> | |
| </g> | |
| <g > | |
| <title>bind_buffer_object (33,290,209 samples, 0.02%)</title><rect x="1098.2" y="677" width="0.2" height="15.0" fill="rgb(246,190,45)" rx="2" ry="2" /> | |
| <text x="1101.21" y="687.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_unmarshal_BufferData (44,132,762 samples, 0.02%)</title><rect x="1104.3" y="709" width="0.3" height="15.0" fill="rgb(243,175,41)" rx="2" ry="2" /> | |
| <text x="1107.26" y="719.5" ></text> | |
| </g> | |
| <g > | |
| <title>tc_call_bind_vs_state (201,955,462 samples, 0.11%)</title><rect x="66.3" y="789" width="1.3" height="15.0" fill="rgb(214,44,10)" rx="2" ry="2" /> | |
| <text x="69.30" y="799.5" ></text> | |
| </g> | |
| <g > | |
| <title>tc_add_draw_single_call (46,421,263 samples, 0.03%)</title><rect x="1136.0" y="661" width="0.3" height="15.0" fill="rgb(214,45,10)" rx="2" ry="2" /> | |
| <text x="1139.05" y="671.5" ></text> | |
| </g> | |
| <g > | |
| <title>tc_call_set_framebuffer_state (547,030,002 samples, 0.30%)</title><rect x="198.3" y="805" width="3.5" height="15.0" fill="rgb(219,64,15)" rx="2" ry="2" /> | |
| <text x="201.26" y="815.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_is_multisample_enabled (51,228,470 samples, 0.03%)</title><rect x="405.5" y="725" width="0.4" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" /> | |
| <text x="408.54" y="735.5" ></text> | |
| </g> | |
| <g > | |
| <title>tc_call_bind_fs_state (52,960,620 samples, 0.03%)</title><rect x="885.4" y="597" width="0.4" height="15.0" fill="rgb(218,60,14)" rx="2" ry="2" /> | |
| <text x="888.41" y="607.5" ></text> | |
| </g> | |
| <g > | |
| <title>si_set_sampler_views (362,624,069 samples, 0.20%)</title><rect x="202.1" y="757" width="2.4" height="15.0" fill="rgb(218,61,14)" rx="2" ry="2" /> | |
| <text x="205.09" y="767.5" ></text> | |
| </g> | |
| <g > | |
| <title>tc_set_framebuffer_state (18,276,350 samples, 0.01%)</title><rect x="1007.6" y="597" width="0.2" height="15.0" fill="rgb(244,180,43)" rx="2" ry="2" /> | |
| <text x="1010.64" y="607.5" ></text> | |
| </g> | |
| <g > | |
| <title>amdgpu_bo_placement_from_domain (49,817,546 samples, 0.03%)</title><rect x="270.2" y="565" width="0.3" height="15.0" fill="rgb(231,123,29)" rx="2" ry="2" /> | |
| <text x="273.19" y="575.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_unmarshal_Viewport (22,870,264 samples, 0.01%)</title><rect x="1093.5" y="709" width="0.2" height="15.0" fill="rgb(242,172,41)" rx="2" ry="2" /> | |
| <text x="1096.53" y="719.5" ></text> | |
| </g> | |
| <g > | |
| <title>get_query_result (25,151,877 samples, 0.01%)</title><rect x="1159.6" y="709" width="0.2" height="15.0" fill="rgb(228,106,25)" rx="2" ry="2" /> | |
| <text x="1162.63" y="719.5" ></text> | |
| </g> | |
| <g > | |
| <title>el0_svc (33,217,051 samples, 0.02%)</title><rect x="374.6" y="533" width="0.2" height="15.0" fill="rgb(244,183,43)" rx="2" ry="2" /> | |
| <text x="377.60" y="543.5" ></text> | |
| </g> | |
| <g > | |
| <title>__aarch64_ldadd4_acq_rel (19,768,722 samples, 0.01%)</title><rect x="939.8" y="549" width="0.1" height="15.0" fill="rgb(228,108,25)" rx="2" ry="2" /> | |
| <text x="942.81" y="559.5" ></text> | |
| </g> | |
| <g > | |
| <title>si_is_format_supported (18,030,337 samples, 0.01%)</title><rect x="379.7" y="677" width="0.2" height="15.0" fill="rgb(240,164,39)" rx="2" ry="2" /> | |
| <text x="382.74" y="687.5" ></text> | |
| </g> | |
| <g > | |
| <title>bool si_update_shaders< (70,890,697 samples, 0.04%)</title><rect x="521.8" y="661" width="0.5" height="15.0" fill="rgb(233,129,30)" rx="2" ry="2" /> | |
| <text x="524.84" y="671.5" ></text> | |
| </g> | |
| <g > | |
| <title>cnd_signal (28,955,014 samples, 0.02%)</title><rect x="1126.1" y="581" width="0.2" height="15.0" fill="rgb(232,125,30)" rx="2" ry="2" /> | |
| <text x="1129.14" y="591.5" ></text> | |
| </g> | |
| <g > | |
| <title>util_queue_thread_func (33,798,560,286 samples, 18.72%)</title><rect x="27.8" y="837" width="220.9" height="15.0" fill="rgb(247,195,46)" rx="2" ry="2" /> | |
| <text x="30.83" y="847.5" >util_queue_thread_func</text> | |
| </g> | |
| <g > | |
| <title>_mesa_glthread_finish (30,256,867 samples, 0.02%)</title><rect x="978.1" y="709" width="0.2" height="15.0" fill="rgb(209,22,5)" rx="2" ry="2" /> | |
| <text x="981.11" y="719.5" ></text> | |
| </g> | |
| <g > | |
| <title>util_blitter_restore_fragment_states (25,670,180 samples, 0.01%)</title><rect x="85.5" y="741" width="0.1" height="15.0" fill="rgb(226,99,23)" rx="2" ry="2" /> | |
| <text x="88.45" y="751.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_UnmapBuffer (33,934,970 samples, 0.02%)</title><rect x="1023.3" y="645" width="0.2" height="15.0" fill="rgb(207,10,2)" rx="2" ry="2" /> | |
| <text x="1026.25" y="655.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_reference_texobj_ (42,644,597 samples, 0.02%)</title><rect x="868.0" y="565" width="0.3" height="15.0" fill="rgb(229,111,26)" rx="2" ry="2" /> | |
| <text x="871.00" y="575.5" ></text> | |
| </g> | |
| <g > | |
| <title>futex_wake (50,839,709 samples, 0.03%)</title><rect x="976.9" y="501" width="0.3" height="15.0" fill="rgb(219,65,15)" rx="2" ry="2" /> | |
| <text x="979.85" y="511.5" ></text> | |
| </g> | |
| <g > | |
| <title>el0_svc (25,578,368 samples, 0.01%)</title><rect x="876.3" y="437" width="0.2" height="15.0" fill="rgb(244,183,43)" rx="2" ry="2" /> | |
| <text x="879.31" y="447.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_BindTexture (63,960,653 samples, 0.04%)</title><rect x="1151.9" y="693" width="0.4" height="15.0" fill="rgb(234,136,32)" rx="2" ry="2" /> | |
| <text x="1154.87" y="703.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_unmarshal_Uniform4fv (385,758,164 samples, 0.21%)</title><rect x="1139.4" y="709" width="2.5" height="15.0" fill="rgb(212,33,8)" rx="2" ry="2" /> | |
| <text x="1142.41" y="719.5" ></text> | |
| </g> | |
| <g > | |
| <title>update_textures (318,268,770 samples, 0.18%)</title><rect x="996.9" y="629" width="2.1" height="15.0" fill="rgb(232,125,29)" rx="2" ry="2" /> | |
| <text x="999.89" y="639.5" ></text> | |
| </g> | |
| <g > | |
| <title>__getpid (46,214,665 samples, 0.03%)</title><rect x="506.4" y="773" width="0.3" height="15.0" fill="rgb(221,74,17)" rx="2" ry="2" /> | |
| <text x="509.42" y="783.5" ></text> | |
| </g> | |
| <g > | |
| <title>strchr (60,270,236 samples, 0.03%)</title><rect x="963.0" y="709" width="0.4" height="15.0" fill="rgb(237,147,35)" rx="2" ry="2" /> | |
| <text x="966.00" y="719.5" ></text> | |
| </g> | |
| <g > | |
| <title>si_buffer_transfer_map (58,960,133 samples, 0.03%)</title><rect x="905.3" y="629" width="0.4" height="15.0" fill="rgb(237,151,36)" rx="2" ry="2" /> | |
| <text x="908.35" y="639.5" ></text> | |
| </g> | |
| <g > | |
| <title>__sys_recvmsg (25,582,249 samples, 0.01%)</title><rect x="508.9" y="581" width="0.2" height="15.0" fill="rgb(252,216,51)" rx="2" ry="2" /> | |
| <text x="511.89" y="591.5" ></text> | |
| </g> | |
| <g > | |
| <title>st_make_bound_images_resident (19,203,994 samples, 0.01%)</title><rect x="995.1" y="597" width="0.2" height="15.0" fill="rgb(241,167,40)" rx="2" ry="2" /> | |
| <text x="998.14" y="607.5" ></text> | |
| </g> | |
| <g > | |
| <title>__GI___futex_abstimed_wait_cancelable64 (888,006,871 samples, 0.49%)</title><rect x="28.1" y="789" width="5.8" height="15.0" fill="rgb(215,48,11)" rx="2" ry="2" /> | |
| <text x="31.08" y="799.5" ></text> | |
| </g> | |
| <g > | |
| <title>sock_alloc_send_pskb (46,671,843 samples, 0.03%)</title><rect x="541.8" y="453" width="0.3" height="15.0" fill="rgb(210,26,6)" rx="2" ry="2" /> | |
| <text x="544.77" y="463.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_MapBufferRange (51,352,887 samples, 0.03%)</title><rect x="821.4" y="677" width="0.3" height="15.0" fill="rgb(238,156,37)" rx="2" ry="2" /> | |
| <text x="824.40" y="687.5" ></text> | |
| </g> | |
| <g > | |
| <title>si_emit_msaa_config (31,316,562 samples, 0.02%)</title><rect x="526.1" y="645" width="0.2" height="15.0" fill="rgb(247,193,46)" rx="2" ry="2" /> | |
| <text x="529.12" y="655.5" ></text> | |
| </g> | |
| <g > | |
| <title>strpbrk (406,777,324 samples, 0.23%)</title><rect x="836.4" y="661" width="2.7" height="15.0" fill="rgb(250,210,50)" rx="2" ry="2" /> | |
| <text x="839.45" y="671.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_glthread_finish (5,448,041,747 samples, 3.02%)</title><rect x="920.0" y="693" width="35.6" height="15.0" fill="rgb(209,22,5)" rx="2" ry="2" /> | |
| <text x="922.96" y="703.5" >_me..</text> | |
| </g> | |
| <g > | |
| <title>_mesa_update_texture_state (37,022,580 samples, 0.02%)</title><rect x="824.5" y="549" width="0.2" height="15.0" fill="rgb(237,148,35)" rx="2" ry="2" /> | |
| <text x="827.47" y="559.5" ></text> | |
| </g> | |
| <g > | |
| <title>pthread_cond_signal@@GLIBC_2.17 (24,907,420 samples, 0.01%)</title><rect x="1126.2" y="549" width="0.1" height="15.0" fill="rgb(232,126,30)" rx="2" ry="2" /> | |
| <text x="1129.16" y="559.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_unmarshal_Uniform2f (25,764,076 samples, 0.01%)</title><rect x="1019.4" y="677" width="0.2" height="15.0" fill="rgb(237,149,35)" rx="2" ry="2" /> | |
| <text x="1022.45" y="687.5" ></text> | |
| </g> | |
| <g > | |
| <title>__aarch64_ldadd4_acq_rel (359,065,193 samples, 0.20%)</title><rect x="185.4" y="741" width="2.3" height="15.0" fill="rgb(228,108,25)" rx="2" ry="2" /> | |
| <text x="188.39" y="751.5" ></text> | |
| </g> | |
| <g > | |
| <title>el0t_64_sync_handler (65,701,427 samples, 0.04%)</title><rect x="843.4" y="597" width="0.4" height="15.0" fill="rgb(211,32,7)" rx="2" ry="2" /> | |
| <text x="846.41" y="607.5" ></text> | |
| </g> | |
| <g > | |
| <title>__GI___strlen_asimd (52,700,471 samples, 0.03%)</title><rect x="913.4" y="709" width="0.4" height="15.0" fill="rgb(213,41,9)" rx="2" ry="2" /> | |
| <text x="916.44" y="719.5" ></text> | |
| </g> | |
| <g > | |
| <title>el0_svc (75,257,872 samples, 0.04%)</title><rect x="35.0" y="757" width="0.5" height="15.0" fill="rgb(244,183,43)" rx="2" ry="2" /> | |
| <text x="38.01" y="767.5" ></text> | |
| </g> | |
| <g > | |
| <title>amdgpu_lookup_buffer (237,314,402 samples, 0.13%)</title><rect x="215.2" y="741" width="1.6" height="15.0" fill="rgb(216,54,13)" rx="2" ry="2" /> | |
| <text x="218.21" y="751.5" ></text> | |
| </g> | |
| <g > | |
| <title>cso_set_vertex_elements (31,310,590 samples, 0.02%)</title><rect x="1063.5" y="613" width="0.2" height="15.0" fill="rgb(238,152,36)" rx="2" ry="2" /> | |
| <text x="1066.50" y="623.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_draw_arrays.part.0 (54,463,783 samples, 0.03%)</title><rect x="993.1" y="645" width="0.4" height="15.0" fill="rgb(227,104,25)" rx="2" ry="2" /> | |
| <text x="996.11" y="655.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_UseProgram (66,261,917 samples, 0.04%)</title><rect x="1143.0" y="677" width="0.5" height="15.0" fill="rgb(212,36,8)" rx="2" ry="2" /> | |
| <text x="1146.05" y="687.5" ></text> | |
| </g> | |
| <g > | |
| <title>si_get_vs_key_outputs (75,957,369 samples, 0.04%)</title><rect x="137.5" y="741" width="0.5" height="15.0" fill="rgb(246,189,45)" rx="2" ry="2" /> | |
| <text x="140.47" y="751.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_test_framebuffer_completeness (36,679,068 samples, 0.02%)</title><rect x="988.0" y="581" width="0.2" height="15.0" fill="rgb(229,113,27)" rx="2" ry="2" /> | |
| <text x="990.96" y="591.5" ></text> | |
| </g> | |
| <g > | |
| <title>_glapi_get_current (15,832,339 samples, 0.01%)</title><rect x="741.8" y="661" width="0.1" height="15.0" fill="rgb(233,130,31)" rx="2" ry="2" /> | |
| <text x="744.83" y="671.5" ></text> | |
| </g> | |
| <g > | |
| <title>futex_get_value_locked (30,340,290 samples, 0.02%)</title><rect x="249.5" y="597" width="0.1" height="15.0" fill="rgb(224,91,21)" rx="2" ry="2" /> | |
| <text x="252.45" y="607.5" ></text> | |
| </g> | |
| <g > | |
| <title>wake_up_q (82,340,127 samples, 0.05%)</title><rect x="191.3" y="533" width="0.6" height="15.0" fill="rgb(237,151,36)" rx="2" ry="2" /> | |
| <text x="194.32" y="543.5" ></text> | |
| </g> | |
| <g > | |
| <title>__aarch64_ldadd4_acq_rel (6,415,717,736 samples, 3.55%)</title><rect x="86.3" y="789" width="42.0" height="15.0" fill="rgb(228,108,25)" rx="2" ry="2" /> | |
| <text x="89.32" y="799.5" >__a..</text> | |
| </g> | |
| <g > | |
| <title>st_update_depth_stencil_alpha (22,374,024 samples, 0.01%)</title><rect x="400.5" y="725" width="0.1" height="15.0" fill="rgb(252,219,52)" rx="2" ry="2" /> | |
| <text x="403.49" y="735.5" ></text> | |
| </g> | |
| <g > | |
| <title>el0t_64_sync (63,814,501 samples, 0.04%)</title><rect x="1189.6" y="885" width="0.4" height="15.0" fill="rgb(217,56,13)" rx="2" ry="2" /> | |
| <text x="1192.58" y="895.5" ></text> | |
| </g> | |
| <g > | |
| <title>drm_sched_fence_release_scheduled (54,932,143 samples, 0.03%)</title><rect x="308.2" y="501" width="0.4" height="15.0" fill="rgb(240,161,38)" rx="2" ry="2" /> | |
| <text x="311.24" y="511.5" ></text> | |
| </g> | |
| <g > | |
| <title>st_upload_constants (80,002,818 samples, 0.04%)</title><rect x="871.0" y="581" width="0.5" height="15.0" fill="rgb(238,154,36)" rx="2" ry="2" /> | |
| <text x="873.98" y="591.5" ></text> | |
| </g> | |
| <g > | |
| <title>rseq_update_cpu_node_id (21,086,118 samples, 0.01%)</title><rect x="1163.2" y="485" width="0.1" height="15.0" fill="rgb(224,88,21)" rx="2" ry="2" /> | |
| <text x="1166.17" y="495.5" ></text> | |
| </g> | |
| <g > | |
| <title>__arm64_sys_futex (55,143,327 samples, 0.03%)</title><rect x="901.7" y="405" width="0.4" height="15.0" fill="rgb(247,196,47)" rx="2" ry="2" /> | |
| <text x="904.74" y="415.5" ></text> | |
| </g> | |
| <g > | |
| <title>update_shader_samplers (150,934,102 samples, 0.08%)</title><rect x="995.9" y="629" width="1.0" height="15.0" fill="rgb(229,113,27)" rx="2" ry="2" /> | |
| <text x="998.90" y="639.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_reference_program_ (22,366,916 samples, 0.01%)</title><rect x="950.7" y="581" width="0.2" height="15.0" fill="rgb(231,122,29)" rx="2" ry="2" /> | |
| <text x="953.73" y="591.5" ></text> | |
| </g> | |
| <g > | |
| <title>cnd_signal (17,560,576 samples, 0.01%)</title><rect x="883.5" y="645" width="0.1" height="15.0" fill="rgb(232,125,30)" rx="2" ry="2" /> | |
| <text x="886.52" y="655.5" ></text> | |
| </g> | |
| <g > | |
| <title>void st_update_array_templ< (34,527,011 samples, 0.02%)</title><rect x="1113.0" y="661" width="0.2" height="15.0" fill="rgb(243,178,42)" rx="2" ry="2" /> | |
| <text x="1116.00" y="671.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_marshal_DrawRangeElements (48,950,312 samples, 0.03%)</title><rect x="919.6" y="709" width="0.3" height="15.0" fill="rgb(229,111,26)" rx="2" ry="2" /> | |
| <text x="922.57" y="719.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_update_state (391,880,068 samples, 0.22%)</title><rect x="990.1" y="645" width="2.5" height="15.0" fill="rgb(222,78,18)" rx="2" ry="2" /> | |
| <text x="993.08" y="655.5" ></text> | |
| </g> | |
| <g > | |
| <title>buffer_data_error (40,011,972 samples, 0.02%)</title><rect x="1104.3" y="693" width="0.3" height="15.0" fill="rgb(213,38,9)" rx="2" ry="2" /> | |
| <text x="1107.29" y="703.5" ></text> | |
| </g> | |
| <g > | |
| <title>fmodf@@GLIBC_2.38 (15,904,372 samples, 0.01%)</title><rect x="1069.5" y="741" width="0.1" height="15.0" fill="rgb(246,190,45)" rx="2" ry="2" /> | |
| <text x="1072.50" y="751.5" ></text> | |
| </g> | |
| <g > | |
| <title>do_futex (52,984,977 samples, 0.03%)</title><rect x="901.8" y="389" width="0.3" height="15.0" fill="rgb(245,184,44)" rx="2" ry="2" /> | |
| <text x="904.76" y="399.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_unmarshal_Uniform3fv (19,462,230 samples, 0.01%)</title><rect x="1090.5" y="709" width="0.2" height="15.0" fill="rgb(218,63,15)" rx="2" ry="2" /> | |
| <text x="1093.54" y="719.5" ></text> | |
| </g> | |
| <g > | |
| <title>__tz_convert (31,538,282 samples, 0.02%)</title><rect x="1180.5" y="805" width="0.2" height="15.0" fill="rgb(217,56,13)" rx="2" ry="2" /> | |
| <text x="1183.47" y="815.5" ></text> | |
| </g> | |
| <g > | |
| <title>el0_svc_common.constprop.0 (19,734,986 samples, 0.01%)</title><rect x="515.4" y="437" width="0.2" height="15.0" fill="rgb(224,89,21)" rx="2" ry="2" /> | |
| <text x="518.44" y="447.5" ></text> | |
| </g> | |
| <g > | |
| <title>pthread_cond_signal@@GLIBC_2.17 (28,043,662 samples, 0.02%)</title><rect x="453.1" y="645" width="0.2" height="15.0" fill="rgb(232,126,30)" rx="2" ry="2" /> | |
| <text x="456.11" y="655.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_program_init_subroutine_defaults (165,004,637 samples, 0.09%)</title><rect x="488.2" y="725" width="1.1" height="15.0" fill="rgb(231,122,29)" rx="2" ry="2" /> | |
| <text x="491.23" y="735.5" ></text> | |
| </g> | |
| <g > | |
| <title>__memcpy_generic (16,744,854 samples, 0.01%)</title><rect x="805.5" y="629" width="0.1" height="15.0" fill="rgb(231,124,29)" rx="2" ry="2" /> | |
| <text x="808.48" y="639.5" ></text> | |
| </g> | |
| <g > | |
| <title>shared_dispatch_stub_307 (45,542,519 samples, 0.03%)</title><rect x="1169.4" y="757" width="0.3" height="15.0" fill="rgb(242,171,41)" rx="2" ry="2" /> | |
| <text x="1172.38" y="767.5" ></text> | |
| </g> | |
| <g > | |
| <title>__libc_recvmsg (40,294,554 samples, 0.02%)</title><rect x="508.8" y="709" width="0.3" height="15.0" fill="rgb(220,72,17)" rx="2" ry="2" /> | |
| <text x="511.84" y="719.5" ></text> | |
| </g> | |
| <g > | |
| <title>drm_ioctl (39,706,322 samples, 0.02%)</title><rect x="331.8" y="613" width="0.2" height="15.0" fill="rgb(231,121,29)" rx="2" ry="2" /> | |
| <text x="334.79" y="623.5" ></text> | |
| </g> | |
| <g > | |
| <title>get_query_result (2,806,820,964 samples, 1.55%)</title><rect x="884.5" y="661" width="18.3" height="15.0" fill="rgb(228,106,25)" rx="2" ry="2" /> | |
| <text x="887.48" y="671.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_BindTexture (65,188,313 samples, 0.04%)</title><rect x="810.0" y="597" width="0.4" height="15.0" fill="rgb(234,136,32)" rx="2" ry="2" /> | |
| <text x="813.01" y="607.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_UseProgram (185,595,805 samples, 0.10%)</title><rect x="1091.6" y="693" width="1.2" height="15.0" fill="rgb(212,36,8)" rx="2" ry="2" /> | |
| <text x="1094.60" y="703.5" ></text> | |
| </g> | |
| <g > | |
| <title>pipe_write (33,635,296 samples, 0.02%)</title><rect x="15.2" y="565" width="0.3" height="15.0" fill="rgb(236,146,35)" rx="2" ry="2" /> | |
| <text x="18.24" y="575.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_test_framebuffer_completeness (20,015,496 samples, 0.01%)</title><rect x="1002.2" y="565" width="0.1" height="15.0" fill="rgb(229,113,27)" rx="2" ry="2" /> | |
| <text x="1005.17" y="575.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_Uniform3f (19,390,554 samples, 0.01%)</title><rect x="1090.4" y="693" width="0.1" height="15.0" fill="rgb(217,56,13)" rx="2" ry="2" /> | |
| <text x="1093.42" y="703.5" ></text> | |
| </g> | |
| <g > | |
| <title>si_flush_gfx_cs (313,227,851 samples, 0.17%)</title><rect x="37.3" y="789" width="2.0" height="15.0" fill="rgb(242,171,41)" rx="2" ry="2" /> | |
| <text x="40.26" y="799.5" ></text> | |
| </g> | |
| <g > | |
| <title>__memcpy_generic (337,669,725 samples, 0.19%)</title><rect x="913.8" y="709" width="2.2" height="15.0" fill="rgb(231,124,29)" rx="2" ry="2" /> | |
| <text x="916.84" y="719.5" ></text> | |
| </g> | |
| <g > | |
| <title>[libxcb.so.1.1.0] (17,100,071 samples, 0.01%)</title><rect x="504.7" y="709" width="0.1" height="15.0" fill="rgb(226,98,23)" rx="2" ry="2" /> | |
| <text x="507.73" y="719.5" ></text> | |
| </g> | |
| <g > | |
| <title>drm_file_free (33,155,764 samples, 0.02%)</title><rect x="1189.8" y="677" width="0.2" height="15.0" fill="rgb(212,32,7)" rx="2" ry="2" /> | |
| <text x="1192.78" y="687.5" ></text> | |
| </g> | |
| <g > | |
| <title>si_update_ps_inputs_read_or_disabled (110,701,248 samples, 0.06%)</title><rect x="55.4" y="773" width="0.7" height="15.0" fill="rgb(241,169,40)" rx="2" ry="2" /> | |
| <text x="58.40" y="783.5" ></text> | |
| </g> | |
| <g > | |
| <title>tc_call_bind_fs_state (50,809,499 samples, 0.03%)</title><rect x="518.0" y="693" width="0.3" height="15.0" fill="rgb(218,60,14)" rx="2" ry="2" /> | |
| <text x="520.98" y="703.5" ></text> | |
| </g> | |
| <g > | |
| <title>el0_svc (37,287,209 samples, 0.02%)</title><rect x="16.9" y="709" width="0.2" height="15.0" fill="rgb(244,183,43)" rx="2" ry="2" /> | |
| <text x="19.88" y="719.5" ></text> | |
| </g> | |
| <g > | |
| <title>unix_stream_read_generic (19,613,998 samples, 0.01%)</title><rect x="503.5" y="453" width="0.2" height="15.0" fill="rgb(244,180,43)" rx="2" ry="2" /> | |
| <text x="506.53" y="463.5" ></text> | |
| </g> | |
| <g > | |
| <title>__audit_syscall_exit (87,506,043 samples, 0.05%)</title><rect x="30.9" y="661" width="0.6" height="15.0" fill="rgb(218,62,14)" rx="2" ry="2" /> | |
| <text x="33.93" y="671.5" ></text> | |
| </g> | |
| <g > | |
| <title>_XSend (17,100,071 samples, 0.01%)</title><rect x="504.7" y="741" width="0.1" height="15.0" fill="rgb(236,143,34)" rx="2" ry="2" /> | |
| <text x="507.73" y="751.5" ></text> | |
| </g> | |
| <g > | |
| <title>do_futex (45,253,794 samples, 0.03%)</title><rect x="1177.8" y="581" width="0.3" height="15.0" fill="rgb(245,184,44)" rx="2" ry="2" /> | |
| <text x="1180.85" y="591.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_glthread_flush_batch (49,517,747 samples, 0.03%)</title><rect x="956.2" y="693" width="0.3" height="15.0" fill="rgb(239,158,38)" rx="2" ry="2" /> | |
| <text x="959.19" y="703.5" ></text> | |
| </g> | |
| <g > | |
| <title>__d_lookup (26,550,670 samples, 0.01%)</title><rect x="1184.7" y="485" width="0.2" height="15.0" fill="rgb(224,88,21)" rx="2" ry="2" /> | |
| <text x="1187.75" y="495.5" ></text> | |
| </g> | |
| <g > | |
| <title>memcmp (23,702,973 samples, 0.01%)</title><rect x="876.0" y="533" width="0.2" height="15.0" fill="rgb(235,141,33)" rx="2" ry="2" /> | |
| <text x="879.02" y="543.5" ></text> | |
| </g> | |
| <g > | |
| <title>thread_start (575,699,861 samples, 0.32%)</title><rect x="11.4" y="885" width="3.7" height="15.0" fill="rgb(212,34,8)" rx="2" ry="2" /> | |
| <text x="14.37" y="895.5" ></text> | |
| </g> | |
| <g > | |
| <title>glBindTexture (65,585,382 samples, 0.04%)</title><rect x="1069.8" y="741" width="0.4" height="15.0" fill="rgb(224,91,21)" rx="2" ry="2" /> | |
| <text x="1072.81" y="751.5" ></text> | |
| </g> | |
| <g > | |
| <title>cso_set_vertex_elements (19,905,994 samples, 0.01%)</title><rect x="811.6" y="549" width="0.1" height="15.0" fill="rgb(238,152,36)" rx="2" ry="2" /> | |
| <text x="814.59" y="559.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_validated_drawrangeelements (69,809,392 samples, 0.04%)</title><rect x="930.7" y="629" width="0.5" height="15.0" fill="rgb(230,115,27)" rx="2" ry="2" /> | |
| <text x="933.69" y="639.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_use_shader_program (200,237,404 samples, 0.11%)</title><rect x="949.9" y="629" width="1.3" height="15.0" fill="rgb(245,188,44)" rx="2" ry="2" /> | |
| <text x="952.92" y="639.5" ></text> | |
| </g> | |
| <g > | |
| <title>do_el0_svc (29,550,363 samples, 0.02%)</title><rect x="17.1" y="693" width="0.2" height="15.0" fill="rgb(218,60,14)" rx="2" ry="2" /> | |
| <text x="20.14" y="703.5" ></text> | |
| </g> | |
| <g > | |
| <title>st_get_texture_sampler_view_from_stobj (37,745,821 samples, 0.02%)</title><rect x="929.5" y="581" width="0.2" height="15.0" fill="rgb(211,32,7)" rx="2" ry="2" /> | |
| <text x="932.48" y="591.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_Uniform2f (20,728,278 samples, 0.01%)</title><rect x="1064.4" y="677" width="0.2" height="15.0" fill="rgb(223,86,20)" rx="2" ry="2" /> | |
| <text x="1067.44" y="687.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_validated_drawrangeelements (23,608,943 samples, 0.01%)</title><rect x="812.6" y="565" width="0.2" height="15.0" fill="rgb(230,115,27)" rx="2" ry="2" /> | |
| <text x="815.61" y="575.5" ></text> | |
| </g> | |
| <g > | |
| <title>update_textures (19,801,833 samples, 0.01%)</title><rect x="856.3" y="565" width="0.1" height="15.0" fill="rgb(232,125,29)" rx="2" ry="2" /> | |
| <text x="859.30" y="575.5" ></text> | |
| </g> | |
| <g > | |
| <title>_raw_spin_unlock (259,793,988 samples, 0.14%)</title><rect x="322.1" y="565" width="1.7" height="15.0" fill="rgb(223,85,20)" rx="2" ry="2" /> | |
| <text x="325.07" y="575.5" ></text> | |
| </g> | |
| <g > | |
| <title>amdgpu_cs_add_buffer (15,712,119 samples, 0.01%)</title><rect x="889.0" y="565" width="0.1" height="15.0" fill="rgb(254,227,54)" rx="2" ry="2" /> | |
| <text x="891.98" y="575.5" ></text> | |
| </g> | |
| <g > | |
| <title>__rseq_handle_notify_resume (43,453,380 samples, 0.02%)</title><rect x="531.3" y="597" width="0.2" height="15.0" fill="rgb(238,153,36)" rx="2" ry="2" /> | |
| <text x="534.26" y="607.5" ></text> | |
| </g> | |
| <g > | |
| <title>drm_ioctl (195,934,017 samples, 0.11%)</title><rect x="1161.5" y="437" width="1.3" height="15.0" fill="rgb(231,121,29)" rx="2" ry="2" /> | |
| <text x="1164.51" y="447.5" ></text> | |
| </g> | |
| <g > | |
| <title>[libpulsecommon-16.1.so] (161,718,205 samples, 0.09%)</title><rect x="11.4" y="741" width="1.0" height="15.0" fill="rgb(224,88,21)" rx="2" ry="2" /> | |
| <text x="14.38" y="751.5" ></text> | |
| </g> | |
| <g > | |
| <title>el0t_64_sync (845,336,097 samples, 0.47%)</title><rect x="1181.4" y="725" width="5.5" height="15.0" fill="rgb(217,56,13)" rx="2" ry="2" /> | |
| <text x="1184.37" y="735.5" ></text> | |
| </g> | |
| <g > | |
| <title>void st_update_array_templ< (24,187,184 samples, 0.01%)</title><rect x="1121.3" y="629" width="0.2" height="15.0" fill="rgb(243,178,42)" rx="2" ry="2" /> | |
| <text x="1124.34" y="639.5" ></text> | |
| </g> | |
| <g > | |
| <title>void st_update_array_impl< (35,669,305 samples, 0.02%)</title><rect x="875.0" y="581" width="0.2" height="15.0" fill="rgb(217,56,13)" rx="2" ry="2" /> | |
| <text x="877.97" y="591.5" ></text> | |
| </g> | |
| <g > | |
| <title>tc_batch_flush (41,583,770 samples, 0.02%)</title><rect x="453.0" y="709" width="0.3" height="15.0" fill="rgb(249,206,49)" rx="2" ry="2" /> | |
| <text x="456.02" y="719.5" ></text> | |
| </g> | |
| <g > | |
| <title>drmSyncobjCreate (107,535,677 samples, 0.06%)</title><rect x="900.2" y="549" width="0.7" height="15.0" fill="rgb(224,87,21)" rx="2" ry="2" /> | |
| <text x="903.23" y="559.5" ></text> | |
| </g> | |
| <g > | |
| <title>schedule_timeout (18,751,603 samples, 0.01%)</title><rect x="896.3" y="309" width="0.1" height="15.0" fill="rgb(234,137,32)" rx="2" ry="2" /> | |
| <text x="899.28" y="319.5" ></text> | |
| </g> | |
| <g > | |
| <title>update_program (16,316,364 samples, 0.01%)</title><rect x="869.4" y="581" width="0.1" height="15.0" fill="rgb(236,145,34)" rx="2" ry="2" /> | |
| <text x="872.38" y="591.5" ></text> | |
| </g> | |
| <g > | |
| <title>[redeclipse] (97,055,971,167 samples, 53.76%)</title><rect x="544.9" y="805" width="634.3" height="15.0" fill="rgb(253,222,53)" rx="2" ry="2" /> | |
| <text x="547.87" y="815.5" >[redeclipse]</text> | |
| </g> | |
| <g > | |
| <title>pb_slabs_reclaim_locked (56,543,208 samples, 0.03%)</title><rect x="515.4" y="613" width="0.3" height="15.0" fill="rgb(243,178,42)" rx="2" ry="2" /> | |
| <text x="518.38" y="623.5" ></text> | |
| </g> | |
| <g > | |
| <title>deflate (195,755,448 samples, 0.11%)</title><rect x="1032.7" y="725" width="1.3" height="15.0" fill="rgb(230,115,27)" rx="2" ry="2" /> | |
| <text x="1035.71" y="735.5" ></text> | |
| </g> | |
| <g > | |
| <title>__GI___lll_lock_wake (140,032,435 samples, 0.08%)</title><rect x="500.7" y="789" width="0.9" height="15.0" fill="rgb(210,23,5)" rx="2" ry="2" /> | |
| <text x="503.71" y="799.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_update_texture_state (28,373,377 samples, 0.02%)</title><rect x="1110.6" y="629" width="0.2" height="15.0" fill="rgb(237,148,35)" rx="2" ry="2" /> | |
| <text x="1113.64" y="639.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_update_texture_state (24,443,514 samples, 0.01%)</title><rect x="810.7" y="549" width="0.2" height="15.0" fill="rgb(237,148,35)" rx="2" ry="2" /> | |
| <text x="813.74" y="559.5" ></text> | |
| </g> | |
| <g > | |
| <title>el0t_64_sync_handler (39,366,923 samples, 0.02%)</title><rect x="10.3" y="741" width="0.3" height="15.0" fill="rgb(211,32,7)" rx="2" ry="2" /> | |
| <text x="13.32" y="751.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_uniform (158,812,484 samples, 0.09%)</title><rect x="857.3" y="629" width="1.1" height="15.0" fill="rgb(248,201,48)" rx="2" ry="2" /> | |
| <text x="860.33" y="639.5" ></text> | |
| </g> | |
| <g > | |
| <title>amdgpu_cs_add_buffer (61,586,489 samples, 0.03%)</title><rect x="149.1" y="725" width="0.4" height="15.0" fill="rgb(254,227,54)" rx="2" ry="2" /> | |
| <text x="152.10" y="735.5" ></text> | |
| </g> | |
| <g > | |
| <title>futex_wake (81,597,220 samples, 0.05%)</title><rect x="35.0" y="821" width="0.5" height="15.0" fill="rgb(219,65,15)" rx="2" ry="2" /> | |
| <text x="37.98" y="831.5" ></text> | |
| </g> | |
| <g > | |
| <title>si_set_sampler_views (123,749,681 samples, 0.07%)</title><rect x="894.4" y="549" width="0.8" height="15.0" fill="rgb(218,61,14)" rx="2" ry="2" /> | |
| <text x="897.35" y="559.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_unmarshal_Uniform2f (22,351,148 samples, 0.01%)</title><rect x="1064.4" y="693" width="0.2" height="15.0" fill="rgb(237,149,35)" rx="2" ry="2" /> | |
| <text x="1067.43" y="703.5" ></text> | |
| </g> | |
| <g > | |
| <title>__aarch64_ldadd4_acq_rel (28,408,258 samples, 0.02%)</title><rect x="990.7" y="581" width="0.2" height="15.0" fill="rgb(228,108,25)" rx="2" ry="2" /> | |
| <text x="993.74" y="591.5" ></text> | |
| </g> | |
| <g > | |
| <title>__audit_syscall_exit (40,860,402 samples, 0.02%)</title><rect x="250.3" y="661" width="0.3" height="15.0" fill="rgb(218,62,14)" rx="2" ry="2" /> | |
| <text x="253.31" y="671.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_bufferobj_map_range (257,391,184 samples, 0.14%)</title><rect x="1071.1" y="725" width="1.7" height="15.0" fill="rgb(206,7,1)" rx="2" ry="2" /> | |
| <text x="1074.11" y="735.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_unmarshal_DrawArraysInstanced (525,874,370 samples, 0.29%)</title><rect x="1109.9" y="709" width="3.4" height="15.0" fill="rgb(209,20,4)" rx="2" ry="2" /> | |
| <text x="1112.85" y="719.5" ></text> | |
| </g> | |
| <g > | |
| <title>void st_update_array_templ< (244,644,530 samples, 0.14%)</title><rect x="1134.4" y="645" width="1.6" height="15.0" fill="rgb(243,178,42)" rx="2" ry="2" /> | |
| <text x="1137.45" y="655.5" ></text> | |
| </g> | |
| <g > | |
| <title>amdgpu_lookup_buffer (17,385,973 samples, 0.01%)</title><rect x="139.3" y="741" width="0.1" height="15.0" fill="rgb(216,54,13)" rx="2" ry="2" /> | |
| <text x="142.29" y="751.5" ></text> | |
| </g> | |
| <g > | |
| <title>__GI___strlen_asimd (21,788,073 samples, 0.01%)</title><rect x="794.2" y="309" width="0.1" height="15.0" fill="rgb(213,41,9)" rx="2" ry="2" /> | |
| <text x="797.21" y="319.5" ></text> | |
| </g> | |
| <g > | |
| <title>[redeclipse] (22,690,006 samples, 0.01%)</title><rect x="800.8" y="453" width="0.2" height="15.0" fill="rgb(253,222,53)" rx="2" ry="2" /> | |
| <text x="803.81" y="463.5" ></text> | |
| </g> | |
| <g > | |
| <title>st_flush (16,843,364 samples, 0.01%)</title><rect x="516.5" y="741" width="0.1" height="15.0" fill="rgb(230,117,28)" rx="2" ry="2" /> | |
| <text x="519.54" y="751.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_unmarshal_Uniform3fv (128,906,656 samples, 0.07%)</title><rect x="1138.5" y="709" width="0.8" height="15.0" fill="rgb(218,63,15)" rx="2" ry="2" /> | |
| <text x="1141.47" y="719.5" ></text> | |
| </g> | |
| <g > | |
| <title>st_get_sampler_views (69,905,046 samples, 0.04%)</title><rect x="827.9" y="549" width="0.5" height="15.0" fill="rgb(224,91,21)" rx="2" ry="2" /> | |
| <text x="830.93" y="559.5" ></text> | |
| </g> | |
| <g > | |
| <title>cnd_wait (1,067,961,550 samples, 0.59%)</title><rect x="28.0" y="821" width="7.0" height="15.0" fill="rgb(230,118,28)" rx="2" ry="2" /> | |
| <text x="31.00" y="831.5" ></text> | |
| </g> | |
| <g > | |
| <title>pa_threaded_mainloop_wait (155,111,543 samples, 0.09%)</title><rect x="16.3" y="805" width="1.0" height="15.0" fill="rgb(243,176,42)" rx="2" ry="2" /> | |
| <text x="19.32" y="815.5" ></text> | |
| </g> | |
| <g > | |
| <title>drmIoctl (30,367,821 samples, 0.02%)</title><rect x="538.3" y="645" width="0.2" height="15.0" fill="rgb(251,215,51)" rx="2" ry="2" /> | |
| <text x="541.31" y="655.5" ></text> | |
| </g> | |
| <g > | |
| <title>glthread_unmarshal_batch (136,316,734 samples, 0.08%)</title><rect x="1171.9" y="741" width="0.9" height="15.0" fill="rgb(247,195,46)" rx="2" ry="2" /> | |
| <text x="1174.90" y="751.5" ></text> | |
| </g> | |
| <g > | |
| <title>[libGLdispatch.so.0.0.0] (18,985,693 samples, 0.01%)</title><rect x="614.8" y="725" width="0.1" height="15.0" fill="rgb(209,20,4)" rx="2" ry="2" /> | |
| <text x="617.77" y="735.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_unmarshal_BindBuffer (50,579,373 samples, 0.03%)</title><rect x="1097.7" y="693" width="0.3" height="15.0" fill="rgb(223,86,20)" rx="2" ry="2" /> | |
| <text x="1100.67" y="703.5" ></text> | |
| </g> | |
| <g > | |
| <title>strcmp (26,594,815 samples, 0.01%)</title><rect x="1189.4" y="821" width="0.2" height="15.0" fill="rgb(217,58,13)" rx="2" ry="2" /> | |
| <text x="1192.41" y="831.5" ></text> | |
| </g> | |
| <g > | |
| <title>[redeclipse] (2,685,716,529 samples, 1.49%)</title><rect x="773.5" y="245" width="17.5" height="15.0" fill="rgb(253,222,53)" rx="2" ry="2" /> | |
| <text x="776.47" y="255.5" ></text> | |
| </g> | |
| <g > | |
| <title>__futex_wait (24,378,508 samples, 0.01%)</title><rect x="843.4" y="469" width="0.2" height="15.0" fill="rgb(207,12,3)" rx="2" ry="2" /> | |
| <text x="846.45" y="479.5" ></text> | |
| </g> | |
| <g > | |
| <title>__aarch64_cas4_sync (171,370,362 samples, 0.09%)</title><rect x="73.2" y="773" width="1.2" height="15.0" fill="rgb(253,222,53)" rx="2" ry="2" /> | |
| <text x="76.24" y="783.5" ></text> | |
| </g> | |
| <g > | |
| <title>bind_buffer_object (19,839,895 samples, 0.01%)</title><rect x="973.5" y="661" width="0.1" height="15.0" fill="rgb(246,190,45)" rx="2" ry="2" /> | |
| <text x="976.52" y="671.5" ></text> | |
| </g> | |
| <g > | |
| <title>cso_set_framebuffer (20,386,024 samples, 0.01%)</title><rect x="988.7" y="629" width="0.1" height="15.0" fill="rgb(217,59,14)" rx="2" ry="2" /> | |
| <text x="991.66" y="639.5" ></text> | |
| </g> | |
| <g > | |
| <title>deflate (403,608,720 samples, 0.22%)</title><rect x="1156.8" y="757" width="2.6" height="15.0" fill="rgb(230,115,27)" rx="2" ry="2" /> | |
| <text x="1159.80" y="767.5" ></text> | |
| </g> | |
| <g > | |
| <title>bool si_update_shaders< (30,440,032 samples, 0.02%)</title><rect x="82.6" y="709" width="0.2" height="15.0" fill="rgb(233,129,30)" rx="2" ry="2" /> | |
| <text x="85.62" y="719.5" ></text> | |
| </g> | |
| <g > | |
| <title>st_get_texture_sampler_view_from_stobj (1,155,514,951 samples, 0.64%)</title><rect x="436.6" y="693" width="7.5" height="15.0" fill="rgb(211,32,7)" rx="2" ry="2" /> | |
| <text x="439.59" y="703.5" ></text> | |
| </g> | |
| <g > | |
| <title>res2_inverse (368,479,154 samples, 0.20%)</title><rect x="24.5" y="693" width="2.4" height="15.0" fill="rgb(209,21,5)" rx="2" ry="2" /> | |
| <text x="27.53" y="703.5" ></text> | |
| </g> | |
| <g > | |
| <title>st_update_depth_stencil_alpha (19,935,101 samples, 0.01%)</title><rect x="994.4" y="613" width="0.1" height="15.0" fill="rgb(252,219,52)" rx="2" ry="2" /> | |
| <text x="997.42" y="623.5" ></text> | |
| </g> | |
| <g > | |
| <title>__arm64_sys_ioctl (9,895,439,073 samples, 5.48%)</title><rect x="266.2" y="661" width="64.7" height="15.0" fill="rgb(207,11,2)" rx="2" ry="2" /> | |
| <text x="269.23" y="671.5" >__arm64..</text> | |
| </g> | |
| <g > | |
| <title>invoke_syscall (40,112,586 samples, 0.02%)</title><rect x="38.4" y="613" width="0.2" height="15.0" fill="rgb(209,18,4)" rx="2" ry="2" /> | |
| <text x="41.36" y="623.5" ></text> | |
| </g> | |
| <g > | |
| <title>st_update_rasterizer (53,978,952 samples, 0.03%)</title><rect x="936.8" y="597" width="0.4" height="15.0" fill="rgb(240,164,39)" rx="2" ry="2" /> | |
| <text x="939.82" y="607.5" ></text> | |
| </g> | |
| <g > | |
| <title>__aarch64_ldadd4_acq_rel (17,095,709 samples, 0.01%)</title><rect x="1060.8" y="597" width="0.1" height="15.0" fill="rgb(228,108,25)" rx="2" ry="2" /> | |
| <text x="1063.80" y="607.5" ></text> | |
| </g> | |
| <g > | |
| <title>st_manager_validate_framebuffers (594,041,215 samples, 0.33%)</title><rect x="1105.3" y="661" width="3.9" height="15.0" fill="rgb(251,215,51)" rx="2" ry="2" /> | |
| <text x="1108.32" y="671.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_glthread_flush_batch (17,260,738 samples, 0.01%)</title><rect x="972.2" y="709" width="0.1" height="15.0" fill="rgb(239,158,38)" rx="2" ry="2" /> | |
| <text x="975.20" y="719.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_use_shader_program (65,444,754 samples, 0.04%)</title><rect x="1026.9" y="629" width="0.5" height="15.0" fill="rgb(245,188,44)" rx="2" ry="2" /> | |
| <text x="1029.94" y="639.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_lookup_bufferobj.part.0 (19,881,500 samples, 0.01%)</title><rect x="1077.3" y="677" width="0.1" height="15.0" fill="rgb(223,84,20)" rx="2" ry="2" /> | |
| <text x="1080.25" y="687.5" ></text> | |
| </g> | |
| <g > | |
| <title>cnd_signal (20,121,086 samples, 0.01%)</title><rect x="977.9" y="677" width="0.1" height="15.0" fill="rgb(232,125,30)" rx="2" ry="2" /> | |
| <text x="980.88" y="687.5" ></text> | |
| </g> | |
| <g > | |
| <title>si_buffer_transfer_map (43,671,625 samples, 0.02%)</title><rect x="961.5" y="645" width="0.3" height="15.0" fill="rgb(237,151,36)" rx="2" ry="2" /> | |
| <text x="964.52" y="655.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_validated_drawrangeelements (43,049,699 samples, 0.02%)</title><rect x="1154.5" y="677" width="0.3" height="15.0" fill="rgb(230,115,27)" rx="2" ry="2" /> | |
| <text x="1157.52" y="687.5" ></text> | |
| </g> | |
| <g > | |
| <title>tc_call_bind_vs_state (989,163,964 samples, 0.55%)</title><rect x="61.2" y="805" width="6.4" height="15.0" fill="rgb(214,44,10)" rx="2" ry="2" /> | |
| <text x="64.16" y="815.5" ></text> | |
| </g> | |
| <g > | |
| <title>__vsnprintf_internal (211,872,747 samples, 0.12%)</title><rect x="916.4" y="693" width="1.4" height="15.0" fill="rgb(237,150,35)" rx="2" ry="2" /> | |
| <text x="919.44" y="703.5" ></text> | |
| </g> | |
| <g > | |
| <title>tc_buffer_map (19,256,041 samples, 0.01%)</title><rect x="958.7" y="661" width="0.1" height="15.0" fill="rgb(247,195,46)" rx="2" ry="2" /> | |
| <text x="961.65" y="671.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_reference_program_ (53,090,030 samples, 0.03%)</title><rect x="1026.6" y="597" width="0.3" height="15.0" fill="rgb(231,122,29)" rx="2" ry="2" /> | |
| <text x="1029.55" y="607.5" ></text> | |
| </g> | |
| <g > | |
| <title>drm_syncobj_destroy_ioctl (28,850,769 samples, 0.02%)</title><rect x="510.2" y="501" width="0.2" height="15.0" fill="rgb(218,63,15)" rx="2" ry="2" /> | |
| <text x="513.22" y="511.5" ></text> | |
| </g> | |
| <g > | |
| <title>invoke_syscall (275,095,035 samples, 0.15%)</title><rect x="540.9" y="597" width="1.8" height="15.0" fill="rgb(209,18,4)" rx="2" ry="2" /> | |
| <text x="543.93" y="607.5" ></text> | |
| </g> | |
| <g > | |
| <title>kfree (16,107,461 samples, 0.01%)</title><rect x="306.5" y="549" width="0.1" height="15.0" fill="rgb(222,78,18)" rx="2" ry="2" /> | |
| <text x="309.46" y="559.5" ></text> | |
| </g> | |
| <g > | |
| <title>__tzfile_read (15,482,314 samples, 0.01%)</title><rect x="1187.1" y="741" width="0.1" height="15.0" fill="rgb(236,143,34)" rx="2" ry="2" /> | |
| <text x="1190.08" y="751.5" ></text> | |
| </g> | |
| <g > | |
| <title>amdgpu_drm_ioctl (71,410,038 samples, 0.04%)</title><rect x="509.9" y="549" width="0.5" height="15.0" fill="rgb(246,190,45)" rx="2" ry="2" /> | |
| <text x="512.95" y="559.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_VertexAttribPointer (265,553,850 samples, 0.15%)</title><rect x="492.1" y="789" width="1.8" height="15.0" fill="rgb(211,29,7)" rx="2" ry="2" /> | |
| <text x="495.13" y="799.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_unmarshal_VertexAttribPointer_packed (24,224,379 samples, 0.01%)</title><rect x="493.9" y="789" width="0.1" height="15.0" fill="rgb(232,124,29)" rx="2" ry="2" /> | |
| <text x="496.87" y="799.5" ></text> | |
| </g> | |
| <g > | |
| <title>pa_mutex_lock (24,065,084 samples, 0.01%)</title><rect x="14.4" y="757" width="0.2" height="15.0" fill="rgb(253,223,53)" rx="2" ry="2" /> | |
| <text x="17.44" y="767.5" ></text> | |
| </g> | |
| <g > | |
| <title>[libpulsecommon-16.1.so] (230,378,704 samples, 0.13%)</title><rect x="11.4" y="757" width="1.5" height="15.0" fill="rgb(224,88,21)" rx="2" ry="2" /> | |
| <text x="14.38" y="767.5" ></text> | |
| </g> | |
| <g > | |
| <title>st_update_single_texture (52,130,445 samples, 0.03%)</title><rect x="998.0" y="597" width="0.3" height="15.0" fill="rgb(208,15,3)" rx="2" ry="2" /> | |
| <text x="1000.98" y="607.5" ></text> | |
| </g> | |
| <g > | |
| <title>el0t_64_sync_handler (63,814,501 samples, 0.04%)</title><rect x="1189.6" y="869" width="0.4" height="15.0" fill="rgb(211,32,7)" rx="2" ry="2" /> | |
| <text x="1192.58" y="879.5" ></text> | |
| </g> | |
| <g > | |
| <title>[libvorbis.so.0.4.9] (754,149,962 samples, 0.42%)</title><rect x="22.0" y="709" width="4.9" height="15.0" fill="rgb(233,129,30)" rx="2" ry="2" /> | |
| <text x="25.01" y="719.5" ></text> | |
| </g> | |
| <g > | |
| <title>syscall_trace_enter (27,525,882 samples, 0.02%)</title><rect x="30.7" y="677" width="0.1" height="15.0" fill="rgb(251,214,51)" rx="2" ry="2" /> | |
| <text x="33.66" y="687.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_Uniform3f (53,957,174 samples, 0.03%)</title><rect x="1138.1" y="693" width="0.3" height="15.0" fill="rgb(217,56,13)" rx="2" ry="2" /> | |
| <text x="1141.09" y="703.5" ></text> | |
| </g> | |
| <g > | |
| <title>[redeclipse] (521,090,431 samples, 0.29%)</title><rect x="780.9" y="149" width="3.4" height="15.0" fill="rgb(253,222,53)" rx="2" ry="2" /> | |
| <text x="783.87" y="159.5" ></text> | |
| </g> | |
| <g > | |
| <title>el0t_64_sync_handler (30,367,821 samples, 0.02%)</title><rect x="538.3" y="597" width="0.2" height="15.0" fill="rgb(211,32,7)" rx="2" ry="2" /> | |
| <text x="541.31" y="607.5" ></text> | |
| </g> | |
| <g > | |
| <title>futex_wait (74,191,160 samples, 0.04%)</title><rect x="843.4" y="645" width="0.4" height="15.0" fill="rgb(235,138,33)" rx="2" ry="2" /> | |
| <text x="846.36" y="655.5" ></text> | |
| </g> | |
| <g > | |
| <title>el0t_64_sync_handler (137,840,135 samples, 0.08%)</title><rect x="530.7" y="645" width="0.9" height="15.0" fill="rgb(211,32,7)" rx="2" ry="2" /> | |
| <text x="533.68" y="655.5" ></text> | |
| </g> | |
| <g > | |
| <title>update_single_program_texture (145,757,536 samples, 0.08%)</title><rect x="848.6" y="549" width="0.9" height="15.0" fill="rgb(241,165,39)" rx="2" ry="2" /> | |
| <text x="851.59" y="559.5" ></text> | |
| </g> | |
| <g > | |
| <title>slab_zalloc (152,077,433 samples, 0.08%)</title><rect x="1037.9" y="645" width="1.0" height="15.0" fill="rgb(232,128,30)" rx="2" ry="2" /> | |
| <text x="1040.92" y="655.5" ></text> | |
| </g> | |
| <g > | |
| <title>__arm64_sys_ioctl (164,434,007 samples, 0.09%)</title><rect x="537.0" y="517" width="1.1" height="15.0" fill="rgb(207,11,2)" rx="2" ry="2" /> | |
| <text x="540.05" y="527.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_unmarshal_EnableVertexAttribArray (18,320,329 samples, 0.01%)</title><rect x="1017.3" y="677" width="0.2" height="15.0" fill="rgb(218,64,15)" rx="2" ry="2" /> | |
| <text x="1020.34" y="687.5" ></text> | |
| </g> | |
| <g > | |
| <title>futex_wait_setup (15,738,270 samples, 0.01%)</title><rect x="884.7" y="405" width="0.1" height="15.0" fill="rgb(247,195,46)" rx="2" ry="2" /> | |
| <text x="887.72" y="415.5" ></text> | |
| </g> | |
| <g > | |
| <title>amdgpu_bo_list_put (194,263,408 samples, 0.11%)</title><rect x="284.9" y="565" width="1.3" height="15.0" fill="rgb(254,225,54)" rx="2" ry="2" /> | |
| <text x="287.90" y="575.5" ></text> | |
| </g> | |
| <g > | |
| <title>__check_object_size (24,782,208 samples, 0.01%)</title><rect x="290.3" y="549" width="0.1" height="15.0" fill="rgb(226,98,23)" rx="2" ry="2" /> | |
| <text x="293.25" y="559.5" ></text> | |
| </g> | |
| <g > | |
| <title>_raw_spin_unlock_irqrestore (25,103,021 samples, 0.01%)</title><rect x="456.0" y="501" width="0.2" height="15.0" fill="rgb(228,106,25)" rx="2" ry="2" /> | |
| <text x="459.04" y="511.5" ></text> | |
| </g> | |
| <g > | |
| <title>amdgpu_ctx_wait_prev_fence (69,103,602 samples, 0.04%)</title><rect x="314.1" y="565" width="0.4" height="15.0" fill="rgb(211,31,7)" rx="2" ry="2" /> | |
| <text x="317.07" y="575.5" ></text> | |
| </g> | |
| <g > | |
| <title>amdgpu_sync_keep_later (34,052,663 samples, 0.02%)</title><rect x="325.4" y="549" width="0.2" height="15.0" fill="rgb(244,180,43)" rx="2" ry="2" /> | |
| <text x="328.40" y="559.5" ></text> | |
| </g> | |
| <g > | |
| <title>st_update_vp (67,781,481 samples, 0.04%)</title><rect x="408.3" y="725" width="0.4" height="15.0" fill="rgb(254,227,54)" rx="2" ry="2" /> | |
| <text x="411.26" y="735.5" ></text> | |
| </g> | |
| <g > | |
| <title>tc_call_set_vertex_buffers (26,160,595 samples, 0.01%)</title><rect x="895.2" y="597" width="0.2" height="15.0" fill="rgb(247,194,46)" rx="2" ry="2" /> | |
| <text x="898.22" y="607.5" ></text> | |
| </g> | |
| <g > | |
| <title>copy_uniforms_to_storage (84,997,756 samples, 0.05%)</title><rect x="471.2" y="757" width="0.5" height="15.0" fill="rgb(250,207,49)" rx="2" ry="2" /> | |
| <text x="474.15" y="767.5" ></text> | |
| </g> | |
| <g > | |
| <title>el0t_64_sync_handler (78,555,616 samples, 0.04%)</title><rect x="901.1" y="501" width="0.5" height="15.0" fill="rgb(211,32,7)" rx="2" ry="2" /> | |
| <text x="904.07" y="511.5" ></text> | |
| </g> | |
| <g > | |
| <title>__tz_convert (122,649,042 samples, 0.07%)</title><rect x="1179.4" y="773" width="0.8" height="15.0" fill="rgb(217,56,13)" rx="2" ry="2" /> | |
| <text x="1182.41" y="783.5" ></text> | |
| </g> | |
| <g > | |
| <title>si_buffer_transfer_map (19,390,357 samples, 0.01%)</title><rect x="1045.9" y="693" width="0.1" height="15.0" fill="rgb(237,151,36)" rx="2" ry="2" /> | |
| <text x="1048.87" y="703.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_marshal_BindTexture (25,433,910 samples, 0.01%)</title><rect x="918.8" y="709" width="0.2" height="15.0" fill="rgb(214,44,10)" rx="2" ry="2" /> | |
| <text x="921.80" y="719.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_bind_framebuffers (55,917,022 samples, 0.03%)</title><rect x="348.9" y="789" width="0.4" height="15.0" fill="rgb(211,29,7)" rx="2" ry="2" /> | |
| <text x="351.89" y="799.5" ></text> | |
| </g> | |
| <g > | |
| <title>__aarch64_ldadd4_acq_rel (20,659,143 samples, 0.01%)</title><rect x="82.9" y="661" width="0.2" height="15.0" fill="rgb(228,108,25)" rx="2" ry="2" /> | |
| <text x="85.93" y="671.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_DrawElementsBaseVertex (1,481,908,309 samples, 0.82%)</title><rect x="847.3" y="629" width="9.7" height="15.0" fill="rgb(214,41,10)" rx="2" ry="2" /> | |
| <text x="850.30" y="639.5" ></text> | |
| </g> | |
| <g > | |
| <title>__memcpy_generic (82,837,091 samples, 0.05%)</title><rect x="1050.7" y="741" width="0.5" height="15.0" fill="rgb(231,124,29)" rx="2" ry="2" /> | |
| <text x="1053.65" y="751.5" ></text> | |
| </g> | |
| <g > | |
| <title>mtx_lock (37,030,629 samples, 0.02%)</title><rect x="500.4" y="821" width="0.3" height="15.0" fill="rgb(225,95,22)" rx="2" ry="2" /> | |
| <text x="503.41" y="831.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_DepthRange (18,142,171 samples, 0.01%)</title><rect x="375.5" y="789" width="0.1" height="15.0" fill="rgb(238,156,37)" rx="2" ry="2" /> | |
| <text x="378.51" y="799.5" ></text> | |
| </g> | |
| <g > | |
| <title>[redeclipse] (4,519,530,571 samples, 2.50%)</title><rect x="769.1" y="437" width="29.5" height="15.0" fill="rgb(253,222,53)" rx="2" ry="2" /> | |
| <text x="772.11" y="447.5" >[r..</text> | |
| </g> | |
| <g > | |
| <title>main (294,714,293 samples, 0.16%)</title><rect x="1187.5" y="821" width="1.9" height="15.0" fill="rgb(243,179,42)" rx="2" ry="2" /> | |
| <text x="1190.48" y="831.5" ></text> | |
| </g> | |
| <g > | |
| <title>__vsnprintf_chk (264,815,914 samples, 0.15%)</title><rect x="1051.7" y="741" width="1.7" height="15.0" fill="rgb(247,193,46)" rx="2" ry="2" /> | |
| <text x="1054.68" y="751.5" ></text> | |
| </g> | |
| <g > | |
| <title>invoke_syscall (63,814,501 samples, 0.04%)</title><rect x="1189.6" y="805" width="0.4" height="15.0" fill="rgb(209,18,4)" rx="2" ry="2" /> | |
| <text x="1192.58" y="815.5" ></text> | |
| </g> | |
| <g > | |
| <title>__aarch64_ldadd4_acq_rel (195,363,770 samples, 0.11%)</title><rect x="74.4" y="773" width="1.2" height="15.0" fill="rgb(228,108,25)" rx="2" ry="2" /> | |
| <text x="77.36" y="783.5" ></text> | |
| </g> | |
| <g > | |
| <title>_glapi_get_current (48,334,136 samples, 0.03%)</title><rect x="686.6" y="693" width="0.4" height="15.0" fill="rgb(233,130,31)" rx="2" ry="2" /> | |
| <text x="689.65" y="703.5" ></text> | |
| </g> | |
| <g > | |
| <title>walk_component (124,790,107 samples, 0.07%)</title><rect x="1185.4" y="533" width="0.8" height="15.0" fill="rgb(241,167,40)" rx="2" ry="2" /> | |
| <text x="1188.38" y="543.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_uniform (68,895,176 samples, 0.04%)</title><rect x="947.1" y="645" width="0.5" height="15.0" fill="rgb(248,201,48)" rx="2" ry="2" /> | |
| <text x="950.13" y="655.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_unmarshal_UseProgram (39,428,215 samples, 0.02%)</title><rect x="1155.4" y="709" width="0.3" height="15.0" fill="rgb(226,99,23)" rx="2" ry="2" /> | |
| <text x="1158.42" y="719.5" ></text> | |
| </g> | |
| <g > | |
| <title>do_el0_svc (136,482,921 samples, 0.08%)</title><rect x="503.4" y="597" width="0.9" height="15.0" fill="rgb(218,60,14)" rx="2" ry="2" /> | |
| <text x="506.42" y="607.5" ></text> | |
| </g> | |
| <g > | |
| <title>__futex_wait (79,082,326 samples, 0.04%)</title><rect x="979.8" y="501" width="0.5" height="15.0" fill="rgb(207,12,3)" rx="2" ry="2" /> | |
| <text x="982.83" y="511.5" ></text> | |
| </g> | |
| <g > | |
| <title>copy_uniforms_to_storage (21,040,779 samples, 0.01%)</title><rect x="1141.4" y="661" width="0.1" height="15.0" fill="rgb(250,207,49)" rx="2" ry="2" /> | |
| <text x="1144.40" y="671.5" ></text> | |
| </g> | |
| <g > | |
| <title>glthread_unmarshal_batch (39,239,594 samples, 0.02%)</title><rect x="815.4" y="613" width="0.2" height="15.0" fill="rgb(247,195,46)" rx="2" ry="2" /> | |
| <text x="818.37" y="623.5" ></text> | |
| </g> | |
| <g > | |
| <title>copy_msghdr_from_user (26,608,300 samples, 0.01%)</title><rect x="508.3" y="517" width="0.2" height="15.0" fill="rgb(240,161,38)" rx="2" ry="2" /> | |
| <text x="511.34" y="527.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_lookup_or_create_texture (134,321,217 samples, 0.07%)</title><rect x="845.1" y="597" width="0.9" height="15.0" fill="rgb(235,140,33)" rx="2" ry="2" /> | |
| <text x="848.08" y="607.5" ></text> | |
| </g> | |
| <g > | |
| <title>skb_copy_datagram_iter (19,542,270 samples, 0.01%)</title><rect x="1107.8" y="245" width="0.1" height="15.0" fill="rgb(245,188,45)" rx="2" ry="2" /> | |
| <text x="1110.80" y="255.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_lookup_or_create_texture (15,793,969 samples, 0.01%)</title><rect x="1152.1" y="661" width="0.1" height="15.0" fill="rgb(235,140,33)" rx="2" ry="2" /> | |
| <text x="1155.08" y="671.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_marshal_MapBufferRange (876,173,031 samples, 0.49%)</title><rect x="1150.8" y="757" width="5.7" height="15.0" fill="rgb(219,65,15)" rx="2" ry="2" /> | |
| <text x="1153.77" y="767.5" ></text> | |
| </g> | |
| <g > | |
| <title>si_set_mutable_tex_desc_fields (341,137,517 samples, 0.19%)</title><rect x="225.0" y="725" width="2.3" height="15.0" fill="rgb(226,97,23)" rx="2" ry="2" /> | |
| <text x="228.04" y="735.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_update_state_locked (26,116,229 samples, 0.01%)</title><rect x="810.7" y="565" width="0.2" height="15.0" fill="rgb(214,43,10)" rx="2" ry="2" /> | |
| <text x="813.73" y="575.5" ></text> | |
| </g> | |
| <g > | |
| <title>redeclipse:gl0 (25,195,984,784 samples, 13.96%)</title><rect x="337.4" y="901" width="164.7" height="15.0" fill="rgb(244,179,43)" rx="2" ry="2" /> | |
| <text x="340.42" y="911.5" >redeclipse:gl0</text> | |
| </g> | |
| <g > | |
| <title>cnd_signal (155,812,708 samples, 0.09%)</title><rect x="1173.4" y="725" width="1.0" height="15.0" fill="rgb(232,125,30)" rx="2" ry="2" /> | |
| <text x="1176.39" y="735.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_draw_arrays.part.0 (256,574,521 samples, 0.14%)</title><rect x="1058.8" y="677" width="1.7" height="15.0" fill="rgb(227,104,25)" rx="2" ry="2" /> | |
| <text x="1061.79" y="687.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_wait_query (926,625,736 samples, 0.51%)</title><rect x="1159.5" y="741" width="6.1" height="15.0" fill="rgb(217,55,13)" rx="2" ry="2" /> | |
| <text x="1162.54" y="751.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_update_framebuffer (87,536,273 samples, 0.05%)</title><rect x="1002.1" y="613" width="0.6" height="15.0" fill="rgb(218,62,14)" rx="2" ry="2" /> | |
| <text x="1005.14" y="623.5" ></text> | |
| </g> | |
| <g > | |
| <title>pthread_cond_signal@@GLIBC_2.17 (34,058,774 samples, 0.02%)</title><rect x="877.4" y="517" width="0.3" height="15.0" fill="rgb(232,126,30)" rx="2" ry="2" /> | |
| <text x="880.45" y="527.5" ></text> | |
| </g> | |
| <g > | |
| <title>tc_draw_vbo (56,624,484 samples, 0.03%)</title><rect x="1000.9" y="645" width="0.4" height="15.0" fill="rgb(207,9,2)" rx="2" ry="2" /> | |
| <text x="1003.94" y="655.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_draw_arrays.part.0 (21,766,368 samples, 0.01%)</title><rect x="1153.5" y="677" width="0.1" height="15.0" fill="rgb(227,104,25)" rx="2" ry="2" /> | |
| <text x="1156.47" y="687.5" ></text> | |
| </g> | |
| <g > | |
| <title>amdgpu_drm_ioctl (94,158,752 samples, 0.05%)</title><rect x="895.8" y="389" width="0.6" height="15.0" fill="rgb(246,190,45)" rx="2" ry="2" /> | |
| <text x="898.83" y="399.5" ></text> | |
| </g> | |
| <g > | |
| <title>cso_set_vertex_elements (36,363,407 samples, 0.02%)</title><rect x="999.5" y="597" width="0.3" height="15.0" fill="rgb(238,152,36)" rx="2" ry="2" /> | |
| <text x="1002.54" y="607.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_use_program (353,887,978 samples, 0.20%)</title><rect x="1145.2" y="661" width="2.3" height="15.0" fill="rgb(235,141,33)" rx="2" ry="2" /> | |
| <text x="1148.16" y="671.5" ></text> | |
| </g> | |
| <g > | |
| <title>[redeclipse] (8,912,016,653 samples, 4.94%)</title><rect x="750.6" y="661" width="58.2" height="15.0" fill="rgb(253,222,53)" rx="2" ry="2" /> | |
| <text x="753.58" y="671.5" >[redec..</text> | |
| </g> | |
| <g > | |
| <title>util_queue_add_job_locked.part.0 (107,014,845 samples, 0.06%)</title><rect x="976.6" y="693" width="0.7" height="15.0" fill="rgb(243,177,42)" rx="2" ry="2" /> | |
| <text x="979.62" y="703.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_marshal_MapBufferRange (967,622,063 samples, 0.54%)</title><rect x="809.4" y="661" width="6.3" height="15.0" fill="rgb(219,65,15)" rx="2" ry="2" /> | |
| <text x="812.38" y="671.5" ></text> | |
| </g> | |
| <g > | |
| <title>drm_ioctl_kernel (21,125,875 samples, 0.01%)</title><rect x="900.6" y="357" width="0.1" height="15.0" fill="rgb(226,101,24)" rx="2" ry="2" /> | |
| <text x="903.60" y="367.5" ></text> | |
| </g> | |
| <g > | |
| <title>__aarch64_swp4_acq_rel (20,974,294 samples, 0.01%)</title><rect x="337.4" y="821" width="0.2" height="15.0" fill="rgb(205,3,0)" rx="2" ry="2" /> | |
| <text x="340.42" y="831.5" ></text> | |
| </g> | |
| <g > | |
| <title>si_emit_cb_render_state (47,032,996 samples, 0.03%)</title><rect x="176.5" y="757" width="0.3" height="15.0" fill="rgb(225,95,22)" rx="2" ry="2" /> | |
| <text x="179.45" y="767.5" ></text> | |
| </g> | |
| <g > | |
| <title>el0_svc (41,517,751 samples, 0.02%)</title><rect x="16.5" y="709" width="0.3" height="15.0" fill="rgb(244,183,43)" rx="2" ry="2" /> | |
| <text x="19.48" y="719.5" ></text> | |
| </g> | |
| <g > | |
| <title>do_futex (79,082,326 samples, 0.04%)</title><rect x="979.8" y="533" width="0.5" height="15.0" fill="rgb(245,184,44)" rx="2" ry="2" /> | |
| <text x="982.83" y="543.5" ></text> | |
| </g> | |
| <g > | |
| <title>__strlen_mte (27,657,718 samples, 0.02%)</title><rect x="970.3" y="677" width="0.2" height="15.0" fill="rgb(227,102,24)" rx="2" ry="2" /> | |
| <text x="973.32" y="687.5" ></text> | |
| </g> | |
| <g > | |
| <title>util_queue_add_job_locked.part.0 (21,702,116 samples, 0.01%)</title><rect x="883.5" y="661" width="0.1" height="15.0" fill="rgb(243,177,42)" rx="2" ry="2" /> | |
| <text x="886.51" y="671.5" ></text> | |
| </g> | |
| <g > | |
| <title>ov_read_filter (854,105,768 samples, 0.47%)</title><rect x="22.0" y="741" width="5.6" height="15.0" fill="rgb(222,79,19)" rx="2" ry="2" /> | |
| <text x="24.98" y="751.5" ></text> | |
| </g> | |
| <g > | |
| <title>si_update_last_vgt_stage_state (266,839,785 samples, 0.15%)</title><rect x="63.0" y="757" width="1.7" height="15.0" fill="rgb(219,66,15)" rx="2" ry="2" /> | |
| <text x="65.99" y="767.5" ></text> | |
| </g> | |
| <g > | |
| <title>__alloc_skb (32,144,977 samples, 0.02%)</title><rect x="541.8" y="421" width="0.2" height="15.0" fill="rgb(226,100,23)" rx="2" ry="2" /> | |
| <text x="544.82" y="431.5" ></text> | |
| </g> | |
| <g > | |
| <title>void si_draw_vbo< (3,529,791,314 samples, 1.96%)</title><rect x="160.1" y="773" width="23.0" height="15.0" fill="rgb(226,101,24)" rx="2" ry="2" /> | |
| <text x="163.06" y="783.5" >v..</text> | |
| </g> | |
| <g > | |
| <title>unmap_buffer (18,977,079 samples, 0.01%)</title><rect x="477.0" y="789" width="0.1" height="15.0" fill="rgb(233,131,31)" rx="2" ry="2" /> | |
| <text x="479.97" y="799.5" ></text> | |
| </g> | |
| <g > | |
| <title>__fdget (17,501,480 samples, 0.01%)</title><rect x="188.5" y="565" width="0.2" height="15.0" fill="rgb(214,41,10)" rx="2" ry="2" /> | |
| <text x="191.55" y="575.5" ></text> | |
| </g> | |
| <g > | |
| <title>validate_uniform_parameters (23,359,178 samples, 0.01%)</title><rect x="1091.0" y="661" width="0.1" height="15.0" fill="rgb(234,137,32)" rx="2" ry="2" /> | |
| <text x="1093.99" y="671.5" ></text> | |
| </g> | |
| <g > | |
| <title>tc_call_draw_single (14,911,800,607 samples, 8.26%)</title><rect x="86.0" y="805" width="97.4" height="15.0" fill="rgb(247,193,46)" rx="2" ry="2" /> | |
| <text x="88.98" y="815.5" >tc_call_dra..</text> | |
| </g> | |
| <g > | |
| <title>st_make_bound_images_resident (21,005,324 samples, 0.01%)</title><rect x="995.1" y="613" width="0.2" height="15.0" fill="rgb(241,167,40)" rx="2" ry="2" /> | |
| <text x="998.12" y="623.5" ></text> | |
| </g> | |
| <g > | |
| <title>[redeclipse] (75,145,624,352 samples, 41.62%)</title><rect x="583.6" y="757" width="491.2" height="15.0" fill="rgb(253,222,53)" rx="2" ry="2" /> | |
| <text x="586.63" y="767.5" >[redeclipse]</text> | |
| </g> | |
| <g > | |
| <title>[libz.so.1.3] (403,608,720 samples, 0.22%)</title><rect x="1156.8" y="741" width="2.6" height="15.0" fill="rgb(230,116,27)" rx="2" ry="2" /> | |
| <text x="1159.80" y="751.5" ></text> | |
| </g> | |
| <g > | |
| <title>[libSDL2-2.0.so.0.3000.0] (19,349,580 samples, 0.01%)</title><rect x="544.7" y="789" width="0.1" height="15.0" fill="rgb(227,102,24)" rx="2" ry="2" /> | |
| <text x="547.65" y="799.5" ></text> | |
| </g> | |
| <g > | |
| <title>el0t_64_sync (25,578,368 samples, 0.01%)</title><rect x="876.3" y="469" width="0.2" height="15.0" fill="rgb(217,56,13)" rx="2" ry="2" /> | |
| <text x="879.31" y="479.5" ></text> | |
| </g> | |
| <g > | |
| <title>tc_call_bind_blend_state (103,307,547 samples, 0.06%)</title><rect x="50.0" y="805" width="0.6" height="15.0" fill="rgb(230,115,27)" rx="2" ry="2" /> | |
| <text x="52.96" y="815.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_access_flags_to_transfer_flags (19,133,882 samples, 0.01%)</title><rect x="1036.0" y="693" width="0.1" height="15.0" fill="rgb(248,200,47)" rx="2" ry="2" /> | |
| <text x="1039.00" y="703.5" ></text> | |
| </g> | |
| <g > | |
| <title>el0t_64_sync_handler (106,770,819 samples, 0.06%)</title><rect x="509.8" y="645" width="0.7" height="15.0" fill="rgb(211,32,7)" rx="2" ry="2" /> | |
| <text x="512.79" y="655.5" ></text> | |
| </g> | |
| <g > | |
| <title>check_heap_object (22,004,128 samples, 0.01%)</title><rect x="290.3" y="517" width="0.1" height="15.0" fill="rgb(241,165,39)" rx="2" ry="2" /> | |
| <text x="293.26" y="527.5" ></text> | |
| </g> | |
| <g > | |
| <title>invoke_syscall (267,363,786 samples, 0.15%)</title><rect x="1161.2" y="485" width="1.8" height="15.0" fill="rgb(209,18,4)" rx="2" ry="2" /> | |
| <text x="1164.22" y="495.5" ></text> | |
| </g> | |
| <g > | |
| <title>glthread_unmarshal_batch (47,093,796 samples, 0.03%)</title><rect x="784.4" y="117" width="0.3" height="15.0" fill="rgb(247,195,46)" rx="2" ry="2" /> | |
| <text x="787.39" y="127.5" ></text> | |
| </g> | |
| <g > | |
| <title>el0t_64_sync (39,786,367 samples, 0.02%)</title><rect x="11.7" y="597" width="0.2" height="15.0" fill="rgb(217,56,13)" rx="2" ry="2" /> | |
| <text x="14.65" y="607.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_unmarshal_Uniform4fv (136,997,080 samples, 0.08%)</title><rect x="1020.6" y="677" width="0.9" height="15.0" fill="rgb(212,33,8)" rx="2" ry="2" /> | |
| <text x="1023.59" y="687.5" ></text> | |
| </g> | |
| <g > | |
| <title>pthread_cond_signal@@GLIBC_2.17 (30,344,603 samples, 0.02%)</title><rect x="876.3" y="501" width="0.2" height="15.0" fill="rgb(232,126,30)" rx="2" ry="2" /> | |
| <text x="879.28" y="511.5" ></text> | |
| </g> | |
| <g > | |
| <title>__GI_____strtoull_l_internal (67,279,343 samples, 0.04%)</title><rect x="913.0" y="709" width="0.4" height="15.0" fill="rgb(254,226,54)" rx="2" ry="2" /> | |
| <text x="916.00" y="719.5" ></text> | |
| </g> | |
| <g > | |
| <title>ac_prepare_cs_clear_copy_buffer (19,392,544 samples, 0.01%)</title><rect x="80.6" y="709" width="0.1" height="15.0" fill="rgb(235,138,33)" rx="2" ry="2" /> | |
| <text x="83.56" y="719.5" ></text> | |
| </g> | |
| <g > | |
| <title>el0_svc_common.constprop.0 (43,928,057 samples, 0.02%)</title><rect x="10.7" y="693" width="0.3" height="15.0" fill="rgb(224,89,21)" rx="2" ry="2" /> | |
| <text x="13.69" y="703.5" ></text> | |
| </g> | |
| <g > | |
| <title>validate_array_format.constprop.0 (15,834,807 samples, 0.01%)</title><rect x="882.0" y="597" width="0.1" height="15.0" fill="rgb(232,126,30)" rx="2" ry="2" /> | |
| <text x="884.97" y="607.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_validated_drawrangeelements (17,192,768 samples, 0.01%)</title><rect x="794.4" y="229" width="0.1" height="15.0" fill="rgb(230,115,27)" rx="2" ry="2" /> | |
| <text x="797.43" y="239.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_unmarshal_DrawElementsPacked (20,461,495 samples, 0.01%)</title><rect x="1136.4" y="693" width="0.1" height="15.0" fill="rgb(225,92,22)" rx="2" ry="2" /> | |
| <text x="1139.40" y="703.5" ></text> | |
| </g> | |
| <g > | |
| <title>rseq_update_cpu_node_id (30,152,312 samples, 0.02%)</title><rect x="531.3" y="581" width="0.2" height="15.0" fill="rgb(224,88,21)" rx="2" ry="2" /> | |
| <text x="534.35" y="591.5" ></text> | |
| </g> | |
| <g > | |
| <title>futex_wait_setup (43,440,796 samples, 0.02%)</title><rect x="30.2" y="597" width="0.3" height="15.0" fill="rgb(247,195,46)" rx="2" ry="2" /> | |
| <text x="33.20" y="607.5" ></text> | |
| </g> | |
| <g > | |
| <title>el0t_64_sync (69,081,120 samples, 0.04%)</title><rect x="901.7" y="501" width="0.5" height="15.0" fill="rgb(217,56,13)" rx="2" ry="2" /> | |
| <text x="904.72" y="511.5" ></text> | |
| </g> | |
| <g > | |
| <title>el0t_64_sync (37,287,209 samples, 0.02%)</title><rect x="16.9" y="741" width="0.2" height="15.0" fill="rgb(217,56,13)" rx="2" ry="2" /> | |
| <text x="19.88" y="751.5" ></text> | |
| </g> | |
| <g > | |
| <title>drm_syncobj_wait_ioctl (146,207,401 samples, 0.08%)</title><rect x="1161.8" y="405" width="1.0" height="15.0" fill="rgb(221,76,18)" rx="2" ry="2" /> | |
| <text x="1164.82" y="415.5" ></text> | |
| </g> | |
| <g > | |
| <title>el0_svc (165,653,578 samples, 0.09%)</title><rect x="13.4" y="693" width="1.0" height="15.0" fill="rgb(244,183,43)" rx="2" ry="2" /> | |
| <text x="16.36" y="703.5" ></text> | |
| </g> | |
| <g > | |
| <title>__aarch64_ldadd4_acq_rel (390,230,052 samples, 0.22%)</title><rect x="897.4" y="565" width="2.6" height="15.0" fill="rgb(228,108,25)" rx="2" ry="2" /> | |
| <text x="900.41" y="575.5" ></text> | |
| </g> | |
| <g > | |
| <title>st_get_texture_sampler_view_from_stobj (65,693,789 samples, 0.04%)</title><rect x="1062.7" y="597" width="0.4" height="15.0" fill="rgb(211,32,7)" rx="2" ry="2" /> | |
| <text x="1065.66" y="607.5" ></text> | |
| </g> | |
| <g > | |
| <title>wake_up_q (84,565,226 samples, 0.05%)</title><rect x="459.1" y="533" width="0.5" height="15.0" fill="rgb(237,151,36)" rx="2" ry="2" /> | |
| <text x="462.08" y="543.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_draw_arrays.part.0 (354,194,489 samples, 0.20%)</title><rect x="1110.9" y="693" width="2.4" height="15.0" fill="rgb(227,104,25)" rx="2" ry="2" /> | |
| <text x="1113.95" y="703.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_bufferobj_data (69,783,382 samples, 0.04%)</title><rect x="927.0" y="629" width="0.5" height="15.0" fill="rgb(217,57,13)" rx="2" ry="2" /> | |
| <text x="930.03" y="639.5" ></text> | |
| </g> | |
| <g > | |
| <title>slab_free (69,380,812 samples, 0.04%)</title><rect x="75.6" y="773" width="0.5" height="15.0" fill="rgb(249,204,48)" rx="2" ry="2" /> | |
| <text x="78.64" y="783.5" ></text> | |
| </g> | |
| <g > | |
| <title>el0_svc_common.constprop.0 (94,938,892 samples, 0.05%)</title><rect x="509.8" y="597" width="0.7" height="15.0" fill="rgb(224,89,21)" rx="2" ry="2" /> | |
| <text x="512.85" y="607.5" ></text> | |
| </g> | |
| <g > | |
| <title>eventfd_read (17,800,367 samples, 0.01%)</title><rect x="13.0" y="533" width="0.1" height="15.0" fill="rgb(206,6,1)" rx="2" ry="2" /> | |
| <text x="16.00" y="543.5" ></text> | |
| </g> | |
| <g > | |
| <title>el0_svc (84,020,374 samples, 0.05%)</title><rect x="976.7" y="597" width="0.6" height="15.0" fill="rgb(244,183,43)" rx="2" ry="2" /> | |
| <text x="979.74" y="607.5" ></text> | |
| </g> | |
| <g > | |
| <title>__printf_buffer (89,367,067 samples, 0.05%)</title><rect x="1052.0" y="693" width="0.6" height="15.0" fill="rgb(219,68,16)" rx="2" ry="2" /> | |
| <text x="1055.03" y="703.5" ></text> | |
| </g> | |
| <g > | |
| <title>st_prepare_draw (388,612,638 samples, 0.22%)</title><rect x="1061.3" y="645" width="2.6" height="15.0" fill="rgb(214,45,10)" rx="2" ry="2" /> | |
| <text x="1064.33" y="655.5" ></text> | |
| </g> | |
| <g > | |
| <title>el0_svc_common.constprop.0 (377,807,137 samples, 0.21%)</title><rect x="342.2" y="725" width="2.5" height="15.0" fill="rgb(224,89,21)" rx="2" ry="2" /> | |
| <text x="345.24" y="735.5" ></text> | |
| </g> | |
| <g > | |
| <title>do_futex (64,238,043 samples, 0.04%)</title><rect x="1095.4" y="565" width="0.4" height="15.0" fill="rgb(245,184,44)" rx="2" ry="2" /> | |
| <text x="1098.38" y="575.5" ></text> | |
| </g> | |
| <g > | |
| <title>__arm64_sys_futex (65,847,500 samples, 0.04%)</title><rect x="1095.4" y="581" width="0.4" height="15.0" fill="rgb(247,196,47)" rx="2" ry="2" /> | |
| <text x="1098.38" y="591.5" ></text> | |
| </g> | |
| <g > | |
| <title>el0t_64_sync (30,845,615 samples, 0.02%)</title><rect x="1106.2" y="469" width="0.2" height="15.0" fill="rgb(217,56,13)" rx="2" ry="2" /> | |
| <text x="1109.17" y="479.5" ></text> | |
| </g> | |
| <g > | |
| <title>tc_set_framebuffer_state (17,225,564 samples, 0.01%)</title><rect x="988.9" y="629" width="0.1" height="15.0" fill="rgb(244,180,43)" rx="2" ry="2" /> | |
| <text x="991.91" y="639.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_uniform (15,378,300 samples, 0.01%)</title><rect x="1090.6" y="693" width="0.1" height="15.0" fill="rgb(248,201,48)" rx="2" ry="2" /> | |
| <text x="1093.56" y="703.5" ></text> | |
| </g> | |
| <g > | |
| <title>copy_uniform_matrix_to_storage (43,575,645 samples, 0.02%)</title><rect x="1142.6" y="661" width="0.3" height="15.0" fill="rgb(209,20,4)" rx="2" ry="2" /> | |
| <text x="1145.60" y="671.5" ></text> | |
| </g> | |
| <g > | |
| <title>el0t_64_sync (78,555,616 samples, 0.04%)</title><rect x="901.1" y="517" width="0.5" height="15.0" fill="rgb(217,56,13)" rx="2" ry="2" /> | |
| <text x="904.07" y="527.5" ></text> | |
| </g> | |
| <g > | |
| <title>pa_stream_write_ext_free (162,301,903 samples, 0.09%)</title><rect x="15.2" y="805" width="1.0" height="15.0" fill="rgb(234,135,32)" rx="2" ry="2" /> | |
| <text x="18.15" y="815.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_validated_drawrangeelements (78,683,915 samples, 0.04%)</title><rect x="1005.2" y="629" width="0.5" height="15.0" fill="rgb(230,115,27)" rx="2" ry="2" /> | |
| <text x="1008.18" y="639.5" ></text> | |
| </g> | |
| <g > | |
| <title>copy_iovec_from_user (16,438,342 samples, 0.01%)</title><rect x="1106.0" y="277" width="0.1" height="15.0" fill="rgb(207,9,2)" rx="2" ry="2" /> | |
| <text x="1108.96" y="287.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_uniform_matrix (19,342,097 samples, 0.01%)</title><rect x="814.3" y="581" width="0.1" height="15.0" fill="rgb(215,47,11)" rx="2" ry="2" /> | |
| <text x="817.31" y="591.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_update_state_locked (62,570,000 samples, 0.03%)</title><rect x="867.5" y="581" width="0.4" height="15.0" fill="rgb(214,43,10)" rx="2" ry="2" /> | |
| <text x="870.51" y="591.5" ></text> | |
| </g> | |
| <g > | |
| <title>drmIoctl (105,950,067 samples, 0.06%)</title><rect x="900.2" y="533" width="0.7" height="15.0" fill="rgb(251,215,51)" rx="2" ry="2" /> | |
| <text x="903.24" y="543.5" ></text> | |
| </g> | |
| <g > | |
| <title>bind_texture_object (1,010,437,402 samples, 0.56%)</title><rect x="364.4" y="789" width="6.6" height="15.0" fill="rgb(221,73,17)" rx="2" ry="2" /> | |
| <text x="367.35" y="799.5" ></text> | |
| </g> | |
| <g > | |
| <title>el0_svc (15,832,224 samples, 0.01%)</title><rect x="1050.5" y="661" width="0.1" height="15.0" fill="rgb(244,183,43)" rx="2" ry="2" /> | |
| <text x="1053.50" y="671.5" ></text> | |
| </g> | |
| <g > | |
| <title>void si_emit_spi_map<3> (79,526,575 samples, 0.04%)</title><rect x="181.7" y="757" width="0.6" height="15.0" fill="rgb(240,162,38)" rx="2" ry="2" /> | |
| <text x="184.74" y="767.5" ></text> | |
| </g> | |
| <g > | |
| <title>__kmalloc_cache_noprof (30,435,248 samples, 0.02%)</title><rect x="330.0" y="565" width="0.2" height="15.0" fill="rgb(241,167,40)" rx="2" ry="2" /> | |
| <text x="332.95" y="575.5" ></text> | |
| </g> | |
| <g > | |
| <title>bind_texture_object (16,059,812 samples, 0.01%)</title><rect x="1152.4" y="677" width="0.1" height="15.0" fill="rgb(221,73,17)" rx="2" ry="2" /> | |
| <text x="1155.41" y="687.5" ></text> | |
| </g> | |
| <g > | |
| <title>copy_uniform_matrix_to_storage (15,394,279 samples, 0.01%)</title><rect x="1065.8" y="645" width="0.1" height="15.0" fill="rgb(209,20,4)" rx="2" ry="2" /> | |
| <text x="1068.76" y="655.5" ></text> | |
| </g> | |
| <g > | |
| <title>__arm64_sys_futex (250,055,276 samples, 0.14%)</title><rect x="29.0" y="661" width="1.7" height="15.0" fill="rgb(247,196,47)" rx="2" ry="2" /> | |
| <text x="32.02" y="671.5" ></text> | |
| </g> | |
| <g > | |
| <title>update_textures (53,416,495 samples, 0.03%)</title><rect x="811.2" y="565" width="0.3" height="15.0" fill="rgb(232,125,29)" rx="2" ry="2" /> | |
| <text x="814.19" y="575.5" ></text> | |
| </g> | |
| <g > | |
| <title>amdgpu_drm_ioctl (112,294,549 samples, 0.06%)</title><rect x="537.2" y="501" width="0.7" height="15.0" fill="rgb(246,190,45)" rx="2" ry="2" /> | |
| <text x="540.21" y="511.5" ></text> | |
| </g> | |
| <g > | |
| <title>el0_svc (479,844,058 samples, 0.27%)</title><rect x="337.9" y="725" width="3.2" height="15.0" fill="rgb(244,183,43)" rx="2" ry="2" /> | |
| <text x="340.93" y="735.5" ></text> | |
| </g> | |
| <g > | |
| <title>amdgpu_lookup_buffer (76,647,022 samples, 0.04%)</title><rect x="243.1" y="757" width="0.5" height="15.0" fill="rgb(216,54,13)" rx="2" ry="2" /> | |
| <text x="246.07" y="767.5" ></text> | |
| </g> | |
| <g > | |
| <title>strchr (16,921,587 samples, 0.01%)</title><rect x="817.6" y="661" width="0.1" height="15.0" fill="rgb(237,147,35)" rx="2" ry="2" /> | |
| <text x="820.58" y="671.5" ></text> | |
| </g> | |
| <g > | |
| <title>__GI___ioctl (336,764,690 samples, 0.19%)</title><rect x="1161.2" y="581" width="2.2" height="15.0" fill="rgb(232,128,30)" rx="2" ry="2" /> | |
| <text x="1164.15" y="591.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_unmarshal_VertexAttrib4Nubv (46,600,407 samples, 0.03%)</title><rect x="951.7" y="645" width="0.3" height="15.0" fill="rgb(245,184,44)" rx="2" ry="2" /> | |
| <text x="954.72" y="655.5" ></text> | |
| </g> | |
| <g > | |
| <title>ovl_i_path_real (35,426,709 samples, 0.02%)</title><rect x="1183.4" y="501" width="0.2" height="15.0" fill="rgb(232,127,30)" rx="2" ry="2" /> | |
| <text x="1186.36" y="511.5" ></text> | |
| </g> | |
| <g > | |
| <title>[libSDL2-2.0.so.0.3000.0] (208,926,904 samples, 0.12%)</title><rect x="10.0" y="853" width="1.4" height="15.0" fill="rgb(227,102,24)" rx="2" ry="2" /> | |
| <text x="13.00" y="863.5" ></text> | |
| </g> | |
| <g > | |
| <title>glthread_unmarshal_batch (131,698,025 samples, 0.07%)</title><rect x="799.4" y="421" width="0.9" height="15.0" fill="rgb(247,195,46)" rx="2" ry="2" /> | |
| <text x="802.44" y="431.5" ></text> | |
| </g> | |
| <g > | |
| <title>ww_mutex_lock_interruptible (239,059,638 samples, 0.13%)</title><rect x="283.1" y="533" width="1.5" height="15.0" fill="rgb(248,202,48)" rx="2" ry="2" /> | |
| <text x="286.05" y="543.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_UnmapBuffer (31,122,105 samples, 0.02%)</title><rect x="948.3" y="629" width="0.2" height="15.0" fill="rgb(207,10,2)" rx="2" ry="2" /> | |
| <text x="951.27" y="639.5" ></text> | |
| </g> | |
| <g > | |
| <title>___sys_recvmsg (166,167,827 samples, 0.09%)</title><rect x="1107.1" y="341" width="1.1" height="15.0" fill="rgb(238,153,36)" rx="2" ry="2" /> | |
| <text x="1110.07" y="351.5" ></text> | |
| </g> | |
| <g > | |
| <title>__libc_calloc (16,589,262 samples, 0.01%)</title><rect x="1089.6" y="597" width="0.1" height="15.0" fill="rgb(205,4,0)" rx="2" ry="2" /> | |
| <text x="1092.60" y="607.5" ></text> | |
| </g> | |
| <g > | |
| <title>tc_buffer_subdata.part.0 (28,206,078 samples, 0.02%)</title><rect x="1104.6" y="693" width="0.2" height="15.0" fill="rgb(231,120,28)" rx="2" ry="2" /> | |
| <text x="1107.61" y="703.5" ></text> | |
| </g> | |
| <g > | |
| <title>__aarch64_cas4_sync (50,550,777 samples, 0.03%)</title><rect x="1151.2" y="709" width="0.4" height="15.0" fill="rgb(253,222,53)" rx="2" ry="2" /> | |
| <text x="1154.22" y="719.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_unmarshal_BeginQuery (71,617,090 samples, 0.04%)</title><rect x="1097.1" y="709" width="0.5" height="15.0" fill="rgb(241,166,39)" rx="2" ry="2" /> | |
| <text x="1100.12" y="719.5" ></text> | |
| </g> | |
| <g > | |
| <title>validate_uniform_parameters (128,070,800 samples, 0.07%)</title><rect x="463.5" y="757" width="0.8" height="15.0" fill="rgb(234,137,32)" rx="2" ry="2" /> | |
| <text x="466.48" y="767.5" ></text> | |
| </g> | |
| <g > | |
| <title>void st_update_array_impl< (102,548,753 samples, 0.06%)</title><rect x="450.7" y="741" width="0.7" height="15.0" fill="rgb(217,56,13)" rx="2" ry="2" /> | |
| <text x="453.71" y="751.5" ></text> | |
| </g> | |
| <g > | |
| <title>st_update_vp (39,056,295 samples, 0.02%)</title><rect x="1008.2" y="613" width="0.2" height="15.0" fill="rgb(254,227,54)" rx="2" ry="2" /> | |
| <text x="1011.19" y="623.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_update_state_locked (193,954,956 samples, 0.11%)</title><rect x="1080.0" y="661" width="1.3" height="15.0" fill="rgb(214,43,10)" rx="2" ry="2" /> | |
| <text x="1083.01" y="671.5" ></text> | |
| </g> | |
| <g > | |
| <title>__arm64_sys_futex (51,588,547 samples, 0.03%)</title><rect x="35.1" y="693" width="0.3" height="15.0" fill="rgb(247,196,47)" rx="2" ry="2" /> | |
| <text x="38.06" y="703.5" ></text> | |
| </g> | |
| <g > | |
| <title>update_shader_samplers (124,150,740 samples, 0.07%)</title><rect x="871.5" y="581" width="0.8" height="15.0" fill="rgb(229,113,27)" rx="2" ry="2" /> | |
| <text x="874.52" y="591.5" ></text> | |
| </g> | |
| <g > | |
| <title>si_emit_compute_shader_pointers (32,906,458 samples, 0.02%)</title><rect x="81.1" y="677" width="0.2" height="15.0" fill="rgb(224,91,21)" rx="2" ry="2" /> | |
| <text x="84.10" y="687.5" ></text> | |
| </g> | |
| <g > | |
| <title>pa_cond_signal (40,813,938 samples, 0.02%)</title><rect x="11.6" y="645" width="0.3" height="15.0" fill="rgb(251,213,51)" rx="2" ry="2" /> | |
| <text x="14.65" y="655.5" ></text> | |
| </g> | |
| <g > | |
| <title>st_get_texture_sampler_view_from_stobj (623,721,268 samples, 0.35%)</title><rect x="1128.3" y="613" width="4.1" height="15.0" fill="rgb(211,32,7)" rx="2" ry="2" /> | |
| <text x="1131.32" y="623.5" ></text> | |
| </g> | |
| <g > | |
| <title>[libxcb.so.1.1.0] (173,012,596 samples, 0.10%)</title><rect x="503.2" y="693" width="1.1" height="15.0" fill="rgb(226,98,23)" rx="2" ry="2" /> | |
| <text x="506.19" y="703.5" ></text> | |
| </g> | |
| <g > | |
| <title>amdgpu_cs_check_space (54,335,858 samples, 0.03%)</title><rect x="173.3" y="757" width="0.4" height="15.0" fill="rgb(239,157,37)" rx="2" ry="2" /> | |
| <text x="176.33" y="767.5" ></text> | |
| </g> | |
| <g > | |
| <title>cso_set_vertex_elements (67,336,067 samples, 0.04%)</title><rect x="1015.4" y="581" width="0.4" height="15.0" fill="rgb(238,152,36)" rx="2" ry="2" /> | |
| <text x="1018.37" y="591.5" ></text> | |
| </g> | |
| <g > | |
| <title>glthread_unmarshal_batch (1,897,553,575 samples, 1.05%)</title><rect x="1055.9" y="709" width="12.4" height="15.0" fill="rgb(247,195,46)" rx="2" ry="2" /> | |
| <text x="1058.88" y="719.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_active_program (98,353,877 samples, 0.05%)</title><rect x="478.1" y="773" width="0.6" height="15.0" fill="rgb(228,107,25)" rx="2" ry="2" /> | |
| <text x="481.07" y="783.5" ></text> | |
| </g> | |
| <g > | |
| <title>sock_def_readable (63,290,530 samples, 0.04%)</title><rect x="542.1" y="453" width="0.4" height="15.0" fill="rgb(216,54,13)" rx="2" ry="2" /> | |
| <text x="545.07" y="463.5" ></text> | |
| </g> | |
| <g > | |
| <title>tc_add_draw_single_call (30,026,064 samples, 0.02%)</title><rect x="944.4" y="613" width="0.2" height="15.0" fill="rgb(214,45,10)" rx="2" ry="2" /> | |
| <text x="947.45" y="623.5" ></text> | |
| </g> | |
| <g > | |
| <title>si_clear_buffer (213,957,803 samples, 0.12%)</title><rect x="80.5" y="741" width="1.4" height="15.0" fill="rgb(216,54,12)" rx="2" ry="2" /> | |
| <text x="83.47" y="751.5" ></text> | |
| </g> | |
| <g > | |
| <title>inode_permission.part.0 (24,563,491 samples, 0.01%)</title><rect x="1184.2" y="469" width="0.1" height="15.0" fill="rgb(218,63,15)" rx="2" ry="2" /> | |
| <text x="1187.18" y="479.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_validated_drawrangeelements (69,466,470 samples, 0.04%)</title><rect x="869.6" y="597" width="0.5" height="15.0" fill="rgb(230,115,27)" rx="2" ry="2" /> | |
| <text x="872.64" y="607.5" ></text> | |
| </g> | |
| <g > | |
| <title>strcspn (50,628,028 samples, 0.03%)</title><rect x="800.4" y="453" width="0.3" height="15.0" fill="rgb(218,61,14)" rx="2" ry="2" /> | |
| <text x="803.41" y="463.5" ></text> | |
| </g> | |
| <g > | |
| <title>[libGLdispatch.so.0.0.0] (19,919,186 samples, 0.01%)</title><rect x="557.3" y="757" width="0.1" height="15.0" fill="rgb(209,20,4)" rx="2" ry="2" /> | |
| <text x="560.27" y="767.5" ></text> | |
| </g> | |
| <g > | |
| <title>util_queue_add_job_locked.part.0 (37,665,030 samples, 0.02%)</title><rect x="956.3" y="677" width="0.2" height="15.0" fill="rgb(243,177,42)" rx="2" ry="2" /> | |
| <text x="959.26" y="687.5" ></text> | |
| </g> | |
| <g > | |
| <title>amdgpu_bo_list_create (2,265,525,505 samples, 1.25%)</title><rect x="290.6" y="565" width="14.8" height="15.0" fill="rgb(225,96,23)" rx="2" ry="2" /> | |
| <text x="293.57" y="575.5" ></text> | |
| </g> | |
| <g > | |
| <title>amdgpu_fence_destroy (42,987,563 samples, 0.02%)</title><rect x="1160.8" y="629" width="0.2" height="15.0" fill="rgb(225,92,22)" rx="2" ry="2" /> | |
| <text x="1163.76" y="639.5" ></text> | |
| </g> | |
| <g > | |
| <title>pthread_cond_signal@@GLIBC_2.17 (23,089,425 samples, 0.01%)</title><rect x="943.3" y="517" width="0.1" height="15.0" fill="rgb(232,126,30)" rx="2" ry="2" /> | |
| <text x="946.28" y="527.5" ></text> | |
| </g> | |
| <g > | |
| <title>tc_buffer_do_flush_region (38,043,839 samples, 0.02%)</title><rect x="948.8" y="597" width="0.2" height="15.0" fill="rgb(224,87,20)" rx="2" ry="2" /> | |
| <text x="951.77" y="607.5" ></text> | |
| </g> | |
| <g > | |
| <title>__aarch64_ldadd4_acq_rel (173,935,594 samples, 0.10%)</title><rect x="241.9" y="741" width="1.1" height="15.0" fill="rgb(228,108,25)" rx="2" ry="2" /> | |
| <text x="244.90" y="751.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_unmarshal_BindTexture (371,346,829 samples, 0.21%)</title><rect x="862.7" y="645" width="2.4" height="15.0" fill="rgb(248,199,47)" rx="2" ry="2" /> | |
| <text x="865.70" y="655.5" ></text> | |
| </g> | |
| <g > | |
| <title>__printf_buffer_write (30,698,165 samples, 0.02%)</title><rect x="970.1" y="677" width="0.2" height="15.0" fill="rgb(220,73,17)" rx="2" ry="2" /> | |
| <text x="973.12" y="687.5" ></text> | |
| </g> | |
| <g > | |
| <title>do_el0_svc (237,997,965 samples, 0.13%)</title><rect x="338.1" y="709" width="1.6" height="15.0" fill="rgb(218,60,14)" rx="2" ry="2" /> | |
| <text x="341.13" y="719.5" ></text> | |
| </g> | |
| <g > | |
| <title>check_heap_object (18,719,588 samples, 0.01%)</title><rect x="541.5" y="405" width="0.1" height="15.0" fill="rgb(241,165,39)" rx="2" ry="2" /> | |
| <text x="544.51" y="415.5" ></text> | |
| </g> | |
| <g > | |
| <title>tc_call_set_constant_buffer (116,409,158 samples, 0.06%)</title><rect x="197.5" y="789" width="0.8" height="15.0" fill="rgb(222,79,18)" rx="2" ry="2" /> | |
| <text x="200.50" y="799.5" ></text> | |
| </g> | |
| <g > | |
| <title>cnd_signal (97,768,995 samples, 0.05%)</title><rect x="1177.6" y="741" width="0.7" height="15.0" fill="rgb(232,125,30)" rx="2" ry="2" /> | |
| <text x="1180.64" y="751.5" ></text> | |
| </g> | |
| <g > | |
| <title>copy_uniforms_to_storage (25,535,832 samples, 0.01%)</title><rect x="462.3" y="757" width="0.2" height="15.0" fill="rgb(250,207,49)" rx="2" ry="2" /> | |
| <text x="465.32" y="767.5" ></text> | |
| </g> | |
| <g > | |
| <title>cso_set_vertex_elements_direct (47,366,314 samples, 0.03%)</title><rect x="875.9" y="549" width="0.3" height="15.0" fill="rgb(222,80,19)" rx="2" ry="2" /> | |
| <text x="878.88" y="559.5" ></text> | |
| </g> | |
| <g > | |
| <title>el0_svc (33,395,420 samples, 0.02%)</title><rect x="447.9" y="581" width="0.2" height="15.0" fill="rgb(244,183,43)" rx="2" ry="2" /> | |
| <text x="450.87" y="591.5" ></text> | |
| </g> | |
| <g > | |
| <title>copy_uniform_matrix_to_storage (110,260,257 samples, 0.06%)</title><rect x="476.0" y="757" width="0.7" height="15.0" fill="rgb(209,20,4)" rx="2" ry="2" /> | |
| <text x="478.97" y="767.5" ></text> | |
| </g> | |
| <g > | |
| <title>__atanf (51,187,070 samples, 0.03%)</title><rect x="1050.1" y="709" width="0.4" height="15.0" fill="rgb(214,41,10)" rx="2" ry="2" /> | |
| <text x="1053.13" y="719.5" ></text> | |
| </g> | |
| <g > | |
| <title>bind_buffer_object (16,508,909 samples, 0.01%)</title><rect x="973.5" y="645" width="0.1" height="15.0" fill="rgb(246,190,45)" rx="2" ry="2" /> | |
| <text x="976.54" y="655.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_bufferobj_map_range (450,983,010 samples, 0.25%)</title><rect x="903.3" y="677" width="3.0" height="15.0" fill="rgb(206,7,1)" rx="2" ry="2" /> | |
| <text x="906.31" y="687.5" ></text> | |
| </g> | |
| <g > | |
| <title>__vsnprintf_internal (263,065,797 samples, 0.15%)</title><rect x="1051.7" y="725" width="1.7" height="15.0" fill="rgb(237,150,35)" rx="2" ry="2" /> | |
| <text x="1054.70" y="735.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_update_texture_state (47,159,531 samples, 0.03%)</title><rect x="1083.7" y="629" width="0.3" height="15.0" fill="rgb(237,148,35)" rx="2" ry="2" /> | |
| <text x="1086.71" y="639.5" ></text> | |
| </g> | |
| <g > | |
| <title>vbo_exec_FlushVertices (66,970,234 samples, 0.04%)</title><rect x="944.6" y="629" width="0.5" height="15.0" fill="rgb(226,100,24)" rx="2" ry="2" /> | |
| <text x="947.65" y="639.5" ></text> | |
| </g> | |
| <g > | |
| <title>void st_update_array_templ< (191,240,735 samples, 0.11%)</title><rect x="1015.3" y="613" width="1.3" height="15.0" fill="rgb(243,178,42)" rx="2" ry="2" /> | |
| <text x="1018.31" y="623.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_unmarshal_DrawArraysInstanced (38,964,137 samples, 0.02%)</title><rect x="782.4" y="69" width="0.3" height="15.0" fill="rgb(209,20,4)" rx="2" ry="2" /> | |
| <text x="785.40" y="79.5" ></text> | |
| </g> | |
| <g > | |
| <title>syscall (80,300,148 samples, 0.04%)</title><rect x="35.0" y="805" width="0.5" height="15.0" fill="rgb(234,136,32)" rx="2" ry="2" /> | |
| <text x="37.98" y="815.5" ></text> | |
| </g> | |
| <g > | |
| <title>__GI___strlen_asimd (19,682,992 samples, 0.01%)</title><rect x="803.2" y="517" width="0.1" height="15.0" fill="rgb(213,41,9)" rx="2" ry="2" /> | |
| <text x="806.16" y="527.5" ></text> | |
| </g> | |
| <g > | |
| <title>si_get_query_result (17,497,312 samples, 0.01%)</title><rect x="1159.8" y="693" width="0.1" height="15.0" fill="rgb(243,175,42)" rx="2" ry="2" /> | |
| <text x="1162.83" y="703.5" ></text> | |
| </g> | |
| <g > | |
| <title>util_queue_thread_func (25,194,860,000 samples, 13.95%)</title><rect x="337.4" y="837" width="164.7" height="15.0" fill="rgb(247,195,46)" rx="2" ry="2" /> | |
| <text x="340.42" y="847.5" >util_queue_thread_func</text> | |
| </g> | |
| <g > | |
| <title>drm_syncobj_array_wait_timeout.constprop.0 (40,478,005 samples, 0.02%)</title><rect x="896.1" y="325" width="0.3" height="15.0" fill="rgb(211,29,7)" rx="2" ry="2" /> | |
| <text x="899.13" y="335.5" ></text> | |
| </g> | |
| <g > | |
| <title>__check_object_size.part.0 (54,425,257 samples, 0.03%)</title><rect x="289.8" y="549" width="0.3" height="15.0" fill="rgb(236,142,34)" rx="2" ry="2" /> | |
| <text x="292.78" y="559.5" ></text> | |
| </g> | |
| <g > | |
| <title>futex_wait (79,082,326 samples, 0.04%)</title><rect x="979.8" y="517" width="0.5" height="15.0" fill="rgb(235,138,33)" rx="2" ry="2" /> | |
| <text x="982.83" y="527.5" ></text> | |
| </g> | |
| <g > | |
| <title>[libGLdispatch.so.0.0.0] (22,373,542 samples, 0.01%)</title><rect x="549.0" y="789" width="0.1" height="15.0" fill="rgb(209,20,4)" rx="2" ry="2" /> | |
| <text x="551.98" y="799.5" ></text> | |
| </g> | |
| <g > | |
| <title>bind_buffer_object (25,978,461 samples, 0.01%)</title><rect x="1097.8" y="677" width="0.2" height="15.0" fill="rgb(246,190,45)" rx="2" ry="2" /> | |
| <text x="1100.83" y="687.5" ></text> | |
| </g> | |
| <g > | |
| <title>buffer_data_error (17,361,311 samples, 0.01%)</title><rect x="1172.0" y="709" width="0.2" height="15.0" fill="rgb(213,38,9)" rx="2" ry="2" /> | |
| <text x="1175.04" y="719.5" ></text> | |
| </g> | |
| <g > | |
| <title>drm_sched_entity_push_job (227,520,499 samples, 0.13%)</title><rect x="310.8" y="565" width="1.5" height="15.0" fill="rgb(219,64,15)" rx="2" ry="2" /> | |
| <text x="313.78" y="575.5" ></text> | |
| </g> | |
| <g > | |
| <title>__GI___libc_write (46,184,315 samples, 0.03%)</title><rect x="15.2" y="741" width="0.3" height="15.0" fill="rgb(217,57,13)" rx="2" ry="2" /> | |
| <text x="18.15" y="751.5" ></text> | |
| </g> | |
| <g > | |
| <title>tc_batch_execute (1,211,401,020 samples, 0.67%)</title><rect x="39.3" y="805" width="7.9" height="15.0" fill="rgb(249,205,49)" rx="2" ry="2" /> | |
| <text x="42.31" y="815.5" ></text> | |
| </g> | |
| <g > | |
| <title>void st_update_array_impl< (50,583,837 samples, 0.03%)</title><rect x="999.0" y="629" width="0.3" height="15.0" fill="rgb(217,56,13)" rx="2" ry="2" /> | |
| <text x="1001.97" y="639.5" ></text> | |
| </g> | |
| <g > | |
| <title>__aarch64_ldadd4_acq_rel (92,295,748 samples, 0.05%)</title><rect x="846.0" y="597" width="0.6" height="15.0" fill="rgb(228,108,25)" rx="2" ry="2" /> | |
| <text x="849.00" y="607.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_update_texture_state (18,460,764 samples, 0.01%)</title><rect x="812.4" y="533" width="0.1" height="15.0" fill="rgb(237,148,35)" rx="2" ry="2" /> | |
| <text x="815.40" y="543.5" ></text> | |
| </g> | |
| <g > | |
| <title>si_emit_one_scissor.isra.0 (28,483,657 samples, 0.02%)</title><rect x="150.8" y="773" width="0.2" height="15.0" fill="rgb(248,199,47)" rx="2" ry="2" /> | |
| <text x="153.79" y="783.5" ></text> | |
| </g> | |
| <g > | |
| <title>bind_texture_object (17,540,072 samples, 0.01%)</title><rect x="810.5" y="581" width="0.1" height="15.0" fill="rgb(221,73,17)" rx="2" ry="2" /> | |
| <text x="813.53" y="591.5" ></text> | |
| </g> | |
| <g > | |
| <title>delete_renderbuffer (18,040,047 samples, 0.01%)</title><rect x="1089.4" y="629" width="0.1" height="15.0" fill="rgb(219,67,16)" rx="2" ry="2" /> | |
| <text x="1092.36" y="639.5" ></text> | |
| </g> | |
| <g > | |
| <title>ov_read_filter (35,445,252 samples, 0.02%)</title><rect x="27.3" y="725" width="0.3" height="15.0" fill="rgb(222,79,19)" rx="2" ry="2" /> | |
| <text x="30.33" y="735.5" ></text> | |
| </g> | |
| <g > | |
| <title>invoke_syscall (115,417,705 samples, 0.06%)</title><rect x="503.4" y="565" width="0.8" height="15.0" fill="rgb(209,18,4)" rx="2" ry="2" /> | |
| <text x="506.43" y="575.5" ></text> | |
| </g> | |
| <g > | |
| <title>vbo_exec_FlushVertices (22,025,056 samples, 0.01%)</title><rect x="1153.2" y="661" width="0.2" height="15.0" fill="rgb(226,100,24)" rx="2" ry="2" /> | |
| <text x="1156.22" y="671.5" ></text> | |
| </g> | |
| <g > | |
| <title>void si_emit_spi_map<1> (31,184,686 samples, 0.02%)</title><rect x="180.8" y="757" width="0.2" height="15.0" fill="rgb(253,221,53)" rx="2" ry="2" /> | |
| <text x="183.84" y="767.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_unmarshal_BindBuffer (80,004,448 samples, 0.04%)</title><rect x="347.4" y="789" width="0.5" height="15.0" fill="rgb(223,86,20)" rx="2" ry="2" /> | |
| <text x="350.41" y="799.5" ></text> | |
| </g> | |
| <g > | |
| <title>[redeclipse] (3,301,626,801 samples, 1.83%)</title><rect x="771.8" y="293" width="21.6" height="15.0" fill="rgb(253,222,53)" rx="2" ry="2" /> | |
| <text x="774.83" y="303.5" >[..</text> | |
| </g> | |
| <g > | |
| <title>_mesa_glthread_finish (36,335,467 samples, 0.02%)</title><rect x="791.4" y="229" width="0.2" height="15.0" fill="rgb(209,22,5)" rx="2" ry="2" /> | |
| <text x="794.39" y="239.5" ></text> | |
| </g> | |
| <g > | |
| <title>update_program (41,500,797 samples, 0.02%)</title><rect x="382.3" y="725" width="0.3" height="15.0" fill="rgb(236,145,34)" rx="2" ry="2" /> | |
| <text x="385.33" y="735.5" ></text> | |
| </g> | |
| <g > | |
| <title>gup_fast_fallback (71,422,767 samples, 0.04%)</title><rect x="342.7" y="613" width="0.5" height="15.0" fill="rgb(242,172,41)" rx="2" ry="2" /> | |
| <text x="345.74" y="623.5" ></text> | |
| </g> | |
| <g > | |
| <title>el0t_64_sync (387,087,435 samples, 0.21%)</title><rect x="249.1" y="757" width="2.5" height="15.0" fill="rgb(217,56,13)" rx="2" ry="2" /> | |
| <text x="252.12" y="767.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_marshal_VertexAttrib4Nubv (19,441,746 samples, 0.01%)</title><rect x="956.8" y="709" width="0.1" height="15.0" fill="rgb(211,30,7)" rx="2" ry="2" /> | |
| <text x="959.78" y="719.5" ></text> | |
| </g> | |
| <g > | |
| <title>util_sparse_array_get (18,467,415 samples, 0.01%)</title><rect x="1144.8" y="645" width="0.1" height="15.0" fill="rgb(241,168,40)" rx="2" ry="2" /> | |
| <text x="1147.78" y="655.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_unmarshal_BlendFunc (34,382,050 samples, 0.02%)</title><rect x="926.8" y="661" width="0.2" height="15.0" fill="rgb(232,127,30)" rx="2" ry="2" /> | |
| <text x="929.81" y="671.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_update_texture_state (438,441,725 samples, 0.24%)</title><rect x="1115.1" y="645" width="2.9" height="15.0" fill="rgb(237,148,35)" rx="2" ry="2" /> | |
| <text x="1118.14" y="655.5" ></text> | |
| </g> | |
| <g > | |
| <title>invoke_syscall (67,370,401 samples, 0.04%)</title><rect x="1095.4" y="597" width="0.4" height="15.0" fill="rgb(209,18,4)" rx="2" ry="2" /> | |
| <text x="1098.38" y="607.5" ></text> | |
| </g> | |
| <g > | |
| <title>cso_set_depth_stencil_alpha (19,935,101 samples, 0.01%)</title><rect x="994.4" y="597" width="0.1" height="15.0" fill="rgb(254,227,54)" rx="2" ry="2" /> | |
| <text x="997.42" y="607.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_DrawArraysInstancedBaseInstance (81,654,130 samples, 0.05%)</title><rect x="1058.3" y="677" width="0.5" height="15.0" fill="rgb(243,178,42)" rx="2" ry="2" /> | |
| <text x="1061.26" y="687.5" ></text> | |
| </g> | |
| <g > | |
| <title>st_upload_constants (779,971,885 samples, 0.43%)</title><rect x="413.3" y="725" width="5.1" height="15.0" fill="rgb(238,154,36)" rx="2" ry="2" /> | |
| <text x="416.27" y="735.5" ></text> | |
| </g> | |
| <g > | |
| <title>__aarch64_cas4_sync (19,379,769 samples, 0.01%)</title><rect x="809.7" y="613" width="0.1" height="15.0" fill="rgb(253,222,53)" rx="2" ry="2" /> | |
| <text x="812.65" y="623.5" ></text> | |
| </g> | |
| <g > | |
| <title>copy_uniform_matrix_to_storage (18,466,657 samples, 0.01%)</title><rect x="476.4" y="741" width="0.1" height="15.0" fill="rgb(209,20,4)" rx="2" ry="2" /> | |
| <text x="479.36" y="751.5" ></text> | |
| </g> | |
| <g > | |
| <title>__aarch64_ldadd4_acq_rel (82,005,480 samples, 0.05%)</title><rect x="978.5" y="693" width="0.5" height="15.0" fill="rgb(228,108,25)" rx="2" ry="2" /> | |
| <text x="981.51" y="703.5" ></text> | |
| </g> | |
| <g > | |
| <title>_raw_spin_unlock_irq (19,642,528 samples, 0.01%)</title><rect x="17.1" y="613" width="0.2" height="15.0" fill="rgb(215,47,11)" rx="2" ry="2" /> | |
| <text x="20.14" y="623.5" ></text> | |
| </g> | |
| <g > | |
| <title>el0t_64_sync (248,567,013 samples, 0.14%)</title><rect x="188.4" y="677" width="1.6" height="15.0" fill="rgb(217,56,13)" rx="2" ry="2" /> | |
| <text x="191.40" y="687.5" ></text> | |
| </g> | |
| <g > | |
| <title>bind_texture_object (401,181,530 samples, 0.22%)</title><rect x="368.3" y="773" width="2.7" height="15.0" fill="rgb(221,73,17)" rx="2" ry="2" /> | |
| <text x="371.33" y="783.5" ></text> | |
| </g> | |
| <g > | |
| <title>tc_set_sampler_views (77,241,103 samples, 0.04%)</title><rect x="874.4" y="565" width="0.5" height="15.0" fill="rgb(250,209,50)" rx="2" ry="2" /> | |
| <text x="877.39" y="575.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_buffer_unmap_all_mappings (24,390,604 samples, 0.01%)</title><rect x="372.5" y="757" width="0.2" height="15.0" fill="rgb(205,4,1)" rx="2" ry="2" /> | |
| <text x="375.51" y="767.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_validated_drawrangeelements (16,800,453 samples, 0.01%)</title><rect x="847.4" y="597" width="0.1" height="15.0" fill="rgb(230,115,27)" rx="2" ry="2" /> | |
| <text x="850.38" y="607.5" ></text> | |
| </g> | |
| <g > | |
| <title>update_single_program_texture (110,322,779 samples, 0.06%)</title><rect x="933.3" y="565" width="0.7" height="15.0" fill="rgb(241,165,39)" rx="2" ry="2" /> | |
| <text x="936.29" y="575.5" ></text> | |
| </g> | |
| <g > | |
| <title>pthread_cond_broadcast@@GLIBC_2.17 (40,813,938 samples, 0.02%)</title><rect x="11.6" y="613" width="0.3" height="15.0" fill="rgb(236,144,34)" rx="2" ry="2" /> | |
| <text x="14.65" y="623.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_uniform (34,438,127 samples, 0.02%)</title><rect x="1090.7" y="677" width="0.2" height="15.0" fill="rgb(248,201,48)" rx="2" ry="2" /> | |
| <text x="1093.69" y="687.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_VertexAttrib4Nubv (15,360,184 samples, 0.01%)</title><rect x="881.3" y="613" width="0.1" height="15.0" fill="rgb(231,121,29)" rx="2" ry="2" /> | |
| <text x="884.29" y="623.5" ></text> | |
| </g> | |
| <g > | |
| <title>el0t_64_sync_handler (40,380,146 samples, 0.02%)</title><rect x="15.2" y="693" width="0.3" height="15.0" fill="rgb(211,32,7)" rx="2" ry="2" /> | |
| <text x="18.19" y="703.5" ></text> | |
| </g> | |
| <g > | |
| <title>set_depth_range_no_notify (15,317,550 samples, 0.01%)</title><rect x="847.1" y="597" width="0.1" height="15.0" fill="rgb(206,5,1)" rx="2" ry="2" /> | |
| <text x="850.12" y="607.5" ></text> | |
| </g> | |
| <g > | |
| <title>[redeclipse] (3,478,220,078 samples, 1.93%)</title><rect x="771.5" y="309" width="22.7" height="15.0" fill="rgb(253,222,53)" rx="2" ry="2" /> | |
| <text x="774.46" y="319.5" >[..</text> | |
| </g> | |
| <g > | |
| <title>__rseq_handle_notify_resume (232,436,258 samples, 0.13%)</title><rect x="31.8" y="693" width="1.5" height="15.0" fill="rgb(238,153,36)" rx="2" ry="2" /> | |
| <text x="34.80" y="703.5" ></text> | |
| </g> | |
| <g > | |
| <title>__check_object_size (16,416,473 samples, 0.01%)</title><rect x="1181.9" y="533" width="0.2" height="15.0" fill="rgb(226,98,23)" rx="2" ry="2" /> | |
| <text x="1184.94" y="543.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_update_state_locked (35,796,499 samples, 0.02%)</title><rect x="1083.4" y="645" width="0.3" height="15.0" fill="rgb(214,43,10)" rx="2" ry="2" /> | |
| <text x="1086.45" y="655.5" ></text> | |
| </g> | |
| <g > | |
| <title>map_buffer_range (151,564,279 samples, 0.08%)</title><rect x="816.2" y="661" width="1.0" height="15.0" fill="rgb(244,183,43)" rx="2" ry="2" /> | |
| <text x="819.24" y="671.5" ></text> | |
| </g> | |
| <g > | |
| <title>kvfree (18,212,069 samples, 0.01%)</title><rect x="306.4" y="565" width="0.2" height="15.0" fill="rgb(209,22,5)" rx="2" ry="2" /> | |
| <text x="309.45" y="575.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_unmarshal_DisableVertexAttribArray (32,828,548 samples, 0.02%)</title><rect x="375.7" y="805" width="0.3" height="15.0" fill="rgb(214,45,10)" rx="2" ry="2" /> | |
| <text x="378.74" y="815.5" ></text> | |
| </g> | |
| <g > | |
| <title>consume_skb (44,778,239 samples, 0.02%)</title><rect x="1107.5" y="261" width="0.3" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" /> | |
| <text x="1110.49" y="271.5" ></text> | |
| </g> | |
| <g > | |
| <title>__memcpy_generic (30,688,924 samples, 0.02%)</title><rect x="476.0" y="741" width="0.2" height="15.0" fill="rgb(231,124,29)" rx="2" ry="2" /> | |
| <text x="479.00" y="751.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_update_texture_state (349,839,381 samples, 0.19%)</title><rect x="1115.7" y="629" width="2.3" height="15.0" fill="rgb(237,148,35)" rx="2" ry="2" /> | |
| <text x="1118.71" y="639.5" ></text> | |
| </g> | |
| <g > | |
| <title>filename_lookup (630,298,784 samples, 0.35%)</title><rect x="1182.1" y="565" width="4.1" height="15.0" fill="rgb(216,52,12)" rx="2" ry="2" /> | |
| <text x="1185.08" y="575.5" ></text> | |
| </g> | |
| <g > | |
| <title>drmSyncobjCreate (58,878,465 samples, 0.03%)</title><rect x="38.3" y="741" width="0.4" height="15.0" fill="rgb(224,87,21)" rx="2" ry="2" /> | |
| <text x="41.32" y="751.5" ></text> | |
| </g> | |
| <g > | |
| <title>si_flush_all_queues (18,423,088 samples, 0.01%)</title><rect x="183.7" y="773" width="0.2" height="15.0" fill="rgb(212,36,8)" rx="2" ry="2" /> | |
| <text x="186.73" y="783.5" ></text> | |
| </g> | |
| <g > | |
| <title>do_futex_fence_wait (70,134,079 samples, 0.04%)</title><rect x="884.5" y="613" width="0.5" height="15.0" fill="rgb(230,118,28)" rx="2" ry="2" /> | |
| <text x="887.54" y="623.5" ></text> | |
| </g> | |
| <g > | |
| <title>__rseq_handle_notify_resume (17,526,926 samples, 0.01%)</title><rect x="10.4" y="693" width="0.2" height="15.0" fill="rgb(238,153,36)" rx="2" ry="2" /> | |
| <text x="13.44" y="703.5" ></text> | |
| </g> | |
| <g > | |
| <title>drm_ioctl (83,255,299 samples, 0.05%)</title><rect x="895.9" y="373" width="0.5" height="15.0" fill="rgb(231,121,29)" rx="2" ry="2" /> | |
| <text x="898.89" y="383.5" ></text> | |
| </g> | |
| <g > | |
| <title>__sincosf (70,794,636 samples, 0.04%)</title><rect x="1051.2" y="741" width="0.5" height="15.0" fill="rgb(246,188,45)" rx="2" ry="2" /> | |
| <text x="1054.21" y="751.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_draw_arrays.part.0 (164,603,042 samples, 0.09%)</title><rect x="865.6" y="629" width="1.1" height="15.0" fill="rgb(227,104,25)" rx="2" ry="2" /> | |
| <text x="868.59" y="639.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_lock_context_textures (40,107,419 samples, 0.02%)</title><rect x="379.0" y="741" width="0.3" height="15.0" fill="rgb(229,114,27)" rx="2" ry="2" /> | |
| <text x="382.01" y="751.5" ></text> | |
| </g> | |
| <g > | |
| <title>__GI___futex_abstimed_wait_cancelable64 (57,406,377 samples, 0.03%)</title><rect x="10.3" y="789" width="0.4" height="15.0" fill="rgb(215,48,11)" rx="2" ry="2" /> | |
| <text x="13.28" y="799.5" ></text> | |
| </g> | |
| <g > | |
| <title>st_get_sampler_views (99,536,159 samples, 0.06%)</title><rect x="1062.6" y="613" width="0.7" height="15.0" fill="rgb(224,91,21)" rx="2" ry="2" /> | |
| <text x="1065.64" y="623.5" ></text> | |
| </g> | |
| <g > | |
| <title>vorbis_synthesis_blockin (34,874,051 samples, 0.02%)</title><rect x="27.1" y="693" width="0.2" height="15.0" fill="rgb(225,96,23)" rx="2" ry="2" /> | |
| <text x="30.07" y="703.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_test_framebuffer_completeness (91,944,475 samples, 0.05%)</title><rect x="1080.1" y="613" width="0.6" height="15.0" fill="rgb(229,113,27)" rx="2" ry="2" /> | |
| <text x="1083.09" y="623.5" ></text> | |
| </g> | |
| <g > | |
| <title>__memcpy_generic (38,570,435 samples, 0.02%)</title><rect x="871.0" y="565" width="0.2" height="15.0" fill="rgb(231,124,29)" rx="2" ry="2" /> | |
| <text x="873.98" y="575.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_unmarshal_BufferData (24,116,225 samples, 0.01%)</title><rect x="1172.0" y="725" width="0.2" height="15.0" fill="rgb(243,175,41)" rx="2" ry="2" /> | |
| <text x="1175.00" y="735.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_flush_vertices_for_uniforms (21,071,354 samples, 0.01%)</title><rect x="1141.2" y="645" width="0.2" height="15.0" fill="rgb(211,31,7)" rx="2" ry="2" /> | |
| <text x="1144.24" y="655.5" ></text> | |
| </g> | |
| <g > | |
| <title>el0t_64_sync_handler (29,053,370 samples, 0.02%)</title><rect x="420.2" y="581" width="0.2" height="15.0" fill="rgb(211,32,7)" rx="2" ry="2" /> | |
| <text x="423.20" y="591.5" ></text> | |
| </g> | |
| <g > | |
| <title>gfx6_emit_framebuffer_state (36,543,866 samples, 0.02%)</title><rect x="175.5" y="757" width="0.3" height="15.0" fill="rgb(245,185,44)" rx="2" ry="2" /> | |
| <text x="178.51" y="767.5" ></text> | |
| </g> | |
| <g > | |
| <title>el0_svc (820,525,518 samples, 0.45%)</title><rect x="28.4" y="725" width="5.4" height="15.0" fill="rgb(244,183,43)" rx="2" ry="2" /> | |
| <text x="31.40" y="735.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_DrawElementsBaseVertex (2,115,923,305 samples, 1.17%)</title><rect x="931.3" y="645" width="13.8" height="15.0" fill="rgb(214,41,10)" rx="2" ry="2" /> | |
| <text x="934.25" y="655.5" ></text> | |
| </g> | |
| <g > | |
| <title>__rseq_handle_notify_resume (17,280,460 samples, 0.01%)</title><rect x="331.3" y="693" width="0.1" height="15.0" fill="rgb(238,153,36)" rx="2" ry="2" /> | |
| <text x="334.31" y="703.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_active_program (18,117,995 samples, 0.01%)</title><rect x="949.4" y="629" width="0.1" height="15.0" fill="rgb(228,107,25)" rx="2" ry="2" /> | |
| <text x="952.40" y="639.5" ></text> | |
| </g> | |
| <g > | |
| <title>pa_mainloop_dispatch (16,186,751 samples, 0.01%)</title><rect x="13.2" y="773" width="0.1" height="15.0" fill="rgb(233,129,31)" rx="2" ry="2" /> | |
| <text x="16.19" y="783.5" ></text> | |
| </g> | |
| <g > | |
| <title>cso_set_rasterizer (39,639,347 samples, 0.02%)</title><rect x="1006.1" y="597" width="0.2" height="15.0" fill="rgb(242,172,41)" rx="2" ry="2" /> | |
| <text x="1009.06" y="607.5" ></text> | |
| </g> | |
| <g > | |
| <title>glthread_unmarshal_batch (23,819,650,367 samples, 13.19%)</title><rect x="344.7" y="821" width="155.7" height="15.0" fill="rgb(247,195,46)" rx="2" ry="2" /> | |
| <text x="347.74" y="831.5" >glthread_unmarshal_..</text> | |
| </g> | |
| <g > | |
| <title>____sys_recvmsg (23,559,220 samples, 0.01%)</title><rect x="374.6" y="421" width="0.2" height="15.0" fill="rgb(224,90,21)" rx="2" ry="2" /> | |
| <text x="377.60" y="431.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_BindTexture (258,649,031 samples, 0.14%)</title><rect x="844.3" y="629" width="1.7" height="15.0" fill="rgb(234,136,32)" rx="2" ry="2" /> | |
| <text x="847.29" y="639.5" ></text> | |
| </g> | |
| <g > | |
| <title>invoke_syscall (817,335,296 samples, 0.45%)</title><rect x="1181.4" y="645" width="5.3" height="15.0" fill="rgb(209,18,4)" rx="2" ry="2" /> | |
| <text x="1184.40" y="655.5" ></text> | |
| </g> | |
| <g > | |
| <title>si_update_shader_needs_decompress_mask.part.0 (29,417,501 samples, 0.02%)</title><rect x="237.3" y="789" width="0.2" height="15.0" fill="rgb(227,102,24)" rx="2" ry="2" /> | |
| <text x="240.31" y="799.5" ></text> | |
| </g> | |
| <g > | |
| <title>tc_buffer_unmap (39,378,216 samples, 0.02%)</title><rect x="829.8" y="597" width="0.3" height="15.0" fill="rgb(231,119,28)" rx="2" ry="2" /> | |
| <text x="832.79" y="607.5" ></text> | |
| </g> | |
| <g > | |
| <title>mmput (28,990,851 samples, 0.02%)</title><rect x="1189.6" y="725" width="0.2" height="15.0" fill="rgb(226,99,23)" rx="2" ry="2" /> | |
| <text x="1192.58" y="735.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_VertexAttribPointer (50,607,086 samples, 0.03%)</title><rect x="1092.9" y="677" width="0.4" height="15.0" fill="rgb(211,29,7)" rx="2" ry="2" /> | |
| <text x="1095.94" y="687.5" ></text> | |
| </g> | |
| <g > | |
| <title>__tzset_parse_tz (106,711,123 samples, 0.06%)</title><rect x="1179.5" y="741" width="0.7" height="15.0" fill="rgb(207,10,2)" rx="2" ry="2" /> | |
| <text x="1182.51" y="751.5" ></text> | |
| </g> | |
| <g > | |
| <title>get_futex_key (42,813,496 samples, 0.02%)</title><rect x="980.1" y="469" width="0.2" height="15.0" fill="rgb(252,216,51)" rx="2" ry="2" /> | |
| <text x="983.06" y="479.5" ></text> | |
| </g> | |
| <g > | |
| <title>cso_set_samplers (92,497,476 samples, 0.05%)</title><rect x="851.9" y="549" width="0.7" height="15.0" fill="rgb(215,48,11)" rx="2" ry="2" /> | |
| <text x="854.95" y="559.5" ></text> | |
| </g> | |
| <g > | |
| <title>tc_is_buffer_busy (42,599,104 samples, 0.02%)</title><rect x="974.2" y="613" width="0.3" height="15.0" fill="rgb(253,222,53)" rx="2" ry="2" /> | |
| <text x="977.19" y="623.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_glthread_finish (50,694,150 samples, 0.03%)</title><rect x="979.3" y="693" width="0.3" height="15.0" fill="rgb(209,22,5)" rx="2" ry="2" /> | |
| <text x="982.31" y="703.5" ></text> | |
| </g> | |
| <g > | |
| <title>[libpulse.so.0.24.2] (92,746,512 samples, 0.05%)</title><rect x="11.5" y="709" width="0.6" height="15.0" fill="rgb(253,221,52)" rx="2" ry="2" /> | |
| <text x="14.47" y="719.5" ></text> | |
| </g> | |
| <g > | |
| <title>amdgpu_cs_flush (810,266,072 samples, 0.45%)</title><rect x="896.9" y="581" width="5.3" height="15.0" fill="rgb(205,1,0)" rx="2" ry="2" /> | |
| <text x="899.93" y="591.5" ></text> | |
| </g> | |
| <g > | |
| <title>__aarch64_ldadd4_acq_rel (52,695,163 samples, 0.03%)</title><rect x="529.6" y="661" width="0.4" height="15.0" fill="rgb(228,108,25)" rx="2" ry="2" /> | |
| <text x="532.65" y="671.5" ></text> | |
| </g> | |
| <g > | |
| <title>util_queue_add_job_locked.part.0 (15,698,703 samples, 0.01%)</title><rect x="1032.0" y="693" width="0.1" height="15.0" fill="rgb(243,177,42)" rx="2" ry="2" /> | |
| <text x="1035.01" y="703.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_unmarshal_VertexAttribPointer_packed (144,145,068 samples, 0.08%)</title><rect x="1148.1" y="709" width="0.9" height="15.0" fill="rgb(232,124,29)" rx="2" ry="2" /> | |
| <text x="1151.10" y="719.5" ></text> | |
| </g> | |
| <g > | |
| <title>__schedule (29,567,000 samples, 0.02%)</title><rect x="249.8" y="565" width="0.2" height="15.0" fill="rgb(227,103,24)" rx="2" ry="2" /> | |
| <text x="252.82" y="575.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_uniform_matrix (310,805,441 samples, 0.17%)</title><rect x="474.8" y="773" width="2.1" height="15.0" fill="rgb(215,47,11)" rx="2" ry="2" /> | |
| <text x="477.83" y="783.5" ></text> | |
| </g> | |
| <g > | |
| <title>futex_wake (17,531,990 samples, 0.01%)</title><rect x="420.2" y="469" width="0.1" height="15.0" fill="rgb(219,65,15)" rx="2" ry="2" /> | |
| <text x="423.23" y="479.5" ></text> | |
| </g> | |
| <g > | |
| <title>drm_ioctl (28,339,514 samples, 0.02%)</title><rect x="38.4" y="565" width="0.2" height="15.0" fill="rgb(231,121,29)" rx="2" ry="2" /> | |
| <text x="41.42" y="575.5" ></text> | |
| </g> | |
| <g > | |
| <title>validate_uniform_parameters (42,300,486 samples, 0.02%)</title><rect x="857.6" y="597" width="0.3" height="15.0" fill="rgb(234,137,32)" rx="2" ry="2" /> | |
| <text x="860.60" y="607.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_use_program (42,824,034 samples, 0.02%)</title><rect x="880.8" y="597" width="0.3" height="15.0" fill="rgb(235,141,33)" rx="2" ry="2" /> | |
| <text x="883.80" y="607.5" ></text> | |
| </g> | |
| <g > | |
| <title>malloc (17,466,380 samples, 0.01%)</title><rect x="1174.7" y="741" width="0.1" height="15.0" fill="rgb(230,119,28)" rx="2" ry="2" /> | |
| <text x="1177.66" y="751.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_unmarshal_DisableVertexAttribArray (20,332,599 samples, 0.01%)</title><rect x="1109.7" y="709" width="0.2" height="15.0" fill="rgb(214,45,10)" rx="2" ry="2" /> | |
| <text x="1112.72" y="719.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_validated_drawrangeelements (26,144,803 samples, 0.01%)</title><rect x="783.5" y="53" width="0.2" height="15.0" fill="rgb(230,115,27)" rx="2" ry="2" /> | |
| <text x="786.53" y="63.5" ></text> | |
| </g> | |
| <g > | |
| <title>amdgpu_ib_new_buffer (23,251,244 samples, 0.01%)</title><rect x="538.6" y="661" width="0.1" height="15.0" fill="rgb(212,33,8)" rx="2" ry="2" /> | |
| <text x="541.55" y="671.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_use_shader_program (73,379,851 samples, 0.04%)</title><rect x="1147.5" y="661" width="0.4" height="15.0" fill="rgb(245,188,44)" rx="2" ry="2" /> | |
| <text x="1150.47" y="671.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_unmarshal_DrawElementsPacked (1,764,359,978 samples, 0.98%)</title><rect x="866.8" y="645" width="11.6" height="15.0" fill="rgb(225,92,22)" rx="2" ry="2" /> | |
| <text x="869.84" y="655.5" ></text> | |
| </g> | |
| <g > | |
| <title>inode_permission (24,563,491 samples, 0.01%)</title><rect x="1184.2" y="485" width="0.1" height="15.0" fill="rgb(208,18,4)" rx="2" ry="2" /> | |
| <text x="1187.18" y="495.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_test_framebuffer_completeness (46,360,417 samples, 0.03%)</title><rect x="1080.1" y="597" width="0.3" height="15.0" fill="rgb(229,113,27)" rx="2" ry="2" /> | |
| <text x="1083.11" y="607.5" ></text> | |
| </g> | |
| <g > | |
| <title>tc_add_draw_single_call (47,747,672 samples, 0.03%)</title><rect x="877.4" y="597" width="0.3" height="15.0" fill="rgb(214,45,10)" rx="2" ry="2" /> | |
| <text x="880.38" y="607.5" ></text> | |
| </g> | |
| <g > | |
| <title>lookup_fast (39,970,288 samples, 0.02%)</title><rect x="1184.7" y="501" width="0.3" height="15.0" fill="rgb(219,68,16)" rx="2" ry="2" /> | |
| <text x="1187.71" y="511.5" ></text> | |
| </g> | |
| <g > | |
| <title>tc_batch_flush (42,698,913 samples, 0.02%)</title><rect x="418.7" y="709" width="0.3" height="15.0" fill="rgb(249,206,49)" rx="2" ry="2" /> | |
| <text x="421.70" y="719.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_use_shader_program (107,199,192 samples, 0.06%)</title><rect x="1092.1" y="677" width="0.7" height="15.0" fill="rgb(245,188,44)" rx="2" ry="2" /> | |
| <text x="1095.11" y="687.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_marshal_VertexAttribPointer (41,600,426 samples, 0.02%)</title><rect x="956.9" y="709" width="0.3" height="15.0" fill="rgb(241,168,40)" rx="2" ry="2" /> | |
| <text x="959.94" y="719.5" ></text> | |
| </g> | |
| <g > | |
| <title>step_into (49,060,977 samples, 0.03%)</title><rect x="1185.0" y="501" width="0.3" height="15.0" fill="rgb(226,98,23)" rx="2" ry="2" /> | |
| <text x="1187.98" y="511.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_bind_vertex_buffer (22,766,350 samples, 0.01%)</title><rect x="1148.2" y="661" width="0.2" height="15.0" fill="rgb(241,166,39)" rx="2" ry="2" /> | |
| <text x="1151.20" y="671.5" ></text> | |
| </g> | |
| <g > | |
| <title>__check_object_size (27,268,189 samples, 0.02%)</title><rect x="541.5" y="437" width="0.2" height="15.0" fill="rgb(226,98,23)" rx="2" ry="2" /> | |
| <text x="544.51" y="447.5" ></text> | |
| </g> | |
| <g > | |
| <title>mtx_lock (45,130,140 samples, 0.02%)</title><rect x="35.5" y="821" width="0.3" height="15.0" fill="rgb(225,95,22)" rx="2" ry="2" /> | |
| <text x="38.51" y="831.5" ></text> | |
| </g> | |
| <g > | |
| <title>tc_set_sampler_views (90,057,614 samples, 0.05%)</title><rect x="1133.2" y="629" width="0.6" height="15.0" fill="rgb(250,209,50)" rx="2" ry="2" /> | |
| <text x="1136.24" y="639.5" ></text> | |
| </g> | |
| <g > | |
| <title>tc_buffer_subdata.part.0 (116,670,841 samples, 0.06%)</title><rect x="373.0" y="789" width="0.7" height="15.0" fill="rgb(231,120,28)" rx="2" ry="2" /> | |
| <text x="375.97" y="799.5" ></text> | |
| </g> | |
| <g > | |
| <title>__aarch64_swp4_acq_rel (17,755,908 samples, 0.01%)</title><rect x="27.8" y="821" width="0.1" height="15.0" fill="rgb(205,3,0)" rx="2" ry="2" /> | |
| <text x="30.83" y="831.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_uniform (31,974,117 samples, 0.02%)</title><rect x="879.0" y="613" width="0.2" height="15.0" fill="rgb(248,201,48)" rx="2" ry="2" /> | |
| <text x="881.99" y="623.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_reference_shader_program_ (59,568,694 samples, 0.03%)</title><rect x="1145.6" y="645" width="0.4" height="15.0" fill="rgb(241,168,40)" rx="2" ry="2" /> | |
| <text x="1148.65" y="655.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_unmarshal_FramebufferTexture2D (73,113,993 samples, 0.04%)</title><rect x="1137.0" y="709" width="0.4" height="15.0" fill="rgb(229,114,27)" rx="2" ry="2" /> | |
| <text x="1139.97" y="719.5" ></text> | |
| </g> | |
| <g > | |
| <title>update_textures (113,897,474 samples, 0.06%)</title><rect x="450.0" y="725" width="0.7" height="15.0" fill="rgb(232,125,29)" rx="2" ry="2" /> | |
| <text x="452.97" y="735.5" ></text> | |
| </g> | |
| <g > | |
| <title>si_query_buffer_reset (42,486,069 samples, 0.02%)</title><rect x="48.5" y="757" width="0.3" height="15.0" fill="rgb(215,50,11)" rx="2" ry="2" /> | |
| <text x="51.51" y="767.5" ></text> | |
| </g> | |
| <g > | |
| <title>__aarch64_ldadd4_acq_rel (17,360,055 samples, 0.01%)</title><rect x="1094.9" y="725" width="0.1" height="15.0" fill="rgb(228,108,25)" rx="2" ry="2" /> | |
| <text x="1097.86" y="735.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_unmarshal_DrawElementsPacked (17,951,214 samples, 0.01%)</title><rect x="857.0" y="629" width="0.1" height="15.0" fill="rgb(225,92,22)" rx="2" ry="2" /> | |
| <text x="859.99" y="639.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_reference_renderbuffer_ (22,694,254 samples, 0.01%)</title><rect x="1137.0" y="645" width="0.2" height="15.0" fill="rgb(211,28,6)" rx="2" ry="2" /> | |
| <text x="1140.04" y="655.5" ></text> | |
| </g> | |
| <g > | |
| <title>amdgpu_syncobj_lookup_and_add (35,029,121 samples, 0.02%)</title><rect x="307.3" y="565" width="0.3" height="15.0" fill="rgb(223,86,20)" rx="2" ry="2" /> | |
| <text x="310.33" y="575.5" ></text> | |
| </g> | |
| <g > | |
| <title>si_flush_gfx_cs (1,284,922,574 samples, 0.71%)</title><rect x="531.7" y="709" width="8.4" height="15.0" fill="rgb(242,171,41)" rx="2" ry="2" /> | |
| <text x="534.67" y="719.5" ></text> | |
| </g> | |
| <g > | |
| <title>dri3_flush_present_events (46,193,913 samples, 0.03%)</title><rect x="374.5" y="645" width="0.3" height="15.0" fill="rgb(217,57,13)" rx="2" ry="2" /> | |
| <text x="377.55" y="655.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_lookup_bufferobj.part.0 (48,514,082 samples, 0.03%)</title><rect x="922.8" y="629" width="0.3" height="15.0" fill="rgb(223,84,20)" rx="2" ry="2" /> | |
| <text x="925.77" y="639.5" ></text> | |
| </g> | |
| <g > | |
| <title>mtx_unlock (171,072,733 samples, 0.09%)</title><rect x="500.7" y="821" width="1.1" height="15.0" fill="rgb(209,19,4)" rx="2" ry="2" /> | |
| <text x="503.66" y="831.5" ></text> | |
| </g> | |
| <g > | |
| <title>pthread_cond_signal@@GLIBC_2.17 (156,198,422 samples, 0.09%)</title><rect x="458.8" y="693" width="1.0" height="15.0" fill="rgb(232,126,30)" rx="2" ry="2" /> | |
| <text x="461.81" y="703.5" ></text> | |
| </g> | |
| <g > | |
| <title>glDrawArrays (24,443,137 samples, 0.01%)</title><rect x="1035.2" y="725" width="0.2" height="15.0" fill="rgb(235,140,33)" rx="2" ry="2" /> | |
| <text x="1038.23" y="735.5" ></text> | |
| </g> | |
| <g > | |
| <title>pthread_cond_wait@@GLIBC_2.17 (554,819,432 samples, 0.31%)</title><rect x="248.9" y="805" width="3.6" height="15.0" fill="rgb(231,119,28)" rx="2" ry="2" /> | |
| <text x="251.88" y="815.5" ></text> | |
| </g> | |
| <g > | |
| <title>do_notify_resume (31,969,482 samples, 0.02%)</title><rect x="896.5" y="453" width="0.3" height="15.0" fill="rgb(233,129,30)" rx="2" ry="2" /> | |
| <text x="899.55" y="463.5" ></text> | |
| </g> | |
| <g > | |
| <title>el0t_64_sync (60,362,550 samples, 0.03%)</title><rect x="14.7" y="725" width="0.4" height="15.0" fill="rgb(217,56,13)" rx="2" ry="2" /> | |
| <text x="17.73" y="735.5" ></text> | |
| </g> | |
| <g > | |
| <title>el0t_64_sync (182,192,566 samples, 0.10%)</title><rect x="252.6" y="789" width="1.1" height="15.0" fill="rgb(217,56,13)" rx="2" ry="2" /> | |
| <text x="255.56" y="799.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_update_state (63,068,472 samples, 0.03%)</title><rect x="824.3" y="597" width="0.4" height="15.0" fill="rgb(222,78,18)" rx="2" ry="2" /> | |
| <text x="827.33" y="607.5" ></text> | |
| </g> | |
| <g > | |
| <title>do_sys_poll (92,216,747 samples, 0.05%)</title><rect x="13.5" y="613" width="0.6" height="15.0" fill="rgb(219,68,16)" rx="2" ry="2" /> | |
| <text x="16.47" y="623.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_MapBufferRange (17,741,844 samples, 0.01%)</title><rect x="1076.1" y="741" width="0.2" height="15.0" fill="rgb(238,156,37)" rx="2" ry="2" /> | |
| <text x="1079.13" y="751.5" ></text> | |
| </g> | |
| <g > | |
| <title>el0_svc_common.constprop.0 (63,814,501 samples, 0.04%)</title><rect x="1189.6" y="821" width="0.4" height="15.0" fill="rgb(224,89,21)" rx="2" ry="2" /> | |
| <text x="1192.58" y="831.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_unmarshal_VertexAttribPointer_packed (16,744,636 samples, 0.01%)</title><rect x="500.3" y="789" width="0.1" height="15.0" fill="rgb(232,124,29)" rx="2" ry="2" /> | |
| <text x="503.28" y="799.5" ></text> | |
| </g> | |
| <g > | |
| <title>el0_svc (39,366,923 samples, 0.02%)</title><rect x="10.3" y="725" width="0.3" height="15.0" fill="rgb(244,183,43)" rx="2" ry="2" /> | |
| <text x="13.32" y="735.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_DrawArraysInstancedBaseInstance (160,251,541 samples, 0.09%)</title><rect x="1109.9" y="693" width="1.0" height="15.0" fill="rgb(243,178,42)" rx="2" ry="2" /> | |
| <text x="1112.90" y="703.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_update_texture_state (180,148,762 samples, 0.10%)</title><rect x="848.4" y="565" width="1.1" height="15.0" fill="rgb(237,148,35)" rx="2" ry="2" /> | |
| <text x="851.36" y="575.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_reference_program_ (16,726,800 samples, 0.01%)</title><rect x="858.9" y="581" width="0.1" height="15.0" fill="rgb(231,122,29)" rx="2" ry="2" /> | |
| <text x="861.89" y="591.5" ></text> | |
| </g> | |
| <g > | |
| <title>amdgpu_cs_parser_fini (530,218,772 samples, 0.29%)</title><rect x="284.8" y="581" width="3.5" height="15.0" fill="rgb(224,88,21)" rx="2" ry="2" /> | |
| <text x="287.79" y="591.5" ></text> | |
| </g> | |
| <g > | |
| <title>invoke_syscall (127,961,733 samples, 0.07%)</title><rect x="507.8" y="581" width="0.8" height="15.0" fill="rgb(209,18,4)" rx="2" ry="2" /> | |
| <text x="510.78" y="591.5" ></text> | |
| </g> | |
| <g > | |
| <title>invoke_syscall (31,169,428 samples, 0.02%)</title><rect x="374.6" y="485" width="0.2" height="15.0" fill="rgb(209,18,4)" rx="2" ry="2" /> | |
| <text x="377.60" y="495.5" ></text> | |
| </g> | |
| <g > | |
| <title>sock_wfree (21,740,404 samples, 0.01%)</title><rect x="1107.6" y="213" width="0.2" height="15.0" fill="rgb(240,162,38)" rx="2" ry="2" /> | |
| <text x="1110.63" y="223.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_DrawElementsBaseVertex (46,886,637 samples, 0.03%)</title><rect x="866.9" y="613" width="0.3" height="15.0" fill="rgb(214,41,10)" rx="2" ry="2" /> | |
| <text x="869.94" y="623.5" ></text> | |
| </g> | |
| <g > | |
| <title>__printf_buffer_write (21,439,110 samples, 0.01%)</title><rect x="1052.6" y="693" width="0.2" height="15.0" fill="rgb(220,73,17)" rx="2" ry="2" /> | |
| <text x="1055.62" y="703.5" ></text> | |
| </g> | |
| <g > | |
| <title>st_Clear (42,508,868 samples, 0.02%)</title><rect x="1079.3" y="677" width="0.2" height="15.0" fill="rgb(211,30,7)" rx="2" ry="2" /> | |
| <text x="1082.26" y="687.5" ></text> | |
| </g> | |
| <g > | |
| <title>strcmp (20,300,439 samples, 0.01%)</title><rect x="787.3" y="181" width="0.1" height="15.0" fill="rgb(217,58,13)" rx="2" ry="2" /> | |
| <text x="790.25" y="191.5" ></text> | |
| </g> | |
| <g > | |
| <title>el0_svc_common.constprop.0 (25,578,368 samples, 0.01%)</title><rect x="876.3" y="405" width="0.2" height="15.0" fill="rgb(224,89,21)" rx="2" ry="2" /> | |
| <text x="879.31" y="415.5" ></text> | |
| </g> | |
| <g > | |
| <title>strcspn (130,279,174 samples, 0.07%)</title><rect x="964.3" y="677" width="0.9" height="15.0" fill="rgb(218,61,14)" rx="2" ry="2" /> | |
| <text x="967.34" y="687.5" ></text> | |
| </g> | |
| <g > | |
| <title>si_set_vertex_buffers (609,419,150 samples, 0.34%)</title><rect x="243.6" y="773" width="4.0" height="15.0" fill="rgb(240,161,38)" rx="2" ry="2" /> | |
| <text x="246.60" y="783.5" ></text> | |
| </g> | |
| <g > | |
| <title>si_pipe_set_sampler_views (5,408,114,336 samples, 3.00%)</title><rect x="202.0" y="789" width="35.3" height="15.0" fill="rgb(226,100,24)" rx="2" ry="2" /> | |
| <text x="204.97" y="799.5" >si..</text> | |
| </g> | |
| <g > | |
| <title>el0t_64_sync (295,835,597 samples, 0.16%)</title><rect x="540.9" y="677" width="1.9" height="15.0" fill="rgb(217,56,13)" rx="2" ry="2" /> | |
| <text x="543.86" y="687.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_marshal_DrawRangeElements (25,624,737 samples, 0.01%)</title><rect x="822.0" y="677" width="0.2" height="15.0" fill="rgb(229,111,26)" rx="2" ry="2" /> | |
| <text x="825.01" y="687.5" ></text> | |
| </g> | |
| <g > | |
| <title>tc_set_constant_buffer (17,623,176 samples, 0.01%)</title><rect x="938.2" y="581" width="0.1" height="15.0" fill="rgb(247,195,46)" rx="2" ry="2" /> | |
| <text x="941.17" y="591.5" ></text> | |
| </g> | |
| <g > | |
| <title>[unknown] (15,941,051 samples, 0.01%)</title><rect x="791.0" y="245" width="0.1" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" /> | |
| <text x="794.02" y="255.5" ></text> | |
| </g> | |
| <g > | |
| <title>si_alloc_buffer_struct (16,587,077 samples, 0.01%)</title><rect x="515.2" y="661" width="0.1" height="15.0" fill="rgb(253,224,53)" rx="2" ry="2" /> | |
| <text x="518.20" y="671.5" ></text> | |
| </g> | |
| <g > | |
| <title>st_update_vp (60,872,032 samples, 0.03%)</title><rect x="1122.7" y="645" width="0.4" height="15.0" fill="rgb(254,227,54)" rx="2" ry="2" /> | |
| <text x="1125.73" y="655.5" ></text> | |
| </g> | |
| <g > | |
| <title>mtx_lock (17,099,494 samples, 0.01%)</title><rect x="458.5" y="725" width="0.2" height="15.0" fill="rgb(225,95,22)" rx="2" ry="2" /> | |
| <text x="461.54" y="735.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_lookup_bufferobj.part.0 (54,542,520 samples, 0.03%)</title><rect x="348.0" y="757" width="0.3" height="15.0" fill="rgb(223,84,20)" rx="2" ry="2" /> | |
| <text x="350.99" y="767.5" ></text> | |
| </g> | |
| <g > | |
| <title>read (60,362,550 samples, 0.03%)</title><rect x="14.7" y="741" width="0.4" height="15.0" fill="rgb(252,216,51)" rx="2" ry="2" /> | |
| <text x="17.73" y="751.5" ></text> | |
| </g> | |
| <g > | |
| <title>vorbis_book_decode (27,937,931 samples, 0.02%)</title><rect x="22.8" y="661" width="0.1" height="15.0" fill="rgb(254,227,54)" rx="2" ry="2" /> | |
| <text x="25.76" y="671.5" ></text> | |
| </g> | |
| <g > | |
| <title>[libSDL2-2.0.so.0.3000.0] (6,424,299,225 samples, 3.56%)</title><rect x="502.2" y="821" width="42.0" height="15.0" fill="rgb(227,102,24)" rx="2" ry="2" /> | |
| <text x="505.21" y="831.5" >[li..</text> | |
| </g> | |
| <g > | |
| <title>delete_renderbuffer (20,479,571 samples, 0.01%)</title><rect x="1018.1" y="597" width="0.2" height="15.0" fill="rgb(219,67,16)" rx="2" ry="2" /> | |
| <text x="1021.13" y="607.5" ></text> | |
| </g> | |
| <g > | |
| <title>tc_set_constant_buffer (71,483,846 samples, 0.04%)</title><rect x="1125.1" y="613" width="0.5" height="15.0" fill="rgb(247,195,46)" rx="2" ry="2" /> | |
| <text x="1128.14" y="623.5" ></text> | |
| </g> | |
| <g > | |
| <title>validate_uniform_parameters (26,303,137 samples, 0.01%)</title><rect x="947.3" y="613" width="0.2" height="15.0" fill="rgb(234,137,32)" rx="2" ry="2" /> | |
| <text x="950.32" y="623.5" ></text> | |
| </g> | |
| <g > | |
| <title>__kmalloc_noprof (21,267,370 samples, 0.01%)</title><rect x="1162.0" y="373" width="0.1" height="15.0" fill="rgb(235,138,33)" rx="2" ry="2" /> | |
| <text x="1165.01" y="383.5" ></text> | |
| </g> | |
| <g > | |
| <title>el0_svc (69,848,188 samples, 0.04%)</title><rect x="254.0" y="741" width="0.5" height="15.0" fill="rgb(244,183,43)" rx="2" ry="2" /> | |
| <text x="257.05" y="751.5" ></text> | |
| </g> | |
| <g > | |
| <title>update_textures (405,188,922 samples, 0.22%)</title><rect x="939.4" y="597" width="2.6" height="15.0" fill="rgb(232,125,29)" rx="2" ry="2" /> | |
| <text x="942.40" y="607.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_lookup_bufferobj.part.0 (26,327,833 samples, 0.01%)</title><rect x="982.7" y="645" width="0.2" height="15.0" fill="rgb(223,84,20)" rx="2" ry="2" /> | |
| <text x="985.73" y="655.5" ></text> | |
| </g> | |
| <g > | |
| <title>el0_svc (414,273,244 samples, 0.23%)</title><rect x="342.0" y="757" width="2.7" height="15.0" fill="rgb(244,183,43)" rx="2" ry="2" /> | |
| <text x="345.02" y="767.5" ></text> | |
| </g> | |
| <g > | |
| <title>objects_lookup (479,983,820 samples, 0.27%)</title><rect x="296.6" y="533" width="3.1" height="15.0" fill="rgb(228,108,25)" rx="2" ry="2" /> | |
| <text x="299.60" y="543.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_DrawElementsBaseVertex (25,950,808 samples, 0.01%)</title><rect x="784.4" y="85" width="0.2" height="15.0" fill="rgb(214,41,10)" rx="2" ry="2" /> | |
| <text x="787.44" y="95.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_unmarshal_Clear (111,922,153 samples, 0.06%)</title><rect x="1079.1" y="709" width="0.7" height="15.0" fill="rgb(227,105,25)" rx="2" ry="2" /> | |
| <text x="1082.06" y="719.5" ></text> | |
| </g> | |
| <g > | |
| <title>si_emit_graphics_shader_pointers (57,113,785 samples, 0.03%)</title><rect x="889.6" y="549" width="0.4" height="15.0" fill="rgb(232,125,29)" rx="2" ry="2" /> | |
| <text x="892.59" y="559.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_unmarshal_EnableVertexAttribArray (16,769,317 samples, 0.01%)</title><rect x="945.4" y="645" width="0.1" height="15.0" fill="rgb(218,64,15)" rx="2" ry="2" /> | |
| <text x="948.41" y="655.5" ></text> | |
| </g> | |
| <g > | |
| <title>el0_svc_common.constprop.0 (56,097,574 samples, 0.03%)</title><rect x="972.7" y="581" width="0.3" height="15.0" fill="rgb(224,89,21)" rx="2" ry="2" /> | |
| <text x="975.65" y="591.5" ></text> | |
| </g> | |
| <g > | |
| <title>[libGLdispatch.so.0.0.0] (466,798,672 samples, 0.26%)</title><rect x="643.1" y="725" width="3.0" height="15.0" fill="rgb(209,20,4)" rx="2" ry="2" /> | |
| <text x="646.09" y="735.5" ></text> | |
| </g> | |
| <g > | |
| <title>st_get_texture_sampler_view_from_stobj (28,025,034 samples, 0.02%)</title><rect x="929.5" y="565" width="0.2" height="15.0" fill="rgb(211,32,7)" rx="2" ry="2" /> | |
| <text x="932.54" y="575.5" ></text> | |
| </g> | |
| <g > | |
| <title>do_el0_svc (28,805,078 samples, 0.02%)</title><rect x="538.3" y="565" width="0.2" height="15.0" fill="rgb(218,60,14)" rx="2" ry="2" /> | |
| <text x="541.32" y="575.5" ></text> | |
| </g> | |
| <g > | |
| <title>__aarch64_ldadd4_acq_rel (32,407,004 samples, 0.02%)</title><rect x="1151.6" y="709" width="0.2" height="15.0" fill="rgb(228,108,25)" rx="2" ry="2" /> | |
| <text x="1154.55" y="719.5" ></text> | |
| </g> | |
| <g > | |
| <title>st_get_texture_sampler_view_from_stobj (362,364,959 samples, 0.20%)</title><rect x="1130.0" y="597" width="2.4" height="15.0" fill="rgb(211,32,7)" rx="2" ry="2" /> | |
| <text x="1133.03" y="607.5" ></text> | |
| </g> | |
| <g > | |
| <title>hud_stop_queries (539,684,361 samples, 0.30%)</title><rect x="512.4" y="709" width="3.5" height="15.0" fill="rgb(231,121,29)" rx="2" ry="2" /> | |
| <text x="515.38" y="719.5" ></text> | |
| </g> | |
| <g > | |
| <title>do_el0_svc (232,775,187 samples, 0.13%)</title><rect x="188.5" y="629" width="1.5" height="15.0" fill="rgb(218,60,14)" rx="2" ry="2" /> | |
| <text x="191.49" y="639.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_draw_arrays.part.0 (114,366,213 samples, 0.06%)</title><rect x="376.2" y="789" width="0.8" height="15.0" fill="rgb(227,104,25)" rx="2" ry="2" /> | |
| <text x="379.24" y="799.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_draw_arrays.part.0 (22,555,836 samples, 0.01%)</title><rect x="1172.3" y="709" width="0.1" height="15.0" fill="rgb(227,104,25)" rx="2" ry="2" /> | |
| <text x="1175.29" y="719.5" ></text> | |
| </g> | |
| <g > | |
| <title>pthread_cond_signal@@GLIBC_2.17 (35,801,851 samples, 0.02%)</title><rect x="956.3" y="645" width="0.2" height="15.0" fill="rgb(232,126,30)" rx="2" ry="2" /> | |
| <text x="959.26" y="655.5" ></text> | |
| </g> | |
| <g > | |
| <title>el0_svc_common.constprop.0 (35,357,736 samples, 0.02%)</title><rect x="508.9" y="629" width="0.2" height="15.0" fill="rgb(224,89,21)" rx="2" ry="2" /> | |
| <text x="511.88" y="639.5" ></text> | |
| </g> | |
| <g > | |
| <title>_itoa_word (28,821,551 samples, 0.02%)</title><rect x="821.0" y="629" width="0.2" height="15.0" fill="rgb(246,191,45)" rx="2" ry="2" /> | |
| <text x="824.04" y="639.5" ></text> | |
| </g> | |
| <g > | |
| <title>futex_wait (64,238,043 samples, 0.04%)</title><rect x="1095.4" y="549" width="0.4" height="15.0" fill="rgb(235,138,33)" rx="2" ry="2" /> | |
| <text x="1098.38" y="559.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_marshal_DrawRangeElements (27,767,842 samples, 0.02%)</title><rect x="809.2" y="661" width="0.2" height="15.0" fill="rgb(229,111,26)" rx="2" ry="2" /> | |
| <text x="812.20" y="671.5" ></text> | |
| </g> | |
| <g > | |
| <title>memcmp@plt (42,078,737 samples, 0.02%)</title><rect x="473.0" y="757" width="0.3" height="15.0" fill="rgb(251,214,51)" rx="2" ry="2" /> | |
| <text x="475.99" y="767.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_unmarshal_BindFramebuffer (32,146,416 samples, 0.02%)</title><rect x="1098.4" y="709" width="0.2" height="15.0" fill="rgb(245,185,44)" rx="2" ry="2" /> | |
| <text x="1101.43" y="719.5" ></text> | |
| </g> | |
| <g > | |
| <title>st_get_texture_sampler_view_from_stobj (48,757,917 samples, 0.03%)</title><rect x="428.1" y="693" width="0.3" height="15.0" fill="rgb(211,32,7)" rx="2" ry="2" /> | |
| <text x="431.12" y="703.5" ></text> | |
| </g> | |
| <g > | |
| <title>si_is_format_supported (21,700,763 samples, 0.01%)</title><rect x="988.2" y="565" width="0.2" height="15.0" fill="rgb(240,164,39)" rx="2" ry="2" /> | |
| <text x="991.21" y="575.5" ></text> | |
| </g> | |
| <g > | |
| <title>el0_svc (30,845,615 samples, 0.02%)</title><rect x="1106.2" y="437" width="0.2" height="15.0" fill="rgb(244,183,43)" rx="2" ry="2" /> | |
| <text x="1109.17" y="447.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_unmarshal_UnmapBuffer (146,712,537 samples, 0.08%)</title><rect x="879.6" y="645" width="0.9" height="15.0" fill="rgb(221,73,17)" rx="2" ry="2" /> | |
| <text x="882.59" y="655.5" ></text> | |
| </g> | |
| <g > | |
| <title>memcmp (25,261,988 samples, 0.01%)</title><rect x="1141.5" y="661" width="0.2" height="15.0" fill="rgb(235,141,33)" rx="2" ry="2" /> | |
| <text x="1144.54" y="671.5" ></text> | |
| </g> | |
| <g > | |
| <title>drmIoctl (102,236,001 samples, 0.06%)</title><rect x="331.6" y="773" width="0.7" height="15.0" fill="rgb(251,215,51)" rx="2" ry="2" /> | |
| <text x="334.62" y="783.5" ></text> | |
| </g> | |
| <g > | |
| <title>_raw_spin_unlock (205,782,176 samples, 0.11%)</title><rect x="268.3" y="581" width="1.3" height="15.0" fill="rgb(223,85,20)" rx="2" ry="2" /> | |
| <text x="271.25" y="591.5" ></text> | |
| </g> | |
| <g > | |
| <title>[libX11.so.6.4.0] (238,460,468 samples, 0.13%)</title><rect x="503.0" y="741" width="1.6" height="15.0" fill="rgb(220,73,17)" rx="2" ry="2" /> | |
| <text x="506.02" y="751.5" ></text> | |
| </g> | |
| <g > | |
| <title>drm_dev_enter (18,493,593 samples, 0.01%)</title><rect x="537.6" y="469" width="0.1" height="15.0" fill="rgb(237,150,35)" rx="2" ry="2" /> | |
| <text x="540.57" y="479.5" ></text> | |
| </g> | |
| <g > | |
| <title>finish_task_switch.isra.0 (24,883,482 samples, 0.01%)</title><rect x="30.0" y="549" width="0.2" height="15.0" fill="rgb(246,189,45)" rx="2" ry="2" /> | |
| <text x="33.04" y="559.5" ></text> | |
| </g> | |
| <g > | |
| <title>__arm64_sys_ioctl (86,334,176 samples, 0.05%)</title><rect x="900.3" y="405" width="0.6" height="15.0" fill="rgb(207,11,2)" rx="2" ry="2" /> | |
| <text x="903.30" y="415.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_uniform (316,005,328 samples, 0.18%)</title><rect x="462.8" y="789" width="2.1" height="15.0" fill="rgb(248,201,48)" rx="2" ry="2" /> | |
| <text x="465.80" y="799.5" ></text> | |
| </g> | |
| <g > | |
| <title>shared_dispatch_stub_478 (29,201,931 samples, 0.02%)</title><rect x="962.6" y="709" width="0.2" height="15.0" fill="rgb(234,134,32)" rx="2" ry="2" /> | |
| <text x="965.56" y="719.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_BufferSubData (16,123,186 samples, 0.01%)</title><rect x="974.7" y="661" width="0.1" height="15.0" fill="rgb(254,227,54)" rx="2" ry="2" /> | |
| <text x="977.65" y="671.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_BindTexture (75,300,477 samples, 0.04%)</title><rect x="823.1" y="613" width="0.5" height="15.0" fill="rgb(234,136,32)" rx="2" ry="2" /> | |
| <text x="826.15" y="623.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_update_state (61,700,691 samples, 0.03%)</title><rect x="1058.3" y="661" width="0.4" height="15.0" fill="rgb(222,78,18)" rx="2" ry="2" /> | |
| <text x="1061.34" y="671.5" ></text> | |
| </g> | |
| <g > | |
| <title>__tzset (913,274,730 samples, 0.51%)</title><rect x="1181.2" y="789" width="6.0" height="15.0" fill="rgb(254,225,53)" rx="2" ry="2" /> | |
| <text x="1184.24" y="799.5" ></text> | |
| </g> | |
| <g > | |
| <title>pthread_cond_signal@@GLIBC_2.17 (21,614,882 samples, 0.01%)</title><rect x="39.0" y="709" width="0.1" height="15.0" fill="rgb(232,126,30)" rx="2" ry="2" /> | |
| <text x="41.95" y="719.5" ></text> | |
| </g> | |
| <g > | |
| <title>__aarch64_ldadd4_acq_rel (88,198,457 samples, 0.05%)</title><rect x="981.6" y="677" width="0.6" height="15.0" fill="rgb(228,108,25)" rx="2" ry="2" /> | |
| <text x="984.58" y="687.5" ></text> | |
| </g> | |
| <g > | |
| <title>el0t_64_sync_handler (16,941,715 samples, 0.01%)</title><rect x="977.9" y="613" width="0.1" height="15.0" fill="rgb(211,32,7)" rx="2" ry="2" /> | |
| <text x="980.90" y="623.5" ></text> | |
| </g> | |
| <g > | |
| <title>invoke_syscall (148,840,052 samples, 0.08%)</title><rect x="338.2" y="677" width="1.0" height="15.0" fill="rgb(209,18,4)" rx="2" ry="2" /> | |
| <text x="341.21" y="687.5" ></text> | |
| </g> | |
| <g > | |
| <title>tc_improve_map_buffer_flags.part.0 (27,202,749 samples, 0.02%)</title><rect x="961.8" y="645" width="0.2" height="15.0" fill="rgb(214,42,10)" rx="2" ry="2" /> | |
| <text x="964.80" y="655.5" ></text> | |
| </g> | |
| <g > | |
| <title>vbo_exec_FlushVertices (50,498,496 samples, 0.03%)</title><rect x="1016.8" y="645" width="0.3" height="15.0" fill="rgb(226,100,24)" rx="2" ry="2" /> | |
| <text x="1019.75" y="655.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_update_state_locked (147,947,191 samples, 0.08%)</title><rect x="1110.0" y="661" width="0.9" height="15.0" fill="rgb(214,43,10)" rx="2" ry="2" /> | |
| <text x="1112.97" y="671.5" ></text> | |
| </g> | |
| <g > | |
| <title>glDepthFunc (17,350,894 samples, 0.01%)</title><rect x="1175.4" y="773" width="0.1" height="15.0" fill="rgb(205,4,1)" rx="2" ry="2" /> | |
| <text x="1178.36" y="783.5" ></text> | |
| </g> | |
| <g > | |
| <title>util_queue_add_job_locked.part.0 (35,693,700 samples, 0.02%)</title><rect x="877.4" y="565" width="0.3" height="15.0" fill="rgb(243,177,42)" rx="2" ry="2" /> | |
| <text x="880.44" y="575.5" ></text> | |
| </g> | |
| <g > | |
| <title>__arm64_sys_futex (63,022,796 samples, 0.03%)</title><rect x="530.7" y="565" width="0.5" height="15.0" fill="rgb(247,196,47)" rx="2" ry="2" /> | |
| <text x="533.74" y="575.5" ></text> | |
| </g> | |
| <g > | |
| <title>do_notify_resume (21,020,750 samples, 0.01%)</title><rect x="10.4" y="709" width="0.2" height="15.0" fill="rgb(233,129,30)" rx="2" ry="2" /> | |
| <text x="13.44" y="719.5" ></text> | |
| </g> | |
| <g > | |
| <title>update_shader_samplers (39,037,890 samples, 0.02%)</title><rect x="827.7" y="565" width="0.2" height="15.0" fill="rgb(229,113,27)" rx="2" ry="2" /> | |
| <text x="830.65" y="575.5" ></text> | |
| </g> | |
| <g > | |
| <title>pick_link (104,135,397 samples, 0.06%)</title><rect x="1185.5" y="501" width="0.7" height="15.0" fill="rgb(239,159,38)" rx="2" ry="2" /> | |
| <text x="1188.52" y="511.5" ></text> | |
| </g> | |
| <g > | |
| <title>cnd_wait (657,686,734 samples, 0.36%)</title><rect x="337.6" y="821" width="4.3" height="15.0" fill="rgb(230,118,28)" rx="2" ry="2" /> | |
| <text x="340.61" y="831.5" ></text> | |
| </g> | |
| <g > | |
| <title>[libX11.so.6.4.0] (33,855,903 samples, 0.02%)</title><rect x="543.5" y="709" width="0.2" height="15.0" fill="rgb(220,73,17)" rx="2" ry="2" /> | |
| <text x="546.47" y="719.5" ></text> | |
| </g> | |
| <g > | |
| <title>redeclip:gdrv0 (33,798,560,286 samples, 18.72%)</title><rect x="27.8" y="901" width="220.9" height="15.0" fill="rgb(242,172,41)" rx="2" ry="2" /> | |
| <text x="30.83" y="911.5" >redeclip:gdrv0</text> | |
| </g> | |
| <g > | |
| <title>wake_up_q (42,024,958 samples, 0.02%)</title><rect x="976.9" y="485" width="0.3" height="15.0" fill="rgb(237,151,36)" rx="2" ry="2" /> | |
| <text x="979.91" y="495.5" ></text> | |
| </g> | |
| <g > | |
| <title>copy_msghdr_from_user (20,008,689 samples, 0.01%)</title><rect x="1105.9" y="309" width="0.2" height="15.0" fill="rgb(240,161,38)" rx="2" ry="2" /> | |
| <text x="1108.94" y="319.5" ></text> | |
| </g> | |
| <g > | |
| <title>tc_bind_sampler_states (17,470,836 samples, 0.01%)</title><rect x="851.7" y="549" width="0.1" height="15.0" fill="rgb(218,61,14)" rx="2" ry="2" /> | |
| <text x="854.71" y="559.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_unmarshal_FramebufferTexture2D (33,752,935 samples, 0.02%)</title><rect x="460.1" y="805" width="0.2" height="15.0" fill="rgb(229,114,27)" rx="2" ry="2" /> | |
| <text x="463.10" y="815.5" ></text> | |
| </g> | |
| <g > | |
| <title>ksys_read (57,196,568 samples, 0.03%)</title><rect x="14.8" y="613" width="0.3" height="15.0" fill="rgb(229,113,27)" rx="2" ry="2" /> | |
| <text x="17.75" y="623.5" ></text> | |
| </g> | |
| <g > | |
| <title>st_get_texture_sampler_view_from_stobj (26,024,145 samples, 0.01%)</title><rect x="1112.6" y="629" width="0.1" height="15.0" fill="rgb(211,32,7)" rx="2" ry="2" /> | |
| <text x="1115.56" y="639.5" ></text> | |
| </g> | |
| <g > | |
| <title>si_upload_descriptors (42,767,720 samples, 0.02%)</title><rect x="890.0" y="549" width="0.2" height="15.0" fill="rgb(233,131,31)" rx="2" ry="2" /> | |
| <text x="892.96" y="559.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_unmarshal_Disable (15,668,999 samples, 0.01%)</title><rect x="927.8" y="661" width="0.1" height="15.0" fill="rgb(253,223,53)" rx="2" ry="2" /> | |
| <text x="930.79" y="671.5" ></text> | |
| </g> | |
| <g > | |
| <title>__pthread_mutex_cond_lock_full (43,425,196 samples, 0.02%)</title><rect x="16.8" y="773" width="0.3" height="15.0" fill="rgb(219,67,16)" rx="2" ry="2" /> | |
| <text x="19.84" y="783.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_update_texture_state (63,824,259 samples, 0.04%)</title><rect x="1002.9" y="597" width="0.4" height="15.0" fill="rgb(237,148,35)" rx="2" ry="2" /> | |
| <text x="1005.90" y="607.5" ></text> | |
| </g> | |
| <g > | |
| <title>__glDispatchCheckMultithreaded (19,329,992 samples, 0.01%)</title><rect x="506.8" y="789" width="0.1" height="15.0" fill="rgb(254,227,54)" rx="2" ry="2" /> | |
| <text x="509.82" y="799.5" ></text> | |
| </g> | |
| <g > | |
| <title>__aarch64_ldadd4_acq_rel (55,195,657 samples, 0.03%)</title><rect x="853.7" y="533" width="0.4" height="15.0" fill="rgb(228,108,25)" rx="2" ry="2" /> | |
| <text x="856.71" y="543.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_unmarshal_BindTexture (15,303,214 samples, 0.01%)</title><rect x="799.5" y="405" width="0.1" height="15.0" fill="rgb(248,199,47)" rx="2" ry="2" /> | |
| <text x="802.45" y="415.5" ></text> | |
| </g> | |
| <g > | |
| <title>st_get_texture_sampler_view_from_stobj (32,386,598 samples, 0.02%)</title><rect x="825.4" y="533" width="0.2" height="15.0" fill="rgb(211,32,7)" rx="2" ry="2" /> | |
| <text x="828.37" y="543.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_glthread_finish (609,815,357 samples, 0.34%)</title><rect x="972.4" y="709" width="4.0" height="15.0" fill="rgb(209,22,5)" rx="2" ry="2" /> | |
| <text x="975.43" y="719.5" ></text> | |
| </g> | |
| <g > | |
| <title>slab_zalloc (127,522,958 samples, 0.07%)</title><rect x="960.1" y="613" width="0.9" height="15.0" fill="rgb(232,128,30)" rx="2" ry="2" /> | |
| <text x="963.13" y="623.5" ></text> | |
| </g> | |
| <g > | |
| <title>llseek@GLIBC_2.17 (19,436,329 samples, 0.01%)</title><rect x="1050.5" y="709" width="0.1" height="15.0" fill="rgb(229,113,27)" rx="2" ry="2" /> | |
| <text x="1053.48" y="719.5" ></text> | |
| </g> | |
| <g > | |
| <title>[libz.so.1.3] (37,412,731 samples, 0.02%)</title><rect x="884.1" y="677" width="0.2" height="15.0" fill="rgb(230,116,27)" rx="2" ry="2" /> | |
| <text x="887.09" y="687.5" ></text> | |
| </g> | |
| <g > | |
| <title>amdgpu_cs_submit_ib_kernelq (23,348,826 samples, 0.01%)</title><rect x="337.1" y="789" width="0.1" height="15.0" fill="rgb(209,19,4)" rx="2" ry="2" /> | |
| <text x="340.09" y="799.5" ></text> | |
| </g> | |
| <g > | |
| <title>invoke_syscall (22,614,084 samples, 0.01%)</title><rect x="1106.2" y="389" width="0.1" height="15.0" fill="rgb(209,18,4)" rx="2" ry="2" /> | |
| <text x="1109.19" y="399.5" ></text> | |
| </g> | |
| <g > | |
| <title>_raw_spin_unlock_irqrestore (18,627,177 samples, 0.01%)</title><rect x="1107.6" y="181" width="0.2" height="15.0" fill="rgb(228,106,25)" rx="2" ry="2" /> | |
| <text x="1110.65" y="191.5" ></text> | |
| </g> | |
| <g > | |
| <title>si_query_hw_emit_stop (22,542,428 samples, 0.01%)</title><rect x="183.5" y="773" width="0.1" height="15.0" fill="rgb(223,86,20)" rx="2" ry="2" /> | |
| <text x="186.48" y="783.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_uniform (45,723,178 samples, 0.03%)</title><rect x="1091.0" y="693" width="0.2" height="15.0" fill="rgb(248,201,48)" rx="2" ry="2" /> | |
| <text x="1093.95" y="703.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_uniform (31,881,479 samples, 0.02%)</title><rect x="946.3" y="629" width="0.2" height="15.0" fill="rgb(248,201,48)" rx="2" ry="2" /> | |
| <text x="949.34" y="639.5" ></text> | |
| </g> | |
| <g > | |
| <title>st_prepare_draw (1,013,294,907 samples, 0.56%)</title><rect x="850.2" y="597" width="6.6" height="15.0" fill="rgb(214,45,10)" rx="2" ry="2" /> | |
| <text x="853.15" y="607.5" ></text> | |
| </g> | |
| <g > | |
| <title>st_prepare_draw (8,812,022,145 samples, 4.88%)</title><rect x="397.8" y="757" width="57.6" height="15.0" fill="rgb(214,45,10)" rx="2" ry="2" /> | |
| <text x="400.84" y="767.5" >st_pre..</text> | |
| </g> | |
| <g > | |
| <title>buffer_data_error (126,036,437 samples, 0.07%)</title><rect x="973.8" y="661" width="0.9" height="15.0" fill="rgb(213,38,9)" rx="2" ry="2" /> | |
| <text x="976.83" y="671.5" ></text> | |
| </g> | |
| <g > | |
| <title>el0t_64_sync (73,796,496 samples, 0.04%)</title><rect x="542.8" y="677" width="0.5" height="15.0" fill="rgb(217,56,13)" rx="2" ry="2" /> | |
| <text x="545.84" y="687.5" ></text> | |
| </g> | |
| <g > | |
| <title>_glapi_set_dispatch (28,962,204 samples, 0.02%)</title><rect x="982.2" y="677" width="0.1" height="15.0" fill="rgb(208,15,3)" rx="2" ry="2" /> | |
| <text x="985.15" y="687.5" ></text> | |
| </g> | |
| <g > | |
| <title>__arm64_sys_writev (271,878,652 samples, 0.15%)</title><rect x="540.9" y="581" width="1.8" height="15.0" fill="rgb(241,169,40)" rx="2" ry="2" /> | |
| <text x="543.95" y="591.5" ></text> | |
| </g> | |
| <g > | |
| <title>strcspn (52,861,718 samples, 0.03%)</title><rect x="787.4" y="181" width="0.3" height="15.0" fill="rgb(218,61,14)" rx="2" ry="2" /> | |
| <text x="790.38" y="191.5" ></text> | |
| </g> | |
| <g > | |
| <title>tc_buffer_subdata.part.0 (18,556,432 samples, 0.01%)</title><rect x="975.2" y="645" width="0.2" height="15.0" fill="rgb(231,120,28)" rx="2" ry="2" /> | |
| <text x="978.23" y="655.5" ></text> | |
| </g> | |
| <g > | |
| <title>step_into (108,760,659 samples, 0.06%)</title><rect x="1185.5" y="517" width="0.7" height="15.0" fill="rgb(226,98,23)" rx="2" ry="2" /> | |
| <text x="1188.49" y="527.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_tex_target_to_index (15,308,377 samples, 0.01%)</title><rect x="925.2" y="613" width="0.1" height="15.0" fill="rgb(233,131,31)" rx="2" ry="2" /> | |
| <text x="928.18" y="623.5" ></text> | |
| </g> | |
| <g > | |
| <title>si_update_common_shader_state (187,646,578 samples, 0.10%)</title><rect x="54.1" y="773" width="1.2" height="15.0" fill="rgb(244,182,43)" rx="2" ry="2" /> | |
| <text x="57.10" y="783.5" ></text> | |
| </g> | |
| <g > | |
| <title>si_shader_select (31,865,481 samples, 0.02%)</title><rect x="522.1" y="645" width="0.2" height="15.0" fill="rgb(254,227,54)" rx="2" ry="2" /> | |
| <text x="525.10" y="655.5" ></text> | |
| </g> | |
| <g > | |
| <title>do_el0_svc (412,559,578 samples, 0.23%)</title><rect x="28.9" y="709" width="2.7" height="15.0" fill="rgb(218,60,14)" rx="2" ry="2" /> | |
| <text x="31.88" y="719.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_DrawElementsBaseVertex (35,077,089 samples, 0.02%)</title><rect x="931.3" y="629" width="0.2" height="15.0" fill="rgb(214,41,10)" rx="2" ry="2" /> | |
| <text x="934.31" y="639.5" ></text> | |
| </g> | |
| <g > | |
| <title>invoke_syscall (20,751,725 samples, 0.01%)</title><rect x="876.3" y="389" width="0.1" height="15.0" fill="rgb(209,18,4)" rx="2" ry="2" /> | |
| <text x="879.31" y="399.5" ></text> | |
| </g> | |
| <g > | |
| <title>do_el0_svc (25,578,368 samples, 0.01%)</title><rect x="876.3" y="421" width="0.2" height="15.0" fill="rgb(218,60,14)" rx="2" ry="2" /> | |
| <text x="879.31" y="431.5" ></text> | |
| </g> | |
| <g > | |
| <title>el0t_64_sync (111,505,814 samples, 0.06%)</title><rect x="500.9" y="773" width="0.7" height="15.0" fill="rgb(217,56,13)" rx="2" ry="2" /> | |
| <text x="503.90" y="783.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_VertexAttribPointer (41,553,638 samples, 0.02%)</title><rect x="881.8" y="613" width="0.3" height="15.0" fill="rgb(211,29,7)" rx="2" ry="2" /> | |
| <text x="884.80" y="623.5" ></text> | |
| </g> | |
| <g > | |
| <title>buffer_data_error (17,859,407 samples, 0.01%)</title><rect x="974.5" y="645" width="0.2" height="15.0" fill="rgb(213,38,9)" rx="2" ry="2" /> | |
| <text x="977.54" y="655.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_marshal_MapBufferRange (64,431,366 samples, 0.04%)</title><rect x="782.3" y="117" width="0.4" height="15.0" fill="rgb(219,65,15)" rx="2" ry="2" /> | |
| <text x="785.32" y="127.5" ></text> | |
| </g> | |
| <g > | |
| <title>invoke_syscall (17,575,761 samples, 0.01%)</title><rect x="254.2" y="693" width="0.2" height="15.0" fill="rgb(209,18,4)" rx="2" ry="2" /> | |
| <text x="257.24" y="703.5" ></text> | |
| </g> | |
| <g > | |
| <title>try_to_unlazy (16,363,806 samples, 0.01%)</title><rect x="1186.0" y="485" width="0.2" height="15.0" fill="rgb(241,169,40)" rx="2" ry="2" /> | |
| <text x="1189.05" y="495.5" ></text> | |
| </g> | |
| <g > | |
| <title>st_finalize_texture (33,212,559 samples, 0.02%)</title><rect x="998.1" y="565" width="0.2" height="15.0" fill="rgb(232,124,29)" rx="2" ry="2" /> | |
| <text x="1001.10" y="575.5" ></text> | |
| </g> | |
| <g > | |
| <title>__GI___lll_lock_wake (172,633,188 samples, 0.10%)</title><rect x="35.9" y="789" width="1.1" height="15.0" fill="rgb(210,23,5)" rx="2" ry="2" /> | |
| <text x="38.85" y="799.5" ></text> | |
| </g> | |
| <g > | |
| <title>slab_free (360,505,115 samples, 0.20%)</title><rect x="77.3" y="773" width="2.4" height="15.0" fill="rgb(249,204,48)" rx="2" ry="2" /> | |
| <text x="80.34" y="783.5" ></text> | |
| </g> | |
| <g > | |
| <title>si_create_surface (45,604,744 samples, 0.03%)</title><rect x="515.9" y="693" width="0.3" height="15.0" fill="rgb(245,186,44)" rx="2" ry="2" /> | |
| <text x="518.95" y="703.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_lookup_or_create_texture (26,021,035 samples, 0.01%)</title><rect x="823.4" y="581" width="0.2" height="15.0" fill="rgb(235,140,33)" rx="2" ry="2" /> | |
| <text x="826.40" y="591.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_unmarshal_VertexAttrib4fARB (27,447,401 samples, 0.02%)</title><rect x="491.9" y="805" width="0.2" height="15.0" fill="rgb(215,47,11)" rx="2" ry="2" /> | |
| <text x="494.88" y="815.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_wait_query (2,810,485,179 samples, 1.56%)</title><rect x="884.5" y="677" width="18.3" height="15.0" fill="rgb(217,55,13)" rx="2" ry="2" /> | |
| <text x="887.45" y="687.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_reference_texobj_ (18,858,483 samples, 0.01%)</title><rect x="1060.8" y="613" width="0.1" height="15.0" fill="rgb(229,111,26)" rx="2" ry="2" /> | |
| <text x="1063.80" y="623.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_lookup_or_create_texture (73,774,251 samples, 0.04%)</title><rect x="823.2" y="597" width="0.4" height="15.0" fill="rgb(235,140,33)" rx="2" ry="2" /> | |
| <text x="826.16" y="607.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_update_state_locked (59,639,579 samples, 0.03%)</title><rect x="824.4" y="581" width="0.3" height="15.0" fill="rgb(214,43,10)" rx="2" ry="2" /> | |
| <text x="827.35" y="591.5" ></text> | |
| </g> | |
| <g > | |
| <title>_raw_spin_unlock (151,565,525 samples, 0.08%)</title><rect x="295.6" y="533" width="1.0" height="15.0" fill="rgb(223,85,20)" rx="2" ry="2" /> | |
| <text x="298.59" y="543.5" ></text> | |
| </g> | |
| <g > | |
| <title>el0t_64_sync (53,926,767 samples, 0.03%)</title><rect x="11.0" y="757" width="0.4" height="15.0" fill="rgb(217,56,13)" rx="2" ry="2" /> | |
| <text x="14.01" y="767.5" ></text> | |
| </g> | |
| <g > | |
| <title>drm_exec_fini (253,363,202 samples, 0.14%)</title><rect x="286.3" y="565" width="1.7" height="15.0" fill="rgb(253,225,53)" rx="2" ry="2" /> | |
| <text x="289.32" y="575.5" ></text> | |
| </g> | |
| <g > | |
| <title>tc_begin_next_buffer_list (20,417,769 samples, 0.01%)</title><rect x="459.8" y="757" width="0.2" height="15.0" fill="rgb(228,109,26)" rx="2" ry="2" /> | |
| <text x="462.85" y="767.5" ></text> | |
| </g> | |
| <g > | |
| <title>cnd_signal (174,678,183 samples, 0.10%)</title><rect x="458.7" y="725" width="1.1" height="15.0" fill="rgb(232,125,30)" rx="2" ry="2" /> | |
| <text x="461.69" y="735.5" ></text> | |
| </g> | |
| <g > | |
| <title>__aarch64_cas4_sync (89,485,075 samples, 0.05%)</title><rect x="861.3" y="645" width="0.6" height="15.0" fill="rgb(253,222,53)" rx="2" ry="2" /> | |
| <text x="864.32" y="655.5" ></text> | |
| </g> | |
| <g > | |
| <title>strcspn (29,178,459 samples, 0.02%)</title><rect x="818.4" y="629" width="0.2" height="15.0" fill="rgb(218,61,14)" rx="2" ry="2" /> | |
| <text x="821.39" y="639.5" ></text> | |
| </g> | |
| <g > | |
| <title>util_queue_add_job (18,035,588 samples, 0.01%)</title><rect x="38.8" y="757" width="0.1" height="15.0" fill="rgb(241,167,40)" rx="2" ry="2" /> | |
| <text x="41.80" y="767.5" ></text> | |
| </g> | |
| <g > | |
| <title>do_notify_resume (37,941,842 samples, 0.02%)</title><rect x="1095.9" y="629" width="0.3" height="15.0" fill="rgb(233,129,30)" rx="2" ry="2" /> | |
| <text x="1098.92" y="639.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_reference_renderbuffer_ (43,323,771 samples, 0.02%)</title><rect x="1089.2" y="645" width="0.3" height="15.0" fill="rgb(211,28,6)" rx="2" ry="2" /> | |
| <text x="1092.19" y="655.5" ></text> | |
| </g> | |
| <g > | |
| <title>malloc (19,817,516 samples, 0.01%)</title><rect x="1181.1" y="789" width="0.1" height="15.0" fill="rgb(230,119,28)" rx="2" ry="2" /> | |
| <text x="1184.07" y="799.5" ></text> | |
| </g> | |
| <g > | |
| <title>amdgpu_cs_add_buffer (45,811,797 samples, 0.03%)</title><rect x="147.3" y="725" width="0.3" height="15.0" fill="rgb(254,227,54)" rx="2" ry="2" /> | |
| <text x="150.30" y="735.5" ></text> | |
| </g> | |
| <g > | |
| <title>[unknown] (33,707,607 samples, 0.02%)</title><rect x="22.9" y="693" width="0.3" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" /> | |
| <text x="25.95" y="703.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_uniform (36,065,668 samples, 0.02%)</title><rect x="1065.2" y="661" width="0.3" height="15.0" fill="rgb(248,201,48)" rx="2" ry="2" /> | |
| <text x="1068.21" y="671.5" ></text> | |
| </g> | |
| <g > | |
| <title>amdgpu_cs_add_buffer (26,919,357 samples, 0.01%)</title><rect x="83.8" y="693" width="0.1" height="15.0" fill="rgb(254,227,54)" rx="2" ry="2" /> | |
| <text x="86.75" y="703.5" ></text> | |
| </g> | |
| <g > | |
| <title>si_bind_vs_shader (54,709,232 samples, 0.03%)</title><rect x="518.6" y="677" width="0.4" height="15.0" fill="rgb(252,216,51)" rx="2" ry="2" /> | |
| <text x="521.63" y="687.5" ></text> | |
| </g> | |
| <g > | |
| <title>__printf_buffer (260,595,304 samples, 0.14%)</title><rect x="513.3" y="645" width="1.7" height="15.0" fill="rgb(219,68,16)" rx="2" ry="2" /> | |
| <text x="516.27" y="655.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_reference_shader_program_ (229,675,605 samples, 0.13%)</title><rect x="485.6" y="741" width="1.5" height="15.0" fill="rgb(241,168,40)" rx="2" ry="2" /> | |
| <text x="488.59" y="751.5" ></text> | |
| </g> | |
| <g > | |
| <title>_XEnq (26,144,050 samples, 0.01%)</title><rect x="504.4" y="725" width="0.2" height="15.0" fill="rgb(245,184,44)" rx="2" ry="2" /> | |
| <text x="507.41" y="735.5" ></text> | |
| </g> | |
| <g > | |
| <title>util_copy_framebuffer_state (39,681,194 samples, 0.02%)</title><rect x="527.8" y="661" width="0.3" height="15.0" fill="rgb(234,137,32)" rx="2" ry="2" /> | |
| <text x="530.83" y="671.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_unmarshal_BindTexture (100,577,150 samples, 0.06%)</title><rect x="810.0" y="613" width="0.7" height="15.0" fill="rgb(248,199,47)" rx="2" ry="2" /> | |
| <text x="813.00" y="623.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_unmarshal_VertexAttrib4fARB (30,373,352 samples, 0.02%)</title><rect x="1155.7" y="709" width="0.2" height="15.0" fill="rgb(215,47,11)" rx="2" ry="2" /> | |
| <text x="1158.68" y="719.5" ></text> | |
| </g> | |
| <g > | |
| <title>__check_object_size (17,852,201 samples, 0.01%)</title><rect x="1107.8" y="197" width="0.1" height="15.0" fill="rgb(226,98,23)" rx="2" ry="2" /> | |
| <text x="1110.80" y="207.5" ></text> | |
| </g> | |
| <g > | |
| <title>__arm64_sys_recvmsg (31,405,517 samples, 0.02%)</title><rect x="1105.9" y="357" width="0.2" height="15.0" fill="rgb(236,144,34)" rx="2" ry="2" /> | |
| <text x="1108.89" y="367.5" ></text> | |
| </g> | |
| <g > | |
| <title>st_update_framebuffer_state (56,987,088 samples, 0.03%)</title><rect x="1007.4" y="613" width="0.4" height="15.0" fill="rgb(231,123,29)" rx="2" ry="2" /> | |
| <text x="1010.39" y="623.5" ></text> | |
| </g> | |
| <g > | |
| <title>update_array.constprop.0 (52,179,585 samples, 0.03%)</title><rect x="493.5" y="757" width="0.3" height="15.0" fill="rgb(224,88,21)" rx="2" ry="2" /> | |
| <text x="496.49" y="767.5" ></text> | |
| </g> | |
| <g > | |
| <title>__arm64_sys_ioctl (29,748,659 samples, 0.02%)</title><rect x="1160.8" y="469" width="0.2" height="15.0" fill="rgb(207,11,2)" rx="2" ry="2" /> | |
| <text x="1163.77" y="479.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_uniform_matrix (17,255,788 samples, 0.01%)</title><rect x="1091.3" y="661" width="0.1" height="15.0" fill="rgb(215,47,11)" rx="2" ry="2" /> | |
| <text x="1094.29" y="671.5" ></text> | |
| </g> | |
| <g > | |
| <title>validate_uniform_parameters (17,352,116 samples, 0.01%)</title><rect x="1065.3" y="645" width="0.2" height="15.0" fill="rgb(234,137,32)" rx="2" ry="2" /> | |
| <text x="1068.34" y="655.5" ></text> | |
| </g> | |
| <g > | |
| <title>thread_start (208,926,904 samples, 0.12%)</title><rect x="10.0" y="885" width="1.4" height="15.0" fill="rgb(212,34,8)" rx="2" ry="2" /> | |
| <text x="13.00" y="895.5" ></text> | |
| </g> | |
| <g > | |
| <title>st_get_sampler_views (54,203,252 samples, 0.03%)</title><rect x="929.5" y="597" width="0.3" height="15.0" fill="rgb(224,91,21)" rx="2" ry="2" /> | |
| <text x="932.48" y="607.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_bufferobj_data (104,949,323 samples, 0.06%)</title><rect x="973.9" y="645" width="0.6" height="15.0" fill="rgb(217,57,13)" rx="2" ry="2" /> | |
| <text x="976.85" y="655.5" ></text> | |
| </g> | |
| <g > | |
| <title>st_update_single_texture (468,865,877 samples, 0.26%)</title><rect x="444.5" y="693" width="3.0" height="15.0" fill="rgb(208,15,3)" rx="2" ry="2" /> | |
| <text x="447.45" y="703.5" ></text> | |
| </g> | |
| <g > | |
| <title>bool si_update_shaders< (30,595,654 samples, 0.02%)</title><rect x="521.9" y="645" width="0.2" height="15.0" fill="rgb(233,129,30)" rx="2" ry="2" /> | |
| <text x="524.89" y="655.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_validated_drawrangeelements (108,463,528 samples, 0.06%)</title><rect x="378.1" y="757" width="0.7" height="15.0" fill="rgb(230,115,27)" rx="2" ry="2" /> | |
| <text x="381.09" y="767.5" ></text> | |
| </g> | |
| <g > | |
| <title>cfree@GLIBC_2.17 (17,166,756 samples, 0.01%)</title><rect x="790.6" y="213" width="0.1" height="15.0" fill="rgb(224,88,21)" rx="2" ry="2" /> | |
| <text x="793.56" y="223.5" ></text> | |
| </g> | |
| <g > | |
| <title>update_framebuffer (58,570,896 samples, 0.03%)</title><rect x="1110.0" y="629" width="0.4" height="15.0" fill="rgb(222,78,18)" rx="2" ry="2" /> | |
| <text x="1112.97" y="639.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_uniform_matrix (21,136,457 samples, 0.01%)</title><rect x="1065.6" y="645" width="0.2" height="15.0" fill="rgb(215,47,11)" rx="2" ry="2" /> | |
| <text x="1068.62" y="655.5" ></text> | |
| </g> | |
| <g > | |
| <title>cso_set_depth_stencil_alpha (36,109,878 samples, 0.02%)</title><rect x="403.9" y="709" width="0.2" height="15.0" fill="rgb(254,227,54)" rx="2" ry="2" /> | |
| <text x="406.86" y="719.5" ></text> | |
| </g> | |
| <g > | |
| <title>el0_svc_common.constprop.0 (39,786,367 samples, 0.02%)</title><rect x="11.7" y="533" width="0.2" height="15.0" fill="rgb(224,89,21)" rx="2" ry="2" /> | |
| <text x="14.65" y="543.5" ></text> | |
| </g> | |
| <g > | |
| <title>futex_wake (34,762,998 samples, 0.02%)</title><rect x="456.0" y="533" width="0.2" height="15.0" fill="rgb(219,65,15)" rx="2" ry="2" /> | |
| <text x="458.98" y="543.5" ></text> | |
| </g> | |
| <g > | |
| <title>el0t_64_sync (106,770,819 samples, 0.06%)</title><rect x="509.8" y="661" width="0.7" height="15.0" fill="rgb(217,56,13)" rx="2" ry="2" /> | |
| <text x="512.79" y="671.5" ></text> | |
| </g> | |
| <g > | |
| <title>void st_update_array_templ< (29,473,075 samples, 0.02%)</title><rect x="1088.4" y="629" width="0.2" height="15.0" fill="rgb(243,178,42)" rx="2" ry="2" /> | |
| <text x="1091.43" y="639.5" ></text> | |
| </g> | |
| <g > | |
| <title>st_update_single_texture (516,446,088 samples, 0.29%)</title><rect x="444.1" y="709" width="3.4" height="15.0" fill="rgb(208,15,3)" rx="2" ry="2" /> | |
| <text x="447.14" y="719.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_shader_write_subroutine_indices (74,298,063 samples, 0.04%)</title><rect x="414.8" y="709" width="0.5" height="15.0" fill="rgb(227,105,25)" rx="2" ry="2" /> | |
| <text x="417.80" y="719.5" ></text> | |
| </g> | |
| <g > | |
| <title>si_set_constant_buffer (494,105,013 samples, 0.27%)</title><rect x="194.3" y="789" width="3.2" height="15.0" fill="rgb(215,46,11)" rx="2" ry="2" /> | |
| <text x="197.27" y="799.5" ></text> | |
| </g> | |
| <g > | |
| <title>pthread_cond_signal@@GLIBC_2.17 (15,653,767 samples, 0.01%)</title><rect x="883.5" y="629" width="0.1" height="15.0" fill="rgb(232,126,30)" rx="2" ry="2" /> | |
| <text x="886.53" y="639.5" ></text> | |
| </g> | |
| <g > | |
| <title>si_set_constant_buffer (18,600,126 samples, 0.01%)</title><rect x="84.9" y="741" width="0.2" height="15.0" fill="rgb(215,46,11)" rx="2" ry="2" /> | |
| <text x="87.93" y="751.5" ></text> | |
| </g> | |
| <g > | |
| <title>slab_alloc (122,176,515 samples, 0.07%)</title><rect x="960.2" y="597" width="0.8" height="15.0" fill="rgb(221,74,17)" rx="2" ry="2" /> | |
| <text x="963.16" y="607.5" ></text> | |
| </g> | |
| <g > | |
| <title>_raw_spin_unlock_irqrestore (21,088,285 samples, 0.01%)</title><rect x="314.3" y="549" width="0.1" height="15.0" fill="rgb(228,106,25)" rx="2" ry="2" /> | |
| <text x="317.30" y="559.5" ></text> | |
| </g> | |
| <g > | |
| <title>__sincosf (35,583,626 samples, 0.02%)</title><rect x="841.5" y="693" width="0.2" height="15.0" fill="rgb(246,188,45)" rx="2" ry="2" /> | |
| <text x="844.51" y="703.5" ></text> | |
| </g> | |
| <g > | |
| <title>update_shader_samplers (85,759,144 samples, 0.05%)</title><rect x="1012.3" y="613" width="0.6" height="15.0" fill="rgb(229,113,27)" rx="2" ry="2" /> | |
| <text x="1015.33" y="623.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_unmarshal_Clear (243,763,927 samples, 0.14%)</title><rect x="373.7" y="805" width="1.6" height="15.0" fill="rgb(227,105,25)" rx="2" ry="2" /> | |
| <text x="376.73" y="815.5" ></text> | |
| </g> | |
| <g > | |
| <title>tc_set_sampler_views (75,734,793 samples, 0.04%)</title><rect x="941.4" y="581" width="0.5" height="15.0" fill="rgb(250,209,50)" rx="2" ry="2" /> | |
| <text x="944.40" y="591.5" ></text> | |
| </g> | |
| <g > | |
| <title>invoke_syscall (15,979,218 samples, 0.01%)</title><rect x="447.9" y="533" width="0.1" height="15.0" fill="rgb(209,18,4)" rx="2" ry="2" /> | |
| <text x="450.91" y="543.5" ></text> | |
| </g> | |
| <g > | |
| <title>tc_buffer_map (22,993,404 samples, 0.01%)</title><rect x="1036.3" y="677" width="0.2" height="15.0" fill="rgb(247,195,46)" rx="2" ry="2" /> | |
| <text x="1039.33" y="687.5" ></text> | |
| </g> | |
| <g > | |
| <title>tc_add_draw_single_call (30,453,649 samples, 0.02%)</title><rect x="856.8" y="597" width="0.2" height="15.0" fill="rgb(214,45,10)" rx="2" ry="2" /> | |
| <text x="859.77" y="607.5" ></text> | |
| </g> | |
| <g > | |
| <title>buffer_data_error (224,751,719 samples, 0.12%)</title><rect x="371.2" y="789" width="1.5" height="15.0" fill="rgb(213,38,9)" rx="2" ry="2" /> | |
| <text x="374.24" y="799.5" ></text> | |
| </g> | |
| <g > | |
| <title>tc_call_set_sampler_views (225,184,885 samples, 0.12%)</title><rect x="528.1" y="693" width="1.5" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" /> | |
| <text x="531.11" y="703.5" ></text> | |
| </g> | |
| <g > | |
| <title>el0t_64_sync_handler (295,835,597 samples, 0.16%)</title><rect x="540.9" y="661" width="1.9" height="15.0" fill="rgb(211,32,7)" rx="2" ry="2" /> | |
| <text x="543.86" y="671.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_marshal_Uniform4fv (40,805,964 samples, 0.02%)</title><rect x="1068.4" y="741" width="0.3" height="15.0" fill="rgb(228,108,26)" rx="2" ry="2" /> | |
| <text x="1071.44" y="751.5" ></text> | |
| </g> | |
| <g > | |
| <title>si_set_vertex_buffers (121,872,326 samples, 0.07%)</title><rect x="247.6" y="773" width="0.8" height="15.0" fill="rgb(240,161,38)" rx="2" ry="2" /> | |
| <text x="250.61" y="783.5" ></text> | |
| </g> | |
| <g > | |
| <title>amdgpu_do_add_buffer (38,718,198 samples, 0.02%)</title><rect x="139.0" y="741" width="0.3" height="15.0" fill="rgb(223,86,20)" rx="2" ry="2" /> | |
| <text x="142.04" y="751.5" ></text> | |
| </g> | |
| <g > | |
| <title>pthread_cond_signal@@GLIBC_2.17 (20,120,129 samples, 0.01%)</title><rect x="805.9" y="549" width="0.1" height="15.0" fill="rgb(232,126,30)" rx="2" ry="2" /> | |
| <text x="808.86" y="559.5" ></text> | |
| </g> | |
| <g > | |
| <title>futex_wait (148,167,055 samples, 0.08%)</title><rect x="530.6" y="693" width="1.0" height="15.0" fill="rgb(235,138,33)" rx="2" ry="2" /> | |
| <text x="533.61" y="703.5" ></text> | |
| </g> | |
| <g > | |
| <title>ovl_permission (89,616,551 samples, 0.05%)</title><rect x="1183.8" y="501" width="0.6" height="15.0" fill="rgb(236,144,34)" rx="2" ry="2" /> | |
| <text x="1186.77" y="511.5" ></text> | |
| </g> | |
| <g > | |
| <title>tc_set_sampler_views (50,484,344 samples, 0.03%)</title><rect x="874.6" y="549" width="0.3" height="15.0" fill="rgb(250,209,50)" rx="2" ry="2" /> | |
| <text x="877.57" y="559.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_validated_drawrangeelements (20,192,713 samples, 0.01%)</title><rect x="866.7" y="613" width="0.1" height="15.0" fill="rgb(230,115,27)" rx="2" ry="2" /> | |
| <text x="869.71" y="623.5" ></text> | |
| </g> | |
| <g > | |
| <title>thread_start (13,569,053,316 samples, 7.52%)</title><rect x="248.7" y="885" width="88.7" height="15.0" fill="rgb(212,34,8)" rx="2" ry="2" /> | |
| <text x="251.73" y="895.5" >thread_start</text> | |
| </g> | |
| <g > | |
| <title>___sys_recvmsg (93,262,519 samples, 0.05%)</title><rect x="503.5" y="517" width="0.6" height="15.0" fill="rgb(238,153,36)" rx="2" ry="2" /> | |
| <text x="506.45" y="527.5" ></text> | |
| </g> | |
| <g > | |
| <title>el0t_64_sync_handler (148,777,241 samples, 0.08%)</title><rect x="458.9" y="661" width="0.9" height="15.0" fill="rgb(211,32,7)" rx="2" ry="2" /> | |
| <text x="461.86" y="671.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_unmarshal_UniformMatrix4fv (48,655,499 samples, 0.03%)</title><rect x="1065.6" y="693" width="0.3" height="15.0" fill="rgb(249,202,48)" rx="2" ry="2" /> | |
| <text x="1068.59" y="703.5" ></text> | |
| </g> | |
| <g > | |
| <title>st_get_sampler_view_format (57,977,814 samples, 0.03%)</title><rect x="1132.0" y="581" width="0.4" height="15.0" fill="rgb(211,30,7)" rx="2" ry="2" /> | |
| <text x="1135.02" y="591.5" ></text> | |
| </g> | |
| <g > | |
| <title>[redeclipse] (3,825,606,720 samples, 2.12%)</title><rect x="770.7" y="341" width="25.0" height="15.0" fill="rgb(253,222,53)" rx="2" ry="2" /> | |
| <text x="773.67" y="351.5" >[..</text> | |
| </g> | |
| <g > | |
| <title>st_make_bound_images_resident (73,115,452 samples, 0.04%)</title><rect x="412.2" y="725" width="0.5" height="15.0" fill="rgb(241,167,40)" rx="2" ry="2" /> | |
| <text x="415.20" y="735.5" ></text> | |
| </g> | |
| <g > | |
| <title>tc_add_draw_single_call (24,817,512 samples, 0.01%)</title><rect x="935.1" y="597" width="0.2" height="15.0" fill="rgb(214,45,10)" rx="2" ry="2" /> | |
| <text x="938.15" y="607.5" ></text> | |
| </g> | |
| <g > | |
| <title>strpbrk (120,601,269 samples, 0.07%)</title><rect x="807.9" y="629" width="0.8" height="15.0" fill="rgb(250,210,50)" rx="2" ry="2" /> | |
| <text x="810.91" y="639.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_DrawElementsBaseVertex (2,372,392,226 samples, 1.31%)</title><rect x="1001.6" y="661" width="15.5" height="15.0" fill="rgb(214,41,10)" rx="2" ry="2" /> | |
| <text x="1004.58" y="671.5" ></text> | |
| </g> | |
| <g > | |
| <title>__GI___ioctl (166,612,204 samples, 0.09%)</title><rect x="895.7" y="517" width="1.1" height="15.0" fill="rgb(232,128,30)" rx="2" ry="2" /> | |
| <text x="898.67" y="527.5" ></text> | |
| </g> | |
| <g > | |
| <title>tc_call_bind_rasterizer_state (56,573,996 samples, 0.03%)</title><rect x="57.5" y="789" width="0.3" height="15.0" fill="rgb(220,71,17)" rx="2" ry="2" /> | |
| <text x="60.48" y="799.5" ></text> | |
| </g> | |
| <g > | |
| <title>__GI___strlen_asimd (22,687,701 samples, 0.01%)</title><rect x="785.5" y="165" width="0.1" height="15.0" fill="rgb(213,41,9)" rx="2" ry="2" /> | |
| <text x="788.48" y="175.5" ></text> | |
| </g> | |
| <g > | |
| <title>do_futex (61,860,372 samples, 0.03%)</title><rect x="976.8" y="517" width="0.4" height="15.0" fill="rgb(245,184,44)" rx="2" ry="2" /> | |
| <text x="979.78" y="527.5" ></text> | |
| </g> | |
| <g > | |
| <title>__GI___writev (300,689,799 samples, 0.17%)</title><rect x="540.8" y="709" width="2.0" height="15.0" fill="rgb(217,56,13)" rx="2" ry="2" /> | |
| <text x="543.83" y="719.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_uniform (19,390,554 samples, 0.01%)</title><rect x="1090.4" y="677" width="0.1" height="15.0" fill="rgb(248,201,48)" rx="2" ry="2" /> | |
| <text x="1093.42" y="687.5" ></text> | |
| </g> | |
| <g > | |
| <title>do_futex (227,143,108 samples, 0.13%)</title><rect x="29.1" y="645" width="1.5" height="15.0" fill="rgb(245,184,44)" rx="2" ry="2" /> | |
| <text x="32.08" y="655.5" ></text> | |
| </g> | |
| <g > | |
| <title>st_prepare_draw (37,667,455 samples, 0.02%)</title><rect x="1081.4" y="661" width="0.2" height="15.0" fill="rgb(214,45,10)" rx="2" ry="2" /> | |
| <text x="1084.39" y="671.5" ></text> | |
| </g> | |
| <g > | |
| <title>el0t_64_sync_handler (331,293,231 samples, 0.18%)</title><rect x="1161.2" y="549" width="2.2" height="15.0" fill="rgb(211,32,7)" rx="2" ry="2" /> | |
| <text x="1164.19" y="559.5" ></text> | |
| </g> | |
| <g > | |
| <title>__arm64_sys_ioctl (196,581,475 samples, 0.11%)</title><rect x="188.5" y="581" width="1.3" height="15.0" fill="rgb(207,11,2)" rx="2" ry="2" /> | |
| <text x="191.51" y="591.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_update_state (44,790,886 samples, 0.02%)</title><rect x="1152.9" y="677" width="0.3" height="15.0" fill="rgb(222,78,18)" rx="2" ry="2" /> | |
| <text x="1155.90" y="687.5" ></text> | |
| </g> | |
| <g > | |
| <title>amdgpu_bo_fence_wait (439,207,991 samples, 0.24%)</title><rect x="1160.6" y="645" width="2.9" height="15.0" fill="rgb(214,41,9)" rx="2" ry="2" /> | |
| <text x="1163.59" y="655.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_flush_vertices_for_uniforms (24,431,637 samples, 0.01%)</title><rect x="476.2" y="741" width="0.2" height="15.0" fill="rgb(211,31,7)" rx="2" ry="2" /> | |
| <text x="479.20" y="751.5" ></text> | |
| </g> | |
| <g > | |
| <title>st_prepare_draw (18,114,513 samples, 0.01%)</title><rect x="945.6" y="629" width="0.2" height="15.0" fill="rgb(214,45,10)" rx="2" ry="2" /> | |
| <text x="948.64" y="639.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_uniform (121,490,732 samples, 0.07%)</title><rect x="1020.7" y="661" width="0.8" height="15.0" fill="rgb(248,201,48)" rx="2" ry="2" /> | |
| <text x="1023.68" y="671.5" ></text> | |
| </g> | |
| <g > | |
| <title>read (60,362,550 samples, 0.03%)</title><rect x="14.7" y="757" width="0.4" height="15.0" fill="rgb(252,216,51)" rx="2" ry="2" /> | |
| <text x="17.73" y="767.5" ></text> | |
| </g> | |
| <g > | |
| <title>tc_add_draw_single_call (154,807,991 samples, 0.09%)</title><rect x="396.8" y="741" width="1.0" height="15.0" fill="rgb(214,45,10)" rx="2" ry="2" /> | |
| <text x="399.83" y="751.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_uniform (1,247,122,037 samples, 0.69%)</title><rect x="465.9" y="789" width="8.1" height="15.0" fill="rgb(248,201,48)" rx="2" ry="2" /> | |
| <text x="468.86" y="799.5" ></text> | |
| </g> | |
| <g > | |
| <title>si_set_framebuffer_state (41,137,916 samples, 0.02%)</title><rect x="527.4" y="661" width="0.3" height="15.0" fill="rgb(211,31,7)" rx="2" ry="2" /> | |
| <text x="530.40" y="671.5" ></text> | |
| </g> | |
| <g > | |
| <title>si_bind_vs_shader (23,096,338 samples, 0.01%)</title><rect x="519.0" y="661" width="0.1" height="15.0" fill="rgb(252,216,51)" rx="2" ry="2" /> | |
| <text x="521.99" y="671.5" ></text> | |
| </g> | |
| <g > | |
| <title>el0_svc (18,062,737 samples, 0.01%)</title><rect x="39.0" y="661" width="0.1" height="15.0" fill="rgb(244,183,43)" rx="2" ry="2" /> | |
| <text x="41.98" y="671.5" ></text> | |
| </g> | |
| <g > | |
| <title>_raw_spin_unlock_irqrestore (33,766,124 samples, 0.02%)</title><rect x="901.9" y="341" width="0.2" height="15.0" fill="rgb(228,106,25)" rx="2" ry="2" /> | |
| <text x="904.87" y="351.5" ></text> | |
| </g> | |
| <g > | |
| <title>tc_buffer_subdata.part.0 (83,959,770 samples, 0.05%)</title><rect x="974.8" y="661" width="0.6" height="15.0" fill="rgb(231,120,28)" rx="2" ry="2" /> | |
| <text x="977.83" y="671.5" ></text> | |
| </g> | |
| <g > | |
| <title>strcpy (16,541,151 samples, 0.01%)</title><rect x="515.1" y="693" width="0.1" height="15.0" fill="rgb(240,161,38)" rx="2" ry="2" /> | |
| <text x="518.08" y="703.5" ></text> | |
| </g> | |
| <g > | |
| <title>si_pm4_emit_state (77,045,404 samples, 0.04%)</title><rect x="159.3" y="757" width="0.5" height="15.0" fill="rgb(232,128,30)" rx="2" ry="2" /> | |
| <text x="162.31" y="767.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_lookup_bufferobj.part.0 (43,382,369 samples, 0.02%)</title><rect x="922.8" y="613" width="0.3" height="15.0" fill="rgb(223,84,20)" rx="2" ry="2" /> | |
| <text x="925.80" y="623.5" ></text> | |
| </g> | |
| <g > | |
| <title>__printf_buffer_write (25,728,477 samples, 0.01%)</title><rect x="917.1" y="645" width="0.1" height="15.0" fill="rgb(220,73,17)" rx="2" ry="2" /> | |
| <text x="920.08" y="655.5" ></text> | |
| </g> | |
| <g > | |
| <title>__rseq_handle_notify_resume (21,292,553 samples, 0.01%)</title><rect x="16.6" y="677" width="0.1" height="15.0" fill="rgb(238,153,36)" rx="2" ry="2" /> | |
| <text x="19.60" y="687.5" ></text> | |
| </g> | |
| <g > | |
| <title>ac_drm_cs_submit_raw2 (10,039,772,389 samples, 5.56%)</title><rect x="265.9" y="789" width="65.6" height="15.0" fill="rgb(205,1,0)" rx="2" ry="2" /> | |
| <text x="268.86" y="799.5" >ac_drm_..</text> | |
| </g> | |
| <g > | |
| <title>_mesa_unmarshal_DrawElements (31,060,110 samples, 0.02%)</title><rect x="811.9" y="613" width="0.2" height="15.0" fill="rgb(247,195,46)" rx="2" ry="2" /> | |
| <text x="814.87" y="623.5" ></text> | |
| </g> | |
| <g > | |
| <title>[libSDL2-2.0.so.0.3000.0] (526,400,369 samples, 0.29%)</title><rect x="502.3" y="805" width="3.5" height="15.0" fill="rgb(227,102,24)" rx="2" ry="2" /> | |
| <text x="505.33" y="815.5" ></text> | |
| </g> | |
| <g > | |
| <title>update_textures (931,910,717 samples, 0.52%)</title><rect x="1128.0" y="645" width="6.1" height="15.0" fill="rgb(232,125,29)" rx="2" ry="2" /> | |
| <text x="1131.04" y="655.5" ></text> | |
| </g> | |
| <g > | |
| <title>amdgpu_drm_ioctl (50,513,393 samples, 0.03%)</title><rect x="331.7" y="629" width="0.4" height="15.0" fill="rgb(246,190,45)" rx="2" ry="2" /> | |
| <text x="334.75" y="639.5" ></text> | |
| </g> | |
| <g > | |
| <title>sock_recvmsg (114,465,246 samples, 0.06%)</title><rect x="1107.2" y="309" width="0.7" height="15.0" fill="rgb(206,5,1)" rx="2" ry="2" /> | |
| <text x="1110.18" y="319.5" ></text> | |
| </g> | |
| <g > | |
| <title>si_update_common_shader_state (88,443,447 samples, 0.05%)</title><rect x="62.4" y="757" width="0.6" height="15.0" fill="rgb(244,182,43)" rx="2" ry="2" /> | |
| <text x="65.40" y="767.5" ></text> | |
| </g> | |
| <g > | |
| <title>__GI___strlen_asimd (93,054,992 samples, 0.05%)</title><rect x="839.7" y="693" width="0.7" height="15.0" fill="rgb(213,41,9)" rx="2" ry="2" /> | |
| <text x="842.75" y="703.5" ></text> | |
| </g> | |
| <g > | |
| <title>wake_up_q (22,423,994 samples, 0.01%)</title><rect x="1178.0" y="549" width="0.1" height="15.0" fill="rgb(237,151,36)" rx="2" ry="2" /> | |
| <text x="1180.98" y="559.5" ></text> | |
| </g> | |
| <g > | |
| <title>si_flush_all_queues (1,418,176,680 samples, 0.79%)</title><rect x="183.7" y="789" width="9.3" height="15.0" fill="rgb(212,36,8)" rx="2" ry="2" /> | |
| <text x="186.71" y="799.5" ></text> | |
| </g> | |
| <g > | |
| <title>validate_array_format.constprop.0 (21,556,221 samples, 0.01%)</title><rect x="1148.6" y="661" width="0.1" height="15.0" fill="rgb(232,126,30)" rx="2" ry="2" /> | |
| <text x="1151.56" y="671.5" ></text> | |
| </g> | |
| <g > | |
| <title>[redeclipse] (11,764,153,068 samples, 6.52%)</title><rect x="741.9" y="677" width="76.9" height="15.0" fill="rgb(253,222,53)" rx="2" ry="2" /> | |
| <text x="744.94" y="687.5" >[redecli..</text> | |
| </g> | |
| <g > | |
| <title>_mesa_unmarshal_DisableVertexAttribArray (18,839,254 samples, 0.01%)</title><rect x="928.1" y="645" width="0.1" height="15.0" fill="rgb(214,45,10)" rx="2" ry="2" /> | |
| <text x="931.09" y="655.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_update_texture_state (230,809,223 samples, 0.13%)</title><rect x="380.8" y="725" width="1.5" height="15.0" fill="rgb(237,148,35)" rx="2" ry="2" /> | |
| <text x="383.82" y="735.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_update_state (347,918,027 samples, 0.19%)</title><rect x="847.5" y="613" width="2.3" height="15.0" fill="rgb(222,78,18)" rx="2" ry="2" /> | |
| <text x="850.49" y="623.5" ></text> | |
| </g> | |
| <g > | |
| <title>cso_set_vertex_elements_direct (40,221,932 samples, 0.02%)</title><rect x="942.9" y="565" width="0.3" height="15.0" fill="rgb(222,80,19)" rx="2" ry="2" /> | |
| <text x="945.92" y="575.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_lookup_bufferobj.part.0 (18,203,243 samples, 0.01%)</title><rect x="1077.3" y="661" width="0.1" height="15.0" fill="rgb(223,84,20)" rx="2" ry="2" /> | |
| <text x="1080.25" y="671.5" ></text> | |
| </g> | |
| <g > | |
| <title>glthread_unmarshal_batch (917,171,202 samples, 0.51%)</title><rect x="809.7" y="629" width="5.9" height="15.0" fill="rgb(247,195,46)" rx="2" ry="2" /> | |
| <text x="812.65" y="639.5" ></text> | |
| </g> | |
| <g > | |
| <title>__GI___strchrnul (19,921,838 samples, 0.01%)</title><rect x="916.5" y="661" width="0.1" height="15.0" fill="rgb(224,89,21)" rx="2" ry="2" /> | |
| <text x="919.48" y="671.5" ></text> | |
| </g> | |
| <g > | |
| <title>__aarch64_ldadd4_acq_rel (54,638,866 samples, 0.03%)</title><rect x="925.4" y="613" width="0.4" height="15.0" fill="rgb(228,108,25)" rx="2" ry="2" /> | |
| <text x="928.40" y="623.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_UseProgram (172,753,905 samples, 0.10%)</title><rect x="1066.2" y="677" width="1.1" height="15.0" fill="rgb(212,36,8)" rx="2" ry="2" /> | |
| <text x="1069.20" y="687.5" ></text> | |
| </g> | |
| <g > | |
| <title>__aarch64_swp4_acq_rel (18,052,596 samples, 0.01%)</title><rect x="192.8" y="741" width="0.1" height="15.0" fill="rgb(205,3,0)" rx="2" ry="2" /> | |
| <text x="195.78" y="751.5" ></text> | |
| </g> | |
| <g > | |
| <title>util_queue_add_job_locked.part.0 (30,792,126 samples, 0.02%)</title><rect x="453.1" y="693" width="0.2" height="15.0" fill="rgb(243,177,42)" rx="2" ry="2" /> | |
| <text x="456.10" y="703.5" ></text> | |
| </g> | |
| <g > | |
| <title>void st_update_array_templ< (18,794,133 samples, 0.01%)</title><rect x="1154.1" y="661" width="0.1" height="15.0" fill="rgb(243,178,42)" rx="2" ry="2" /> | |
| <text x="1157.07" y="671.5" ></text> | |
| </g> | |
| <g > | |
| <title>el0_svc (56,070,934 samples, 0.03%)</title><rect x="38.3" y="661" width="0.4" height="15.0" fill="rgb(244,183,43)" rx="2" ry="2" /> | |
| <text x="41.32" y="671.5" ></text> | |
| </g> | |
| <g > | |
| <title>__GI___ioctl (42,968,457 samples, 0.02%)</title><rect x="190.1" y="693" width="0.3" height="15.0" fill="rgb(232,128,30)" rx="2" ry="2" /> | |
| <text x="193.07" y="703.5" ></text> | |
| </g> | |
| <g > | |
| <title>update_shader_samplers (32,947,092 samples, 0.02%)</title><rect x="1087.0" y="645" width="0.2" height="15.0" fill="rgb(229,113,27)" rx="2" ry="2" /> | |
| <text x="1090.00" y="655.5" ></text> | |
| </g> | |
| <g > | |
| <title>st_make_bound_images_resident (34,596,375 samples, 0.02%)</title><rect x="1124.2" y="613" width="0.2" height="15.0" fill="rgb(241,167,40)" rx="2" ry="2" /> | |
| <text x="1127.17" y="623.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_update_texture_state (179,047,432 samples, 0.10%)</title><rect x="932.8" y="581" width="1.2" height="15.0" fill="rgb(237,148,35)" rx="2" ry="2" /> | |
| <text x="935.84" y="591.5" ></text> | |
| </g> | |
| <g > | |
| <title>el0t_64_sync (24,040,853 samples, 0.01%)</title><rect x="14.4" y="709" width="0.2" height="15.0" fill="rgb(217,56,13)" rx="2" ry="2" /> | |
| <text x="17.44" y="719.5" ></text> | |
| </g> | |
| <g > | |
| <title>el0_svc (39,219,753 samples, 0.02%)</title><rect x="190.1" y="645" width="0.3" height="15.0" fill="rgb(244,183,43)" rx="2" ry="2" /> | |
| <text x="193.10" y="655.5" ></text> | |
| </g> | |
| <g > | |
| <title>strpbrk (29,178,459 samples, 0.02%)</title><rect x="818.4" y="645" width="0.2" height="15.0" fill="rgb(250,210,50)" rx="2" ry="2" /> | |
| <text x="821.39" y="655.5" ></text> | |
| </g> | |
| <g > | |
| <title>start_thread (33,798,560,286 samples, 18.72%)</title><rect x="27.8" y="869" width="220.9" height="15.0" fill="rgb(212,34,8)" rx="2" ry="2" /> | |
| <text x="30.83" y="879.5" >start_thread</text> | |
| </g> | |
| <g > | |
| <title>getname_flags (69,673,965 samples, 0.04%)</title><rect x="1181.6" y="581" width="0.5" height="15.0" fill="rgb(247,195,46)" rx="2" ry="2" /> | |
| <text x="1184.60" y="591.5" ></text> | |
| </g> | |
| <g > | |
| <title>__GI___pthread_mutex_unlock_usercnt (188,373,237 samples, 0.10%)</title><rect x="35.8" y="805" width="1.2" height="15.0" fill="rgb(231,123,29)" rx="2" ry="2" /> | |
| <text x="38.81" y="815.5" ></text> | |
| </g> | |
| <g > | |
| <title>__GI___strlen_asimd (18,065,045 samples, 0.01%)</title><rect x="797.5" y="389" width="0.1" height="15.0" fill="rgb(213,41,9)" rx="2" ry="2" /> | |
| <text x="800.47" y="399.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_glthread_finish (131,698,025 samples, 0.07%)</title><rect x="799.4" y="437" width="0.9" height="15.0" fill="rgb(209,22,5)" rx="2" ry="2" /> | |
| <text x="802.44" y="447.5" ></text> | |
| </g> | |
| <g > | |
| <title>update_program (63,284,268 samples, 0.04%)</title><rect x="1118.5" y="629" width="0.4" height="15.0" fill="rgb(236,145,34)" rx="2" ry="2" /> | |
| <text x="1121.49" y="639.5" ></text> | |
| </g> | |
| <g > | |
| <title>el0t_64_sync_handler (39,219,753 samples, 0.02%)</title><rect x="190.1" y="661" width="0.3" height="15.0" fill="rgb(211,32,7)" rx="2" ry="2" /> | |
| <text x="193.10" y="671.5" ></text> | |
| </g> | |
| <g > | |
| <title>[libxcb.so.1.1.0] (52,283,863 samples, 0.03%)</title><rect x="543.5" y="725" width="0.3" height="15.0" fill="rgb(226,98,23)" rx="2" ry="2" /> | |
| <text x="546.47" y="735.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_unmarshal_BlendFunc (24,308,940 samples, 0.01%)</title><rect x="824.1" y="629" width="0.2" height="15.0" fill="rgb(232,127,30)" rx="2" ry="2" /> | |
| <text x="827.11" y="639.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_marshal_BindBuffer (16,045,302 samples, 0.01%)</title><rect x="842.7" y="693" width="0.1" height="15.0" fill="rgb(240,161,38)" rx="2" ry="2" /> | |
| <text x="845.74" y="703.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_update_texture_state (29,805,556 samples, 0.02%)</title><rect x="1058.5" y="613" width="0.2" height="15.0" fill="rgb(237,148,35)" rx="2" ry="2" /> | |
| <text x="1061.48" y="623.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_update_state (116,670,700 samples, 0.06%)</title><rect x="1083.4" y="677" width="0.8" height="15.0" fill="rgb(222,78,18)" rx="2" ry="2" /> | |
| <text x="1086.41" y="687.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_BindTexture (287,926,989 samples, 0.16%)</title><rect x="923.4" y="645" width="1.9" height="15.0" fill="rgb(234,136,32)" rx="2" ry="2" /> | |
| <text x="926.40" y="655.5" ></text> | |
| </g> | |
| <g > | |
| <title>do_el0_svc (17,994,172 samples, 0.01%)</title><rect x="1172.8" y="629" width="0.2" height="15.0" fill="rgb(218,60,14)" rx="2" ry="2" /> | |
| <text x="1175.85" y="639.5" ></text> | |
| </g> | |
| <g > | |
| <title>do_futex (29,550,363 samples, 0.02%)</title><rect x="17.1" y="629" width="0.2" height="15.0" fill="rgb(245,184,44)" rx="2" ry="2" /> | |
| <text x="20.14" y="639.5" ></text> | |
| </g> | |
| <g > | |
| <title>el0_svc_common.constprop.0 (838,289,115 samples, 0.46%)</title><rect x="1181.4" y="661" width="5.5" height="15.0" fill="rgb(224,89,21)" rx="2" ry="2" /> | |
| <text x="1184.40" y="671.5" ></text> | |
| </g> | |
| <g > | |
| <title>get_futex_key (41,431,089 samples, 0.02%)</title><rect x="252.9" y="645" width="0.2" height="15.0" fill="rgb(252,216,51)" rx="2" ry="2" /> | |
| <text x="255.87" y="655.5" ></text> | |
| </g> | |
| <g > | |
| <title>__aarch64_ldadd4_acq_rel (18,240,497 samples, 0.01%)</title><rect x="375.1" y="741" width="0.1" height="15.0" fill="rgb(228,108,25)" rx="2" ry="2" /> | |
| <text x="378.11" y="751.5" ></text> | |
| </g> | |
| <g > | |
| <title>do_el0_svc (27,046,149 samples, 0.01%)</title><rect x="447.9" y="565" width="0.2" height="15.0" fill="rgb(218,60,14)" rx="2" ry="2" /> | |
| <text x="450.91" y="575.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_glthread_finish (19,763,842 samples, 0.01%)</title><rect x="1151.1" y="725" width="0.1" height="15.0" fill="rgb(209,22,5)" rx="2" ry="2" /> | |
| <text x="1154.09" y="735.5" ></text> | |
| </g> | |
| <g > | |
| <title>__sincosf (55,483,848 samples, 0.03%)</title><rect x="1171.4" y="773" width="0.3" height="15.0" fill="rgb(246,188,45)" rx="2" ry="2" /> | |
| <text x="1174.38" y="783.5" ></text> | |
| </g> | |
| <g > | |
| <title>map_buffer_range (18,358,554 samples, 0.01%)</title><rect x="962.0" y="693" width="0.2" height="15.0" fill="rgb(244,183,43)" rx="2" ry="2" /> | |
| <text x="965.04" y="703.5" ></text> | |
| </g> | |
| <g > | |
| <title>update_textures (75,287,466 samples, 0.04%)</title><rect x="865.9" y="597" width="0.5" height="15.0" fill="rgb(232,125,29)" rx="2" ry="2" /> | |
| <text x="868.89" y="607.5" ></text> | |
| </g> | |
| <g > | |
| <title>__aarch64_ldadd4_acq_rel (18,946,663 samples, 0.01%)</title><rect x="863.3" y="597" width="0.2" height="15.0" fill="rgb(228,108,25)" rx="2" ry="2" /> | |
| <text x="866.34" y="607.5" ></text> | |
| </g> | |
| <g > | |
| <title>strpbrk (115,957,232 samples, 0.06%)</title><rect x="911.6" y="693" width="0.8" height="15.0" fill="rgb(250,210,50)" rx="2" ry="2" /> | |
| <text x="914.60" y="703.5" ></text> | |
| </g> | |
| <g > | |
| <title>update_textures (62,762,572 samples, 0.03%)</title><rect x="813.2" y="549" width="0.4" height="15.0" fill="rgb(232,125,29)" rx="2" ry="2" /> | |
| <text x="816.18" y="559.5" ></text> | |
| </g> | |
| <g > | |
| <title>invoke_syscall (24,040,853 samples, 0.01%)</title><rect x="14.4" y="629" width="0.2" height="15.0" fill="rgb(209,18,4)" rx="2" ry="2" /> | |
| <text x="17.44" y="639.5" ></text> | |
| </g> | |
| <g > | |
| <title>el0t_64_sync_handler (30,845,615 samples, 0.02%)</title><rect x="1106.2" y="453" width="0.2" height="15.0" fill="rgb(211,32,7)" rx="2" ry="2" /> | |
| <text x="1109.17" y="463.5" ></text> | |
| </g> | |
| <g > | |
| <title>el0t_64_sync_handler (10,002,309,564 samples, 5.54%)</title><rect x="266.1" y="741" width="65.3" height="15.0" fill="rgb(211,32,7)" rx="2" ry="2" /> | |
| <text x="269.07" y="751.5" >el0t_64..</text> | |
| </g> | |
| <g > | |
| <title>si_pm4_emit_rasterizer (17,186,444 samples, 0.01%)</title><rect x="526.4" y="645" width="0.1" height="15.0" fill="rgb(254,225,54)" rx="2" ry="2" /> | |
| <text x="529.43" y="655.5" ></text> | |
| </g> | |
| <g > | |
| <title>_raw_spin_unlock_irqrestore (57,553,799 samples, 0.03%)</title><rect x="1173.9" y="517" width="0.4" height="15.0" fill="rgb(228,106,25)" rx="2" ry="2" /> | |
| <text x="1176.92" y="527.5" ></text> | |
| </g> | |
| <g > | |
| <title>__aarch64_ldadd4_acq_rel (51,463,810 samples, 0.03%)</title><rect x="864.1" y="597" width="0.3" height="15.0" fill="rgb(228,108,25)" rx="2" ry="2" /> | |
| <text x="867.08" y="607.5" ></text> | |
| </g> | |
| <g > | |
| <title>st_Clear (696,885,393 samples, 0.39%)</title><rect x="1104.8" y="693" width="4.6" height="15.0" fill="rgb(211,30,7)" rx="2" ry="2" /> | |
| <text x="1107.84" y="703.5" ></text> | |
| </g> | |
| <g > | |
| <title>glthread_unmarshal_batch (122,148,947 samples, 0.07%)</title><rect x="882.2" y="645" width="0.8" height="15.0" fill="rgb(247,195,46)" rx="2" ry="2" /> | |
| <text x="885.22" y="655.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_glthread_finish (30,550,663 samples, 0.02%)</title><rect x="1055.7" y="709" width="0.2" height="15.0" fill="rgb(209,22,5)" rx="2" ry="2" /> | |
| <text x="1058.68" y="719.5" ></text> | |
| </g> | |
| <g > | |
| <title>futex_wake (45,994,070 samples, 0.03%)</title><rect x="35.1" y="661" width="0.3" height="15.0" fill="rgb(219,65,15)" rx="2" ry="2" /> | |
| <text x="38.09" y="671.5" ></text> | |
| </g> | |
| <g > | |
| <title>amdgpu_cs_add_buffer (41,273,518 samples, 0.02%)</title><rect x="528.4" y="645" width="0.3" height="15.0" fill="rgb(254,227,54)" rx="2" ry="2" /> | |
| <text x="531.40" y="655.5" ></text> | |
| </g> | |
| <g > | |
| <title>update_shader_samplers (193,269,662 samples, 0.11%)</title><rect x="1126.8" y="629" width="1.2" height="15.0" fill="rgb(229,113,27)" rx="2" ry="2" /> | |
| <text x="1129.78" y="639.5" ></text> | |
| </g> | |
| <g > | |
| <title>clear_rseq_cs.isra.0 (48,854,544 samples, 0.03%)</title><rect x="33.3" y="693" width="0.4" height="15.0" fill="rgb(250,210,50)" rx="2" ry="2" /> | |
| <text x="36.34" y="703.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_VertexAttrib4Nubv (25,689,324 samples, 0.01%)</title><rect x="830.4" y="597" width="0.2" height="15.0" fill="rgb(231,121,29)" rx="2" ry="2" /> | |
| <text x="833.39" y="607.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_uniform (235,143,260 samples, 0.13%)</title><rect x="1139.6" y="677" width="1.5" height="15.0" fill="rgb(248,201,48)" rx="2" ry="2" /> | |
| <text x="1142.58" y="687.5" ></text> | |
| </g> | |
| <g > | |
| <title>st_upload_constants (131,599,650 samples, 0.07%)</title><rect x="937.5" y="597" width="0.8" height="15.0" fill="rgb(238,154,36)" rx="2" ry="2" /> | |
| <text x="940.46" y="607.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_DrawElementsBaseVertex (52,481,925 samples, 0.03%)</title><rect x="1113.4" y="677" width="0.3" height="15.0" fill="rgb(214,41,10)" rx="2" ry="2" /> | |
| <text x="1116.40" y="687.5" ></text> | |
| </g> | |
| <g > | |
| <title>do_el0_svc (17,012,329 samples, 0.01%)</title><rect x="805.9" y="485" width="0.1" height="15.0" fill="rgb(218,60,14)" rx="2" ry="2" /> | |
| <text x="808.88" y="495.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_unmarshal_Uniform4fv (60,577,710 samples, 0.03%)</title><rect x="1065.2" y="693" width="0.4" height="15.0" fill="rgb(212,33,8)" rx="2" ry="2" /> | |
| <text x="1068.18" y="703.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_uniform (643,384,953 samples, 0.36%)</title><rect x="466.0" y="773" width="4.2" height="15.0" fill="rgb(248,201,48)" rx="2" ry="2" /> | |
| <text x="469.03" y="783.5" ></text> | |
| </g> | |
| <g > | |
| <title>tc_buffer_map (401,397,862 samples, 0.22%)</title><rect x="903.6" y="661" width="2.7" height="15.0" fill="rgb(247,195,46)" rx="2" ry="2" /> | |
| <text x="906.64" y="671.5" ></text> | |
| </g> | |
| <g > | |
| <title>st_get_texture_sampler_view_from_stobj (125,097,519 samples, 0.07%)</title><rect x="873.2" y="533" width="0.8" height="15.0" fill="rgb(211,32,7)" rx="2" ry="2" /> | |
| <text x="876.15" y="543.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_unmarshal_BindTexture (433,358,015 samples, 0.24%)</title><rect x="844.2" y="645" width="2.9" height="15.0" fill="rgb(248,199,47)" rx="2" ry="2" /> | |
| <text x="847.24" y="655.5" ></text> | |
| </g> | |
| <g > | |
| <title>tc_set_framebuffer_state (16,759,837 samples, 0.01%)</title><rect x="1082.1" y="645" width="0.1" height="15.0" fill="rgb(244,180,43)" rx="2" ry="2" /> | |
| <text x="1085.07" y="655.5" ></text> | |
| </g> | |
| <g > | |
| <title>xcb_poll_for_special_event (192,698,330 samples, 0.11%)</title><rect x="507.5" y="725" width="1.2" height="15.0" fill="rgb(224,90,21)" rx="2" ry="2" /> | |
| <text x="510.48" y="735.5" ></text> | |
| </g> | |
| <g > | |
| <title>el0_svc_common.constprop.0 (49,442,933 samples, 0.03%)</title><rect x="11.0" y="693" width="0.4" height="15.0" fill="rgb(224,89,21)" rx="2" ry="2" /> | |
| <text x="14.04" y="703.5" ></text> | |
| </g> | |
| <g > | |
| <title>tc_create_surface (31,500,983 samples, 0.02%)</title><rect x="1108.9" y="629" width="0.2" height="15.0" fill="rgb(227,105,25)" rx="2" ry="2" /> | |
| <text x="1111.89" y="639.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_update_texture_state (229,561,584 samples, 0.13%)</title><rect x="932.5" y="597" width="1.5" height="15.0" fill="rgb(237,148,35)" rx="2" ry="2" /> | |
| <text x="935.51" y="607.5" ></text> | |
| </g> | |
| <g > | |
| <title>__kernel_clock_gettime (48,888,947 samples, 0.03%)</title><rect x="1163.8" y="613" width="0.3" height="15.0" fill="rgb(231,122,29)" rx="2" ry="2" /> | |
| <text x="1166.81" y="623.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_use_program (184,676,208 samples, 0.10%)</title><rect x="1146.3" y="645" width="1.2" height="15.0" fill="rgb(235,141,33)" rx="2" ry="2" /> | |
| <text x="1149.26" y="655.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_unmarshal_BindBuffer (156,006,148 samples, 0.09%)</title><rect x="922.3" y="661" width="1.0" height="15.0" fill="rgb(223,86,20)" rx="2" ry="2" /> | |
| <text x="925.31" y="671.5" ></text> | |
| </g> | |
| <g > | |
| <title>st_update_rasterizer (17,994,201 samples, 0.01%)</title><rect x="1059.5" y="645" width="0.1" height="15.0" fill="rgb(240,164,39)" rx="2" ry="2" /> | |
| <text x="1062.46" y="655.5" ></text> | |
| </g> | |
| <g > | |
| <title>sort_r (656,065,177 samples, 0.36%)</title><rect x="301.1" y="533" width="4.3" height="15.0" fill="rgb(217,58,13)" rx="2" ry="2" /> | |
| <text x="304.09" y="543.5" ></text> | |
| </g> | |
| <g > | |
| <title>el0t_64_sync_handler (75,257,872 samples, 0.04%)</title><rect x="35.0" y="773" width="0.5" height="15.0" fill="rgb(211,32,7)" rx="2" ry="2" /> | |
| <text x="38.01" y="783.5" ></text> | |
| </g> | |
| <g > | |
| <title>update_single_program_texture (35,848,880 samples, 0.02%)</title><rect x="827.2" y="533" width="0.2" height="15.0" fill="rgb(241,165,39)" rx="2" ry="2" /> | |
| <text x="830.15" y="543.5" ></text> | |
| </g> | |
| <g > | |
| <title>__aarch64_cas4_sync (31,589,897 samples, 0.02%)</title><rect x="1096.2" y="709" width="0.2" height="15.0" fill="rgb(253,222,53)" rx="2" ry="2" /> | |
| <text x="1099.23" y="719.5" ></text> | |
| </g> | |
| <g > | |
| <title>copy_uniforms_to_storage (465,722,901 samples, 0.26%)</title><rect x="470.2" y="773" width="3.1" height="15.0" fill="rgb(250,207,49)" rx="2" ry="2" /> | |
| <text x="473.24" y="783.5" ></text> | |
| </g> | |
| <g > | |
| <title>syscall_trace_exit (16,588,599 samples, 0.01%)</title><rect x="980.4" y="565" width="0.1" height="15.0" fill="rgb(247,196,46)" rx="2" ry="2" /> | |
| <text x="983.36" y="575.5" ></text> | |
| </g> | |
| <g > | |
| <title>si_set_sampler_views (203,056,439 samples, 0.11%)</title><rect x="528.2" y="661" width="1.3" height="15.0" fill="rgb(218,61,14)" rx="2" ry="2" /> | |
| <text x="531.21" y="671.5" ></text> | |
| </g> | |
| <g > | |
| <title>get_query_result (68,612,385 samples, 0.04%)</title><rect x="1034.0" y="693" width="0.5" height="15.0" fill="rgb(228,106,25)" rx="2" ry="2" /> | |
| <text x="1037.04" y="703.5" ></text> | |
| </g> | |
| <g > | |
| <title>tc_call_bind_vs_state (17,651,126 samples, 0.01%)</title><rect x="43.1" y="789" width="0.1" height="15.0" fill="rgb(214,44,10)" rx="2" ry="2" /> | |
| <text x="46.08" y="799.5" ></text> | |
| </g> | |
| <g > | |
| <title>_raw_spin_unlock_irqrestore (168,258,936 samples, 0.09%)</title><rect x="311.1" y="533" width="1.1" height="15.0" fill="rgb(228,106,25)" rx="2" ry="2" /> | |
| <text x="314.10" y="543.5" ></text> | |
| </g> | |
| <g > | |
| <title>util_blitter_clear (593,747,508 samples, 0.33%)</title><rect x="82.0" y="773" width="3.8" height="15.0" fill="rgb(205,3,0)" rx="2" ry="2" /> | |
| <text x="84.96" y="783.5" ></text> | |
| </g> | |
| <g > | |
| <title>amdgpu_sync_fence (32,145,870 samples, 0.02%)</title><rect x="317.8" y="549" width="0.2" height="15.0" fill="rgb(226,97,23)" rx="2" ry="2" /> | |
| <text x="320.75" y="559.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_reference_shader_program_ (17,764,687 samples, 0.01%)</title><rect x="950.1" y="597" width="0.1" height="15.0" fill="rgb(241,168,40)" rx="2" ry="2" /> | |
| <text x="953.11" y="607.5" ></text> | |
| </g> | |
| <g > | |
| <title>__vsnprintf_internal (16,125,145 samples, 0.01%)</title><rect x="821.3" y="645" width="0.1" height="15.0" fill="rgb(237,150,35)" rx="2" ry="2" /> | |
| <text x="824.28" y="655.5" ></text> | |
| </g> | |
| <g > | |
| <title>__condvar_dec_grefs (35,738,315 samples, 0.02%)</title><rect x="341.3" y="789" width="0.3" height="15.0" fill="rgb(226,98,23)" rx="2" ry="2" /> | |
| <text x="344.33" y="799.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_lookup_shader_program_err_glthread (679,833,652 samples, 0.38%)</title><rect x="478.7" y="773" width="4.5" height="15.0" fill="rgb(246,190,45)" rx="2" ry="2" /> | |
| <text x="481.74" y="783.5" ></text> | |
| </g> | |
| <g > | |
| <title>__aarch64_ldadd4_acq_rel (254,538,595 samples, 0.14%)</title><rect x="382.8" y="709" width="1.6" height="15.0" fill="rgb(228,108,25)" rx="2" ry="2" /> | |
| <text x="385.77" y="719.5" ></text> | |
| </g> | |
| <g > | |
| <title>amdgpu_ctx_get_entity (31,920,759 samples, 0.02%)</title><rect x="305.4" y="549" width="0.2" height="15.0" fill="rgb(248,198,47)" rx="2" ry="2" /> | |
| <text x="308.42" y="559.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_glthread_finish (21,489,161 samples, 0.01%)</title><rect x="1095.1" y="725" width="0.1" height="15.0" fill="rgb(209,22,5)" rx="2" ry="2" /> | |
| <text x="1098.09" y="735.5" ></text> | |
| </g> | |
| <g > | |
| <title>si_buffer_get_transfer (325,203,498 samples, 0.18%)</title><rect x="1036.8" y="661" width="2.1" height="15.0" fill="rgb(224,91,21)" rx="2" ry="2" /> | |
| <text x="1039.79" y="671.5" ></text> | |
| </g> | |
| <g > | |
| <title>do_notify_resume (157,218,297 samples, 0.09%)</title><rect x="250.6" y="709" width="1.0" height="15.0" fill="rgb(233,129,30)" rx="2" ry="2" /> | |
| <text x="253.62" y="719.5" ></text> | |
| </g> | |
| <g > | |
| <title>__aarch64_cas4_sync (26,198,082 samples, 0.01%)</title><rect x="810.0" y="565" width="0.2" height="15.0" fill="rgb(253,222,53)" rx="2" ry="2" /> | |
| <text x="813.05" y="575.5" ></text> | |
| </g> | |
| <g > | |
| <title>st_get_texture_sampler_view_from_stobj (57,516,631 samples, 0.03%)</title><rect x="1087.5" y="597" width="0.3" height="15.0" fill="rgb(211,32,7)" rx="2" ry="2" /> | |
| <text x="1090.46" y="607.5" ></text> | |
| </g> | |
| <g > | |
| <title>__aarch64_ldadd4_acq_rel (129,161,644 samples, 0.07%)</title><rect x="1102.4" y="661" width="0.9" height="15.0" fill="rgb(228,108,25)" rx="2" ry="2" /> | |
| <text x="1105.43" y="671.5" ></text> | |
| </g> | |
| <g > | |
| <title>si_set_sampler_view_desc (21,239,999 samples, 0.01%)</title><rect x="529.4" y="629" width="0.1" height="15.0" fill="rgb(216,53,12)" rx="2" ry="2" /> | |
| <text x="532.40" y="639.5" ></text> | |
| </g> | |
| <g > | |
| <title>_raw_spin_unlock_irqrestore (37,005,524 samples, 0.02%)</title><rect x="539.0" y="453" width="0.3" height="15.0" fill="rgb(228,106,25)" rx="2" ry="2" /> | |
| <text x="542.05" y="463.5" ></text> | |
| </g> | |
| <g > | |
| <title>dma_resv_add_fence (321,802,184 samples, 0.18%)</title><rect x="308.7" y="565" width="2.1" height="15.0" fill="rgb(219,65,15)" rx="2" ry="2" /> | |
| <text x="311.68" y="575.5" ></text> | |
| </g> | |
| <g > | |
| <title>buffer_data_error (32,876,331 samples, 0.02%)</title><rect x="372.5" y="773" width="0.2" height="15.0" fill="rgb(213,38,9)" rx="2" ry="2" /> | |
| <text x="375.50" y="783.5" ></text> | |
| </g> | |
| <g > | |
| <title>do_poll.constprop.0 (20,392,127 samples, 0.01%)</title><rect x="543.1" y="549" width="0.1" height="15.0" fill="rgb(236,145,34)" rx="2" ry="2" /> | |
| <text x="546.07" y="559.5" ></text> | |
| </g> | |
| <g > | |
| <title>ac_set_mutable_cb_surface_fields (22,064,413 samples, 0.01%)</title><rect x="139.6" y="741" width="0.2" height="15.0" fill="rgb(253,224,53)" rx="2" ry="2" /> | |
| <text x="142.64" y="751.5" ></text> | |
| </g> | |
| <g > | |
| <title>tc_buffer_map (106,923,013 samples, 0.06%)</title><rect x="1039.4" y="677" width="0.7" height="15.0" fill="rgb(247,195,46)" rx="2" ry="2" /> | |
| <text x="1042.41" y="687.5" ></text> | |
| </g> | |
| <g > | |
| <title>st_get_sampler_views (308,915,438 samples, 0.17%)</title><rect x="872.4" y="565" width="2.0" height="15.0" fill="rgb(224,91,21)" rx="2" ry="2" /> | |
| <text x="875.37" y="575.5" ></text> | |
| </g> | |
| <g > | |
| <title>futex_wait (19,079,733 samples, 0.01%)</title><rect x="516.8" y="533" width="0.1" height="15.0" fill="rgb(235,138,33)" rx="2" ry="2" /> | |
| <text x="519.79" y="543.5" ></text> | |
| </g> | |
| <g > | |
| <title>__arm64_sys_ioctl (65,362,399 samples, 0.04%)</title><rect x="331.7" y="645" width="0.4" height="15.0" fill="rgb(207,11,2)" rx="2" ry="2" /> | |
| <text x="334.67" y="655.5" ></text> | |
| </g> | |
| <g > | |
| <title>pa_write (16,784,005 samples, 0.01%)</title><rect x="12.8" y="709" width="0.1" height="15.0" fill="rgb(214,43,10)" rx="2" ry="2" /> | |
| <text x="15.77" y="719.5" ></text> | |
| </g> | |
| <g > | |
| <title>sort (805,231,026 samples, 0.45%)</title><rect x="300.1" y="549" width="5.3" height="15.0" fill="rgb(217,59,14)" rx="2" ry="2" /> | |
| <text x="303.11" y="559.5" ></text> | |
| </g> | |
| <g > | |
| <title>amdgpu_lookup_buffer (22,380,287 samples, 0.01%)</title><rect x="893.1" y="533" width="0.1" height="15.0" fill="rgb(216,54,13)" rx="2" ry="2" /> | |
| <text x="896.10" y="543.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_BindTexture (61,550,587 samples, 0.03%)</title><rect x="1077.7" y="693" width="0.5" height="15.0" fill="rgb(234,136,32)" rx="2" ry="2" /> | |
| <text x="1080.75" y="703.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_update_valid_to_render_state (23,583,584 samples, 0.01%)</title><rect x="950.3" y="581" width="0.1" height="15.0" fill="rgb(219,66,15)" rx="2" ry="2" /> | |
| <text x="953.28" y="591.5" ></text> | |
| </g> | |
| <g > | |
| <title>amdgpu_fence_create (323,549,621 samples, 0.18%)</title><rect x="188.0" y="741" width="2.1" height="15.0" fill="rgb(244,179,42)" rx="2" ry="2" /> | |
| <text x="190.96" y="751.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_DrawElementsBaseVertex (208,303,559 samples, 0.12%)</title><rect x="377.5" y="773" width="1.3" height="15.0" fill="rgb(214,41,10)" rx="2" ry="2" /> | |
| <text x="380.47" y="783.5" ></text> | |
| </g> | |
| <g > | |
| <title>do_notify_resume (46,900,330 samples, 0.03%)</title><rect x="14.1" y="677" width="0.3" height="15.0" fill="rgb(233,129,30)" rx="2" ry="2" /> | |
| <text x="17.11" y="687.5" ></text> | |
| </g> | |
| <g > | |
| <title>amdgpu_ttm_tt_pte_flags (21,966,775 samples, 0.01%)</title><rect x="325.7" y="565" width="0.2" height="15.0" fill="rgb(219,64,15)" rx="2" ry="2" /> | |
| <text x="328.73" y="575.5" ></text> | |
| </g> | |
| <g > | |
| <title>__schedule (15,619,151 samples, 0.01%)</title><rect x="901.2" y="325" width="0.1" height="15.0" fill="rgb(227,103,24)" rx="2" ry="2" /> | |
| <text x="904.18" y="335.5" ></text> | |
| </g> | |
| <g > | |
| <title>tc_buffer_map (23,185,342 samples, 0.01%)</title><rect x="1045.9" y="709" width="0.1" height="15.0" fill="rgb(247,195,46)" rx="2" ry="2" /> | |
| <text x="1048.87" y="719.5" ></text> | |
| </g> | |
| <g > | |
| <title>__traverse_mounts (31,026,296 samples, 0.02%)</title><rect x="1185.0" y="485" width="0.2" height="15.0" fill="rgb(233,132,31)" rx="2" ry="2" /> | |
| <text x="1188.03" y="495.5" ></text> | |
| </g> | |
| <g > | |
| <title>amdgpu_cs_add_buffer (80,015,890 samples, 0.04%)</title><rect x="47.4" y="773" width="0.5" height="15.0" fill="rgb(254,227,54)" rx="2" ry="2" /> | |
| <text x="50.40" y="783.5" ></text> | |
| </g> | |
| <g > | |
| <title>loader_dri3_swap_buffers_msc (5,638,581,016 samples, 3.12%)</title><rect x="507.3" y="789" width="36.8" height="15.0" fill="rgb(205,3,0)" rx="2" ry="2" /> | |
| <text x="510.28" y="799.5" >loa..</text> | |
| </g> | |
| <g > | |
| <title>_mesa_glthread_finish (28,212,450 samples, 0.02%)</title><rect x="861.0" y="661" width="0.2" height="15.0" fill="rgb(209,22,5)" rx="2" ry="2" /> | |
| <text x="863.98" y="671.5" ></text> | |
| </g> | |
| <g > | |
| <title>_raw_spin_unlock_irq (18,994,392 samples, 0.01%)</title><rect x="14.4" y="581" width="0.2" height="15.0" fill="rgb(215,47,11)" rx="2" ry="2" /> | |
| <text x="17.44" y="591.5" ></text> | |
| </g> | |
| <g > | |
| <title>cso_set_vertex_elements_direct (18,544,053 samples, 0.01%)</title><rect x="1088.1" y="597" width="0.1" height="15.0" fill="rgb(222,80,19)" rx="2" ry="2" /> | |
| <text x="1091.11" y="607.5" ></text> | |
| </g> | |
| <g > | |
| <title>el0t_64_sync (16,780,893 samples, 0.01%)</title><rect x="943.3" y="485" width="0.1" height="15.0" fill="rgb(217,56,13)" rx="2" ry="2" /> | |
| <text x="946.32" y="495.5" ></text> | |
| </g> | |
| <g > | |
| <title>syscall_trace_exit (48,075,253 samples, 0.03%)</title><rect x="331.0" y="677" width="0.3" height="15.0" fill="rgb(247,196,46)" rx="2" ry="2" /> | |
| <text x="333.96" y="687.5" ></text> | |
| </g> | |
| <g > | |
| <title>copy_msghdr_from_user (59,938,622 samples, 0.03%)</title><rect x="503.7" y="501" width="0.4" height="15.0" fill="rgb(240,161,38)" rx="2" ry="2" /> | |
| <text x="506.67" y="511.5" ></text> | |
| </g> | |
| <g > | |
| <title>pthread_cond_signal@@GLIBC_2.17 (20,121,086 samples, 0.01%)</title><rect x="977.9" y="661" width="0.1" height="15.0" fill="rgb(232,126,30)" rx="2" ry="2" /> | |
| <text x="980.88" y="671.5" ></text> | |
| </g> | |
| <g > | |
| <title>__aarch64_ldadd4_acq_rel (26,311,157 samples, 0.01%)</title><rect x="984.4" y="629" width="0.1" height="15.0" fill="rgb(228,108,25)" rx="2" ry="2" /> | |
| <text x="987.37" y="639.5" ></text> | |
| </g> | |
| <g > | |
| <title>el0_svc_common.constprop.0 (57,196,568 samples, 0.03%)</title><rect x="14.8" y="661" width="0.3" height="15.0" fill="rgb(224,89,21)" rx="2" ry="2" /> | |
| <text x="17.75" y="671.5" ></text> | |
| </g> | |
| <g > | |
| <title>util_queue_add_job_locked.part.0 (101,197,401 samples, 0.06%)</title><rect x="1177.6" y="757" width="0.7" height="15.0" fill="rgb(243,177,42)" rx="2" ry="2" /> | |
| <text x="1180.62" y="767.5" ></text> | |
| </g> | |
| <g > | |
| <title>unix_stream_read_actor (21,254,986 samples, 0.01%)</title><rect x="1107.8" y="261" width="0.1" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" /> | |
| <text x="1110.79" y="271.5" ></text> | |
| </g> | |
| <g > | |
| <title>memcmp (15,848,813 samples, 0.01%)</title><rect x="1139.2" y="661" width="0.1" height="15.0" fill="rgb(235,141,33)" rx="2" ry="2" /> | |
| <text x="1142.16" y="671.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_unmarshal_Uniform3f (41,146,144 samples, 0.02%)</title><rect x="1019.8" y="677" width="0.2" height="15.0" fill="rgb(231,119,28)" rx="2" ry="2" /> | |
| <text x="1022.76" y="687.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_use_shader_program (58,909,870 samples, 0.03%)</title><rect x="880.8" y="613" width="0.4" height="15.0" fill="rgb(245,188,44)" rx="2" ry="2" /> | |
| <text x="883.80" y="623.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_lookup_or_create_texture (2,075,802,702 samples, 1.15%)</title><rect x="350.2" y="773" width="13.6" height="15.0" fill="rgb(235,140,33)" rx="2" ry="2" /> | |
| <text x="353.21" y="783.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_use_shader_program (39,278,961 samples, 0.02%)</title><rect x="951.0" y="613" width="0.2" height="15.0" fill="rgb(245,188,44)" rx="2" ry="2" /> | |
| <text x="953.97" y="623.5" ></text> | |
| </g> | |
| <g > | |
| <title>tc_add_set_vertex_buffers_call (18,298,396 samples, 0.01%)</title><rect x="1135.2" y="629" width="0.2" height="15.0" fill="rgb(214,45,10)" rx="2" ry="2" /> | |
| <text x="1138.24" y="639.5" ></text> | |
| </g> | |
| <g > | |
| <title>xcb_send_request (79,324,237 samples, 0.04%)</title><rect x="543.4" y="757" width="0.5" height="15.0" fill="rgb(217,55,13)" rx="2" ry="2" /> | |
| <text x="546.40" y="767.5" ></text> | |
| </g> | |
| <g > | |
| <title>glthread_unmarshal_batch (69,974,874 samples, 0.04%)</title><rect x="509.1" y="741" width="0.5" height="15.0" fill="rgb(247,195,46)" rx="2" ry="2" /> | |
| <text x="512.11" y="751.5" ></text> | |
| </g> | |
| <g > | |
| <title>idr_for_each (25,098,421 samples, 0.01%)</title><rect x="1189.8" y="645" width="0.2" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" /> | |
| <text x="1192.84" y="655.5" ></text> | |
| </g> | |
| <g > | |
| <title>futex_wait_setup (51,543,613 samples, 0.03%)</title><rect x="980.0" y="485" width="0.3" height="15.0" fill="rgb(247,195,46)" rx="2" ry="2" /> | |
| <text x="983.01" y="495.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_BeginQueryIndexed (38,864,792 samples, 0.02%)</title><rect x="347.0" y="789" width="0.3" height="15.0" fill="rgb(223,83,20)" rx="2" ry="2" /> | |
| <text x="350.03" y="799.5" ></text> | |
| </g> | |
| <g > | |
| <title>pthread_cond_signal@@GLIBC_2.17 (15,308,801 samples, 0.01%)</title><rect x="944.5" y="549" width="0.1" height="15.0" fill="rgb(232,126,30)" rx="2" ry="2" /> | |
| <text x="947.53" y="559.5" ></text> | |
| </g> | |
| <g > | |
| <title>tc_buffer_map (21,992,505 samples, 0.01%)</title><rect x="817.0" y="613" width="0.2" height="15.0" fill="rgb(247,195,46)" rx="2" ry="2" /> | |
| <text x="820.04" y="623.5" ></text> | |
| </g> | |
| <g > | |
| <title>__rseq_handle_notify_resume (18,474,153 samples, 0.01%)</title><rect x="901.4" y="453" width="0.2" height="15.0" fill="rgb(238,153,36)" rx="2" ry="2" /> | |
| <text x="904.44" y="463.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_marshal_BufferSubData_merged (175,887,591 samples, 0.10%)</title><rect x="1171.9" y="773" width="1.1" height="15.0" fill="rgb(214,41,9)" rx="2" ry="2" /> | |
| <text x="1174.86" y="783.5" ></text> | |
| </g> | |
| <g > | |
| <title>void st_update_array_impl< (48,283,226 samples, 0.03%)</title><rect x="1134.1" y="645" width="0.3" height="15.0" fill="rgb(217,56,13)" rx="2" ry="2" /> | |
| <text x="1137.13" y="655.5" ></text> | |
| </g> | |
| <g > | |
| <title>__libc_start_main@@GLIBC_2.34 (105,189,987,668 samples, 58.26%)</title><rect x="502.1" y="869" width="687.5" height="15.0" fill="rgb(229,113,27)" rx="2" ry="2" /> | |
| <text x="505.09" y="879.5" >__libc_start_main@@GLIBC_2.34</text> | |
| </g> | |
| <g > | |
| <title>_mesa_MapBufferRange (89,201,015 samples, 0.05%)</title><rect x="917.8" y="709" width="0.6" height="15.0" fill="rgb(238,156,37)" rx="2" ry="2" /> | |
| <text x="920.83" y="719.5" ></text> | |
| </g> | |
| <g > | |
| <title>el0t_64_sync_handler (36,424,765 samples, 0.02%)</title><rect x="506.5" y="741" width="0.2" height="15.0" fill="rgb(211,32,7)" rx="2" ry="2" /> | |
| <text x="509.48" y="751.5" ></text> | |
| </g> | |
| <g > | |
| <title>update_textures (127,475,904 samples, 0.07%)</title><rect x="1087.2" y="645" width="0.8" height="15.0" fill="rgb(232,125,29)" rx="2" ry="2" /> | |
| <text x="1090.21" y="655.5" ></text> | |
| </g> | |
| <g > | |
| <title>el0t_64_sync_handler (29,550,363 samples, 0.02%)</title><rect x="17.1" y="725" width="0.2" height="15.0" fill="rgb(211,32,7)" rx="2" ry="2" /> | |
| <text x="20.14" y="735.5" ></text> | |
| </g> | |
| <g > | |
| <title>st_update_single_texture (15,549,959 samples, 0.01%)</title><rect x="866.2" y="565" width="0.1" height="15.0" fill="rgb(208,15,3)" rx="2" ry="2" /> | |
| <text x="869.16" y="575.5" ></text> | |
| </g> | |
| <g > | |
| <title>amdgpu_drm_ioctl (9,824,476,933 samples, 5.44%)</title><rect x="266.5" y="645" width="64.2" height="15.0" fill="rgb(246,190,45)" rx="2" ry="2" /> | |
| <text x="269.50" y="655.5" >amdgpu_..</text> | |
| </g> | |
| <g > | |
| <title>__aarch64_cas4_sync (22,764,684 samples, 0.01%)</title><rect x="997.0" y="581" width="0.2" height="15.0" fill="rgb(253,222,53)" rx="2" ry="2" /> | |
| <text x="1000.04" y="591.5" ></text> | |
| </g> | |
| <g > | |
| <title>dma_fence_release (24,540,316 samples, 0.01%)</title><rect x="308.4" y="485" width="0.2" height="15.0" fill="rgb(234,136,32)" rx="2" ry="2" /> | |
| <text x="311.44" y="495.5" ></text> | |
| </g> | |
| <g > | |
| <title>si_buffer_do_flush_region (118,194,927 samples, 0.07%)</title><rect x="72.5" y="757" width="0.7" height="15.0" fill="rgb(241,169,40)" rx="2" ry="2" /> | |
| <text x="75.47" y="767.5" ></text> | |
| </g> | |
| <g > | |
| <title>unmap_buffer (91,143,850 samples, 0.05%)</title><rect x="948.5" y="645" width="0.6" height="15.0" fill="rgb(233,131,31)" rx="2" ry="2" /> | |
| <text x="951.53" y="655.5" ></text> | |
| </g> | |
| <g > | |
| <title>strcspn (40,159,478 samples, 0.02%)</title><rect x="793.8" y="293" width="0.3" height="15.0" fill="rgb(218,61,14)" rx="2" ry="2" /> | |
| <text x="796.81" y="303.5" ></text> | |
| </g> | |
| <g > | |
| <title>tc_get_query_result (2,806,820,964 samples, 1.55%)</title><rect x="884.5" y="645" width="18.3" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" /> | |
| <text x="887.48" y="655.5" ></text> | |
| </g> | |
| <g > | |
| <title>[libxcb.so.1.1.0] (179,233,901 samples, 0.10%)</title><rect x="503.2" y="709" width="1.2" height="15.0" fill="rgb(226,98,23)" rx="2" ry="2" /> | |
| <text x="506.19" y="719.5" ></text> | |
| </g> | |
| <g > | |
| <title>__GI___ioctl (40,902,276 samples, 0.02%)</title><rect x="1160.8" y="581" width="0.2" height="15.0" fill="rgb(232,128,30)" rx="2" ry="2" /> | |
| <text x="1163.77" y="591.5" ></text> | |
| </g> | |
| <g > | |
| <title>__libc_recvmsg (33,834,516 samples, 0.02%)</title><rect x="374.6" y="597" width="0.2" height="15.0" fill="rgb(220,72,17)" rx="2" ry="2" /> | |
| <text x="377.59" y="607.5" ></text> | |
| </g> | |
| <g > | |
| <title>si_is_resource_busy (101,278,143 samples, 0.06%)</title><rect x="371.3" y="741" width="0.6" height="15.0" fill="rgb(233,132,31)" rx="2" ry="2" /> | |
| <text x="374.28" y="751.5" ></text> | |
| </g> | |
| <g > | |
| <title>el0_svc (61,425,998 samples, 0.03%)</title><rect x="455.9" y="629" width="0.4" height="15.0" fill="rgb(244,183,43)" rx="2" ry="2" /> | |
| <text x="458.88" y="639.5" ></text> | |
| </g> | |
| <g > | |
| <title>__pthread_mutex_lock_full (24,040,853 samples, 0.01%)</title><rect x="14.4" y="741" width="0.2" height="15.0" fill="rgb(246,191,45)" rx="2" ry="2" /> | |
| <text x="17.44" y="751.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_unmarshal_VertexAttribPointer_packed (175,571,566 samples, 0.10%)</title><rect x="1028.1" y="677" width="1.2" height="15.0" fill="rgb(232,124,29)" rx="2" ry="2" /> | |
| <text x="1031.14" y="687.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_sampler_uniforms_are_valid (17,449,520 samples, 0.01%)</title><rect x="1146.0" y="629" width="0.2" height="15.0" fill="rgb(254,229,54)" rx="2" ry="2" /> | |
| <text x="1149.04" y="639.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_glthread_flush_batch (22,103,596 samples, 0.01%)</title><rect x="1031.8" y="709" width="0.2" height="15.0" fill="rgb(239,158,38)" rx="2" ry="2" /> | |
| <text x="1034.82" y="719.5" ></text> | |
| </g> | |
| <g > | |
| <title>syscall (40,933,055 samples, 0.02%)</title><rect x="516.7" y="677" width="0.3" height="15.0" fill="rgb(234,136,32)" rx="2" ry="2" /> | |
| <text x="519.73" y="687.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_glthread_finish (3,485,529,566 samples, 1.93%)</title><rect x="860.4" y="677" width="22.7" height="15.0" fill="rgb(209,22,5)" rx="2" ry="2" /> | |
| <text x="863.37" y="687.5" >_..</text> | |
| </g> | |
| <g > | |
| <title>__aarch64_cas4_sync (26,874,036 samples, 0.01%)</title><rect x="949.5" y="613" width="0.2" height="15.0" fill="rgb(253,222,53)" rx="2" ry="2" /> | |
| <text x="952.53" y="623.5" ></text> | |
| </g> | |
| <g > | |
| <title>amdgpu_fence_wait (365,885,606 samples, 0.20%)</title><rect x="1161.0" y="629" width="2.4" height="15.0" fill="rgb(227,105,25)" rx="2" ry="2" /> | |
| <text x="1164.04" y="639.5" ></text> | |
| </g> | |
| <g > | |
| <title>el0t_64_sync (69,848,188 samples, 0.04%)</title><rect x="254.0" y="773" width="0.5" height="15.0" fill="rgb(217,56,13)" rx="2" ry="2" /> | |
| <text x="257.05" y="783.5" ></text> | |
| </g> | |
| <g > | |
| <title>invoke_syscall (21,103,875 samples, 0.01%)</title><rect x="13.0" y="597" width="0.1" height="15.0" fill="rgb(209,18,4)" rx="2" ry="2" /> | |
| <text x="15.98" y="607.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_reference_program_ (21,798,880 samples, 0.01%)</title><rect x="1004.7" y="597" width="0.1" height="15.0" fill="rgb(231,122,29)" rx="2" ry="2" /> | |
| <text x="1007.66" y="607.5" ></text> | |
| </g> | |
| <g > | |
| <title>el0_svc_common.constprop.0 (288,664,581 samples, 0.16%)</title><rect x="540.9" y="613" width="1.9" height="15.0" fill="rgb(224,89,21)" rx="2" ry="2" /> | |
| <text x="543.90" y="623.5" ></text> | |
| </g> | |
| <g > | |
| <title>st_prepare_draw (50,045,347 samples, 0.03%)</title><rect x="1059.0" y="645" width="0.4" height="15.0" fill="rgb(214,45,10)" rx="2" ry="2" /> | |
| <text x="1062.04" y="655.5" ></text> | |
| </g> | |
| <g > | |
| <title>[libxcb.so.1.1.0] (403,640,638 samples, 0.22%)</title><rect x="540.7" y="757" width="2.7" height="15.0" fill="rgb(226,98,23)" rx="2" ry="2" /> | |
| <text x="543.71" y="767.5" ></text> | |
| </g> | |
| <g > | |
| <title>tc_call_buffer_unmap (1,841,101,352 samples, 1.02%)</title><rect x="67.7" y="805" width="12.0" height="15.0" fill="rgb(205,4,1)" rx="2" ry="2" /> | |
| <text x="70.67" y="815.5" ></text> | |
| </g> | |
| <g > | |
| <title>amdgpu_fence_create (245,777,279 samples, 0.14%)</title><rect x="536.7" y="677" width="1.6" height="15.0" fill="rgb(244,179,42)" rx="2" ry="2" /> | |
| <text x="539.71" y="687.5" ></text> | |
| </g> | |
| <g > | |
| <title>si_set_sampler_views (5,027,029,424 samples, 2.78%)</title><rect x="204.5" y="773" width="32.8" height="15.0" fill="rgb(218,61,14)" rx="2" ry="2" /> | |
| <text x="207.46" y="783.5" >si..</text> | |
| </g> | |
| <g > | |
| <title>kvmalloc_node_noprof (22,528,158 samples, 0.01%)</title><rect x="290.4" y="549" width="0.2" height="15.0" fill="rgb(210,25,5)" rx="2" ry="2" /> | |
| <text x="293.43" y="559.5" ></text> | |
| </g> | |
| <g > | |
| <title>vfs_read (57,196,568 samples, 0.03%)</title><rect x="14.8" y="597" width="0.3" height="15.0" fill="rgb(224,88,21)" rx="2" ry="2" /> | |
| <text x="17.75" y="607.5" ></text> | |
| </g> | |
| <g > | |
| <title>xcb_flush (409,015,094 samples, 0.23%)</title><rect x="540.7" y="773" width="2.7" height="15.0" fill="rgb(224,91,21)" rx="2" ry="2" /> | |
| <text x="543.69" y="783.5" ></text> | |
| </g> | |
| <g > | |
| <title>_glapi_set_dispatch (19,847,254 samples, 0.01%)</title><rect x="860.8" y="661" width="0.2" height="15.0" fill="rgb(208,15,3)" rx="2" ry="2" /> | |
| <text x="863.84" y="671.5" ></text> | |
| </g> | |
| <g > | |
| <title>dma_resv_iter_next (87,657,085 samples, 0.05%)</title><rect x="320.4" y="565" width="0.6" height="15.0" fill="rgb(247,196,46)" rx="2" ry="2" /> | |
| <text x="323.39" y="575.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_unmarshal_BindTexture (17,384,580 samples, 0.01%)</title><rect x="954.6" y="645" width="0.2" height="15.0" fill="rgb(248,199,47)" rx="2" ry="2" /> | |
| <text x="957.64" y="655.5" ></text> | |
| </g> | |
| <g > | |
| <title>futex_wake (187,114,318 samples, 0.10%)</title><rect x="252.5" y="821" width="1.3" height="15.0" fill="rgb(219,65,15)" rx="2" ry="2" /> | |
| <text x="255.53" y="831.5" ></text> | |
| </g> | |
| <g > | |
| <title>[redeclipse] (93,850,529,882 samples, 51.98%)</title><rect x="557.7" y="773" width="613.4" height="15.0" fill="rgb(253,222,53)" rx="2" ry="2" /> | |
| <text x="560.68" y="783.5" >[redeclipse]</text> | |
| </g> | |
| <g > | |
| <title>cso_set_vertex_elements (138,751,021 samples, 0.08%)</title><rect x="875.3" y="565" width="0.9" height="15.0" fill="rgb(238,152,36)" rx="2" ry="2" /> | |
| <text x="878.29" y="575.5" ></text> | |
| </g> | |
| <g > | |
| <title>el0t_64_sync (75,257,872 samples, 0.04%)</title><rect x="35.0" y="789" width="0.5" height="15.0" fill="rgb(217,56,13)" rx="2" ry="2" /> | |
| <text x="38.01" y="799.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_BeginQueryIndexed (66,967,455 samples, 0.04%)</title><rect x="1097.1" y="693" width="0.5" height="15.0" fill="rgb(223,83,20)" rx="2" ry="2" /> | |
| <text x="1100.14" y="703.5" ></text> | |
| </g> | |
| <g > | |
| <title>drmSyncobjWait (175,589,228 samples, 0.10%)</title><rect x="895.6" y="549" width="1.2" height="15.0" fill="rgb(207,13,3)" rx="2" ry="2" /> | |
| <text x="898.63" y="559.5" ></text> | |
| </g> | |
| <g > | |
| <title>si_buffer_transfer_map (75,678,626 samples, 0.04%)</title><rect x="1038.9" y="661" width="0.5" height="15.0" fill="rgb(237,151,36)" rx="2" ry="2" /> | |
| <text x="1041.91" y="671.5" ></text> | |
| </g> | |
| <g > | |
| <title>__arm64_sys_exit_group (63,814,501 samples, 0.04%)</title><rect x="1189.6" y="789" width="0.4" height="15.0" fill="rgb(222,79,19)" rx="2" ry="2" /> | |
| <text x="1192.58" y="799.5" ></text> | |
| </g> | |
| <g > | |
| <title>__aarch64_cas4_sync (38,977,405 samples, 0.02%)</title><rect x="519.9" y="661" width="0.2" height="15.0" fill="rgb(253,222,53)" rx="2" ry="2" /> | |
| <text x="522.86" y="671.5" ></text> | |
| </g> | |
| <g > | |
| <title>amdgpu_drm_ioctl (28,286,953 samples, 0.02%)</title><rect x="1160.8" y="453" width="0.2" height="15.0" fill="rgb(246,190,45)" rx="2" ry="2" /> | |
| <text x="1163.78" y="463.5" ></text> | |
| </g> | |
| <g > | |
| <title>cnd_signal (25,994,122 samples, 0.01%)</title><rect x="38.9" y="741" width="0.2" height="15.0" fill="rgb(232,125,30)" rx="2" ry="2" /> | |
| <text x="41.93" y="751.5" ></text> | |
| </g> | |
| <g > | |
| <title>si_is_format_supported (34,898,522 samples, 0.02%)</title><rect x="1080.4" y="581" width="0.3" height="15.0" fill="rgb(240,164,39)" rx="2" ry="2" /> | |
| <text x="1083.43" y="591.5" ></text> | |
| </g> | |
| <g > | |
| <title>st_update_fp (42,743,668 samples, 0.02%)</title><rect x="1120.6" y="629" width="0.3" height="15.0" fill="rgb(207,12,3)" rx="2" ry="2" /> | |
| <text x="1123.57" y="639.5" ></text> | |
| </g> | |
| <g > | |
| <title>cnd_signal (35,693,700 samples, 0.02%)</title><rect x="877.4" y="549" width="0.3" height="15.0" fill="rgb(232,125,30)" rx="2" ry="2" /> | |
| <text x="880.44" y="559.5" ></text> | |
| </g> | |
| <g > | |
| <title>el0t_64_sync_handler (37,287,209 samples, 0.02%)</title><rect x="16.9" y="725" width="0.2" height="15.0" fill="rgb(211,32,7)" rx="2" ry="2" /> | |
| <text x="19.88" y="735.5" ></text> | |
| </g> | |
| <g > | |
| <title>__GI___ioctl (111,652,802 samples, 0.06%)</title><rect x="509.8" y="677" width="0.7" height="15.0" fill="rgb(232,128,30)" rx="2" ry="2" /> | |
| <text x="512.76" y="687.5" ></text> | |
| </g> | |
| <g > | |
| <title>tzset_internal (22,375,552 samples, 0.01%)</title><rect x="1187.1" y="757" width="0.1" height="15.0" fill="rgb(205,3,0)" rx="2" ry="2" /> | |
| <text x="1190.07" y="767.5" ></text> | |
| </g> | |
| <g > | |
| <title>drmSyncobjDestroy (42,987,563 samples, 0.02%)</title><rect x="1160.8" y="613" width="0.2" height="15.0" fill="rgb(205,0,0)" rx="2" ry="2" /> | |
| <text x="1163.76" y="623.5" ></text> | |
| </g> | |
| <g > | |
| <title>__arm64_sys_futex (44,548,380 samples, 0.02%)</title><rect x="901.1" y="421" width="0.3" height="15.0" fill="rgb(247,196,47)" rx="2" ry="2" /> | |
| <text x="904.12" y="431.5" ></text> | |
| </g> | |
| <g > | |
| <title>cso_set_vertex_elements_direct (67,992,360 samples, 0.04%)</title><rect x="1134.5" y="597" width="0.4" height="15.0" fill="rgb(222,80,19)" rx="2" ry="2" /> | |
| <text x="1137.49" y="607.5" ></text> | |
| </g> | |
| <g > | |
| <title>util_blitter_common_clear_setup (33,498,603 samples, 0.02%)</title><rect x="85.2" y="741" width="0.3" height="15.0" fill="rgb(211,31,7)" rx="2" ry="2" /> | |
| <text x="88.23" y="751.5" ></text> | |
| </g> | |
| <g > | |
| <title>[redeclipse] (1,503,157,465 samples, 0.83%)</title><rect x="778.2" y="197" width="9.8" height="15.0" fill="rgb(253,222,53)" rx="2" ry="2" /> | |
| <text x="781.15" y="207.5" ></text> | |
| </g> | |
| <g > | |
| <title>tc_batch_execute (2,060,498,333 samples, 1.14%)</title><rect x="517.0" y="709" width="13.5" height="15.0" fill="rgb(249,205,49)" rx="2" ry="2" /> | |
| <text x="520.00" y="719.5" ></text> | |
| </g> | |
| <g > | |
| <title>el0t_64_sync_handler (69,081,120 samples, 0.04%)</title><rect x="901.7" y="485" width="0.5" height="15.0" fill="rgb(211,32,7)" rx="2" ry="2" /> | |
| <text x="904.72" y="495.5" ></text> | |
| </g> | |
| <g > | |
| <title>pthread_cond_signal@@GLIBC_2.17 (16,992,943 samples, 0.01%)</title><rect x="856.8" y="533" width="0.2" height="15.0" fill="rgb(232,126,30)" rx="2" ry="2" /> | |
| <text x="859.84" y="543.5" ></text> | |
| </g> | |
| <g > | |
| <title>si_is_format_supported (17,998,744 samples, 0.01%)</title><rect x="1110.1" y="581" width="0.1" height="15.0" fill="rgb(240,164,39)" rx="2" ry="2" /> | |
| <text x="1113.12" y="591.5" ></text> | |
| </g> | |
| <g > | |
| <title>cnd_signal (32,038,405 samples, 0.02%)</title><rect x="418.8" y="677" width="0.2" height="15.0" fill="rgb(232,125,30)" rx="2" ry="2" /> | |
| <text x="421.77" y="687.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_unmarshal_Uniform4fv (74,175,796 samples, 0.04%)</title><rect x="947.1" y="661" width="0.5" height="15.0" fill="rgb(212,33,8)" rx="2" ry="2" /> | |
| <text x="950.09" y="671.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_marshal_GetQueryObjectuiv (30,256,867 samples, 0.02%)</title><rect x="978.1" y="725" width="0.2" height="15.0" fill="rgb(214,43,10)" rx="2" ry="2" /> | |
| <text x="981.11" y="735.5" ></text> | |
| </g> | |
| <g > | |
| <title>si_buffer_transfer_unmap (108,600,355 samples, 0.06%)</title><rect x="519.2" y="677" width="0.7" height="15.0" fill="rgb(221,75,18)" rx="2" ry="2" /> | |
| <text x="522.15" y="687.5" ></text> | |
| </g> | |
| <g > | |
| <title>__aarch64_ldadd4_acq_rel (1,275,837,623 samples, 0.71%)</title><rect x="255.0" y="805" width="8.4" height="15.0" fill="rgb(228,108,25)" rx="2" ry="2" /> | |
| <text x="258.04" y="815.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_BindTexture (57,592,652 samples, 0.03%)</title><rect x="1057.1" y="677" width="0.3" height="15.0" fill="rgb(234,136,32)" rx="2" ry="2" /> | |
| <text x="1060.06" y="687.5" ></text> | |
| </g> | |
| <g > | |
| <title>si_set_sampler_views (1,536,382,084 samples, 0.85%)</title><rect x="227.3" y="757" width="10.0" height="15.0" fill="rgb(218,61,14)" rx="2" ry="2" /> | |
| <text x="230.27" y="767.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_VertexAttribPointer (22,461,165 samples, 0.01%)</title><rect x="493.9" y="773" width="0.1" height="15.0" fill="rgb(211,29,7)" rx="2" ry="2" /> | |
| <text x="496.88" y="783.5" ></text> | |
| </g> | |
| <g > | |
| <title>st_get_texture_sampler_view_from_stobj (17,426,635 samples, 0.01%)</title><rect x="1112.6" y="613" width="0.1" height="15.0" fill="rgb(211,32,7)" rx="2" ry="2" /> | |
| <text x="1115.62" y="623.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_UseProgram (21,251,238 samples, 0.01%)</title><rect x="1066.2" y="661" width="0.2" height="15.0" fill="rgb(212,36,8)" rx="2" ry="2" /> | |
| <text x="1069.22" y="671.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_BindBuffer (19,941,690 samples, 0.01%)</title><rect x="982.4" y="645" width="0.1" height="15.0" fill="rgb(210,23,5)" rx="2" ry="2" /> | |
| <text x="985.40" y="655.5" ></text> | |
| </g> | |
| <g > | |
| <title>__call_rcu_common.constprop.0 (19,851,460 samples, 0.01%)</title><rect x="308.5" y="437" width="0.1" height="15.0" fill="rgb(208,17,4)" rx="2" ry="2" /> | |
| <text x="311.47" y="447.5" ></text> | |
| </g> | |
| <g > | |
| <title>remove_attachment (69,164,091 samples, 0.04%)</title><rect x="1017.9" y="629" width="0.4" height="15.0" fill="rgb(245,185,44)" rx="2" ry="2" /> | |
| <text x="1020.88" y="639.5" ></text> | |
| </g> | |
| <g > | |
| <title>el0_svc (128,922,702 samples, 0.07%)</title><rect x="36.1" y="741" width="0.9" height="15.0" fill="rgb(244,183,43)" rx="2" ry="2" /> | |
| <text x="39.14" y="751.5" ></text> | |
| </g> | |
| <g > | |
| <title>si_ps_key_update_framebuffer_blend_dsa_rasterizer (170,152,099 samples, 0.09%)</title><rect x="51.9" y="757" width="1.1" height="15.0" fill="rgb(222,80,19)" rx="2" ry="2" /> | |
| <text x="54.87" y="767.5" ></text> | |
| </g> | |
| <g > | |
| <title>util_queue_add_job_locked.part.0 (96,442,706 samples, 0.05%)</title><rect x="901.6" y="565" width="0.6" height="15.0" fill="rgb(243,177,42)" rx="2" ry="2" /> | |
| <text x="904.60" y="575.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_unmarshal_BindTexture (148,776,915 samples, 0.08%)</title><rect x="823.1" y="629" width="1.0" height="15.0" fill="rgb(248,199,47)" rx="2" ry="2" /> | |
| <text x="826.14" y="639.5" ></text> | |
| </g> | |
| <g > | |
| <title>do_notify_resume (20,720,914 samples, 0.01%)</title><rect x="884.9" y="517" width="0.1" height="15.0" fill="rgb(233,129,30)" rx="2" ry="2" /> | |
| <text x="887.86" y="527.5" ></text> | |
| </g> | |
| <g > | |
| <title>si_create_surface (16,733,808 samples, 0.01%)</title><rect x="516.1" y="677" width="0.1" height="15.0" fill="rgb(245,186,44)" rx="2" ry="2" /> | |
| <text x="519.13" y="687.5" ></text> | |
| </g> | |
| <g > | |
| <title>st_convert_sampler (25,190,771 samples, 0.01%)</title><rect x="1127.9" y="613" width="0.1" height="15.0" fill="rgb(242,172,41)" rx="2" ry="2" /> | |
| <text x="1130.88" y="623.5" ></text> | |
| </g> | |
| <g > | |
| <title>cnd_signal (16,992,943 samples, 0.01%)</title><rect x="856.8" y="549" width="0.2" height="15.0" fill="rgb(232,125,30)" rx="2" ry="2" /> | |
| <text x="859.84" y="559.5" ></text> | |
| </g> | |
| <g > | |
| <title>si_ps_key_update_framebuffer_blend_dsa_rasterizer (23,402,313 samples, 0.01%)</title><rect x="200.0" y="757" width="0.1" height="15.0" fill="rgb(222,80,19)" rx="2" ry="2" /> | |
| <text x="202.96" y="767.5" ></text> | |
| </g> | |
| <g > | |
| <title>invoke_syscall (22,439,303 samples, 0.01%)</title><rect x="538.3" y="533" width="0.2" height="15.0" fill="rgb(209,18,4)" rx="2" ry="2" /> | |
| <text x="541.32" y="543.5" ></text> | |
| </g> | |
| <g > | |
| <title>si_set_mutable_tex_desc_fields (154,176,775 samples, 0.09%)</title><rect x="893.3" y="533" width="1.0" height="15.0" fill="rgb(226,97,23)" rx="2" ry="2" /> | |
| <text x="896.29" y="543.5" ></text> | |
| </g> | |
| <g > | |
| <title>clock_gettime@@GLIBC_2.17 (58,890,034 samples, 0.03%)</title><rect x="1163.8" y="629" width="0.3" height="15.0" fill="rgb(250,209,50)" rx="2" ry="2" /> | |
| <text x="1166.76" y="639.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_update_clear_state (94,660,815 samples, 0.05%)</title><rect x="987.9" y="645" width="0.7" height="15.0" fill="rgb(205,3,0)" rx="2" ry="2" /> | |
| <text x="990.94" y="655.5" ></text> | |
| </g> | |
| <g > | |
| <title>el0_svc (153,405,578 samples, 0.08%)</title><rect x="503.3" y="613" width="1.0" height="15.0" fill="rgb(244,183,43)" rx="2" ry="2" /> | |
| <text x="506.31" y="623.5" ></text> | |
| </g> | |
| <g > | |
| <title>cnd_wait (559,944,239 samples, 0.31%)</title><rect x="248.9" y="821" width="3.6" height="15.0" fill="rgb(230,118,28)" rx="2" ry="2" /> | |
| <text x="251.87" y="831.5" ></text> | |
| </g> | |
| <g > | |
| <title>pthread_cond_signal@@GLIBC_2.17 (27,301,730 samples, 0.02%)</title><rect x="876.3" y="485" width="0.2" height="15.0" fill="rgb(232,126,30)" rx="2" ry="2" /> | |
| <text x="879.30" y="495.5" ></text> | |
| </g> | |
| <g > | |
| <title>st_get_sampler_views (298,592,936 samples, 0.17%)</title><rect x="939.4" y="581" width="2.0" height="15.0" fill="rgb(224,91,21)" rx="2" ry="2" /> | |
| <text x="942.44" y="591.5" ></text> | |
| </g> | |
| <g > | |
| <title>si_begin_new_gfx_cs (35,325,245 samples, 0.02%)</title><rect x="192.4" y="741" width="0.2" height="15.0" fill="rgb(234,134,32)" rx="2" ry="2" /> | |
| <text x="195.40" y="751.5" ></text> | |
| </g> | |
| <g > | |
| <title>drm_syncobj_array_wait_timeout.constprop.0 (78,568,489 samples, 0.04%)</title><rect x="1162.2" y="389" width="0.6" height="15.0" fill="rgb(211,29,7)" rx="2" ry="2" /> | |
| <text x="1165.24" y="399.5" ></text> | |
| </g> | |
| <g > | |
| <title>pthread_cond_signal@@GLIBC_2.17 (35,898,171 samples, 0.02%)</title><rect x="447.9" y="629" width="0.2" height="15.0" fill="rgb(232,126,30)" rx="2" ry="2" /> | |
| <text x="450.85" y="639.5" ></text> | |
| </g> | |
| <g > | |
| <title>tc_invalidate_buffer (94,049,299 samples, 0.05%)</title><rect x="973.9" y="629" width="0.6" height="15.0" fill="rgb(223,85,20)" rx="2" ry="2" /> | |
| <text x="976.85" y="639.5" ></text> | |
| </g> | |
| <g > | |
| <title>invoke_syscall (56,832,226 samples, 0.03%)</title><rect x="901.7" y="421" width="0.4" height="15.0" fill="rgb(209,18,4)" rx="2" ry="2" /> | |
| <text x="904.73" y="431.5" ></text> | |
| </g> | |
| <g > | |
| <title>_glapi_get_current (54,167,701 samples, 0.03%)</title><rect x="645.8" y="709" width="0.3" height="15.0" fill="rgb(233,130,31)" rx="2" ry="2" /> | |
| <text x="648.78" y="719.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_lookup_or_create_texture (76,480,846 samples, 0.04%)</title><rect x="863.5" y="597" width="0.5" height="15.0" fill="rgb(235,140,33)" rx="2" ry="2" /> | |
| <text x="866.47" y="607.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_unmarshal_UnmapBuffer (43,229,337 samples, 0.02%)</title><rect x="948.2" y="645" width="0.3" height="15.0" fill="rgb(221,73,17)" rx="2" ry="2" /> | |
| <text x="951.25" y="655.5" ></text> | |
| </g> | |
| <g > | |
| <title>thread_start (1,943,799,868 samples, 1.08%)</title><rect x="15.1" y="885" width="12.7" height="15.0" fill="rgb(212,34,8)" rx="2" ry="2" /> | |
| <text x="18.13" y="895.5" ></text> | |
| </g> | |
| <g > | |
| <title>bind_buffer_object (76,549,469 samples, 0.04%)</title><rect x="348.4" y="773" width="0.5" height="15.0" fill="rgb(246,190,45)" rx="2" ry="2" /> | |
| <text x="351.36" y="783.5" ></text> | |
| </g> | |
| <g > | |
| <title>gfx6_clear (938,796,899 samples, 0.52%)</title><rect x="79.7" y="789" width="6.1" height="15.0" fill="rgb(248,201,48)" rx="2" ry="2" /> | |
| <text x="82.70" y="799.5" ></text> | |
| </g> | |
| <g > | |
| <title>si_upload_descriptors (36,138,074 samples, 0.02%)</title><rect x="523.0" y="645" width="0.2" height="15.0" fill="rgb(233,131,31)" rx="2" ry="2" /> | |
| <text x="525.99" y="655.5" ></text> | |
| </g> | |
| <g > | |
| <title>st_update_framebuffer_state (655,401,893 samples, 0.36%)</title><rect x="1105.1" y="677" width="4.3" height="15.0" fill="rgb(231,123,29)" rx="2" ry="2" /> | |
| <text x="1108.10" y="687.5" ></text> | |
| </g> | |
| <g > | |
| <title>do_el0_svc (200,366,155 samples, 0.11%)</title><rect x="537.0" y="565" width="1.3" height="15.0" fill="rgb(218,60,14)" rx="2" ry="2" /> | |
| <text x="539.98" y="575.5" ></text> | |
| </g> | |
| <g > | |
| <title>tc_buffer_map (76,728,341 samples, 0.04%)</title><rect x="905.7" y="645" width="0.5" height="15.0" fill="rgb(247,195,46)" rx="2" ry="2" /> | |
| <text x="908.73" y="655.5" ></text> | |
| </g> | |
| <g > | |
| <title>task_work_run (34,823,650 samples, 0.02%)</title><rect x="1189.8" y="741" width="0.2" height="15.0" fill="rgb(209,22,5)" rx="2" ry="2" /> | |
| <text x="1192.77" y="751.5" ></text> | |
| </g> | |
| <g > | |
| <title>el0_svc_common.constprop.0 (26,650,859 samples, 0.01%)</title><rect x="877.5" y="437" width="0.2" height="15.0" fill="rgb(224,89,21)" rx="2" ry="2" /> | |
| <text x="880.50" y="447.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_validated_drawrangeelements (2,665,809,449 samples, 1.48%)</title><rect x="1118.9" y="677" width="17.4" height="15.0" fill="rgb(230,115,27)" rx="2" ry="2" /> | |
| <text x="1121.93" y="687.5" ></text> | |
| </g> | |
| <g > | |
| <title>invoke_syscall (175,388,050 samples, 0.10%)</title><rect x="537.0" y="533" width="1.2" height="15.0" fill="rgb(209,18,4)" rx="2" ry="2" /> | |
| <text x="540.04" y="543.5" ></text> | |
| </g> | |
| <g > | |
| <title>do_el0_svc (76,347,963 samples, 0.04%)</title><rect x="501.1" y="725" width="0.5" height="15.0" fill="rgb(218,60,14)" rx="2" ry="2" /> | |
| <text x="504.13" y="735.5" ></text> | |
| </g> | |
| <g > | |
| <title>tc_buffer_unmap (20,881,825 samples, 0.01%)</title><rect x="1066.0" y="661" width="0.1" height="15.0" fill="rgb(231,119,28)" rx="2" ry="2" /> | |
| <text x="1068.98" y="671.5" ></text> | |
| </g> | |
| <g > | |
| <title>si_begin_new_gfx_cs (16,220,717 samples, 0.01%)</title><rect x="902.4" y="565" width="0.1" height="15.0" fill="rgb(234,134,32)" rx="2" ry="2" /> | |
| <text x="905.40" y="575.5" ></text> | |
| </g> | |
| <g > | |
| <title>update_framebuffer (18,861,778 samples, 0.01%)</title><rect x="373.8" y="741" width="0.1" height="15.0" fill="rgb(222,78,18)" rx="2" ry="2" /> | |
| <text x="376.80" y="751.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_marshal_UseProgram (19,793,149 samples, 0.01%)</title><rect x="1032.2" y="725" width="0.1" height="15.0" fill="rgb(243,174,41)" rx="2" ry="2" /> | |
| <text x="1035.18" y="735.5" ></text> | |
| </g> | |
| <g > | |
| <title>__sys_recvmsg (169,253,001 samples, 0.09%)</title><rect x="1107.1" y="357" width="1.1" height="15.0" fill="rgb(252,216,51)" rx="2" ry="2" /> | |
| <text x="1110.07" y="367.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_Uniform3f (39,545,610 samples, 0.02%)</title><rect x="1019.8" y="661" width="0.2" height="15.0" fill="rgb(217,56,13)" rx="2" ry="2" /> | |
| <text x="1022.77" y="671.5" ></text> | |
| </g> | |
| <g > | |
| <title>__vsnprintf_chk (92,920,276 samples, 0.05%)</title><rect x="841.7" y="693" width="0.7" height="15.0" fill="rgb(247,193,46)" rx="2" ry="2" /> | |
| <text x="844.75" y="703.5" ></text> | |
| </g> | |
| <g > | |
| <title>si_upload_descriptors (353,132,508 samples, 0.20%)</title><rect x="148.2" y="741" width="2.3" height="15.0" fill="rgb(233,131,31)" rx="2" ry="2" /> | |
| <text x="151.17" y="751.5" ></text> | |
| </g> | |
| <g > | |
| <title>__atan2f (20,660,606 samples, 0.01%)</title><rect x="1049.9" y="725" width="0.1" height="15.0" fill="rgb(241,166,39)" rx="2" ry="2" /> | |
| <text x="1052.86" y="735.5" ></text> | |
| </g> | |
| <g > | |
| <title>__printf_buffer (189,493,894 samples, 0.10%)</title><rect x="916.5" y="677" width="1.2" height="15.0" fill="rgb(219,68,16)" rx="2" ry="2" /> | |
| <text x="919.46" y="687.5" ></text> | |
| </g> | |
| <g > | |
| <title>el0t_64_sync (32,087,987 samples, 0.02%)</title><rect x="877.5" y="501" width="0.2" height="15.0" fill="rgb(217,56,13)" rx="2" ry="2" /> | |
| <text x="880.46" y="511.5" ></text> | |
| </g> | |
| <g > | |
| <title>[libGLdispatch.so.0.0.0] (423,751,785 samples, 0.23%)</title><rect x="613.0" y="741" width="2.8" height="15.0" fill="rgb(209,20,4)" rx="2" ry="2" /> | |
| <text x="616.00" y="751.5" ></text> | |
| </g> | |
| <g > | |
| <title>si_update_last_vgt_stage_state (319,841,103 samples, 0.18%)</title><rect x="63.0" y="773" width="2.1" height="15.0" fill="rgb(219,66,15)" rx="2" ry="2" /> | |
| <text x="65.98" y="783.5" ></text> | |
| </g> | |
| <g > | |
| <title>do_futex_fence_wait (146,361,052 samples, 0.08%)</title><rect x="1095.2" y="725" width="1.0" height="15.0" fill="rgb(230,118,28)" rx="2" ry="2" /> | |
| <text x="1098.25" y="735.5" ></text> | |
| </g> | |
| <g > | |
| <title>st_update_framebuffer_state (21,769,253 samples, 0.01%)</title><rect x="1121.8" y="645" width="0.2" height="15.0" fill="rgb(231,123,29)" rx="2" ry="2" /> | |
| <text x="1124.84" y="655.5" ></text> | |
| </g> | |
| <g > | |
| <title>glthread_unmarshal_batch (463,874,295 samples, 0.26%)</title><rect x="973.4" y="693" width="3.0" height="15.0" fill="rgb(247,195,46)" rx="2" ry="2" /> | |
| <text x="976.36" y="703.5" ></text> | |
| </g> | |
| <g > | |
| <title>st_prepare_draw (16,886,937 samples, 0.01%)</title><rect x="1018.9" y="645" width="0.2" height="15.0" fill="rgb(214,45,10)" rx="2" ry="2" /> | |
| <text x="1021.95" y="655.5" ></text> | |
| </g> | |
| <g > | |
| <title>__printf_buffer (219,266,559 samples, 0.12%)</title><rect x="1051.8" y="709" width="1.4" height="15.0" fill="rgb(219,68,16)" rx="2" ry="2" /> | |
| <text x="1054.79" y="719.5" ></text> | |
| </g> | |
| <g > | |
| <title>void st_update_array_templ< (46,729,196 samples, 0.03%)</title><rect x="856.5" y="581" width="0.3" height="15.0" fill="rgb(243,178,42)" rx="2" ry="2" /> | |
| <text x="859.47" y="591.5" ></text> | |
| </g> | |
| <g > | |
| <title>do_el0_svc (22,969,908 samples, 0.01%)</title><rect x="13.0" y="629" width="0.1" height="15.0" fill="rgb(218,60,14)" rx="2" ry="2" /> | |
| <text x="15.98" y="639.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_unmarshal_UseProgram (194,214,337 samples, 0.11%)</title><rect x="1091.6" y="709" width="1.3" height="15.0" fill="rgb(226,99,23)" rx="2" ry="2" /> | |
| <text x="1094.60" y="719.5" ></text> | |
| </g> | |
| <g > | |
| <title>st_Clear (204,610,412 samples, 0.11%)</title><rect x="374.0" y="789" width="1.3" height="15.0" fill="rgb(211,30,7)" rx="2" ry="2" /> | |
| <text x="376.99" y="799.5" ></text> | |
| </g> | |
| <g > | |
| <title>[redeclipse] (4,347,974,470 samples, 2.41%)</title><rect x="769.5" y="405" width="28.4" height="15.0" fill="rgb(253,222,53)" rx="2" ry="2" /> | |
| <text x="772.48" y="415.5" >[r..</text> | |
| </g> | |
| <g > | |
| <title>st_get_sampler_views (39,386,978 samples, 0.02%)</title><rect x="1059.7" y="629" width="0.3" height="15.0" fill="rgb(224,91,21)" rx="2" ry="2" /> | |
| <text x="1062.71" y="639.5" ></text> | |
| </g> | |
| <g > | |
| <title>amdgpu_cs_flush (1,242,957,177 samples, 0.69%)</title><rect x="183.9" y="757" width="8.1" height="15.0" fill="rgb(205,1,0)" rx="2" ry="2" /> | |
| <text x="186.86" y="767.5" ></text> | |
| </g> | |
| <g > | |
| <title>_raw_spin_lock (130,258,703 samples, 0.07%)</title><rect x="294.7" y="533" width="0.9" height="15.0" fill="rgb(239,160,38)" rx="2" ry="2" /> | |
| <text x="297.74" y="543.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_validated_drawrangeelements (1,774,617,316 samples, 0.98%)</title><rect x="1005.2" y="645" width="11.6" height="15.0" fill="rgb(230,115,27)" rx="2" ry="2" /> | |
| <text x="1008.15" y="655.5" ></text> | |
| </g> | |
| <g > | |
| <title>__aarch64_ldadd4_acq_rel (70,291,431 samples, 0.04%)</title><rect x="1145.2" y="629" width="0.4" height="15.0" fill="rgb(228,108,25)" rx="2" ry="2" /> | |
| <text x="1148.18" y="639.5" ></text> | |
| </g> | |
| <g > | |
| <title>cnd_signal (71,872,712 samples, 0.04%)</title><rect x="455.8" y="709" width="0.5" height="15.0" fill="rgb(232,125,30)" rx="2" ry="2" /> | |
| <text x="458.81" y="719.5" ></text> | |
| </g> | |
| <g > | |
| <title>util_queue_add_job_locked.part.0 (162,527,322 samples, 0.09%)</title><rect x="1173.4" y="741" width="1.1" height="15.0" fill="rgb(243,177,42)" rx="2" ry="2" /> | |
| <text x="1176.39" y="751.5" ></text> | |
| </g> | |
| <g > | |
| <title>si_set_active_descriptors_for_shader (44,817,103 samples, 0.02%)</title><rect x="62.1" y="757" width="0.3" height="15.0" fill="rgb(217,57,13)" rx="2" ry="2" /> | |
| <text x="65.11" y="767.5" ></text> | |
| </g> | |
| <g > | |
| <title>__audit_getname (20,155,837 samples, 0.01%)</title><rect x="1181.6" y="549" width="0.2" height="15.0" fill="rgb(205,2,0)" rx="2" ry="2" /> | |
| <text x="1184.63" y="559.5" ></text> | |
| </g> | |
| <g > | |
| <title>__aarch64_ldadd4_acq_rel (20,837,857 samples, 0.01%)</title><rect x="192.1" y="709" width="0.2" height="15.0" fill="rgb(228,108,25)" rx="2" ry="2" /> | |
| <text x="195.14" y="719.5" ></text> | |
| </g> | |
| <g > | |
| <title>__aarch64_cas4_sync (25,442,764 samples, 0.01%)</title><rect x="371.3" y="709" width="0.2" height="15.0" fill="rgb(253,222,53)" rx="2" ry="2" /> | |
| <text x="374.30" y="719.5" ></text> | |
| </g> | |
| <g > | |
| <title>drmIoctl (42,987,563 samples, 0.02%)</title><rect x="1160.8" y="597" width="0.2" height="15.0" fill="rgb(251,215,51)" rx="2" ry="2" /> | |
| <text x="1163.76" y="607.5" ></text> | |
| </g> | |
| <g > | |
| <title>copy_iovec_from_user (23,168,885 samples, 0.01%)</title><rect x="1108.0" y="293" width="0.1" height="15.0" fill="rgb(207,9,2)" rx="2" ry="2" /> | |
| <text x="1110.99" y="303.5" ></text> | |
| </g> | |
| <g > | |
| <title>cso_set_samplers (17,370,667 samples, 0.01%)</title><rect x="1087.0" y="613" width="0.2" height="15.0" fill="rgb(215,48,11)" rx="2" ry="2" /> | |
| <text x="1090.04" y="623.5" ></text> | |
| </g> | |
| <g > | |
| <title>__aarch64_ldadd4_acq_rel (505,055,275 samples, 0.28%)</title><rect x="364.4" y="757" width="3.3" height="15.0" fill="rgb(228,108,25)" rx="2" ry="2" /> | |
| <text x="367.37" y="767.5" ></text> | |
| </g> | |
| <g > | |
| <title>__arm64_sys_futex (58,663,542 samples, 0.03%)</title><rect x="538.9" y="517" width="0.4" height="15.0" fill="rgb(247,196,47)" rx="2" ry="2" /> | |
| <text x="541.93" y="527.5" ></text> | |
| </g> | |
| <g > | |
| <title>unix_stream_recvmsg (99,800,962 samples, 0.06%)</title><rect x="1107.3" y="293" width="0.6" height="15.0" fill="rgb(251,213,51)" rx="2" ry="2" /> | |
| <text x="1110.28" y="303.5" ></text> | |
| </g> | |
| <g > | |
| <title>__memcpy_generic (44,096,672 samples, 0.02%)</title><rect x="373.0" y="773" width="0.3" height="15.0" fill="rgb(231,124,29)" rx="2" ry="2" /> | |
| <text x="375.98" y="783.5" ></text> | |
| </g> | |
| <g > | |
| <title>st_update_single_texture (29,128,821 samples, 0.02%)</title><rect x="828.2" y="533" width="0.2" height="15.0" fill="rgb(208,15,3)" rx="2" ry="2" /> | |
| <text x="831.20" y="543.5" ></text> | |
| </g> | |
| <g > | |
| <title>el0t_64_sync (26,534,506 samples, 0.01%)</title><rect x="418.8" y="629" width="0.2" height="15.0" fill="rgb(217,56,13)" rx="2" ry="2" /> | |
| <text x="421.81" y="639.5" ></text> | |
| </g> | |
| <g > | |
| <title>__GI___futex_abstimed_wait_cancelable64 (46,364,682 samples, 0.03%)</title><rect x="16.4" y="773" width="0.4" height="15.0" fill="rgb(215,48,11)" rx="2" ry="2" /> | |
| <text x="19.45" y="783.5" ></text> | |
| </g> | |
| <g > | |
| <title>__aarch64_ldadd4_acq_rel (69,416,583 samples, 0.04%)</title><rect x="1167.9" y="677" width="0.4" height="15.0" fill="rgb(228,108,25)" rx="2" ry="2" /> | |
| <text x="1170.88" y="687.5" ></text> | |
| </g> | |
| <g > | |
| <title>el0_svc_common.constprop.0 (26,062,127 samples, 0.01%)</title><rect x="516.8" y="597" width="0.1" height="15.0" fill="rgb(224,89,21)" rx="2" ry="2" /> | |
| <text x="519.77" y="607.5" ></text> | |
| </g> | |
| <g > | |
| <title>el0_svc (63,814,501 samples, 0.04%)</title><rect x="1189.6" y="853" width="0.4" height="15.0" fill="rgb(244,183,43)" rx="2" ry="2" /> | |
| <text x="1192.58" y="863.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_unmarshal_Uniform1fv (17,823,933 samples, 0.01%)</title><rect x="945.9" y="661" width="0.1" height="15.0" fill="rgb(231,122,29)" rx="2" ry="2" /> | |
| <text x="948.85" y="671.5" ></text> | |
| </g> | |
| <g > | |
| <title>cso_set_samplers (38,278,291 samples, 0.02%)</title><rect x="1012.6" y="581" width="0.2" height="15.0" fill="rgb(215,48,11)" rx="2" ry="2" /> | |
| <text x="1015.57" y="591.5" ></text> | |
| </g> | |
| <g > | |
| <title>st_update_rasterizer (17,419,316 samples, 0.01%)</title><rect x="1007.8" y="597" width="0.1" height="15.0" fill="rgb(240,164,39)" rx="2" ry="2" /> | |
| <text x="1010.82" y="607.5" ></text> | |
| </g> | |
| <g > | |
| <title>__pthread_mutex_cond_lock (28,723,270 samples, 0.02%)</title><rect x="34.4" y="789" width="0.1" height="15.0" fill="rgb(243,176,42)" rx="2" ry="2" /> | |
| <text x="37.36" y="799.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_program_init_subroutine_defaults (23,263,497 samples, 0.01%)</title><rect x="859.1" y="565" width="0.2" height="15.0" fill="rgb(231,122,29)" rx="2" ry="2" /> | |
| <text x="862.14" y="575.5" ></text> | |
| </g> | |
| <g > | |
| <title>__memcpy_generic (456,844,769 samples, 0.25%)</title><rect x="408.9" y="725" width="3.0" height="15.0" fill="rgb(231,124,29)" rx="2" ry="2" /> | |
| <text x="411.94" y="735.5" ></text> | |
| </g> | |
| <g > | |
| <title>si_flush_gfx_cs (15,536,500 samples, 0.01%)</title><rect x="151.3" y="773" width="0.1" height="15.0" fill="rgb(242,171,41)" rx="2" ry="2" /> | |
| <text x="154.32" y="783.5" ></text> | |
| </g> | |
| <g > | |
| <title>[libpulsecommon-16.1.so] (37,552,058 samples, 0.02%)</title><rect x="12.9" y="741" width="0.2" height="15.0" fill="rgb(224,88,21)" rx="2" ry="2" /> | |
| <text x="15.88" y="751.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_unmarshal_Uniform2fv (183,908,703 samples, 0.10%)</title><rect x="460.6" y="805" width="1.2" height="15.0" fill="rgb(225,92,22)" rx="2" ry="2" /> | |
| <text x="463.57" y="815.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_marshal_DrawArrays (29,368,387 samples, 0.02%)</title><rect x="919.4" y="709" width="0.2" height="15.0" fill="rgb(225,93,22)" rx="2" ry="2" /> | |
| <text x="922.38" y="719.5" ></text> | |
| </g> | |
| <g > | |
| <title>do_el0_svc (55,284,722 samples, 0.03%)</title><rect x="455.9" y="613" width="0.4" height="15.0" fill="rgb(218,60,14)" rx="2" ry="2" /> | |
| <text x="458.92" y="623.5" ></text> | |
| </g> | |
| <g > | |
| <title>shared_dispatch_stub_338 (18,955,993 samples, 0.01%)</title><rect x="906.7" y="693" width="0.1" height="15.0" fill="rgb(216,53,12)" rx="2" ry="2" /> | |
| <text x="909.69" y="703.5" ></text> | |
| </g> | |
| <g > | |
| <title>pthread_cond_signal@@GLIBC_2.17 (15,698,703 samples, 0.01%)</title><rect x="1032.0" y="661" width="0.1" height="15.0" fill="rgb(232,126,30)" rx="2" ry="2" /> | |
| <text x="1035.01" y="671.5" ></text> | |
| </g> | |
| <g > | |
| <title>os_time_get_nano (68,742,338 samples, 0.04%)</title><rect x="1163.7" y="661" width="0.5" height="15.0" fill="rgb(246,190,45)" rx="2" ry="2" /> | |
| <text x="1166.73" y="671.5" ></text> | |
| </g> | |
| <g > | |
| <title>tc_add_sized_call (112,085,807 samples, 0.06%)</title><rect x="420.5" y="677" width="0.7" height="15.0" fill="rgb(245,187,44)" rx="2" ry="2" /> | |
| <text x="423.46" y="687.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_unmarshal_VertexAttribPointer_packed (67,070,887 samples, 0.04%)</title><rect x="881.8" y="645" width="0.4" height="15.0" fill="rgb(232,124,29)" rx="2" ry="2" /> | |
| <text x="884.78" y="655.5" ></text> | |
| </g> | |
| <g > | |
| <title>number_to_human_readable (280,027,841 samples, 0.16%)</title><rect x="513.2" y="693" width="1.8" height="15.0" fill="rgb(223,84,20)" rx="2" ry="2" /> | |
| <text x="516.18" y="703.5" ></text> | |
| </g> | |
| <g > | |
| <title>__GI___strlen_asimd (20,792,507 samples, 0.01%)</title><rect x="793.4" y="293" width="0.2" height="15.0" fill="rgb(213,41,9)" rx="2" ry="2" /> | |
| <text x="796.43" y="303.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_update_allow_draw_out_of_order (22,742,883 samples, 0.01%)</title><rect x="490.1" y="725" width="0.1" height="15.0" fill="rgb(215,50,12)" rx="2" ry="2" /> | |
| <text x="493.07" y="735.5" ></text> | |
| </g> | |
| <g > | |
| <title>alloc_skb_with_frags (45,351,672 samples, 0.03%)</title><rect x="541.8" y="437" width="0.3" height="15.0" fill="rgb(228,107,25)" rx="2" ry="2" /> | |
| <text x="544.77" y="447.5" ></text> | |
| </g> | |
| <g > | |
| <title>si_buffer_transfer_map (18,296,645 samples, 0.01%)</title><rect x="1072.6" y="677" width="0.1" height="15.0" fill="rgb(237,151,36)" rx="2" ry="2" /> | |
| <text x="1075.59" y="687.5" ></text> | |
| </g> | |
| <g > | |
| <title>__GI___memset_generic (107,521,625 samples, 0.06%)</title><rect x="531.7" y="677" width="0.7" height="15.0" fill="rgb(210,26,6)" rx="2" ry="2" /> | |
| <text x="534.67" y="687.5" ></text> | |
| </g> | |
| <g > | |
| <title>el0_svc_common.constprop.0 (22,969,908 samples, 0.01%)</title><rect x="13.0" y="613" width="0.1" height="15.0" fill="rgb(224,89,21)" rx="2" ry="2" /> | |
| <text x="15.98" y="623.5" ></text> | |
| </g> | |
| <g > | |
| <title>kfree (32,589,503 samples, 0.02%)</title><rect x="288.0" y="549" width="0.3" height="15.0" fill="rgb(222,78,18)" rx="2" ry="2" /> | |
| <text x="291.04" y="559.5" ></text> | |
| </g> | |
| <g > | |
| <title>futex_wake (39,786,367 samples, 0.02%)</title><rect x="11.7" y="469" width="0.2" height="15.0" fill="rgb(219,65,15)" rx="2" ry="2" /> | |
| <text x="14.65" y="479.5" ></text> | |
| </g> | |
| <g > | |
| <title>__aarch64_ldadd4_acq_rel (26,942,246 samples, 0.01%)</title><rect x="822.9" y="629" width="0.1" height="15.0" fill="rgb(228,108,25)" rx="2" ry="2" /> | |
| <text x="825.86" y="639.5" ></text> | |
| </g> | |
| <g > | |
| <title>xshmfence_reset (17,743,548 samples, 0.01%)</title><rect x="544.0" y="773" width="0.1" height="15.0" fill="rgb(208,15,3)" rx="2" ry="2" /> | |
| <text x="546.97" y="783.5" ></text> | |
| </g> | |
| <g > | |
| <title>__arm64_sys_recvmsg (25,582,249 samples, 0.01%)</title><rect x="508.9" y="597" width="0.2" height="15.0" fill="rgb(236,144,34)" rx="2" ry="2" /> | |
| <text x="511.89" y="607.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_unmarshal_UniformMatrix4fv (91,365,554 samples, 0.05%)</title><rect x="947.6" y="661" width="0.6" height="15.0" fill="rgb(249,202,48)" rx="2" ry="2" /> | |
| <text x="950.58" y="671.5" ></text> | |
| </g> | |
| <g > | |
| <title>cnd_signal (35,801,851 samples, 0.02%)</title><rect x="956.3" y="661" width="0.2" height="15.0" fill="rgb(232,125,30)" rx="2" ry="2" /> | |
| <text x="959.26" y="671.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_MultiDrawArrays (23,226,996 samples, 0.01%)</title><rect x="1018.9" y="661" width="0.2" height="15.0" fill="rgb(216,53,12)" rx="2" ry="2" /> | |
| <text x="1021.93" y="671.5" ></text> | |
| </g> | |
| <g > | |
| <title>cso_set_vertex_elements (17,763,961 samples, 0.01%)</title><rect x="931.0" y="581" width="0.1" height="15.0" fill="rgb(238,152,36)" rx="2" ry="2" /> | |
| <text x="933.95" y="591.5" ></text> | |
| </g> | |
| <g > | |
| <title>glthread_unmarshal_batch (30,764,467 samples, 0.02%)</title><rect x="791.4" y="213" width="0.2" height="15.0" fill="rgb(247,195,46)" rx="2" ry="2" /> | |
| <text x="794.41" y="223.5" ></text> | |
| </g> | |
| <g > | |
| <title>st_get_texture_sampler_view_from_stobj (17,516,485 samples, 0.01%)</title><rect x="1059.8" y="597" width="0.1" height="15.0" fill="rgb(211,32,7)" rx="2" ry="2" /> | |
| <text x="1062.79" y="607.5" ></text> | |
| </g> | |
| <g > | |
| <title>__audit_syscall_exit (16,884,864 samples, 0.01%)</title><rect x="459.7" y="581" width="0.1" height="15.0" fill="rgb(218,62,14)" rx="2" ry="2" /> | |
| <text x="462.72" y="591.5" ></text> | |
| </g> | |
| <g > | |
| <title>st_get_texture_sampler_view_from_stobj (30,938,201 samples, 0.02%)</title><rect x="828.0" y="517" width="0.2" height="15.0" fill="rgb(211,32,7)" rx="2" ry="2" /> | |
| <text x="831.00" y="527.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_marshal_BindBuffer (28,752,124 samples, 0.02%)</title><rect x="1053.9" y="741" width="0.2" height="15.0" fill="rgb(240,161,38)" rx="2" ry="2" /> | |
| <text x="1056.90" y="751.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_lookup_or_create_texture (146,219,355 samples, 0.08%)</title><rect x="984.5" y="629" width="1.0" height="15.0" fill="rgb(235,140,33)" rx="2" ry="2" /> | |
| <text x="987.54" y="639.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_unmarshal_BindTexture (18,626,658 samples, 0.01%)</title><rect x="925.3" y="645" width="0.1" height="15.0" fill="rgb(248,199,47)" rx="2" ry="2" /> | |
| <text x="928.28" y="655.5" ></text> | |
| </g> | |
| <g > | |
| <title>tc_buffer_unmap (66,596,583 samples, 0.04%)</title><rect x="880.0" y="613" width="0.5" height="15.0" fill="rgb(231,119,28)" rx="2" ry="2" /> | |
| <text x="883.02" y="623.5" ></text> | |
| </g> | |
| <g > | |
| <title>[redeclipse] (81,044,479 samples, 0.04%)</title><rect x="912.5" y="693" width="0.5" height="15.0" fill="rgb(253,222,53)" rx="2" ry="2" /> | |
| <text x="915.46" y="703.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_unmarshal_ActiveTexture (27,815,027 samples, 0.02%)</title><rect x="497.9" y="789" width="0.1" height="15.0" fill="rgb(207,12,3)" rx="2" ry="2" /> | |
| <text x="500.86" y="799.5" ></text> | |
| </g> | |
| <g > | |
| <title>strcspn (31,770,183 samples, 0.02%)</title><rect x="795.9" y="341" width="0.2" height="15.0" fill="rgb(218,61,14)" rx="2" ry="2" /> | |
| <text x="798.94" y="351.5" ></text> | |
| </g> | |
| <g > | |
| <title>el0_svc (23,056,031 samples, 0.01%)</title><rect x="1126.2" y="501" width="0.1" height="15.0" fill="rgb(244,183,43)" rx="2" ry="2" /> | |
| <text x="1129.17" y="511.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_reference_program_ (23,153,483 samples, 0.01%)</title><rect x="950.0" y="597" width="0.1" height="15.0" fill="rgb(231,122,29)" rx="2" ry="2" /> | |
| <text x="952.96" y="607.5" ></text> | |
| </g> | |
| <g > | |
| <title>tc_batch_flush (47,540,144 samples, 0.03%)</title><rect x="447.8" y="693" width="0.3" height="15.0" fill="rgb(249,206,49)" rx="2" ry="2" /> | |
| <text x="450.77" y="703.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_draw_arrays.part.0 (226,771,347 samples, 0.13%)</title><rect x="929.0" y="645" width="1.5" height="15.0" fill="rgb(227,104,25)" rx="2" ry="2" /> | |
| <text x="931.99" y="655.5" ></text> | |
| </g> | |
| <g > | |
| <title>do_validate_attachment (20,331,836 samples, 0.01%)</title><rect x="1002.3" y="565" width="0.1" height="15.0" fill="rgb(254,225,54)" rx="2" ry="2" /> | |
| <text x="1005.30" y="575.5" ></text> | |
| </g> | |
| <g > | |
| <title>el0t_64_sync_handler (24,040,853 samples, 0.01%)</title><rect x="14.4" y="693" width="0.2" height="15.0" fill="rgb(211,32,7)" rx="2" ry="2" /> | |
| <text x="17.44" y="703.5" ></text> | |
| </g> | |
| <g > | |
| <title>__GI___futex_abstimed_wait_cancelable64 (44,452,750 samples, 0.02%)</title><rect x="10.3" y="773" width="0.3" height="15.0" fill="rgb(215,48,11)" rx="2" ry="2" /> | |
| <text x="13.28" y="783.5" ></text> | |
| </g> | |
| <g > | |
| <title>st_update_rasterizer (19,574,124 samples, 0.01%)</title><rect x="994.7" y="629" width="0.1" height="15.0" fill="rgb(240,164,39)" rx="2" ry="2" /> | |
| <text x="997.68" y="639.5" ></text> | |
| </g> | |
| <g > | |
| <title>do_swap (224,514,690 samples, 0.12%)</title><rect x="303.9" y="517" width="1.5" height="15.0" fill="rgb(225,92,22)" rx="2" ry="2" /> | |
| <text x="306.91" y="527.5" ></text> | |
| </g> | |
| <g > | |
| <title>idr_alloc_u32 (17,569,104 samples, 0.01%)</title><rect x="189.4" y="469" width="0.2" height="15.0" fill="rgb(238,154,37)" rx="2" ry="2" /> | |
| <text x="192.44" y="479.5" ></text> | |
| </g> | |
| <g > | |
| <title>glthread_unmarshal_batch (64,431,366 samples, 0.04%)</title><rect x="782.3" y="85" width="0.4" height="15.0" fill="rgb(247,195,46)" rx="2" ry="2" /> | |
| <text x="785.32" y="95.5" ></text> | |
| </g> | |
| <g > | |
| <title>__vsnprintf_internal (86,362,524 samples, 0.05%)</title><rect x="841.8" y="677" width="0.6" height="15.0" fill="rgb(237,150,35)" rx="2" ry="2" /> | |
| <text x="844.79" y="687.5" ></text> | |
| </g> | |
| <g > | |
| <title>el0t_64_sync_handler (164,835,939 samples, 0.09%)</title><rect x="895.7" y="485" width="1.1" height="15.0" fill="rgb(211,32,7)" rx="2" ry="2" /> | |
| <text x="898.68" y="495.5" ></text> | |
| </g> | |
| <g > | |
| <title>util_queue_add_job_locked.part.0 (41,674,199 samples, 0.02%)</title><rect x="447.8" y="677" width="0.3" height="15.0" fill="rgb(243,177,42)" rx="2" ry="2" /> | |
| <text x="450.81" y="687.5" ></text> | |
| </g> | |
| <g > | |
| <title>el0t_64_sync (30,367,821 samples, 0.02%)</title><rect x="538.3" y="613" width="0.2" height="15.0" fill="rgb(217,56,13)" rx="2" ry="2" /> | |
| <text x="541.31" y="623.5" ></text> | |
| </g> | |
| <g > | |
| <title>glthread_unmarshal_batch (19,904,530 samples, 0.01%)</title><rect x="976.3" y="677" width="0.1" height="15.0" fill="rgb(247,195,46)" rx="2" ry="2" /> | |
| <text x="979.26" y="687.5" ></text> | |
| </g> | |
| <g > | |
| <title>__libc_calloc (24,420,644 samples, 0.01%)</title><rect x="1017.7" y="597" width="0.1" height="15.0" fill="rgb(205,4,0)" rx="2" ry="2" /> | |
| <text x="1020.67" y="607.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_lookup_or_create_texture (57,592,652 samples, 0.03%)</title><rect x="1057.1" y="661" width="0.3" height="15.0" fill="rgb(235,140,33)" rx="2" ry="2" /> | |
| <text x="1060.06" y="671.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_DrawElementsBaseVertex (27,402,394 samples, 0.02%)</title><rect x="811.9" y="597" width="0.2" height="15.0" fill="rgb(214,41,10)" rx="2" ry="2" /> | |
| <text x="814.90" y="607.5" ></text> | |
| </g> | |
| <g > | |
| <title>update_shader_samplers (105,232,375 samples, 0.06%)</title><rect x="996.2" y="613" width="0.7" height="15.0" fill="rgb(229,113,27)" rx="2" ry="2" /> | |
| <text x="999.20" y="623.5" ></text> | |
| </g> | |
| <g > | |
| <title>__arm64_sys_recvmsg (113,951,807 samples, 0.06%)</title><rect x="503.4" y="549" width="0.8" height="15.0" fill="rgb(236,144,34)" rx="2" ry="2" /> | |
| <text x="506.44" y="559.5" ></text> | |
| </g> | |
| <g > | |
| <title>amdgpu_sync_push_to_job (87,503,671 samples, 0.05%)</title><rect x="314.6" y="565" width="0.6" height="15.0" fill="rgb(217,57,13)" rx="2" ry="2" /> | |
| <text x="317.64" y="575.5" ></text> | |
| </g> | |
| <g > | |
| <title>[libGLdispatch.so.0.0.0] (288,260,390 samples, 0.16%)</title><rect x="685.1" y="709" width="1.9" height="15.0" fill="rgb(209,20,4)" rx="2" ry="2" /> | |
| <text x="688.08" y="719.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_use_program (80,363,788 samples, 0.04%)</title><rect x="1092.1" y="661" width="0.5" height="15.0" fill="rgb(235,141,33)" rx="2" ry="2" /> | |
| <text x="1095.11" y="671.5" ></text> | |
| </g> | |
| <g > | |
| <title>copy_uniforms_to_storage (74,417,852 samples, 0.04%)</title><rect x="464.3" y="773" width="0.5" height="15.0" fill="rgb(250,207,49)" rx="2" ry="2" /> | |
| <text x="467.32" y="783.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_DrawArraysInstancedBaseInstance (112,811,371 samples, 0.06%)</title><rect x="1152.7" y="693" width="0.7" height="15.0" fill="rgb(243,178,42)" rx="2" ry="2" /> | |
| <text x="1155.69" y="703.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_unmarshal_UnmapBuffer (53,623,595 samples, 0.03%)</title><rect x="814.4" y="613" width="0.4" height="15.0" fill="rgb(221,73,17)" rx="2" ry="2" /> | |
| <text x="817.43" y="623.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_unmarshal_Uniform1fv (53,627,709 samples, 0.03%)</title><rect x="1089.9" y="709" width="0.4" height="15.0" fill="rgb(231,122,29)" rx="2" ry="2" /> | |
| <text x="1092.94" y="719.5" ></text> | |
| </g> | |
| <g > | |
| <title>amdgpu_winsys_fence_reference (130,073,583 samples, 0.07%)</title><rect x="509.7" y="741" width="0.8" height="15.0" fill="rgb(220,71,17)" rx="2" ry="2" /> | |
| <text x="512.68" y="751.5" ></text> | |
| </g> | |
| <g > | |
| <title>el0_svc_common.constprop.0 (51,321,445 samples, 0.03%)</title><rect x="38.3" y="629" width="0.4" height="15.0" fill="rgb(224,89,21)" rx="2" ry="2" /> | |
| <text x="41.35" y="639.5" ></text> | |
| </g> | |
| <g > | |
| <title>update_single_program_texture (98,327,465 samples, 0.05%)</title><rect x="868.6" y="549" width="0.6" height="15.0" fill="rgb(241,165,39)" rx="2" ry="2" /> | |
| <text x="871.59" y="559.5" ></text> | |
| </g> | |
| <g > | |
| <title>cnd_signal (17,091,263 samples, 0.01%)</title><rect x="1031.8" y="677" width="0.2" height="15.0" fill="rgb(232,125,30)" rx="2" ry="2" /> | |
| <text x="1034.85" y="687.5" ></text> | |
| </g> | |
| <g > | |
| <title>el0_svc_common.constprop.0 (100,822,114 samples, 0.06%)</title><rect x="979.8" y="581" width="0.7" height="15.0" fill="rgb(224,89,21)" rx="2" ry="2" /> | |
| <text x="982.81" y="591.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_unmarshal_BufferSubData (110,834,215 samples, 0.06%)</title><rect x="974.7" y="677" width="0.7" height="15.0" fill="rgb(218,60,14)" rx="2" ry="2" /> | |
| <text x="977.65" y="687.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_validated_drawrangeelements (1,523,060,278 samples, 0.84%)</title><rect x="934.7" y="629" width="9.9" height="15.0" fill="rgb(230,115,27)" rx="2" ry="2" /> | |
| <text x="937.69" y="639.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_glthread_flush_batch (24,367,123 samples, 0.01%)</title><rect x="977.8" y="709" width="0.2" height="15.0" fill="rgb(239,158,38)" rx="2" ry="2" /> | |
| <text x="980.85" y="719.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_unmarshal_BindBuffer (17,346,961 samples, 0.01%)</title><rect x="862.6" y="645" width="0.1" height="15.0" fill="rgb(223,86,20)" rx="2" ry="2" /> | |
| <text x="865.58" y="655.5" ></text> | |
| </g> | |
| <g > | |
| <title>__printf_buffer_write (26,117,553 samples, 0.01%)</title><rect x="969.9" y="661" width="0.2" height="15.0" fill="rgb(220,73,17)" rx="2" ry="2" /> | |
| <text x="972.94" y="671.5" ></text> | |
| </g> | |
| <g > | |
| <title>pa_fdsem_after_poll (37,552,058 samples, 0.02%)</title><rect x="12.9" y="757" width="0.2" height="15.0" fill="rgb(208,15,3)" rx="2" ry="2" /> | |
| <text x="15.88" y="767.5" ></text> | |
| </g> | |
| <g > | |
| <title>ralloc_free (23,267,161 samples, 0.01%)</title><rect x="687.2" y="677" width="0.1" height="15.0" fill="rgb(234,136,32)" rx="2" ry="2" /> | |
| <text x="690.18" y="687.5" ></text> | |
| </g> | |
| <g > | |
| <title>si_bind_ps_shader (171,409,364 samples, 0.09%)</title><rect x="56.1" y="773" width="1.2" height="15.0" fill="rgb(240,164,39)" rx="2" ry="2" /> | |
| <text x="59.14" y="783.5" ></text> | |
| </g> | |
| <g > | |
| <title>tc_set_framebuffer_state (18,580,765 samples, 0.01%)</title><rect x="1109.2" y="661" width="0.2" height="15.0" fill="rgb(244,180,43)" rx="2" ry="2" /> | |
| <text x="1112.24" y="671.5" ></text> | |
| </g> | |
| <g > | |
| <title>el0_svc (30,367,821 samples, 0.02%)</title><rect x="538.3" y="581" width="0.2" height="15.0" fill="rgb(244,183,43)" rx="2" ry="2" /> | |
| <text x="541.31" y="591.5" ></text> | |
| </g> | |
| <g > | |
| <title>el0_svc (19,792,176 samples, 0.01%)</title><rect x="1172.8" y="645" width="0.2" height="15.0" fill="rgb(244,183,43)" rx="2" ry="2" /> | |
| <text x="1175.84" y="655.5" ></text> | |
| </g> | |
| <g > | |
| <title>vfs_getxattr (53,481,390 samples, 0.03%)</title><rect x="1182.3" y="453" width="0.3" height="15.0" fill="rgb(231,122,29)" rx="2" ry="2" /> | |
| <text x="1185.30" y="463.5" ></text> | |
| </g> | |
| <g > | |
| <title>glthread_unmarshal_batch (937,147,709 samples, 0.52%)</title><rect x="494.3" y="805" width="6.1" height="15.0" fill="rgb(247,195,46)" rx="2" ry="2" /> | |
| <text x="497.28" y="815.5" ></text> | |
| </g> | |
| <g > | |
| <title>el0t_64_sync (61,425,998 samples, 0.03%)</title><rect x="455.9" y="661" width="0.4" height="15.0" fill="rgb(217,56,13)" rx="2" ry="2" /> | |
| <text x="458.88" y="671.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_unmarshal_Uniform4fv (50,935,175 samples, 0.03%)</title><rect x="879.0" y="645" width="0.3" height="15.0" fill="rgb(212,33,8)" rx="2" ry="2" /> | |
| <text x="881.97" y="655.5" ></text> | |
| </g> | |
| <g > | |
| <title>si_set_mutable_tex_desc_fields (90,456,644 samples, 0.05%)</title><rect x="528.7" y="629" width="0.6" height="15.0" fill="rgb(226,97,23)" rx="2" ry="2" /> | |
| <text x="531.69" y="639.5" ></text> | |
| </g> | |
| <g > | |
| <title>do_el0_svc (49,442,933 samples, 0.03%)</title><rect x="11.0" y="709" width="0.4" height="15.0" fill="rgb(218,60,14)" rx="2" ry="2" /> | |
| <text x="14.04" y="719.5" ></text> | |
| </g> | |
| <g > | |
| <title>util_queue_add_job_locked.part.0 (179,764,728 samples, 0.10%)</title><rect x="458.7" y="741" width="1.1" height="15.0" fill="rgb(243,177,42)" rx="2" ry="2" /> | |
| <text x="461.68" y="751.5" ></text> | |
| </g> | |
| <g > | |
| <title>el0_svc (331,293,231 samples, 0.18%)</title><rect x="1161.2" y="533" width="2.2" height="15.0" fill="rgb(244,183,43)" rx="2" ry="2" /> | |
| <text x="1164.19" y="543.5" ></text> | |
| </g> | |
| <g > | |
| <title>si_flush_gfx_cs (63,429,687 samples, 0.04%)</title><rect x="517.0" y="677" width="0.4" height="15.0" fill="rgb(242,171,41)" rx="2" ry="2" /> | |
| <text x="520.00" y="687.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_flush_vertices_for_uniforms (89,452,015 samples, 0.05%)</title><rect x="470.6" y="757" width="0.6" height="15.0" fill="rgb(211,31,7)" rx="2" ry="2" /> | |
| <text x="473.57" y="767.5" ></text> | |
| </g> | |
| <g > | |
| <title>do_el0_svc (39,962,889 samples, 0.02%)</title><rect x="884.6" y="517" width="0.3" height="15.0" fill="rgb(218,60,14)" rx="2" ry="2" /> | |
| <text x="887.60" y="527.5" ></text> | |
| </g> | |
| <g > | |
| <title>st_update_framebuffer_state (27,882,528 samples, 0.02%)</title><rect x="374.9" y="757" width="0.2" height="15.0" fill="rgb(231,123,29)" rx="2" ry="2" /> | |
| <text x="377.92" y="767.5" ></text> | |
| </g> | |
| <g > | |
| <title>si_query_hw_get_result (15,864,778 samples, 0.01%)</title><rect x="902.7" y="613" width="0.1" height="15.0" fill="rgb(239,156,37)" rx="2" ry="2" /> | |
| <text x="905.70" y="623.5" ></text> | |
| </g> | |
| <g > | |
| <title>do_el0_svc (62,199,738 samples, 0.03%)</title><rect x="538.9" y="565" width="0.4" height="15.0" fill="rgb(218,60,14)" rx="2" ry="2" /> | |
| <text x="541.93" y="575.5" ></text> | |
| </g> | |
| <g > | |
| <title>void st_update_array_templ< (24,574,592 samples, 0.01%)</title><rect x="813.9" y="533" width="0.2" height="15.0" fill="rgb(243,178,42)" rx="2" ry="2" /> | |
| <text x="816.94" y="543.5" ></text> | |
| </g> | |
| <g > | |
| <title>dri3_find_back (48,433,547 samples, 0.03%)</title><rect x="1105.8" y="549" width="0.3" height="15.0" fill="rgb(211,31,7)" rx="2" ry="2" /> | |
| <text x="1108.82" y="559.5" ></text> | |
| </g> | |
| <g > | |
| <title>si_sampler_view_add_buffer (48,943,215 samples, 0.03%)</title><rect x="216.9" y="757" width="0.3" height="15.0" fill="rgb(228,106,25)" rx="2" ry="2" /> | |
| <text x="219.91" y="767.5" ></text> | |
| </g> | |
| <g > | |
| <title>map_buffer_range (249,092,893 samples, 0.14%)</title><rect x="1167.6" y="757" width="1.6" height="15.0" fill="rgb(244,183,43)" rx="2" ry="2" /> | |
| <text x="1170.60" y="767.5" ></text> | |
| </g> | |
| <g > | |
| <title>tc_get_query_result (23,381,020 samples, 0.01%)</title><rect x="1159.6" y="693" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" /> | |
| <text x="1162.64" y="703.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_reference_texobj_ (57,965,656 samples, 0.03%)</title><rect x="864.1" y="613" width="0.4" height="15.0" fill="rgb(229,111,26)" rx="2" ry="2" /> | |
| <text x="867.08" y="623.5" ></text> | |
| </g> | |
| <g > | |
| <title>si_is_resource_busy (26,763,008 samples, 0.01%)</title><rect x="371.8" y="725" width="0.1" height="15.0" fill="rgb(233,132,31)" rx="2" ry="2" /> | |
| <text x="374.77" y="735.5" ></text> | |
| </g> | |
| <g > | |
| <title>[redeclipse] (5,228,480,010 samples, 2.90%)</title><rect x="768.2" y="501" width="34.2" height="15.0" fill="rgb(253,222,53)" rx="2" ry="2" /> | |
| <text x="771.24" y="511.5" >[r..</text> | |
| </g> | |
| <g > | |
| <title>el0_svc (102,557,512 samples, 0.06%)</title><rect x="900.3" y="469" width="0.6" height="15.0" fill="rgb(244,183,43)" rx="2" ry="2" /> | |
| <text x="903.26" y="479.5" ></text> | |
| </g> | |
| <g > | |
| <title>st_upload_constants (40,256,066 samples, 0.02%)</title><rect x="1112.1" y="661" width="0.3" height="15.0" fill="rgb(238,154,36)" rx="2" ry="2" /> | |
| <text x="1115.11" y="671.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_marshal_DrawRangeElements (22,152,202 samples, 0.01%)</title><rect x="1094.4" y="757" width="0.2" height="15.0" fill="rgb(229,111,26)" rx="2" ry="2" /> | |
| <text x="1097.43" y="767.5" ></text> | |
| </g> | |
| <g > | |
| <title>[libpulsecommon-16.1.so] (144,113,501 samples, 0.08%)</title><rect x="11.5" y="725" width="0.9" height="15.0" fill="rgb(224,88,21)" rx="2" ry="2" /> | |
| <text x="14.46" y="735.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_uniform (35,633,584 samples, 0.02%)</title><rect x="1019.8" y="645" width="0.2" height="15.0" fill="rgb(248,201,48)" rx="2" ry="2" /> | |
| <text x="1022.79" y="655.5" ></text> | |
| </g> | |
| <g > | |
| <title>glthread_unmarshal_batch (2,614,431,313 samples, 1.45%)</title><rect x="1077.0" y="725" width="17.1" height="15.0" fill="rgb(247,195,46)" rx="2" ry="2" /> | |
| <text x="1080.00" y="735.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_unmarshal_VertexAttribPointer_packed (32,507,439 samples, 0.02%)</title><rect x="815.2" y="613" width="0.2" height="15.0" fill="rgb(232,124,29)" rx="2" ry="2" /> | |
| <text x="818.16" y="623.5" ></text> | |
| </g> | |
| <g > | |
| <title>st_upload_constants (42,583,888 samples, 0.02%)</title><rect x="1082.4" y="661" width="0.3" height="15.0" fill="rgb(238,154,36)" rx="2" ry="2" /> | |
| <text x="1085.42" y="671.5" ></text> | |
| </g> | |
| <g > | |
| <title>st_update_single_texture (40,313,013 samples, 0.02%)</title><rect x="998.1" y="581" width="0.2" height="15.0" fill="rgb(208,15,3)" rx="2" ry="2" /> | |
| <text x="1001.05" y="591.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_BindBuffer (38,668,904 samples, 0.02%)</title><rect x="922.4" y="629" width="0.3" height="15.0" fill="rgb(210,23,5)" rx="2" ry="2" /> | |
| <text x="925.40" y="639.5" ></text> | |
| </g> | |
| <g > | |
| <title>amdgpu_bo_map (38,423,662 samples, 0.02%)</title><rect x="961.0" y="629" width="0.2" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" /> | |
| <text x="963.96" y="639.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_VertexAttribPointer (172,631,821 samples, 0.10%)</title><rect x="492.2" y="773" width="1.1" height="15.0" fill="rgb(211,29,7)" rx="2" ry="2" /> | |
| <text x="495.19" y="783.5" ></text> | |
| </g> | |
| <g > | |
| <title>el0t_64_sync (18,434,936 samples, 0.01%)</title><rect x="1068.6" y="645" width="0.1" height="15.0" fill="rgb(217,56,13)" rx="2" ry="2" /> | |
| <text x="1071.58" y="655.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_VertexAttribPointer (147,747,176 samples, 0.08%)</title><rect x="952.3" y="629" width="1.0" height="15.0" fill="rgb(211,29,7)" rx="2" ry="2" /> | |
| <text x="955.29" y="639.5" ></text> | |
| </g> | |
| <g > | |
| <title>si_emit_shader_vs (161,585,620 samples, 0.09%)</title><rect x="177.9" y="757" width="1.1" height="15.0" fill="rgb(235,141,33)" rx="2" ry="2" /> | |
| <text x="180.93" y="767.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_use_program (71,321,485 samples, 0.04%)</title><rect x="858.9" y="597" width="0.4" height="15.0" fill="rgb(235,141,33)" rx="2" ry="2" /> | |
| <text x="861.87" y="607.5" ></text> | |
| </g> | |
| <g > | |
| <title>cso_set_vertex_elements (15,679,660 samples, 0.01%)</title><rect x="813.7" y="517" width="0.1" height="15.0" fill="rgb(238,152,36)" rx="2" ry="2" /> | |
| <text x="816.73" y="527.5" ></text> | |
| </g> | |
| <g > | |
| <title>cso_set_vertex_elements_direct (21,014,244 samples, 0.01%)</title><rect x="452.6" y="693" width="0.1" height="15.0" fill="rgb(222,80,19)" rx="2" ry="2" /> | |
| <text x="455.58" y="703.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_marshal_ActiveTexture (18,103,779 samples, 0.01%)</title><rect x="918.4" y="709" width="0.1" height="15.0" fill="rgb(224,88,21)" rx="2" ry="2" /> | |
| <text x="921.41" y="719.5" ></text> | |
| </g> | |
| <g > | |
| <title>gfx6_emit_framebuffer_state (47,418,314 samples, 0.03%)</title><rect x="82.9" y="709" width="0.3" height="15.0" fill="rgb(245,185,44)" rx="2" ry="2" /> | |
| <text x="85.91" y="719.5" ></text> | |
| </g> | |
| <g > | |
| <title>do_notify_resume (22,045,539 samples, 0.01%)</title><rect x="901.4" y="469" width="0.2" height="15.0" fill="rgb(233,129,30)" rx="2" ry="2" /> | |
| <text x="904.44" y="479.5" ></text> | |
| </g> | |
| <g > | |
| <title>drm_ioctl (22,410,062 samples, 0.01%)</title><rect x="190.1" y="549" width="0.2" height="15.0" fill="rgb(231,121,29)" rx="2" ry="2" /> | |
| <text x="193.14" y="559.5" ></text> | |
| </g> | |
| <g > | |
| <title>__aarch64_ldadd4_acq_rel (28,795,023 samples, 0.02%)</title><rect x="482.0" y="757" width="0.2" height="15.0" fill="rgb(228,108,25)" rx="2" ry="2" /> | |
| <text x="485.04" y="767.5" ></text> | |
| </g> | |
| <g > | |
| <title>__aarch64_ldadd4_acq_rel (173,470,423 samples, 0.10%)</title><rect x="392.3" y="709" width="1.2" height="15.0" fill="rgb(228,108,25)" rx="2" ry="2" /> | |
| <text x="395.34" y="719.5" ></text> | |
| </g> | |
| <g > | |
| <title>update_array.constprop.0 (20,538,776 samples, 0.01%)</title><rect x="1067.6" y="661" width="0.2" height="15.0" fill="rgb(224,88,21)" rx="2" ry="2" /> | |
| <text x="1070.63" y="671.5" ></text> | |
| </g> | |
| <g > | |
| <title>__aarch64_ldadd4_acq_rel (59,016,866 samples, 0.03%)</title><rect x="860.5" y="661" width="0.3" height="15.0" fill="rgb(228,108,25)" rx="2" ry="2" /> | |
| <text x="863.46" y="671.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_DrawElementsBaseVertex (16,798,770 samples, 0.01%)</title><rect x="945.1" y="629" width="0.1" height="15.0" fill="rgb(214,41,10)" rx="2" ry="2" /> | |
| <text x="948.11" y="639.5" ></text> | |
| </g> | |
| <g > | |
| <title>el0_svc_common.constprop.0 (39,253,887 samples, 0.02%)</title><rect x="1160.8" y="501" width="0.2" height="15.0" fill="rgb(224,89,21)" rx="2" ry="2" /> | |
| <text x="1163.77" y="511.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_unmarshal_DrawElementsPacked (22,292,606 samples, 0.01%)</title><rect x="878.2" y="629" width="0.2" height="15.0" fill="rgb(225,92,22)" rx="2" ry="2" /> | |
| <text x="881.23" y="639.5" ></text> | |
| </g> | |
| <g > | |
| <title>st_get_sampler_views (21,525,525 samples, 0.01%)</title><rect x="939.5" y="565" width="0.1" height="15.0" fill="rgb(224,91,21)" rx="2" ry="2" /> | |
| <text x="942.46" y="575.5" ></text> | |
| </g> | |
| <g > | |
| <title>dri3_flush_present_events (35,765,502 samples, 0.02%)</title><rect x="1106.1" y="549" width="0.3" height="15.0" fill="rgb(217,57,13)" rx="2" ry="2" /> | |
| <text x="1109.14" y="559.5" ></text> | |
| </g> | |
| <g > | |
| <title>st_update_framebuffer_state (55,957,882 samples, 0.03%)</title><rect x="988.7" y="645" width="0.3" height="15.0" fill="rgb(231,123,29)" rx="2" ry="2" /> | |
| <text x="991.66" y="655.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_unmarshal_DrawArraysInstanced (28,532,649 samples, 0.02%)</title><rect x="783.3" y="85" width="0.2" height="15.0" fill="rgb(209,20,4)" rx="2" ry="2" /> | |
| <text x="786.30" y="95.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_unmarshal_Uniform3f (15,365,404 samples, 0.01%)</title><rect x="499.0" y="789" width="0.1" height="15.0" fill="rgb(231,119,28)" rx="2" ry="2" /> | |
| <text x="502.05" y="799.5" ></text> | |
| </g> | |
| <g > | |
| <title>do_futex (26,329,675 samples, 0.01%)</title><rect x="843.4" y="501" width="0.2" height="15.0" fill="rgb(245,184,44)" rx="2" ry="2" /> | |
| <text x="846.44" y="511.5" ></text> | |
| </g> | |
| <g > | |
| <title>pthread_mutex_lock@@GLIBC_2.17 (39,138,886 samples, 0.02%)</title><rect x="35.5" y="805" width="0.3" height="15.0" fill="rgb(234,136,32)" rx="2" ry="2" /> | |
| <text x="38.54" y="815.5" ></text> | |
| </g> | |
| <g > | |
| <title>__ftello64 (15,334,150 samples, 0.01%)</title><rect x="1171.1" y="773" width="0.1" height="15.0" fill="rgb(228,107,25)" rx="2" ry="2" /> | |
| <text x="1174.12" y="783.5" ></text> | |
| </g> | |
| <g > | |
| <title>slab_alloc (46,586,187 samples, 0.03%)</title><rect x="1168.4" y="645" width="0.3" height="15.0" fill="rgb(221,74,17)" rx="2" ry="2" /> | |
| <text x="1171.41" y="655.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_flush_vertices_for_uniforms (19,163,269 samples, 0.01%)</title><rect x="1022.4" y="597" width="0.2" height="15.0" fill="rgb(211,31,7)" rx="2" ry="2" /> | |
| <text x="1025.45" y="607.5" ></text> | |
| </g> | |
| <g > | |
| <title>glthread_unmarshal_batch (8,317,787,033 samples, 4.61%)</title><rect x="1096.2" y="725" width="54.4" height="15.0" fill="rgb(247,195,46)" rx="2" ry="2" /> | |
| <text x="1099.21" y="735.5" >glthr..</text> | |
| </g> | |
| <g > | |
| <title>_mesa_DrawElementsBaseVertex (22,455,257 samples, 0.01%)</title><rect x="794.4" y="245" width="0.1" height="15.0" fill="rgb(214,41,10)" rx="2" ry="2" /> | |
| <text x="797.40" y="255.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_use_shader_program (36,736,620 samples, 0.02%)</title><rect x="477.8" y="757" width="0.3" height="15.0" fill="rgb(245,188,44)" rx="2" ry="2" /> | |
| <text x="480.83" y="767.5" ></text> | |
| </g> | |
| <g > | |
| <title>el0_svc (40,145,728 samples, 0.02%)</title><rect x="1105.9" y="421" width="0.2" height="15.0" fill="rgb(244,183,43)" rx="2" ry="2" /> | |
| <text x="1108.86" y="431.5" ></text> | |
| </g> | |
| <g > | |
| <title>__printf_buffer (188,781,688 samples, 0.10%)</title><rect x="820.0" y="645" width="1.2" height="15.0" fill="rgb(219,68,16)" rx="2" ry="2" /> | |
| <text x="823.00" y="655.5" ></text> | |
| </g> | |
| <g > | |
| <title>st_prepare_draw (660,632,513 samples, 0.37%)</title><rect x="1084.3" y="661" width="4.3" height="15.0" fill="rgb(214,45,10)" rx="2" ry="2" /> | |
| <text x="1087.31" y="671.5" ></text> | |
| </g> | |
| <g > | |
| <title>import_iovec (19,153,730 samples, 0.01%)</title><rect x="508.4" y="501" width="0.1" height="15.0" fill="rgb(241,168,40)" rx="2" ry="2" /> | |
| <text x="511.39" y="511.5" ></text> | |
| </g> | |
| <g > | |
| <title>si_query_hw_begin (51,899,602 samples, 0.03%)</title><rect x="48.5" y="773" width="0.3" height="15.0" fill="rgb(214,44,10)" rx="2" ry="2" /> | |
| <text x="51.47" y="783.5" ></text> | |
| </g> | |
| <g > | |
| <title>st_upload_constants (43,749,662 samples, 0.02%)</title><rect x="1086.6" y="629" width="0.3" height="15.0" fill="rgb(238,154,36)" rx="2" ry="2" /> | |
| <text x="1089.61" y="639.5" ></text> | |
| </g> | |
| <g > | |
| <title>__aarch64_ldadd4_acq_rel (22,746,345 samples, 0.01%)</title><rect x="809.8" y="613" width="0.1" height="15.0" fill="rgb(228,108,25)" rx="2" ry="2" /> | |
| <text x="812.78" y="623.5" ></text> | |
| </g> | |
| <g > | |
| <title>el0t_64_sync (17,340,709 samples, 0.01%)</title><rect x="1034.1" y="533" width="0.1" height="15.0" fill="rgb(217,56,13)" rx="2" ry="2" /> | |
| <text x="1037.10" y="543.5" ></text> | |
| </g> | |
| <g > | |
| <title>u_upload_alloc (42,003,990 samples, 0.02%)</title><rect x="419.0" y="725" width="0.3" height="15.0" fill="rgb(235,138,33)" rx="2" ry="2" /> | |
| <text x="422.00" y="735.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_lookup_shader_program_err_glthread (175,285,387 samples, 0.10%)</title><rect x="1143.8" y="677" width="1.1" height="15.0" fill="rgb(246,190,45)" rx="2" ry="2" /> | |
| <text x="1146.76" y="687.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_unmarshal_DrawElementsPacked (25,926,957 samples, 0.01%)</title><rect x="498.7" y="789" width="0.1" height="15.0" fill="rgb(225,92,22)" rx="2" ry="2" /> | |
| <text x="501.66" y="799.5" ></text> | |
| </g> | |
| <g > | |
| <title>cso_set_vertex_elements_direct (55,335,181 samples, 0.03%)</title><rect x="452.6" y="709" width="0.3" height="15.0" fill="rgb(222,80,19)" rx="2" ry="2" /> | |
| <text x="455.57" y="719.5" ></text> | |
| </g> | |
| <g > | |
| <title>st_get_sampler_view_format (41,125,180 samples, 0.02%)</title><rect x="855.0" y="517" width="0.3" height="15.0" fill="rgb(211,30,7)" rx="2" ry="2" /> | |
| <text x="858.04" y="527.5" ></text> | |
| </g> | |
| <g > | |
| <title>st_get_texture_sampler_view_from_stobj (49,486,173 samples, 0.03%)</title><rect x="825.3" y="549" width="0.3" height="15.0" fill="rgb(211,32,7)" rx="2" ry="2" /> | |
| <text x="828.26" y="559.5" ></text> | |
| </g> | |
| <g > | |
| <title>st_prepare_draw (23,140,779 samples, 0.01%)</title><rect x="878.5" y="613" width="0.1" height="15.0" fill="rgb(214,45,10)" rx="2" ry="2" /> | |
| <text x="881.47" y="623.5" ></text> | |
| </g> | |
| <g > | |
| <title>__arm64_sys_futex (143,802,339 samples, 0.08%)</title><rect x="338.2" y="661" width="1.0" height="15.0" fill="rgb(247,196,47)" rx="2" ry="2" /> | |
| <text x="341.24" y="671.5" ></text> | |
| </g> | |
| <g > | |
| <title>invoke_syscall (58,663,542 samples, 0.03%)</title><rect x="538.9" y="533" width="0.4" height="15.0" fill="rgb(209,18,4)" rx="2" ry="2" /> | |
| <text x="541.93" y="543.5" ></text> | |
| </g> | |
| <g > | |
| <title>util_sparse_array_get (20,754,713 samples, 0.01%)</title><rect x="925.0" y="597" width="0.2" height="15.0" fill="rgb(241,168,40)" rx="2" ry="2" /> | |
| <text x="928.04" y="607.5" ></text> | |
| </g> | |
| <g > | |
| <title>__arm64_sys_futex (87,487,839 samples, 0.05%)</title><rect x="1173.7" y="581" width="0.6" height="15.0" fill="rgb(247,196,47)" rx="2" ry="2" /> | |
| <text x="1176.73" y="591.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_draw_arrays.part.0 (302,115,927 samples, 0.17%)</title><rect x="1081.3" y="693" width="2.0" height="15.0" fill="rgb(227,104,25)" rx="2" ry="2" /> | |
| <text x="1084.29" y="703.5" ></text> | |
| </g> | |
| <g > | |
| <title>pthread_cond_signal@@GLIBC_2.17 (41,674,199 samples, 0.02%)</title><rect x="447.8" y="645" width="0.3" height="15.0" fill="rgb(232,126,30)" rx="2" ry="2" /> | |
| <text x="450.81" y="655.5" ></text> | |
| </g> | |
| <g > | |
| <title>el0_svc_common.constprop.0 (24,040,853 samples, 0.01%)</title><rect x="14.4" y="645" width="0.2" height="15.0" fill="rgb(224,89,21)" rx="2" ry="2" /> | |
| <text x="17.44" y="655.5" ></text> | |
| </g> | |
| <g > | |
| <title>si_update_common_shader_state (164,970,217 samples, 0.09%)</title><rect x="61.9" y="773" width="1.1" height="15.0" fill="rgb(244,182,43)" rx="2" ry="2" /> | |
| <text x="64.90" y="783.5" ></text> | |
| </g> | |
| <g > | |
| <title>amdgpu_do_add_buffer (332,179,894 samples, 0.18%)</title><rect x="130.5" y="757" width="2.1" height="15.0" fill="rgb(223,86,20)" rx="2" ry="2" /> | |
| <text x="133.47" y="767.5" ></text> | |
| </g> | |
| <g > | |
| <title>dri3_get_buffer.constprop.0 (114,983,665 samples, 0.06%)</title><rect x="1105.7" y="565" width="0.8" height="15.0" fill="rgb(219,64,15)" rx="2" ry="2" /> | |
| <text x="1108.74" y="575.5" ></text> | |
| </g> | |
| <g > | |
| <title>[redeclipse] (1,144,953,687 samples, 0.63%)</title><rect x="779.2" y="181" width="7.5" height="15.0" fill="rgb(253,222,53)" rx="2" ry="2" /> | |
| <text x="782.23" y="191.5" ></text> | |
| </g> | |
| <g > | |
| <title>drm_sched_job_add_dependency (42,849,313 samples, 0.02%)</title><rect x="314.9" y="549" width="0.3" height="15.0" fill="rgb(250,211,50)" rx="2" ry="2" /> | |
| <text x="317.91" y="559.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_lookup_or_create_texture (33,523,201 samples, 0.02%)</title><rect x="350.0" y="757" width="0.2" height="15.0" fill="rgb(235,140,33)" rx="2" ry="2" /> | |
| <text x="352.99" y="767.5" ></text> | |
| </g> | |
| <g > | |
| <title>void st_update_array_templ< (29,835,950 samples, 0.02%)</title><rect x="930.2" y="597" width="0.2" height="15.0" fill="rgb(243,178,42)" rx="2" ry="2" /> | |
| <text x="933.22" y="607.5" ></text> | |
| </g> | |
| <g > | |
| <title>[libSDL2-2.0.so.0.3000.0] (20,352,308 samples, 0.01%)</title><rect x="505.3" y="741" width="0.2" height="15.0" fill="rgb(227,102,24)" rx="2" ry="2" /> | |
| <text x="508.32" y="751.5" ></text> | |
| </g> | |
| <g > | |
| <title>strspn (19,933,576 samples, 0.01%)</title><rect x="793.3" y="277" width="0.1" height="15.0" fill="rgb(207,13,3)" rx="2" ry="2" /> | |
| <text x="796.27" y="287.5" ></text> | |
| </g> | |
| <g > | |
| <title>__libc_recvmsg (40,145,728 samples, 0.02%)</title><rect x="1105.9" y="469" width="0.2" height="15.0" fill="rgb(220,72,17)" rx="2" ry="2" /> | |
| <text x="1108.86" y="479.5" ></text> | |
| </g> | |
| <g > | |
| <title>_mesa_unmarshal_BufferData (246,712,442 samples, 0.14%)</title><rect x="371.1" y="805" width="1.6" height="15.0" fill="rgb(243,175,41)" rx="2" ry="2" /> | |
| <text x="374.10" y="815.5" ></text> | |
| </g> | |
| <g > | |
| <title>strspn (37,807,461 samples, 0.02%)</title><rect x="787.7" y="181" width="0.3" height="15.0" fill="rgb(207,13,3)" rx="2" ry="2" /> | |
| <text x="790.73" y="191.5" ></text> | |
| </g> | |
| <g > |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment