ALT Linux Bugzilla
– View All Attachments for
Bug 42604
New bug
|
Search
|
[?]
Register
|
Log In
[x]
|
Forgot Password
Login:
[x]
|
EN
|
RU
Attachment #10669
общесистемный профайл на "плохом" ядре (5.15.33)
text/html
2022-04-26 19:10:19 MSK
238.85 KB
no flags
Details
<?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="1062" onload="init(evt)" viewBox="0 0 1200 1062" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"> <!-- Flame graph stack visualization. See https://github.com/brendangregg/FlameGraph for latest version, and http://www.brendangregg.com/flamegraphs.html for examples. --> <!-- NOTES: --> <defs> <linearGradient id="background" y1="0" y2="1" x1="0" x2="0" > <stop stop-color="#eeeeee" offset="5%" /> <stop stop-color="#eeeeb0" offset="95%" /> </linearGradient> </defs> <style type="text/css"> text { font-family:Verdana; font-size:12px; fill:rgb(0,0,0); } #search, #ignorecase { opacity:0.1; cursor:pointer; } #search:hover, #search.show, #ignorecase:hover, #ignorecase.show { opacity:1; } #subtitle { text-anchor:middle; font-color:rgb(160,160,160); } #title { text-anchor:middle; font-size:17px} #unzoom { cursor:pointer; } #frames > *:hover { stroke:black; stroke-width:0.5; cursor:pointer; } .hide { display:none; } .parent { opacity:0.5; } </style> <script type="text/ecmascript"> <![CDATA[ "use strict"; var details, searchbtn, unzoombtn, matchedtxt, svg, searching, currentSearchTerm, ignorecase, ignorecaseBtn; function init(evt) { details = document.getElementById("details").firstChild; searchbtn = document.getElementById("search"); ignorecaseBtn = document.getElementById("ignorecase"); unzoombtn = document.getElementById("unzoom"); matchedtxt = document.getElementById("matched"); svg = document.getElementsByTagName("svg")[0]; searching = 0; currentSearchTerm = null; } window.addEventListener("click", function(e) { var target = find_group(e.target); if (target) { if (target.nodeName == "a") { if (e.ctrlKey === false) return; e.preventDefault(); } if (target.classList.contains("parent")) unzoom(); zoom(target); } else if (e.target.id == "unzoom") unzoom(); else if (e.target.id == "search") search_prompt(); else if (e.target.id == "ignorecase") toggle_ignorecase(); }, false) // mouse-over for info // show window.addEventListener("mouseover", function(e) { var target = find_group(e.target); if (target) details.nodeValue = "Function: " + g_to_text(target); }, false) // clear window.addEventListener("mouseout", function(e) { var target = find_group(e.target); if (target) details.nodeValue = ' '; }, false) // ctrl-F for search window.addEventListener("keydown",function (e) { if (e.keyCode === 114 || (e.ctrlKey && e.keyCode === 70)) { e.preventDefault(); search_prompt(); } }, false) // ctrl-I to toggle case-sensitive search window.addEventListener("keydown",function (e) { if (e.ctrlKey && e.keyCode === 73) { e.preventDefault(); toggle_ignorecase(); } }, false) // functions function find_child(node, selector) { var children = node.querySelectorAll(selector); if (children.length) return children[0]; return; } function find_group(node) { var parent = node.parentElement; if (!parent) return; if (parent.id == "frames") return node; return find_group(parent); } function orig_save(e, attr, val) { if (e.attributes["_orig_" + attr] != undefined) return; if (e.attributes[attr] == undefined) return; if (val == undefined) val = e.attributes[attr].value; e.setAttribute("_orig_" + attr, val); } function orig_load(e, attr) { if (e.attributes["_orig_"+attr] == undefined) return; e.attributes[attr].value = e.attributes["_orig_" + attr].value; e.removeAttribute("_orig_"+attr); } function g_to_text(e) { var text = find_child(e, "title").firstChild.nodeValue; return (text) } function g_to_func(e) { var func = g_to_text(e); // if there's any manipulation we want to do to the function // name before it's searched, do it here before returning. return (func); } function update_text(e) { var r = find_child(e, "rect"); var t = find_child(e, "text"); var w = parseFloat(r.attributes.width.value) -3; var txt = find_child(e, "title").textContent.replace(/\([^(]*\)$/,""); t.attributes.x.value = parseFloat(r.attributes.x.value) + 3; // Smaller than this size won't fit anything if (w < 2 * 12 * 0.59) { t.textContent = ""; return; } t.textContent = txt; // Fit in full text width if (/^ *$/.test(txt) || t.getSubStringLength(0, txt.length) < w) return; for (var x = txt.length - 2; x > 0; x--) { if (t.getSubStringLength(0, x + 2) <= w) { t.textContent = txt.substring(0, x) + ".."; return; } } t.textContent = ""; } // zoom function zoom_reset(e) { if (e.attributes != undefined) { orig_load(e, "x"); orig_load(e, "width"); } if (e.childNodes == undefined) return; for (var i = 0, c = e.childNodes; i < c.length; i++) { zoom_reset(c[i]); } } function zoom_child(e, x, ratio) { if (e.attributes != undefined) { if (e.attributes.x != undefined) { orig_save(e, "x"); e.attributes.x.value = (parseFloat(e.attributes.x.value) - x - 10) * ratio + 10; if (e.tagName == "text") e.attributes.x.value = find_child(e.parentNode, "rect[x]").attributes.x.value + 3; } if (e.attributes.width != undefined) { orig_save(e, "width"); e.attributes.width.value = parseFloat(e.attributes.width.value) * ratio; } } if (e.childNodes == undefined) return; for (var i = 0, c = e.childNodes; i < c.length; i++) { zoom_child(c[i], x - 10, ratio); } } function zoom_parent(e) { if (e.attributes) { if (e.attributes.x != undefined) { orig_save(e, "x"); e.attributes.x.value = 10; } if (e.attributes.width != undefined) { orig_save(e, "width"); e.attributes.width.value = parseInt(svg.width.baseVal.value) - (10 * 2); } } if (e.childNodes == undefined) return; for (var i = 0, c = e.childNodes; i < c.length; i++) { zoom_parent(c[i]); } } function zoom(node) { var attr = find_child(node, "rect").attributes; var width = parseFloat(attr.width.value); var xmin = parseFloat(attr.x.value); var xmax = parseFloat(xmin + width); var ymin = parseFloat(attr.y.value); var ratio = (svg.width.baseVal.value - 2 * 10) / width; // XXX: Workaround for JavaScript float issues (fix me) var fudge = 0.0001; unzoombtn.classList.remove("hide"); var el = document.getElementById("frames").children; for (var i = 0; i < el.length; i++) { var e = el[i]; var a = find_child(e, "rect").attributes; var ex = parseFloat(a.x.value); var ew = parseFloat(a.width.value); var upstack; // Is it an ancestor if (0 == 0) { upstack = parseFloat(a.y.value) > ymin; } else { upstack = parseFloat(a.y.value) < ymin; } if (upstack) { // Direct ancestor if (ex <= xmin && (ex+ew+fudge) >= xmax) { e.classList.add("parent"); zoom_parent(e); update_text(e); } // not in current path else e.classList.add("hide"); } // Children maybe else { // no common path if (ex < xmin || ex + fudge >= xmax) { e.classList.add("hide"); } else { zoom_child(e, xmin, ratio); update_text(e); } } } search(); } function unzoom() { unzoombtn.classList.add("hide"); var el = document.getElementById("frames").children; for(var i = 0; i < el.length; i++) { el[i].classList.remove("parent"); el[i].classList.remove("hide"); zoom_reset(el[i]); update_text(el[i]); } search(); } // search function toggle_ignorecase() { ignorecase = !ignorecase; if (ignorecase) { ignorecaseBtn.classList.add("show"); } else { ignorecaseBtn.classList.remove("show"); } reset_search(); search(); } function reset_search() { var el = document.querySelectorAll("#frames rect"); for (var i = 0; i < el.length; i++) { orig_load(el[i], "fill") } } function search_prompt() { if (!searching) { var term = prompt("Enter a search term (regexp " + "allowed, eg: ^ext4_)" + (ignorecase ? ", ignoring case" : "") + "\nPress Ctrl-i to toggle case sensitivity", ""); if (term != null) { currentSearchTerm = term; search(); } } else { reset_search(); searching = 0; currentSearchTerm = null; searchbtn.classList.remove("show"); searchbtn.firstChild.nodeValue = "Search" matchedtxt.classList.add("hide"); matchedtxt.firstChild.nodeValue = "" } } function search(term) { if (currentSearchTerm === null) return; var term = currentSearchTerm; var re = new RegExp(term, ignorecase ? 'i' : ''); var el = document.getElementById("frames").children; var matches = new Object(); var maxwidth = 0; for (var i = 0; i < el.length; i++) { var e = el[i]; var func = g_to_func(e); var rect = find_child(e, "rect"); if (func == null || rect == null) continue; // Save max width. Only works as we have a root frame var w = parseFloat(rect.attributes.width.value); if (w > maxwidth) maxwidth = w; if (func.match(re)) { // highlight var x = parseFloat(rect.attributes.x.value); orig_save(rect, "fill"); rect.attributes.fill.value = "rgb(230,0,230)"; // remember matches if (matches[x] == undefined) { matches[x] = w; } else { if (w > matches[x]) { // overwrite with parent matches[x] = w; } } searching = 1; } } if (!searching) return; searchbtn.classList.add("show"); searchbtn.firstChild.nodeValue = "Reset Search"; // calculate percent matched, excluding vertical overlap var count = 0; var lastx = -1; var lastw = 0; var keys = Array(); for (k in matches) { if (matches.hasOwnProperty(k)) keys.push(k); } // sort the matched frames by their x location // ascending, then width descending keys.sort(function(a, b){ return a - b; }); // Step through frames saving only the biggest bottom-up frames // thanks to the sort order. This relies on the tree property // where children are always smaller than their parents. var fudge = 0.0001; // JavaScript floating point for (var k in keys) { var x = parseFloat(keys[k]); var w = matches[keys[k]]; if (x >= lastx + lastw - fudge) { count += w; lastx = x; lastw = w; } } // display matched percent matchedtxt.classList.remove("hide"); var pct = 100 * count / maxwidth; if (pct != 100) pct = pct.toFixed(1) matchedtxt.firstChild.nodeValue = "Matched: " + pct + "%"; } ]]> </script> <rect x="0.0" y="0" width="1200.0" height="1062.0" fill="url(#background)" /> <text id="title" x="600.00" y="24" >Slow cursor (5.15.33-rpi)</text> <text id="details" x="10.00" y="1045" > </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="1045" > </text> <g id="frames"> <g > <title>[libQt5Widgets.so.5.15.2] (1 samples, 0.66%)</title><rect x="677.6" y="661" width="7.8" height="15.0" fill="rgb(206,3,14)" rx="2" ry="2" /> <text x="680.63" y="671.5" ></text> </g> <g > <title>___sys_recvmsg (1 samples, 0.66%)</title><rect x="1166.7" y="645" width="7.8" height="15.0" fill="rgb(243,79,20)" rx="2" ry="2" /> <text x="1169.71" y="655.5" ></text> </g> <g > <title>do_epoll_wait (3 samples, 1.97%)</title><rect x="491.3" y="741" width="23.3" height="15.0" fill="rgb(238,65,31)" rx="2" ry="2" /> <text x="494.32" y="751.5" >d..</text> </g> <g > <title>__arm64_sys_epoll_pwait (3 samples, 1.97%)</title><rect x="491.3" y="773" width="23.3" height="15.0" fill="rgb(221,55,26)" rx="2" ry="2" /> <text x="494.32" y="783.5" >_..</text> </g> <g > <title>kmalloc_reserve (1 samples, 0.66%)</title><rect x="305.0" y="357" width="7.8" height="15.0" fill="rgb(206,61,9)" rx="2" ry="2" /> <text x="308.00" y="367.5" ></text> </g> <g > <title>invoke_syscall (1 samples, 0.66%)</title><rect x="1151.2" y="757" width="7.7" height="15.0" fill="rgb(233,112,0)" rx="2" ry="2" /> <text x="1154.18" y="767.5" ></text> </g> <g > <title>_xcb_conn_wait (1 samples, 0.66%)</title><rect x="918.3" y="645" width="7.8" height="15.0" fill="rgb(235,156,12)" rx="2" ry="2" /> <text x="921.29" y="655.5" ></text> </g> <g > <title>ProcChangeWindowAttributes (1 samples, 0.66%)</title><rect x="235.1" y="917" width="7.8" height="15.0" fill="rgb(227,65,45)" rx="2" ry="2" /> <text x="238.13" y="927.5" ></text> </g> <g > <title>el0t_64_sync (1 samples, 0.66%)</title><rect x="522.4" y="709" width="7.7" height="15.0" fill="rgb(251,136,54)" rx="2" ry="2" /> <text x="525.37" y="719.5" ></text> </g> <g > <title>__ftruncate64 (1 samples, 0.66%)</title><rect x="1151.2" y="853" width="7.7" height="15.0" fill="rgb(227,72,53)" rx="2" ry="2" /> <text x="1154.18" y="863.5" ></text> </g> <g > <title>finish_task_switch.isra.0 (1 samples, 0.66%)</title><rect x="568.9" y="901" width="7.8" height="15.0" fill="rgb(240,128,7)" rx="2" ry="2" /> <text x="571.95" y="911.5" ></text> </g> <g > <title>invoke_syscall (1 samples, 0.66%)</title><rect x="576.7" y="773" width="7.8" height="15.0" fill="rgb(252,112,11)" rx="2" ry="2" /> <text x="579.71" y="783.5" ></text> </g> <g > <title>drmModeMoveCursor (6 samples, 3.95%)</title><rect x="64.3" y="677" width="46.6" height="15.0" fill="rgb(207,173,54)" rx="2" ry="2" /> <text x="67.34" y="687.5" >drmM..</text> </g> <g > <title>FlushClient (1 samples, 0.66%)</title><rect x="305.0" y="693" width="7.8" height="15.0" fill="rgb(223,217,33)" rx="2" ry="2" /> <text x="308.00" y="703.5" ></text> </g> <g > <title>el1h_64_irq (1 samples, 0.66%)</title><rect x="1073.6" y="885" width="7.7" height="15.0" fill="rgb(213,173,1)" rx="2" ry="2" /> <text x="1076.55" y="895.5" ></text> </g> <g > <title>el0t_64_sync (2 samples, 1.32%)</title><rect x="343.8" y="517" width="15.5" height="15.0" fill="rgb(211,81,26)" rx="2" ry="2" /> <text x="346.82" y="527.5" ></text> </g> <g > <title>el0_svc_common.constprop.0 (2 samples, 1.32%)</title><rect x="25.5" y="821" width="15.6" height="15.0" fill="rgb(222,217,17)" rx="2" ry="2" /> <text x="28.53" y="831.5" ></text> </g> <g > <title>ktime_get_coarse_real_ts64 (1 samples, 0.66%)</title><rect x="33.3" y="693" width="7.8" height="15.0" fill="rgb(215,84,21)" rx="2" ry="2" /> <text x="36.29" y="703.5" ></text> </g> <g > <title>el0t_64_sync (3 samples, 1.97%)</title><rect x="173.0" y="837" width="23.3" height="15.0" fill="rgb(219,185,53)" rx="2" ry="2" /> <text x="176.03" y="847.5" >e..</text> </g> <g > <title>kthread (1 samples, 0.66%)</title><rect x="530.1" y="965" width="7.8" height="15.0" fill="rgb(226,131,2)" rx="2" ry="2" /> <text x="533.13" y="975.5" ></text> </g> <g > <title>_xcb_in_read (1 samples, 0.66%)</title><rect x="1166.7" y="805" width="7.8" height="15.0" fill="rgb(205,13,50)" rx="2" ry="2" /> <text x="1169.71" y="815.5" ></text> </g> <g > <title>ep_done_scan (1 samples, 0.66%)</title><rect x="118.7" y="757" width="7.7" height="15.0" fill="rgb(251,101,3)" rx="2" ry="2" /> <text x="121.68" y="767.5" ></text> </g> <g > <title>miDoCopy (2 samples, 1.32%)</title><rect x="281.7" y="853" width="15.5" height="15.0" fill="rgb(234,205,35)" rx="2" ry="2" /> <text x="284.71" y="863.5" ></text> </g> <g > <title>el0t_64_sync (1 samples, 0.66%)</title><rect x="475.8" y="853" width="7.8" height="15.0" fill="rgb(245,147,50)" rx="2" ry="2" /> <text x="478.79" y="863.5" ></text> </g> <g > <title>QWidgetPrivate::drawWidget (1 samples, 0.66%)</title><rect x="646.6" y="677" width="7.7" height="15.0" fill="rgb(217,35,6)" rx="2" ry="2" /> <text x="649.58" y="687.5" ></text> </g> <g > <title>[libQt5Core.so.5.15.2] (1 samples, 0.66%)</title><rect x="142.0" y="901" width="7.7" height="15.0" fill="rgb(247,116,25)" rx="2" ry="2" /> <text x="144.97" y="911.5" ></text> </g> <g > <title>__arm64_sys_writev (1 samples, 0.66%)</title><rect x="700.9" y="245" width="7.8" height="15.0" fill="rgb(249,137,28)" rx="2" ry="2" /> <text x="703.92" y="255.5" ></text> </g> <g > <title>drm_ioctl (1 samples, 0.66%)</title><rect x="235.1" y="501" width="7.8" height="15.0" fill="rgb(250,195,31)" rx="2" ry="2" /> <text x="238.13" y="511.5" ></text> </g> <g > <title>irq_exit (5 samples, 3.29%)</title><rect x="964.9" y="741" width="38.8" height="15.0" fill="rgb(210,198,18)" rx="2" ry="2" /> <text x="967.87" y="751.5" >irq..</text> </g> <g > <title>[libQt5XcbQpa.so.5.15.2] (12 samples, 7.89%)</title><rect x="142.0" y="933" width="93.1" height="15.0" fill="rgb(244,63,37)" rx="2" ry="2" /> <text x="144.97" y="943.5" >[libQt5XcbQ..</text> </g> <g > <title>[libQt5Widgets.so.5.15.2] (1 samples, 0.66%)</title><rect x="677.6" y="645" width="7.8" height="15.0" fill="rgb(239,176,50)" rx="2" ry="2" /> <text x="680.63" y="655.5" ></text> </g> <g > <title>QXcbConnection::processXcbEvents (3 samples, 1.97%)</title><rect x="708.7" y="805" width="23.3" height="15.0" fill="rgb(254,215,5)" rx="2" ry="2" /> <text x="711.68" y="815.5" >Q..</text> </g> <g > <title>__atan2 (2 samples, 1.32%)</title><rect x="41.1" y="805" width="15.5" height="15.0" fill="rgb(253,168,15)" rx="2" ry="2" /> <text x="44.05" y="815.5" ></text> </g> <g > <title>DeliverDeviceEvents (4 samples, 2.63%)</title><rect x="429.2" y="837" width="31.1" height="15.0" fill="rgb(248,133,37)" rx="2" ry="2" /> <text x="432.21" y="847.5" >De..</text> </g> <g > <title>el0t_64_sync_handler (1 samples, 0.66%)</title><rect x="918.3" y="565" width="7.8" height="15.0" fill="rgb(214,30,4)" rx="2" ry="2" /> <text x="921.29" y="575.5" ></text> </g> <g > <title>futex_wait_queue_me (2 samples, 1.32%)</title><rect x="180.8" y="693" width="15.5" height="15.0" fill="rgb(212,1,8)" rx="2" ry="2" /> <text x="183.79" y="703.5" ></text> </g> <g > <title>poll_for_response (1 samples, 0.66%)</title><rect x="584.5" y="821" width="7.7" height="15.0" fill="rgb(244,58,33)" rx="2" ry="2" /> <text x="587.47" y="831.5" ></text> </g> <g > <title>el0t_64_sync_handler (3 samples, 1.97%)</title><rect x="173.0" y="821" width="23.3" height="15.0" fill="rgb(208,199,15)" rx="2" ry="2" /> <text x="176.03" y="831.5" >e..</text> </g> <g > <title>_XEventsQueued (1 samples, 0.66%)</title><rect x="584.5" y="837" width="7.7" height="15.0" fill="rgb(238,153,33)" rx="2" ry="2" /> <text x="587.47" y="847.5" ></text> </g> <g > <title>__GI___poll (1 samples, 0.66%)</title><rect x="576.7" y="869" width="7.8" height="15.0" fill="rgb(236,73,20)" rx="2" ry="2" /> <text x="579.71" y="879.5" ></text> </g> <g > <title>do_iter_readv_writev (1 samples, 0.66%)</title><rect x="242.9" y="677" width="7.8" height="15.0" fill="rgb(216,78,45)" rx="2" ry="2" /> <text x="245.89" y="687.5" ></text> </g> <g > <title>[libinput.so.10.13.0] (1 samples, 0.66%)</title><rect x="10.0" y="965" width="7.8" height="15.0" fill="rgb(215,47,18)" rx="2" ry="2" /> <text x="13.00" y="975.5" ></text> </g> <g > <title>Dispatch (36 samples, 23.68%)</title><rect x="235.1" y="933" width="279.5" height="15.0" fill="rgb(220,184,13)" rx="2" ry="2" /> <text x="238.13" y="943.5" >Dispatch</text> </g> <g > <title>el0t_64_sync (3 samples, 1.97%)</title><rect x="110.9" y="901" width="23.3" height="15.0" fill="rgb(222,70,29)" rx="2" ry="2" /> <text x="113.92" y="911.5" >e..</text> </g> <g > <title>QWidgetPrivate::drawWidget (1 samples, 0.66%)</title><rect x="638.8" y="661" width="7.8" height="15.0" fill="rgb(230,143,13)" rx="2" ry="2" /> <text x="641.82" y="671.5" ></text> </g> <g > <title>lxqt-panel (1 samples, 0.66%)</title><rect x="553.4" y="997" width="7.8" height="15.0" fill="rgb(223,2,28)" rx="2" ry="2" /> <text x="556.42" y="1007.5" ></text> </g> <g > <title>el0t_64_sync (1 samples, 0.66%)</title><rect x="297.2" y="869" width="7.8" height="15.0" fill="rgb(230,66,46)" rx="2" ry="2" /> <text x="300.24" y="879.5" ></text> </g> <g > <title>QWidgetPrivate::paintBackground (4 samples, 2.63%)</title><rect x="607.8" y="709" width="31.0" height="15.0" fill="rgb(248,71,25)" rx="2" ry="2" /> <text x="610.76" y="719.5" >QW..</text> </g> <g > <title>el0_svc_common.constprop.0 (3 samples, 1.97%)</title><rect x="437.0" y="565" width="23.3" height="15.0" fill="rgb(253,97,45)" rx="2" ry="2" /> <text x="439.97" y="575.5" >e..</text> </g> <g > <title>__GI___writev (3 samples, 1.97%)</title><rect x="437.0" y="645" width="23.3" height="15.0" fill="rgb(233,125,49)" rx="2" ry="2" /> <text x="439.97" y="655.5" >_..</text> </g> <g > <title>el0_svc (1 samples, 0.66%)</title><rect x="134.2" y="805" width="7.8" height="15.0" fill="rgb(210,167,51)" rx="2" ry="2" /> <text x="137.21" y="815.5" ></text> </g> <g > <title>__ioctl (3 samples, 1.97%)</title><rect x="359.3" y="581" width="23.3" height="15.0" fill="rgb(250,34,50)" rx="2" ry="2" /> <text x="362.34" y="591.5" >_..</text> </g> <g > <title>call_on_irq_stack (1 samples, 0.66%)</title><rect x="1073.6" y="821" width="7.7" height="15.0" fill="rgb(233,37,9)" rx="2" ry="2" /> <text x="1076.55" y="831.5" ></text> </g> <g > <title>_xcb_in_read (3 samples, 1.97%)</title><rect x="196.3" y="885" width="23.3" height="15.0" fill="rgb(254,216,7)" rx="2" ry="2" /> <text x="199.32" y="895.5" >_..</text> </g> <g > <title>__libc_recvmsg (1 samples, 0.66%)</title><rect x="475.8" y="869" width="7.8" height="15.0" fill="rgb(247,99,1)" rx="2" ry="2" /> <text x="478.79" y="879.5" ></text> </g> <g > <title>__usb_hcd_giveback_urb (3 samples, 1.97%)</title><rect x="980.4" y="645" width="23.3" height="15.0" fill="rgb(250,36,1)" rx="2" ry="2" /> <text x="983.39" y="655.5" >_..</text> </g> <g > <title>truncate_pagecache (1 samples, 0.66%)</title><rect x="1151.2" y="661" width="7.7" height="15.0" fill="rgb(230,101,31)" rx="2" ry="2" /> <text x="1154.18" y="671.5" ></text> </g> <g > <title>ospoll_wait (12 samples, 7.89%)</title><rect x="41.1" y="933" width="93.1" height="15.0" fill="rgb(216,122,44)" rx="2" ry="2" /> <text x="44.05" y="943.5" >ospoll_wait</text> </g> <g > <title>_start (36 samples, 23.68%)</title><rect x="235.1" y="981" width="279.5" height="15.0" fill="rgb(207,122,2)" rx="2" ry="2" /> <text x="238.13" y="991.5" >_start</text> </g> <g > <title>[libQt5Widgets.so.5.15.2] (2 samples, 1.32%)</title><rect x="693.2" y="741" width="15.5" height="15.0" fill="rgb(241,91,30)" rx="2" ry="2" /> <text x="696.16" y="751.5" ></text> </g> <g > <title>bmap (1 samples, 0.66%)</title><rect x="530.1" y="885" width="7.8" height="15.0" fill="rgb(217,97,29)" rx="2" ry="2" /> <text x="533.13" y="895.5" ></text> </g> <g > <title>el1h_64_irq_handler (1 samples, 0.66%)</title><rect x="87.6" y="165" width="7.8" height="15.0" fill="rgb(241,193,3)" rx="2" ry="2" /> <text x="90.63" y="175.5" ></text> </g> <g > <title>el0t_64_sync_handler (3 samples, 1.97%)</title><rect x="110.9" y="885" width="23.3" height="15.0" fill="rgb(246,64,51)" rx="2" ry="2" /> <text x="113.92" y="895.5" >e..</text> </g> <g > <title>TryClientEvents (3 samples, 1.97%)</title><rect x="382.6" y="709" width="23.3" height="15.0" fill="rgb(205,54,6)" rx="2" ry="2" /> <text x="385.63" y="719.5" >T..</text> </g> <g > <title>InputThreadFillPipe (2 samples, 1.32%)</title><rect x="25.5" y="933" width="15.6" height="15.0" fill="rgb(240,19,27)" rx="2" ry="2" /> <text x="28.53" y="943.5" ></text> </g> <g > <title>el0_svc_common.constprop.0 (1 samples, 0.66%)</title><rect x="475.8" y="789" width="7.8" height="15.0" fill="rgb(254,102,49)" rx="2" ry="2" /> <text x="478.79" y="799.5" ></text> </g> <g > <title>__arm64_sys_ioctl (2 samples, 1.32%)</title><rect x="460.3" y="661" width="15.5" height="15.0" fill="rgb(232,215,46)" rx="2" ry="2" /> <text x="463.26" y="671.5" ></text> </g> <g > <title>el0_svc_common.constprop.0 (2 samples, 1.32%)</title><rect x="460.3" y="693" width="15.5" height="15.0" fill="rgb(214,39,18)" rx="2" ry="2" /> <text x="463.26" y="703.5" ></text> </g> <g > <title>handle_mm_fault (1 samples, 0.66%)</title><rect x="910.5" y="549" width="7.8" height="15.0" fill="rgb(208,194,11)" rx="2" ry="2" /> <text x="913.53" y="559.5" ></text> </g> <g > <title>QApplicationPrivate::notify_helper (1 samples, 0.66%)</title><rect x="638.8" y="613" width="7.8" height="15.0" fill="rgb(213,54,45)" rx="2" ry="2" /> <text x="641.82" y="623.5" ></text> </g> <g > <title>drm_ioctl (2 samples, 1.32%)</title><rect x="367.1" y="453" width="15.5" height="15.0" fill="rgb(235,209,12)" rx="2" ry="2" /> <text x="370.11" y="463.5" ></text> </g> <g > <title>do_futex (2 samples, 1.32%)</title><rect x="180.8" y="725" width="15.5" height="15.0" fill="rgb(206,11,20)" rx="2" ry="2" /> <text x="183.79" y="735.5" ></text> </g> <g > <title>shmem_read_mapping_page_gfp (1 samples, 0.66%)</title><rect x="289.5" y="341" width="7.7" height="15.0" fill="rgb(214,217,18)" rx="2" ry="2" /> <text x="292.47" y="351.5" ></text> </g> <g > <title>__mod_timer (1 samples, 0.66%)</title><rect x="468.0" y="373" width="7.8" height="15.0" fill="rgb(233,85,15)" rx="2" ry="2" /> <text x="471.03" y="383.5" ></text> </g> <g > <title>QToolButton::initStyleOption (1 samples, 0.66%)</title><rect x="677.6" y="629" width="7.8" height="15.0" fill="rgb(231,164,36)" rx="2" ry="2" /> <text x="680.63" y="639.5" ></text> </g> <g > <title>el0t_64_sync (1 samples, 0.66%)</title><rect x="235.1" y="613" width="7.8" height="15.0" fill="rgb(221,159,12)" rx="2" ry="2" /> <text x="238.13" y="623.5" ></text> </g> <g > <title>mbox_send_message (1 samples, 0.66%)</title><rect x="87.6" y="261" width="7.8" height="15.0" fill="rgb(207,26,49)" rx="2" ry="2" /> <text x="90.63" y="271.5" ></text> </g> <g > <title>drm_mode_cursor_universal (2 samples, 1.32%)</title><rect x="343.8" y="341" width="15.5" height="15.0" fill="rgb(238,126,32)" rx="2" ry="2" /> <text x="346.82" y="351.5" ></text> </g> <g > <title>ret_from_fork (2 samples, 1.32%)</title><rect x="926.1" y="981" width="15.5" height="15.0" fill="rgb(211,161,35)" rx="2" ry="2" /> <text x="929.05" y="991.5" ></text> </g> <g > <title>poll_for_next_event (1 samples, 0.66%)</title><rect x="1166.7" y="821" width="7.8" height="15.0" fill="rgb(226,33,41)" rx="2" ry="2" /> <text x="1169.71" y="831.5" ></text> </g> <g > <title>do_writev (1 samples, 0.66%)</title><rect x="405.9" y="485" width="7.8" height="15.0" fill="rgb(217,88,51)" rx="2" ry="2" /> <text x="408.92" y="495.5" ></text> </g> <g > <title>QPainter::fillRect (4 samples, 2.63%)</title><rect x="607.8" y="677" width="31.0" height="15.0" fill="rgb(230,74,45)" rx="2" ry="2" /> <text x="610.76" y="687.5" >QP..</text> </g> <g > <title>el1_interrupt (1 samples, 0.66%)</title><rect x="219.6" y="645" width="7.8" height="15.0" fill="rgb(252,163,0)" rx="2" ry="2" /> <text x="222.61" y="655.5" ></text> </g> <g > <title>__do_softirq (1 samples, 0.66%)</title><rect x="452.5" y="197" width="7.8" height="15.0" fill="rgb(229,184,24)" rx="2" ry="2" /> <text x="455.50" y="207.5" ></text> </g> <g > <title>ep_done_scan (1 samples, 0.66%)</title><rect x="126.4" y="725" width="7.8" height="15.0" fill="rgb(224,212,31)" rx="2" ry="2" /> <text x="129.45" y="735.5" ></text> </g> <g > <title>__libc_recvmsg (1 samples, 0.66%)</title><rect x="1166.7" y="789" width="7.8" height="15.0" fill="rgb(221,26,0)" rx="2" ry="2" /> <text x="1169.71" y="799.5" ></text> </g> <g > <title>QWidgetPrivate::drawWidget (1 samples, 0.66%)</title><rect x="646.6" y="645" width="7.7" height="15.0" fill="rgb(232,46,31)" rx="2" ry="2" /> <text x="649.58" y="655.5" ></text> </g> <g > <title>st_TexSubImage (4 samples, 2.63%)</title><rect x="250.7" y="773" width="31.0" height="15.0" fill="rgb(217,91,34)" rx="2" ry="2" /> <text x="253.66" y="783.5" >st..</text> </g> <g > <title>do_el0_svc (1 samples, 0.66%)</title><rect x="522.4" y="661" width="7.7" height="15.0" fill="rgb(250,156,11)" rx="2" ry="2" /> <text x="525.37" y="671.5" ></text> </g> <g > <title>tasklet_action_common.constprop.0 (4 samples, 2.63%)</title><rect x="972.6" y="677" width="31.1" height="15.0" fill="rgb(236,204,16)" rx="2" ry="2" /> <text x="975.63" y="687.5" >ta..</text> </g> <g > <title>_xcb_in_read (1 samples, 0.66%)</title><rect x="584.5" y="773" width="7.7" height="15.0" fill="rgb(223,143,35)" rx="2" ry="2" /> <text x="587.47" y="783.5" ></text> </g> <g > <title>schedule_timeout (1 samples, 0.66%)</title><rect x="95.4" y="245" width="7.8" height="15.0" fill="rgb(216,61,43)" rx="2" ry="2" /> <text x="98.39" y="255.5" ></text> </g> <g > <title>_xcb_conn_wait (1 samples, 0.66%)</title><rect x="700.9" y="405" width="7.8" height="15.0" fill="rgb(236,41,9)" rx="2" ry="2" /> <text x="703.92" y="415.5" ></text> </g> <g > <title>schedule_timeout (1 samples, 0.66%)</title><rect x="933.8" y="741" width="7.8" height="15.0" fill="rgb(219,5,1)" rx="2" ry="2" /> <text x="936.82" y="751.5" ></text> </g> <g > <title>ChangeToCursor (1 samples, 0.66%)</title><rect x="235.1" y="869" width="7.8" height="15.0" fill="rgb(247,222,20)" rx="2" ry="2" /> <text x="238.13" y="879.5" ></text> </g> <g > <title>QCoreApplication::notifyInternal2 (2 samples, 1.32%)</title><rect x="654.3" y="693" width="15.6" height="15.0" fill="rgb(242,134,36)" rx="2" ry="2" /> <text x="657.34" y="703.5" ></text> </g> <g > <title>sock_sendmsg (1 samples, 0.66%)</title><rect x="305.0" y="437" width="7.8" height="15.0" fill="rgb(250,80,41)" rx="2" ry="2" /> <text x="308.00" y="447.5" ></text> </g> <g > <title>vc4_fkms_crtc_duplicate_state (1 samples, 0.66%)</title><rect x="103.2" y="357" width="7.7" height="15.0" fill="rgb(230,117,21)" rx="2" ry="2" /> <text x="106.16" y="367.5" ></text> </g> <g > <title>g_main_context_iterate (1 samples, 0.66%)</title><rect x="522.4" y="901" width="7.7" height="15.0" fill="rgb(223,73,48)" rx="2" ry="2" /> <text x="525.37" y="911.5" ></text> </g> <g > <title>[pcmanfm-qt] (2 samples, 1.32%)</title><rect x="654.3" y="645" width="15.6" height="15.0" fill="rgb(215,167,37)" rx="2" ry="2" /> <text x="657.34" y="655.5" ></text> </g> <g > <title>shmem_getpage_gfp (1 samples, 0.66%)</title><rect x="289.5" y="325" width="7.7" height="15.0" fill="rgb(223,194,3)" rx="2" ry="2" /> <text x="292.47" y="335.5" ></text> </g> <g > <title>__arm64_sys_write (1 samples, 0.66%)</title><rect x="33.3" y="789" width="7.8" height="15.0" fill="rgb(235,61,3)" rx="2" ry="2" /> <text x="36.29" y="799.5" ></text> </g> <g > <title>TryClientEvents (3 samples, 1.97%)</title><rect x="437.0" y="741" width="23.3" height="15.0" fill="rgb(220,151,46)" rx="2" ry="2" /> <text x="439.97" y="751.5" >T..</text> </g> <g > <title>default_idle_call (5 samples, 3.29%)</title><rect x="1042.5" y="917" width="38.8" height="15.0" fill="rgb(237,28,11)" rx="2" ry="2" /> <text x="1045.50" y="927.5" >def..</text> </g> <g > <title>[libQt5Gui.so.5.15.2] (4 samples, 2.63%)</title><rect x="607.8" y="645" width="31.0" height="15.0" fill="rgb(217,80,29)" rx="2" ry="2" /> <text x="610.76" y="655.5" >[l..</text> </g> <g > <title>handle_domain_irq (1 samples, 0.66%)</title><rect x="1073.6" y="789" width="7.7" height="15.0" fill="rgb(237,188,25)" rx="2" ry="2" /> <text x="1076.55" y="799.5" ></text> </g> <g > <title>sd_event_run (2 samples, 1.32%)</title><rect x="1151.2" y="933" width="15.5" height="15.0" fill="rgb(222,72,42)" rx="2" ry="2" /> <text x="1154.18" y="943.5" ></text> </g> <g > <title>[perf] (5 samples, 3.29%)</title><rect x="879.5" y="901" width="38.8" height="15.0" fill="rgb(218,103,20)" rx="2" ry="2" /> <text x="882.47" y="911.5" >[pe..</text> </g> <g > <title>[libQt5Widgets.so.5.15.2] (9 samples, 5.92%)</title><rect x="600.0" y="741" width="69.9" height="15.0" fill="rgb(248,107,42)" rx="2" ry="2" /> <text x="603.00" y="751.5" >[libQt5..</text> </g> <g > <title>QPalette::operator= (1 samples, 0.66%)</title><rect x="677.6" y="597" width="7.8" height="15.0" fill="rgb(217,8,5)" rx="2" ry="2" /> <text x="680.63" y="607.5" ></text> </g> <g > <title>miSpriteTrace (1 samples, 0.66%)</title><rect x="421.4" y="805" width="7.8" height="15.0" fill="rgb(219,148,44)" rx="2" ry="2" /> <text x="424.45" y="815.5" ></text> </g> <g > <title>__primary_switched (13 samples, 8.55%)</title><rect x="941.6" y="981" width="100.9" height="15.0" fill="rgb(220,204,3)" rx="2" ry="2" /> <text x="944.58" y="991.5" >__primary_sw..</text> </g> <g > <title>QCommonStyle::pixelMetric (1 samples, 0.66%)</title><rect x="669.9" y="581" width="7.7" height="15.0" fill="rgb(242,224,20)" rx="2" ry="2" /> <text x="672.87" y="591.5" ></text> </g> <g > <title>el0t_64_sync_handler (1 samples, 0.66%)</title><rect x="297.2" y="853" width="7.8" height="15.0" fill="rgb(230,226,17)" rx="2" ry="2" /> <text x="300.24" y="863.5" ></text> </g> <g > <title>drm_mode_cursor_common (2 samples, 1.32%)</title><rect x="343.8" y="357" width="15.5" height="15.0" fill="rgb(226,48,18)" rx="2" ry="2" /> <text x="346.82" y="367.5" ></text> </g> <g > <title>QWidgetPrivate::sendPaintEvent (1 samples, 0.66%)</title><rect x="646.6" y="629" width="7.7" height="15.0" fill="rgb(240,44,22)" rx="2" ry="2" /> <text x="649.58" y="639.5" ></text> </g> <g > <title>[libfm-qt.so.10.0.0] (1 samples, 0.66%)</title><rect x="700.9" y="597" width="7.8" height="15.0" fill="rgb(231,25,20)" rx="2" ry="2" /> <text x="703.92" y="607.5" ></text> </g> <g > <title>QListView::paintEvent (1 samples, 0.66%)</title><rect x="638.8" y="549" width="7.8" height="15.0" fill="rgb(251,48,46)" rx="2" ry="2" /> <text x="641.82" y="559.5" ></text> </g> <g > <title>do_el0_svc (1 samples, 0.66%)</title><rect x="1151.2" y="789" width="7.7" height="15.0" fill="rgb(223,25,2)" rx="2" ry="2" /> <text x="1154.18" y="799.5" ></text> </g> <g > <title>smpboot_thread_fn (1 samples, 0.66%)</title><rect x="568.9" y="949" width="7.8" height="15.0" fill="rgb(222,155,40)" rx="2" ry="2" /> <text x="571.95" y="959.5" ></text> </g> <g > <title>jbd2_journal_commit_transaction (1 samples, 0.66%)</title><rect x="530.1" y="933" width="7.8" height="15.0" fill="rgb(232,161,31)" rx="2" ry="2" /> <text x="533.13" y="943.5" ></text> </g> <g > <title>commit_tail (1 samples, 0.66%)</title><rect x="468.0" y="501" width="7.8" height="15.0" fill="rgb(222,82,41)" rx="2" ry="2" /> <text x="471.03" y="511.5" ></text> </g> <g > <title>set_target (2 samples, 1.32%)</title><rect x="926.1" y="901" width="15.5" height="15.0" fill="rgb(250,122,14)" rx="2" ry="2" /> <text x="929.05" y="911.5" ></text> </g> <g > <title>_raw_spin_unlock_irqrestore (1 samples, 0.66%)</title><rect x="537.9" y="917" width="7.8" height="15.0" fill="rgb(239,193,15)" rx="2" ry="2" /> <text x="540.89" y="927.5" ></text> </g> <g > <title>QCoreApplication::notifyInternal2 (1 samples, 0.66%)</title><rect x="700.9" y="693" width="7.8" height="15.0" fill="rgb(212,140,19)" rx="2" ry="2" /> <text x="703.92" y="703.5" ></text> </g> <g > <title>el0t_64_sync (1 samples, 0.66%)</title><rect x="1182.2" y="869" width="7.8" height="15.0" fill="rgb(207,162,21)" rx="2" ry="2" /> <text x="1185.24" y="879.5" ></text> </g> <g > <title>[libinput.so.10.13.0] (2 samples, 1.32%)</title><rect x="41.1" y="837" width="15.5" height="15.0" fill="rgb(207,96,42)" rx="2" ry="2" /> <text x="44.05" y="847.5" ></text> </g> <g > <title>xcb_wait_for_reply (2 samples, 1.32%)</title><rect x="716.4" y="725" width="15.6" height="15.0" fill="rgb(237,161,6)" rx="2" ry="2" /> <text x="719.45" y="735.5" ></text> </g> <g > <title>do_el0_svc (1 samples, 0.66%)</title><rect x="739.7" y="853" width="7.8" height="15.0" fill="rgb(252,139,33)" rx="2" ry="2" /> <text x="742.74" y="863.5" ></text> </g> <g > <title>__fdget_pos (1 samples, 0.66%)</title><rect x="405.9" y="469" width="7.8" height="15.0" fill="rgb(213,137,35)" rx="2" ry="2" /> <text x="408.92" y="479.5" ></text> </g> <g > <title>TryClientEvents (1 samples, 0.66%)</title><rect x="305.0" y="725" width="7.8" height="15.0" fill="rgb(205,121,38)" rx="2" ry="2" /> <text x="308.00" y="735.5" ></text> </g> <g > <title>__ioctl (1 samples, 0.66%)</title><rect x="235.1" y="629" width="7.8" height="15.0" fill="rgb(245,229,8)" rx="2" ry="2" /> <text x="238.13" y="639.5" ></text> </g> <g > <title>DeliverEventToInputClients (4 samples, 2.63%)</title><rect x="429.2" y="757" width="31.1" height="15.0" fill="rgb(253,54,23)" rx="2" ry="2" /> <text x="432.21" y="767.5" >De..</text> </g> <g > <title>__schedule (1 samples, 0.66%)</title><rect x="499.1" y="677" width="7.7" height="15.0" fill="rgb(254,173,11)" rx="2" ry="2" /> <text x="502.08" y="687.5" ></text> </g> <g > <title>XQueryPointer (1 samples, 0.66%)</title><rect x="1174.5" y="853" width="7.7" height="15.0" fill="rgb(207,59,8)" rx="2" ry="2" /> <text x="1177.47" y="863.5" ></text> </g> <g > <title>ext4_bmap (1 samples, 0.66%)</title><rect x="530.1" y="869" width="7.8" height="15.0" fill="rgb(246,170,25)" rx="2" ry="2" /> <text x="533.13" y="879.5" ></text> </g> <g > <title>QFrame::event (1 samples, 0.66%)</title><rect x="700.9" y="629" width="7.8" height="15.0" fill="rgb(207,214,22)" rx="2" ry="2" /> <text x="703.92" y="639.5" ></text> </g> <g > <title>__libc_start_main (3 samples, 1.97%)</title><rect x="1166.7" y="965" width="23.3" height="15.0" fill="rgb(254,185,32)" rx="2" ry="2" /> <text x="1169.71" y="975.5" >_..</text> </g> <g > <title>_start (17 samples, 11.18%)</title><rect x="600.0" y="981" width="132.0" height="15.0" fill="rgb(220,51,7)" rx="2" ry="2" /> <text x="603.00" y="991.5" >_start</text> </g> <g > <title>msg_submit (1 samples, 0.66%)</title><rect x="87.6" y="245" width="7.8" height="15.0" fill="rgb(232,203,52)" rx="2" ry="2" /> <text x="90.63" y="255.5" ></text> </g> <g > <title>policy_node (1 samples, 0.66%)</title><rect x="289.5" y="293" width="7.7" height="15.0" fill="rgb(221,116,21)" rx="2" ry="2" /> <text x="292.47" y="303.5" ></text> </g> <g > <title>ktime_get_coarse_real_ts64 (1 samples, 0.66%)</title><rect x="165.3" y="789" width="7.7" height="15.0" fill="rgb(231,189,36)" rx="2" ry="2" /> <text x="168.26" y="799.5" ></text> </g> <g > <title>qterminal (1 samples, 0.66%)</title><rect x="918.3" y="997" width="7.8" height="15.0" fill="rgb(251,198,14)" rx="2" ry="2" /> <text x="921.29" y="1007.5" ></text> </g> <g > <title>drm_atomic_helper_commit_planes (1 samples, 0.66%)</title><rect x="351.6" y="229" width="7.7" height="15.0" fill="rgb(248,26,19)" rx="2" ry="2" /> <text x="354.58" y="239.5" ></text> </g> <g > <title>[libQt5Core.so.5.15.2] (1 samples, 0.66%)</title><rect x="685.4" y="661" width="7.8" height="15.0" fill="rgb(232,66,5)" rx="2" ry="2" /> <text x="688.39" y="671.5" ></text> </g> <g > <title>__libc_recvmsg (1 samples, 0.66%)</title><rect x="584.5" y="757" width="7.7" height="15.0" fill="rgb(227,102,52)" rx="2" ry="2" /> <text x="587.47" y="767.5" ></text> </g> <g > <title>QApplicationPrivate::notify_helper (1 samples, 0.66%)</title><rect x="669.9" y="757" width="7.7" height="15.0" fill="rgb(218,211,6)" rx="2" ry="2" /> <text x="672.87" y="767.5" ></text> </g> <g > <title>do_writev (1 samples, 0.66%)</title><rect x="918.3" y="469" width="7.8" height="15.0" fill="rgb(213,55,53)" rx="2" ry="2" /> <text x="921.29" y="479.5" ></text> </g> <g > <title>_xcb_in_read (1 samples, 0.66%)</title><rect x="600.0" y="613" width="7.8" height="15.0" fill="rgb(254,92,47)" rx="2" ry="2" /> <text x="603.00" y="623.5" ></text> </g> <g > <title>add_to_page_cache_lru (1 samples, 0.66%)</title><rect x="902.8" y="597" width="7.7" height="15.0" fill="rgb(217,178,25)" rx="2" ry="2" /> <text x="905.76" y="607.5" ></text> </g> <g > <title>cpu_startup_entry (13 samples, 8.55%)</title><rect x="941.6" y="917" width="100.9" height="15.0" fill="rgb(242,39,0)" rx="2" ry="2" /> <text x="944.58" y="927.5" >cpu_startup_..</text> </g> <g > <title>__schedule (2 samples, 1.32%)</title><rect x="180.8" y="661" width="15.5" height="15.0" fill="rgb(235,135,49)" rx="2" ry="2" /> <text x="183.79" y="671.5" ></text> </g> <g > <title>__libc_start_main (17 samples, 11.18%)</title><rect x="600.0" y="965" width="132.0" height="15.0" fill="rgb(249,24,7)" rx="2" ry="2" /> <text x="603.00" y="975.5" >__libc_start_main</text> </g> <g > <title>__schedule (6 samples, 3.95%)</title><rect x="1089.1" y="901" width="46.6" height="15.0" fill="rgb(208,60,23)" rx="2" ry="2" /> <text x="1092.08" y="911.5" >__sc..</text> </g> <g > <title>call_on_irq_stack (1 samples, 0.66%)</title><rect x="219.6" y="613" width="7.8" height="15.0" fill="rgb(226,222,12)" rx="2" ry="2" /> <text x="222.61" y="623.5" ></text> </g> <g > <title>clk_change_rate (2 samples, 1.32%)</title><rect x="926.1" y="821" width="15.5" height="15.0" fill="rgb(209,104,1)" rx="2" ry="2" /> <text x="929.05" y="831.5" ></text> </g> <g > <title>el0t_64_sync (1 samples, 0.66%)</title><rect x="305.0" y="629" width="7.8" height="15.0" fill="rgb(253,106,0)" rx="2" ry="2" /> <text x="308.00" y="639.5" ></text> </g> <g > <title>drm_gem_get_pages (1 samples, 0.66%)</title><rect x="289.5" y="357" width="7.7" height="15.0" fill="rgb(236,97,53)" rx="2" ry="2" /> <text x="292.47" y="367.5" ></text> </g> <g > <title>glamor_upload_boxes (2 samples, 1.32%)</title><rect x="281.7" y="757" width="15.5" height="15.0" fill="rgb(209,125,49)" rx="2" ry="2" /> <text x="284.71" y="767.5" ></text> </g> <g > <title>QApplication::notify (1 samples, 0.66%)</title><rect x="700.9" y="677" width="7.8" height="15.0" fill="rgb(238,121,37)" rx="2" ry="2" /> <text x="703.92" y="687.5" ></text> </g> <g > <title>DeviceEnterNotifies (1 samples, 0.66%)</title><rect x="413.7" y="773" width="7.7" height="15.0" fill="rgb(244,127,42)" rx="2" ry="2" /> <text x="416.68" y="783.5" ></text> </g> <g > <title>drm_atomic_helper_commit_planes (1 samples, 0.66%)</title><rect x="468.0" y="469" width="7.8" height="15.0" fill="rgb(218,189,6)" rx="2" ry="2" /> <text x="471.03" y="479.5" ></text> </g> <g > <title>ProcessDeviceEvent (2 samples, 1.32%)</title><rect x="305.0" y="853" width="15.5" height="15.0" fill="rgb(233,164,53)" rx="2" ry="2" /> <text x="308.00" y="863.5" ></text> </g> <g > <title>QFrame::event (1 samples, 0.66%)</title><rect x="646.6" y="581" width="7.7" height="15.0" fill="rgb(245,114,16)" rx="2" ry="2" /> <text x="649.58" y="591.5" ></text> </g> <g > <title>invoke_syscall (1 samples, 0.66%)</title><rect x="1166.7" y="693" width="7.8" height="15.0" fill="rgb(245,15,30)" rx="2" ry="2" /> <text x="1169.71" y="703.5" ></text> </g> <g > <title>schedule_hrtimeout_range (1 samples, 0.66%)</title><rect x="227.4" y="725" width="7.7" height="15.0" fill="rgb(234,184,50)" rx="2" ry="2" /> <text x="230.37" y="735.5" ></text> </g> <g > <title>glamor_put_image (4 samples, 2.63%)</title><rect x="250.7" y="885" width="31.0" height="15.0" fill="rgb(237,57,22)" rx="2" ry="2" /> <text x="253.66" y="895.5" >gl..</text> </g> <g > <title>file_update_time (1 samples, 0.66%)</title><rect x="33.3" y="709" width="7.8" height="15.0" fill="rgb(233,62,17)" rx="2" ry="2" /> <text x="36.29" y="719.5" ></text> </g> <g > <title>g_socket_condition_check (1 samples, 0.66%)</title><rect x="522.4" y="741" width="7.7" height="15.0" fill="rgb(241,153,51)" rx="2" ry="2" /> <text x="525.37" y="751.5" ></text> </g> <g > <title>glTexSubImage2D (1 samples, 0.66%)</title><rect x="514.6" y="949" width="7.8" height="15.0" fill="rgb(237,8,54)" rx="2" ry="2" /> <text x="517.61" y="959.5" ></text> </g> <g > <title>drm_atomic_helper_commit_planes (1 samples, 0.66%)</title><rect x="235.1" y="325" width="7.8" height="15.0" fill="rgb(248,202,26)" rx="2" ry="2" /> <text x="238.13" y="335.5" ></text> </g> <g > <title>el0_svc (3 samples, 1.97%)</title><rect x="491.3" y="837" width="23.3" height="15.0" fill="rgb(224,68,0)" rx="2" ry="2" /> <text x="494.32" y="847.5" >e..</text> </g> <g > <title>[libQt5Widgets.so.5.15.2] (2 samples, 1.32%)</title><rect x="677.6" y="709" width="15.6" height="15.0" fill="rgb(248,210,23)" rx="2" ry="2" /> <text x="680.63" y="719.5" ></text> </g> <g > <title>schedule (1 samples, 0.66%)</title><rect x="227.4" y="693" width="7.7" height="15.0" fill="rgb(240,75,21)" rx="2" ry="2" /> <text x="230.37" y="703.5" ></text> </g> <g > <title>glamor_upload_region (4 samples, 2.63%)</title><rect x="250.7" y="853" width="31.0" height="15.0" fill="rgb(251,105,2)" rx="2" ry="2" /> <text x="253.66" y="863.5" >gl..</text> </g> <g > <title>_raw_spin_unlock_irq (1 samples, 0.66%)</title><rect x="747.5" y="725" width="7.8" height="15.0" fill="rgb(224,127,9)" rx="2" ry="2" /> <text x="750.50" y="735.5" ></text> </g> <g > <title>__wake_up_common_lock (1 samples, 0.66%)</title><rect x="398.2" y="357" width="7.7" height="15.0" fill="rgb(212,57,45)" rx="2" ry="2" /> <text x="401.16" y="367.5" ></text> </g> <g > <title>el0t_64_sync_handler (6 samples, 3.95%)</title><rect x="64.3" y="597" width="46.6" height="15.0" fill="rgb(220,119,54)" rx="2" ry="2" /> <text x="67.34" y="607.5" >el0t..</text> </g> <g > <title>el0t_64_sync_handler (1 samples, 0.66%)</title><rect x="561.2" y="917" width="7.7" height="15.0" fill="rgb(237,138,4)" rx="2" ry="2" /> <text x="564.18" y="927.5" ></text> </g> <g > <title>do_epoll_wait (3 samples, 1.97%)</title><rect x="110.9" y="773" width="23.3" height="15.0" fill="rgb(230,55,40)" rx="2" ry="2" /> <text x="113.92" y="783.5" >d..</text> </g> <g > <title>__arm64_sys_ioctl (1 samples, 0.66%)</title><rect x="289.5" y="469" width="7.7" height="15.0" fill="rgb(210,9,43)" rx="2" ry="2" /> <text x="292.47" y="479.5" ></text> </g> <g > <title>el0_svc_common.constprop.0 (1 samples, 0.66%)</title><rect x="242.9" y="773" width="7.8" height="15.0" fill="rgb(217,47,40)" rx="2" ry="2" /> <text x="245.89" y="783.5" ></text> </g> <g > <title>drm_crtc_commit_wait (1 samples, 0.66%)</title><rect x="343.8" y="229" width="7.8" height="15.0" fill="rgb(253,36,52)" rx="2" ry="2" /> <text x="346.82" y="239.5" ></text> </g> <g > <title>ext4_file_write_iter (5 samples, 3.29%)</title><rect x="879.5" y="693" width="38.8" height="15.0" fill="rgb(237,34,48)" rx="2" ry="2" /> <text x="882.47" y="703.5" >ext..</text> </g> <g > <title>futex_abstimed_wait_cancelable (1 samples, 0.66%)</title><rect x="134.2" y="853" width="7.8" height="15.0" fill="rgb(228,84,30)" rx="2" ry="2" /> <text x="137.21" y="863.5" ></text> </g> <g > <title>[libQt5XcbQpa.so.5.15.2] (1 samples, 0.66%)</title><rect x="700.9" y="501" width="7.8" height="15.0" fill="rgb(232,137,6)" rx="2" ry="2" /> <text x="703.92" y="511.5" ></text> </g> <g > <title>start_thread (1 samples, 0.66%)</title><rect x="134.2" y="965" width="7.8" height="15.0" fill="rgb(251,215,45)" rx="2" ry="2" /> <text x="137.21" y="975.5" ></text> </g> <g > <title>__arm64_sys_write (1 samples, 0.66%)</title><rect x="149.7" y="773" width="7.8" height="15.0" fill="rgb(225,60,19)" rx="2" ry="2" /> <text x="152.74" y="783.5" ></text> </g> <g > <title>g_wakeup_signal (1 samples, 0.66%)</title><rect x="149.7" y="901" width="7.8" height="15.0" fill="rgb(210,176,51)" rx="2" ry="2" /> <text x="152.74" y="911.5" ></text> </g> <g > <title>invoke_syscall (1 samples, 0.66%)</title><rect x="33.3" y="805" width="7.8" height="15.0" fill="rgb(230,125,24)" rx="2" ry="2" /> <text x="36.29" y="815.5" ></text> </g> <g > <title>drmModeMoveCursor (3 samples, 1.97%)</title><rect x="359.3" y="629" width="23.3" height="15.0" fill="rgb(207,198,16)" rx="2" ry="2" /> <text x="362.34" y="639.5" >d..</text> </g> <g > <title>el0_svc_common.constprop.0 (1 samples, 0.66%)</title><rect x="149.7" y="789" width="7.8" height="15.0" fill="rgb(245,126,24)" rx="2" ry="2" /> <text x="152.74" y="799.5" ></text> </g> <g > <title>QXcbConnection::xi2UpdateScrollingDevice (1 samples, 0.66%)</title><rect x="918.3" y="741" width="7.8" height="15.0" fill="rgb(244,90,9)" rx="2" ry="2" /> <text x="921.29" y="751.5" ></text> </g> <g > <title>__schedule (2 samples, 1.32%)</title><rect x="1011.4" y="869" width="15.6" height="15.0" fill="rgb(213,104,48)" rx="2" ry="2" /> <text x="1014.45" y="879.5" ></text> </g> <g > <title>InputThreadDoWork (14 samples, 9.21%)</title><rect x="25.5" y="949" width="108.7" height="15.0" fill="rgb(217,63,10)" rx="2" ry="2" /> <text x="28.53" y="959.5" >InputThreadDo..</text> </g> <g > <title>poll_for_event (1 samples, 0.66%)</title><rect x="1166.7" y="837" width="7.8" height="15.0" fill="rgb(233,164,54)" rx="2" ry="2" /> <text x="1169.71" y="847.5" ></text> </g> <g > <title>ChangeWindowAttributes (1 samples, 0.66%)</title><rect x="235.1" y="901" width="7.8" height="15.0" fill="rgb(211,170,9)" rx="2" ry="2" /> <text x="238.13" y="911.5" ></text> </g> <g > <title>[libQt5Widgets.so.5.15.2] (1 samples, 0.66%)</title><rect x="638.8" y="533" width="7.8" height="15.0" fill="rgb(205,20,10)" rx="2" ry="2" /> <text x="641.82" y="543.5" ></text> </g> <g > <title>__libc_recvmsg (1 samples, 0.66%)</title><rect x="584.5" y="741" width="7.7" height="15.0" fill="rgb(238,103,21)" rx="2" ry="2" /> <text x="587.47" y="751.5" ></text> </g> <g > <title>__arm64_sys_futex (1 samples, 0.66%)</title><rect x="134.2" y="741" width="7.8" height="15.0" fill="rgb(252,84,38)" rx="2" ry="2" /> <text x="137.21" y="751.5" ></text> </g> <g > <title>preempt_count_sub (1 samples, 0.66%)</title><rect x="537.9" y="901" width="7.8" height="15.0" fill="rgb(250,26,1)" rx="2" ry="2" /> <text x="540.89" y="911.5" ></text> </g> <g > <title>doShmPutImage (2 samples, 1.32%)</title><rect x="281.7" y="901" width="15.5" height="15.0" fill="rgb(205,31,54)" rx="2" ry="2" /> <text x="284.71" y="911.5" ></text> </g> <g > <title>journal_file_post_change (1 samples, 0.66%)</title><rect x="1151.2" y="869" width="7.7" height="15.0" fill="rgb(217,155,46)" rx="2" ry="2" /> <text x="1154.18" y="879.5" ></text> </g> <g > <title>QGuiApplicationPrivate::processLeaveEvent (2 samples, 1.32%)</title><rect x="677.6" y="789" width="15.6" height="15.0" fill="rgb(251,149,49)" rx="2" ry="2" /> <text x="680.63" y="799.5" ></text> </g> <g > <title>iomap_bmap (1 samples, 0.66%)</title><rect x="530.1" y="853" width="7.8" height="15.0" fill="rgb(215,189,48)" rx="2" ry="2" /> <text x="533.13" y="863.5" ></text> </g> <g > <title>commit_tail (2 samples, 1.32%)</title><rect x="343.8" y="261" width="15.5" height="15.0" fill="rgb(233,153,20)" rx="2" ry="2" /> <text x="346.82" y="271.5" ></text> </g> <g > <title>xf86DriverLoadCursorARGB (5 samples, 3.29%)</title><rect x="320.5" y="661" width="38.8" height="15.0" fill="rgb(209,4,11)" rx="2" ry="2" /> <text x="323.53" y="671.5" >xf8..</text> </g> <g > <title>QApplicationPrivate::notify_helper (1 samples, 0.66%)</title><rect x="700.9" y="661" width="7.8" height="15.0" fill="rgb(242,131,12)" rx="2" ry="2" /> <text x="703.92" y="671.5" ></text> </g> <g > <title>WindowHasNewCursor (1 samples, 0.66%)</title><rect x="235.1" y="885" width="7.8" height="15.0" fill="rgb(252,61,2)" rx="2" ry="2" /> <text x="238.13" y="895.5" ></text> </g> <g > <title>hid_irq_in (3 samples, 1.97%)</title><rect x="980.4" y="629" width="23.3" height="15.0" fill="rgb(240,184,14)" rx="2" ry="2" /> <text x="983.39" y="639.5" >h..</text> </g> <g > <title>start_thread (14 samples, 9.21%)</title><rect x="25.5" y="965" width="108.7" height="15.0" fill="rgb(238,189,37)" rx="2" ry="2" /> <text x="28.53" y="975.5" >start_thread</text> </g> <g > <title>ext4_release_io_end (1 samples, 0.66%)</title><rect x="545.7" y="901" width="7.7" height="15.0" fill="rgb(229,139,50)" rx="2" ry="2" /> <text x="548.66" y="911.5" ></text> </g> <g > <title>_raw_spin_unlock_irqrestore (1 samples, 0.66%)</title><rect x="398.2" y="341" width="7.7" height="15.0" fill="rgb(221,151,0)" rx="2" ry="2" /> <text x="401.16" y="351.5" ></text> </g> <g > <title>st_TexSubImage (1 samples, 0.66%)</title><rect x="289.5" y="693" width="7.7" height="15.0" fill="rgb(213,20,47)" rx="2" ry="2" /> <text x="292.47" y="703.5" ></text> </g> <g > <title>cpu_startup_entry (14 samples, 9.21%)</title><rect x="1042.5" y="949" width="108.7" height="15.0" fill="rgb(218,5,18)" rx="2" ry="2" /> <text x="1045.50" y="959.5" >cpu_startup_e..</text> </g> <g > <title>_set_opp (2 samples, 1.32%)</title><rect x="926.1" y="869" width="15.5" height="15.0" fill="rgb(215,68,34)" rx="2" ry="2" /> <text x="929.05" y="879.5" ></text> </g> <g > <title>futex_wait_cancelable (3 samples, 1.97%)</title><rect x="173.0" y="853" width="23.3" height="15.0" fill="rgb(254,140,48)" rx="2" ry="2" /> <text x="176.03" y="863.5" >f..</text> </g> <g > <title>rpi_firmware_property_list (1 samples, 0.66%)</title><rect x="235.1" y="277" width="7.8" height="15.0" fill="rgb(245,46,24)" rx="2" ry="2" /> <text x="238.13" y="287.5" ></text> </g> <g > <title>QEventDispatcherGlib::wakeUp (1 samples, 0.66%)</title><rect x="708.7" y="741" width="7.7" height="15.0" fill="rgb(238,162,34)" rx="2" ry="2" /> <text x="711.68" y="751.5" ></text> </g> <g > <title>_xcb_out_send (1 samples, 0.66%)</title><rect x="700.9" y="421" width="7.8" height="15.0" fill="rgb(207,25,7)" rx="2" ry="2" /> <text x="703.92" y="431.5" ></text> </g> <g > <title>read_packet (1 samples, 0.66%)</title><rect x="211.8" y="869" width="7.8" height="15.0" fill="rgb(231,195,29)" rx="2" ry="2" /> <text x="214.84" y="879.5" ></text> </g> <g > <title>handle_domain_irq (1 samples, 0.66%)</title><rect x="219.6" y="581" width="7.8" height="15.0" fill="rgb(206,167,8)" rx="2" ry="2" /> <text x="222.61" y="591.5" ></text> </g> <g > <title>drm_ioctl (6 samples, 3.95%)</title><rect x="64.3" y="501" width="46.6" height="15.0" fill="rgb(225,87,7)" rx="2" ry="2" /> <text x="67.34" y="511.5" >drm_..</text> </g> <g > <title>[libgio-2.0.so.0.6800.4] (1 samples, 0.66%)</title><rect x="522.4" y="805" width="7.7" height="15.0" fill="rgb(210,197,18)" rx="2" ry="2" /> <text x="525.37" y="815.5" ></text> </g> <g > <title>vc4_plane_set_blank.isra.0 (1 samples, 0.66%)</title><rect x="351.6" y="197" width="7.7" height="15.0" fill="rgb(238,23,19)" rx="2" ry="2" /> <text x="354.58" y="207.5" ></text> </g> <g > <title>invoke_syscall (2 samples, 1.32%)</title><rect x="180.8" y="757" width="15.5" height="15.0" fill="rgb(225,46,29)" rx="2" ry="2" /> <text x="183.79" y="767.5" ></text> </g> <g > <title>el0_svc_common.constprop.0 (1 samples, 0.66%)</title><rect x="1182.2" y="805" width="7.8" height="15.0" fill="rgb(210,175,42)" rx="2" ry="2" /> <text x="1185.24" y="815.5" ></text> </g> <g > <title>__ieee754_atan2 (2 samples, 1.32%)</title><rect x="41.1" y="789" width="15.5" height="15.0" fill="rgb(240,39,54)" rx="2" ry="2" /> <text x="44.05" y="799.5" ></text> </g> <g > <title>invoke_syscall (1 samples, 0.66%)</title><rect x="242.9" y="757" width="7.8" height="15.0" fill="rgb(220,55,40)" rx="2" ry="2" /> <text x="245.89" y="767.5" ></text> </g> <g > <title>do_el0_svc (3 samples, 1.97%)</title><rect x="110.9" y="853" width="23.3" height="15.0" fill="rgb(223,158,4)" rx="2" ry="2" /> <text x="113.92" y="863.5" >d..</text> </g> <g > <title>__do_softirq (1 samples, 0.66%)</title><rect x="1073.6" y="741" width="7.7" height="15.0" fill="rgb(210,130,44)" rx="2" ry="2" /> <text x="1076.55" y="751.5" ></text> </g> <g > <title>[xscreensaver] (1 samples, 0.66%)</title><rect x="1174.5" y="885" width="7.7" height="15.0" fill="rgb(217,34,46)" rx="2" ry="2" /> <text x="1177.47" y="895.5" ></text> </g> <g > <title>__arm64_sys_write (5 samples, 3.29%)</title><rect x="879.5" y="757" width="38.8" height="15.0" fill="rgb(248,184,10)" rx="2" ry="2" /> <text x="882.47" y="767.5" >__a..</text> </g> <g > <title>gic_handle_irq (1 samples, 0.66%)</title><rect x="219.6" y="597" width="7.8" height="15.0" fill="rgb(234,199,11)" rx="2" ry="2" /> <text x="222.61" y="607.5" ></text> </g> <g > <title>vfs_write (1 samples, 0.66%)</title><rect x="33.3" y="757" width="7.8" height="15.0" fill="rgb(217,136,42)" rx="2" ry="2" /> <text x="36.29" y="767.5" ></text> </g> <g > <title>raspberrypi_fw_set_rate (2 samples, 1.32%)</title><rect x="926.1" y="805" width="15.5" height="15.0" fill="rgb(224,223,24)" rx="2" ry="2" /> <text x="929.05" y="815.5" ></text> </g> <g > <title>__arm64_sys_ppoll (2 samples, 1.32%)</title><rect x="219.6" y="757" width="15.5" height="15.0" fill="rgb(252,40,30)" rx="2" ry="2" /> <text x="222.61" y="767.5" ></text> </g> <g > <title>wait_for_reply (1 samples, 0.66%)</title><rect x="918.3" y="709" width="7.8" height="15.0" fill="rgb(246,48,32)" rx="2" ry="2" /> <text x="921.29" y="719.5" ></text> </g> <g > <title>wait_for_completion_timeout (1 samples, 0.66%)</title><rect x="351.6" y="165" width="7.7" height="15.0" fill="rgb(245,43,50)" rx="2" ry="2" /> <text x="354.58" y="175.5" ></text> </g> <g > <title>do_el0_svc (3 samples, 1.97%)</title><rect x="359.3" y="517" width="23.3" height="15.0" fill="rgb(209,27,30)" rx="2" ry="2" /> <text x="362.34" y="527.5" >d..</text> </g> <g > <title>kthread (1 samples, 0.66%)</title><rect x="545.7" y="965" width="7.7" height="15.0" fill="rgb(237,25,2)" rx="2" ry="2" /> <text x="548.66" y="975.5" ></text> </g> <g > <title>[unknown] (1 samples, 0.66%)</title><rect x="10.0" y="981" width="7.8" height="15.0" fill="rgb(211,157,4)" rx="2" ry="2" /> <text x="13.00" y="991.5" ></text> </g> <g > <title>drm_mode_cursor_common (2 samples, 1.32%)</title><rect x="367.1" y="405" width="15.5" height="15.0" fill="rgb(254,219,25)" rx="2" ry="2" /> <text x="370.11" y="415.5" ></text> </g> <g > <title>__GI___writev (3 samples, 1.97%)</title><rect x="382.6" y="645" width="23.3" height="15.0" fill="rgb(252,156,10)" rx="2" ry="2" /> <text x="385.63" y="655.5" >_..</text> </g> <g > <title>run_rebalance_domains (1 samples, 0.66%)</title><rect x="1073.6" y="725" width="7.7" height="15.0" fill="rgb(254,173,45)" rx="2" ry="2" /> <text x="1076.55" y="735.5" ></text> </g> <g > <title>__alloc_skb (1 samples, 0.66%)</title><rect x="305.0" y="373" width="7.8" height="15.0" fill="rgb(230,198,14)" rx="2" ry="2" /> <text x="308.00" y="383.5" ></text> </g> <g > <title>xf86ScreenMoveCursor (6 samples, 3.95%)</title><rect x="64.3" y="725" width="46.6" height="15.0" fill="rgb(212,137,45)" rx="2" ry="2" /> <text x="67.34" y="735.5" >xf86..</text> </g> <g > <title>el0t_64_sync (1 samples, 0.66%)</title><rect x="561.2" y="933" width="7.7" height="15.0" fill="rgb(250,29,44)" rx="2" ry="2" /> <text x="564.18" y="943.5" ></text> </g> <g > <title>save_return_addr (1 samples, 0.66%)</title><rect x="367.1" y="117" width="7.8" height="15.0" fill="rgb(224,104,1)" rx="2" ry="2" /> <text x="370.11" y="127.5" ></text> </g> <g > <title>[perf] (24 samples, 15.79%)</title><rect x="732.0" y="949" width="186.3" height="15.0" fill="rgb(212,96,20)" rx="2" ry="2" /> <text x="734.97" y="959.5" >[perf]</text> </g> <g > <title>el0_svc (1 samples, 0.66%)</title><rect x="235.1" y="581" width="7.8" height="15.0" fill="rgb(239,215,31)" rx="2" ry="2" /> <text x="238.13" y="591.5" ></text> </g> <g > <title>glTexSubImage2D (1 samples, 0.66%)</title><rect x="514.6" y="933" width="7.8" height="15.0" fill="rgb(253,197,35)" rx="2" ry="2" /> <text x="517.61" y="943.5" ></text> </g> <g > <title>drm_mode_cursor2_ioctl (2 samples, 1.32%)</title><rect x="343.8" y="373" width="15.5" height="15.0" fill="rgb(244,217,25)" rx="2" ry="2" /> <text x="346.82" y="383.5" ></text> </g> <g > <title>drm_atomic_commit (1 samples, 0.66%)</title><rect x="468.0" y="533" width="7.8" height="15.0" fill="rgb(246,0,7)" rx="2" ry="2" /> <text x="471.03" y="543.5" ></text> </g> <g > <title>CursorDisplayCursor (1 samples, 0.66%)</title><rect x="235.1" y="837" width="7.8" height="15.0" fill="rgb(206,152,38)" rx="2" ry="2" /> <text x="238.13" y="847.5" ></text> </g> <g > <title>el1h_64_irq_handler (1 samples, 0.66%)</title><rect x="452.5" y="325" width="7.8" height="15.0" fill="rgb(228,70,27)" rx="2" ry="2" /> <text x="455.50" y="335.5" ></text> </g> <g > <title>tick_nohz_idle_exit (2 samples, 1.32%)</title><rect x="1027.0" y="885" width="15.5" height="15.0" fill="rgb(220,178,24)" rx="2" ry="2" /> <text x="1029.97" y="895.5" ></text> </g> <g > <title>__pthread_mutex_unlock_usercnt (2 samples, 1.32%)</title><rect x="157.5" y="901" width="15.5" height="15.0" fill="rgb(222,79,52)" rx="2" ry="2" /> <text x="160.50" y="911.5" ></text> </g> <g > <title>ProcessKeyboardEvent (2 samples, 1.32%)</title><rect x="305.0" y="869" width="15.5" height="15.0" fill="rgb(216,205,5)" rx="2" ry="2" /> <text x="308.00" y="879.5" ></text> </g> <g > <title>drmIoctl (2 samples, 1.32%)</title><rect x="343.8" y="549" width="15.5" height="15.0" fill="rgb(210,83,46)" rx="2" ry="2" /> <text x="346.82" y="559.5" ></text> </g> <g > <title>DeviceEnterNotifies (1 samples, 0.66%)</title><rect x="413.7" y="789" width="7.7" height="15.0" fill="rgb(230,179,4)" rx="2" ry="2" /> <text x="416.68" y="799.5" ></text> </g> <g > <title>WriteEventsToClient (3 samples, 1.97%)</title><rect x="382.6" y="693" width="23.3" height="15.0" fill="rgb(226,220,23)" rx="2" ry="2" /> <text x="385.63" y="703.5" >W..</text> </g> <g > <title>drm_atomic_helper_update_plane (2 samples, 1.32%)</title><rect x="460.3" y="549" width="15.5" height="15.0" fill="rgb(215,196,50)" rx="2" ry="2" /> <text x="463.26" y="559.5" ></text> </g> <g > <title>__setplane_atomic (1 samples, 0.66%)</title><rect x="235.1" y="421" width="7.8" height="15.0" fill="rgb(224,212,24)" rx="2" ry="2" /> <text x="238.13" y="431.5" ></text> </g> <g > <title>arch_cpu_idle (5 samples, 3.29%)</title><rect x="1042.5" y="901" width="38.8" height="15.0" fill="rgb(217,100,15)" rx="2" ry="2" /> <text x="1045.50" y="911.5" >arc..</text> </g> <g > <title>schedule_hrtimeout_range_clock (2 samples, 1.32%)</title><rect x="499.1" y="709" width="15.5" height="15.0" fill="rgb(240,136,42)" rx="2" ry="2" /> <text x="502.08" y="719.5" ></text> </g> <g > <title>__arm64_sys_ppoll (1 samples, 0.66%)</title><rect x="724.2" y="549" width="7.8" height="15.0" fill="rgb(230,176,30)" rx="2" ry="2" /> <text x="727.21" y="559.5" ></text> </g> <g > <title>el0t_64_sync (1 samples, 0.66%)</title><rect x="242.9" y="837" width="7.8" height="15.0" fill="rgb(230,1,14)" rx="2" ry="2" /> <text x="245.89" y="847.5" ></text> </g> <g > <title>v3d_resource_create (1 samples, 0.66%)</title><rect x="289.5" y="677" width="7.7" height="15.0" fill="rgb(231,92,20)" rx="2" ry="2" /> <text x="292.47" y="687.5" ></text> </g> <g > <title>vc4_plane_set_blank.isra.0 (1 samples, 0.66%)</title><rect x="235.1" y="293" width="7.8" height="15.0" fill="rgb(216,144,3)" rx="2" ry="2" /> <text x="238.13" y="303.5" ></text> </g> <g > <title>do_writev (1 samples, 0.66%)</title><rect x="242.9" y="725" width="7.8" height="15.0" fill="rgb(225,20,47)" rx="2" ry="2" /> <text x="245.89" y="735.5" ></text> </g> <g > <title>kjournald2 (1 samples, 0.66%)</title><rect x="530.1" y="949" width="7.8" height="15.0" fill="rgb(252,123,3)" rx="2" ry="2" /> <text x="533.13" y="959.5" ></text> </g> <g > <title>ret_from_fork (1 samples, 0.66%)</title><rect x="568.9" y="981" width="7.8" height="15.0" fill="rgb(218,124,22)" rx="2" ry="2" /> <text x="571.95" y="991.5" ></text> </g> <g > <title>el0t_64_sync_handler (1 samples, 0.66%)</title><rect x="576.7" y="837" width="7.8" height="15.0" fill="rgb(212,228,38)" rx="2" ry="2" /> <text x="579.71" y="847.5" ></text> </g> <g > <title>do_iter_readv_writev (1 samples, 0.66%)</title><rect x="305.0" y="469" width="7.8" height="15.0" fill="rgb(233,7,9)" rx="2" ry="2" /> <text x="308.00" y="479.5" ></text> </g> <g > <title>__GI___writev (1 samples, 0.66%)</title><rect x="918.3" y="613" width="7.8" height="15.0" fill="rgb(246,38,39)" rx="2" ry="2" /> <text x="921.29" y="623.5" ></text> </g> <g > <title>FlushClient (3 samples, 1.97%)</title><rect x="382.6" y="677" width="23.3" height="15.0" fill="rgb(231,94,22)" rx="2" ry="2" /> <text x="385.63" y="687.5" >F..</text> </g> <g > <title>__libc_write (2 samples, 1.32%)</title><rect x="25.5" y="917" width="15.6" height="15.0" fill="rgb(242,73,15)" rx="2" ry="2" /> <text x="28.53" y="927.5" ></text> </g> <g > <title>do_iter_write (1 samples, 0.66%)</title><rect x="305.0" y="485" width="7.8" height="15.0" fill="rgb(224,7,31)" rx="2" ry="2" /> <text x="308.00" y="495.5" ></text> </g> <g > <title>handle_domain_irq (5 samples, 3.29%)</title><rect x="964.9" y="757" width="38.8" height="15.0" fill="rgb(231,100,12)" rx="2" ry="2" /> <text x="967.87" y="767.5" >han..</text> </g> <g > <title>xhci_urb_enqueue (1 samples, 0.66%)</title><rect x="995.9" y="581" width="7.8" height="15.0" fill="rgb(214,111,2)" rx="2" ry="2" /> <text x="998.92" y="591.5" ></text> </g> <g > <title>__arm64_sys_writev (1 samples, 0.66%)</title><rect x="305.0" y="533" width="7.8" height="15.0" fill="rgb(238,171,43)" rx="2" ry="2" /> <text x="308.00" y="543.5" ></text> </g> <g > <title>[libsystemd-shared-249.so] (1 samples, 0.66%)</title><rect x="1158.9" y="901" width="7.8" height="15.0" fill="rgb(240,129,4)" rx="2" ry="2" /> <text x="1161.95" y="911.5" ></text> </g> <g > <title>g_main_loop_run (2 samples, 1.32%)</title><rect x="576.7" y="917" width="15.5" height="15.0" fill="rgb(243,157,19)" rx="2" ry="2" /> <text x="579.71" y="927.5" ></text> </g> <g > <title>_XSERVTransSocketWritev (1 samples, 0.66%)</title><rect x="242.9" y="885" width="7.8" height="15.0" fill="rgb(218,189,49)" rx="2" ry="2" /> <text x="245.89" y="895.5" ></text> </g> <g > <title>unix_stream_sendmsg (1 samples, 0.66%)</title><rect x="918.3" y="373" width="7.8" height="15.0" fill="rgb(233,15,11)" rx="2" ry="2" /> <text x="921.29" y="383.5" ></text> </g> <g > <title>start_thread (12 samples, 7.89%)</title><rect x="142.0" y="965" width="93.1" height="15.0" fill="rgb(205,125,12)" rx="2" ry="2" /> <text x="144.97" y="975.5" >start_thread</text> </g> <g > <title>[libQt5Widgets.so.5.15.2] (1 samples, 0.66%)</title><rect x="669.9" y="709" width="7.7" height="15.0" fill="rgb(238,89,40)" rx="2" ry="2" /> <text x="672.87" y="719.5" ></text> </g> <g > <title>____sys_recvmsg (1 samples, 0.66%)</title><rect x="584.5" y="581" width="7.7" height="15.0" fill="rgb(246,98,31)" rx="2" ry="2" /> <text x="587.47" y="591.5" ></text> </g> <g > <title>kthread (2 samples, 1.32%)</title><rect x="926.1" y="965" width="15.5" height="15.0" fill="rgb(221,56,22)" rx="2" ry="2" /> <text x="929.05" y="975.5" ></text> </g> <g > <title>schedule_hrtimeout_range_clock (1 samples, 0.66%)</title><rect x="724.2" y="501" width="7.8" height="15.0" fill="rgb(208,34,51)" rx="2" ry="2" /> <text x="727.21" y="511.5" ></text> </g> <g > <title>maybe_add_creds (1 samples, 0.66%)</title><rect x="382.6" y="405" width="7.8" height="15.0" fill="rgb(207,11,47)" rx="2" ry="2" /> <text x="385.63" y="415.5" ></text> </g> <g > <title>_raw_spin_unlock_irqrestore (1 samples, 0.66%)</title><rect x="242.9" y="565" width="7.8" height="15.0" fill="rgb(223,87,5)" rx="2" ry="2" /> <text x="245.89" y="575.5" ></text> </g> <g > <title>invoke_syscall (1 samples, 0.66%)</title><rect x="584.5" y="645" width="7.7" height="15.0" fill="rgb(220,227,32)" rx="2" ry="2" /> <text x="587.47" y="655.5" ></text> </g> <g > <title>damageCopyArea (2 samples, 1.32%)</title><rect x="281.7" y="885" width="15.5" height="15.0" fill="rgb(241,55,40)" rx="2" ry="2" /> <text x="284.71" y="895.5" ></text> </g> <g > <title>QWidgetPrivate::paintSiblingsRecursive (1 samples, 0.66%)</title><rect x="646.6" y="661" width="7.7" height="15.0" fill="rgb(244,212,32)" rx="2" ry="2" /> <text x="649.58" y="671.5" ></text> </g> <g > <title>QXcbConnection::handleXcbEvent (1 samples, 0.66%)</title><rect x="918.3" y="789" width="7.8" height="15.0" fill="rgb(253,120,41)" rx="2" ry="2" /> <text x="921.29" y="799.5" ></text> </g> <g > <title>kthread (1 samples, 0.66%)</title><rect x="568.9" y="965" width="7.8" height="15.0" fill="rgb(213,121,33)" rx="2" ry="2" /> <text x="571.95" y="975.5" ></text> </g> <g > <title>__GI___writev (1 samples, 0.66%)</title><rect x="918.3" y="597" width="7.8" height="15.0" fill="rgb(248,118,30)" rx="2" ry="2" /> <text x="921.29" y="607.5" ></text> </g> <g > <title>el0_svc (1 samples, 0.66%)</title><rect x="204.1" y="805" width="7.7" height="15.0" fill="rgb(244,127,51)" rx="2" ry="2" /> <text x="207.08" y="815.5" ></text> </g> <g > <title>do_el0_svc (2 samples, 1.32%)</title><rect x="219.6" y="805" width="15.5" height="15.0" fill="rgb(224,213,50)" rx="2" ry="2" /> <text x="222.61" y="815.5" ></text> </g> <g > <title>msg_submit (1 samples, 0.66%)</title><rect x="367.1" y="197" width="7.8" height="15.0" fill="rgb(209,192,30)" rx="2" ry="2" /> <text x="370.11" y="207.5" ></text> </g> <g > <title>tasklet_hi_action (4 samples, 2.63%)</title><rect x="972.6" y="693" width="31.1" height="15.0" fill="rgb(213,34,42)" rx="2" ry="2" /> <text x="975.63" y="703.5" >ta..</text> </g> <g > <title>hidinput_report_event (1 samples, 0.66%)</title><rect x="988.2" y="581" width="7.7" height="15.0" fill="rgb(242,184,39)" rx="2" ry="2" /> <text x="991.16" y="591.5" ></text> </g> <g > <title>el0t_64_sync_handler (2 samples, 1.32%)</title><rect x="343.8" y="501" width="15.5" height="15.0" fill="rgb(212,34,23)" rx="2" ry="2" /> <text x="346.82" y="511.5" ></text> </g> <g > <title>libevdev_next_event (1 samples, 0.66%)</title><rect x="56.6" y="853" width="7.7" height="15.0" fill="rgb(216,180,44)" rx="2" ry="2" /> <text x="59.58" y="863.5" ></text> </g> <g > <title>kcompactd (1 samples, 0.66%)</title><rect x="537.9" y="949" width="7.8" height="15.0" fill="rgb(229,220,50)" rx="2" ry="2" /> <text x="540.89" y="959.5" ></text> </g> <g > <title>el0_svc (1 samples, 0.66%)</title><rect x="724.2" y="613" width="7.8" height="15.0" fill="rgb(215,146,39)" rx="2" ry="2" /> <text x="727.21" y="623.5" ></text> </g> <g > <title>g_main_context_poll (1 samples, 0.66%)</title><rect x="576.7" y="885" width="7.8" height="15.0" fill="rgb(239,137,48)" rx="2" ry="2" /> <text x="579.71" y="895.5" ></text> </g> <g > <title>futex_wait (2 samples, 1.32%)</title><rect x="180.8" y="709" width="15.5" height="15.0" fill="rgb(216,94,33)" rx="2" ry="2" /> <text x="183.79" y="719.5" ></text> </g> <g > <title>pixman_f_transform_point@plt (1 samples, 0.66%)</title><rect x="17.8" y="965" width="7.7" height="15.0" fill="rgb(234,124,48)" rx="2" ry="2" /> <text x="20.76" y="975.5" ></text> </g> <g > <title>el1_abort (1 samples, 0.66%)</title><rect x="910.5" y="613" width="7.8" height="15.0" fill="rgb(214,13,4)" rx="2" ry="2" /> <text x="913.53" y="623.5" ></text> </g> <g > <title>el0t_64_sync (1 samples, 0.66%)</title><rect x="700.9" y="341" width="7.8" height="15.0" fill="rgb(245,198,48)" rx="2" ry="2" /> <text x="703.92" y="351.5" ></text> </g> <g > <title>drm_ioctl_kernel (1 samples, 0.66%)</title><rect x="235.1" y="485" width="7.8" height="15.0" fill="rgb(234,229,19)" rx="2" ry="2" /> <text x="238.13" y="495.5" ></text> </g> <g > <title>sock_write_iter (1 samples, 0.66%)</title><rect x="700.9" y="165" width="7.8" height="15.0" fill="rgb(244,196,39)" rx="2" ry="2" /> <text x="703.92" y="175.5" ></text> </g> <g > <title>QWidgetPrivate::sendPaintEvent (2 samples, 1.32%)</title><rect x="654.3" y="709" width="15.6" height="15.0" fill="rgb(232,204,13)" rx="2" ry="2" /> <text x="657.34" y="719.5" ></text> </g> <g > <title>do_notify_resume (1 samples, 0.66%)</title><rect x="561.2" y="885" width="7.7" height="15.0" fill="rgb(213,227,42)" rx="2" ry="2" /> <text x="564.18" y="895.5" ></text> </g> <g > <title>do_writev (1 samples, 0.66%)</title><rect x="700.9" y="229" width="7.8" height="15.0" fill="rgb(206,70,9)" rx="2" ry="2" /> <text x="703.92" y="239.5" ></text> </g> <g > <title>drm_atomic_commit (1 samples, 0.66%)</title><rect x="235.1" y="389" width="7.8" height="15.0" fill="rgb(225,217,28)" rx="2" ry="2" /> <text x="238.13" y="399.5" ></text> </g> <g > <title>finish_task_switch.isra.0 (2 samples, 1.32%)</title><rect x="180.8" y="645" width="15.5" height="15.0" fill="rgb(222,46,13)" rx="2" ry="2" /> <text x="183.79" y="655.5" ></text> </g> <g > <title>XYToWindow (1 samples, 0.66%)</title><rect x="421.4" y="821" width="7.8" height="15.0" fill="rgb(221,174,37)" rx="2" ry="2" /> <text x="424.45" y="831.5" ></text> </g> <g > <title>CursorDisplayCursor (8 samples, 5.26%)</title><rect x="320.5" y="789" width="62.1" height="15.0" fill="rgb(225,179,15)" rx="2" ry="2" /> <text x="323.53" y="799.5" >Cursor..</text> </g> <g > <title>WriteEventsToClient (3 samples, 1.97%)</title><rect x="437.0" y="709" width="23.3" height="15.0" fill="rgb(224,99,53)" rx="2" ry="2" /> <text x="439.97" y="719.5" >W..</text> </g> <g > <title>BlockHandler (1 samples, 0.66%)</title><rect x="483.6" y="901" width="7.7" height="15.0" fill="rgb(240,87,19)" rx="2" ry="2" /> <text x="486.55" y="911.5" ></text> </g> <g > <title>ext4_iomap_begin (1 samples, 0.66%)</title><rect x="530.1" y="821" width="7.8" height="15.0" fill="rgb(227,199,35)" rx="2" ry="2" /> <text x="533.13" y="831.5" ></text> </g> <g > <title>do_el0_svc (3 samples, 1.97%)</title><rect x="437.0" y="581" width="23.3" height="15.0" fill="rgb(207,31,10)" rx="2" ry="2" /> <text x="439.97" y="591.5" >d..</text> </g> <g > <title>grab_cache_page_write_begin (1 samples, 0.66%)</title><rect x="902.8" y="629" width="7.7" height="15.0" fill="rgb(222,123,25)" rx="2" ry="2" /> <text x="905.76" y="639.5" ></text> </g> <g > <title>[libsystemd-shared-249.so] (1 samples, 0.66%)</title><rect x="1151.2" y="885" width="7.7" height="15.0" fill="rgb(244,132,53)" rx="2" ry="2" /> <text x="1154.18" y="895.5" ></text> </g> <g > <title>el0t_64_sync_handler (1 samples, 0.66%)</title><rect x="522.4" y="693" width="7.7" height="15.0" fill="rgb(245,184,6)" rx="2" ry="2" /> <text x="525.37" y="703.5" ></text> </g> <g > <title>invoke_syscall (1 samples, 0.66%)</title><rect x="918.3" y="501" width="7.8" height="15.0" fill="rgb(238,42,19)" rx="2" ry="2" /> <text x="921.29" y="511.5" ></text> </g> <g > <title>miPointerUpdateSprite (8 samples, 5.26%)</title><rect x="320.5" y="725" width="62.1" height="15.0" fill="rgb(212,75,35)" rx="2" ry="2" /> <text x="323.53" y="735.5" >miPoin..</text> </g> <g > <title>_XSERVTransSocketRead (1 samples, 0.66%)</title><rect x="475.8" y="901" width="7.8" height="15.0" fill="rgb(215,11,21)" rx="2" ry="2" /> <text x="478.79" y="911.5" ></text> </g> <g > <title>[libQt5Widgets.so.5.15.2] (2 samples, 1.32%)</title><rect x="677.6" y="725" width="15.6" height="15.0" fill="rgb(232,209,44)" rx="2" ry="2" /> <text x="680.63" y="735.5" ></text> </g> <g > <title>el0_svc_common.constprop.0 (3 samples, 1.97%)</title><rect x="359.3" y="501" width="23.3" height="15.0" fill="rgb(228,86,20)" rx="2" ry="2" /> <text x="362.34" y="511.5" >e..</text> </g> <g > <title>__GI___poll (1 samples, 0.66%)</title><rect x="724.2" y="661" width="7.8" height="15.0" fill="rgb(252,196,24)" rx="2" ry="2" /> <text x="727.21" y="671.5" ></text> </g> <g > <title>[libusbmuxd-2.0.so.6.0.0] (1 samples, 0.66%)</title><rect x="561.2" y="981" width="7.7" height="15.0" fill="rgb(232,153,44)" rx="2" ry="2" /> <text x="564.18" y="991.5" ></text> </g> <g > <title>el0_svc_common.constprop.0 (3 samples, 1.97%)</title><rect x="382.6" y="549" width="23.3" height="15.0" fill="rgb(226,218,5)" rx="2" ry="2" /> <text x="385.63" y="559.5" >e..</text> </g> <g > <title>sock_sendmsg (1 samples, 0.66%)</title><rect x="452.5" y="437" width="7.8" height="15.0" fill="rgb(224,165,33)" rx="2" ry="2" /> <text x="455.50" y="447.5" ></text> </g> <g > <title>[libsystemd-shared-249.so] (1 samples, 0.66%)</title><rect x="1151.2" y="901" width="7.7" height="15.0" fill="rgb(250,120,13)" rx="2" ry="2" /> <text x="1154.18" y="911.5" ></text> </g> <g > <title>vfs_writev (1 samples, 0.66%)</title><rect x="700.9" y="213" width="7.8" height="15.0" fill="rgb(218,151,13)" rx="2" ry="2" /> <text x="703.92" y="223.5" ></text> </g> <g > <title>_xcb_out_flush_to (1 samples, 0.66%)</title><rect x="918.3" y="677" width="7.8" height="15.0" fill="rgb(213,170,39)" rx="2" ry="2" /> <text x="921.29" y="687.5" ></text> </g> <g > <title>__arm64_sys_writev (1 samples, 0.66%)</title><rect x="242.9" y="741" width="7.8" height="15.0" fill="rgb(249,191,21)" rx="2" ry="2" /> <text x="245.89" y="751.5" ></text> </g> <g > <title>do_sys_ftruncate (1 samples, 0.66%)</title><rect x="1151.2" y="725" width="7.7" height="15.0" fill="rgb(217,203,32)" rx="2" ry="2" /> <text x="1154.18" y="735.5" ></text> </g> <g > <title>invoke_syscall (3 samples, 1.97%)</title><rect x="491.3" y="789" width="23.3" height="15.0" fill="rgb(206,103,10)" rx="2" ry="2" /> <text x="494.32" y="799.5" >i..</text> </g> <g > <title>el0_svc (1 samples, 0.66%)</title><rect x="242.9" y="805" width="7.8" height="15.0" fill="rgb(219,113,48)" rx="2" ry="2" /> <text x="245.89" y="815.5" ></text> </g> <g > <title>el0t_64_sync_handler (3 samples, 1.97%)</title><rect x="382.6" y="597" width="23.3" height="15.0" fill="rgb(206,114,28)" rx="2" ry="2" /> <text x="385.63" y="607.5" >e..</text> </g> <g > <title>__GI___poll (1 samples, 0.66%)</title><rect x="1174.5" y="757" width="7.7" height="15.0" fill="rgb(206,46,47)" rx="2" ry="2" /> <text x="1177.47" y="767.5" ></text> </g> <g > <title>el0_svc_common.constprop.0 (1 samples, 0.66%)</title><rect x="204.1" y="773" width="7.7" height="15.0" fill="rgb(248,138,10)" rx="2" ry="2" /> <text x="207.08" y="783.5" ></text> </g> <g > <title>call_on_irq_stack (5 samples, 3.29%)</title><rect x="964.9" y="789" width="38.8" height="15.0" fill="rgb(241,214,33)" rx="2" ry="2" /> <text x="967.87" y="799.5" >cal..</text> </g> <g > <title>el0_svc (1 samples, 0.66%)</title><rect x="576.7" y="821" width="7.8" height="15.0" fill="rgb(231,215,5)" rx="2" ry="2" /> <text x="579.71" y="831.5" ></text> </g> <g > <title>xi2mask_isset (1 samples, 0.66%)</title><rect x="429.2" y="709" width="7.8" height="15.0" fill="rgb(207,84,34)" rx="2" ry="2" /> <text x="432.21" y="719.5" ></text> </g> <g > <title>CheckMotion (14 samples, 9.21%)</title><rect x="320.5" y="837" width="108.7" height="15.0" fill="rgb(211,35,30)" rx="2" ry="2" /> <text x="323.53" y="847.5" >CheckMotion</text> </g> <g > <title>invoke_syscall (1 samples, 0.66%)</title><rect x="739.7" y="821" width="7.8" height="15.0" fill="rgb(208,104,53)" rx="2" ry="2" /> <text x="742.74" y="831.5" ></text> </g> <g > <title>el1h_64_irq_handler (5 samples, 3.29%)</title><rect x="964.9" y="837" width="38.8" height="15.0" fill="rgb(235,18,17)" rx="2" ry="2" /> <text x="967.87" y="847.5" >el1..</text> </g> <g > <title>el0t_64_sync (2 samples, 1.32%)</title><rect x="25.5" y="885" width="15.6" height="15.0" fill="rgb(226,73,30)" rx="2" ry="2" /> <text x="28.53" y="895.5" ></text> </g> <g > <title>el0_svc (1 samples, 0.66%)</title><rect x="289.5" y="533" width="7.7" height="15.0" fill="rgb(248,85,37)" rx="2" ry="2" /> <text x="292.47" y="543.5" ></text> </g> <g > <title>write_vec (1 samples, 0.66%)</title><rect x="700.9" y="389" width="7.8" height="15.0" fill="rgb(205,187,29)" rx="2" ry="2" /> <text x="703.92" y="399.5" ></text> </g> <g > <title>sock_write_iter (3 samples, 1.97%)</title><rect x="382.6" y="437" width="23.3" height="15.0" fill="rgb(235,25,44)" rx="2" ry="2" /> <text x="385.63" y="447.5" >s..</text> </g> <g > <title>el0t_64_sync_handler (1 samples, 0.66%)</title><rect x="405.9" y="581" width="7.8" height="15.0" fill="rgb(234,24,19)" rx="2" ry="2" /> <text x="408.92" y="591.5" ></text> </g> <g > <title>__arm64_sys_ioctl (1 samples, 0.66%)</title><rect x="235.1" y="517" width="7.8" height="15.0" fill="rgb(223,190,54)" rx="2" ry="2" /> <text x="238.13" y="527.5" ></text> </g> <g > <title>QueuePointerEvents (6 samples, 3.95%)</title><rect x="64.3" y="853" width="46.6" height="15.0" fill="rgb(212,15,53)" rx="2" ry="2" /> <text x="67.34" y="863.5" >Queu..</text> </g> <g > <title>__pthread_cond_wait_common (3 samples, 1.97%)</title><rect x="173.0" y="869" width="23.3" height="15.0" fill="rgb(219,144,30)" rx="2" ry="2" /> <text x="176.03" y="879.5" >_..</text> </g> <g > <title>el0t_64_sync (1 samples, 0.66%)</title><rect x="149.7" y="853" width="7.8" height="15.0" fill="rgb(247,72,28)" rx="2" ry="2" /> <text x="152.74" y="863.5" ></text> </g> <g > <title>el0_svc_common.constprop.0 (2 samples, 1.32%)</title><rect x="343.8" y="453" width="15.5" height="15.0" fill="rgb(245,201,6)" rx="2" ry="2" /> <text x="346.82" y="463.5" ></text> </g> <g > <title>QToolButton::event (1 samples, 0.66%)</title><rect x="677.6" y="677" width="7.8" height="15.0" fill="rgb(234,197,14)" rx="2" ry="2" /> <text x="680.63" y="687.5" ></text> </g> <g > <title>__pthread_cond_timedwait (1 samples, 0.66%)</title><rect x="134.2" y="885" width="7.8" height="15.0" fill="rgb(212,180,49)" rx="2" ry="2" /> <text x="137.21" y="895.5" ></text> </g> <g > <title>drm_atomic_helper_commit (2 samples, 1.32%)</title><rect x="367.1" y="325" width="15.5" height="15.0" fill="rgb(234,193,39)" rx="2" ry="2" /> <text x="370.11" y="335.5" ></text> </g> <g > <title>_int_malloc (1 samples, 0.66%)</title><rect x="600.0" y="565" width="7.8" height="15.0" fill="rgb(205,53,8)" rx="2" ry="2" /> <text x="603.00" y="575.5" ></text> </g> <g > <title>miPointerSetPosition (6 samples, 3.95%)</title><rect x="64.3" y="773" width="46.6" height="15.0" fill="rgb(233,55,51)" rx="2" ry="2" /> <text x="67.34" y="783.5" >miPo..</text> </g> <g > <title>[libQt5Gui.so.5.15.2] (1 samples, 0.66%)</title><rect x="677.6" y="581" width="7.8" height="15.0" fill="rgb(239,142,47)" rx="2" ry="2" /> <text x="680.63" y="591.5" ></text> </g> <g > <title>el0t_64_sync_handler (1 samples, 0.66%)</title><rect x="204.1" y="821" width="7.7" height="15.0" fill="rgb(210,171,11)" rx="2" ry="2" /> <text x="207.08" y="831.5" ></text> </g> <g > <title>[libQt5XcbQpa.so.5.15.2] (1 samples, 0.66%)</title><rect x="149.7" y="917" width="7.8" height="15.0" fill="rgb(227,2,35)" rx="2" ry="2" /> <text x="152.74" y="927.5" ></text> </g> <g > <title>nohz_run_idle_balance (1 samples, 0.66%)</title><rect x="1003.7" y="885" width="7.7" height="15.0" fill="rgb(212,207,30)" rx="2" ry="2" /> <text x="1006.68" y="895.5" ></text> </g> <g > <title>secondary_start_kernel (14 samples, 9.21%)</title><rect x="1042.5" y="965" width="108.7" height="15.0" fill="rgb(207,0,10)" rx="2" ry="2" /> <text x="1045.50" y="975.5" >secondary_sta..</text> </g> <g > <title>g_main_context_dispatch (17 samples, 11.18%)</title><rect x="600.0" y="853" width="132.0" height="15.0" fill="rgb(226,35,54)" rx="2" ry="2" /> <text x="603.00" y="863.5" >g_main_context_d..</text> </g> <g > <title>sd_event_prepare (1 samples, 0.66%)</title><rect x="1158.9" y="917" width="7.8" height="15.0" fill="rgb(236,27,37)" rx="2" ry="2" /> <text x="1161.95" y="927.5" ></text> </g> <g > <title>vfs_writev (1 samples, 0.66%)</title><rect x="305.0" y="501" width="7.8" height="15.0" fill="rgb(245,86,34)" rx="2" ry="2" /> <text x="308.00" y="511.5" ></text> </g> <g > <title>el0t_64_sync_handler (17 samples, 11.18%)</title><rect x="747.5" y="885" width="132.0" height="15.0" fill="rgb(243,166,33)" rx="2" ry="2" /> <text x="750.50" y="895.5" >el0t_64_sync_han..</text> </g> <g > <title>affine_move_task (1 samples, 0.66%)</title><rect x="739.7" y="741" width="7.8" height="15.0" fill="rgb(220,23,9)" rx="2" ry="2" /> <text x="742.74" y="751.5" ></text> </g> <g > <title>miPointerUpdateSprite (8 samples, 5.26%)</title><rect x="320.5" y="741" width="62.1" height="15.0" fill="rgb(221,10,44)" rx="2" ry="2" /> <text x="323.53" y="751.5" >miPoin..</text> </g> <g > <title>gic_handle_irq (1 samples, 0.66%)</title><rect x="1073.6" y="805" width="7.7" height="15.0" fill="rgb(224,207,18)" rx="2" ry="2" /> <text x="1076.55" y="815.5" ></text> </g> <g > <title>el1_interrupt (5 samples, 3.29%)</title><rect x="964.9" y="821" width="38.8" height="15.0" fill="rgb(245,210,49)" rx="2" ry="2" /> <text x="967.87" y="831.5" >el1..</text> </g> <g > <title>[perf] (5 samples, 3.29%)</title><rect x="879.5" y="917" width="38.8" height="15.0" fill="rgb(208,124,32)" rx="2" ry="2" /> <text x="882.47" y="927.5" >[pe..</text> </g> <g > <title>__ioctl (6 samples, 3.95%)</title><rect x="64.3" y="629" width="46.6" height="15.0" fill="rgb(243,174,35)" rx="2" ry="2" /> <text x="67.34" y="639.5" >__io..</text> </g> <g > <title>QXcbEventQueue (12 samples, 7.89%)</title><rect x="142.0" y="997" width="93.1" height="15.0" fill="rgb(217,100,35)" rx="2" ry="2" /> <text x="144.97" y="1007.5" >QXcbEventQu..</text> </g> <g > <title>do_iter_readv_writev (2 samples, 1.32%)</title><rect x="444.7" y="469" width="15.6" height="15.0" fill="rgb(238,53,31)" rx="2" ry="2" /> <text x="447.74" y="479.5" ></text> </g> <g > <title>el0_svc_common.constprop.0 (1 samples, 0.66%)</title><rect x="700.9" y="277" width="7.8" height="15.0" fill="rgb(228,90,28)" rx="2" ry="2" /> <text x="703.92" y="287.5" ></text> </g> <g > <title>el0t_64_sync_handler (1 samples, 0.66%)</title><rect x="242.9" y="821" width="7.8" height="15.0" fill="rgb(247,55,54)" rx="2" ry="2" /> <text x="245.89" y="831.5" ></text> </g> <g > <title>perf_event_for_each_child (17 samples, 11.18%)</title><rect x="747.5" y="757" width="132.0" height="15.0" fill="rgb(220,201,49)" rx="2" ry="2" /> <text x="750.50" y="767.5" >perf_event_for_e..</text> </g> <g > <title>el0t_64_sync (1 samples, 0.66%)</title><rect x="134.2" y="837" width="7.8" height="15.0" fill="rgb(207,28,41)" rx="2" ry="2" /> <text x="137.21" y="847.5" ></text> </g> <g > <title>drmIoctl (2 samples, 1.32%)</title><rect x="460.3" y="789" width="15.5" height="15.0" fill="rgb(245,135,52)" rx="2" ry="2" /> <text x="463.26" y="799.5" ></text> </g> <g > <title>el0_svc (1 samples, 0.66%)</title><rect x="149.7" y="821" width="7.8" height="15.0" fill="rgb(224,0,7)" rx="2" ry="2" /> <text x="152.74" y="831.5" ></text> </g> <g > <title>[libinput.so.10.13.0] (2 samples, 1.32%)</title><rect x="41.1" y="821" width="15.5" height="15.0" fill="rgb(215,201,4)" rx="2" ry="2" /> <text x="44.05" y="831.5" ></text> </g> <g > <title>QCoreApplication::notifyInternal2 (1 samples, 0.66%)</title><rect x="669.9" y="773" width="7.7" height="15.0" fill="rgb(247,224,24)" rx="2" ry="2" /> <text x="672.87" y="783.5" ></text> </g> <g > <title>invoke_syscall (3 samples, 1.97%)</title><rect x="382.6" y="533" width="23.3" height="15.0" fill="rgb(230,137,21)" rx="2" ry="2" /> <text x="385.63" y="543.5" >i..</text> </g> <g > <title>affinity__set (1 samples, 0.66%)</title><rect x="739.7" y="933" width="7.8" height="15.0" fill="rgb(240,199,30)" rx="2" ry="2" /> <text x="742.74" y="943.5" ></text> </g> <g > <title>invoke_syscall (3 samples, 1.97%)</title><rect x="359.3" y="485" width="23.3" height="15.0" fill="rgb(245,113,33)" rx="2" ry="2" /> <text x="362.34" y="495.5" >i..</text> </g> <g > <title>do_el0_svc (1 samples, 0.66%)</title><rect x="134.2" y="789" width="7.8" height="15.0" fill="rgb(244,82,0)" rx="2" ry="2" /> <text x="137.21" y="799.5" ></text> </g> <g > <title>_raw_spin_unlock_irqrestore (1 samples, 0.66%)</title><rect x="739.7" y="725" width="7.8" height="15.0" fill="rgb(254,213,53)" rx="2" ry="2" /> <text x="742.74" y="735.5" ></text> </g> <g > <title>do_el0_svc (17 samples, 11.18%)</title><rect x="747.5" y="853" width="132.0" height="15.0" fill="rgb(251,94,15)" rx="2" ry="2" /> <text x="750.50" y="863.5" >do_el0_svc</text> </g> <g > <title>unix_stream_sendmsg (1 samples, 0.66%)</title><rect x="242.9" y="629" width="7.8" height="15.0" fill="rgb(230,33,23)" rx="2" ry="2" /> <text x="245.89" y="639.5" ></text> </g> <g > <title>[xscreensaver] (1 samples, 0.66%)</title><rect x="1174.5" y="869" width="7.7" height="15.0" fill="rgb(229,142,36)" rx="2" ry="2" /> <text x="1177.47" y="879.5" ></text> </g> <g > <title>finish_task_switch.isra.0 (1 samples, 0.66%)</title><rect x="499.1" y="661" width="7.7" height="15.0" fill="rgb(242,18,10)" rx="2" ry="2" /> <text x="502.08" y="671.5" ></text> </g> <g > <title>import_iovec (1 samples, 0.66%)</title><rect x="1166.7" y="629" width="7.8" height="15.0" fill="rgb(221,111,5)" rx="2" ry="2" /> <text x="1169.71" y="639.5" ></text> </g> <g > <title>ret_from_fork (1 samples, 0.66%)</title><rect x="537.9" y="981" width="7.8" height="15.0" fill="rgb(227,36,18)" rx="2" ry="2" /> <text x="540.89" y="991.5" ></text> </g> <g > <title>do_interrupt_handler (5 samples, 3.29%)</title><rect x="964.9" y="805" width="38.8" height="15.0" fill="rgb(207,179,31)" rx="2" ry="2" /> <text x="967.87" y="815.5" >do_..</text> </g> <g > <title>__arm64_sys_futex (2 samples, 1.32%)</title><rect x="180.8" y="741" width="15.5" height="15.0" fill="rgb(252,68,33)" rx="2" ry="2" /> <text x="183.79" y="751.5" ></text> </g> <g > <title>do_el0_svc (1 samples, 0.66%)</title><rect x="297.2" y="821" width="7.8" height="15.0" fill="rgb(216,60,1)" rx="2" ry="2" /> <text x="300.24" y="831.5" ></text> </g> <g > <title>TryClientEvents (1 samples, 0.66%)</title><rect x="305.0" y="741" width="7.8" height="15.0" fill="rgb(243,117,40)" rx="2" ry="2" /> <text x="308.00" y="751.5" ></text> </g> <g > <title>_start (2 samples, 1.32%)</title><rect x="576.7" y="981" width="15.5" height="15.0" fill="rgb(219,0,15)" rx="2" ry="2" /> <text x="579.71" y="991.5" ></text> </g> <g > <title>el0_svc (2 samples, 1.32%)</title><rect x="460.3" y="725" width="15.5" height="15.0" fill="rgb(206,191,39)" rx="2" ry="2" /> <text x="463.26" y="735.5" ></text> </g> <g > <title>do_interrupt_handler (1 samples, 0.66%)</title><rect x="1073.6" y="837" width="7.7" height="15.0" fill="rgb(216,163,22)" rx="2" ry="2" /> <text x="1076.55" y="847.5" ></text> </g> <g > <title>QCoreApplication::notifyInternal2 (2 samples, 1.32%)</title><rect x="677.6" y="773" width="15.6" height="15.0" fill="rgb(220,174,36)" rx="2" ry="2" /> <text x="680.63" y="783.5" ></text> </g> <g > <title>g_main_context_iteration (17 samples, 11.18%)</title><rect x="600.0" y="885" width="132.0" height="15.0" fill="rgb(252,223,37)" rx="2" ry="2" /> <text x="603.00" y="895.5" >g_main_context_i..</text> </g> <g > <title>__GI___writev (1 samples, 0.66%)</title><rect x="700.9" y="357" width="7.8" height="15.0" fill="rgb(232,157,5)" rx="2" ry="2" /> <text x="703.92" y="367.5" ></text> </g> <g > <title>QToolButton::event (1 samples, 0.66%)</title><rect x="669.9" y="677" width="7.7" height="15.0" fill="rgb(227,31,10)" rx="2" ry="2" /> <text x="672.87" y="687.5" ></text> </g> <g > <title>el1h_64_irq_handler (1 samples, 0.66%)</title><rect x="219.6" y="661" width="7.8" height="15.0" fill="rgb(213,141,12)" rx="2" ry="2" /> <text x="222.61" y="671.5" ></text> </g> <g > <title>vc4_atomic_commit_tail (1 samples, 0.66%)</title><rect x="468.0" y="485" width="7.8" height="15.0" fill="rgb(223,63,31)" rx="2" ry="2" /> <text x="471.03" y="495.5" ></text> </g> <g > <title>WriteEventsToClient (1 samples, 0.66%)</title><rect x="305.0" y="709" width="7.8" height="15.0" fill="rgb(241,40,28)" rx="2" ry="2" /> <text x="308.00" y="719.5" ></text> </g> <g > <title>drm_ioctl (2 samples, 1.32%)</title><rect x="343.8" y="405" width="15.5" height="15.0" fill="rgb(246,13,26)" rx="2" ry="2" /> <text x="346.82" y="415.5" ></text> </g> <g > <title>unix_stream_sendmsg (1 samples, 0.66%)</title><rect x="305.0" y="421" width="7.8" height="15.0" fill="rgb(217,17,17)" rx="2" ry="2" /> <text x="308.00" y="431.5" ></text> </g> <g > <title>glamor_copy (2 samples, 1.32%)</title><rect x="281.7" y="805" width="15.5" height="15.0" fill="rgb(253,142,33)" rx="2" ry="2" /> <text x="284.71" y="815.5" ></text> </g> <g > <title>migration/2 (1 samples, 0.66%)</title><rect x="568.9" y="997" width="7.8" height="15.0" fill="rgb(241,32,45)" rx="2" ry="2" /> <text x="571.95" y="1007.5" ></text> </g> <g > <title>vfs_write (5 samples, 3.29%)</title><rect x="879.5" y="725" width="38.8" height="15.0" fill="rgb(222,152,13)" rx="2" ry="2" /> <text x="882.47" y="735.5" >vfs..</text> </g> <g > <title>el0t_64_sync (1 samples, 0.66%)</title><rect x="1151.2" y="837" width="7.7" height="15.0" fill="rgb(238,131,7)" rx="2" ry="2" /> <text x="1154.18" y="847.5" ></text> </g> <g > <title>el0t_64_sync_handler (1 samples, 0.66%)</title><rect x="1166.7" y="757" width="7.8" height="15.0" fill="rgb(210,137,53)" rx="2" ry="2" /> <text x="1169.71" y="767.5" ></text> </g> <g > <title>vc4_plane_atomic_update (2 samples, 1.32%)</title><rect x="367.1" y="261" width="15.5" height="15.0" fill="rgb(249,38,26)" rx="2" ry="2" /> <text x="370.11" y="271.5" ></text> </g> <g > <title>do_el0_svc (5 samples, 3.29%)</title><rect x="879.5" y="805" width="38.8" height="15.0" fill="rgb(245,128,19)" rx="2" ry="2" /> <text x="882.47" y="815.5" >do_..</text> </g> <g > <title>el0t_64_sync (1 samples, 0.66%)</title><rect x="165.3" y="885" width="7.7" height="15.0" fill="rgb(243,99,50)" rx="2" ry="2" /> <text x="168.26" y="895.5" ></text> </g> <g > <title>QApplicationPrivate::notify_helper (1 samples, 0.66%)</title><rect x="669.9" y="693" width="7.7" height="15.0" fill="rgb(209,200,21)" rx="2" ry="2" /> <text x="672.87" y="703.5" ></text> </g> <g > <title>ProcessInputEvents (23 samples, 15.13%)</title><rect x="297.2" y="917" width="178.6" height="15.0" fill="rgb(242,123,39)" rx="2" ry="2" /> <text x="300.24" y="927.5" >ProcessInputEvents</text> </g> <g > <title>drm_ioctl_kernel (6 samples, 3.95%)</title><rect x="64.3" y="485" width="46.6" height="15.0" fill="rgb(247,182,28)" rx="2" ry="2" /> <text x="67.34" y="495.5" >drm_..</text> </g> <g > <title>FlushClient (3 samples, 1.97%)</title><rect x="437.0" y="693" width="23.3" height="15.0" fill="rgb(236,99,16)" rx="2" ry="2" /> <text x="439.97" y="703.5" >F..</text> </g> <g > <title>sock_def_readable (1 samples, 0.66%)</title><rect x="242.9" y="613" width="7.8" height="15.0" fill="rgb(223,103,4)" rx="2" ry="2" /> <text x="245.89" y="623.5" ></text> </g> <g > <title>[libQt5Widgets.so.5.15.2] (2 samples, 1.32%)</title><rect x="693.2" y="725" width="15.5" height="15.0" fill="rgb(207,210,0)" rx="2" ry="2" /> <text x="696.16" y="735.5" ></text> </g> <g > <title>return_address (1 samples, 0.66%)</title><rect x="367.1" y="133" width="7.8" height="15.0" fill="rgb(244,184,43)" rx="2" ry="2" /> <text x="370.11" y="143.5" ></text> </g> <g > <title>xf86SetCursor (1 samples, 0.66%)</title><rect x="235.1" y="741" width="7.8" height="15.0" fill="rgb(228,151,6)" rx="2" ry="2" /> <text x="238.13" y="751.5" ></text> </g> <g > <title>el0t_64_sync (1 samples, 0.66%)</title><rect x="289.5" y="565" width="7.7" height="15.0" fill="rgb(208,126,24)" rx="2" ry="2" /> <text x="292.47" y="575.5" ></text> </g> <g > <title>schedule_idle (6 samples, 3.95%)</title><rect x="1089.1" y="917" width="46.6" height="15.0" fill="rgb(206,214,12)" rx="2" ry="2" /> <text x="1092.08" y="927.5" >sche..</text> </g> <g > <title>xf86_set_cursor_position (2 samples, 1.32%)</title><rect x="460.3" y="853" width="15.5" height="15.0" fill="rgb(227,63,23)" rx="2" ry="2" /> <text x="463.26" y="863.5" ></text> </g> <g > <title>QApplicationPrivate::notify_helper (1 samples, 0.66%)</title><rect x="677.6" y="693" width="7.8" height="15.0" fill="rgb(233,215,46)" rx="2" ry="2" /> <text x="680.63" y="703.5" ></text> </g> <g > <title>preempt_count_sub (1 samples, 0.66%)</title><rect x="367.1" y="149" width="7.8" height="15.0" fill="rgb(245,159,52)" rx="2" ry="2" /> <text x="370.11" y="159.5" ></text> </g> <g > <title>QEventDispatcherGlib::processEvents (17 samples, 11.18%)</title><rect x="600.0" y="901" width="132.0" height="15.0" fill="rgb(235,87,6)" rx="2" ry="2" /> <text x="603.00" y="911.5" >QEventDispatcher..</text> </g> <g > <title>drm_atomic_helper_update_plane (1 samples, 0.66%)</title><rect x="235.1" y="405" width="7.8" height="15.0" fill="rgb(251,6,17)" rx="2" ry="2" /> <text x="238.13" y="415.5" ></text> </g> <g > <title>TryClientEvents (3 samples, 1.97%)</title><rect x="437.0" y="725" width="23.3" height="15.0" fill="rgb(232,89,28)" rx="2" ry="2" /> <text x="439.97" y="735.5" >T..</text> </g> <g > <title>[libQt5Widgets.so.5.15.2] (1 samples, 0.66%)</title><rect x="669.9" y="725" width="7.7" height="15.0" fill="rgb(214,89,32)" rx="2" ry="2" /> <text x="672.87" y="735.5" ></text> </g> <g > <title>drmmode_set_cursor (2 samples, 1.32%)</title><rect x="343.8" y="597" width="15.5" height="15.0" fill="rgb(251,212,11)" rx="2" ry="2" /> <text x="346.82" y="607.5" ></text> </g> <g > <title>el0t_64_sync (2 samples, 1.32%)</title><rect x="219.6" y="853" width="15.5" height="15.0" fill="rgb(253,149,15)" rx="2" ry="2" /> <text x="222.61" y="863.5" ></text> </g> <g > <title>DeliverToWindowOwner (1 samples, 0.66%)</title><rect x="405.9" y="725" width="7.8" height="15.0" fill="rgb(212,148,20)" rx="2" ry="2" /> <text x="408.92" y="735.5" ></text> </g> <g > <title>el0_svc (1 samples, 0.66%)</title><rect x="522.4" y="677" width="7.7" height="15.0" fill="rgb(226,34,25)" rx="2" ry="2" /> <text x="525.37" y="687.5" ></text> </g> <g > <title>sock_sendmsg (1 samples, 0.66%)</title><rect x="242.9" y="645" width="7.8" height="15.0" fill="rgb(238,22,4)" rx="2" ry="2" /> <text x="245.89" y="655.5" ></text> </g> <g > <title>QRasterPaintEngine::fillRect (2 samples, 1.32%)</title><rect x="654.3" y="597" width="15.6" height="15.0" fill="rgb(211,69,20)" rx="2" ry="2" /> <text x="657.34" y="607.5" ></text> </g> <g > <title>QWidget::event (9 samples, 5.92%)</title><rect x="600.0" y="757" width="69.9" height="15.0" fill="rgb(237,117,32)" rx="2" ry="2" /> <text x="603.00" y="767.5" >QWidget..</text> </g> <g > <title>wait_for_reply (1 samples, 0.66%)</title><rect x="600.0" y="645" width="7.8" height="15.0" fill="rgb(253,12,1)" rx="2" ry="2" /> <text x="603.00" y="655.5" ></text> </g> <g > <title>[xscreensaver] (3 samples, 1.97%)</title><rect x="1166.7" y="933" width="23.3" height="15.0" fill="rgb(254,155,18)" rx="2" ry="2" /> <text x="1169.71" y="943.5" >[..</text> </g> <g > <title>drm_atomic_helper_wait_for_dependencies (1 samples, 0.66%)</title><rect x="343.8" y="245" width="7.8" height="15.0" fill="rgb(221,12,4)" rx="2" ry="2" /> <text x="346.82" y="255.5" ></text> </g> <g > <title>_raw_spin_lock (1 samples, 0.66%)</title><rect x="910.5" y="501" width="7.8" height="15.0" fill="rgb(238,43,26)" rx="2" ry="2" /> <text x="913.53" y="511.5" ></text> </g> <g > <title>__pthread_cond_wait (3 samples, 1.97%)</title><rect x="173.0" y="885" width="23.3" height="15.0" fill="rgb(252,152,24)" rx="2" ry="2" /> <text x="176.03" y="895.5" >_..</text> </g> <g > <title>sd_event_dispatch (1 samples, 0.66%)</title><rect x="1151.2" y="917" width="7.7" height="15.0" fill="rgb(241,162,37)" rx="2" ry="2" /> <text x="1154.18" y="927.5" ></text> </g> <g > <title>damagePutImage (4 samples, 2.63%)</title><rect x="250.7" y="901" width="31.0" height="15.0" fill="rgb(208,152,48)" rx="2" ry="2" /> <text x="253.66" y="911.5" >da..</text> </g> <g > <title>_raw_spin_unlock_irqrestore (1 samples, 0.66%)</title><rect x="988.2" y="549" width="7.7" height="15.0" fill="rgb(222,40,29)" rx="2" ry="2" /> <text x="991.16" y="559.5" ></text> </g> <g > <title>__arm64_sys_writev (1 samples, 0.66%)</title><rect x="918.3" y="485" width="7.8" height="15.0" fill="rgb(223,174,39)" rx="2" ry="2" /> <text x="921.29" y="495.5" ></text> </g> <g > <title>_xcb_conn_wait (1 samples, 0.66%)</title><rect x="1174.5" y="789" width="7.7" height="15.0" fill="rgb(235,223,28)" rx="2" ry="2" /> <text x="1177.47" y="799.5" ></text> </g> <g > <title>rpi_firmware_property_list (4 samples, 2.63%)</title><rect x="72.1" y="277" width="31.1" height="15.0" fill="rgb(210,103,7)" rx="2" ry="2" /> <text x="75.11" y="287.5" >rp..</text> </g> <g > <title>texture_sub_image (4 samples, 2.63%)</title><rect x="250.7" y="789" width="31.0" height="15.0" fill="rgb(223,16,21)" rx="2" ry="2" /> <text x="253.66" y="799.5" >te..</text> </g> <g > <title>pixman_f_transform_bounds (1 samples, 0.66%)</title><rect x="17.8" y="981" width="7.7" height="15.0" fill="rgb(207,82,21)" rx="2" ry="2" /> <text x="20.76" y="991.5" ></text> </g> <g > <title>QApplicationPrivate::notify_helper (2 samples, 1.32%)</title><rect x="654.3" y="677" width="15.6" height="15.0" fill="rgb(221,218,29)" rx="2" ry="2" /> <text x="657.34" y="687.5" ></text> </g> <g > <title>ext4_claim_free_clusters (1 samples, 0.66%)</title><rect x="895.0" y="581" width="7.8" height="15.0" fill="rgb(249,30,18)" rx="2" ry="2" /> <text x="898.00" y="591.5" ></text> </g> <g > <title>do_interrupt_handler (1 samples, 0.66%)</title><rect x="219.6" y="629" width="7.8" height="15.0" fill="rgb(236,199,50)" rx="2" ry="2" /> <text x="222.61" y="639.5" ></text> </g> <g > <title>el0_svc (1 samples, 0.66%)</title><rect x="1182.2" y="837" width="7.8" height="15.0" fill="rgb(239,22,17)" rx="2" ry="2" /> <text x="1185.24" y="847.5" ></text> </g> <g > <title>QTime::msec@plt (1 samples, 0.66%)</title><rect x="553.4" y="965" width="7.8" height="15.0" fill="rgb(242,210,0)" rx="2" ry="2" /> <text x="556.42" y="975.5" ></text> </g> <g > <title>update_blocked_averages (1 samples, 0.66%)</title><rect x="1081.3" y="885" width="7.8" height="15.0" fill="rgb(252,108,20)" rx="2" ry="2" /> <text x="1084.32" y="895.5" ></text> </g> <g > <title>el0_svc (5 samples, 3.29%)</title><rect x="879.5" y="821" width="38.8" height="15.0" fill="rgb(249,93,33)" rx="2" ry="2" /> <text x="882.47" y="831.5" >el0..</text> </g> <g > <title>do_interrupt_handler (1 samples, 0.66%)</title><rect x="87.6" y="133" width="7.8" height="15.0" fill="rgb(239,80,31)" rx="2" ry="2" /> <text x="90.63" y="143.5" ></text> </g> <g > <title>QWidget::event (1 samples, 0.66%)</title><rect x="700.9" y="613" width="7.8" height="15.0" fill="rgb(226,4,24)" rx="2" ry="2" /> <text x="703.92" y="623.5" ></text> </g> <g > <title>g_main_loop_run (1 samples, 0.66%)</title><rect x="522.4" y="917" width="7.7" height="15.0" fill="rgb(222,3,20)" rx="2" ry="2" /> <text x="525.37" y="927.5" ></text> </g> <g > <title>miPointerDisplayCursor (1 samples, 0.66%)</title><rect x="235.1" y="805" width="7.8" height="15.0" fill="rgb(246,26,53)" rx="2" ry="2" /> <text x="238.13" y="815.5" ></text> </g> <g > <title>xf86_crtc_load_cursor_argb (5 samples, 3.29%)</title><rect x="320.5" y="629" width="38.8" height="15.0" fill="rgb(224,215,25)" rx="2" ry="2" /> <text x="323.53" y="639.5" >xf8..</text> </g> <g > <title>WaitForSomething (4 samples, 2.63%)</title><rect x="483.6" y="917" width="31.0" height="15.0" fill="rgb(230,86,3)" rx="2" ry="2" /> <text x="486.55" y="927.5" >Wa..</text> </g> <g > <title>ext4_da_reserve_space (1 samples, 0.66%)</title><rect x="895.0" y="597" width="7.8" height="15.0" fill="rgb(214,51,50)" rx="2" ry="2" /> <text x="898.00" y="607.5" ></text> </g> <g > <title>DeviceEnterLeaveEvents (1 samples, 0.66%)</title><rect x="413.7" y="805" width="7.7" height="15.0" fill="rgb(237,32,0)" rx="2" ry="2" /> <text x="416.68" y="815.5" ></text> </g> <g > <title>[libQt5Widgets.so.5.15.2] (1 samples, 0.66%)</title><rect x="669.9" y="741" width="7.7" height="15.0" fill="rgb(246,224,15)" rx="2" ry="2" /> <text x="672.87" y="751.5" ></text> </g> <g > <title>kworker/u8:0-ev (1 samples, 0.66%)</title><rect x="545.7" y="997" width="7.7" height="15.0" fill="rgb(238,21,17)" rx="2" ry="2" /> <text x="548.66" y="1007.5" ></text> </g> <g > <title>el0_svc (2 samples, 1.32%)</title><rect x="219.6" y="821" width="15.5" height="15.0" fill="rgb(215,161,32)" rx="2" ry="2" /> <text x="222.61" y="831.5" ></text> </g> <g > <title>el0_svc (1 samples, 0.66%)</title><rect x="739.7" y="869" width="7.8" height="15.0" fill="rgb(242,226,12)" rx="2" ry="2" /> <text x="742.74" y="879.5" ></text> </g> <g > <title>__kmalloc_node_track_caller (1 samples, 0.66%)</title><rect x="305.0" y="341" width="7.8" height="15.0" fill="rgb(241,58,20)" rx="2" ry="2" /> <text x="308.00" y="351.5" ></text> </g> <g > <title>__do_softirq (1 samples, 0.66%)</title><rect x="87.6" y="37" width="7.8" height="15.0" fill="rgb(217,149,13)" rx="2" ry="2" /> <text x="90.63" y="47.5" ></text> </g> <g > <title>DeliverEventToWindowMask (4 samples, 2.63%)</title><rect x="429.2" y="773" width="31.1" height="15.0" fill="rgb(242,126,40)" rx="2" ry="2" /> <text x="432.21" y="783.5" >De..</text> </g> <g > <title>DeliverOneEvent (2 samples, 1.32%)</title><rect x="305.0" y="821" width="15.5" height="15.0" fill="rgb(216,174,32)" rx="2" ry="2" /> <text x="308.00" y="831.5" ></text> </g> <g > <title>el0t_64_sync_handler (1 samples, 0.66%)</title><rect x="149.7" y="837" width="7.8" height="15.0" fill="rgb(227,80,23)" rx="2" ry="2" /> <text x="152.74" y="847.5" ></text> </g> <g > <title>QCoreApplicationPrivate::threadRequiresCoreApplication (1 samples, 0.66%)</title><rect x="685.4" y="677" width="7.8" height="15.0" fill="rgb(228,199,13)" rx="2" ry="2" /> <text x="688.39" y="687.5" ></text> </g> <g > <title>miPointerUpdateSprite (1 samples, 0.66%)</title><rect x="235.1" y="773" width="7.8" height="15.0" fill="rgb(236,58,21)" rx="2" ry="2" /> <text x="238.13" y="783.5" ></text> </g> <g > <title>__arm64_sys_writev (2 samples, 1.32%)</title><rect x="444.7" y="533" width="15.6" height="15.0" fill="rgb(242,205,45)" rx="2" ry="2" /> <text x="447.74" y="543.5" ></text> </g> <g > <title>_XReply (1 samples, 0.66%)</title><rect x="1174.5" y="837" width="7.7" height="15.0" fill="rgb(239,47,32)" rx="2" ry="2" /> <text x="1177.47" y="847.5" ></text> </g> <g > <title>ReadRequestFromClient (1 samples, 0.66%)</title><rect x="475.8" y="917" width="7.8" height="15.0" fill="rgb(226,33,2)" rx="2" ry="2" /> <text x="478.79" y="927.5" ></text> </g> <g > <title>__sys_recvmsg (1 samples, 0.66%)</title><rect x="584.5" y="613" width="7.7" height="15.0" fill="rgb(211,27,16)" rx="2" ry="2" /> <text x="587.47" y="623.5" ></text> </g> <g > <title>[libgio-2.0.so.0.6800.4] (1 samples, 0.66%)</title><rect x="522.4" y="837" width="7.7" height="15.0" fill="rgb(250,4,23)" rx="2" ry="2" /> <text x="525.37" y="847.5" ></text> </g> <g > <title>do_futex (1 samples, 0.66%)</title><rect x="134.2" y="725" width="7.8" height="15.0" fill="rgb(249,39,25)" rx="2" ry="2" /> <text x="137.21" y="735.5" ></text> </g> <g > <title>v3d_bo_create_finish (1 samples, 0.66%)</title><rect x="289.5" y="405" width="7.7" height="15.0" fill="rgb(222,194,36)" rx="2" ry="2" /> <text x="292.47" y="415.5" ></text> </g> <g > <title>__GI___writev (3 samples, 1.97%)</title><rect x="382.6" y="629" width="23.3" height="15.0" fill="rgb(212,153,36)" rx="2" ry="2" /> <text x="385.63" y="639.5" >_..</text> </g> <g > <title>glamor_copy (2 samples, 1.32%)</title><rect x="281.7" y="821" width="15.5" height="15.0" fill="rgb(248,103,16)" rx="2" ry="2" /> <text x="284.71" y="831.5" ></text> </g> <g > <title>perf_evsel__enable_cpu (17 samples, 11.18%)</title><rect x="747.5" y="933" width="132.0" height="15.0" fill="rgb(234,186,50)" rx="2" ry="2" /> <text x="750.50" y="943.5" >perf_evsel__enab..</text> </g> <g > <title>do_iter_write (1 samples, 0.66%)</title><rect x="242.9" y="693" width="7.8" height="15.0" fill="rgb(242,43,43)" rx="2" ry="2" /> <text x="245.89" y="703.5" ></text> </g> <g > <title>schedule_timeout (1 samples, 0.66%)</title><rect x="374.9" y="197" width="7.7" height="15.0" fill="rgb(230,144,44)" rx="2" ry="2" /> <text x="377.87" y="207.5" ></text> </g> <g > <title>xcb_wait_for_reply (1 samples, 0.66%)</title><rect x="700.9" y="485" width="7.8" height="15.0" fill="rgb(253,31,52)" rx="2" ry="2" /> <text x="703.92" y="495.5" ></text> </g> <g > <title>start_thread (1 samples, 0.66%)</title><rect x="522.4" y="965" width="7.7" height="15.0" fill="rgb(246,103,21)" rx="2" ry="2" /> <text x="525.37" y="975.5" ></text> </g> <g > <title>wait_for_reply (1 samples, 0.66%)</title><rect x="1174.5" y="805" width="7.7" height="15.0" fill="rgb(215,32,42)" rx="2" ry="2" /> <text x="1177.47" y="815.5" ></text> </g> <g > <title>QXcbConnection::handleXcbEvent (3 samples, 1.97%)</title><rect x="708.7" y="789" width="23.3" height="15.0" fill="rgb(253,87,50)" rx="2" ry="2" /> <text x="711.68" y="799.5" >Q..</text> </g> <g > <title>ret_from_fork (1 samples, 0.66%)</title><rect x="545.7" y="981" width="7.7" height="15.0" fill="rgb(250,167,8)" rx="2" ry="2" /> <text x="548.66" y="991.5" ></text> </g> <g > <title>drm_ioctl_kernel (2 samples, 1.32%)</title><rect x="460.3" y="629" width="15.5" height="15.0" fill="rgb(231,118,45)" rx="2" ry="2" /> <text x="463.26" y="639.5" ></text> </g> <g > <title>DeliverOneEvent (4 samples, 2.63%)</title><rect x="429.2" y="821" width="31.1" height="15.0" fill="rgb(241,77,30)" rx="2" ry="2" /> <text x="432.21" y="831.5" >De..</text> </g> <g > <title>QStyleHelper::dpiScaled (1 samples, 0.66%)</title><rect x="669.9" y="565" width="7.7" height="15.0" fill="rgb(227,185,13)" rx="2" ry="2" /> <text x="672.87" y="575.5" ></text> </g> <g > <title>xf86libinput_read_input (9 samples, 5.92%)</title><rect x="41.1" y="901" width="69.8" height="15.0" fill="rgb(215,207,11)" rx="2" ry="2" /> <text x="44.05" y="911.5" >xf86lib..</text> </g> <g > <title>do_el0_svc (1 samples, 0.66%)</title><rect x="204.1" y="789" width="7.7" height="15.0" fill="rgb(242,52,10)" rx="2" ry="2" /> <text x="207.08" y="799.5" ></text> </g> <g > <title>do_el0_svc (1 samples, 0.66%)</title><rect x="918.3" y="533" width="7.8" height="15.0" fill="rgb(205,62,26)" rx="2" ry="2" /> <text x="921.29" y="543.5" ></text> </g> <g > <title>__libc_recvmsg (1 samples, 0.66%)</title><rect x="475.8" y="885" width="7.8" height="15.0" fill="rgb(223,220,48)" rx="2" ry="2" /> <text x="478.79" y="895.5" ></text> </g> <g > <title>_xcb_conn_wait (1 samples, 0.66%)</title><rect x="600.0" y="629" width="7.8" height="15.0" fill="rgb(228,13,22)" rx="2" ry="2" /> <text x="603.00" y="639.5" ></text> </g> <g > <title>do_el0_svc (1 samples, 0.66%)</title><rect x="584.5" y="677" width="7.7" height="15.0" fill="rgb(247,195,19)" rx="2" ry="2" /> <text x="587.47" y="687.5" ></text> </g> <g > <title>remove_wait_queue (1 samples, 0.66%)</title><rect x="219.6" y="709" width="7.8" height="15.0" fill="rgb(229,194,18)" rx="2" ry="2" /> <text x="222.61" y="719.5" ></text> </g> <g > <title>__irq_exit_rcu (1 samples, 0.66%)</title><rect x="87.6" y="53" width="7.8" height="15.0" fill="rgb(212,147,19)" rx="2" ry="2" /> <text x="90.63" y="63.5" ></text> </g> <g > <title>do_iter_write (1 samples, 0.66%)</title><rect x="700.9" y="197" width="7.8" height="15.0" fill="rgb(208,96,29)" rx="2" ry="2" /> <text x="703.92" y="207.5" ></text> </g> <g > <title>el0_svc_common.constprop.0 (2 samples, 1.32%)</title><rect x="219.6" y="789" width="15.5" height="15.0" fill="rgb(245,84,9)" rx="2" ry="2" /> <text x="222.61" y="799.5" ></text> </g> <g > <title>xf86_set_cursor_position (1 samples, 0.66%)</title><rect x="235.1" y="709" width="7.8" height="15.0" fill="rgb(230,110,39)" rx="2" ry="2" /> <text x="238.13" y="719.5" ></text> </g> <g > <title>el0t_64_sync (1 samples, 0.66%)</title><rect x="918.3" y="581" width="7.8" height="15.0" fill="rgb(215,43,37)" rx="2" ry="2" /> <text x="921.29" y="591.5" ></text> </g> <g > <title>sock_write_iter (1 samples, 0.66%)</title><rect x="242.9" y="661" width="7.8" height="15.0" fill="rgb(219,117,40)" rx="2" ry="2" /> <text x="245.89" y="671.5" ></text> </g> <g > <title>sock_def_readable (1 samples, 0.66%)</title><rect x="452.5" y="405" width="7.8" height="15.0" fill="rgb(241,159,31)" rx="2" ry="2" /> <text x="455.50" y="415.5" ></text> </g> <g > <title>sugov:0 (2 samples, 1.32%)</title><rect x="926.1" y="997" width="15.5" height="15.0" fill="rgb(208,36,35)" rx="2" ry="2" /> <text x="929.05" y="1007.5" ></text> </g> <g > <title>el0_svc (1 samples, 0.66%)</title><rect x="561.2" y="901" width="7.7" height="15.0" fill="rgb(213,76,7)" rx="2" ry="2" /> <text x="564.18" y="911.5" ></text> </g> <g > <title>el0_svc_common.constprop.0 (6 samples, 3.95%)</title><rect x="64.3" y="549" width="46.6" height="15.0" fill="rgb(213,165,15)" rx="2" ry="2" /> <text x="67.34" y="559.5" >el0_..</text> </g> <g > <title>__GI___libc_malloc (1 samples, 0.66%)</title><rect x="600.0" y="581" width="7.8" height="15.0" fill="rgb(222,218,31)" rx="2" ry="2" /> <text x="603.00" y="591.5" ></text> </g> <g > <title>new_sync_write (1 samples, 0.66%)</title><rect x="33.3" y="741" width="7.8" height="15.0" fill="rgb(211,177,48)" rx="2" ry="2" /> <text x="36.29" y="751.5" ></text> </g> <g > <title>default_idle_call (8 samples, 5.26%)</title><rect x="941.6" y="885" width="62.1" height="15.0" fill="rgb(222,199,16)" rx="2" ry="2" /> <text x="944.58" y="895.5" >defaul..</text> </g> <g > <title>drm_atomic_helper_update_plane (2 samples, 1.32%)</title><rect x="367.1" y="357" width="15.5" height="15.0" fill="rgb(230,84,9)" rx="2" ry="2" /> <text x="370.11" y="367.5" ></text> </g> <g > <title>__GI___writev (1 samples, 0.66%)</title><rect x="405.9" y="613" width="7.8" height="15.0" fill="rgb(210,162,53)" rx="2" ry="2" /> <text x="408.92" y="623.5" ></text> </g> <g > <title>vc4_plane_set_blank.isra.0 (1 samples, 0.66%)</title><rect x="468.0" y="437" width="7.8" height="15.0" fill="rgb(239,92,20)" rx="2" ry="2" /> <text x="471.03" y="447.5" ></text> </g> <g > <title>drm_ioctl (1 samples, 0.66%)</title><rect x="289.5" y="453" width="7.7" height="15.0" fill="rgb(206,185,15)" rx="2" ry="2" /> <text x="292.47" y="463.5" ></text> </g> <g > <title>XPending (1 samples, 0.66%)</title><rect x="584.5" y="869" width="7.7" height="15.0" fill="rgb(254,42,6)" rx="2" ry="2" /> <text x="587.47" y="879.5" ></text> </g> <g > <title>__libc_write (2 samples, 1.32%)</title><rect x="25.5" y="901" width="15.6" height="15.0" fill="rgb(222,9,9)" rx="2" ry="2" /> <text x="28.53" y="911.5" ></text> </g> <g > <title>el0t_64_sync_handler (1 samples, 0.66%)</title><rect x="584.5" y="709" width="7.7" height="15.0" fill="rgb(249,176,48)" rx="2" ry="2" /> <text x="587.47" y="719.5" ></text> </g> <g > <title>clk_set_rate (2 samples, 1.32%)</title><rect x="926.1" y="853" width="15.5" height="15.0" fill="rgb(212,143,34)" rx="2" ry="2" /> <text x="929.05" y="863.5" ></text> </g> <g > <title>el0t_64_sync_handler (2 samples, 1.32%)</title><rect x="219.6" y="837" width="15.5" height="15.0" fill="rgb(224,117,49)" rx="2" ry="2" /> <text x="222.61" y="847.5" ></text> </g> <g > <title>run_rebalance_domains (1 samples, 0.66%)</title><rect x="452.5" y="181" width="7.8" height="15.0" fill="rgb(205,225,42)" rx="2" ry="2" /> <text x="455.50" y="191.5" ></text> </g> <g > <title>__GI___poll (1 samples, 0.66%)</title><rect x="1182.2" y="885" width="7.8" height="15.0" fill="rgb(227,34,6)" rx="2" ry="2" /> <text x="1185.24" y="895.5" ></text> </g> <g > <title>el1h_64_irq (5 samples, 3.29%)</title><rect x="964.9" y="853" width="38.8" height="15.0" fill="rgb(208,110,24)" rx="2" ry="2" /> <text x="967.87" y="863.5" >el1..</text> </g> <g > <title>[libQt5Core.so.5.15.2] (12 samples, 7.89%)</title><rect x="142.0" y="949" width="93.1" height="15.0" fill="rgb(241,140,10)" rx="2" ry="2" /> <text x="144.97" y="959.5" >[libQt5Core..</text> </g> <g > <title>el0_svc (1 samples, 0.66%)</title><rect x="700.9" y="309" width="7.8" height="15.0" fill="rgb(210,67,45)" rx="2" ry="2" /> <text x="703.92" y="319.5" ></text> </g> <g > <title>error_check_subtexture_dimensions (1 samples, 0.66%)</title><rect x="281.7" y="693" width="7.8" height="15.0" fill="rgb(216,30,51)" rx="2" ry="2" /> <text x="284.71" y="703.5" ></text> </g> <g > <title>input_event (1 samples, 0.66%)</title><rect x="988.2" y="565" width="7.7" height="15.0" fill="rgb(213,188,46)" rx="2" ry="2" /> <text x="991.16" y="575.5" ></text> </g> <g > <title>percpu_counter_add_batch (1 samples, 0.66%)</title><rect x="895.0" y="565" width="7.8" height="15.0" fill="rgb(245,9,53)" rx="2" ry="2" /> <text x="898.00" y="575.5" ></text> </g> <g > <title>poll (1 samples, 0.66%)</title><rect x="724.2" y="677" width="7.8" height="15.0" fill="rgb(219,54,36)" rx="2" ry="2" /> <text x="727.21" y="687.5" ></text> </g> <g > <title>do_el0_svc (2 samples, 1.32%)</title><rect x="343.8" y="469" width="15.5" height="15.0" fill="rgb(234,160,35)" rx="2" ry="2" /> <text x="346.82" y="479.5" ></text> </g> <g > <title>ProcessDeviceEvent (18 samples, 11.84%)</title><rect x="320.5" y="853" width="139.8" height="15.0" fill="rgb(245,221,39)" rx="2" ry="2" /> <text x="323.53" y="863.5" >ProcessDeviceEvent</text> </g> <g > <title>do_interrupt_handler (1 samples, 0.66%)</title><rect x="452.5" y="293" width="7.8" height="15.0" fill="rgb(240,210,8)" rx="2" ry="2" /> <text x="455.50" y="303.5" ></text> </g> <g > <title>futex_wait_queue_me (1 samples, 0.66%)</title><rect x="134.2" y="693" width="7.8" height="15.0" fill="rgb(221,47,24)" rx="2" ry="2" /> <text x="137.21" y="703.5" ></text> </g> <g > <title>InputReady (9 samples, 5.92%)</title><rect x="41.1" y="917" width="69.8" height="15.0" fill="rgb(219,59,29)" rx="2" ry="2" /> <text x="44.05" y="927.5" >InputRe..</text> </g> <g > <title>drm_mode_cursor_universal (1 samples, 0.66%)</title><rect x="235.1" y="437" width="7.8" height="15.0" fill="rgb(230,49,13)" rx="2" ry="2" /> <text x="238.13" y="447.5" ></text> </g> <g > <title>__GI___libc_write (1 samples, 0.66%)</title><rect x="149.7" y="885" width="7.8" height="15.0" fill="rgb(210,132,36)" rx="2" ry="2" /> <text x="152.74" y="895.5" ></text> </g> <g > <title>iomap_iter (1 samples, 0.66%)</title><rect x="530.1" y="837" width="7.8" height="15.0" fill="rgb(209,115,42)" rx="2" ry="2" /> <text x="533.13" y="847.5" ></text> </g> <g > <title>invoke_syscall (2 samples, 1.32%)</title><rect x="219.6" y="773" width="15.5" height="15.0" fill="rgb(239,67,43)" rx="2" ry="2" /> <text x="222.61" y="783.5" ></text> </g> <g > <title>__pthread_cond_wait_common (1 samples, 0.66%)</title><rect x="134.2" y="869" width="7.8" height="15.0" fill="rgb(212,210,32)" rx="2" ry="2" /> <text x="137.21" y="879.5" ></text> </g> <g > <title>el0t_64_sync (3 samples, 1.97%)</title><rect x="437.0" y="629" width="23.3" height="15.0" fill="rgb(212,207,11)" rx="2" ry="2" /> <text x="439.97" y="639.5" >e..</text> </g> <g > <title>__arm64_sys_ioctl (17 samples, 11.18%)</title><rect x="747.5" y="805" width="132.0" height="15.0" fill="rgb(210,184,19)" rx="2" ry="2" /> <text x="750.50" y="815.5" >__arm64_sys_ioctl</text> </g> <g > <title>DeliverEventsToWindow (4 samples, 2.63%)</title><rect x="429.2" y="789" width="31.1" height="15.0" fill="rgb(235,53,5)" rx="2" ry="2" /> <text x="432.21" y="799.5" >De..</text> </g> <g > <title>ext4_setattr (1 samples, 0.66%)</title><rect x="1151.2" y="677" width="7.7" height="15.0" fill="rgb(242,164,1)" rx="2" ry="2" /> <text x="1154.18" y="687.5" ></text> </g> <g > <title>drm_atomic_helper_plane_destroy_state (1 samples, 0.66%)</title><rect x="460.3" y="501" width="7.7" height="15.0" fill="rgb(208,143,9)" rx="2" ry="2" /> <text x="463.26" y="511.5" ></text> </g> <g > <title>__pthread_mutex_unlock_usercnt (1 samples, 0.66%)</title><rect x="297.2" y="885" width="7.8" height="15.0" fill="rgb(250,172,23)" rx="2" ry="2" /> <text x="300.24" y="895.5" ></text> </g> <g > <title>drmIoctl (6 samples, 3.95%)</title><rect x="64.3" y="645" width="46.6" height="15.0" fill="rgb(214,183,8)" rx="2" ry="2" /> <text x="67.34" y="655.5" >drmI..</text> </g> <g > <title>__cpufreq_driver_target (2 samples, 1.32%)</title><rect x="926.1" y="917" width="15.5" height="15.0" fill="rgb(205,220,47)" rx="2" ry="2" /> <text x="929.05" y="927.5" ></text> </g> <g > <title>invoke_syscall (1 samples, 0.66%)</title><rect x="405.9" y="517" width="7.8" height="15.0" fill="rgb(239,223,12)" rx="2" ry="2" /> <text x="408.92" y="527.5" ></text> </g> <g > <title>positionSprite (6 samples, 3.95%)</title><rect x="64.3" y="805" width="46.6" height="15.0" fill="rgb(218,225,13)" rx="2" ry="2" /> <text x="67.34" y="815.5" >posi..</text> </g> <g > <title>_raw_spin_unlock_irq (1 samples, 0.66%)</title><rect x="343.8" y="197" width="7.8" height="15.0" fill="rgb(208,62,21)" rx="2" ry="2" /> <text x="346.82" y="207.5" ></text> </g> <g > <title>_nohz_idle_balance.constprop.0.isra.0 (1 samples, 0.66%)</title><rect x="1073.6" y="709" width="7.7" height="15.0" fill="rgb(248,135,10)" rx="2" ry="2" /> <text x="1076.55" y="719.5" ></text> </g> <g > <title>__libc_recvmsg (2 samples, 1.32%)</title><rect x="196.3" y="869" width="15.5" height="15.0" fill="rgb(221,194,9)" rx="2" ry="2" /> <text x="199.32" y="879.5" ></text> </g> <g > <title>do_el0_svc (2 samples, 1.32%)</title><rect x="460.3" y="709" width="15.5" height="15.0" fill="rgb(238,155,12)" rx="2" ry="2" /> <text x="463.26" y="719.5" ></text> </g> <g > <title>el0_svc (6 samples, 3.95%)</title><rect x="64.3" y="581" width="46.6" height="15.0" fill="rgb(211,48,19)" rx="2" ry="2" /> <text x="67.34" y="591.5" >el0_..</text> </g> <g > <title>do_iter_readv_writev (3 samples, 1.97%)</title><rect x="382.6" y="453" width="23.3" height="15.0" fill="rgb(247,176,17)" rx="2" ry="2" /> <text x="385.63" y="463.5" >d..</text> </g> <g > <title>perf_mmap__push (5 samples, 3.29%)</title><rect x="879.5" y="933" width="38.8" height="15.0" fill="rgb(220,123,6)" rx="2" ry="2" /> <text x="882.47" y="943.5" >per..</text> </g> <g > <title>xcb_wait_for_reply (1 samples, 0.66%)</title><rect x="600.0" y="661" width="7.8" height="15.0" fill="rgb(223,210,36)" rx="2" ry="2" /> <text x="603.00" y="671.5" ></text> </g> <g > <title>unix_stream_sendmsg (2 samples, 1.32%)</title><rect x="390.4" y="405" width="15.5" height="15.0" fill="rgb(252,212,6)" rx="2" ry="2" /> <text x="393.39" y="415.5" ></text> </g> <g > <title>v3d_resource_create_with_modifiers (1 samples, 0.66%)</title><rect x="289.5" y="661" width="7.7" height="15.0" fill="rgb(249,224,23)" rx="2" ry="2" /> <text x="292.47" y="671.5" ></text> </g> <g > <title>do_el0_svc (1 samples, 0.66%)</title><rect x="475.8" y="805" width="7.8" height="15.0" fill="rgb(251,86,29)" rx="2" ry="2" /> <text x="478.79" y="815.5" ></text> </g> <g > <title>hypot@plt (1 samples, 0.66%)</title><rect x="10.0" y="949" width="7.8" height="15.0" fill="rgb(242,148,35)" rx="2" ry="2" /> <text x="13.00" y="959.5" ></text> </g> <g > <title>sched_setaffinity (1 samples, 0.66%)</title><rect x="739.7" y="789" width="7.8" height="15.0" fill="rgb(216,138,47)" rx="2" ry="2" /> <text x="742.74" y="799.5" ></text> </g> <g > <title>__GI___writev (3 samples, 1.97%)</title><rect x="437.0" y="661" width="23.3" height="15.0" fill="rgb(229,196,7)" rx="2" ry="2" /> <text x="439.97" y="671.5" >_..</text> </g> <g > <title>EventToXI (1 samples, 0.66%)</title><rect x="312.8" y="805" width="7.7" height="15.0" fill="rgb(215,224,6)" rx="2" ry="2" /> <text x="315.76" y="815.5" ></text> </g> <g > <title>finish_task_switch.isra.0 (1 samples, 0.66%)</title><rect x="134.2" y="645" width="7.8" height="15.0" fill="rgb(211,153,43)" rx="2" ry="2" /> <text x="137.21" y="655.5" ></text> </g> <g > <title>xf86_load_cursor_argb (5 samples, 3.29%)</title><rect x="320.5" y="645" width="38.8" height="15.0" fill="rgb(213,97,12)" rx="2" ry="2" /> <text x="323.53" y="655.5" >xf8..</text> </g> <g > <title>__drm_atomic_state_free (1 samples, 0.66%)</title><rect x="460.3" y="533" width="7.7" height="15.0" fill="rgb(250,85,50)" rx="2" ry="2" /> <text x="463.26" y="543.5" ></text> </g> <g > <title>hid_report_raw_event (2 samples, 1.32%)</title><rect x="980.4" y="597" width="15.5" height="15.0" fill="rgb(231,107,3)" rx="2" ry="2" /> <text x="983.39" y="607.5" ></text> </g> <g > <title>el0_svc (3 samples, 1.97%)</title><rect x="359.3" y="533" width="23.3" height="15.0" fill="rgb(221,145,29)" rx="2" ry="2" /> <text x="362.34" y="543.5" >e..</text> </g> <g > <title>__sys_recvmsg (1 samples, 0.66%)</title><rect x="475.8" y="741" width="7.8" height="15.0" fill="rgb(248,206,10)" rx="2" ry="2" /> <text x="478.79" y="751.5" ></text> </g> <g > <title>do_idle (13 samples, 8.55%)</title><rect x="941.6" y="901" width="100.9" height="15.0" fill="rgb(210,96,27)" rx="2" ry="2" /> <text x="944.58" y="911.5" >do_idle</text> </g> <g > <title>el0t_64_sync (1 samples, 0.66%)</title><rect x="204.1" y="837" width="7.7" height="15.0" fill="rgb(225,14,29)" rx="2" ry="2" /> <text x="207.08" y="847.5" ></text> </g> <g > <title>el1h_64_sync_handler (1 samples, 0.66%)</title><rect x="910.5" y="629" width="7.8" height="15.0" fill="rgb(206,76,11)" rx="2" ry="2" /> <text x="913.53" y="639.5" ></text> </g> <g > <title>finish_task_switch.isra.0 (1 samples, 0.66%)</title><rect x="227.4" y="661" width="7.7" height="15.0" fill="rgb(228,173,3)" rx="2" ry="2" /> <text x="230.37" y="671.5" ></text> </g> <g > <title>el0_svc_common.constprop.0 (1 samples, 0.66%)</title><rect x="522.4" y="645" width="7.7" height="15.0" fill="rgb(206,151,48)" rx="2" ry="2" /> <text x="525.37" y="655.5" ></text> </g> <g > <title>do_el0_svc (2 samples, 1.32%)</title><rect x="25.5" y="837" width="15.6" height="15.0" fill="rgb(232,50,7)" rx="2" ry="2" /> <text x="28.53" y="847.5" ></text> </g> <g > <title>do_el0_svc (1 samples, 0.66%)</title><rect x="576.7" y="805" width="7.8" height="15.0" fill="rgb(227,2,31)" rx="2" ry="2" /> <text x="579.71" y="815.5" ></text> </g> <g > <title>el0t_64_sync (17 samples, 11.18%)</title><rect x="747.5" y="901" width="132.0" height="15.0" fill="rgb(219,195,36)" rx="2" ry="2" /> <text x="750.50" y="911.5" >el0t_64_sync</text> </g> <g > <title>jbd2_journal_next_log_block (1 samples, 0.66%)</title><rect x="530.1" y="917" width="7.8" height="15.0" fill="rgb(253,187,48)" rx="2" ry="2" /> <text x="533.13" y="927.5" ></text> </g> <g > <title>libinput_dispatch (3 samples, 1.97%)</title><rect x="41.1" y="885" width="23.2" height="15.0" fill="rgb(210,80,28)" rx="2" ry="2" /> <text x="44.05" y="895.5" >l..</text> </g> <g > <title>ProcShmPutImage (6 samples, 3.95%)</title><rect x="250.7" y="917" width="46.5" height="15.0" fill="rgb(233,22,0)" rx="2" ry="2" /> <text x="253.66" y="927.5" >Proc..</text> </g> <g > <title>__arm64_sys_ppoll (1 samples, 0.66%)</title><rect x="576.7" y="757" width="7.8" height="15.0" fill="rgb(245,191,2)" rx="2" ry="2" /> <text x="579.71" y="767.5" ></text> </g> <g > <title>ksys_write (1 samples, 0.66%)</title><rect x="33.3" y="773" width="7.8" height="15.0" fill="rgb(247,226,37)" rx="2" ry="2" /> <text x="36.29" y="783.5" ></text> </g> <g > <title>do_el0_svc (1 samples, 0.66%)</title><rect x="405.9" y="549" width="7.8" height="15.0" fill="rgb(218,197,14)" rx="2" ry="2" /> <text x="408.92" y="559.5" ></text> </g> <g > <title>drm_atomic_helper_commit (5 samples, 3.29%)</title><rect x="64.3" y="373" width="38.9" height="15.0" fill="rgb(250,32,0)" rx="2" ry="2" /> <text x="67.34" y="383.5" >drm..</text> </g> <g > <title>__arm64_sys_epoll_pwait (3 samples, 1.97%)</title><rect x="110.9" y="805" width="23.3" height="15.0" fill="rgb(253,134,46)" rx="2" ry="2" /> <text x="113.92" y="815.5" >_..</text> </g> <g > <title>DeliverEventsToWindow (1 samples, 0.66%)</title><rect x="305.0" y="789" width="7.8" height="15.0" fill="rgb(245,133,37)" rx="2" ry="2" /> <text x="308.00" y="799.5" ></text> </g> <g > <title>__setplane_atomic (2 samples, 1.32%)</title><rect x="460.3" y="565" width="15.5" height="15.0" fill="rgb(237,164,8)" rx="2" ry="2" /> <text x="463.26" y="575.5" ></text> </g> <g > <title>wait_for_completion_timeout (1 samples, 0.66%)</title><rect x="95.4" y="261" width="7.8" height="15.0" fill="rgb(220,223,25)" rx="2" ry="2" /> <text x="98.39" y="271.5" ></text> </g> <g > <title>_xcb_out_flush_to (1 samples, 0.66%)</title><rect x="700.9" y="453" width="7.8" height="15.0" fill="rgb(249,121,53)" rx="2" ry="2" /> <text x="703.92" y="463.5" ></text> </g> <g > <title>invoke_syscall (1 samples, 0.66%)</title><rect x="724.2" y="565" width="7.8" height="15.0" fill="rgb(215,78,4)" rx="2" ry="2" /> <text x="727.21" y="575.5" ></text> </g> <g > <title>[qterminal] (1 samples, 0.66%)</title><rect x="918.3" y="949" width="7.8" height="15.0" fill="rgb(233,3,48)" rx="2" ry="2" /> <text x="921.29" y="959.5" ></text> </g> <g > <title>drm_ioctl_kernel (2 samples, 1.32%)</title><rect x="343.8" y="389" width="15.5" height="15.0" fill="rgb(231,176,46)" rx="2" ry="2" /> <text x="346.82" y="399.5" ></text> </g> <g > <title>el0t_64_sync_handler (1 samples, 0.66%)</title><rect x="724.2" y="629" width="7.8" height="15.0" fill="rgb(211,183,19)" rx="2" ry="2" /> <text x="727.21" y="639.5" ></text> </g> <g > <title>_XSERVTransSocketWritev (3 samples, 1.97%)</title><rect x="437.0" y="677" width="23.3" height="15.0" fill="rgb(248,221,12)" rx="2" ry="2" /> <text x="439.97" y="687.5" >_..</text> </g> <g > <title>damagePutImage (1 samples, 0.66%)</title><rect x="514.6" y="981" width="7.8" height="15.0" fill="rgb(254,9,48)" rx="2" ry="2" /> <text x="517.61" y="991.5" ></text> </g> <g > <title>QGuiApplicationPrivate::processMouseEvent (2 samples, 1.32%)</title><rect x="693.2" y="789" width="15.5" height="15.0" fill="rgb(250,21,6)" rx="2" ry="2" /> <text x="696.16" y="799.5" ></text> </g> <g > <title>__arm64_sys_sched_setaffinity (1 samples, 0.66%)</title><rect x="739.7" y="805" width="7.8" height="15.0" fill="rgb(249,191,8)" rx="2" ry="2" /> <text x="742.74" y="815.5" ></text> </g> <g > <title>__GI___writev (1 samples, 0.66%)</title><rect x="242.9" y="869" width="7.8" height="15.0" fill="rgb(207,8,13)" rx="2" ry="2" /> <text x="245.89" y="879.5" ></text> </g> <g > <title>[libgio-2.0.so.0.6800.4] (1 samples, 0.66%)</title><rect x="522.4" y="789" width="7.7" height="15.0" fill="rgb(231,87,20)" rx="2" ry="2" /> <text x="525.37" y="799.5" ></text> </g> <g > <title>do_sys_poll (2 samples, 1.32%)</title><rect x="219.6" y="741" width="15.5" height="15.0" fill="rgb(235,153,51)" rx="2" ry="2" /> <text x="222.61" y="751.5" ></text> </g> <g > <title>main (2 samples, 1.32%)</title><rect x="576.7" y="933" width="15.5" height="15.0" fill="rgb(226,152,42)" rx="2" ry="2" /> <text x="579.71" y="943.5" ></text> </g> <g > <title>kcompactd0 (1 samples, 0.66%)</title><rect x="537.9" y="997" width="7.8" height="15.0" fill="rgb(237,225,13)" rx="2" ry="2" /> <text x="540.89" y="1007.5" ></text> </g> <g > <title>AnimCurDisplayCursor (1 samples, 0.66%)</title><rect x="235.1" y="853" width="7.8" height="15.0" fill="rgb(248,46,20)" rx="2" ry="2" /> <text x="238.13" y="863.5" ></text> </g> <g > <title>g_main_context_iteration (1 samples, 0.66%)</title><rect x="918.3" y="885" width="7.8" height="15.0" fill="rgb(245,39,49)" rx="2" ry="2" /> <text x="921.29" y="895.5" ></text> </g> <g > <title>DeliverToWindowOwner (3 samples, 1.97%)</title><rect x="382.6" y="741" width="23.3" height="15.0" fill="rgb(213,205,7)" rx="2" ry="2" /> <text x="385.63" y="751.5" >D..</text> </g> <g > <title>poll_for_next_event (1 samples, 0.66%)</title><rect x="584.5" y="789" width="7.7" height="15.0" fill="rgb(228,131,38)" rx="2" ry="2" /> <text x="587.47" y="799.5" ></text> </g> <g > <title>v3d_resource_bo_alloc (1 samples, 0.66%)</title><rect x="289.5" y="645" width="7.7" height="15.0" fill="rgb(240,167,25)" rx="2" ry="2" /> <text x="292.47" y="655.5" ></text> </g> <g > <title>__pselect (1 samples, 0.66%)</title><rect x="561.2" y="949" width="7.7" height="15.0" fill="rgb(234,30,41)" rx="2" ry="2" /> <text x="564.18" y="959.5" ></text> </g> <g > <title>QWindowSystemInterfacePrivate::handleWindowSystemEvent<QWindowSystemInterface::AsynchronousDelivery> (1 samples, 0.66%)</title><rect x="708.7" y="757" width="7.7" height="15.0" fill="rgb(232,46,24)" rx="2" ry="2" /> <text x="711.68" y="767.5" ></text> </g> <g > <title>ext4_block_write_begin (2 samples, 1.32%)</title><rect x="887.2" y="629" width="15.6" height="15.0" fill="rgb(220,130,27)" rx="2" ry="2" /> <text x="890.24" y="639.5" ></text> </g> <g > <title>drm_atomic_helper_commit (1 samples, 0.66%)</title><rect x="235.1" y="373" width="7.8" height="15.0" fill="rgb(224,197,1)" rx="2" ry="2" /> <text x="238.13" y="383.5" ></text> </g> <g > <title>handle_domain_irq (1 samples, 0.66%)</title><rect x="87.6" y="85" width="7.8" height="15.0" fill="rgb(213,213,24)" rx="2" ry="2" /> <text x="90.63" y="95.5" ></text> </g> <g > <title>xf86_set_cursor_position (3 samples, 1.97%)</title><rect x="359.3" y="661" width="23.3" height="15.0" fill="rgb(207,13,31)" rx="2" ry="2" /> <text x="362.34" y="671.5" >x..</text> </g> <g > <title>QWidgetPrivate::drawWidget (8 samples, 5.26%)</title><rect x="607.8" y="725" width="62.1" height="15.0" fill="rgb(253,94,32)" rx="2" ry="2" /> <text x="610.76" y="735.5" >QWidge..</text> </g> <g > <title>[libQt5Gui.so.5.15.2] (2 samples, 1.32%)</title><rect x="654.3" y="581" width="15.6" height="15.0" fill="rgb(251,144,41)" rx="2" ry="2" /> <text x="657.34" y="591.5" ></text> </g> <g > <title>miCopyRegion (2 samples, 1.32%)</title><rect x="281.7" y="837" width="15.5" height="15.0" fill="rgb(221,115,19)" rx="2" ry="2" /> <text x="284.71" y="847.5" ></text> </g> <g > <title>msg_submit (1 samples, 0.66%)</title><rect x="235.1" y="245" width="7.8" height="15.0" fill="rgb(253,188,44)" rx="2" ry="2" /> <text x="238.13" y="255.5" ></text> </g> <g > <title>invoke_syscall (2 samples, 1.32%)</title><rect x="460.3" y="677" width="15.5" height="15.0" fill="rgb(244,68,16)" rx="2" ry="2" /> <text x="463.26" y="687.5" ></text> </g> <g > <title>new_sync_write (5 samples, 3.29%)</title><rect x="879.5" y="709" width="38.8" height="15.0" fill="rgb(250,28,6)" rx="2" ry="2" /> <text x="882.47" y="719.5" >new..</text> </g> <g > <title>[perf] (24 samples, 15.79%)</title><rect x="732.0" y="981" width="186.3" height="15.0" fill="rgb(248,45,39)" rx="2" ry="2" /> <text x="734.97" y="991.5" >[perf]</text> </g> <g > <title>__irq_exit_rcu (5 samples, 3.29%)</title><rect x="964.9" y="725" width="38.8" height="15.0" fill="rgb(223,104,12)" rx="2" ry="2" /> <text x="967.87" y="735.5" >__i..</text> </g> <g > <title>__arm64_sys_ioctl (3 samples, 1.97%)</title><rect x="359.3" y="469" width="23.3" height="15.0" fill="rgb(217,30,34)" rx="2" ry="2" /> <text x="362.34" y="479.5" >_..</text> </g> <g > <title>schedule (2 samples, 1.32%)</title><rect x="180.8" y="677" width="15.5" height="15.0" fill="rgb(206,30,22)" rx="2" ry="2" /> <text x="183.79" y="687.5" ></text> </g> <g > <title>_raw_spin_unlock_irqrestore (1 samples, 0.66%)</title><rect x="235.1" y="213" width="7.8" height="15.0" fill="rgb(226,98,38)" rx="2" ry="2" /> <text x="238.13" y="223.5" ></text> </g> <g > <title>u_default_texture_subdata (4 samples, 2.63%)</title><rect x="250.7" y="757" width="31.0" height="15.0" fill="rgb(232,49,17)" rx="2" ry="2" /> <text x="253.66" y="767.5" >u_..</text> </g> <g > <title>mbox_send_message (1 samples, 0.66%)</title><rect x="235.1" y="261" width="7.8" height="15.0" fill="rgb(212,83,48)" rx="2" ry="2" /> <text x="238.13" y="271.5" ></text> </g> <g > <title>el0_svc (1 samples, 0.66%)</title><rect x="297.2" y="837" width="7.8" height="15.0" fill="rgb(223,192,23)" rx="2" ry="2" /> <text x="300.24" y="847.5" ></text> </g> <g > <title>DRM_IOCTL (2 samples, 1.32%)</title><rect x="343.8" y="565" width="15.5" height="15.0" fill="rgb(231,211,51)" rx="2" ry="2" /> <text x="346.82" y="575.5" ></text> </g> <g > <title>drmModeMoveCursor (2 samples, 1.32%)</title><rect x="460.3" y="821" width="15.5" height="15.0" fill="rgb(251,0,42)" rx="2" ry="2" /> <text x="463.26" y="831.5" ></text> </g> <g > <title>_XEventsQueued (1 samples, 0.66%)</title><rect x="584.5" y="853" width="7.7" height="15.0" fill="rgb(249,55,52)" rx="2" ry="2" /> <text x="587.47" y="863.5" ></text> </g> <g > <title>DeliverEventToInputClients (1 samples, 0.66%)</title><rect x="305.0" y="757" width="7.8" height="15.0" fill="rgb(238,137,38)" rx="2" ry="2" /> <text x="308.00" y="767.5" ></text> </g> <g > <title>ep_item_poll.isra.0 (1 samples, 0.66%)</title><rect x="126.4" y="757" width="7.8" height="15.0" fill="rgb(239,24,4)" rx="2" ry="2" /> <text x="129.45" y="767.5" ></text> </g> <g > <title>finish_fault (1 samples, 0.66%)</title><rect x="910.5" y="517" width="7.8" height="15.0" fill="rgb(244,183,14)" rx="2" ry="2" /> <text x="913.53" y="527.5" ></text> </g> <g > <title>__pthread_mutex_cond_lock (1 samples, 0.66%)</title><rect x="716.4" y="677" width="7.8" height="15.0" fill="rgb(251,9,39)" rx="2" ry="2" /> <text x="719.45" y="687.5" ></text> </g> <g > <title>_raw_write_unlock_irq (1 samples, 0.66%)</title><rect x="126.4" y="709" width="7.8" height="15.0" fill="rgb(206,70,42)" rx="2" ry="2" /> <text x="129.45" y="719.5" ></text> </g> <g > <title>el1h_64_irq_handler (1 samples, 0.66%)</title><rect x="1073.6" y="869" width="7.7" height="15.0" fill="rgb(238,48,29)" rx="2" ry="2" /> <text x="1076.55" y="879.5" ></text> </g> <g > <title>_XEventsQueued (1 samples, 0.66%)</title><rect x="1166.7" y="869" width="7.8" height="15.0" fill="rgb(206,18,30)" rx="2" ry="2" /> <text x="1169.71" y="879.5" ></text> </g> <g > <title>____sys_recvmsg (1 samples, 0.66%)</title><rect x="475.8" y="709" width="7.8" height="15.0" fill="rgb(250,85,46)" rx="2" ry="2" /> <text x="478.79" y="719.5" ></text> </g> <g > <title>_XSERVTransSocketWritev (1 samples, 0.66%)</title><rect x="305.0" y="677" width="7.8" height="15.0" fill="rgb(244,27,20)" rx="2" ry="2" /> <text x="308.00" y="687.5" ></text> </g> <g > <title>__arm64_sys_recvmsg (1 samples, 0.66%)</title><rect x="1166.7" y="677" width="7.8" height="15.0" fill="rgb(254,137,1)" rx="2" ry="2" /> <text x="1169.71" y="687.5" ></text> </g> <g > <title>el0t_64_sync_handler (1 samples, 0.66%)</title><rect x="475.8" y="837" width="7.8" height="15.0" fill="rgb(234,84,46)" rx="2" ry="2" /> <text x="478.79" y="847.5" ></text> </g> <g > <title>do_el0_svc (1 samples, 0.66%)</title><rect x="235.1" y="565" width="7.8" height="15.0" fill="rgb(209,189,10)" rx="2" ry="2" /> <text x="238.13" y="575.5" ></text> </g> <g > <title>swapper (27 samples, 17.76%)</title><rect x="941.6" y="997" width="209.6" height="15.0" fill="rgb(247,124,5)" rx="2" ry="2" /> <text x="944.58" y="1007.5" >swapper</text> </g> <g > <title>invoke_syscall (1 samples, 0.66%)</title><rect x="235.1" y="533" width="7.8" height="15.0" fill="rgb(221,96,53)" rx="2" ry="2" /> <text x="238.13" y="543.5" ></text> </g> <g > <title>process_one_work (1 samples, 0.66%)</title><rect x="545.7" y="933" width="7.7" height="15.0" fill="rgb(225,77,29)" rx="2" ry="2" /> <text x="548.66" y="943.5" ></text> </g> <g > <title>__arch_copy_from_user (1 samples, 0.66%)</title><rect x="879.5" y="645" width="7.7" height="15.0" fill="rgb(215,73,1)" rx="2" ry="2" /> <text x="882.47" y="655.5" ></text> </g> <g > <title>do_writev (1 samples, 0.66%)</title><rect x="305.0" y="517" width="7.8" height="15.0" fill="rgb(223,99,20)" rx="2" ry="2" /> <text x="308.00" y="527.5" ></text> </g> <g > <title>el0_svc_common.constprop.0 (1 samples, 0.66%)</title><rect x="165.3" y="821" width="7.7" height="15.0" fill="rgb(236,22,12)" rx="2" ry="2" /> <text x="168.26" y="831.5" ></text> </g> <g > <title>FlushClient (1 samples, 0.66%)</title><rect x="242.9" y="901" width="7.8" height="15.0" fill="rgb(244,87,47)" rx="2" ry="2" /> <text x="245.89" y="911.5" ></text> </g> <g > <title>el0_svc (1 samples, 0.66%)</title><rect x="584.5" y="693" width="7.7" height="15.0" fill="rgb(218,131,40)" rx="2" ry="2" /> <text x="587.47" y="703.5" ></text> </g> <g > <title>___sys_recvmsg (1 samples, 0.66%)</title><rect x="475.8" y="725" width="7.8" height="15.0" fill="rgb(211,76,29)" rx="2" ry="2" /> <text x="478.79" y="735.5" ></text> </g> <g > <title>invoke_syscall (1 samples, 0.66%)</title><rect x="134.2" y="757" width="7.8" height="15.0" fill="rgb(250,56,13)" rx="2" ry="2" /> <text x="137.21" y="767.5" ></text> </g> <g > <title>__lll_lock_wait (1 samples, 0.66%)</title><rect x="716.4" y="661" width="7.8" height="15.0" fill="rgb(211,96,10)" rx="2" ry="2" /> <text x="719.45" y="671.5" ></text> </g> <g > <title>handle_domain_irq (1 samples, 0.66%)</title><rect x="452.5" y="245" width="7.8" height="15.0" fill="rgb(247,82,42)" rx="2" ry="2" /> <text x="455.50" y="255.5" ></text> </g> <g > <title>_raw_spin_unlock_irqrestore (1 samples, 0.66%)</title><rect x="374.9" y="165" width="7.7" height="15.0" fill="rgb(227,194,44)" rx="2" ry="2" /> <text x="377.87" y="175.5" ></text> </g> <g > <title>usb_giveback_urb_bh (3 samples, 1.97%)</title><rect x="980.4" y="661" width="23.3" height="15.0" fill="rgb(247,195,3)" rx="2" ry="2" /> <text x="983.39" y="671.5" >u..</text> </g> <g > <title>wait_for_reply (1 samples, 0.66%)</title><rect x="700.9" y="469" width="7.8" height="15.0" fill="rgb(208,198,30)" rx="2" ry="2" /> <text x="703.92" y="479.5" ></text> </g> <g > <title>invoke_syscall (1 samples, 0.66%)</title><rect x="700.9" y="261" width="7.8" height="15.0" fill="rgb(228,167,14)" rx="2" ry="2" /> <text x="703.92" y="271.5" ></text> </g> <g > <title>__GI___sched_setaffinity_new (1 samples, 0.66%)</title><rect x="739.7" y="917" width="7.8" height="15.0" fill="rgb(213,77,48)" rx="2" ry="2" /> <text x="742.74" y="927.5" ></text> </g> <g > <title>do_epoll_pwait.part.0 (3 samples, 1.97%)</title><rect x="110.9" y="789" width="23.3" height="15.0" fill="rgb(232,214,41)" rx="2" ry="2" /> <text x="113.92" y="799.5" >d..</text> </g> <g > <title>sock_def_readable (1 samples, 0.66%)</title><rect x="398.2" y="389" width="7.7" height="15.0" fill="rgb(232,149,29)" rx="2" ry="2" /> <text x="401.16" y="399.5" ></text> </g> <g > <title>QWidgetPrivate::drawWidget (1 samples, 0.66%)</title><rect x="592.2" y="981" width="7.8" height="15.0" fill="rgb(227,159,27)" rx="2" ry="2" /> <text x="595.24" y="991.5" ></text> </g> <g > <title>g_main_context_iterate (2 samples, 1.32%)</title><rect x="576.7" y="901" width="15.5" height="15.0" fill="rgb(222,136,43)" rx="2" ry="2" /> <text x="579.71" y="911.5" ></text> </g> <g > <title>do_el0_svc (1 samples, 0.66%)</title><rect x="165.3" y="837" width="7.7" height="15.0" fill="rgb(251,136,17)" rx="2" ry="2" /> <text x="168.26" y="847.5" ></text> </g> <g > <title>vc4_atomic_commit_tail (5 samples, 3.29%)</title><rect x="64.3" y="341" width="38.9" height="15.0" fill="rgb(210,136,37)" rx="2" ry="2" /> <text x="67.34" y="351.5" >vc4..</text> </g> <g > <title>CoreEnterLeaveEvent (3 samples, 1.97%)</title><rect x="382.6" y="773" width="23.3" height="15.0" fill="rgb(248,120,4)" rx="2" ry="2" /> <text x="385.63" y="783.5" >C..</text> </g> <g > <title>QCoreApplication::notifyInternal2 (1 samples, 0.66%)</title><rect x="638.8" y="629" width="7.8" height="15.0" fill="rgb(212,18,44)" rx="2" ry="2" /> <text x="641.82" y="639.5" ></text> </g> <g > <title>[libgio-2.0.so.0.6800.4] (1 samples, 0.66%)</title><rect x="522.4" y="933" width="7.7" height="15.0" fill="rgb(227,202,42)" rx="2" ry="2" /> <text x="525.37" y="943.5" ></text> </g> <g > <title>TryClientEvents (3 samples, 1.97%)</title><rect x="382.6" y="725" width="23.3" height="15.0" fill="rgb(223,183,1)" rx="2" ry="2" /> <text x="385.63" y="735.5" >T..</text> </g> <g > <title>el0_svc_common.constprop.0 (1 samples, 0.66%)</title><rect x="305.0" y="565" width="7.8" height="15.0" fill="rgb(246,158,30)" rx="2" ry="2" /> <text x="308.00" y="575.5" ></text> </g> <g > <title>__schedule (1 samples, 0.66%)</title><rect x="95.4" y="213" width="7.8" height="15.0" fill="rgb(212,43,0)" rx="2" ry="2" /> <text x="98.39" y="223.5" ></text> </g> <g > <title>rpi_firmware_property (2 samples, 1.32%)</title><rect x="926.1" y="789" width="15.5" height="15.0" fill="rgb(241,82,17)" rx="2" ry="2" /> <text x="929.05" y="799.5" ></text> </g> <g > <title>g_main_context_dispatch (1 samples, 0.66%)</title><rect x="918.3" y="853" width="7.8" height="15.0" fill="rgb(219,153,6)" rx="2" ry="2" /> <text x="921.29" y="863.5" ></text> </g> <g > <title>[libQt5XcbQpa.so.5.15.2] (8 samples, 5.26%)</title><rect x="669.9" y="821" width="62.1" height="15.0" fill="rgb(218,80,51)" rx="2" ry="2" /> <text x="672.87" y="831.5" >[libQt..</text> </g> <g > <title>xf86ScreenMoveCursor (2 samples, 1.32%)</title><rect x="460.3" y="869" width="15.5" height="15.0" fill="rgb(209,206,14)" rx="2" ry="2" /> <text x="463.26" y="879.5" ></text> </g> <g > <title>CoreLeaveNotifies (1 samples, 0.66%)</title><rect x="405.9" y="773" width="7.8" height="15.0" fill="rgb(251,26,12)" rx="2" ry="2" /> <text x="408.92" y="783.5" ></text> </g> <g > <title>sock_write_iter (1 samples, 0.66%)</title><rect x="918.3" y="405" width="7.8" height="15.0" fill="rgb(235,89,45)" rx="2" ry="2" /> <text x="921.29" y="415.5" ></text> </g> <g > <title>_mesa_TexSubImage2D (4 samples, 2.63%)</title><rect x="250.7" y="821" width="31.0" height="15.0" fill="rgb(246,107,4)" rx="2" ry="2" /> <text x="253.66" y="831.5" >_m..</text> </g> <g > <title>xscreensaver (3 samples, 1.97%)</title><rect x="1166.7" y="997" width="23.3" height="15.0" fill="rgb(254,125,27)" rx="2" ry="2" /> <text x="1169.71" y="1007.5" >x..</text> </g> <g > <title>QWindowSystemInterface::sendWindowSystemEvents (5 samples, 3.29%)</title><rect x="669.9" y="805" width="38.8" height="15.0" fill="rgb(248,168,52)" rx="2" ry="2" /> <text x="672.87" y="815.5" >QWi..</text> </g> <g > <title>__schedule (1 samples, 0.66%)</title><rect x="568.9" y="917" width="7.8" height="15.0" fill="rgb(246,44,42)" rx="2" ry="2" /> <text x="571.95" y="927.5" ></text> </g> <g > <title>drm_mode_cursor_ioctl (1 samples, 0.66%)</title><rect x="235.1" y="469" width="7.8" height="15.0" fill="rgb(213,50,37)" rx="2" ry="2" /> <text x="238.13" y="479.5" ></text> </g> <g > <title>gic_handle_irq (5 samples, 3.29%)</title><rect x="964.9" y="773" width="38.8" height="15.0" fill="rgb(212,35,11)" rx="2" ry="2" /> <text x="967.87" y="783.5" >gic..</text> </g> <g > <title>QFusionStyle::subControlRect (1 samples, 0.66%)</title><rect x="669.9" y="613" width="7.7" height="15.0" fill="rgb(214,141,35)" rx="2" ry="2" /> <text x="672.87" y="623.5" ></text> </g> <g > <title>vc4_plane_atomic_update (1 samples, 0.66%)</title><rect x="351.6" y="213" width="7.7" height="15.0" fill="rgb(232,228,27)" rx="2" ry="2" /> <text x="354.58" y="223.5" ></text> </g> <g > <title>miPointerUpdateSprite (1 samples, 0.66%)</title><rect x="235.1" y="789" width="7.8" height="15.0" fill="rgb(206,20,7)" rx="2" ry="2" /> <text x="238.13" y="799.5" ></text> </g> <g > <title>XEventsQueued (1 samples, 0.66%)</title><rect x="1166.7" y="901" width="7.8" height="15.0" fill="rgb(242,69,46)" rx="2" ry="2" /> <text x="1169.71" y="911.5" ></text> </g> <g > <title>xf86ScreenSetCursor (1 samples, 0.66%)</title><rect x="235.1" y="725" width="7.8" height="15.0" fill="rgb(222,221,47)" rx="2" ry="2" /> <text x="238.13" y="735.5" ></text> </g> <g > <title>_nohz_idle_balance.constprop.0.isra.0 (1 samples, 0.66%)</title><rect x="1003.7" y="869" width="7.7" height="15.0" fill="rgb(241,60,21)" rx="2" ry="2" /> <text x="1006.68" y="879.5" ></text> </g> <g > <title>nohz_run_idle_balance (1 samples, 0.66%)</title><rect x="1081.3" y="917" width="7.8" height="15.0" fill="rgb(221,8,54)" rx="2" ry="2" /> <text x="1084.32" y="927.5" ></text> </g> <g > <title>_raw_write_unlock_irq (1 samples, 0.66%)</title><rect x="110.9" y="757" width="7.8" height="15.0" fill="rgb(207,134,3)" rx="2" ry="2" /> <text x="113.92" y="767.5" ></text> </g> <g > <title>unix_stream_read_generic (1 samples, 0.66%)</title><rect x="475.8" y="677" width="7.8" height="15.0" fill="rgb(239,183,10)" rx="2" ry="2" /> <text x="478.79" y="687.5" ></text> </g> <g > <title>gdbus (1 samples, 0.66%)</title><rect x="522.4" y="997" width="7.7" height="15.0" fill="rgb(228,33,17)" rx="2" ry="2" /> <text x="525.37" y="1007.5" ></text> </g> <g > <title>el0t_64_sync_handler (1 samples, 0.66%)</title><rect x="289.5" y="549" width="7.7" height="15.0" fill="rgb(215,10,29)" rx="2" ry="2" /> <text x="292.47" y="559.5" ></text> </g> <g > <title>[systemd-journald] (2 samples, 1.32%)</title><rect x="1151.2" y="981" width="15.5" height="15.0" fill="rgb(220,94,48)" rx="2" ry="2" /> <text x="1154.18" y="991.5" ></text> </g> <g > <title>fill_pointer_events (6 samples, 3.95%)</title><rect x="64.3" y="821" width="46.6" height="15.0" fill="rgb(230,146,17)" rx="2" ry="2" /> <text x="67.34" y="831.5" >fill..</text> </g> <g > <title>el0t_64_sync (1 samples, 0.66%)</title><rect x="724.2" y="645" width="7.8" height="15.0" fill="rgb(214,203,24)" rx="2" ry="2" /> <text x="727.21" y="655.5" ></text> </g> <g > <title>start_kernel (13 samples, 8.55%)</title><rect x="941.6" y="965" width="100.9" height="15.0" fill="rgb(243,206,23)" rx="2" ry="2" /> <text x="944.58" y="975.5" >start_kernel</text> </g> <g > <title>tick_nohz_idle_exit (2 samples, 1.32%)</title><rect x="1135.7" y="917" width="15.5" height="15.0" fill="rgb(253,84,12)" rx="2" ry="2" /> <text x="1138.66" y="927.5" ></text> </g> <g > <title>update_blocked_averages (1 samples, 0.66%)</title><rect x="1003.7" y="853" width="7.7" height="15.0" fill="rgb(250,31,21)" rx="2" ry="2" /> <text x="1006.68" y="863.5" ></text> </g> <g > <title>hid_input_report (2 samples, 1.32%)</title><rect x="980.4" y="613" width="15.5" height="15.0" fill="rgb(251,134,0)" rx="2" ry="2" /> <text x="983.39" y="623.5" ></text> </g> <g > <title>__set_cpus_allowed_ptr_locked (1 samples, 0.66%)</title><rect x="739.7" y="757" width="7.8" height="15.0" fill="rgb(229,42,25)" rx="2" ry="2" /> <text x="742.74" y="767.5" ></text> </g> <g > <title>sock_write_iter (2 samples, 1.32%)</title><rect x="444.7" y="453" width="15.6" height="15.0" fill="rgb(224,47,35)" rx="2" ry="2" /> <text x="447.74" y="463.5" ></text> </g> <g > <title>do_mem_abort (1 samples, 0.66%)</title><rect x="910.5" y="597" width="7.8" height="15.0" fill="rgb(236,49,30)" rx="2" ry="2" /> <text x="913.53" y="607.5" ></text> </g> <g > <title>__arm64_sys_recvmsg (1 samples, 0.66%)</title><rect x="584.5" y="629" width="7.7" height="15.0" fill="rgb(226,227,31)" rx="2" ry="2" /> <text x="587.47" y="639.5" ></text> </g> <g > <title>wait_for_reply (2 samples, 1.32%)</title><rect x="716.4" y="709" width="15.6" height="15.0" fill="rgb(248,27,17)" rx="2" ry="2" /> <text x="719.45" y="719.5" ></text> </g> <g > <title>__fget_light (1 samples, 0.66%)</title><rect x="405.9" y="453" width="7.8" height="15.0" fill="rgb(224,100,46)" rx="2" ry="2" /> <text x="408.92" y="463.5" ></text> </g> <g > <title>el0_svc_common.constprop.0 (1 samples, 0.66%)</title><rect x="134.2" y="773" width="7.8" height="15.0" fill="rgb(213,93,17)" rx="2" ry="2" /> <text x="137.21" y="783.5" ></text> </g> <g > <title>pagecache_get_page (1 samples, 0.66%)</title><rect x="902.8" y="613" width="7.7" height="15.0" fill="rgb(213,126,9)" rx="2" ry="2" /> <text x="905.76" y="623.5" ></text> </g> <g > <title>_raw_write_unlock_irq (1 samples, 0.66%)</title><rect x="118.7" y="741" width="7.7" height="15.0" fill="rgb(254,81,31)" rx="2" ry="2" /> <text x="121.68" y="751.5" ></text> </g> <g > <title>el0t_64_sync (1 samples, 0.66%)</title><rect x="584.5" y="725" width="7.7" height="15.0" fill="rgb(240,21,28)" rx="2" ry="2" /> <text x="587.47" y="735.5" ></text> </g> <g > <title>_raw_spin_unlock_irqrestore (1 samples, 0.66%)</title><rect x="219.6" y="693" width="7.8" height="15.0" fill="rgb(206,40,51)" rx="2" ry="2" /> <text x="222.61" y="703.5" ></text> </g> <g > <title>do_iter_write (3 samples, 1.97%)</title><rect x="382.6" y="469" width="23.3" height="15.0" fill="rgb(246,209,8)" rx="2" ry="2" /> <text x="385.63" y="479.5" >d..</text> </g> <g > <title>consume_skb (1 samples, 0.66%)</title><rect x="475.8" y="661" width="7.8" height="15.0" fill="rgb(242,192,11)" rx="2" ry="2" /> <text x="478.79" y="671.5" ></text> </g> <g > <title>__schedule (1 samples, 0.66%)</title><rect x="134.2" y="661" width="7.8" height="15.0" fill="rgb(209,179,7)" rx="2" ry="2" /> <text x="137.21" y="671.5" ></text> </g> <g > <title>__libc_start_main (36 samples, 23.68%)</title><rect x="235.1" y="965" width="279.5" height="15.0" fill="rgb(215,2,7)" rx="2" ry="2" /> <text x="238.13" y="975.5" >__libc_start_main</text> </g> <g > <title>QCommonStyle::subControlRect (1 samples, 0.66%)</title><rect x="669.9" y="597" width="7.7" height="15.0" fill="rgb(213,193,9)" rx="2" ry="2" /> <text x="672.87" y="607.5" ></text> </g> <g > <title>vc4_plane_atomic_update (1 samples, 0.66%)</title><rect x="468.0" y="453" width="7.8" height="15.0" fill="rgb(243,28,5)" rx="2" ry="2" /> <text x="471.03" y="463.5" ></text> </g> <g > <title>systemd-journal (2 samples, 1.32%)</title><rect x="1151.2" y="997" width="15.5" height="15.0" fill="rgb(246,167,16)" rx="2" ry="2" /> <text x="1154.18" y="1007.5" ></text> </g> <g > <title>arch_local_irq_disable (1 samples, 0.66%)</title><rect x="506.8" y="677" width="7.8" height="15.0" fill="rgb(210,67,29)" rx="2" ry="2" /> <text x="509.84" y="687.5" ></text> </g> <g > <title>[libinput.so.10.13.0] (3 samples, 1.97%)</title><rect x="41.1" y="869" width="23.2" height="15.0" fill="rgb(227,81,10)" rx="2" ry="2" /> <text x="44.05" y="879.5" >[..</text> </g> <g > <title>do_el0_svc (1 samples, 0.66%)</title><rect x="1182.2" y="821" width="7.8" height="15.0" fill="rgb(247,70,10)" rx="2" ry="2" /> <text x="1185.24" y="831.5" ></text> </g> <g > <title>DeliverDeviceEvents (2 samples, 1.32%)</title><rect x="305.0" y="837" width="15.5" height="15.0" fill="rgb(251,198,33)" rx="2" ry="2" /> <text x="308.00" y="847.5" ></text> </g> <g > <title>__arm64_sys_ioctl (6 samples, 3.95%)</title><rect x="64.3" y="517" width="46.6" height="15.0" fill="rgb(212,79,7)" rx="2" ry="2" /> <text x="67.34" y="527.5" >__ar..</text> </g> <g > <title>vc4_plane_atomic_update (4 samples, 2.63%)</title><rect x="72.1" y="309" width="31.1" height="15.0" fill="rgb(229,105,22)" rx="2" ry="2" /> <text x="75.11" y="319.5" >vc..</text> </g> <g > <title>QCoreApplication::notifyInternal2 (1 samples, 0.66%)</title><rect x="646.6" y="613" width="7.7" height="15.0" fill="rgb(208,190,26)" rx="2" ry="2" /> <text x="649.58" y="623.5" ></text> </g> <g > <title>QApplicationPrivate::notify_helper (2 samples, 1.32%)</title><rect x="677.6" y="757" width="15.6" height="15.0" fill="rgb(232,199,35)" rx="2" ry="2" /> <text x="680.63" y="767.5" ></text> </g> <g > <title>[libfm-qt.so.10.0.0] (1 samples, 0.66%)</title><rect x="700.9" y="549" width="7.8" height="15.0" fill="rgb(229,52,52)" rx="2" ry="2" /> <text x="703.92" y="559.5" ></text> </g> <g > <title>texsubimage_err (4 samples, 2.63%)</title><rect x="250.7" y="805" width="31.0" height="15.0" fill="rgb(242,211,20)" rx="2" ry="2" /> <text x="253.66" y="815.5" >te..</text> </g> <g > <title>el0t_64_sync (5 samples, 3.29%)</title><rect x="879.5" y="853" width="38.8" height="15.0" fill="rgb(206,154,30)" rx="2" ry="2" /> <text x="882.47" y="863.5" >el0..</text> </g> <g > <title>schedule (1 samples, 0.66%)</title><rect x="95.4" y="229" width="7.8" height="15.0" fill="rgb(235,201,53)" rx="2" ry="2" /> <text x="98.39" y="239.5" ></text> </g> <g > <title>QFrame::event (1 samples, 0.66%)</title><rect x="638.8" y="581" width="7.8" height="15.0" fill="rgb(224,116,6)" rx="2" ry="2" /> <text x="641.82" y="591.5" ></text> </g> <g > <title>gic_handle_irq (1 samples, 0.66%)</title><rect x="452.5" y="261" width="7.8" height="15.0" fill="rgb(213,86,7)" rx="2" ry="2" /> <text x="455.50" y="271.5" ></text> </g> <g > <title>thread_start (12 samples, 7.89%)</title><rect x="142.0" y="981" width="93.1" height="15.0" fill="rgb(250,207,43)" rx="2" ry="2" /> <text x="144.97" y="991.5" >thread_start</text> </g> <g > <title>QCoreApplicationPrivate::sendPostedEvents (9 samples, 5.92%)</title><rect x="600.0" y="805" width="69.9" height="15.0" fill="rgb(227,52,26)" rx="2" ry="2" /> <text x="603.00" y="815.5" >QCoreAp..</text> </g> <g > <title>finish_task_switch.isra.0 (1 samples, 0.66%)</title><rect x="724.2" y="453" width="7.8" height="15.0" fill="rgb(242,132,15)" rx="2" ry="2" /> <text x="727.21" y="463.5" ></text> </g> <g > <title>el0_svc (1 samples, 0.66%)</title><rect x="475.8" y="821" width="7.8" height="15.0" fill="rgb(254,176,45)" rx="2" ry="2" /> <text x="478.79" y="831.5" ></text> </g> <g > <title>el0_svc_common.constprop.0 (1 samples, 0.66%)</title><rect x="1166.7" y="709" width="7.8" height="15.0" fill="rgb(235,24,24)" rx="2" ry="2" /> <text x="1169.71" y="719.5" ></text> </g> <g > <title>drm_ioctl (2 samples, 1.32%)</title><rect x="460.3" y="645" width="15.5" height="15.0" fill="rgb(205,82,9)" rx="2" ry="2" /> <text x="463.26" y="655.5" ></text> </g> <g > <title>call_on_irq_stack (1 samples, 0.66%)</title><rect x="87.6" y="117" width="7.8" height="15.0" fill="rgb(215,54,53)" rx="2" ry="2" /> <text x="90.63" y="127.5" ></text> </g> <g > <title>el0t_64_sync (3 samples, 1.97%)</title><rect x="491.3" y="869" width="23.3" height="15.0" fill="rgb(247,46,15)" rx="2" ry="2" /> <text x="494.32" y="879.5" >e..</text> </g> <g > <title>el0t_64_sync_handler (1 samples, 0.66%)</title><rect x="1182.2" y="853" width="7.8" height="15.0" fill="rgb(246,21,3)" rx="2" ry="2" /> <text x="1185.24" y="863.5" ></text> </g> <g > <title>QEventLoop::exec (1 samples, 0.66%)</title><rect x="918.3" y="917" width="7.8" height="15.0" fill="rgb(214,105,54)" rx="2" ry="2" /> <text x="921.29" y="927.5" ></text> </g> <g > <title>iov_iter_fault_in_readable (1 samples, 0.66%)</title><rect x="910.5" y="661" width="7.8" height="15.0" fill="rgb(210,77,21)" rx="2" ry="2" /> <text x="913.53" y="671.5" ></text> </g> <g > <title>drm_ioctl_kernel (1 samples, 0.66%)</title><rect x="289.5" y="437" width="7.7" height="15.0" fill="rgb(247,57,11)" rx="2" ry="2" /> <text x="292.47" y="447.5" ></text> </g> <g > <title>drm_atomic_helper_commit_modeset_disables (1 samples, 0.66%)</title><rect x="64.3" y="325" width="7.8" height="15.0" fill="rgb(234,122,29)" rx="2" ry="2" /> <text x="67.34" y="335.5" ></text> </g> <g > <title>irq_exit (1 samples, 0.66%)</title><rect x="219.6" y="565" width="7.8" height="15.0" fill="rgb(218,210,10)" rx="2" ry="2" /> <text x="222.61" y="575.5" ></text> </g> <g > <title>in_lock_functions (1 samples, 0.66%)</title><rect x="910.5" y="485" width="7.8" height="15.0" fill="rgb(217,119,53)" rx="2" ry="2" /> <text x="913.53" y="495.5" ></text> </g> <g > <title>schedule (1 samples, 0.66%)</title><rect x="568.9" y="933" width="7.8" height="15.0" fill="rgb(239,7,47)" rx="2" ry="2" /> <text x="571.95" y="943.5" ></text> </g> <g > <title>QCoreApplication::notifyInternal2 (1 samples, 0.66%)</title><rect x="685.4" y="693" width="7.8" height="15.0" fill="rgb(253,113,9)" rx="2" ry="2" /> <text x="688.39" y="703.5" ></text> </g> <g > <title>_raw_spin_unlock_irqrestore (1 samples, 0.66%)</title><rect x="367.1" y="165" width="7.8" height="15.0" fill="rgb(225,205,11)" rx="2" ry="2" /> <text x="370.11" y="175.5" ></text> </g> <g > <title>[libQt5XcbQpa.so.5.15.2] (1 samples, 0.66%)</title><rect x="918.3" y="821" width="7.8" height="15.0" fill="rgb(247,213,44)" rx="2" ry="2" /> <text x="921.29" y="831.5" ></text> </g> <g > <title>drm_gem_shmem_get_pages_sgt (1 samples, 0.66%)</title><rect x="289.5" y="389" width="7.7" height="15.0" fill="rgb(239,107,54)" rx="2" ry="2" /> <text x="292.47" y="399.5" ></text> </g> <g > <title>__schedule (1 samples, 0.66%)</title><rect x="724.2" y="469" width="7.8" height="15.0" fill="rgb(210,197,51)" rx="2" ry="2" /> <text x="727.21" y="479.5" ></text> </g> <g > <title>__libc_start_main (2 samples, 1.32%)</title><rect x="1151.2" y="965" width="15.5" height="15.0" fill="rgb(207,172,21)" rx="2" ry="2" /> <text x="1154.18" y="975.5" ></text> </g> <g > <title>_xcb_out_flush_to (1 samples, 0.66%)</title><rect x="918.3" y="693" width="7.8" height="15.0" fill="rgb(248,22,42)" rx="2" ry="2" /> <text x="921.29" y="703.5" ></text> </g> <g > <title>el0t_64_sync (2 samples, 1.32%)</title><rect x="460.3" y="757" width="15.5" height="15.0" fill="rgb(238,5,5)" rx="2" ry="2" /> <text x="463.26" y="767.5" ></text> </g> <g > <title>xf86_crtc_set_cursor_position (1 samples, 0.66%)</title><rect x="235.1" y="693" width="7.8" height="15.0" fill="rgb(253,157,3)" rx="2" ry="2" /> <text x="238.13" y="703.5" ></text> </g> <g > <title>QPainter::fillRect (2 samples, 1.32%)</title><rect x="654.3" y="613" width="15.6" height="15.0" fill="rgb(231,8,6)" rx="2" ry="2" /> <text x="657.34" y="623.5" ></text> </g> <g > <title>__wake_up_common_lock (1 samples, 0.66%)</title><rect x="242.9" y="581" width="7.8" height="15.0" fill="rgb(218,215,9)" rx="2" ry="2" /> <text x="245.89" y="591.5" ></text> </g> <g > <title>CoreEnterLeaveEvent (1 samples, 0.66%)</title><rect x="405.9" y="757" width="7.8" height="15.0" fill="rgb(242,18,16)" rx="2" ry="2" /> <text x="408.92" y="767.5" ></text> </g> <g > <title>arch_cpu_idle (8 samples, 5.26%)</title><rect x="941.6" y="869" width="62.1" height="15.0" fill="rgb(233,175,33)" rx="2" ry="2" /> <text x="944.58" y="879.5" >arch_c..</text> </g> <g > <title>_raw_spin_unlock_irqrestore (1 samples, 0.66%)</title><rect x="980.4" y="533" width="7.8" height="15.0" fill="rgb(241,133,14)" rx="2" ry="2" /> <text x="983.39" y="543.5" ></text> </g> <g > <title>[libQt5Widgets.so.5.15.2] (1 samples, 0.66%)</title><rect x="669.9" y="645" width="7.7" height="15.0" fill="rgb(240,190,43)" rx="2" ry="2" /> <text x="672.87" y="655.5" ></text> </g> <g > <title>el0t_64_sync_handler (3 samples, 1.97%)</title><rect x="437.0" y="613" width="23.3" height="15.0" fill="rgb(249,156,14)" rx="2" ry="2" /> <text x="439.97" y="623.5" >e..</text> </g> <g > <title>xf86SetCursor (8 samples, 5.26%)</title><rect x="320.5" y="693" width="62.1" height="15.0" fill="rgb(254,64,29)" rx="2" ry="2" /> <text x="323.53" y="703.5" >xf86Se..</text> </g> <g > <title>QRasterPaintEngine::fillRect (4 samples, 2.63%)</title><rect x="607.8" y="661" width="31.0" height="15.0" fill="rgb(213,135,40)" rx="2" ry="2" /> <text x="610.76" y="671.5" >QR..</text> </g> <g > <title>QAbstractItemView::mouseMoveEvent (1 samples, 0.66%)</title><rect x="700.9" y="565" width="7.8" height="15.0" fill="rgb(240,228,16)" rx="2" ry="2" /> <text x="703.92" y="575.5" ></text> </g> <g > <title>util_copy_box (4 samples, 2.63%)</title><rect x="250.7" y="741" width="31.0" height="15.0" fill="rgb(253,177,13)" rx="2" ry="2" /> <text x="253.66" y="751.5" >ut..</text> </g> <g > <title>g_main_context_iterate (1 samples, 0.66%)</title><rect x="918.3" y="869" width="7.8" height="15.0" fill="rgb(226,95,39)" rx="2" ry="2" /> <text x="921.29" y="879.5" ></text> </g> <g > <title>do_writev (2 samples, 1.32%)</title><rect x="444.7" y="517" width="15.6" height="15.0" fill="rgb(251,194,15)" rx="2" ry="2" /> <text x="447.74" y="527.5" ></text> </g> <g > <title>vc4_atomic_commit_tail (1 samples, 0.66%)</title><rect x="351.6" y="245" width="7.7" height="15.0" fill="rgb(213,189,4)" rx="2" ry="2" /> <text x="354.58" y="255.5" ></text> </g> <g > <title>el0_svc_common.constprop.0 (1 samples, 0.66%)</title><rect x="297.2" y="805" width="7.8" height="15.0" fill="rgb(222,228,51)" rx="2" ry="2" /> <text x="300.24" y="815.5" ></text> </g> <g > <title>positionSprite (6 samples, 3.95%)</title><rect x="64.3" y="789" width="46.6" height="15.0" fill="rgb(238,66,4)" rx="2" ry="2" /> <text x="67.34" y="799.5" >posi..</text> </g> <g > <title>el0t_64_sync_handler (1 samples, 0.66%)</title><rect x="1151.2" y="821" width="7.7" height="15.0" fill="rgb(213,167,26)" rx="2" ry="2" /> <text x="1154.18" y="831.5" ></text> </g> <g > <title>ext4_buffered_write_iter (5 samples, 3.29%)</title><rect x="879.5" y="677" width="38.8" height="15.0" fill="rgb(218,137,13)" rx="2" ry="2" /> <text x="882.47" y="687.5" >ext..</text> </g> <g > <title>XtAppNextEvent (3 samples, 1.97%)</title><rect x="1166.7" y="917" width="23.3" height="15.0" fill="rgb(241,1,29)" rx="2" ry="2" /> <text x="1169.71" y="927.5" >X..</text> </g> <g > <title>schedule_hrtimeout_range (1 samples, 0.66%)</title><rect x="724.2" y="517" width="7.8" height="15.0" fill="rgb(236,77,37)" rx="2" ry="2" /> <text x="727.21" y="527.5" ></text> </g> <g > <title>__arm64_sys_writev (3 samples, 1.97%)</title><rect x="382.6" y="517" width="23.3" height="15.0" fill="rgb(241,85,51)" rx="2" ry="2" /> <text x="385.63" y="527.5" >_..</text> </g> <g > <title>[pcmanfm-qt] (17 samples, 11.18%)</title><rect x="600.0" y="949" width="132.0" height="15.0" fill="rgb(217,48,24)" rx="2" ry="2" /> <text x="603.00" y="959.5" >[pcmanfm-qt]</text> </g> <g > <title>el0_svc_common.constprop.0 (1 samples, 0.66%)</title><rect x="739.7" y="837" width="7.8" height="15.0" fill="rgb(208,219,12)" rx="2" ry="2" /> <text x="742.74" y="847.5" ></text> </g> <g > <title>[libQt5Core.so.5.15.2] (9 samples, 5.92%)</title><rect x="600.0" y="821" width="69.9" height="15.0" fill="rgb(248,67,5)" rx="2" ry="2" /> <text x="603.00" y="831.5" >[libQt5..</text> </g> <g > <title>sock_sendmsg (1 samples, 0.66%)</title><rect x="918.3" y="389" width="7.8" height="15.0" fill="rgb(208,114,0)" rx="2" ry="2" /> <text x="921.29" y="399.5" ></text> </g> <g > <title>QWidgetPrivate::paintSiblingsRecursive (1 samples, 0.66%)</title><rect x="638.8" y="677" width="7.8" height="15.0" fill="rgb(253,3,53)" rx="2" ry="2" /> <text x="641.82" y="687.5" ></text> </g> <g > <title>__wake_up_sync_key (1 samples, 0.66%)</title><rect x="452.5" y="389" width="7.8" height="15.0" fill="rgb(232,176,49)" rx="2" ry="2" /> <text x="455.50" y="399.5" ></text> </g> <g > <title>xf86libinput_handle_event (6 samples, 3.95%)</title><rect x="64.3" y="885" width="46.6" height="15.0" fill="rgb(224,145,24)" rx="2" ry="2" /> <text x="67.34" y="895.5" >xf86..</text> </g> <g > <title>__GI_epoll_pwait (3 samples, 1.97%)</title><rect x="491.3" y="885" width="23.3" height="15.0" fill="rgb(215,117,14)" rx="2" ry="2" /> <text x="494.32" y="895.5" >_..</text> </g> <g > <title>g_thread_proxy (1 samples, 0.66%)</title><rect x="522.4" y="949" width="7.7" height="15.0" fill="rgb(242,130,34)" rx="2" ry="2" /> <text x="525.37" y="959.5" ></text> </g> <g > <title>glamor_copy_cpu_fbo (2 samples, 1.32%)</title><rect x="281.7" y="773" width="15.5" height="15.0" fill="rgb(220,22,45)" rx="2" ry="2" /> <text x="284.71" y="783.5" ></text> </g> <g > <title>__import_iovec (1 samples, 0.66%)</title><rect x="1166.7" y="613" width="7.8" height="15.0" fill="rgb(213,59,49)" rx="2" ry="2" /> <text x="1169.71" y="623.5" ></text> </g> <g > <title>__audit_syscall_entry (1 samples, 0.66%)</title><rect x="522.4" y="613" width="7.7" height="15.0" fill="rgb(241,121,39)" rx="2" ry="2" /> <text x="525.37" y="623.5" ></text> </g> <g > <title>el1h_64_irq (1 samples, 0.66%)</title><rect x="219.6" y="677" width="7.8" height="15.0" fill="rgb(252,208,31)" rx="2" ry="2" /> <text x="222.61" y="687.5" ></text> </g> <g > <title>g_main_dispatch (1 samples, 0.66%)</title><rect x="522.4" y="869" width="7.7" height="15.0" fill="rgb(210,14,29)" rx="2" ry="2" /> <text x="525.37" y="879.5" ></text> </g> <g > <title>__schedule (1 samples, 0.66%)</title><rect x="227.4" y="677" width="7.7" height="15.0" fill="rgb(205,69,33)" rx="2" ry="2" /> <text x="230.37" y="687.5" ></text> </g> <g > <title>drm_atomic_state_default_clear (1 samples, 0.66%)</title><rect x="460.3" y="517" width="7.7" height="15.0" fill="rgb(249,96,32)" rx="2" ry="2" /> <text x="463.26" y="527.5" ></text> </g> <g > <title>xcb_wait_for_event (10 samples, 6.58%)</title><rect x="157.5" y="917" width="77.6" height="15.0" fill="rgb(220,14,42)" rx="2" ry="2" /> <text x="160.50" y="927.5" >xcb_wait..</text> </g> <g > <title>QEventLoop::exec (17 samples, 11.18%)</title><rect x="600.0" y="917" width="132.0" height="15.0" fill="rgb(248,16,53)" rx="2" ry="2" /> <text x="603.00" y="927.5" >QEventLoop::exec</text> </g> <g > <title>v3d_bo_alloc (1 samples, 0.66%)</title><rect x="289.5" y="629" width="7.7" height="15.0" fill="rgb(237,52,28)" rx="2" ry="2" /> <text x="292.47" y="639.5" ></text> </g> <g > <title>el0t_64_sync (1 samples, 0.66%)</title><rect x="576.7" y="853" width="7.8" height="15.0" fill="rgb(241,13,17)" rx="2" ry="2" /> <text x="579.71" y="863.5" ></text> </g> <g > <title>clk_core_set_rate_nolock (2 samples, 1.32%)</title><rect x="926.1" y="837" width="15.5" height="15.0" fill="rgb(213,5,42)" rx="2" ry="2" /> <text x="929.05" y="847.5" ></text> </g> <g > <title>__do_softirq (5 samples, 3.29%)</title><rect x="964.9" y="709" width="38.8" height="15.0" fill="rgb(234,31,30)" rx="2" ry="2" /> <text x="967.87" y="719.5" >__d..</text> </g> <g > <title>__ioctl (17 samples, 11.18%)</title><rect x="747.5" y="917" width="132.0" height="15.0" fill="rgb(234,31,18)" rx="2" ry="2" /> <text x="750.50" y="927.5" >__ioctl</text> </g> <g > <title>_xcb_conn_wait (2 samples, 1.32%)</title><rect x="716.4" y="693" width="15.6" height="15.0" fill="rgb(228,105,18)" rx="2" ry="2" /> <text x="719.45" y="703.5" ></text> </g> <g > <title>__irq_exit_rcu (1 samples, 0.66%)</title><rect x="219.6" y="549" width="7.8" height="15.0" fill="rgb(207,204,15)" rx="2" ry="2" /> <text x="222.61" y="559.5" ></text> </g> <g > <title>sock_alloc_send_pskb (1 samples, 0.66%)</title><rect x="305.0" y="405" width="7.8" height="15.0" fill="rgb(239,43,43)" rx="2" ry="2" /> <text x="308.00" y="415.5" ></text> </g> <g > <title>[libXt.so.6.0.0] (1 samples, 0.66%)</title><rect x="1174.5" y="901" width="7.7" height="15.0" fill="rgb(254,91,35)" rx="2" ry="2" /> <text x="1177.47" y="911.5" ></text> </g> <g > <title>QWidgetPrivate::paintSiblingsRecursive (2 samples, 1.32%)</title><rect x="638.8" y="709" width="15.5" height="15.0" fill="rgb(250,163,25)" rx="2" ry="2" /> <text x="641.82" y="719.5" ></text> </g> <g > <title>__libc_recvmsg (2 samples, 1.32%)</title><rect x="196.3" y="853" width="15.5" height="15.0" fill="rgb(236,208,15)" rx="2" ry="2" /> <text x="199.32" y="863.5" ></text> </g> <g > <title>__ioctl (2 samples, 1.32%)</title><rect x="343.8" y="533" width="15.5" height="15.0" fill="rgb(245,51,43)" rx="2" ry="2" /> <text x="346.82" y="543.5" ></text> </g> <g > <title>u_current_get (1 samples, 0.66%)</title><rect x="514.6" y="917" width="7.8" height="15.0" fill="rgb(212,177,36)" rx="2" ry="2" /> <text x="517.61" y="927.5" ></text> </g> <g > <title>xf86_crtc_set_cursor_position (6 samples, 3.95%)</title><rect x="64.3" y="693" width="46.6" height="15.0" fill="rgb(215,157,9)" rx="2" ry="2" /> <text x="67.34" y="703.5" >xf86..</text> </g> <g > <title>unix_destruct_scm (1 samples, 0.66%)</title><rect x="475.8" y="645" width="7.8" height="15.0" fill="rgb(252,137,25)" rx="2" ry="2" /> <text x="478.79" y="655.5" ></text> </g> <g > <title>unix_stream_sendmsg (1 samples, 0.66%)</title><rect x="700.9" y="133" width="7.8" height="15.0" fill="rgb(225,63,30)" rx="2" ry="2" /> <text x="703.92" y="143.5" ></text> </g> <g > <title>drm_atomic_helper_update_plane (2 samples, 1.32%)</title><rect x="343.8" y="309" width="15.5" height="15.0" fill="rgb(221,86,24)" rx="2" ry="2" /> <text x="346.82" y="319.5" ></text> </g> <g > <title>drmIoctl (1 samples, 0.66%)</title><rect x="235.1" y="645" width="7.8" height="15.0" fill="rgb(212,222,5)" rx="2" ry="2" /> <text x="238.13" y="655.5" ></text> </g> <g > <title>el0_svc (2 samples, 1.32%)</title><rect x="343.8" y="485" width="15.5" height="15.0" fill="rgb(238,82,36)" rx="2" ry="2" /> <text x="346.82" y="495.5" ></text> </g> <g > <title>do_page_fault (1 samples, 0.66%)</title><rect x="910.5" y="565" width="7.8" height="15.0" fill="rgb(251,173,22)" rx="2" ry="2" /> <text x="913.53" y="575.5" ></text> </g> <g > <title>return_address (1 samples, 0.66%)</title><rect x="537.9" y="885" width="7.8" height="15.0" fill="rgb(217,6,32)" rx="2" ry="2" /> <text x="540.89" y="895.5" ></text> </g> <g > <title>drmModeSetCursor2 (2 samples, 1.32%)</title><rect x="343.8" y="581" width="15.5" height="15.0" fill="rgb(238,86,5)" rx="2" ry="2" /> <text x="346.82" y="591.5" ></text> </g> <g > <title>_start (2 samples, 1.32%)</title><rect x="576.7" y="965" width="15.5" height="15.0" fill="rgb(237,180,22)" rx="2" ry="2" /> <text x="579.71" y="975.5" ></text> </g> <g > <title>el0_svc_common.constprop.0 (3 samples, 1.97%)</title><rect x="110.9" y="837" width="23.3" height="15.0" fill="rgb(240,11,42)" rx="2" ry="2" /> <text x="113.92" y="847.5" >e..</text> </g> <g > <title>do_el0_svc (6 samples, 3.95%)</title><rect x="64.3" y="565" width="46.6" height="15.0" fill="rgb(211,80,4)" rx="2" ry="2" /> <text x="67.34" y="575.5" >do_e..</text> </g> <g > <title>QXcbWindow::handleEnterNotifyEvent (3 samples, 1.97%)</title><rect x="708.7" y="773" width="23.3" height="15.0" fill="rgb(233,25,18)" rx="2" ry="2" /> <text x="711.68" y="783.5" >Q..</text> </g> <g > <title>poll_for_response (1 samples, 0.66%)</title><rect x="1166.7" y="853" width="7.8" height="15.0" fill="rgb(249,78,53)" rx="2" ry="2" /> <text x="1169.71" y="863.5" ></text> </g> <g > <title>__ioctl (2 samples, 1.32%)</title><rect x="460.3" y="773" width="15.5" height="15.0" fill="rgb(218,205,4)" rx="2" ry="2" /> <text x="463.26" y="783.5" ></text> </g> <g > <title>poll_for_event (1 samples, 0.66%)</title><rect x="584.5" y="805" width="7.7" height="15.0" fill="rgb(245,82,5)" rx="2" ry="2" /> <text x="587.47" y="815.5" ></text> </g> <g > <title>xf86CursorSetCursor (8 samples, 5.26%)</title><rect x="320.5" y="709" width="62.1" height="15.0" fill="rgb(223,157,11)" rx="2" ry="2" /> <text x="323.53" y="719.5" >xf86Cu..</text> </g> <g > <title>finish_task_switch.isra.0 (6 samples, 3.95%)</title><rect x="1089.1" y="885" width="46.6" height="15.0" fill="rgb(244,177,41)" rx="2" ry="2" /> <text x="1092.08" y="895.5" >fini..</text> </g> <g > <title>do_iter_readv_writev (1 samples, 0.66%)</title><rect x="918.3" y="421" width="7.8" height="15.0" fill="rgb(237,122,20)" rx="2" ry="2" /> <text x="921.29" y="431.5" ></text> </g> <g > <title>thread_start (14 samples, 9.21%)</title><rect x="25.5" y="981" width="108.7" height="15.0" fill="rgb(245,181,21)" rx="2" ry="2" /> <text x="28.53" y="991.5" >thread_start</text> </g> <g > <title>el0_svc (1 samples, 0.66%)</title><rect x="305.0" y="597" width="7.8" height="15.0" fill="rgb(236,41,34)" rx="2" ry="2" /> <text x="308.00" y="607.5" ></text> </g> <g > <title>generic_perform_write (4 samples, 2.63%)</title><rect x="879.5" y="661" width="31.0" height="15.0" fill="rgb(206,211,16)" rx="2" ry="2" /> <text x="882.47" y="671.5" >ge..</text> </g> <g > <title>dev_pm_opp_set_rate (2 samples, 1.32%)</title><rect x="926.1" y="885" width="15.5" height="15.0" fill="rgb(226,41,17)" rx="2" ry="2" /> <text x="929.05" y="895.5" ></text> </g> <g > <title>drm_atomic_commit (2 samples, 1.32%)</title><rect x="367.1" y="341" width="15.5" height="15.0" fill="rgb(226,124,46)" rx="2" ry="2" /> <text x="370.11" y="351.5" ></text> </g> <g > <title>ksys_write (5 samples, 3.29%)</title><rect x="879.5" y="741" width="38.8" height="15.0" fill="rgb(217,30,31)" rx="2" ry="2" /> <text x="882.47" y="751.5" >ksy..</text> </g> <g > <title>commit_tail (2 samples, 1.32%)</title><rect x="367.1" y="309" width="15.5" height="15.0" fill="rgb(214,206,45)" rx="2" ry="2" /> <text x="370.11" y="319.5" ></text> </g> <g > <title>__drm_crtc_commit_free (1 samples, 0.66%)</title><rect x="460.3" y="469" width="7.7" height="15.0" fill="rgb(248,177,5)" rx="2" ry="2" /> <text x="463.26" y="479.5" ></text> </g> <g > <title>vc4_atomic_commit_tail (2 samples, 1.32%)</title><rect x="367.1" y="293" width="15.5" height="15.0" fill="rgb(221,1,2)" rx="2" ry="2" /> <text x="370.11" y="303.5" ></text> </g> <g > <title>QWaitCondition::wait (1 samples, 0.66%)</title><rect x="134.2" y="917" width="7.8" height="15.0" fill="rgb(235,223,30)" rx="2" ry="2" /> <text x="137.21" y="927.5" ></text> </g> <g > <title>[systemd-journald] (2 samples, 1.32%)</title><rect x="1151.2" y="949" width="15.5" height="15.0" fill="rgb(213,226,4)" rx="2" ry="2" /> <text x="1154.18" y="959.5" ></text> </g> <g > <title>__GI___poll (2 samples, 1.32%)</title><rect x="219.6" y="869" width="15.5" height="15.0" fill="rgb(226,223,29)" rx="2" ry="2" /> <text x="222.61" y="879.5" ></text> </g> <g > <title>_mesa_get_format_info (1 samples, 0.66%)</title><rect x="281.7" y="661" width="7.8" height="15.0" fill="rgb(211,17,27)" rx="2" ry="2" /> <text x="284.71" y="671.5" ></text> </g> <g > <title>schedule_idle (2 samples, 1.32%)</title><rect x="1011.4" y="885" width="15.6" height="15.0" fill="rgb(238,45,38)" rx="2" ry="2" /> <text x="1014.45" y="895.5" ></text> </g> <g > <title>el0_svc_common.constprop.0 (1 samples, 0.66%)</title><rect x="405.9" y="533" width="7.8" height="15.0" fill="rgb(247,110,26)" rx="2" ry="2" /> <text x="408.92" y="543.5" ></text> </g> <g > <title>QWidgetPrivate::paintSiblingsRecursive (1 samples, 0.66%)</title><rect x="646.6" y="693" width="7.7" height="15.0" fill="rgb(245,121,33)" rx="2" ry="2" /> <text x="649.58" y="703.5" ></text> </g> <g > <title>__slab_alloc.constprop.0 (1 samples, 0.66%)</title><rect x="305.0" y="325" width="7.8" height="15.0" fill="rgb(249,93,6)" rx="2" ry="2" /> <text x="308.00" y="335.5" ></text> </g> <g > <title>hiddev_hid_event (1 samples, 0.66%)</title><rect x="980.4" y="565" width="7.8" height="15.0" fill="rgb(236,52,20)" rx="2" ry="2" /> <text x="983.39" y="575.5" ></text> </g> <g > <title>do_el0_svc (1 samples, 0.66%)</title><rect x="724.2" y="597" width="7.8" height="15.0" fill="rgb(236,131,14)" rx="2" ry="2" /> <text x="727.21" y="607.5" ></text> </g> <g > <title>__GI___writev (1 samples, 0.66%)</title><rect x="305.0" y="661" width="7.8" height="15.0" fill="rgb(223,63,28)" rx="2" ry="2" /> <text x="308.00" y="671.5" ></text> </g> <g > <title>QListView::mouseMoveEvent (1 samples, 0.66%)</title><rect x="700.9" y="581" width="7.8" height="15.0" fill="rgb(237,178,22)" rx="2" ry="2" /> <text x="703.92" y="591.5" ></text> </g> <g > <title>pcmanfm-qt (18 samples, 11.84%)</title><rect x="592.2" y="997" width="139.8" height="15.0" fill="rgb(211,39,21)" rx="2" ry="2" /> <text x="595.24" y="1007.5" >pcmanfm-qt</text> </g> <g > <title>QBackingStore::beginPaint (1 samples, 0.66%)</title><rect x="600.0" y="725" width="7.8" height="15.0" fill="rgb(228,141,48)" rx="2" ry="2" /> <text x="603.00" y="735.5" ></text> </g> <g > <title>ext4_da_get_block_prep (1 samples, 0.66%)</title><rect x="895.0" y="613" width="7.8" height="15.0" fill="rgb(233,29,16)" rx="2" ry="2" /> <text x="898.00" y="623.5" ></text> </g> <g > <title>vfs_writev (3 samples, 1.97%)</title><rect x="382.6" y="485" width="23.3" height="15.0" fill="rgb(253,176,45)" rx="2" ry="2" /> <text x="385.63" y="495.5" >v..</text> </g> <g > <title>pipe_write (1 samples, 0.66%)</title><rect x="33.3" y="725" width="7.8" height="15.0" fill="rgb(231,17,16)" rx="2" ry="2" /> <text x="36.29" y="735.5" ></text> </g> <g > <title>drm_mode_cursor_universal (2 samples, 1.32%)</title><rect x="367.1" y="389" width="15.5" height="15.0" fill="rgb(218,204,41)" rx="2" ry="2" /> <text x="370.11" y="399.5" ></text> </g> <g > <title>_xcb_out_send (1 samples, 0.66%)</title><rect x="918.3" y="661" width="7.8" height="15.0" fill="rgb(219,87,29)" rx="2" ry="2" /> <text x="921.29" y="671.5" ></text> </g> <g > <title>el0_svc (3 samples, 1.97%)</title><rect x="110.9" y="869" width="23.3" height="15.0" fill="rgb(211,11,33)" rx="2" ry="2" /> <text x="113.92" y="879.5" >e..</text> </g> <g > <title>drm_mode_cursor_ioctl (2 samples, 1.32%)</title><rect x="367.1" y="421" width="15.5" height="15.0" fill="rgb(207,153,34)" rx="2" ry="2" /> <text x="370.11" y="431.5" ></text> </g> <g > <title>__GI___writev (1 samples, 0.66%)</title><rect x="242.9" y="853" width="7.8" height="15.0" fill="rgb(240,162,40)" rx="2" ry="2" /> <text x="245.89" y="863.5" ></text> </g> <g > <title>DeliverEventsToWindow (3 samples, 1.97%)</title><rect x="382.6" y="757" width="23.3" height="15.0" fill="rgb(220,26,25)" rx="2" ry="2" /> <text x="385.63" y="767.5" >D..</text> </g> <g > <title>xf86_driver_load_cursor_argb (2 samples, 1.32%)</title><rect x="343.8" y="613" width="15.5" height="15.0" fill="rgb(231,216,25)" rx="2" ry="2" /> <text x="346.82" y="623.5" ></text> </g> <g > <title>drm_mode_cursor_common (1 samples, 0.66%)</title><rect x="235.1" y="453" width="7.8" height="15.0" fill="rgb(233,69,4)" rx="2" ry="2" /> <text x="238.13" y="463.5" ></text> </g> <g > <title>unix_stream_sendmsg (1 samples, 0.66%)</title><rect x="452.5" y="421" width="7.8" height="15.0" fill="rgb(248,141,27)" rx="2" ry="2" /> <text x="455.50" y="431.5" ></text> </g> <g > <title>smp_call_function_single (16 samples, 10.53%)</title><rect x="755.3" y="709" width="124.2" height="15.0" fill="rgb(237,110,0)" rx="2" ry="2" /> <text x="758.26" y="719.5" >smp_call_functi..</text> </g> <g > <title>__irq_exit_rcu (1 samples, 0.66%)</title><rect x="452.5" y="213" width="7.8" height="15.0" fill="rgb(253,7,10)" rx="2" ry="2" /> <text x="455.50" y="223.5" ></text> </g> <g > <title>el1_interrupt (1 samples, 0.66%)</title><rect x="1073.6" y="853" width="7.7" height="15.0" fill="rgb(211,79,47)" rx="2" ry="2" /> <text x="1076.55" y="863.5" ></text> </g> <g > <title>invoke_syscall (3 samples, 1.97%)</title><rect x="110.9" y="821" width="23.3" height="15.0" fill="rgb(223,180,24)" rx="2" ry="2" /> <text x="113.92" y="831.5" >i..</text> </g> <g > <title>_raw_spin_unlock_irq (1 samples, 0.66%)</title><rect x="351.6" y="149" width="7.7" height="15.0" fill="rgb(221,171,9)" rx="2" ry="2" /> <text x="354.58" y="159.5" ></text> </g> <g > <title>el0_svc_common.constprop.0 (1 samples, 0.66%)</title><rect x="576.7" y="789" width="7.8" height="15.0" fill="rgb(207,146,54)" rx="2" ry="2" /> <text x="579.71" y="799.5" ></text> </g> <g > <title>do_idle (14 samples, 9.21%)</title><rect x="1042.5" y="933" width="108.7" height="15.0" fill="rgb(206,106,53)" rx="2" ry="2" /> <text x="1045.50" y="943.5" >do_idle</text> </g> <g > <title>vc4_plane_set_blank.isra.0 (4 samples, 2.63%)</title><rect x="72.1" y="293" width="31.1" height="15.0" fill="rgb(213,66,28)" rx="2" ry="2" /> <text x="75.11" y="303.5" >vc..</text> </g> <g > <title>call_on_irq_stack (1 samples, 0.66%)</title><rect x="452.5" y="277" width="7.8" height="15.0" fill="rgb(222,70,50)" rx="2" ry="2" /> <text x="455.50" y="287.5" ></text> </g> <g > <title>QWaitCondition::wait (1 samples, 0.66%)</title><rect x="134.2" y="901" width="7.8" height="15.0" fill="rgb(220,137,51)" rx="2" ry="2" /> <text x="137.21" y="911.5" ></text> </g> <g > <title>el0_svc_common.constprop.0 (3 samples, 1.97%)</title><rect x="491.3" y="805" width="23.3" height="15.0" fill="rgb(226,31,49)" rx="2" ry="2" /> <text x="494.32" y="815.5" >e..</text> </g> <g > <title>thread_start (1 samples, 0.66%)</title><rect x="134.2" y="981" width="7.8" height="15.0" fill="rgb(224,150,21)" rx="2" ry="2" /> <text x="137.21" y="991.5" ></text> </g> <g > <title>hid_process_event (1 samples, 0.66%)</title><rect x="980.4" y="581" width="7.8" height="15.0" fill="rgb(244,169,26)" rx="2" ry="2" /> <text x="983.39" y="591.5" ></text> </g> <g > <title>DeliverEvent (4 samples, 2.63%)</title><rect x="429.2" y="805" width="31.1" height="15.0" fill="rgb(229,170,10)" rx="2" ry="2" /> <text x="432.21" y="815.5" >De..</text> </g> <g > <title>TryClientEvents (1 samples, 0.66%)</title><rect x="405.9" y="693" width="7.8" height="15.0" fill="rgb(248,195,1)" rx="2" ry="2" /> <text x="408.92" y="703.5" ></text> </g> <g > <title>_raw_spin_unlock_irqrestore (1 samples, 0.66%)</title><rect x="700.9" y="69" width="7.8" height="15.0" fill="rgb(234,64,22)" rx="2" ry="2" /> <text x="703.92" y="79.5" ></text> </g> <g > <title>QWidgetPrivate::drawWidget (1 samples, 0.66%)</title><rect x="638.8" y="693" width="7.8" height="15.0" fill="rgb(242,124,47)" rx="2" ry="2" /> <text x="641.82" y="703.5" ></text> </g> <g > <title>QWidget::event (1 samples, 0.66%)</title><rect x="646.6" y="565" width="7.7" height="15.0" fill="rgb(210,84,36)" rx="2" ry="2" /> <text x="649.58" y="575.5" ></text> </g> <g > <title>glamor_upload_boxes (4 samples, 2.63%)</title><rect x="250.7" y="837" width="31.0" height="15.0" fill="rgb(223,189,49)" rx="2" ry="2" /> <text x="253.66" y="847.5" >gl..</text> </g> <g > <title>futex_wait (1 samples, 0.66%)</title><rect x="134.2" y="709" width="7.8" height="15.0" fill="rgb(250,66,31)" rx="2" ry="2" /> <text x="137.21" y="719.5" ></text> </g> <g > <title>__wake_up_sync_key (1 samples, 0.66%)</title><rect x="398.2" y="373" width="7.7" height="15.0" fill="rgb(219,37,35)" rx="2" ry="2" /> <text x="401.16" y="383.5" ></text> </g> <g > <title>unmap_mapping_pages (1 samples, 0.66%)</title><rect x="1151.2" y="629" width="7.7" height="15.0" fill="rgb(239,96,2)" rx="2" ry="2" /> <text x="1154.18" y="639.5" ></text> </g> <g > <title>QXcbConnection::sync (1 samples, 0.66%)</title><rect x="600.0" y="677" width="7.8" height="15.0" fill="rgb(248,217,32)" rx="2" ry="2" /> <text x="603.00" y="687.5" ></text> </g> <g > <title>perf (24 samples, 15.79%)</title><rect x="732.0" y="997" width="186.3" height="15.0" fill="rgb(246,114,7)" rx="2" ry="2" /> <text x="734.97" y="1007.5" >perf</text> </g> <g > <title>kthread (1 samples, 0.66%)</title><rect x="537.9" y="965" width="7.8" height="15.0" fill="rgb(244,97,42)" rx="2" ry="2" /> <text x="540.89" y="975.5" ></text> </g> <g > <title>do_sys_poll (1 samples, 0.66%)</title><rect x="724.2" y="533" width="7.8" height="15.0" fill="rgb(231,128,12)" rx="2" ry="2" /> <text x="727.21" y="543.5" ></text> </g> <g > <title>FlushClient (1 samples, 0.66%)</title><rect x="405.9" y="661" width="7.8" height="15.0" fill="rgb(239,11,27)" rx="2" ry="2" /> <text x="408.92" y="671.5" ></text> </g> <g > <title>_raw_spin_unlock_irqrestore (1 samples, 0.66%)</title><rect x="995.9" y="565" width="7.8" height="15.0" fill="rgb(230,6,22)" rx="2" ry="2" /> <text x="998.92" y="575.5" ></text> </g> <g > <title>el0t_64_sync_handler (3 samples, 1.97%)</title><rect x="491.3" y="853" width="23.3" height="15.0" fill="rgb(236,105,54)" rx="2" ry="2" /> <text x="494.32" y="863.5" >e..</text> </g> <g > <title>el0t_64_sync (6 samples, 3.95%)</title><rect x="64.3" y="613" width="46.6" height="15.0" fill="rgb(211,218,24)" rx="2" ry="2" /> <text x="67.34" y="623.5" >el0t..</text> </g> <g > <title>_XSERVTransSocketWritev (3 samples, 1.97%)</title><rect x="382.6" y="661" width="23.3" height="15.0" fill="rgb(249,169,42)" rx="2" ry="2" /> <text x="385.63" y="671.5" >_..</text> </g> <g > <title>el1_interrupt (1 samples, 0.66%)</title><rect x="87.6" y="149" width="7.8" height="15.0" fill="rgb(210,128,33)" rx="2" ry="2" /> <text x="90.63" y="159.5" ></text> </g> <g > <title>el1_interrupt (1 samples, 0.66%)</title><rect x="452.5" y="309" width="7.8" height="15.0" fill="rgb(213,164,38)" rx="2" ry="2" /> <text x="455.50" y="319.5" ></text> </g> <g > <title>_raw_spin_unlock_irqrestore (1 samples, 0.66%)</title><rect x="468.0" y="357" width="7.8" height="15.0" fill="rgb(208,89,1)" rx="2" ry="2" /> <text x="471.03" y="367.5" ></text> </g> <g > <title>el0t_64_sync_handler (1 samples, 0.66%)</title><rect x="305.0" y="613" width="7.8" height="15.0" fill="rgb(229,188,49)" rx="2" ry="2" /> <text x="308.00" y="623.5" ></text> </g> <g > <title>miPointerDisplayCursor (8 samples, 5.26%)</title><rect x="320.5" y="757" width="62.1" height="15.0" fill="rgb(232,160,34)" rx="2" ry="2" /> <text x="323.53" y="767.5" >miPoin..</text> </g> <g > <title>ChangeToCursor (8 samples, 5.26%)</title><rect x="320.5" y="821" width="62.1" height="15.0" fill="rgb(227,29,38)" rx="2" ry="2" /> <text x="323.53" y="831.5" >Change..</text> </g> <g > <title>kthread_worker_fn (2 samples, 1.32%)</title><rect x="926.1" y="949" width="15.5" height="15.0" fill="rgb(253,118,41)" rx="2" ry="2" /> <text x="929.05" y="959.5" ></text> </g> <g > <title>xf86MoveCursor (6 samples, 3.95%)</title><rect x="64.3" y="741" width="46.6" height="15.0" fill="rgb(211,37,28)" rx="2" ry="2" /> <text x="67.34" y="751.5" >xf86..</text> </g> <g > <title>drm_atomic_helper_update_plane (6 samples, 3.95%)</title><rect x="64.3" y="405" width="46.6" height="15.0" fill="rgb(243,26,47)" rx="2" ry="2" /> <text x="67.34" y="415.5" >drm_..</text> </g> <g > <title>__wake_up_common_lock (1 samples, 0.66%)</title><rect x="700.9" y="85" width="7.8" height="15.0" fill="rgb(213,197,24)" rx="2" ry="2" /> <text x="703.92" y="95.5" ></text> </g> <g > <title>glamor_copy_area (2 samples, 1.32%)</title><rect x="281.7" y="869" width="15.5" height="15.0" fill="rgb(233,193,42)" rx="2" ry="2" /> <text x="284.71" y="879.5" ></text> </g> <g > <title>CoreEnterLeaveEvents (4 samples, 2.63%)</title><rect x="382.6" y="805" width="31.1" height="15.0" fill="rgb(233,40,22)" rx="2" ry="2" /> <text x="385.63" y="815.5" >Co..</text> </g> <g > <title>dix_main (36 samples, 23.68%)</title><rect x="235.1" y="949" width="279.5" height="15.0" fill="rgb(252,6,22)" rx="2" ry="2" /> <text x="238.13" y="959.5" >dix_main</text> </g> <g > <title>DRM_IOCTL (3 samples, 1.97%)</title><rect x="359.3" y="613" width="23.3" height="15.0" fill="rgb(254,153,51)" rx="2" ry="2" /> <text x="362.34" y="623.5" >D..</text> </g> <g > <title>drm_atomic_commit (5 samples, 3.29%)</title><rect x="64.3" y="389" width="38.9" height="15.0" fill="rgb(209,151,35)" rx="2" ry="2" /> <text x="67.34" y="399.5" >drm..</text> </g> <g > <title>QEventDispatcherGlib::processEvents (1 samples, 0.66%)</title><rect x="918.3" y="901" width="7.8" height="15.0" fill="rgb(233,29,26)" rx="2" ry="2" /> <text x="921.29" y="911.5" ></text> </g> <g > <title>sugov_work (2 samples, 1.32%)</title><rect x="926.1" y="933" width="15.5" height="15.0" fill="rgb(227,214,30)" rx="2" ry="2" /> <text x="929.05" y="943.5" ></text> </g> <g > <title>QCoreApplication::notifyInternal2 (2 samples, 1.32%)</title><rect x="693.2" y="773" width="15.5" height="15.0" fill="rgb(236,158,29)" rx="2" ry="2" /> <text x="696.16" y="783.5" ></text> </g> <g > <title>el0t_64_sync_handler (5 samples, 3.29%)</title><rect x="879.5" y="837" width="38.8" height="15.0" fill="rgb(227,108,32)" rx="2" ry="2" /> <text x="882.47" y="847.5" >el0..</text> </g> <g > <title>QStyleOption::init (1 samples, 0.66%)</title><rect x="677.6" y="613" width="7.8" height="15.0" fill="rgb(210,48,51)" rx="2" ry="2" /> <text x="680.63" y="623.5" ></text> </g> <g > <title>wait_for_completion_timeout (1 samples, 0.66%)</title><rect x="343.8" y="213" width="7.8" height="15.0" fill="rgb(228,165,30)" rx="2" ry="2" /> <text x="346.82" y="223.5" ></text> </g> <g > <title>vfs_writev (1 samples, 0.66%)</title><rect x="242.9" y="709" width="7.8" height="15.0" fill="rgb(244,168,21)" rx="2" ry="2" /> <text x="245.89" y="719.5" ></text> </g> <g > <title>do_el0_svc (1 samples, 0.66%)</title><rect x="149.7" y="805" width="7.8" height="15.0" fill="rgb(248,28,3)" rx="2" ry="2" /> <text x="152.74" y="815.5" ></text> </g> <g > <title>glamor_copy_gl (2 samples, 1.32%)</title><rect x="281.7" y="789" width="15.5" height="15.0" fill="rgb(218,221,50)" rx="2" ry="2" /> <text x="284.71" y="799.5" ></text> </g> <g > <title>__libc_start_main (1 samples, 0.66%)</title><rect x="918.3" y="965" width="7.8" height="15.0" fill="rgb(238,46,13)" rx="2" ry="2" /> <text x="921.29" y="975.5" ></text> </g> <g > <title>do_truncate (1 samples, 0.66%)</title><rect x="1151.2" y="709" width="7.7" height="15.0" fill="rgb(223,172,26)" rx="2" ry="2" /> <text x="1154.18" y="719.5" ></text> </g> <g > <title>QCoreApplication::exec (17 samples, 11.18%)</title><rect x="600.0" y="933" width="132.0" height="15.0" fill="rgb(229,140,47)" rx="2" ry="2" /> <text x="603.00" y="943.5" >QCoreApplication..</text> </g> <g > <title>QCursor::pos (1 samples, 0.66%)</title><rect x="700.9" y="533" width="7.8" height="15.0" fill="rgb(228,120,30)" rx="2" ry="2" /> <text x="703.92" y="543.5" ></text> </g> <g > <title>xcb_wait_for_reply (1 samples, 0.66%)</title><rect x="918.3" y="725" width="7.8" height="15.0" fill="rgb(253,156,45)" rx="2" ry="2" /> <text x="921.29" y="735.5" ></text> </g> <g > <title>QWidget::event (1 samples, 0.66%)</title><rect x="638.8" y="565" width="7.8" height="15.0" fill="rgb(207,135,25)" rx="2" ry="2" /> <text x="641.82" y="575.5" ></text> </g> <g > <title>event_function_call (16 samples, 10.53%)</title><rect x="755.3" y="725" width="124.2" height="15.0" fill="rgb(216,198,3)" rx="2" ry="2" /> <text x="758.26" y="735.5" >event_function_..</text> </g> <g > <title>el0t_64_sync (3 samples, 1.97%)</title><rect x="359.3" y="565" width="23.3" height="15.0" fill="rgb(246,153,42)" rx="2" ry="2" /> <text x="362.34" y="575.5" >e..</text> </g> <g > <title>__ioctl (1 samples, 0.66%)</title><rect x="289.5" y="581" width="7.7" height="15.0" fill="rgb(225,185,27)" rx="2" ry="2" /> <text x="292.47" y="591.5" ></text> </g> <g > <title>_raw_write_unlock_irq (1 samples, 0.66%)</title><rect x="491.3" y="725" width="7.8" height="15.0" fill="rgb(209,185,17)" rx="2" ry="2" /> <text x="494.32" y="735.5" ></text> </g> <g > <title>invoke_syscall (2 samples, 1.32%)</title><rect x="444.7" y="549" width="15.6" height="15.0" fill="rgb(217,180,19)" rx="2" ry="2" /> <text x="447.74" y="559.5" ></text> </g> <g > <title>miPointerDisplayCursor (8 samples, 5.26%)</title><rect x="320.5" y="773" width="62.1" height="15.0" fill="rgb(227,89,51)" rx="2" ry="2" /> <text x="323.53" y="783.5" >miPoin..</text> </g> <g > <title>invoke_syscall (17 samples, 11.18%)</title><rect x="747.5" y="821" width="132.0" height="15.0" fill="rgb(230,55,49)" rx="2" ry="2" /> <text x="750.50" y="831.5" >invoke_syscall</text> </g> <g > <title>__secondary_switched (14 samples, 9.21%)</title><rect x="1042.5" y="981" width="108.7" height="15.0" fill="rgb(207,40,43)" rx="2" ry="2" /> <text x="1045.50" y="991.5" >__secondary_s..</text> </g> <g > <title>el0_svc_common.constprop.0 (1 samples, 0.66%)</title><rect x="724.2" y="581" width="7.8" height="15.0" fill="rgb(246,180,2)" rx="2" ry="2" /> <text x="727.21" y="591.5" ></text> </g> <g > <title>do_iter_write (1 samples, 0.66%)</title><rect x="918.3" y="437" width="7.8" height="15.0" fill="rgb(243,66,27)" rx="2" ry="2" /> <text x="921.29" y="447.5" ></text> </g> <g > <title>finish_task_switch.isra.0 (2 samples, 1.32%)</title><rect x="1011.4" y="853" width="15.6" height="15.0" fill="rgb(216,100,24)" rx="2" ry="2" /> <text x="1014.45" y="863.5" ></text> </g> <g > <title>poll (2 samples, 1.32%)</title><rect x="219.6" y="885" width="15.5" height="15.0" fill="rgb(234,129,44)" rx="2" ry="2" /> <text x="222.61" y="895.5" ></text> </g> <g > <title>_XtWaitForSomething (1 samples, 0.66%)</title><rect x="1182.2" y="901" width="7.8" height="15.0" fill="rgb(215,153,54)" rx="2" ry="2" /> <text x="1185.24" y="911.5" ></text> </g> <g > <title>el0t_64_sync_handler (1 samples, 0.66%)</title><rect x="165.3" y="869" width="7.7" height="15.0" fill="rgb(213,229,35)" rx="2" ry="2" /> <text x="168.26" y="879.5" ></text> </g> <g > <title>drm_gem_shmem_get_pages (1 samples, 0.66%)</title><rect x="289.5" y="373" width="7.7" height="15.0" fill="rgb(216,137,4)" rx="2" ry="2" /> <text x="292.47" y="383.5" ></text> </g> <g > <title>__GI___writev (1 samples, 0.66%)</title><rect x="405.9" y="629" width="7.8" height="15.0" fill="rgb(222,26,37)" rx="2" ry="2" /> <text x="408.92" y="639.5" ></text> </g> <g > <title>do_el0_svc (1 samples, 0.66%)</title><rect x="700.9" y="293" width="7.8" height="15.0" fill="rgb(247,105,30)" rx="2" ry="2" /> <text x="703.92" y="303.5" ></text> </g> <g > <title>wait_for_completion_timeout (1 samples, 0.66%)</title><rect x="468.0" y="405" width="7.8" height="15.0" fill="rgb(217,146,26)" rx="2" ry="2" /> <text x="471.03" y="415.5" ></text> </g> <g > <title>v3d_ioctl (1 samples, 0.66%)</title><rect x="289.5" y="613" width="7.7" height="15.0" fill="rgb(224,143,21)" rx="2" ry="2" /> <text x="292.47" y="623.5" ></text> </g> <g > <title>wait_for_completion_timeout (2 samples, 1.32%)</title><rect x="926.1" y="757" width="15.5" height="15.0" fill="rgb(240,75,5)" rx="2" ry="2" /> <text x="929.05" y="767.5" ></text> </g> <g > <title>el0t_64_sync_handler (2 samples, 1.32%)</title><rect x="25.5" y="869" width="15.6" height="15.0" fill="rgb(254,217,33)" rx="2" ry="2" /> <text x="28.53" y="879.5" ></text> </g> <g > <title>vfs_writev (1 samples, 0.66%)</title><rect x="918.3" y="453" width="7.8" height="15.0" fill="rgb(224,200,40)" rx="2" ry="2" /> <text x="921.29" y="463.5" ></text> </g> <g > <title>el1h_64_irq (1 samples, 0.66%)</title><rect x="452.5" y="341" width="7.8" height="15.0" fill="rgb(254,13,48)" rx="2" ry="2" /> <text x="455.50" y="351.5" ></text> </g> <g > <title>vc4_plane_set_blank.isra.0 (2 samples, 1.32%)</title><rect x="367.1" y="245" width="15.5" height="15.0" fill="rgb(216,72,20)" rx="2" ry="2" /> <text x="370.11" y="255.5" ></text> </g> <g > <title>el1h_64_irq (1 samples, 0.66%)</title><rect x="87.6" y="181" width="7.8" height="15.0" fill="rgb(209,143,15)" rx="2" ry="2" /> <text x="90.63" y="191.5" ></text> </g> <g > <title>ret_from_fork (1 samples, 0.66%)</title><rect x="530.1" y="981" width="7.8" height="15.0" fill="rgb(219,206,48)" rx="2" ry="2" /> <text x="533.13" y="991.5" ></text> </g> <g > <title>schedule_timeout (1 samples, 0.66%)</title><rect x="468.0" y="389" width="7.8" height="15.0" fill="rgb(214,75,10)" rx="2" ry="2" /> <text x="471.03" y="399.5" ></text> </g> <g > <title>__GI_epoll_pwait (3 samples, 1.97%)</title><rect x="110.9" y="917" width="23.3" height="15.0" fill="rgb(251,124,15)" rx="2" ry="2" /> <text x="113.92" y="927.5" >_..</text> </g> <g > <title>__GI___writev (1 samples, 0.66%)</title><rect x="305.0" y="645" width="7.8" height="15.0" fill="rgb(238,180,44)" rx="2" ry="2" /> <text x="308.00" y="655.5" ></text> </g> <g > <title>do_el0_svc (1 samples, 0.66%)</title><rect x="305.0" y="581" width="7.8" height="15.0" fill="rgb(239,34,53)" rx="2" ry="2" /> <text x="308.00" y="591.5" ></text> </g> <g > <title>el0t_64_sync (1 samples, 0.66%)</title><rect x="1166.7" y="773" width="7.8" height="15.0" fill="rgb(241,77,17)" rx="2" ry="2" /> <text x="1169.71" y="783.5" ></text> </g> <g > <title>__wake_up_common_lock (1 samples, 0.66%)</title><rect x="452.5" y="373" width="7.8" height="15.0" fill="rgb(254,142,1)" rx="2" ry="2" /> <text x="455.50" y="383.5" ></text> </g> <g > <title>generic_exec_single (16 samples, 10.53%)</title><rect x="755.3" y="693" width="124.2" height="15.0" fill="rgb(249,128,39)" rx="2" ry="2" /> <text x="758.26" y="703.5" >generic_exec_si..</text> </g> <g > <title>AnimCurDisplayCursor (8 samples, 5.26%)</title><rect x="320.5" y="805" width="62.1" height="15.0" fill="rgb(219,36,38)" rx="2" ry="2" /> <text x="323.53" y="815.5" >AnimCu..</text> </g> <g > <title>QApplicationPrivate::sendMouseEvent (2 samples, 1.32%)</title><rect x="693.2" y="709" width="15.5" height="15.0" fill="rgb(241,4,40)" rx="2" ry="2" /> <text x="696.16" y="719.5" ></text> </g> <g > <title>GetPointerEvents (6 samples, 3.95%)</title><rect x="64.3" y="837" width="46.6" height="15.0" fill="rgb(252,178,36)" rx="2" ry="2" /> <text x="67.34" y="847.5" >GetP..</text> </g> <g > <title>openbox (2 samples, 1.32%)</title><rect x="576.7" y="997" width="15.5" height="15.0" fill="rgb(226,26,28)" rx="2" ry="2" /> <text x="579.71" y="1007.5" ></text> </g> <g > <title>DeliverEventsToWindow (1 samples, 0.66%)</title><rect x="405.9" y="741" width="7.8" height="15.0" fill="rgb(222,109,7)" rx="2" ry="2" /> <text x="408.92" y="751.5" ></text> </g> <g > <title>texsubimage_err (2 samples, 1.32%)</title><rect x="281.7" y="725" width="15.5" height="15.0" fill="rgb(240,166,18)" rx="2" ry="2" /> <text x="284.71" y="735.5" ></text> </g> <g > <title>xf86_set_cursor_position (6 samples, 3.95%)</title><rect x="64.3" y="709" width="46.6" height="15.0" fill="rgb(249,66,4)" rx="2" ry="2" /> <text x="67.34" y="719.5" >xf86..</text> </g> <g > <title>[libgio-2.0.so.0.6800.4] (1 samples, 0.66%)</title><rect x="522.4" y="757" width="7.7" height="15.0" fill="rgb(247,162,31)" rx="2" ry="2" /> <text x="525.37" y="767.5" ></text> </g> <g > <title>QWidget::setAttribute@plt (1 samples, 0.66%)</title><rect x="592.2" y="965" width="7.8" height="15.0" fill="rgb(235,128,12)" rx="2" ry="2" /> <text x="595.24" y="975.5" ></text> </g> <g > <title>DoEnterLeaveEvents (5 samples, 3.29%)</title><rect x="382.6" y="821" width="38.8" height="15.0" fill="rgb(209,209,10)" rx="2" ry="2" /> <text x="385.63" y="831.5" >DoE..</text> </g> <g > <title>do_el0_svc (3 samples, 1.97%)</title><rect x="382.6" y="565" width="23.3" height="15.0" fill="rgb(238,6,31)" rx="2" ry="2" /> <text x="385.63" y="575.5" >d..</text> </g> <g > <title>invoke_syscall (1 samples, 0.66%)</title><rect x="305.0" y="549" width="7.8" height="15.0" fill="rgb(230,39,33)" rx="2" ry="2" /> <text x="308.00" y="559.5" ></text> </g> <g > <title>mieqProcessDeviceEvent (20 samples, 13.16%)</title><rect x="305.0" y="885" width="155.3" height="15.0" fill="rgb(243,75,19)" rx="2" ry="2" /> <text x="308.00" y="895.5" >mieqProcessDeviceEv..</text> </g> <g > <title>QCoreApplicationPrivate::sendThroughObjectEventFilters (1 samples, 0.66%)</title><rect x="638.8" y="597" width="7.8" height="15.0" fill="rgb(213,184,21)" rx="2" ry="2" /> <text x="641.82" y="607.5" ></text> </g> <g > <title>invoke_syscall (2 samples, 1.32%)</title><rect x="343.8" y="437" width="15.5" height="15.0" fill="rgb(227,186,51)" rx="2" ry="2" /> <text x="346.82" y="447.5" ></text> </g> <g > <title>syscall_trace_enter (1 samples, 0.66%)</title><rect x="165.3" y="805" width="7.7" height="15.0" fill="rgb(216,201,6)" rx="2" ry="2" /> <text x="168.26" y="815.5" ></text> </g> <g > <title>el0t_64_sync_handler (2 samples, 1.32%)</title><rect x="460.3" y="741" width="15.5" height="15.0" fill="rgb(216,143,17)" rx="2" ry="2" /> <text x="463.26" y="751.5" ></text> </g> <g > <title>el0_svc (1 samples, 0.66%)</title><rect x="1151.2" y="805" width="7.7" height="15.0" fill="rgb(217,122,21)" rx="2" ry="2" /> <text x="1154.18" y="815.5" ></text> </g> <g > <title>ProcQueryPointer (1 samples, 0.66%)</title><rect x="242.9" y="917" width="7.8" height="15.0" fill="rgb(240,147,54)" rx="2" ry="2" /> <text x="245.89" y="927.5" ></text> </g> <g > <title>QWidget::event (2 samples, 1.32%)</title><rect x="654.3" y="661" width="15.6" height="15.0" fill="rgb(214,195,5)" rx="2" ry="2" /> <text x="657.34" y="671.5" ></text> </g> <g > <title>DRM_IOCTL (1 samples, 0.66%)</title><rect x="235.1" y="661" width="7.8" height="15.0" fill="rgb(218,29,21)" rx="2" ry="2" /> <text x="238.13" y="671.5" ></text> </g> <g > <title>__GI_memcpy (4 samples, 2.63%)</title><rect x="250.7" y="725" width="31.0" height="15.0" fill="rgb(227,1,20)" rx="2" ry="2" /> <text x="253.66" y="735.5" >__..</text> </g> <g > <title>_perf_ioctl (17 samples, 11.18%)</title><rect x="747.5" y="773" width="132.0" height="15.0" fill="rgb(230,193,16)" rx="2" ry="2" /> <text x="750.50" y="783.5" >_perf_ioctl</text> </g> <g > <title>g_main_context_prepare (1 samples, 0.66%)</title><rect x="584.5" y="885" width="7.7" height="15.0" fill="rgb(254,81,44)" rx="2" ry="2" /> <text x="587.47" y="895.5" ></text> </g> <g > <title>_raw_spin_unlock_irqrestore (1 samples, 0.66%)</title><rect x="87.6" y="213" width="7.8" height="15.0" fill="rgb(241,142,13)" rx="2" ry="2" /> <text x="90.63" y="223.5" ></text> </g> <g > <title>drm_atomic_get_plane_state (1 samples, 0.66%)</title><rect x="103.2" y="389" width="7.7" height="15.0" fill="rgb(208,157,38)" rx="2" ry="2" /> <text x="106.16" y="399.5" ></text> </g> <g > <title>__GI___libc_write (1 samples, 0.66%)</title><rect x="149.7" y="869" width="7.8" height="15.0" fill="rgb(227,97,38)" rx="2" ry="2" /> <text x="152.74" y="879.5" ></text> </g> <g > <title>[lxqt-panel] (1 samples, 0.66%)</title><rect x="553.4" y="981" width="7.8" height="15.0" fill="rgb(215,68,0)" rx="2" ry="2" /> <text x="556.42" y="991.5" ></text> </g> <g > <title>jbd2_journal_bmap (1 samples, 0.66%)</title><rect x="530.1" y="901" width="7.8" height="15.0" fill="rgb(249,221,40)" rx="2" ry="2" /> <text x="533.13" y="911.5" ></text> </g> <g > <title>mbox_send_message (1 samples, 0.66%)</title><rect x="367.1" y="213" width="7.8" height="15.0" fill="rgb(220,123,39)" rx="2" ry="2" /> <text x="370.11" y="223.5" ></text> </g> <g > <title>QCoreApplicationPrivate::sendThroughObjectEventFilters (1 samples, 0.66%)</title><rect x="700.9" y="645" width="7.8" height="15.0" fill="rgb(209,164,22)" rx="2" ry="2" /> <text x="703.92" y="655.5" ></text> </g> <g > <title>sock_def_readable (1 samples, 0.66%)</title><rect x="700.9" y="117" width="7.8" height="15.0" fill="rgb(241,214,40)" rx="2" ry="2" /> <text x="703.92" y="127.5" ></text> </g> <g > <title>el0t_64_sync (3 samples, 1.97%)</title><rect x="382.6" y="613" width="23.3" height="15.0" fill="rgb(238,204,39)" rx="2" ry="2" /> <text x="385.63" y="623.5" >e..</text> </g> <g > <title>update_blocked_averages (1 samples, 0.66%)</title><rect x="452.5" y="165" width="7.8" height="15.0" fill="rgb(240,155,8)" rx="2" ry="2" /> <text x="455.50" y="175.5" ></text> </g> <g > <title>prepare_to_wait_event (1 samples, 0.66%)</title><rect x="537.9" y="933" width="7.8" height="15.0" fill="rgb(211,215,47)" rx="2" ry="2" /> <text x="540.89" y="943.5" ></text> </g> <g > <title>el0_svc (1 samples, 0.66%)</title><rect x="405.9" y="565" width="7.8" height="15.0" fill="rgb(206,19,33)" rx="2" ry="2" /> <text x="408.92" y="575.5" ></text> </g> <g > <title>do_el0_svc (3 samples, 1.97%)</title><rect x="173.0" y="789" width="23.3" height="15.0" fill="rgb(223,150,30)" rx="2" ry="2" /> <text x="176.03" y="799.5" >d..</text> </g> <g > <title>gic_handle_irq (1 samples, 0.66%)</title><rect x="87.6" y="101" width="7.8" height="15.0" fill="rgb(219,211,13)" rx="2" ry="2" /> <text x="90.63" y="111.5" ></text> </g> <g > <title>invoke_syscall (5 samples, 3.29%)</title><rect x="879.5" y="773" width="38.8" height="15.0" fill="rgb(208,33,15)" rx="2" ry="2" /> <text x="882.47" y="783.5" >inv..</text> </g> <g > <title>__arm64_sys_ftruncate (1 samples, 0.66%)</title><rect x="1151.2" y="741" width="7.7" height="15.0" fill="rgb(243,83,26)" rx="2" ry="2" /> <text x="1154.18" y="751.5" ></text> </g> <g > <title>all (152 samples, 100%)</title><rect x="10.0" y="1013" width="1180.0" height="15.0" fill="rgb(250,228,31)" rx="2" ry="2" /> <text x="13.00" y="1023.5" ></text> </g> <g > <title>drm_mode_cursor_common (6 samples, 3.95%)</title><rect x="64.3" y="453" width="46.6" height="15.0" fill="rgb(210,131,15)" rx="2" ry="2" /> <text x="67.34" y="463.5" >drm_..</text> </g> <g > <title>irq_exit (1 samples, 0.66%)</title><rect x="452.5" y="229" width="7.8" height="15.0" fill="rgb(252,17,53)" rx="2" ry="2" /> <text x="455.50" y="239.5" ></text> </g> <g > <title>_mesa_get_format_block_size_3d (1 samples, 0.66%)</title><rect x="281.7" y="677" width="7.8" height="15.0" fill="rgb(208,165,6)" rx="2" ry="2" /> <text x="284.71" y="687.5" ></text> </g> <g > <title>__arch_copy_from_user (1 samples, 0.66%)</title><rect x="359.3" y="453" width="7.8" height="15.0" fill="rgb(238,221,10)" rx="2" ry="2" /> <text x="362.34" y="463.5" ></text> </g> <g > <title>QApplicationPrivate::notify_helper (9 samples, 5.92%)</title><rect x="600.0" y="773" width="69.9" height="15.0" fill="rgb(228,173,39)" rx="2" ry="2" /> <text x="603.00" y="783.5" >QApplic..</text> </g> <g > <title>__arm64_sys_ioctl (2 samples, 1.32%)</title><rect x="343.8" y="421" width="15.5" height="15.0" fill="rgb(230,89,12)" rx="2" ry="2" /> <text x="346.82" y="431.5" ></text> </g> <g > <title>do_el0_svc (1 samples, 0.66%)</title><rect x="1166.7" y="725" width="7.8" height="15.0" fill="rgb(246,86,6)" rx="2" ry="2" /> <text x="1169.71" y="735.5" ></text> </g> <g > <title>sock_write_iter (1 samples, 0.66%)</title><rect x="305.0" y="453" width="7.8" height="15.0" fill="rgb(207,214,15)" rx="2" ry="2" /> <text x="308.00" y="463.5" ></text> </g> <g > <title>el1h_64_sync (1 samples, 0.66%)</title><rect x="910.5" y="645" width="7.8" height="15.0" fill="rgb(214,89,13)" rx="2" ry="2" /> <text x="913.53" y="655.5" ></text> </g> <g > <title>unmap_mapping_range (1 samples, 0.66%)</title><rect x="1151.2" y="645" width="7.7" height="15.0" fill="rgb(223,111,23)" rx="2" ry="2" /> <text x="1154.18" y="655.5" ></text> </g> <g > <title>sock_sendmsg (1 samples, 0.66%)</title><rect x="700.9" y="149" width="7.8" height="15.0" fill="rgb(235,226,30)" rx="2" ry="2" /> <text x="703.92" y="159.5" ></text> </g> <g > <title>[libQt5Widgets.so.5.15.2] (2 samples, 1.32%)</title><rect x="677.6" y="741" width="15.6" height="15.0" fill="rgb(251,0,52)" rx="2" ry="2" /> <text x="680.63" y="751.5" ></text> </g> <g > <title>QApplicationPrivate::notify_helper (2 samples, 1.32%)</title><rect x="693.2" y="757" width="15.5" height="15.0" fill="rgb(219,85,43)" rx="2" ry="2" /> <text x="696.16" y="767.5" ></text> </g> <g > <title>schedule_hrtimeout_range_clock (1 samples, 0.66%)</title><rect x="227.4" y="709" width="7.7" height="15.0" fill="rgb(216,60,41)" rx="2" ry="2" /> <text x="230.37" y="719.5" ></text> </g> <g > <title>QCommonStyle::hitTestComplexControl (1 samples, 0.66%)</title><rect x="669.9" y="629" width="7.7" height="15.0" fill="rgb(246,97,15)" rx="2" ry="2" /> <text x="672.87" y="639.5" ></text> </g> <g > <title>__setplane_atomic (6 samples, 3.95%)</title><rect x="64.3" y="421" width="46.6" height="15.0" fill="rgb(235,6,6)" rx="2" ry="2" /> <text x="67.34" y="431.5" >__se..</text> </g> <g > <title>syscall_trace_enter (1 samples, 0.66%)</title><rect x="522.4" y="629" width="7.7" height="15.0" fill="rgb(223,40,2)" rx="2" ry="2" /> <text x="525.37" y="639.5" ></text> </g> <g > <title>g_main_context_iterate (17 samples, 11.18%)</title><rect x="600.0" y="869" width="132.0" height="15.0" fill="rgb(234,90,50)" rx="2" ry="2" /> <text x="603.00" y="879.5" >g_main_context_i..</text> </g> <g > <title>usb_hcd_submit_urb (1 samples, 0.66%)</title><rect x="995.9" y="597" width="7.8" height="15.0" fill="rgb(230,155,19)" rx="2" ry="2" /> <text x="998.92" y="607.5" ></text> </g> <g > <title>vfs_writev (2 samples, 1.32%)</title><rect x="444.7" y="501" width="15.6" height="15.0" fill="rgb(214,68,26)" rx="2" ry="2" /> <text x="447.74" y="511.5" ></text> </g> <g > <title>_raw_spin_unlock_irqrestore (1 samples, 0.66%)</title><rect x="452.5" y="357" width="7.8" height="15.0" fill="rgb(213,97,2)" rx="2" ry="2" /> <text x="455.50" y="367.5" ></text> </g> <g > <title>irq_exit (1 samples, 0.66%)</title><rect x="1073.6" y="773" width="7.7" height="15.0" fill="rgb(241,216,30)" rx="2" ry="2" /> <text x="1076.55" y="783.5" ></text> </g> <g > <title>[libgio-2.0.so.0.6800.4] (1 samples, 0.66%)</title><rect x="522.4" y="821" width="7.7" height="15.0" fill="rgb(253,148,48)" rx="2" ry="2" /> <text x="525.37" y="831.5" ></text> </g> <g > <title>unix_stream_recvmsg (1 samples, 0.66%)</title><rect x="475.8" y="693" width="7.8" height="15.0" fill="rgb(250,11,52)" rx="2" ry="2" /> <text x="478.79" y="703.5" ></text> </g> <g > <title>el0_svc (1 samples, 0.66%)</title><rect x="165.3" y="853" width="7.7" height="15.0" fill="rgb(238,43,16)" rx="2" ry="2" /> <text x="168.26" y="863.5" ></text> </g> <g > <title>GetEventMask (1 samples, 0.66%)</title><rect x="429.2" y="741" width="7.8" height="15.0" fill="rgb(224,183,41)" rx="2" ry="2" /> <text x="432.21" y="751.5" ></text> </g> <g > <title>__libc_write (5 samples, 3.29%)</title><rect x="879.5" y="885" width="38.8" height="15.0" fill="rgb(208,136,52)" rx="2" ry="2" /> <text x="882.47" y="895.5" >__l..</text> </g> <g > <title>el0_svc_common.constprop.0 (1 samples, 0.66%)</title><rect x="289.5" y="501" width="7.7" height="15.0" fill="rgb(220,196,35)" rx="2" ry="2" /> <text x="292.47" y="511.5" ></text> </g> <g > <title>xf86MoveCursor (2 samples, 1.32%)</title><rect x="460.3" y="885" width="15.5" height="15.0" fill="rgb(221,183,4)" rx="2" ry="2" /> <text x="463.26" y="895.5" ></text> </g> <g > <title>drmIoctl (3 samples, 1.97%)</title><rect x="359.3" y="597" width="23.3" height="15.0" fill="rgb(238,122,51)" rx="2" ry="2" /> <text x="362.34" y="607.5" >d..</text> </g> <g > <title>el0t_64_sync_handler (1 samples, 0.66%)</title><rect x="235.1" y="597" width="7.8" height="15.0" fill="rgb(219,63,28)" rx="2" ry="2" /> <text x="238.13" y="607.5" ></text> </g> <g > <title>[xscreensaver] (3 samples, 1.97%)</title><rect x="1166.7" y="949" width="23.3" height="15.0" fill="rgb(232,181,2)" rx="2" ry="2" /> <text x="1169.71" y="959.5" >[..</text> </g> <g > <title>__sched_setaffinity (1 samples, 0.66%)</title><rect x="739.7" y="773" width="7.8" height="15.0" fill="rgb(216,166,1)" rx="2" ry="2" /> <text x="742.74" y="783.5" ></text> </g> <g > <title>commit_tail (1 samples, 0.66%)</title><rect x="235.1" y="357" width="7.8" height="15.0" fill="rgb(231,206,41)" rx="2" ry="2" /> <text x="238.13" y="367.5" ></text> </g> <g > <title>[libusbmuxd-2.0.so.6.0.0] (1 samples, 0.66%)</title><rect x="561.2" y="965" width="7.7" height="15.0" fill="rgb(231,139,40)" rx="2" ry="2" /> <text x="564.18" y="975.5" ></text> </g> <g > <title>arch_call_rest_init (13 samples, 8.55%)</title><rect x="941.6" y="949" width="100.9" height="15.0" fill="rgb(223,70,10)" rx="2" ry="2" /> <text x="944.58" y="959.5" >arch_call_re..</text> </g> <g > <title>alloc_skb_with_frags (1 samples, 0.66%)</title><rect x="305.0" y="389" width="7.8" height="15.0" fill="rgb(235,198,4)" rx="2" ry="2" /> <text x="308.00" y="399.5" ></text> </g> <g > <title>commit_tail (5 samples, 3.29%)</title><rect x="64.3" y="357" width="38.9" height="15.0" fill="rgb(223,217,17)" rx="2" ry="2" /> <text x="67.34" y="367.5" >com..</text> </g> <g > <title>_XSERVTransSocketWritev (1 samples, 0.66%)</title><rect x="405.9" y="645" width="7.8" height="15.0" fill="rgb(247,176,14)" rx="2" ry="2" /> <text x="408.92" y="655.5" ></text> </g> <g > <title>do_el0_svc (3 samples, 1.97%)</title><rect x="491.3" y="821" width="23.3" height="15.0" fill="rgb(217,171,7)" rx="2" ry="2" /> <text x="494.32" y="831.5" >d..</text> </g> <g > <title>WriteEventsToClient (1 samples, 0.66%)</title><rect x="405.9" y="677" width="7.8" height="15.0" fill="rgb(230,124,15)" rx="2" ry="2" /> <text x="408.92" y="687.5" ></text> </g> <g > <title>mieqProcessInputEvents (23 samples, 15.13%)</title><rect x="297.2" y="901" width="178.6" height="15.0" fill="rgb(205,2,29)" rx="2" ry="2" /> <text x="300.24" y="911.5" >mieqProcessInputEvents</text> </g> <g > <title>xf86ScreenSetCursor (8 samples, 5.26%)</title><rect x="320.5" y="677" width="62.1" height="15.0" fill="rgb(232,112,14)" rx="2" ry="2" /> <text x="323.53" y="687.5" >xf86Sc..</text> </g> <g > <title>vc4_atomic_commit_tail (1 samples, 0.66%)</title><rect x="235.1" y="341" width="7.8" height="15.0" fill="rgb(213,124,7)" rx="2" ry="2" /> <text x="238.13" y="351.5" ></text> </g> <g > <title>__ep_eventpoll_poll.isra.0 (1 samples, 0.66%)</title><rect x="126.4" y="741" width="7.8" height="15.0" fill="rgb(212,92,26)" rx="2" ry="2" /> <text x="129.45" y="751.5" ></text> </g> <g > <title>__mod_timer (1 samples, 0.66%)</title><rect x="374.9" y="181" width="7.7" height="15.0" fill="rgb(245,121,53)" rx="2" ry="2" /> <text x="377.87" y="191.5" ></text> </g> <g > <title>TryClientEvents (1 samples, 0.66%)</title><rect x="405.9" y="709" width="7.8" height="15.0" fill="rgb(251,67,25)" rx="2" ry="2" /> <text x="408.92" y="719.5" ></text> </g> <g > <title>cmd_record (24 samples, 15.79%)</title><rect x="732.0" y="965" width="186.3" height="15.0" fill="rgb(219,165,16)" rx="2" ry="2" /> <text x="734.97" y="975.5" >cmd_record</text> </g> <g > <title>invoke_syscall (1 samples, 0.66%)</title><rect x="289.5" y="485" width="7.7" height="15.0" fill="rgb(240,74,24)" rx="2" ry="2" /> <text x="292.47" y="495.5" ></text> </g> <g > <title>irq_exit (1 samples, 0.66%)</title><rect x="87.6" y="69" width="7.8" height="15.0" fill="rgb(249,24,13)" rx="2" ry="2" /> <text x="90.63" y="79.5" ></text> </g> <g > <title>__setplane_atomic (2 samples, 1.32%)</title><rect x="343.8" y="325" width="15.5" height="15.0" fill="rgb(215,187,54)" rx="2" ry="2" /> <text x="346.82" y="335.5" ></text> </g> <g > <title>[libgio-2.0.so.0.6800.4] (1 samples, 0.66%)</title><rect x="522.4" y="853" width="7.7" height="15.0" fill="rgb(241,85,11)" rx="2" ry="2" /> <text x="525.37" y="863.5" ></text> </g> <g > <title>do_iter_readv_writev (1 samples, 0.66%)</title><rect x="700.9" y="181" width="7.8" height="15.0" fill="rgb(221,135,6)" rx="2" ry="2" /> <text x="703.92" y="191.5" ></text> </g> <g > <title>__handle_mm_fault (1 samples, 0.66%)</title><rect x="910.5" y="533" width="7.8" height="15.0" fill="rgb(232,92,26)" rx="2" ry="2" /> <text x="913.53" y="543.5" ></text> </g> <g > <title>rest_init (13 samples, 8.55%)</title><rect x="941.6" y="933" width="100.9" height="15.0" fill="rgb(237,1,20)" rx="2" ry="2" /> <text x="944.58" y="943.5" >rest_init</text> </g> <g > <title>poll_freewait (1 samples, 0.66%)</title><rect x="219.6" y="725" width="7.8" height="15.0" fill="rgb(243,206,23)" rx="2" ry="2" /> <text x="222.61" y="735.5" ></text> </g> <g > <title>drmIoctl (1 samples, 0.66%)</title><rect x="289.5" y="597" width="7.7" height="15.0" fill="rgb(252,63,28)" rx="2" ry="2" /> <text x="292.47" y="607.5" ></text> </g> <g > <title>QXcbConnection::processXcbEvents (1 samples, 0.66%)</title><rect x="918.3" y="805" width="7.8" height="15.0" fill="rgb(220,60,24)" rx="2" ry="2" /> <text x="921.29" y="815.5" ></text> </g> <g > <title>QCoreApplication::exec (1 samples, 0.66%)</title><rect x="918.3" y="933" width="7.8" height="15.0" fill="rgb(241,207,14)" rx="2" ry="2" /> <text x="921.29" y="943.5" ></text> </g> <g > <title>QXcbWindow::handleEnterNotifyEvent (1 samples, 0.66%)</title><rect x="918.3" y="773" width="7.8" height="15.0" fill="rgb(223,153,25)" rx="2" ry="2" /> <text x="921.29" y="783.5" ></text> </g> <g > <title>[libgio-2.0.so.0.6800.4] (1 samples, 0.66%)</title><rect x="522.4" y="773" width="7.7" height="15.0" fill="rgb(209,188,17)" rx="2" ry="2" /> <text x="525.37" y="783.5" ></text> </g> <g > <title>save_return_addr (1 samples, 0.66%)</title><rect x="537.9" y="869" width="7.8" height="15.0" fill="rgb(250,87,34)" rx="2" ry="2" /> <text x="540.89" y="879.5" ></text> </g> <g > <title>__do_softirq (1 samples, 0.66%)</title><rect x="219.6" y="533" width="7.8" height="15.0" fill="rgb(245,127,48)" rx="2" ry="2" /> <text x="222.61" y="543.5" ></text> </g> <g > <title>__arm64_sys_recvmsg (1 samples, 0.66%)</title><rect x="475.8" y="757" width="7.8" height="15.0" fill="rgb(211,163,51)" rx="2" ry="2" /> <text x="478.79" y="767.5" ></text> </g> <g > <title>_xcb_out_flush_to (1 samples, 0.66%)</title><rect x="700.9" y="437" width="7.8" height="15.0" fill="rgb(208,122,44)" rx="2" ry="2" /> <text x="703.92" y="447.5" ></text> </g> <g > <title>g_main_dispatch (17 samples, 11.18%)</title><rect x="600.0" y="837" width="132.0" height="15.0" fill="rgb(210,84,48)" rx="2" ry="2" /> <text x="603.00" y="847.5" >g_main_dispatch</text> </g> <g > <title>DRM_IOCTL (6 samples, 3.95%)</title><rect x="64.3" y="661" width="46.6" height="15.0" fill="rgb(254,217,18)" rx="2" ry="2" /> <text x="67.34" y="671.5" >DRM_..</text> </g> <g > <title>DeliverEvent (1 samples, 0.66%)</title><rect x="305.0" y="805" width="7.8" height="15.0" fill="rgb(251,198,8)" rx="2" ry="2" /> <text x="308.00" y="815.5" ></text> </g> <g > <title>el0t_64_sync (1 samples, 0.66%)</title><rect x="739.7" y="901" width="7.8" height="15.0" fill="rgb(223,77,13)" rx="2" ry="2" /> <text x="742.74" y="911.5" ></text> </g> <g > <title>___sys_recvmsg (1 samples, 0.66%)</title><rect x="584.5" y="597" width="7.7" height="15.0" fill="rgb(216,157,15)" rx="2" ry="2" /> <text x="587.47" y="607.5" ></text> </g> <g > <title>do_el0_svc (1 samples, 0.66%)</title><rect x="289.5" y="517" width="7.7" height="15.0" fill="rgb(227,157,46)" rx="2" ry="2" /> <text x="292.47" y="527.5" ></text> </g> <g > <title>schedule (1 samples, 0.66%)</title><rect x="724.2" y="485" width="7.8" height="15.0" fill="rgb(243,194,1)" rx="2" ry="2" /> <text x="727.21" y="495.5" ></text> </g> <g > <title>QApplicationPrivate::notify_helper (1 samples, 0.66%)</title><rect x="646.6" y="597" width="7.7" height="15.0" fill="rgb(241,11,52)" rx="2" ry="2" /> <text x="649.58" y="607.5" ></text> </g> <g > <title>QThread (1 samples, 0.66%)</title><rect x="134.2" y="997" width="7.8" height="15.0" fill="rgb(213,75,50)" rx="2" ry="2" /> <text x="137.21" y="1007.5" ></text> </g> <g > <title>el0_svc (1 samples, 0.66%)</title><rect x="1166.7" y="741" width="7.8" height="15.0" fill="rgb(246,222,39)" rx="2" ry="2" /> <text x="1169.71" y="751.5" ></text> </g> <g > <title>__wake_up_sync_key (1 samples, 0.66%)</title><rect x="700.9" y="101" width="7.8" height="15.0" fill="rgb(221,227,54)" rx="2" ry="2" /> <text x="703.92" y="111.5" ></text> </g> <g > <title>drm_mode_cursor_ioctl (6 samples, 3.95%)</title><rect x="64.3" y="469" width="46.6" height="15.0" fill="rgb(250,82,26)" rx="2" ry="2" /> <text x="67.34" y="479.5" >drm_..</text> </g> <g > <title>el0_svc_common.constprop.0 (1 samples, 0.66%)</title><rect x="1151.2" y="773" width="7.7" height="15.0" fill="rgb(250,129,48)" rx="2" ry="2" /> <text x="1154.18" y="783.5" ></text> </g> <g > <title>el0_svc_common.constprop.0 (5 samples, 3.29%)</title><rect x="879.5" y="789" width="38.8" height="15.0" fill="rgb(225,160,9)" rx="2" ry="2" /> <text x="882.47" y="799.5" >el0..</text> </g> <g > <title>drm_atomic_commit (2 samples, 1.32%)</title><rect x="343.8" y="293" width="15.5" height="15.0" fill="rgb(213,1,30)" rx="2" ry="2" /> <text x="346.82" y="303.5" ></text> </g> <g > <title>_mesa_TexSubImage2D (2 samples, 1.32%)</title><rect x="281.7" y="741" width="15.5" height="15.0" fill="rgb(237,67,29)" rx="2" ry="2" /> <text x="284.71" y="751.5" ></text> </g> <g > <title>__slab_free (1 samples, 0.66%)</title><rect x="460.3" y="453" width="7.7" height="15.0" fill="rgb(240,19,12)" rx="2" ry="2" /> <text x="463.26" y="463.5" ></text> </g> <g > <title>__GI___writev (1 samples, 0.66%)</title><rect x="700.9" y="373" width="7.8" height="15.0" fill="rgb(233,1,27)" rx="2" ry="2" /> <text x="703.92" y="383.5" ></text> </g> <g > <title>__drm_atomic_helper_plane_destroy_state (1 samples, 0.66%)</title><rect x="460.3" y="485" width="7.7" height="15.0" fill="rgb(244,137,38)" rx="2" ry="2" /> <text x="463.26" y="495.5" ></text> </g> <g > <title>sock_sendmsg (3 samples, 1.97%)</title><rect x="382.6" y="421" width="23.3" height="15.0" fill="rgb(252,138,54)" rx="2" ry="2" /> <text x="385.63" y="431.5" >s..</text> </g> <g > <title>wait_for_completion_timeout (1 samples, 0.66%)</title><rect x="374.9" y="213" width="7.7" height="15.0" fill="rgb(212,60,47)" rx="2" ry="2" /> <text x="377.87" y="223.5" ></text> </g> <g > <title>CoreEnterLeaveNonLinear (4 samples, 2.63%)</title><rect x="382.6" y="789" width="31.1" height="15.0" fill="rgb(234,94,13)" rx="2" ry="2" /> <text x="385.63" y="799.5" >Co..</text> </g> <g > <title>[lxqt-session] (1 samples, 0.66%)</title><rect x="134.2" y="933" width="7.8" height="15.0" fill="rgb(226,119,7)" rx="2" ry="2" /> <text x="137.21" y="943.5" ></text> </g> <g > <title>el0_svc (3 samples, 1.97%)</title><rect x="173.0" y="805" width="23.3" height="15.0" fill="rgb(246,42,50)" rx="2" ry="2" /> <text x="176.03" y="815.5" >e..</text> </g> <g > <title>texsubimage_error_check (1 samples, 0.66%)</title><rect x="281.7" y="709" width="7.8" height="15.0" fill="rgb(246,139,5)" rx="2" ry="2" /> <text x="284.71" y="719.5" ></text> </g> <g > <title>do_epoll_pwait.part.0 (3 samples, 1.97%)</title><rect x="491.3" y="757" width="23.3" height="15.0" fill="rgb(243,21,45)" rx="2" ry="2" /> <text x="494.32" y="767.5" >d..</text> </g> <g > <title>invoke_syscall (6 samples, 3.95%)</title><rect x="64.3" y="533" width="46.6" height="15.0" fill="rgb(222,62,23)" rx="2" ry="2" /> <text x="67.34" y="543.5" >invo..</text> </g> <g > <title>rpi_firmware_property_list (1 samples, 0.66%)</title><rect x="351.6" y="181" width="7.7" height="15.0" fill="rgb(235,36,51)" rx="2" ry="2" /> <text x="354.58" y="191.5" ></text> </g> <g > <title>_XEventsQueued (1 samples, 0.66%)</title><rect x="1166.7" y="885" width="7.8" height="15.0" fill="rgb(249,119,20)" rx="2" ry="2" /> <text x="1169.71" y="895.5" ></text> </g> <g > <title>el0_svc (3 samples, 1.97%)</title><rect x="382.6" y="581" width="23.3" height="15.0" fill="rgb(234,222,3)" rx="2" ry="2" /> <text x="385.63" y="591.5" >e..</text> </g> <g > <title>_xcb_in_read_block (1 samples, 0.66%)</title><rect x="211.8" y="853" width="7.8" height="15.0" fill="rgb(207,130,48)" rx="2" ry="2" /> <text x="214.84" y="863.5" ></text> </g> <g > <title>rpi_firmware_property_list (1 samples, 0.66%)</title><rect x="468.0" y="421" width="7.8" height="15.0" fill="rgb(237,183,1)" rx="2" ry="2" /> <text x="471.03" y="431.5" ></text> </g> <g > <title>glamor_put_image_gl (4 samples, 2.63%)</title><rect x="250.7" y="869" width="31.0" height="15.0" fill="rgb(249,228,17)" rx="2" ry="2" /> <text x="253.66" y="879.5" >gl..</text> </g> <g > <title>drm_mode_cursor_ioctl (2 samples, 1.32%)</title><rect x="460.3" y="613" width="15.5" height="15.0" fill="rgb(252,32,6)" rx="2" ry="2" /> <text x="463.26" y="623.5" ></text> </g> <g > <title>drm_mode_cursor_universal (2 samples, 1.32%)</title><rect x="460.3" y="581" width="15.5" height="15.0" fill="rgb(226,50,16)" rx="2" ry="2" /> <text x="463.26" y="591.5" ></text> </g> <g > <title>read_packet (1 samples, 0.66%)</title><rect x="600.0" y="597" width="7.8" height="15.0" fill="rgb(254,9,6)" rx="2" ry="2" /> <text x="603.00" y="607.5" ></text> </g> <g > <title>DRM_IOCTL (2 samples, 1.32%)</title><rect x="460.3" y="805" width="15.5" height="15.0" fill="rgb(226,26,53)" rx="2" ry="2" /> <text x="463.26" y="815.5" ></text> </g> <g > <title>el0_svc (1 samples, 0.66%)</title><rect x="918.3" y="549" width="7.8" height="15.0" fill="rgb(240,95,27)" rx="2" ry="2" /> <text x="921.29" y="559.5" ></text> </g> <g > <title>drm_atomic_helper_commit (1 samples, 0.66%)</title><rect x="468.0" y="517" width="7.8" height="15.0" fill="rgb(236,169,7)" rx="2" ry="2" /> <text x="471.03" y="527.5" ></text> </g> <g > <title>QMutex::lock (1 samples, 0.66%)</title><rect x="142.0" y="917" width="7.7" height="15.0" fill="rgb(252,91,15)" rx="2" ry="2" /> <text x="144.97" y="927.5" ></text> </g> <g > <title>el0_svc_common.constprop.0 (1 samples, 0.66%)</title><rect x="584.5" y="661" width="7.7" height="15.0" fill="rgb(236,146,38)" rx="2" ry="2" /> <text x="587.47" y="671.5" ></text> </g> <g > <title>xi2mask_isset_for_device (1 samples, 0.66%)</title><rect x="429.2" y="693" width="7.8" height="15.0" fill="rgb(221,146,30)" rx="2" ry="2" /> <text x="432.21" y="703.5" ></text> </g> <g > <title>miPointerMoveNoEvent (6 samples, 3.95%)</title><rect x="64.3" y="757" width="46.6" height="15.0" fill="rgb(233,77,16)" rx="2" ry="2" /> <text x="67.34" y="767.5" >miPo..</text> </g> <g > <title>jbd2/mmcblk0p2- (1 samples, 0.66%)</title><rect x="530.1" y="997" width="7.8" height="15.0" fill="rgb(218,191,52)" rx="2" ry="2" /> <text x="533.13" y="1007.5" ></text> </g> <g > <title>el0_svc_common.constprop.0 (17 samples, 11.18%)</title><rect x="747.5" y="837" width="132.0" height="15.0" fill="rgb(251,151,9)" rx="2" ry="2" /> <text x="750.50" y="847.5" >el0_svc_common.c..</text> </g> <g > <title>QGuiApplicationPrivate::processEnterEvent (1 samples, 0.66%)</title><rect x="669.9" y="789" width="7.7" height="15.0" fill="rgb(246,72,44)" rx="2" ry="2" /> <text x="672.87" y="799.5" ></text> </g> <g > <title>hrtimer_start_range_ns (1 samples, 0.66%)</title><rect x="235.1" y="229" width="7.8" height="15.0" fill="rgb(222,163,53)" rx="2" ry="2" /> <text x="238.13" y="239.5" ></text> </g> <g > <title>__arm64_sys_writev (1 samples, 0.66%)</title><rect x="405.9" y="501" width="7.8" height="15.0" fill="rgb(254,184,36)" rx="2" ry="2" /> <text x="408.92" y="511.5" ></text> </g> <g > <title>g_main_dispatch (1 samples, 0.66%)</title><rect x="918.3" y="837" width="7.8" height="15.0" fill="rgb(244,70,42)" rx="2" ry="2" /> <text x="921.29" y="847.5" ></text> </g> <g > <title>el0_svc_common.constprop.0 (1 samples, 0.66%)</title><rect x="235.1" y="549" width="7.8" height="15.0" fill="rgb(208,70,3)" rx="2" ry="2" /> <text x="238.13" y="559.5" ></text> </g> <g > <title>notify_change (1 samples, 0.66%)</title><rect x="1151.2" y="693" width="7.7" height="15.0" fill="rgb(237,32,33)" rx="2" ry="2" /> <text x="1154.18" y="703.5" ></text> </g> <g > <title>_nohz_idle_balance.constprop.0.isra.0 (1 samples, 0.66%)</title><rect x="1081.3" y="901" width="7.8" height="15.0" fill="rgb(232,139,10)" rx="2" ry="2" /> <text x="1084.32" y="911.5" ></text> </g> <g > <title>texture_sub_image (1 samples, 0.66%)</title><rect x="289.5" y="709" width="7.7" height="15.0" fill="rgb(246,9,40)" rx="2" ry="2" /> <text x="292.47" y="719.5" ></text> </g> <g > <title>el0t_64_sync_handler (3 samples, 1.97%)</title><rect x="359.3" y="549" width="23.3" height="15.0" fill="rgb(239,210,7)" rx="2" ry="2" /> <text x="362.34" y="559.5" >e..</text> </g> <g > <title>QXcbConnection::xi2UpdateScrollingDevices (1 samples, 0.66%)</title><rect x="918.3" y="757" width="7.8" height="15.0" fill="rgb(252,57,48)" rx="2" ry="2" /> <text x="921.29" y="767.5" ></text> </g> <g > <title>drmModeMoveCursor (1 samples, 0.66%)</title><rect x="235.1" y="677" width="7.8" height="15.0" fill="rgb(243,52,46)" rx="2" ry="2" /> <text x="238.13" y="687.5" ></text> </g> <g > <title>schedule (2 samples, 1.32%)</title><rect x="499.1" y="693" width="15.5" height="15.0" fill="rgb(253,164,37)" rx="2" ry="2" /> <text x="502.08" y="703.5" ></text> </g> <g > <title>write_vec (1 samples, 0.66%)</title><rect x="918.3" y="629" width="7.8" height="15.0" fill="rgb(231,71,16)" rx="2" ry="2" /> <text x="921.29" y="639.5" ></text> </g> <g > <title>schedule (1 samples, 0.66%)</title><rect x="134.2" y="677" width="7.8" height="15.0" fill="rgb(236,102,28)" rx="2" ry="2" /> <text x="137.21" y="687.5" ></text> </g> <g > <title>el0_svc (17 samples, 11.18%)</title><rect x="747.5" y="869" width="132.0" height="15.0" fill="rgb(218,116,27)" rx="2" ry="2" /> <text x="750.50" y="879.5" >el0_svc</text> </g> <g > <title>xf86libinput_handle_motion (6 samples, 3.95%)</title><rect x="64.3" y="869" width="46.6" height="15.0" fill="rgb(241,142,23)" rx="2" ry="2" /> <text x="67.34" y="879.5" >xf86..</text> </g> <g > <title>el0t_64_sync (1 samples, 0.66%)</title><rect x="405.9" y="597" width="7.8" height="15.0" fill="rgb(223,120,7)" rx="2" ry="2" /> <text x="408.92" y="607.5" ></text> </g> <g > <title>ospoll_wait (3 samples, 1.97%)</title><rect x="491.3" y="901" width="23.3" height="15.0" fill="rgb(244,51,34)" rx="2" ry="2" /> <text x="494.32" y="911.5" >o..</text> </g> <g > <title>schedule_hrtimeout_range (2 samples, 1.32%)</title><rect x="499.1" y="725" width="15.5" height="15.0" fill="rgb(238,96,19)" rx="2" ry="2" /> <text x="502.08" y="735.5" ></text> </g> <g > <title>ext4_da_write_begin (3 samples, 1.97%)</title><rect x="887.2" y="645" width="23.3" height="15.0" fill="rgb(226,6,47)" rx="2" ry="2" /> <text x="890.24" y="655.5" >e..</text> </g> <g > <title>xf86CursorSetCursor (1 samples, 0.66%)</title><rect x="235.1" y="757" width="7.8" height="15.0" fill="rgb(246,134,47)" rx="2" ry="2" /> <text x="238.13" y="767.5" ></text> </g> <g > <title>hrtimer_start_range_ns (1 samples, 0.66%)</title><rect x="367.1" y="181" width="7.8" height="15.0" fill="rgb(226,14,24)" rx="2" ry="2" /> <text x="370.11" y="191.5" ></text> </g> <g > <title>v3d_create_bo_ioctl (1 samples, 0.66%)</title><rect x="289.5" y="421" width="7.7" height="15.0" fill="rgb(238,59,43)" rx="2" ry="2" /> <text x="292.47" y="431.5" ></text> </g> <g > <title>el0_svc_common.constprop.0 (1 samples, 0.66%)</title><rect x="918.3" y="517" width="7.8" height="15.0" fill="rgb(248,86,21)" rx="2" ry="2" /> <text x="921.29" y="527.5" ></text> </g> <g > <title>hrtimer_start_range_ns (1 samples, 0.66%)</title><rect x="87.6" y="229" width="7.8" height="15.0" fill="rgb(238,127,5)" rx="2" ry="2" /> <text x="90.63" y="239.5" ></text> </g> <g > <title>perf_ioctl (17 samples, 11.18%)</title><rect x="747.5" y="789" width="132.0" height="15.0" fill="rgb(222,52,53)" rx="2" ry="2" /> <text x="750.50" y="799.5" >perf_ioctl</text> </g> <g > <title>el0t_64_sync_handler (1 samples, 0.66%)</title><rect x="739.7" y="885" width="7.8" height="15.0" fill="rgb(217,49,12)" rx="2" ry="2" /> <text x="742.74" y="895.5" ></text> </g> <g > <title>__libc_write (5 samples, 3.29%)</title><rect x="879.5" y="869" width="38.8" height="15.0" fill="rgb(241,99,43)" rx="2" ry="2" /> <text x="882.47" y="879.5" >__l..</text> </g> <g > <title>_raw_spin_unlock_irq (1 samples, 0.66%)</title><rect x="926.1" y="741" width="7.7" height="15.0" fill="rgb(238,9,49)" rx="2" ry="2" /> <text x="929.05" y="751.5" ></text> </g> <g > <title>ProcessPointerEvent (18 samples, 11.84%)</title><rect x="320.5" y="869" width="139.8" height="15.0" fill="rgb(236,163,2)" rx="2" ry="2" /> <text x="323.53" y="879.5" >ProcessPointerEvent</text> </g> <g > <title>poll (1 samples, 0.66%)</title><rect x="1174.5" y="773" width="7.7" height="15.0" fill="rgb(236,76,6)" rx="2" ry="2" /> <text x="1177.47" y="783.5" ></text> </g> <g > <title>[xscreensaver] (3 samples, 1.97%)</title><rect x="1166.7" y="981" width="23.3" height="15.0" fill="rgb(208,196,22)" rx="2" ry="2" /> <text x="1169.71" y="991.5" >[..</text> </g> <g > <title>in_lock_functions (1 samples, 0.66%)</title><rect x="87.6" y="197" width="7.8" height="15.0" fill="rgb(223,139,24)" rx="2" ry="2" /> <text x="90.63" y="207.5" ></text> </g> <g > <title>[libQt5Widgets.so.5.15.2] (4 samples, 2.63%)</title><rect x="607.8" y="693" width="31.0" height="15.0" fill="rgb(205,58,17)" rx="2" ry="2" /> <text x="610.76" y="703.5" >[l..</text> </g> <g > <title>el0t_64_sync_handler (1 samples, 0.66%)</title><rect x="700.9" y="325" width="7.8" height="15.0" fill="rgb(221,115,3)" rx="2" ry="2" /> <text x="703.92" y="335.5" ></text> </g> <g > <title>__setplane_atomic (2 samples, 1.32%)</title><rect x="367.1" y="373" width="15.5" height="15.0" fill="rgb(229,156,43)" rx="2" ry="2" /> <text x="370.11" y="383.5" ></text> </g> <g > <title>el0_svc (3 samples, 1.97%)</title><rect x="437.0" y="597" width="23.3" height="15.0" fill="rgb(231,198,36)" rx="2" ry="2" /> <text x="439.97" y="607.5" >e..</text> </g> <g > <title>thread_start (1 samples, 0.66%)</title><rect x="522.4" y="981" width="7.7" height="15.0" fill="rgb(213,45,15)" rx="2" ry="2" /> <text x="525.37" y="991.5" ></text> </g> <g > <title>QStyleHelper::dpi (1 samples, 0.66%)</title><rect x="669.9" y="549" width="7.7" height="15.0" fill="rgb(216,136,30)" rx="2" ry="2" /> <text x="672.87" y="559.5" ></text> </g> <g > <title>el0t_64_sync_handler (1 samples, 0.66%)</title><rect x="134.2" y="821" width="7.8" height="15.0" fill="rgb(232,180,49)" rx="2" ry="2" /> <text x="137.21" y="831.5" ></text> </g> <g > <title>lxqt-powermanag (1 samples, 0.66%)</title><rect x="561.2" y="997" width="7.7" height="15.0" fill="rgb(252,90,18)" rx="2" ry="2" /> <text x="564.18" y="1007.5" ></text> </g> <g > <title>_perf_event_enable (17 samples, 11.18%)</title><rect x="747.5" y="741" width="132.0" height="15.0" fill="rgb(224,56,11)" rx="2" ry="2" /> <text x="750.50" y="751.5" >_perf_event_enable</text> </g> <g > <title>ext4_finish_bio (1 samples, 0.66%)</title><rect x="545.7" y="885" width="7.7" height="15.0" fill="rgb(223,23,21)" rx="2" ry="2" /> <text x="548.66" y="895.5" ></text> </g> <g > <title>__wake_up_sync_key (1 samples, 0.66%)</title><rect x="242.9" y="597" width="7.8" height="15.0" fill="rgb(220,16,53)" rx="2" ry="2" /> <text x="245.89" y="607.5" ></text> </g> <g > <title>__libc_start_main (2 samples, 1.32%)</title><rect x="576.7" y="949" width="15.5" height="15.0" fill="rgb(238,59,26)" rx="2" ry="2" /> <text x="579.71" y="959.5" ></text> </g> <g > <title>QXcbConnection::xi2UpdateScrollingDevices (2 samples, 1.32%)</title><rect x="716.4" y="757" width="15.6" height="15.0" fill="rgb(239,54,26)" rx="2" ry="2" /> <text x="719.45" y="767.5" ></text> </g> <g > <title>el0_svc_common.constprop.0 (3 samples, 1.97%)</title><rect x="173.0" y="773" width="23.3" height="15.0" fill="rgb(243,189,0)" rx="2" ry="2" /> <text x="176.03" y="783.5" >e..</text> </g> <g > <title>drm_atomic_helper_commit_planes (4 samples, 2.63%)</title><rect x="72.1" y="325" width="31.1" height="15.0" fill="rgb(218,199,18)" rx="2" ry="2" /> <text x="75.11" y="335.5" >dr..</text> </g> <g > <title>do_el0_svc (1 samples, 0.66%)</title><rect x="242.9" y="789" width="7.8" height="15.0" fill="rgb(215,2,10)" rx="2" ry="2" /> <text x="245.89" y="799.5" ></text> </g> <g > <title>rpi_firmware_property_list (2 samples, 1.32%)</title><rect x="926.1" y="773" width="15.5" height="15.0" fill="rgb(213,150,12)" rx="2" ry="2" /> <text x="929.05" y="783.5" ></text> </g> <g > <title>__irq_exit_rcu (1 samples, 0.66%)</title><rect x="1073.6" y="757" width="7.7" height="15.0" fill="rgb(244,11,52)" rx="2" ry="2" /> <text x="1076.55" y="767.5" ></text> </g> <g > <title>shmem_alloc_page (1 samples, 0.66%)</title><rect x="289.5" y="309" width="7.7" height="15.0" fill="rgb(225,48,52)" rx="2" ry="2" /> <text x="292.47" y="319.5" ></text> </g> <g > <title>drm_atomic_helper_commit (2 samples, 1.32%)</title><rect x="343.8" y="277" width="15.5" height="15.0" fill="rgb(205,224,5)" rx="2" ry="2" /> <text x="346.82" y="287.5" ></text> </g> <g > <title>rpi_firmware_property_list (2 samples, 1.32%)</title><rect x="367.1" y="229" width="15.5" height="15.0" fill="rgb(228,144,31)" rx="2" ry="2" /> <text x="370.11" y="239.5" ></text> </g> <g > <title>drm_mode_cursor_universal (6 samples, 3.95%)</title><rect x="64.3" y="437" width="46.6" height="15.0" fill="rgb(249,188,9)" rx="2" ry="2" /> <text x="67.34" y="447.5" >drm_..</text> </g> <g > <title>[libQt5Core.so.5.15.2] (1 samples, 0.66%)</title><rect x="134.2" y="949" width="7.8" height="15.0" fill="rgb(226,27,26)" rx="2" ry="2" /> <text x="137.21" y="959.5" ></text> </g> <g > <title>xf86_crtc_set_cursor_position (2 samples, 1.32%)</title><rect x="460.3" y="837" width="15.5" height="15.0" fill="rgb(233,8,39)" rx="2" ry="2" /> <text x="463.26" y="847.5" ></text> </g> <g > <title>__mod_timer (1 samples, 0.66%)</title><rect x="933.8" y="725" width="7.8" height="15.0" fill="rgb(223,212,20)" rx="2" ry="2" /> <text x="936.82" y="735.5" ></text> </g> <g > <title>[libQt5XcbQpa.so.5.15.2] (1 samples, 0.66%)</title><rect x="600.0" y="709" width="7.8" height="15.0" fill="rgb(231,139,5)" rx="2" ry="2" /> <text x="603.00" y="719.5" ></text> </g> <g > <title>_start (1 samples, 0.66%)</title><rect x="918.3" y="981" width="7.8" height="15.0" fill="rgb(207,49,35)" rx="2" ry="2" /> <text x="921.29" y="991.5" ></text> </g> <g > <title>QCoreApplication::notifyInternal2 (9 samples, 5.92%)</title><rect x="600.0" y="789" width="69.9" height="15.0" fill="rgb(234,172,40)" rx="2" ry="2" /> <text x="603.00" y="799.5" >QCoreAp..</text> </g> <g > <title>__GI___poll (1 samples, 0.66%)</title><rect x="522.4" y="725" width="7.7" height="15.0" fill="rgb(242,34,26)" rx="2" ry="2" /> <text x="525.37" y="735.5" ></text> </g> <g > <title>miPointerDisplayCursor (1 samples, 0.66%)</title><rect x="235.1" y="821" width="7.8" height="15.0" fill="rgb(230,143,31)" rx="2" ry="2" /> <text x="238.13" y="831.5" ></text> </g> <g > <title>hiddev_send_event.isra.0 (1 samples, 0.66%)</title><rect x="980.4" y="549" width="7.8" height="15.0" fill="rgb(214,175,6)" rx="2" ry="2" /> <text x="983.39" y="559.5" ></text> </g> <g > <title>QWidgetPrivate::sendPaintEvent (1 samples, 0.66%)</title><rect x="638.8" y="645" width="7.8" height="15.0" fill="rgb(234,93,18)" rx="2" ry="2" /> <text x="641.82" y="655.5" ></text> </g> <g > <title>drm_atomic_helper_commit_planes (2 samples, 1.32%)</title><rect x="367.1" y="277" width="15.5" height="15.0" fill="rgb(245,133,31)" rx="2" ry="2" /> <text x="370.11" y="287.5" ></text> </g> <g > <title>[pcmanfm-qt] (2 samples, 1.32%)</title><rect x="654.3" y="629" width="15.6" height="15.0" fill="rgb(236,70,44)" rx="2" ry="2" /> <text x="657.34" y="639.5" ></text> </g> <g > <title>el0_svc (2 samples, 1.32%)</title><rect x="25.5" y="853" width="15.6" height="15.0" fill="rgb(241,214,39)" rx="2" ry="2" /> <text x="28.53" y="863.5" ></text> </g> <g > <title>DeliverEventToWindowMask (1 samples, 0.66%)</title><rect x="305.0" y="773" width="7.8" height="15.0" fill="rgb(214,148,5)" rx="2" ry="2" /> <text x="308.00" y="783.5" ></text> </g> <g > <title>drm_ioctl_kernel (2 samples, 1.32%)</title><rect x="367.1" y="437" width="15.5" height="15.0" fill="rgb(221,122,20)" rx="2" ry="2" /> <text x="370.11" y="447.5" ></text> </g> <g > <title>__sys_recvmsg (1 samples, 0.66%)</title><rect x="1166.7" y="661" width="7.8" height="15.0" fill="rgb(221,179,16)" rx="2" ry="2" /> <text x="1169.71" y="671.5" ></text> </g> <g > <title>[libinput.so.10.13.0] (2 samples, 1.32%)</title><rect x="41.1" y="853" width="15.5" height="15.0" fill="rgb(249,127,33)" rx="2" ry="2" /> <text x="44.05" y="863.5" ></text> </g> <g > <title>_xcb_conn_wait (8 samples, 5.26%)</title><rect x="173.0" y="901" width="62.1" height="15.0" fill="rgb(234,180,28)" rx="2" ry="2" /> <text x="176.03" y="911.5" >_xcb_c..</text> </g> <g > <title>[libQt5XcbQpa.so.5.15.2] (1 samples, 0.66%)</title><rect x="600.0" y="693" width="7.8" height="15.0" fill="rgb(243,184,0)" rx="2" ry="2" /> <text x="603.00" y="703.5" ></text> </g> <g > <title>do_writev (3 samples, 1.97%)</title><rect x="382.6" y="501" width="23.3" height="15.0" fill="rgb(232,132,20)" rx="2" ry="2" /> <text x="385.63" y="511.5" >d..</text> </g> <g > <title>[libQt5Widgets.so.5.15.2] (1 samples, 0.66%)</title><rect x="669.9" y="661" width="7.7" height="15.0" fill="rgb(250,11,35)" rx="2" ry="2" /> <text x="672.87" y="671.5" ></text> </g> <g > <title>drm_mode_cursor_common (2 samples, 1.32%)</title><rect x="460.3" y="597" width="15.5" height="15.0" fill="rgb(234,127,48)" rx="2" ry="2" /> <text x="463.26" y="607.5" ></text> </g> <g > <title>usb_submit_urb (1 samples, 0.66%)</title><rect x="995.9" y="613" width="7.8" height="15.0" fill="rgb(227,164,4)" rx="2" ry="2" /> <text x="998.92" y="623.5" ></text> </g> <g > <title>vc4_plane_atomic_update (1 samples, 0.66%)</title><rect x="235.1" y="309" width="7.8" height="15.0" fill="rgb(250,140,21)" rx="2" ry="2" /> <text x="238.13" y="319.5" ></text> </g> <g > <title>do_translation_fault (1 samples, 0.66%)</title><rect x="910.5" y="581" width="7.8" height="15.0" fill="rgb(213,189,23)" rx="2" ry="2" /> <text x="913.53" y="591.5" ></text> </g> <g > <title>invoke_syscall (1 samples, 0.66%)</title><rect x="475.8" y="773" width="7.8" height="15.0" fill="rgb(247,1,9)" rx="2" ry="2" /> <text x="478.79" y="783.5" ></text> </g> <g > <title>GetXI2MaskByte (1 samples, 0.66%)</title><rect x="429.2" y="725" width="7.8" height="15.0" fill="rgb(242,130,13)" rx="2" ry="2" /> <text x="432.21" y="735.5" ></text> </g> <g > <title>InputThread (16 samples, 10.53%)</title><rect x="10.0" y="997" width="124.2" height="15.0" fill="rgb(235,106,50)" rx="2" ry="2" /> <text x="13.00" y="1007.5" >InputThread</text> </g> <g > <title>kmem_cache_alloc_trace (1 samples, 0.66%)</title><rect x="103.2" y="341" width="7.7" height="15.0" fill="rgb(225,149,19)" rx="2" ry="2" /> <text x="106.16" y="351.5" ></text> </g> <g > <title>QXcbConnection::xi2UpdateScrollingDevice (2 samples, 1.32%)</title><rect x="716.4" y="741" width="15.6" height="15.0" fill="rgb(230,182,40)" rx="2" ry="2" /> <text x="719.45" y="751.5" ></text> </g> <g > <title>do_iter_write (2 samples, 1.32%)</title><rect x="444.7" y="485" width="15.6" height="15.0" fill="rgb(226,35,3)" rx="2" ry="2" /> <text x="447.74" y="495.5" ></text> </g> <g > <title>worker_thread (1 samples, 0.66%)</title><rect x="545.7" y="949" width="7.7" height="15.0" fill="rgb(253,26,4)" rx="2" ry="2" /> <text x="548.66" y="959.5" ></text> </g> <g > <title>g_main_context_dispatch (1 samples, 0.66%)</title><rect x="522.4" y="885" width="7.7" height="15.0" fill="rgb(218,105,1)" rx="2" ry="2" /> <text x="525.37" y="895.5" ></text> </g> <g > <title>xf86_crtc_set_cursor_position (3 samples, 1.97%)</title><rect x="359.3" y="645" width="23.3" height="15.0" fill="rgb(229,226,52)" rx="2" ry="2" /> <text x="362.34" y="655.5" >x..</text> </g> <g > <title>drm_atomic_get_crtc_state (1 samples, 0.66%)</title><rect x="103.2" y="373" width="7.7" height="15.0" fill="rgb(225,35,2)" rx="2" ry="2" /> <text x="106.16" y="383.5" ></text> </g> <g > <title>[libQt5XcbQpa.so.5.15.2] (1 samples, 0.66%)</title><rect x="700.9" y="517" width="7.8" height="15.0" fill="rgb(223,122,2)" rx="2" ry="2" /> <text x="703.92" y="527.5" ></text> </g> <g > <title>X_ (37 samples, 24.34%)</title><rect x="235.1" y="997" width="287.3" height="15.0" fill="rgb(218,42,13)" rx="2" ry="2" /> <text x="238.13" y="1007.5" >X_</text> </g> <g > <title>xcb_wait_for_reply64 (1 samples, 0.66%)</title><rect x="1174.5" y="821" width="7.7" height="15.0" fill="rgb(234,149,14)" rx="2" ry="2" /> <text x="1177.47" y="831.5" ></text> </g> <g > <title>ext4_end_io_rsv_work (1 samples, 0.66%)</title><rect x="545.7" y="917" width="7.7" height="15.0" fill="rgb(223,51,12)" rx="2" ry="2" /> <text x="548.66" y="927.5" ></text> </g> <g > <title>eventToKeyButtonPointer (1 samples, 0.66%)</title><rect x="312.8" y="789" width="7.7" height="15.0" fill="rgb(215,73,9)" rx="2" ry="2" /> <text x="315.76" y="799.5" ></text> </g> <g > <title>glamor_upload_region (1 samples, 0.66%)</title><rect x="514.6" y="965" width="7.8" height="15.0" fill="rgb(220,80,10)" rx="2" ry="2" /> <text x="517.61" y="975.5" ></text> </g> <g > <title>arch_local_irq_restore (1 samples, 0.66%)</title><rect x="305.0" y="309" width="7.8" height="15.0" fill="rgb(246,174,1)" rx="2" ry="2" /> <text x="308.00" y="319.5" ></text> </g> </g> </svg>
Attachment #10670
общесистемный профайл на "хорошем" ядре
text/html
2022-04-26 19:11:30 MSK
319.14 KB
no flags
Details
<?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="1078" onload="init(evt)" viewBox="0 0 1200 1078" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"> <!-- Flame graph stack visualization. See https://github.com/brendangregg/FlameGraph for latest version, and http://www.brendangregg.com/flamegraphs.html for examples. --> <!-- NOTES: --> <defs> <linearGradient id="background" y1="0" y2="1" x1="0" x2="0" > <stop stop-color="#eeeeee" offset="5%" /> <stop stop-color="#eeeeb0" offset="95%" /> </linearGradient> </defs> <style type="text/css"> text { font-family:Verdana; font-size:12px; fill:rgb(0,0,0); } #search, #ignorecase { opacity:0.1; cursor:pointer; } #search:hover, #search.show, #ignorecase:hover, #ignorecase.show { opacity:1; } #subtitle { text-anchor:middle; font-color:rgb(160,160,160); } #title { text-anchor:middle; font-size:17px} #unzoom { cursor:pointer; } #frames > *:hover { stroke:black; stroke-width:0.5; cursor:pointer; } .hide { display:none; } .parent { opacity:0.5; } </style> <script type="text/ecmascript"> <![CDATA[ "use strict"; var details, searchbtn, unzoombtn, matchedtxt, svg, searching, currentSearchTerm, ignorecase, ignorecaseBtn; function init(evt) { details = document.getElementById("details").firstChild; searchbtn = document.getElementById("search"); ignorecaseBtn = document.getElementById("ignorecase"); unzoombtn = document.getElementById("unzoom"); matchedtxt = document.getElementById("matched"); svg = document.getElementsByTagName("svg")[0]; searching = 0; currentSearchTerm = null; } window.addEventListener("click", function(e) { var target = find_group(e.target); if (target) { if (target.nodeName == "a") { if (e.ctrlKey === false) return; e.preventDefault(); } if (target.classList.contains("parent")) unzoom(); zoom(target); } else if (e.target.id == "unzoom") unzoom(); else if (e.target.id == "search") search_prompt(); else if (e.target.id == "ignorecase") toggle_ignorecase(); }, false) // mouse-over for info // show window.addEventListener("mouseover", function(e) { var target = find_group(e.target); if (target) details.nodeValue = "Function: " + g_to_text(target); }, false) // clear window.addEventListener("mouseout", function(e) { var target = find_group(e.target); if (target) details.nodeValue = ' '; }, false) // ctrl-F for search window.addEventListener("keydown",function (e) { if (e.keyCode === 114 || (e.ctrlKey && e.keyCode === 70)) { e.preventDefault(); search_prompt(); } }, false) // ctrl-I to toggle case-sensitive search window.addEventListener("keydown",function (e) { if (e.ctrlKey && e.keyCode === 73) { e.preventDefault(); toggle_ignorecase(); } }, false) // functions function find_child(node, selector) { var children = node.querySelectorAll(selector); if (children.length) return children[0]; return; } function find_group(node) { var parent = node.parentElement; if (!parent) return; if (parent.id == "frames") return node; return find_group(parent); } function orig_save(e, attr, val) { if (e.attributes["_orig_" + attr] != undefined) return; if (e.attributes[attr] == undefined) return; if (val == undefined) val = e.attributes[attr].value; e.setAttribute("_orig_" + attr, val); } function orig_load(e, attr) { if (e.attributes["_orig_"+attr] == undefined) return; e.attributes[attr].value = e.attributes["_orig_" + attr].value; e.removeAttribute("_orig_"+attr); } function g_to_text(e) { var text = find_child(e, "title").firstChild.nodeValue; return (text) } function g_to_func(e) { var func = g_to_text(e); // if there's any manipulation we want to do to the function // name before it's searched, do it here before returning. return (func); } function update_text(e) { var r = find_child(e, "rect"); var t = find_child(e, "text"); var w = parseFloat(r.attributes.width.value) -3; var txt = find_child(e, "title").textContent.replace(/\([^(]*\)$/,""); t.attributes.x.value = parseFloat(r.attributes.x.value) + 3; // Smaller than this size won't fit anything if (w < 2 * 12 * 0.59) { t.textContent = ""; return; } t.textContent = txt; // Fit in full text width if (/^ *$/.test(txt) || t.getSubStringLength(0, txt.length) < w) return; for (var x = txt.length - 2; x > 0; x--) { if (t.getSubStringLength(0, x + 2) <= w) { t.textContent = txt.substring(0, x) + ".."; return; } } t.textContent = ""; } // zoom function zoom_reset(e) { if (e.attributes != undefined) { orig_load(e, "x"); orig_load(e, "width"); } if (e.childNodes == undefined) return; for (var i = 0, c = e.childNodes; i < c.length; i++) { zoom_reset(c[i]); } } function zoom_child(e, x, ratio) { if (e.attributes != undefined) { if (e.attributes.x != undefined) { orig_save(e, "x"); e.attributes.x.value = (parseFloat(e.attributes.x.value) - x - 10) * ratio + 10; if (e.tagName == "text") e.attributes.x.value = find_child(e.parentNode, "rect[x]").attributes.x.value + 3; } if (e.attributes.width != undefined) { orig_save(e, "width"); e.attributes.width.value = parseFloat(e.attributes.width.value) * ratio; } } if (e.childNodes == undefined) return; for (var i = 0, c = e.childNodes; i < c.length; i++) { zoom_child(c[i], x - 10, ratio); } } function zoom_parent(e) { if (e.attributes) { if (e.attributes.x != undefined) { orig_save(e, "x"); e.attributes.x.value = 10; } if (e.attributes.width != undefined) { orig_save(e, "width"); e.attributes.width.value = parseInt(svg.width.baseVal.value) - (10 * 2); } } if (e.childNodes == undefined) return; for (var i = 0, c = e.childNodes; i < c.length; i++) { zoom_parent(c[i]); } } function zoom(node) { var attr = find_child(node, "rect").attributes; var width = parseFloat(attr.width.value); var xmin = parseFloat(attr.x.value); var xmax = parseFloat(xmin + width); var ymin = parseFloat(attr.y.value); var ratio = (svg.width.baseVal.value - 2 * 10) / width; // XXX: Workaround for JavaScript float issues (fix me) var fudge = 0.0001; unzoombtn.classList.remove("hide"); var el = document.getElementById("frames").children; for (var i = 0; i < el.length; i++) { var e = el[i]; var a = find_child(e, "rect").attributes; var ex = parseFloat(a.x.value); var ew = parseFloat(a.width.value); var upstack; // Is it an ancestor if (0 == 0) { upstack = parseFloat(a.y.value) > ymin; } else { upstack = parseFloat(a.y.value) < ymin; } if (upstack) { // Direct ancestor if (ex <= xmin && (ex+ew+fudge) >= xmax) { e.classList.add("parent"); zoom_parent(e); update_text(e); } // not in current path else e.classList.add("hide"); } // Children maybe else { // no common path if (ex < xmin || ex + fudge >= xmax) { e.classList.add("hide"); } else { zoom_child(e, xmin, ratio); update_text(e); } } } search(); } function unzoom() { unzoombtn.classList.add("hide"); var el = document.getElementById("frames").children; for(var i = 0; i < el.length; i++) { el[i].classList.remove("parent"); el[i].classList.remove("hide"); zoom_reset(el[i]); update_text(el[i]); } search(); } // search function toggle_ignorecase() { ignorecase = !ignorecase; if (ignorecase) { ignorecaseBtn.classList.add("show"); } else { ignorecaseBtn.classList.remove("show"); } reset_search(); search(); } function reset_search() { var el = document.querySelectorAll("#frames rect"); for (var i = 0; i < el.length; i++) { orig_load(el[i], "fill") } } function search_prompt() { if (!searching) { var term = prompt("Enter a search term (regexp " + "allowed, eg: ^ext4_)" + (ignorecase ? ", ignoring case" : "") + "\nPress Ctrl-i to toggle case sensitivity", ""); if (term != null) { currentSearchTerm = term; search(); } } else { reset_search(); searching = 0; currentSearchTerm = null; searchbtn.classList.remove("show"); searchbtn.firstChild.nodeValue = "Search" matchedtxt.classList.add("hide"); matchedtxt.firstChild.nodeValue = "" } } function search(term) { if (currentSearchTerm === null) return; var term = currentSearchTerm; var re = new RegExp(term, ignorecase ? 'i' : ''); var el = document.getElementById("frames").children; var matches = new Object(); var maxwidth = 0; for (var i = 0; i < el.length; i++) { var e = el[i]; var func = g_to_func(e); var rect = find_child(e, "rect"); if (func == null || rect == null) continue; // Save max width. Only works as we have a root frame var w = parseFloat(rect.attributes.width.value); if (w > maxwidth) maxwidth = w; if (func.match(re)) { // highlight var x = parseFloat(rect.attributes.x.value); orig_save(rect, "fill"); rect.attributes.fill.value = "rgb(230,0,230)"; // remember matches if (matches[x] == undefined) { matches[x] = w; } else { if (w > matches[x]) { // overwrite with parent matches[x] = w; } } searching = 1; } } if (!searching) return; searchbtn.classList.add("show"); searchbtn.firstChild.nodeValue = "Reset Search"; // calculate percent matched, excluding vertical overlap var count = 0; var lastx = -1; var lastw = 0; var keys = Array(); for (k in matches) { if (matches.hasOwnProperty(k)) keys.push(k); } // sort the matched frames by their x location // ascending, then width descending keys.sort(function(a, b){ return a - b; }); // Step through frames saving only the biggest bottom-up frames // thanks to the sort order. This relies on the tree property // where children are always smaller than their parents. var fudge = 0.0001; // JavaScript floating point for (var k in keys) { var x = parseFloat(keys[k]); var w = matches[keys[k]]; if (x >= lastx + lastw - fudge) { count += w; lastx = x; lastw = w; } } // display matched percent matchedtxt.classList.remove("hide"); var pct = 100 * count / maxwidth; if (pct != 100) pct = pct.toFixed(1) matchedtxt.firstChild.nodeValue = "Matched: " + pct + "%"; } ]]> </script> <rect x="0.0" y="0" width="1200.0" height="1078.0" fill="url(#background)" /> <text id="title" x="600.00" y="24" >Normal cursor (5.15.25-rpi)</text> <text id="details" x="10.00" y="1061" > </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="1061" > </text> <g id="frames"> <g > <title>hiddev_hid_event (1 samples, 0.34%)</title><rect x="1020.9" y="581" width="4.0" height="15.0" fill="rgb(212,215,21)" rx="2" ry="2" /> <text x="1023.85" y="591.5" ></text> </g> <g > <title>QCoreApplication::exec (4 samples, 1.37%)</title><rect x="936.3" y="949" width="16.1" height="15.0" fill="rgb(244,63,49)" rx="2" ry="2" /> <text x="939.28" y="959.5" ></text> </g> <g > <title>tasklet_action_common.constprop.0 (9 samples, 3.07%)</title><rect x="1020.9" y="693" width="36.2" height="15.0" fill="rgb(206,74,23)" rx="2" ry="2" /> <text x="1023.85" y="703.5" >tas..</text> </g> <g > <title>__irq_exit_rcu (1 samples, 0.34%)</title><rect x="428.8" y="821" width="4.1" height="15.0" fill="rgb(242,170,40)" rx="2" ry="2" /> <text x="431.84" y="831.5" ></text> </g> <g > <title>_xcb_conn_wait (12 samples, 4.10%)</title><rect x="106.7" y="917" width="48.3" height="15.0" fill="rgb(222,102,5)" rx="2" ry="2" /> <text x="109.66" y="927.5" >_xcb..</text> </g> <g > <title>QWidgetPrivate::drawWidget (1 samples, 0.34%)</title><rect x="634.2" y="597" width="4.1" height="15.0" fill="rgb(217,139,17)" rx="2" ry="2" /> <text x="637.23" y="607.5" ></text> </g> <g > <title>hb_ot_shape_internal (1 samples, 0.34%)</title><rect x="606.0" y="373" width="4.1" height="15.0" fill="rgb(220,24,53)" rx="2" ry="2" /> <text x="609.04" y="383.5" ></text> </g> <g > <title>tick_nohz_idle_exit (2 samples, 0.68%)</title><rect x="1069.2" y="901" width="8.0" height="15.0" fill="rgb(234,134,35)" rx="2" ry="2" /> <text x="1072.18" y="911.5" ></text> </g> <g > <title>vc4_plane_atomic_update (6 samples, 2.05%)</title><rect x="46.2" y="325" width="24.2" height="15.0" fill="rgb(252,32,35)" rx="2" ry="2" /> <text x="49.25" y="335.5" >v..</text> </g> <g > <title>invoke_syscall (1 samples, 0.34%)</title><rect x="287.9" y="549" width="4.0" height="15.0" fill="rgb(224,7,20)" rx="2" ry="2" /> <text x="290.88" y="559.5" ></text> </g> <g > <title>xf86MoveCursor (6 samples, 2.05%)</title><rect x="46.2" y="757" width="24.2" height="15.0" fill="rgb(235,61,25)" rx="2" ry="2" /> <text x="49.25" y="767.5" >x..</text> </g> <g > <title>__libc_start_main (1 samples, 0.34%)</title><rect x="1153.8" y="981" width="4.0" height="15.0" fill="rgb(205,42,43)" rx="2" ry="2" /> <text x="1156.75" y="991.5" ></text> </g> <g > <title>_set_opp (1 samples, 0.34%)</title><rect x="960.4" y="885" width="4.1" height="15.0" fill="rgb(246,149,31)" rx="2" ry="2" /> <text x="963.44" y="895.5" ></text> </g> <g > <title>el0_svc_common.constprop.0 (4 samples, 1.37%)</title><rect x="10.0" y="837" width="16.1" height="15.0" fill="rgb(235,140,50)" rx="2" ry="2" /> <text x="13.00" y="847.5" ></text> </g> <g > <title>[libQt5XcbQpa.so.5.15.2] (3 samples, 1.02%)</title><rect x="767.1" y="597" width="12.1" height="15.0" fill="rgb(224,15,30)" rx="2" ry="2" /> <text x="770.13" y="607.5" ></text> </g> <g > <title>do_iter_write (2 samples, 0.68%)</title><rect x="300.0" y="501" width="8.0" height="15.0" fill="rgb(229,37,28)" rx="2" ry="2" /> <text x="302.97" y="511.5" ></text> </g> <g > <title>preempt_count_sub (1 samples, 0.34%)</title><rect x="811.4" y="661" width="4.1" height="15.0" fill="rgb(206,189,53)" rx="2" ry="2" /> <text x="814.43" y="671.5" ></text> </g> <g > <title>el0_svc_common.constprop.0 (2 samples, 0.68%)</title><rect x="275.8" y="469" width="8.1" height="15.0" fill="rgb(252,190,12)" rx="2" ry="2" /> <text x="278.80" y="479.5" ></text> </g> <g > <title>el0t_64_sync (6 samples, 2.05%)</title><rect x="74.4" y="917" width="24.2" height="15.0" fill="rgb(219,29,46)" rx="2" ry="2" /> <text x="77.44" y="927.5" >e..</text> </g> <g > <title>call_on_irq_stack (1 samples, 0.34%)</title><rect x="940.3" y="565" width="4.0" height="15.0" fill="rgb(221,152,1)" rx="2" ry="2" /> <text x="943.31" y="575.5" ></text> </g> <g > <title>[libQt5Widgets.so.5.15.2] (3 samples, 1.02%)</title><rect x="936.3" y="725" width="12.1" height="15.0" fill="rgb(242,191,49)" rx="2" ry="2" /> <text x="939.28" y="735.5" ></text> </g> <g > <title>mutex_lock_io (1 samples, 0.34%)</title><rect x="404.7" y="757" width="4.0" height="15.0" fill="rgb(212,204,18)" rx="2" ry="2" /> <text x="407.68" y="767.5" ></text> </g> <g > <title>_raw_spin_unlock_irqrestore (1 samples, 0.34%)</title><rect x="416.8" y="773" width="4.0" height="15.0" fill="rgb(213,172,35)" rx="2" ry="2" /> <text x="419.76" y="783.5" ></text> </g> <g > <title>invoke_syscall (6 samples, 2.05%)</title><rect x="46.2" y="549" width="24.2" height="15.0" fill="rgb(207,211,17)" rx="2" ry="2" /> <text x="49.25" y="559.5" >i..</text> </g> <g > <title>__arm64_sys_ioctl (1 samples, 0.34%)</title><rect x="243.6" y="549" width="4.0" height="15.0" fill="rgb(213,213,16)" rx="2" ry="2" /> <text x="246.58" y="559.5" ></text> </g> <g > <title>QXcbConnection::xi2HandleEvent (1 samples, 0.34%)</title><rect x="436.9" y="997" width="4.0" height="15.0" fill="rgb(222,181,51)" rx="2" ry="2" /> <text x="439.89" y="1007.5" ></text> </g> <g > <title>sock_def_readable (1 samples, 0.34%)</title><rect x="283.9" y="437" width="4.0" height="15.0" fill="rgb(244,84,12)" rx="2" ry="2" /> <text x="286.86" y="447.5" ></text> </g> <g > <title>QWidgetPrivate::sendPaintEvent (27 samples, 9.22%)</title><rect x="638.3" y="725" width="108.7" height="15.0" fill="rgb(252,17,45)" rx="2" ry="2" /> <text x="641.26" y="735.5" >QWidgetPrivat..</text> </g> <g > <title>poll_for_next_event (2 samples, 0.68%)</title><rect x="1173.9" y="821" width="8.0" height="15.0" fill="rgb(232,56,37)" rx="2" ry="2" /> <text x="1176.89" y="831.5" ></text> </g> <g > <title>v3d_bo_wait (1 samples, 0.34%)</title><rect x="243.6" y="725" width="4.0" height="15.0" fill="rgb(228,69,14)" rx="2" ry="2" /> <text x="246.58" y="735.5" ></text> </g> <g > <title>unix_stream_read_generic (3 samples, 1.02%)</title><rect x="324.1" y="693" width="12.1" height="15.0" fill="rgb(239,185,24)" rx="2" ry="2" /> <text x="327.13" y="703.5" ></text> </g> <g > <title>commit_tail (1 samples, 0.34%)</title><rect x="163.0" y="325" width="4.1" height="15.0" fill="rgb(214,22,38)" rx="2" ry="2" /> <text x="166.04" y="335.5" ></text> </g> <g > <title>__arm64_sys_read (1 samples, 0.34%)</title><rect x="473.1" y="709" width="4.1" height="15.0" fill="rgb(206,4,48)" rx="2" ry="2" /> <text x="476.14" y="719.5" ></text> </g> <g > <title>QWidgetPrivate::drawWidget (1 samples, 0.34%)</title><rect x="634.2" y="629" width="4.1" height="15.0" fill="rgb(237,229,28)" rx="2" ry="2" /> <text x="637.23" y="639.5" ></text> </g> <g > <title>drm_ioctl (1 samples, 0.34%)</title><rect x="344.3" y="453" width="4.0" height="15.0" fill="rgb(219,151,32)" rx="2" ry="2" /> <text x="347.27" y="463.5" ></text> </g> <g > <title>u_default_texture_subdata (1 samples, 0.34%)</title><rect x="251.6" y="693" width="4.1" height="15.0" fill="rgb(209,190,24)" rx="2" ry="2" /> <text x="254.64" y="703.5" ></text> </g> <g > <title>st_flush_bitmap_cache (1 samples, 0.34%)</title><rect x="340.2" y="853" width="4.1" height="15.0" fill="rgb(207,131,51)" rx="2" ry="2" /> <text x="343.24" y="863.5" ></text> </g> <g > <title>blk_mq_run_work_fn (1 samples, 0.34%)</title><rect x="420.8" y="933" width="4.0" height="15.0" fill="rgb(233,152,5)" rx="2" ry="2" /> <text x="423.78" y="943.5" ></text> </g> <g > <title>__GI___libc_write (1 samples, 0.34%)</title><rect x="791.3" y="709" width="4.0" height="15.0" fill="rgb(228,34,52)" rx="2" ry="2" /> <text x="794.30" y="719.5" ></text> </g> <g > <title>sock_alloc_send_pskb (1 samples, 0.34%)</title><rect x="747.0" y="325" width="4.0" height="15.0" fill="rgb(225,82,28)" rx="2" ry="2" /> <text x="750.00" y="335.5" ></text> </g> <g > <title>commit_tail (6 samples, 2.05%)</title><rect x="46.2" y="373" width="24.2" height="15.0" fill="rgb(250,48,51)" rx="2" ry="2" /> <text x="49.25" y="383.5" >c..</text> </g> <g > <title>hidraw_report_event (1 samples, 0.34%)</title><rect x="1028.9" y="597" width="4.0" height="15.0" fill="rgb(218,84,1)" rx="2" ry="2" /> <text x="1031.91" y="607.5" ></text> </g> <g > <title>CoreEnterLeaveNonLinear (2 samples, 0.68%)</title><rect x="287.9" y="805" width="8.0" height="15.0" fill="rgb(249,26,33)" rx="2" ry="2" /> <text x="290.88" y="815.5" ></text> </g> <g > <title>_xcb_out_flush_to (1 samples, 0.34%)</title><rect x="944.3" y="613" width="4.1" height="15.0" fill="rgb(245,113,16)" rx="2" ry="2" /> <text x="947.33" y="623.5" ></text> </g> <g > <title>hb_shape_plan_execute (1 samples, 0.34%)</title><rect x="606.0" y="405" width="4.1" height="15.0" fill="rgb(248,12,28)" rx="2" ry="2" /> <text x="609.04" y="415.5" ></text> </g> <g > <title>alloc_skb_with_frags (1 samples, 0.34%)</title><rect x="747.0" y="309" width="4.0" height="15.0" fill="rgb(230,217,36)" rx="2" ry="2" /> <text x="750.00" y="319.5" ></text> </g> <g > <title>do_el0_svc (1 samples, 0.34%)</title><rect x="344.3" y="517" width="4.0" height="15.0" fill="rgb(212,105,6)" rx="2" ry="2" /> <text x="347.27" y="527.5" ></text> </g> <g > <title>g_source_destroy_internal (1 samples, 0.34%)</title><rect x="412.7" y="869" width="4.1" height="15.0" fill="rgb(231,86,16)" rx="2" ry="2" /> <text x="415.73" y="879.5" ></text> </g> <g > <title>el1_interrupt (1 samples, 0.34%)</title><rect x="1121.5" y="869" width="4.1" height="15.0" fill="rgb(214,226,51)" rx="2" ry="2" /> <text x="1124.54" y="879.5" ></text> </g> <g > <title>WriteEventsToClient (1 samples, 0.34%)</title><rect x="287.9" y="709" width="4.0" height="15.0" fill="rgb(245,81,1)" rx="2" ry="2" /> <text x="290.88" y="719.5" ></text> </g> <g > <title>unwind_frame (1 samples, 0.34%)</title><rect x="110.7" y="597" width="4.0" height="15.0" fill="rgb(208,118,44)" rx="2" ry="2" /> <text x="113.68" y="607.5" ></text> </g> <g > <title>vfs_writev (1 samples, 0.34%)</title><rect x="747.0" y="421" width="4.0" height="15.0" fill="rgb(239,189,41)" rx="2" ry="2" /> <text x="750.00" y="431.5" ></text> </g> <g > <title>poll_for_event (3 samples, 1.02%)</title><rect x="1161.8" y="853" width="12.1" height="15.0" fill="rgb(253,32,48)" rx="2" ry="2" /> <text x="1164.81" y="863.5" ></text> </g> <g > <title>QWidgetPrivate::paintSiblingsRecursive (1 samples, 0.34%)</title><rect x="634.2" y="677" width="4.1" height="15.0" fill="rgb(245,61,28)" rx="2" ry="2" /> <text x="637.23" y="687.5" ></text> </g> <g > <title>QWidgetPrivate::drawWidget (6 samples, 2.05%)</title><rect x="606.0" y="709" width="24.2" height="15.0" fill="rgb(228,124,44)" rx="2" ry="2" /> <text x="609.04" y="719.5" >Q..</text> </g> <g > <title>do_el0_svc (1 samples, 0.34%)</title><rect x="944.3" y="469" width="4.1" height="15.0" fill="rgb(225,129,31)" rx="2" ry="2" /> <text x="947.33" y="479.5" ></text> </g> <g > <title>el0t_64_sync (4 samples, 1.37%)</title><rect x="10.0" y="901" width="16.1" height="15.0" fill="rgb(218,135,10)" rx="2" ry="2" /> <text x="13.00" y="911.5" ></text> </g> <g > <title>QWidgetPrivate::drawWidget (1 samples, 0.34%)</title><rect x="634.2" y="693" width="4.1" height="15.0" fill="rgb(217,23,33)" rx="2" ry="2" /> <text x="637.23" y="703.5" ></text> </g> <g > <title>ospoll_wait (18 samples, 6.14%)</title><rect x="26.1" y="949" width="72.5" height="15.0" fill="rgb(237,174,52)" rx="2" ry="2" /> <text x="29.11" y="959.5" >ospoll_w..</text> </g> <g > <title>glamor_put_image (15 samples, 5.12%)</title><rect x="187.2" y="901" width="60.4" height="15.0" fill="rgb(206,119,19)" rx="2" ry="2" /> <text x="190.20" y="911.5" >glamor..</text> </g> <g > <title>__GI___writev (1 samples, 0.34%)</title><rect x="747.0" y="565" width="4.0" height="15.0" fill="rgb(232,62,22)" rx="2" ry="2" /> <text x="750.00" y="575.5" ></text> </g> <g > <title>xf86_set_cursor_position (6 samples, 2.05%)</title><rect x="46.2" y="725" width="24.2" height="15.0" fill="rgb(245,81,22)" rx="2" ry="2" /> <text x="49.25" y="735.5" >x..</text> </g> <g > <title>el0t_64_sync_handler (1 samples, 0.34%)</title><rect x="126.8" y="821" width="4.0" height="15.0" fill="rgb(221,73,47)" rx="2" ry="2" /> <text x="129.79" y="831.5" ></text> </g> <g > <title>el0t_64_sync (1 samples, 0.34%)</title><rect x="952.4" y="917" width="4.0" height="15.0" fill="rgb(250,208,3)" rx="2" ry="2" /> <text x="955.39" y="927.5" ></text> </g> <g > <title>do_el0_svc (4 samples, 1.37%)</title><rect x="10.0" y="853" width="16.1" height="15.0" fill="rgb(223,107,21)" rx="2" ry="2" /> <text x="13.00" y="863.5" ></text> </g> <g > <title>invoke_syscall (1 samples, 0.34%)</title><rect x="944.3" y="437" width="4.1" height="15.0" fill="rgb(223,226,1)" rx="2" ry="2" /> <text x="947.33" y="447.5" ></text> </g> <g > <title>unix_write_space (1 samples, 0.34%)</title><rect x="114.7" y="597" width="4.0" height="15.0" fill="rgb(230,41,25)" rx="2" ry="2" /> <text x="117.71" y="607.5" ></text> </g> <g > <title>__arm64_sys_writev (2 samples, 0.68%)</title><rect x="300.0" y="549" width="8.0" height="15.0" fill="rgb(243,102,7)" rx="2" ry="2" /> <text x="302.97" y="559.5" ></text> </g> <g > <title>el0_svc_common.constprop.0 (3 samples, 1.02%)</title><rect x="34.2" y="725" width="12.0" height="15.0" fill="rgb(246,127,10)" rx="2" ry="2" /> <text x="37.16" y="735.5" ></text> </g> <g > <title>__GI_epoll_pwait (6 samples, 2.05%)</title><rect x="74.4" y="933" width="24.2" height="15.0" fill="rgb(223,195,36)" rx="2" ry="2" /> <text x="77.44" y="943.5" >_..</text> </g> <g > <title>QRasterPaintEngine::alphaPenBlt (1 samples, 0.34%)</title><rect x="432.9" y="901" width="4.0" height="15.0" fill="rgb(234,0,23)" rx="2" ry="2" /> <text x="435.87" y="911.5" ></text> </g> <g > <title>objects_lookup (1 samples, 0.34%)</title><rect x="243.6" y="469" width="4.0" height="15.0" fill="rgb(225,93,25)" rx="2" ry="2" /> <text x="246.58" y="479.5" ></text> </g> <g > <title>invoke_syscall (2 samples, 0.68%)</title><rect x="839.6" y="837" width="8.1" height="15.0" fill="rgb(225,27,51)" rx="2" ry="2" /> <text x="842.62" y="847.5" ></text> </g> <g > <title>g_thread_proxy (1 samples, 0.34%)</title><rect x="412.7" y="965" width="4.1" height="15.0" fill="rgb(233,225,36)" rx="2" ry="2" /> <text x="415.73" y="975.5" ></text> </g> <g > <title>el0t_64_sync_handler (5 samples, 1.71%)</title><rect x="134.8" y="853" width="20.2" height="15.0" fill="rgb(218,32,1)" rx="2" ry="2" /> <text x="137.85" y="863.5" ></text> </g> <g > <title>invoke_syscall (1 samples, 0.34%)</title><rect x="167.1" y="549" width="4.0" height="15.0" fill="rgb(238,215,41)" rx="2" ry="2" /> <text x="170.06" y="559.5" ></text> </g> <g > <title>unwind_frame (1 samples, 0.34%)</title><rect x="30.1" y="661" width="4.1" height="15.0" fill="rgb(213,79,42)" rx="2" ry="2" /> <text x="33.14" y="671.5" ></text> </g> <g > <title>vfs_writev (1 samples, 0.34%)</title><rect x="267.7" y="517" width="4.1" height="15.0" fill="rgb(217,191,28)" rx="2" ry="2" /> <text x="270.75" y="527.5" ></text> </g> <g > <title>kthread (1 samples, 0.34%)</title><rect x="420.8" y="981" width="4.0" height="15.0" fill="rgb(247,46,11)" rx="2" ry="2" /> <text x="423.78" y="991.5" ></text> </g> <g > <title>hb_shape_plan_execute (1 samples, 0.34%)</title><rect x="606.0" y="421" width="4.1" height="15.0" fill="rgb(244,100,53)" rx="2" ry="2" /> <text x="609.04" y="431.5" ></text> </g> <g > <title>QWidgetPrivate::drawWidget (67 samples, 22.87%)</title><rect x="477.2" y="741" width="269.8" height="15.0" fill="rgb(238,27,19)" rx="2" ry="2" /> <text x="480.17" y="751.5" >QWidgetPrivate::drawWidget</text> </g> <g > <title>finish_task_switch.isra.0 (1 samples, 0.34%)</title><rect x="142.9" y="677" width="4.0" height="15.0" fill="rgb(212,172,45)" rx="2" ry="2" /> <text x="145.90" y="687.5" ></text> </g> <g > <title>el0t_64_sync (2 samples, 0.68%)</title><rect x="1173.9" y="773" width="8.0" height="15.0" fill="rgb(250,180,39)" rx="2" ry="2" /> <text x="1176.89" y="783.5" ></text> </g> <g > <title>hb_ot_layout_substitute_start (1 samples, 0.34%)</title><rect x="638.3" y="389" width="4.0" height="15.0" fill="rgb(246,166,17)" rx="2" ry="2" /> <text x="641.26" y="399.5" ></text> </g> <g > <title>el0_svc (5 samples, 1.71%)</title><rect x="316.1" y="837" width="20.1" height="15.0" fill="rgb(219,38,42)" rx="2" ry="2" /> <text x="319.08" y="847.5" ></text> </g> <g > <title>_raw_spin_unlock_irqrestore (1 samples, 0.34%)</title><rect x="775.2" y="149" width="4.0" height="15.0" fill="rgb(234,173,10)" rx="2" ry="2" /> <text x="778.19" y="159.5" ></text> </g> <g > <title>QApplicationPrivate::notify_helper (1 samples, 0.34%)</title><rect x="755.1" y="773" width="4.0" height="15.0" fill="rgb(216,114,50)" rx="2" ry="2" /> <text x="758.05" y="783.5" ></text> </g> <g > <title>handle_domain_irq (1 samples, 0.34%)</title><rect x="428.8" y="853" width="4.1" height="15.0" fill="rgb(214,101,51)" rx="2" ry="2" /> <text x="431.84" y="863.5" ></text> </g> <g > <title>hb_atomic_ptr_t<OT::GPOS_accelerator_t*>::get (1 samples, 0.34%)</title><rect x="606.0" y="229" width="4.1" height="15.0" fill="rgb(229,115,38)" rx="2" ry="2" /> <text x="609.04" y="239.5" ></text> </g> <g > <title>compPaintChildrenToWindow (1 samples, 0.34%)</title><rect x="344.3" y="869" width="4.0" height="15.0" fill="rgb(222,44,1)" rx="2" ry="2" /> <text x="347.27" y="879.5" ></text> </g> <g > <title>_raw_spin_unlock_irqrestore (1 samples, 0.34%)</title><rect x="839.6" y="741" width="4.1" height="15.0" fill="rgb(235,110,47)" rx="2" ry="2" /> <text x="842.62" y="751.5" ></text> </g> <g > <title>walk_stackframe (1 samples, 0.34%)</title><rect x="811.4" y="629" width="4.1" height="15.0" fill="rgb(235,158,24)" rx="2" ry="2" /> <text x="814.43" y="639.5" ></text> </g> <g > <title>vfs_writev (1 samples, 0.34%)</title><rect x="775.2" y="293" width="4.0" height="15.0" fill="rgb(218,28,16)" rx="2" ry="2" /> <text x="778.19" y="303.5" ></text> </g> <g > <title>xcb_send_request (1 samples, 0.34%)</title><rect x="767.1" y="549" width="4.1" height="15.0" fill="rgb(235,48,45)" rx="2" ry="2" /> <text x="770.13" y="559.5" ></text> </g> <g > <title>__set_cpus_allowed_ptr_locked (1 samples, 0.34%)</title><rect x="839.6" y="773" width="4.1" height="15.0" fill="rgb(208,212,30)" rx="2" ry="2" /> <text x="842.62" y="783.5" ></text> </g> <g > <title>__el0_irq_handler_common (1 samples, 0.34%)</title><rect x="940.3" y="613" width="4.0" height="15.0" fill="rgb(242,225,32)" rx="2" ry="2" /> <text x="943.31" y="623.5" ></text> </g> <g > <title>[xscreensaver] (6 samples, 2.05%)</title><rect x="1161.8" y="949" width="24.2" height="15.0" fill="rgb(254,51,29)" rx="2" ry="2" /> <text x="1164.81" y="959.5" >[..</text> </g> <g > <title>__libc_start_main (4 samples, 1.37%)</title><rect x="936.3" y="981" width="16.1" height="15.0" fill="rgb(209,161,6)" rx="2" ry="2" /> <text x="939.28" y="991.5" ></text> </g> <g > <title>_raw_write_unlock_irq (1 samples, 0.34%)</title><rect x="86.5" y="725" width="4.0" height="15.0" fill="rgb(222,188,23)" rx="2" ry="2" /> <text x="89.52" y="735.5" ></text> </g> <g > <title>__wake_up_common_lock (1 samples, 0.34%)</title><rect x="1173.9" y="485" width="4.0" height="15.0" fill="rgb(218,63,53)" rx="2" ry="2" /> <text x="1176.89" y="495.5" ></text> </g> <g > <title>thread_start (14 samples, 4.78%)</title><rect x="98.6" y="997" width="56.4" height="15.0" fill="rgb(247,213,33)" rx="2" ry="2" /> <text x="101.60" y="1007.5" >threa..</text> </g> <g > <title>FlushClient (1 samples, 0.34%)</title><rect x="287.9" y="693" width="4.0" height="15.0" fill="rgb(250,12,47)" rx="2" ry="2" /> <text x="290.88" y="703.5" ></text> </g> <g > <title>QWidgetPrivate::paintSiblingsRecursive (1 samples, 0.34%)</title><rect x="634.2" y="645" width="4.1" height="15.0" fill="rgb(235,181,42)" rx="2" ry="2" /> <text x="637.23" y="655.5" ></text> </g> <g > <title>invoke_syscall (2 samples, 0.68%)</title><rect x="352.3" y="805" width="8.1" height="15.0" fill="rgb(238,202,53)" rx="2" ry="2" /> <text x="355.32" y="815.5" ></text> </g> <g > <title>[libQt5XcbQpa.so.5.15.2] (1 samples, 0.34%)</title><rect x="747.0" y="693" width="4.0" height="15.0" fill="rgb(215,134,2)" rx="2" ry="2" /> <text x="750.00" y="703.5" ></text> </g> <g > <title>[perf] (4 samples, 1.37%)</title><rect x="916.1" y="933" width="16.2" height="15.0" fill="rgb(242,92,22)" rx="2" ry="2" /> <text x="919.14" y="943.5" ></text> </g> <g > <title>__wake_up_sync_key (1 samples, 0.34%)</title><rect x="287.9" y="389" width="4.0" height="15.0" fill="rgb(248,185,3)" rx="2" ry="2" /> <text x="290.88" y="399.5" ></text> </g> <g > <title>__libc_start_main (2 samples, 0.68%)</title><rect x="1145.7" y="981" width="8.1" height="15.0" fill="rgb(220,144,45)" rx="2" ry="2" /> <text x="1148.70" y="991.5" ></text> </g> <g > <title>__usb_hcd_giveback_urb (8 samples, 2.73%)</title><rect x="1020.9" y="661" width="32.2" height="15.0" fill="rgb(240,141,23)" rx="2" ry="2" /> <text x="1023.85" y="671.5" >__..</text> </g> <g > <title>QRasterPaintEngine::drawImage (1 samples, 0.34%)</title><rect x="634.2" y="469" width="4.1" height="15.0" fill="rgb(253,136,17)" rx="2" ry="2" /> <text x="637.23" y="479.5" ></text> </g> <g > <title>consume_skb (1 samples, 0.34%)</title><rect x="114.7" y="661" width="4.0" height="15.0" fill="rgb(253,221,25)" rx="2" ry="2" /> <text x="117.71" y="671.5" ></text> </g> <g > <title>drm_atomic_helper_commit (1 samples, 0.34%)</title><rect x="163.0" y="341" width="4.1" height="15.0" fill="rgb(227,114,25)" rx="2" ry="2" /> <text x="166.04" y="351.5" ></text> </g> <g > <title>g_main_context_iterate (4 samples, 1.37%)</title><rect x="936.3" y="885" width="16.1" height="15.0" fill="rgb(227,70,3)" rx="2" ry="2" /> <text x="939.28" y="895.5" ></text> </g> <g > <title>__pthread_cond_wait_common (1 samples, 0.34%)</title><rect x="771.2" y="501" width="4.0" height="15.0" fill="rgb(227,103,21)" rx="2" ry="2" /> <text x="774.16" y="511.5" ></text> </g> <g > <title>do_epoll_wait (7 samples, 2.39%)</title><rect x="376.5" y="757" width="28.2" height="15.0" fill="rgb(243,223,15)" rx="2" ry="2" /> <text x="379.48" y="767.5" >d..</text> </g> <g > <title>ksys_write (4 samples, 1.37%)</title><rect x="916.1" y="757" width="16.2" height="15.0" fill="rgb(221,219,12)" rx="2" ry="2" /> <text x="919.14" y="767.5" ></text> </g> <g > <title>compPaintWindowToParent (1 samples, 0.34%)</title><rect x="344.3" y="853" width="4.0" height="15.0" fill="rgb(239,148,39)" rx="2" ry="2" /> <text x="347.27" y="863.5" ></text> </g> <g > <title>QWindowSystemInterfacePrivate::handleWindowSystemEvent<QWindowSystemInterface::AsynchronousDelivery> (1 samples, 0.34%)</title><rect x="791.3" y="741" width="4.0" height="15.0" fill="rgb(218,13,8)" rx="2" ry="2" /> <text x="794.30" y="751.5" ></text> </g> <g > <title>DeliverEventToWindowMask (1 samples, 0.34%)</title><rect x="283.9" y="805" width="4.0" height="15.0" fill="rgb(232,150,30)" rx="2" ry="2" /> <text x="286.86" y="815.5" ></text> </g> <g > <title>drm_atomic_commit (6 samples, 2.05%)</title><rect x="46.2" y="405" width="24.2" height="15.0" fill="rgb(218,143,40)" rx="2" ry="2" /> <text x="49.25" y="415.5" >d..</text> </g> <g > <title>ValidateGC (1 samples, 0.34%)</title><rect x="183.2" y="917" width="4.0" height="15.0" fill="rgb(227,126,2)" rx="2" ry="2" /> <text x="186.17" y="927.5" ></text> </g> <g > <title>finish_task_switch.isra.0 (1 samples, 0.34%)</title><rect x="771.2" y="277" width="4.0" height="15.0" fill="rgb(232,144,37)" rx="2" ry="2" /> <text x="774.16" y="287.5" ></text> </g> <g > <title>__GI___writev (1 samples, 0.34%)</title><rect x="775.2" y="437" width="4.0" height="15.0" fill="rgb(215,202,6)" rx="2" ry="2" /> <text x="778.19" y="447.5" ></text> </g> <g > <title>usb_submit_urb (5 samples, 1.71%)</title><rect x="1032.9" y="629" width="20.2" height="15.0" fill="rgb(235,123,54)" rx="2" ry="2" /> <text x="1035.94" y="639.5" ></text> </g> <g > <title>input_event (1 samples, 0.34%)</title><rect x="1024.9" y="581" width="4.0" height="15.0" fill="rgb(242,88,54)" rx="2" ry="2" /> <text x="1027.88" y="591.5" ></text> </g> <g > <title>ReadRequestFromClient (7 samples, 2.39%)</title><rect x="308.0" y="933" width="28.2" height="15.0" fill="rgb(246,196,5)" rx="2" ry="2" /> <text x="311.02" y="943.5" >R..</text> </g> <g > <title>CheckMotion (6 samples, 2.05%)</title><rect x="275.8" y="853" width="24.2" height="15.0" fill="rgb(239,107,30)" rx="2" ry="2" /> <text x="278.80" y="863.5" >C..</text> </g> <g > <title>skb_release_head_state (1 samples, 0.34%)</title><rect x="332.2" y="661" width="4.0" height="15.0" fill="rgb(212,95,5)" rx="2" ry="2" /> <text x="335.18" y="671.5" ></text> </g> <g > <title>QApplicationPrivate::notify_helper (1 samples, 0.34%)</title><rect x="440.9" y="773" width="4.0" height="15.0" fill="rgb(249,122,10)" rx="2" ry="2" /> <text x="443.92" y="783.5" ></text> </g> <g > <title>_xcb_in_read (5 samples, 1.71%)</title><rect x="110.7" y="901" width="20.1" height="15.0" fill="rgb(244,87,10)" rx="2" ry="2" /> <text x="113.68" y="911.5" ></text> </g> <g > <title>invoke_syscall (1 samples, 0.34%)</title><rect x="175.1" y="773" width="4.0" height="15.0" fill="rgb(239,151,45)" rx="2" ry="2" /> <text x="178.12" y="783.5" ></text> </g> <g > <title>[systemd-journald] (2 samples, 0.68%)</title><rect x="1145.7" y="965" width="8.1" height="15.0" fill="rgb(231,186,50)" rx="2" ry="2" /> <text x="1148.70" y="975.5" ></text> </g> <g > <title>el0_svc (3 samples, 1.02%)</title><rect x="155.0" y="549" width="12.1" height="15.0" fill="rgb(236,209,28)" rx="2" ry="2" /> <text x="157.98" y="559.5" ></text> </g> <g > <title>[pcmanfm-qt] (90 samples, 30.72%)</title><rect x="473.1" y="965" width="362.5" height="15.0" fill="rgb(250,179,45)" rx="2" ry="2" /> <text x="476.14" y="975.5" >[pcmanfm-qt]</text> </g> <g > <title>handle_mm_fault (1 samples, 0.34%)</title><rect x="952.4" y="837" width="4.0" height="15.0" fill="rgb(227,58,44)" rx="2" ry="2" /> <text x="955.39" y="847.5" ></text> </g> <g > <title>syscall_trace_exit (1 samples, 0.34%)</title><rect x="948.4" y="757" width="4.0" height="15.0" fill="rgb(212,222,7)" rx="2" ry="2" /> <text x="951.36" y="767.5" ></text> </g> <g > <title>el1_interrupt (14 samples, 4.78%)</title><rect x="1000.7" y="837" width="56.4" height="15.0" fill="rgb(237,67,13)" rx="2" ry="2" /> <text x="1003.72" y="847.5" >el1_i..</text> </g> <g > <title>__wake_up_common_lock (1 samples, 0.34%)</title><rect x="287.9" y="373" width="4.0" height="15.0" fill="rgb(216,210,52)" rx="2" ry="2" /> <text x="290.88" y="383.5" ></text> </g> <g > <title>ksys_write (1 samples, 0.34%)</title><rect x="102.6" y="757" width="4.1" height="15.0" fill="rgb(248,159,39)" rx="2" ry="2" /> <text x="105.63" y="767.5" ></text> </g> <g > <title>el0t_64_sync (1 samples, 0.34%)</title><rect x="175.1" y="853" width="4.0" height="15.0" fill="rgb(206,157,36)" rx="2" ry="2" /> <text x="178.12" y="863.5" ></text> </g> <g > <title>__GI___writev (2 samples, 0.68%)</title><rect x="300.0" y="677" width="8.0" height="15.0" fill="rgb(216,10,41)" rx="2" ry="2" /> <text x="302.97" y="687.5" ></text> </g> <g > <title>st_TexSubImage (14 samples, 4.78%)</title><rect x="191.2" y="789" width="56.4" height="15.0" fill="rgb(242,212,39)" rx="2" ry="2" /> <text x="194.23" y="799.5" >st_Te..</text> </g> <g > <title>ext4_da_write_begin (1 samples, 0.34%)</title><rect x="920.2" y="661" width="4.0" height="15.0" fill="rgb(216,228,31)" rx="2" ry="2" /> <text x="923.17" y="671.5" ></text> </g> <g > <title>__ioctl (2 samples, 0.68%)</title><rect x="275.8" y="549" width="8.1" height="15.0" fill="rgb(209,173,23)" rx="2" ry="2" /> <text x="278.80" y="559.5" ></text> </g> <g > <title>__GI___writev (1 samples, 0.34%)</title><rect x="747.0" y="581" width="4.0" height="15.0" fill="rgb(228,11,32)" rx="2" ry="2" /> <text x="750.00" y="591.5" ></text> </g> <g > <title>__libc_recvmsg (2 samples, 0.68%)</title><rect x="1173.9" y="789" width="8.0" height="15.0" fill="rgb(210,6,22)" rx="2" ry="2" /> <text x="1176.89" y="799.5" ></text> </g> <g > <title>el0_svc_common.constprop.0 (9 samples, 3.07%)</title><rect x="376.5" y="821" width="36.2" height="15.0" fill="rgb(213,192,45)" rx="2" ry="2" /> <text x="379.48" y="831.5" >el0..</text> </g> <g > <title>el0t_64_sync_handler (1 samples, 0.34%)</title><rect x="175.1" y="837" width="4.0" height="15.0" fill="rgb(218,199,51)" rx="2" ry="2" /> <text x="178.12" y="847.5" ></text> </g> <g > <title>schedule_hrtimeout_range (1 samples, 0.34%)</title><rect x="142.9" y="741" width="4.0" height="15.0" fill="rgb(237,172,19)" rx="2" ry="2" /> <text x="145.90" y="751.5" ></text> </g> <g > <title>start_thread (1 samples, 0.34%)</title><rect x="412.7" y="981" width="4.1" height="15.0" fill="rgb(235,161,22)" rx="2" ry="2" /> <text x="415.73" y="991.5" ></text> </g> <g > <title>el0t_64_sync (1 samples, 0.34%)</title><rect x="835.6" y="917" width="4.0" height="15.0" fill="rgb(237,152,40)" rx="2" ry="2" /> <text x="838.60" y="927.5" ></text> </g> <g > <title>vc4_plane_set_blank.isra.0 (1 samples, 0.34%)</title><rect x="275.8" y="213" width="4.0" height="15.0" fill="rgb(251,217,19)" rx="2" ry="2" /> <text x="278.80" y="223.5" ></text> </g> <g > <title>_hb_ot_shape (1 samples, 0.34%)</title><rect x="642.3" y="485" width="4.0" height="15.0" fill="rgb(235,199,47)" rx="2" ry="2" /> <text x="645.29" y="495.5" ></text> </g> <g > <title>damagePutImage (15 samples, 5.12%)</title><rect x="187.2" y="917" width="60.4" height="15.0" fill="rgb(238,0,6)" rx="2" ry="2" /> <text x="190.20" y="927.5" >damage..</text> </g> <g > <title>unix_stream_sendmsg (1 samples, 0.34%)</title><rect x="291.9" y="405" width="4.0" height="15.0" fill="rgb(208,202,42)" rx="2" ry="2" /> <text x="294.91" y="415.5" ></text> </g> <g > <title>v3d_draw_vbo (1 samples, 0.34%)</title><rect x="255.7" y="549" width="4.0" height="15.0" fill="rgb(214,102,19)" rx="2" ry="2" /> <text x="258.67" y="559.5" ></text> </g> <g > <title>__schedule (1 samples, 0.34%)</title><rect x="420.8" y="773" width="4.0" height="15.0" fill="rgb(238,93,20)" rx="2" ry="2" /> <text x="423.78" y="783.5" ></text> </g> <g > <title>DeliverToWindowOwner (1 samples, 0.34%)</title><rect x="291.9" y="741" width="4.0" height="15.0" fill="rgb(207,92,18)" rx="2" ry="2" /> <text x="294.91" y="751.5" ></text> </g> <g > <title>el0_svc (1 samples, 0.34%)</title><rect x="287.9" y="597" width="4.0" height="15.0" fill="rgb(245,144,38)" rx="2" ry="2" /> <text x="290.88" y="607.5" ></text> </g> <g > <title>[libQt5Widgets.so.5.15.2] (1 samples, 0.34%)</title><rect x="440.9" y="741" width="4.0" height="15.0" fill="rgb(231,3,42)" rx="2" ry="2" /> <text x="443.92" y="751.5" ></text> </g> <g > <title>el0_svc_common.constprop.0 (1 samples, 0.34%)</title><rect x="835.6" y="853" width="4.0" height="15.0" fill="rgb(213,176,48)" rx="2" ry="2" /> <text x="838.60" y="863.5" ></text> </g> <g > <title>DeviceEnterLeaveEvents (1 samples, 0.34%)</title><rect x="295.9" y="821" width="4.1" height="15.0" fill="rgb(231,8,1)" rx="2" ry="2" /> <text x="298.94" y="831.5" ></text> </g> <g > <title>security_file_permission (1 samples, 0.34%)</title><rect x="38.2" y="629" width="4.0" height="15.0" fill="rgb(239,39,37)" rx="2" ry="2" /> <text x="41.19" y="639.5" ></text> </g> <g > <title>do_iter_write (1 samples, 0.34%)</title><rect x="283.9" y="517" width="4.0" height="15.0" fill="rgb(211,60,2)" rx="2" ry="2" /> <text x="286.86" y="527.5" ></text> </g> <g > <title>QSortFilterProxyModel::data (1 samples, 0.34%)</title><rect x="658.4" y="565" width="4.0" height="15.0" fill="rgb(243,62,45)" rx="2" ry="2" /> <text x="661.40" y="575.5" ></text> </g> <g > <title>el0t_64_sync (2 samples, 0.68%)</title><rect x="352.3" y="885" width="8.1" height="15.0" fill="rgb(213,82,35)" rx="2" ry="2" /> <text x="355.32" y="895.5" ></text> </g> <g > <title>QIcon::paint (1 samples, 0.34%)</title><rect x="650.3" y="597" width="4.1" height="15.0" fill="rgb(205,188,26)" rx="2" ry="2" /> <text x="653.34" y="607.5" ></text> </g> <g > <title>QPen::style@plt (1 samples, 0.34%)</title><rect x="465.1" y="965" width="4.0" height="15.0" fill="rgb(251,123,16)" rx="2" ry="2" /> <text x="468.09" y="975.5" ></text> </g> <g > <title>_start (3 samples, 1.02%)</title><rect x="444.9" y="981" width="12.1" height="15.0" fill="rgb(213,229,48)" rx="2" ry="2" /> <text x="447.95" y="991.5" ></text> </g> <g > <title>main (3 samples, 1.02%)</title><rect x="444.9" y="949" width="12.1" height="15.0" fill="rgb(227,173,6)" rx="2" ry="2" /> <text x="447.95" y="959.5" ></text> </g> <g > <title>__GI_epoll_pwait (2 samples, 0.68%)</title><rect x="26.1" y="885" width="8.1" height="15.0" fill="rgb(252,155,38)" rx="2" ry="2" /> <text x="29.11" y="895.5" ></text> </g> <g > <title>QRasterPaintEngine::drawTextItem (1 samples, 0.34%)</title><rect x="432.9" y="933" width="4.0" height="15.0" fill="rgb(226,163,51)" rx="2" ry="2" /> <text x="435.87" y="943.5" ></text> </g> <g > <title>kthread (1 samples, 0.34%)</title><rect x="1157.8" y="981" width="4.0" height="15.0" fill="rgb(251,40,37)" rx="2" ry="2" /> <text x="1160.78" y="991.5" ></text> </g> <g > <title>_mesa_hash_table_next_entry (1 samples, 0.34%)</title><rect x="336.2" y="805" width="4.0" height="15.0" fill="rgb(207,17,20)" rx="2" ry="2" /> <text x="339.21" y="815.5" ></text> </g> <g > <title>usb_giveback_urb_bh (9 samples, 3.07%)</title><rect x="1020.9" y="677" width="36.2" height="15.0" fill="rgb(238,94,46)" rx="2" ry="2" /> <text x="1023.85" y="687.5" >usb..</text> </g> <g > <title>miPointerUpdateSprite (4 samples, 1.37%)</title><rect x="155.0" y="805" width="16.1" height="15.0" fill="rgb(241,12,35)" rx="2" ry="2" /> <text x="157.98" y="815.5" ></text> </g> <g > <title>miPointerUpdateSprite (2 samples, 0.68%)</title><rect x="275.8" y="741" width="8.1" height="15.0" fill="rgb(236,43,36)" rx="2" ry="2" /> <text x="278.80" y="751.5" ></text> </g> <g > <title>el0t_64_sync_handler (17 samples, 5.80%)</title><rect x="847.7" y="901" width="68.4" height="15.0" fill="rgb(209,103,39)" rx="2" ry="2" /> <text x="850.68" y="911.5" >el0t_64..</text> </g> <g > <title>security_file_permission (1 samples, 0.34%)</title><rect x="42.2" y="645" width="4.0" height="15.0" fill="rgb(231,165,35)" rx="2" ry="2" /> <text x="45.22" y="655.5" ></text> </g> <g > <title>_raw_write_unlock_irq (1 samples, 0.34%)</title><rect x="82.5" y="757" width="4.0" height="15.0" fill="rgb(223,160,42)" rx="2" ry="2" /> <text x="85.49" y="767.5" ></text> </g> <g > <title>v3d_flush (1 samples, 0.34%)</title><rect x="336.2" y="821" width="4.0" height="15.0" fill="rgb(226,160,15)" rx="2" ry="2" /> <text x="339.21" y="831.5" ></text> </g> <g > <title>vfs_write (1 samples, 0.34%)</title><rect x="102.6" y="741" width="4.1" height="15.0" fill="rgb(225,124,26)" rx="2" ry="2" /> <text x="105.63" y="751.5" ></text> </g> <g > <title>u_vbuf_draw_vbo (1 samples, 0.34%)</title><rect x="344.3" y="725" width="4.0" height="15.0" fill="rgb(216,101,47)" rx="2" ry="2" /> <text x="347.27" y="735.5" ></text> </g> <g > <title>preempt_count_sub (1 samples, 0.34%)</title><rect x="384.5" y="709" width="4.1" height="15.0" fill="rgb(207,39,46)" rx="2" ry="2" /> <text x="387.54" y="719.5" ></text> </g> <g > <title>el0t_64_sync_handler (2 samples, 0.68%)</title><rect x="275.8" y="517" width="8.1" height="15.0" fill="rgb(205,226,27)" rx="2" ry="2" /> <text x="278.80" y="527.5" ></text> </g> <g > <title>dma_resv_wait_timeout (1 samples, 0.34%)</title><rect x="344.3" y="389" width="4.0" height="15.0" fill="rgb(209,19,43)" rx="2" ry="2" /> <text x="347.27" y="399.5" ></text> </g> <g > <title>unix_stream_read_generic (2 samples, 0.68%)</title><rect x="110.7" y="677" width="8.0" height="15.0" fill="rgb(238,41,17)" rx="2" ry="2" /> <text x="113.68" y="687.5" ></text> </g> <g > <title>__wake_up_sync_key (1 samples, 0.34%)</title><rect x="332.2" y="597" width="4.0" height="15.0" fill="rgb(252,32,42)" rx="2" ry="2" /> <text x="335.18" y="607.5" ></text> </g> <g > <title>systemd-userwor (1 samples, 0.34%)</title><rect x="1153.8" y="1013" width="4.0" height="15.0" fill="rgb(213,73,42)" rx="2" ry="2" /> <text x="1156.75" y="1023.5" ></text> </g> <g > <title>el0_svc (2 samples, 0.68%)</title><rect x="449.0" y="837" width="8.0" height="15.0" fill="rgb(213,72,0)" rx="2" ry="2" /> <text x="451.98" y="847.5" ></text> </g> <g > <title>__arm64_sys_writev (1 samples, 0.34%)</title><rect x="295.9" y="533" width="4.1" height="15.0" fill="rgb(206,41,3)" rx="2" ry="2" /> <text x="298.94" y="543.5" ></text> </g> <g > <title>TryClientEvents (1 samples, 0.34%)</title><rect x="291.9" y="709" width="4.0" height="15.0" fill="rgb(246,147,7)" rx="2" ry="2" /> <text x="294.91" y="719.5" ></text> </g> <g > <title>QFrame::event (6 samples, 2.05%)</title><rect x="606.0" y="597" width="24.2" height="15.0" fill="rgb(245,65,46)" rx="2" ry="2" /> <text x="609.04" y="607.5" >Q..</text> </g> <g > <title>schedule (2 samples, 0.68%)</title><rect x="815.5" y="677" width="8.0" height="15.0" fill="rgb(249,79,29)" rx="2" ry="2" /> <text x="818.46" y="687.5" ></text> </g> <g > <title>__schedule (1 samples, 0.34%)</title><rect x="771.2" y="293" width="4.0" height="15.0" fill="rgb(210,133,16)" rx="2" ry="2" /> <text x="774.16" y="303.5" ></text> </g> <g > <title>import_iovec (1 samples, 0.34%)</title><rect x="944.3" y="373" width="4.1" height="15.0" fill="rgb(238,68,13)" rx="2" ry="2" /> <text x="947.33" y="383.5" ></text> </g> <g > <title>el0t_64_sync (1 samples, 0.34%)</title><rect x="473.1" y="789" width="4.1" height="15.0" fill="rgb(240,149,21)" rx="2" ry="2" /> <text x="476.14" y="799.5" ></text> </g> <g > <title>el0t_64_sync_handler (1 samples, 0.34%)</title><rect x="1153.8" y="917" width="4.0" height="15.0" fill="rgb(222,39,12)" rx="2" ry="2" /> <text x="1156.75" y="927.5" ></text> </g> <g > <title>QXcbConnection::handleXcbEvent (2 samples, 0.68%)</title><rect x="787.3" y="805" width="8.0" height="15.0" fill="rgb(229,157,39)" rx="2" ry="2" /> <text x="790.27" y="815.5" ></text> </g> <g > <title>xf86ScreenSetCursor (4 samples, 1.37%)</title><rect x="155.0" y="741" width="16.1" height="15.0" fill="rgb(237,53,49)" rx="2" ry="2" /> <text x="157.98" y="751.5" ></text> </g> <g > <title>miPointerMoveNoEvent (6 samples, 2.05%)</title><rect x="46.2" y="773" width="24.2" height="15.0" fill="rgb(213,129,47)" rx="2" ry="2" /> <text x="49.25" y="783.5" >m..</text> </g> <g > <title>hb_ot_position (1 samples, 0.34%)</title><rect x="606.0" y="357" width="4.1" height="15.0" fill="rgb(238,130,9)" rx="2" ry="2" /> <text x="609.04" y="367.5" ></text> </g> <g > <title>rpi_firmware_property_list (1 samples, 0.34%)</title><rect x="960.4" y="773" width="4.1" height="15.0" fill="rgb(253,23,27)" rx="2" ry="2" /> <text x="963.44" y="783.5" ></text> </g> <g > <title>__libc_recvmsg (3 samples, 1.02%)</title><rect x="110.7" y="885" width="12.1" height="15.0" fill="rgb(234,110,7)" rx="2" ry="2" /> <text x="113.68" y="895.5" ></text> </g> <g > <title>el0_interrupt (1 samples, 0.34%)</title><rect x="940.3" y="597" width="4.0" height="15.0" fill="rgb(251,112,51)" rx="2" ry="2" /> <text x="943.31" y="607.5" ></text> </g> <g > <title>__sys_recvmsg (1 samples, 0.34%)</title><rect x="1169.9" y="677" width="4.0" height="15.0" fill="rgb(218,114,22)" rx="2" ry="2" /> <text x="1172.86" y="687.5" ></text> </g> <g > <title>__GI___poll (1 samples, 0.34%)</title><rect x="1181.9" y="901" width="4.1" height="15.0" fill="rgb(248,72,9)" rx="2" ry="2" /> <text x="1184.95" y="911.5" ></text> </g> <g > <title>vfs_write (3 samples, 1.02%)</title><rect x="14.0" y="773" width="12.1" height="15.0" fill="rgb(227,90,25)" rx="2" ry="2" /> <text x="17.03" y="783.5" ></text> </g> <g > <title>QCoreApplicationPrivate::sendThroughObjectEventFilters (6 samples, 2.05%)</title><rect x="606.0" y="613" width="24.2" height="15.0" fill="rgb(215,127,19)" rx="2" ry="2" /> <text x="609.04" y="623.5" >Q..</text> </g> <g > <title>g_main_context_iterate (3 samples, 1.02%)</title><rect x="444.9" y="917" width="12.1" height="15.0" fill="rgb(230,221,16)" rx="2" ry="2" /> <text x="447.95" y="927.5" ></text> </g> <g > <title>__GI___poll (2 samples, 0.68%)</title><rect x="449.0" y="885" width="8.0" height="15.0" fill="rgb(243,60,15)" rx="2" ry="2" /> <text x="451.98" y="895.5" ></text> </g> <g > <title>in_lock_functions (1 samples, 0.34%)</title><rect x="295.9" y="389" width="4.1" height="15.0" fill="rgb(249,65,13)" rx="2" ry="2" /> <text x="298.94" y="399.5" ></text> </g> <g > <title>compScreenUpdate (1 samples, 0.34%)</title><rect x="344.3" y="901" width="4.0" height="15.0" fill="rgb(251,137,42)" rx="2" ry="2" /> <text x="347.27" y="911.5" ></text> </g> <g > <title>__libc_write (4 samples, 1.37%)</title><rect x="10.0" y="933" width="16.1" height="15.0" fill="rgb(214,28,41)" rx="2" ry="2" /> <text x="13.00" y="943.5" ></text> </g> <g > <title>msBlockHandler (2 samples, 0.68%)</title><rect x="336.2" y="901" width="8.1" height="15.0" fill="rgb(222,132,40)" rx="2" ry="2" /> <text x="339.21" y="911.5" ></text> </g> <g > <title>vfs_writev (1 samples, 0.34%)</title><rect x="291.9" y="485" width="4.0" height="15.0" fill="rgb(217,111,1)" rx="2" ry="2" /> <text x="294.91" y="495.5" ></text> </g> <g > <title>__run_timers.part.0 (1 samples, 0.34%)</title><rect x="940.3" y="453" width="4.0" height="15.0" fill="rgb(224,128,12)" rx="2" ry="2" /> <text x="943.31" y="463.5" ></text> </g> <g > <title>__arm64_sys_ioctl (1 samples, 0.34%)</title><rect x="255.7" y="341" width="4.0" height="15.0" fill="rgb(252,0,35)" rx="2" ry="2" /> <text x="258.67" y="351.5" ></text> </g> <g > <title>v3d_bo_create_finish (1 samples, 0.34%)</title><rect x="255.7" y="277" width="4.0" height="15.0" fill="rgb(211,56,2)" rx="2" ry="2" /> <text x="258.67" y="287.5" ></text> </g> <g > <title>QCoreApplication::notifyInternal2 (7 samples, 2.39%)</title><rect x="759.1" y="789" width="28.2" height="15.0" fill="rgb(229,118,27)" rx="2" ry="2" /> <text x="762.08" y="799.5" >Q..</text> </g> <g > <title>_XEventsQueued (1 samples, 0.34%)</title><rect x="1186.0" y="997" width="4.0" height="15.0" fill="rgb(242,15,31)" rx="2" ry="2" /> <text x="1188.97" y="1007.5" ></text> </g> <g > <title>read (1 samples, 0.34%)</title><rect x="473.1" y="837" width="4.1" height="15.0" fill="rgb(228,194,41)" rx="2" ry="2" /> <text x="476.14" y="847.5" ></text> </g> <g > <title>el0t_64_sync_handler (1 samples, 0.34%)</title><rect x="473.1" y="773" width="4.1" height="15.0" fill="rgb(242,206,44)" rx="2" ry="2" /> <text x="476.14" y="783.5" ></text> </g> <g > <title>__wake_up_common_lock (1 samples, 0.34%)</title><rect x="304.0" y="389" width="4.0" height="15.0" fill="rgb(235,59,2)" rx="2" ry="2" /> <text x="306.99" y="399.5" ></text> </g> <g > <title>el0t_64_sync_handler (1 samples, 0.34%)</title><rect x="283.9" y="645" width="4.0" height="15.0" fill="rgb(239,170,22)" rx="2" ry="2" /> <text x="286.86" y="655.5" ></text> </g> <g > <title>[libQt5Gui.so.5.15.2] (1 samples, 0.34%)</title><rect x="634.2" y="453" width="4.1" height="15.0" fill="rgb(215,209,37)" rx="2" ry="2" /> <text x="637.23" y="463.5" ></text> </g> <g > <title>eventfd_write (1 samples, 0.34%)</title><rect x="102.6" y="725" width="4.1" height="15.0" fill="rgb(206,173,24)" rx="2" ry="2" /> <text x="105.63" y="735.5" ></text> </g> <g > <title>__GI___writev (1 samples, 0.34%)</title><rect x="175.1" y="869" width="4.0" height="15.0" fill="rgb(235,27,42)" rx="2" ry="2" /> <text x="178.12" y="879.5" ></text> </g> <g > <title>[lxqt-panel] (1 samples, 0.34%)</title><rect x="440.9" y="965" width="4.0" height="15.0" fill="rgb(232,174,13)" rx="2" ry="2" /> <text x="443.92" y="975.5" ></text> </g> <g > <title>invoke_syscall (3 samples, 1.02%)</title><rect x="78.5" y="837" width="12.0" height="15.0" fill="rgb(210,118,1)" rx="2" ry="2" /> <text x="81.46" y="847.5" ></text> </g> <g > <title>do_iter_readv_writev (1 samples, 0.34%)</title><rect x="287.9" y="469" width="4.0" height="15.0" fill="rgb(253,104,47)" rx="2" ry="2" /> <text x="290.88" y="479.5" ></text> </g> <g > <title>__ioctl (1 samples, 0.34%)</title><rect x="255.7" y="453" width="4.0" height="15.0" fill="rgb(242,156,14)" rx="2" ry="2" /> <text x="258.67" y="463.5" ></text> </g> <g > <title>__libc_read (1 samples, 0.34%)</title><rect x="372.5" y="853" width="4.0" height="15.0" fill="rgb(213,69,5)" rx="2" ry="2" /> <text x="375.46" y="863.5" ></text> </g> <g > <title>kthread (1 samples, 0.34%)</title><rect x="416.8" y="981" width="4.0" height="15.0" fill="rgb(243,149,14)" rx="2" ry="2" /> <text x="419.76" y="991.5" ></text> </g> <g > <title>el1h_64_irq_handler (1 samples, 0.34%)</title><rect x="408.7" y="757" width="4.0" height="15.0" fill="rgb(249,93,35)" rx="2" ry="2" /> <text x="411.70" y="767.5" ></text> </g> <g > <title>drm_mode_cursor_common (1 samples, 0.34%)</title><rect x="167.1" y="469" width="4.0" height="15.0" fill="rgb(211,76,40)" rx="2" ry="2" /> <text x="170.06" y="479.5" ></text> </g> <g > <title>fill_pointer_events (6 samples, 2.05%)</title><rect x="46.2" y="837" width="24.2" height="15.0" fill="rgb(235,180,32)" rx="2" ry="2" /> <text x="49.25" y="847.5" >f..</text> </g> <g > <title>el0_svc (2 samples, 0.68%)</title><rect x="26.1" y="837" width="8.1" height="15.0" fill="rgb(223,95,19)" rx="2" ry="2" /> <text x="29.11" y="847.5" ></text> </g> <g > <title>_dl_start (1 samples, 0.34%)</title><rect x="952.4" y="965" width="4.0" height="15.0" fill="rgb(226,82,51)" rx="2" ry="2" /> <text x="955.39" y="975.5" ></text> </g> <g > <title>__ioctl (6 samples, 2.05%)</title><rect x="46.2" y="645" width="24.2" height="15.0" fill="rgb(209,192,9)" rx="2" ry="2" /> <text x="49.25" y="655.5" >_..</text> </g> <g > <title>do_interrupt_handler (1 samples, 0.34%)</title><rect x="62.4" y="133" width="4.0" height="15.0" fill="rgb(220,193,54)" rx="2" ry="2" /> <text x="65.35" y="143.5" ></text> </g> <g > <title>secondary_start_kernel (17 samples, 5.80%)</title><rect x="1077.2" y="981" width="68.5" height="15.0" fill="rgb(246,23,2)" rx="2" ry="2" /> <text x="1080.24" y="991.5" >seconda..</text> </g> <g > <title>el0_svc_common.constprop.0 (1 samples, 0.34%)</title><rect x="283.9" y="597" width="4.0" height="15.0" fill="rgb(247,94,48)" rx="2" ry="2" /> <text x="286.86" y="607.5" ></text> </g> <g > <title>sock_write_iter (1 samples, 0.34%)</title><rect x="287.9" y="453" width="4.0" height="15.0" fill="rgb(240,210,43)" rx="2" ry="2" /> <text x="290.88" y="463.5" ></text> </g> <g > <title>el0_svc_common.constprop.0 (5 samples, 1.71%)</title><rect x="316.1" y="805" width="20.1" height="15.0" fill="rgb(226,215,52)" rx="2" ry="2" /> <text x="319.08" y="815.5" ></text> </g> <g > <title>_raw_spin_unlock_irqrestore (1 samples, 0.34%)</title><rect x="114.7" y="549" width="4.0" height="15.0" fill="rgb(218,82,17)" rx="2" ry="2" /> <text x="117.71" y="559.5" ></text> </g> <g > <title>affine_move_task (1 samples, 0.34%)</title><rect x="839.6" y="757" width="4.1" height="15.0" fill="rgb(249,6,53)" rx="2" ry="2" /> <text x="842.62" y="767.5" ></text> </g> <g > <title>__irq_exit_rcu (1 samples, 0.34%)</title><rect x="940.3" y="501" width="4.0" height="15.0" fill="rgb(228,167,47)" rx="2" ry="2" /> <text x="943.31" y="511.5" ></text> </g> <g > <title>ProcessPointerEvent (8 samples, 2.73%)</title><rect x="275.8" y="885" width="32.2" height="15.0" fill="rgb(213,57,32)" rx="2" ry="2" /> <text x="278.80" y="895.5" >Pr..</text> </g> <g > <title>el0_svc_common.constprop.0 (2 samples, 0.68%)</title><rect x="449.0" y="805" width="8.0" height="15.0" fill="rgb(214,200,15)" rx="2" ry="2" /> <text x="451.98" y="815.5" ></text> </g> <g > <title>__GI___writev (1 samples, 0.34%)</title><rect x="287.9" y="661" width="4.0" height="15.0" fill="rgb(251,101,6)" rx="2" ry="2" /> <text x="290.88" y="671.5" ></text> </g> <g > <title>DeliverDeviceEvents (2 samples, 0.68%)</title><rect x="300.0" y="853" width="8.0" height="15.0" fill="rgb(224,228,38)" rx="2" ry="2" /> <text x="302.97" y="863.5" ></text> </g> <g > <title>invoke_syscall (3 samples, 1.02%)</title><rect x="155.0" y="501" width="12.1" height="15.0" fill="rgb(206,224,50)" rx="2" ry="2" /> <text x="157.98" y="511.5" ></text> </g> <g > <title>__local_bh_disable_ip (1 samples, 0.34%)</title><rect x="823.5" y="757" width="4.0" height="15.0" fill="rgb(207,22,23)" rx="2" ry="2" /> <text x="826.52" y="767.5" ></text> </g> <g > <title>__setplane_atomic (1 samples, 0.34%)</title><rect x="167.1" y="437" width="4.0" height="15.0" fill="rgb(224,140,42)" rx="2" ry="2" /> <text x="170.06" y="447.5" ></text> </g> <g > <title>[libfm-qt.so.10.0.0] (1 samples, 0.34%)</title><rect x="658.4" y="469" width="4.0" height="15.0" fill="rgb(238,21,7)" rx="2" ry="2" /> <text x="661.40" y="479.5" ></text> </g> <g > <title>__GI___libc_write (1 samples, 0.34%)</title><rect x="791.3" y="693" width="4.0" height="15.0" fill="rgb(222,92,3)" rx="2" ry="2" /> <text x="794.30" y="703.5" ></text> </g> <g > <title>v3d_draw_vbo (1 samples, 0.34%)</title><rect x="344.3" y="693" width="4.0" height="15.0" fill="rgb(205,96,12)" rx="2" ry="2" /> <text x="347.27" y="703.5" ></text> </g> <g > <title>do_el0_svc (1 samples, 0.34%)</title><rect x="948.4" y="789" width="4.0" height="15.0" fill="rgb(208,56,19)" rx="2" ry="2" /> <text x="951.36" y="799.5" ></text> </g> <g > <title>xf86PostMotionEventM (1 samples, 0.34%)</title><rect x="70.4" y="869" width="4.0" height="15.0" fill="rgb(207,94,10)" rx="2" ry="2" /> <text x="73.41" y="879.5" ></text> </g> <g > <title>timespec64_add_safe (1 samples, 0.34%)</title><rect x="408.7" y="789" width="4.0" height="15.0" fill="rgb(237,9,21)" rx="2" ry="2" /> <text x="411.70" y="799.5" ></text> </g> <g > <title>__wake_up_common_lock (1 samples, 0.34%)</title><rect x="18.1" y="709" width="4.0" height="15.0" fill="rgb(221,104,45)" rx="2" ry="2" /> <text x="21.05" y="719.5" ></text> </g> <g > <title>QTextEngine::shapeText (2 samples, 0.68%)</title><rect x="610.1" y="501" width="8.0" height="15.0" fill="rgb(219,173,18)" rx="2" ry="2" /> <text x="613.07" y="511.5" ></text> </g> <g > <title>hb_buffer_t::clear_output (1 samples, 0.34%)</title><rect x="642.3" y="453" width="4.0" height="15.0" fill="rgb(237,40,36)" rx="2" ry="2" /> <text x="645.29" y="463.5" ></text> </g> <g > <title>xf86libinput_handle_event (7 samples, 2.39%)</title><rect x="46.2" y="901" width="28.2" height="15.0" fill="rgb(231,51,19)" rx="2" ry="2" /> <text x="49.25" y="911.5" >x..</text> </g> <g > <title>percpu_counter_add_batch (1 samples, 0.34%)</title><rect x="255.7" y="149" width="4.0" height="15.0" fill="rgb(251,90,26)" rx="2" ry="2" /> <text x="258.67" y="159.5" ></text> </g> <g > <title>invoke_syscall (1 samples, 0.34%)</title><rect x="775.2" y="341" width="4.0" height="15.0" fill="rgb(206,153,48)" rx="2" ry="2" /> <text x="778.19" y="351.5" ></text> </g> <g > <title>el0t_64_sync_handler (1 samples, 0.34%)</title><rect x="255.7" y="421" width="4.0" height="15.0" fill="rgb(238,187,26)" rx="2" ry="2" /> <text x="258.67" y="431.5" ></text> </g> <g > <title>el0t_64_sync (1 samples, 0.34%)</title><rect x="102.6" y="869" width="4.1" height="15.0" fill="rgb(241,196,15)" rx="2" ry="2" /> <text x="105.63" y="879.5" ></text> </g> <g > <title>el0_svc (1 samples, 0.34%)</title><rect x="126.8" y="805" width="4.0" height="15.0" fill="rgb(239,190,15)" rx="2" ry="2" /> <text x="129.79" y="815.5" ></text> </g> <g > <title>kthread (1 samples, 0.34%)</title><rect x="424.8" y="981" width="4.0" height="15.0" fill="rgb(227,40,34)" rx="2" ry="2" /> <text x="427.81" y="991.5" ></text> </g> <g > <title>QIcon::paint (1 samples, 0.34%)</title><rect x="650.3" y="565" width="4.1" height="15.0" fill="rgb(226,78,21)" rx="2" ry="2" /> <text x="653.34" y="575.5" ></text> </g> <g > <title>__alloc_skb (1 samples, 0.34%)</title><rect x="175.1" y="597" width="4.0" height="15.0" fill="rgb(246,50,41)" rx="2" ry="2" /> <text x="178.12" y="607.5" ></text> </g> <g > <title>xf86libinput_read_input (12 samples, 4.10%)</title><rect x="26.1" y="917" width="48.3" height="15.0" fill="rgb(212,82,17)" rx="2" ry="2" /> <text x="29.11" y="927.5" >xf86..</text> </g> <g > <title>irq_exit (1 samples, 0.34%)</title><rect x="1121.5" y="789" width="4.1" height="15.0" fill="rgb(231,62,14)" rx="2" ry="2" /> <text x="1124.54" y="799.5" ></text> </g> <g > <title>syscall_trace_exit (1 samples, 0.34%)</title><rect x="126.8" y="757" width="4.0" height="15.0" fill="rgb(217,164,45)" rx="2" ry="2" /> <text x="129.79" y="767.5" ></text> </g> <g > <title>mmc_mq_queue_rq (1 samples, 0.34%)</title><rect x="420.8" y="837" width="4.0" height="15.0" fill="rgb(246,62,21)" rx="2" ry="2" /> <text x="423.78" y="847.5" ></text> </g> <g > <title>[libQt5XcbQpa.so.5.15.2] (3 samples, 1.02%)</title><rect x="767.1" y="581" width="12.1" height="15.0" fill="rgb(226,0,38)" rx="2" ry="2" /> <text x="770.13" y="591.5" ></text> </g> <g > <title>el0_svc (1 samples, 0.34%)</title><rect x="283.9" y="629" width="4.0" height="15.0" fill="rgb(227,136,7)" rx="2" ry="2" /> <text x="286.86" y="639.5" ></text> </g> <g > <title>el0_svc_common.constprop.0 (2 samples, 0.68%)</title><rect x="352.3" y="821" width="8.1" height="15.0" fill="rgb(224,216,54)" rx="2" ry="2" /> <text x="355.32" y="831.5" ></text> </g> <g > <title>__lock_text_start (1 samples, 0.34%)</title><rect x="1169.9" y="597" width="4.0" height="15.0" fill="rgb(250,45,47)" rx="2" ry="2" /> <text x="1172.86" y="607.5" ></text> </g> <g > <title>CursorDisplayCursor (2 samples, 0.68%)</title><rect x="275.8" y="805" width="8.1" height="15.0" fill="rgb(205,105,49)" rx="2" ry="2" /> <text x="278.80" y="815.5" ></text> </g> <g > <title>ProcessWorkQueue (1 samples, 0.34%)</title><rect x="344.3" y="917" width="4.0" height="15.0" fill="rgb(240,204,35)" rx="2" ry="2" /> <text x="347.27" y="927.5" ></text> </g> <g > <title>[pcmanfm-qt] (21 samples, 7.17%)</title><rect x="662.4" y="661" width="84.6" height="15.0" fill="rgb(224,187,12)" rx="2" ry="2" /> <text x="665.42" y="671.5" >[pcmanfm-..</text> </g> <g > <title>[libsystemd-shared-249.so] (1 samples, 0.34%)</title><rect x="1149.7" y="853" width="4.1" height="15.0" fill="rgb(206,99,0)" rx="2" ry="2" /> <text x="1152.73" y="863.5" ></text> </g> <g > <title>DeliverEventsToWindow (2 samples, 0.68%)</title><rect x="300.0" y="805" width="8.0" height="15.0" fill="rgb(227,87,4)" rx="2" ry="2" /> <text x="302.97" y="815.5" ></text> </g> <g > <title>QTextEngine::shapeLine (1 samples, 0.34%)</title><rect x="606.0" y="485" width="4.1" height="15.0" fill="rgb(252,207,12)" rx="2" ry="2" /> <text x="609.04" y="495.5" ></text> </g> <g > <title>ProcessKeyboardEvent (3 samples, 1.02%)</title><rect x="263.7" y="885" width="12.1" height="15.0" fill="rgb(219,115,5)" rx="2" ry="2" /> <text x="266.72" y="895.5" ></text> </g> <g > <title>__arm64_sys_writev (1 samples, 0.34%)</title><rect x="287.9" y="533" width="4.0" height="15.0" fill="rgb(254,216,38)" rx="2" ry="2" /> <text x="290.88" y="543.5" ></text> </g> <g > <title>el0_svc_common.constprop.0 (1 samples, 0.34%)</title><rect x="747.0" y="485" width="4.0" height="15.0" fill="rgb(227,31,40)" rx="2" ry="2" /> <text x="750.00" y="495.5" ></text> </g> <g > <title>call_on_irq_stack (14 samples, 4.78%)</title><rect x="1000.7" y="805" width="56.4" height="15.0" fill="rgb(241,196,7)" rx="2" ry="2" /> <text x="1003.72" y="815.5" >call_..</text> </g> <g > <title>do_el0_svc (4 samples, 1.37%)</title><rect x="74.4" y="869" width="16.1" height="15.0" fill="rgb(208,141,18)" rx="2" ry="2" /> <text x="77.44" y="879.5" ></text> </g> <g > <title>QFusionStyle::drawPrimitive (1 samples, 0.34%)</title><rect x="634.2" y="485" width="4.1" height="15.0" fill="rgb(221,57,16)" rx="2" ry="2" /> <text x="637.23" y="495.5" ></text> </g> <g > <title>DeliverEventToInputClients (2 samples, 0.68%)</title><rect x="300.0" y="773" width="8.0" height="15.0" fill="rgb(236,69,21)" rx="2" ry="2" /> <text x="302.97" y="783.5" ></text> </g> <g > <title>el0_svc (1 samples, 0.34%)</title><rect x="747.0" y="517" width="4.0" height="15.0" fill="rgb(221,96,45)" rx="2" ry="2" /> <text x="750.00" y="527.5" ></text> </g> <g > <title>idr_get_free (1 samples, 0.34%)</title><rect x="279.8" y="213" width="4.1" height="15.0" fill="rgb(251,103,13)" rx="2" ry="2" /> <text x="282.83" y="223.5" ></text> </g> <g > <title>QTextEngine::itemize (1 samples, 0.34%)</title><rect x="457.0" y="981" width="4.1" height="15.0" fill="rgb(229,142,30)" rx="2" ry="2" /> <text x="460.03" y="991.5" ></text> </g> <g > <title>commit_tail (1 samples, 0.34%)</title><rect x="275.8" y="277" width="4.0" height="15.0" fill="rgb(222,121,12)" rx="2" ry="2" /> <text x="278.80" y="287.5" ></text> </g> <g > <title>Fm::FolderItemDelegate::paint (6 samples, 2.05%)</title><rect x="638.3" y="613" width="24.1" height="15.0" fill="rgb(224,150,29)" rx="2" ry="2" /> <text x="641.26" y="623.5" >F..</text> </g> <g > <title>QWidgetPrivate::windowHandle (1 samples, 0.34%)</title><rect x="440.9" y="677" width="4.0" height="15.0" fill="rgb(210,8,31)" rx="2" ry="2" /> <text x="443.92" y="687.5" ></text> </g> <g > <title>schedule_hrtimeout_range_clock (4 samples, 1.37%)</title><rect x="388.6" y="725" width="16.1" height="15.0" fill="rgb(232,223,48)" rx="2" ry="2" /> <text x="391.57" y="735.5" ></text> </g> <g > <title>vc4_atomic_commit_tail (6 samples, 2.05%)</title><rect x="46.2" y="357" width="24.2" height="15.0" fill="rgb(245,113,25)" rx="2" ry="2" /> <text x="49.25" y="367.5" >v..</text> </g> <g > <title>poll_for_response (2 samples, 0.68%)</title><rect x="1173.9" y="853" width="8.0" height="15.0" fill="rgb(223,48,14)" rx="2" ry="2" /> <text x="1176.89" y="863.5" ></text> </g> <g > <title>hb_blob_ptr_t<OT::GDEF>::get (1 samples, 0.34%)</title><rect x="638.3" y="341" width="4.0" height="15.0" fill="rgb(234,3,11)" rx="2" ry="2" /> <text x="641.26" y="351.5" ></text> </g> <g > <title>QFrame::event (1 samples, 0.34%)</title><rect x="783.2" y="645" width="4.1" height="15.0" fill="rgb(229,45,54)" rx="2" ry="2" /> <text x="786.24" y="655.5" ></text> </g> <g > <title>QWidget::mapFromGlobal (1 samples, 0.34%)</title><rect x="755.1" y="709" width="4.0" height="15.0" fill="rgb(249,214,21)" rx="2" ry="2" /> <text x="758.05" y="719.5" ></text> </g> <g > <title>CoreLeaveNotifies (1 samples, 0.34%)</title><rect x="291.9" y="789" width="4.0" height="15.0" fill="rgb(213,74,8)" rx="2" ry="2" /> <text x="294.91" y="799.5" ></text> </g> <g > <title>QIconEngine::isNull (1 samples, 0.34%)</title><rect x="658.4" y="517" width="4.0" height="15.0" fill="rgb(239,45,16)" rx="2" ry="2" /> <text x="661.40" y="527.5" ></text> </g> <g > <title>do_sys_poll (4 samples, 1.37%)</title><rect x="138.9" y="757" width="16.1" height="15.0" fill="rgb(246,128,4)" rx="2" ry="2" /> <text x="141.87" y="767.5" ></text> </g> <g > <title>start_thread (14 samples, 4.78%)</title><rect x="98.6" y="981" width="56.4" height="15.0" fill="rgb(247,107,11)" rx="2" ry="2" /> <text x="101.60" y="991.5" >start..</text> </g> <g > <title>el0_svc (5 samples, 1.71%)</title><rect x="134.8" y="837" width="20.2" height="15.0" fill="rgb(205,141,21)" rx="2" ry="2" /> <text x="137.85" y="847.5" ></text> </g> <g > <title>hid_input_report (3 samples, 1.02%)</title><rect x="1020.9" y="629" width="12.0" height="15.0" fill="rgb(225,162,51)" rx="2" ry="2" /> <text x="1023.85" y="639.5" ></text> </g> <g > <title>drm_gem_dma_resv_wait (1 samples, 0.34%)</title><rect x="243.6" y="485" width="4.0" height="15.0" fill="rgb(231,137,35)" rx="2" ry="2" /> <text x="246.58" y="495.5" ></text> </g> <g > <title>invoke_syscall (1 samples, 0.34%)</title><rect x="344.3" y="485" width="4.0" height="15.0" fill="rgb(217,84,45)" rx="2" ry="2" /> <text x="347.27" y="495.5" ></text> </g> <g > <title>qterminal (5 samples, 1.71%)</title><rect x="932.3" y="1013" width="20.1" height="15.0" fill="rgb(251,131,22)" rx="2" ry="2" /> <text x="935.25" y="1023.5" ></text> </g> <g > <title>__GI___writev (1 samples, 0.34%)</title><rect x="267.7" y="661" width="4.1" height="15.0" fill="rgb(218,190,51)" rx="2" ry="2" /> <text x="270.75" y="671.5" ></text> </g> <g > <title>sleep (1 samples, 0.34%)</title><rect x="952.4" y="1013" width="4.0" height="15.0" fill="rgb(253,10,13)" rx="2" ry="2" /> <text x="955.39" y="1023.5" ></text> </g> <g > <title>unix_write_space (1 samples, 0.34%)</title><rect x="332.2" y="613" width="4.0" height="15.0" fill="rgb(251,36,20)" rx="2" ry="2" /> <text x="335.18" y="623.5" ></text> </g> <g > <title>util_draw_elements_instanced (1 samples, 0.34%)</title><rect x="255.7" y="581" width="4.0" height="15.0" fill="rgb(207,221,25)" rx="2" ry="2" /> <text x="258.67" y="591.5" ></text> </g> <g > <title>unix_stream_sendmsg (1 samples, 0.34%)</title><rect x="287.9" y="421" width="4.0" height="15.0" fill="rgb(208,221,36)" rx="2" ry="2" /> <text x="290.88" y="431.5" ></text> </g> <g > <title>g_main_context_poll (2 samples, 0.68%)</title><rect x="449.0" y="901" width="8.0" height="15.0" fill="rgb(225,53,32)" rx="2" ry="2" /> <text x="451.98" y="911.5" ></text> </g> <g > <title>unix_stream_read_generic (1 samples, 0.34%)</title><rect x="1169.9" y="613" width="4.0" height="15.0" fill="rgb(245,77,28)" rx="2" ry="2" /> <text x="1172.86" y="623.5" ></text> </g> <g > <title>__schedule (1 samples, 0.34%)</title><rect x="396.6" y="693" width="4.0" height="15.0" fill="rgb(223,69,16)" rx="2" ry="2" /> <text x="399.62" y="703.5" ></text> </g> <g > <title>miPointerGetScreen (1 samples, 0.34%)</title><rect x="70.4" y="837" width="4.0" height="15.0" fill="rgb(211,14,27)" rx="2" ry="2" /> <text x="73.41" y="847.5" ></text> </g> <g > <title>QXcbEventQueue (14 samples, 4.78%)</title><rect x="98.6" y="1013" width="56.4" height="15.0" fill="rgb(223,102,53)" rx="2" ry="2" /> <text x="101.60" y="1023.5" >QXcbE..</text> </g> <g > <title>sock_write_iter (1 samples, 0.34%)</title><rect x="291.9" y="437" width="4.0" height="15.0" fill="rgb(211,28,14)" rx="2" ry="2" /> <text x="294.91" y="447.5" ></text> </g> <g > <title>drm_mode_cursor_common (2 samples, 0.68%)</title><rect x="275.8" y="373" width="8.1" height="15.0" fill="rgb(223,145,34)" rx="2" ry="2" /> <text x="278.80" y="383.5" ></text> </g> <g > <title>preempt_count_sub (1 samples, 0.34%)</title><rect x="356.3" y="741" width="4.1" height="15.0" fill="rgb(228,212,16)" rx="2" ry="2" /> <text x="359.35" y="751.5" ></text> </g> <g > <title>el1h_64_irq (1 samples, 0.34%)</title><rect x="1121.5" y="901" width="4.1" height="15.0" fill="rgb(234,119,7)" rx="2" ry="2" /> <text x="1124.54" y="911.5" ></text> </g> <g > <title>__GI___writev (1 samples, 0.34%)</title><rect x="295.9" y="661" width="4.1" height="15.0" fill="rgb(232,139,6)" rx="2" ry="2" /> <text x="298.94" y="671.5" ></text> </g> <g > <title>do_el0_svc (2 samples, 0.68%)</title><rect x="26.1" y="821" width="8.1" height="15.0" fill="rgb(227,186,50)" rx="2" ry="2" /> <text x="29.11" y="831.5" ></text> </g> <g > <title>__arm64_sys_sched_setaffinity (1 samples, 0.34%)</title><rect x="835.6" y="821" width="4.0" height="15.0" fill="rgb(222,57,5)" rx="2" ry="2" /> <text x="838.60" y="831.5" ></text> </g> <g > <title>v3d_ioctl (1 samples, 0.34%)</title><rect x="243.6" y="693" width="4.0" height="15.0" fill="rgb(228,150,38)" rx="2" ry="2" /> <text x="246.58" y="703.5" ></text> </g> <g > <title>worker_thread (1 samples, 0.34%)</title><rect x="416.8" y="965" width="4.0" height="15.0" fill="rgb(227,68,16)" rx="2" ry="2" /> <text x="419.76" y="975.5" ></text> </g> <g > <title>remove_wait_queue (2 samples, 0.68%)</title><rect x="449.0" y="725" width="8.0" height="15.0" fill="rgb(245,104,21)" rx="2" ry="2" /> <text x="451.98" y="735.5" ></text> </g> <g > <title>__arm64_sys_sched_setaffinity (2 samples, 0.68%)</title><rect x="839.6" y="821" width="8.1" height="15.0" fill="rgb(246,52,37)" rx="2" ry="2" /> <text x="842.62" y="831.5" ></text> </g> <g > <title>v3d_draw_vbo (1 samples, 0.34%)</title><rect x="344.3" y="709" width="4.0" height="15.0" fill="rgb(220,48,11)" rx="2" ry="2" /> <text x="347.27" y="719.5" ></text> </g> <g > <title>__schedule (1 samples, 0.34%)</title><rect x="956.4" y="933" width="4.0" height="15.0" fill="rgb(236,33,32)" rx="2" ry="2" /> <text x="959.42" y="943.5" ></text> </g> <g > <title>el0t_64_sync (3 samples, 1.02%)</title><rect x="155.0" y="581" width="12.1" height="15.0" fill="rgb(240,98,9)" rx="2" ry="2" /> <text x="157.98" y="591.5" ></text> </g> <g > <title>v3d_wait_bo_ioctl (1 samples, 0.34%)</title><rect x="243.6" y="501" width="4.0" height="15.0" fill="rgb(239,83,32)" rx="2" ry="2" /> <text x="246.58" y="511.5" ></text> </g> <g > <title>swapper (45 samples, 15.36%)</title><rect x="964.5" y="1013" width="181.2" height="15.0" fill="rgb(232,160,47)" rx="2" ry="2" /> <text x="967.47" y="1023.5" >swapper</text> </g> <g > <title>[libfm-qt.so.10.0.0] (1 samples, 0.34%)</title><rect x="650.3" y="581" width="4.1" height="15.0" fill="rgb(242,96,11)" rx="2" ry="2" /> <text x="653.34" y="591.5" ></text> </g> <g > <title>QEventDispatcherGlib::processEvents (90 samples, 30.72%)</title><rect x="473.1" y="917" width="362.5" height="15.0" fill="rgb(251,114,54)" rx="2" ry="2" /> <text x="476.14" y="927.5" >QEventDispatcherGlib::processEvents</text> </g> <g > <title>__wake_up_sync_key (1 samples, 0.34%)</title><rect x="18.1" y="725" width="4.0" height="15.0" fill="rgb(231,167,17)" rx="2" ry="2" /> <text x="21.05" y="735.5" ></text> </g> <g > <title>__GI___poll (6 samples, 2.05%)</title><rect x="130.8" y="885" width="24.2" height="15.0" fill="rgb(208,207,26)" rx="2" ry="2" /> <text x="133.82" y="895.5" >_..</text> </g> <g > <title>_xcb_out_flush_to (1 samples, 0.34%)</title><rect x="747.0" y="661" width="4.0" height="15.0" fill="rgb(212,43,43)" rx="2" ry="2" /> <text x="750.00" y="671.5" ></text> </g> <g > <title>g_main_context_dispatch (80 samples, 27.30%)</title><rect x="477.2" y="869" width="322.2" height="15.0" fill="rgb(238,17,30)" rx="2" ry="2" /> <text x="480.17" y="879.5" >g_main_context_dispatch</text> </g> <g > <title>g_wakeup_signal (1 samples, 0.34%)</title><rect x="791.3" y="725" width="4.0" height="15.0" fill="rgb(241,53,5)" rx="2" ry="2" /> <text x="794.30" y="735.5" ></text> </g> <g > <title>__libc_read (1 samples, 0.34%)</title><rect x="372.5" y="837" width="4.0" height="15.0" fill="rgb(237,208,8)" rx="2" ry="2" /> <text x="375.46" y="847.5" ></text> </g> <g > <title>_XSERVTransSocketWritev (1 samples, 0.34%)</title><rect x="287.9" y="677" width="4.0" height="15.0" fill="rgb(240,54,34)" rx="2" ry="2" /> <text x="290.88" y="687.5" ></text> </g> <g > <title>damageValidateGC (1 samples, 0.34%)</title><rect x="183.2" y="901" width="4.0" height="15.0" fill="rgb(225,14,33)" rx="2" ry="2" /> <text x="186.17" y="911.5" ></text> </g> <g > <title>thread_start (1 samples, 0.34%)</title><rect x="412.7" y="997" width="4.1" height="15.0" fill="rgb(209,171,13)" rx="2" ry="2" /> <text x="415.73" y="1007.5" ></text> </g> <g > <title>TryClientEvents (2 samples, 0.68%)</title><rect x="300.0" y="741" width="8.0" height="15.0" fill="rgb(251,143,40)" rx="2" ry="2" /> <text x="302.97" y="751.5" ></text> </g> <g > <title>ext4_convert_unwritten_io_end_vec (1 samples, 0.34%)</title><rect x="424.8" y="917" width="4.0" height="15.0" fill="rgb(248,13,35)" rx="2" ry="2" /> <text x="427.81" y="927.5" ></text> </g> <g > <title>syscall_trace_enter (1 samples, 0.34%)</title><rect x="364.4" y="805" width="4.0" height="15.0" fill="rgb(214,114,28)" rx="2" ry="2" /> <text x="367.40" y="815.5" ></text> </g> <g > <title>[libQt5Gui.so.5.15.2] (1 samples, 0.34%)</title><rect x="638.3" y="565" width="4.0" height="15.0" fill="rgb(244,104,32)" rx="2" ry="2" /> <text x="641.26" y="575.5" ></text> </g> <g > <title>clk_set_rate (1 samples, 0.34%)</title><rect x="416.8" y="917" width="4.0" height="15.0" fill="rgb(240,212,47)" rx="2" ry="2" /> <text x="419.76" y="927.5" ></text> </g> <g > <title>remove_wait_queue (1 samples, 0.34%)</title><rect x="138.9" y="725" width="4.0" height="15.0" fill="rgb(223,194,25)" rx="2" ry="2" /> <text x="141.87" y="735.5" ></text> </g> <g > <title>_raw_write_lock_irq (1 samples, 0.34%)</title><rect x="78.5" y="757" width="4.0" height="15.0" fill="rgb(207,148,39)" rx="2" ry="2" /> <text x="81.46" y="767.5" ></text> </g> <g > <title>util_blitter_blit_generic (1 samples, 0.34%)</title><rect x="255.7" y="645" width="4.0" height="15.0" fill="rgb(223,11,16)" rx="2" ry="2" /> <text x="258.67" y="655.5" ></text> </g> <g > <title>__wake_up_sync_key (1 samples, 0.34%)</title><rect x="775.2" y="181" width="4.0" height="15.0" fill="rgb(226,119,7)" rx="2" ry="2" /> <text x="778.19" y="191.5" ></text> </g> <g > <title>el0t_64_sync (1 samples, 0.34%)</title><rect x="167.1" y="629" width="4.0" height="15.0" fill="rgb(207,51,9)" rx="2" ry="2" /> <text x="170.06" y="639.5" ></text> </g> <g > <title>__schedule (1 samples, 0.34%)</title><rect x="388.6" y="709" width="4.0" height="15.0" fill="rgb(250,158,40)" rx="2" ry="2" /> <text x="391.57" y="719.5" ></text> </g> <g > <title>_XEventsQueued (1 samples, 0.34%)</title><rect x="444.9" y="853" width="4.1" height="15.0" fill="rgb(246,31,9)" rx="2" ry="2" /> <text x="447.95" y="863.5" ></text> </g> <g > <title>__ep_eventpoll_poll.isra.0 (1 samples, 0.34%)</title><rect x="86.5" y="757" width="4.0" height="15.0" fill="rgb(245,60,13)" rx="2" ry="2" /> <text x="89.52" y="767.5" ></text> </g> <g > <title>poll_freewait (1 samples, 0.34%)</title><rect x="811.4" y="709" width="4.1" height="15.0" fill="rgb(232,141,36)" rx="2" ry="2" /> <text x="814.43" y="719.5" ></text> </g> <g > <title>__arm64_sys_epoll_pwait (3 samples, 1.02%)</title><rect x="78.5" y="821" width="12.0" height="15.0" fill="rgb(248,128,7)" rx="2" ry="2" /> <text x="81.46" y="831.5" ></text> </g> <g > <title>invoke_syscall (2 samples, 0.68%)</title><rect x="110.7" y="773" width="8.0" height="15.0" fill="rgb(232,46,43)" rx="2" ry="2" /> <text x="113.68" y="783.5" ></text> </g> <g > <title>import_iovec (1 samples, 0.34%)</title><rect x="1177.9" y="645" width="4.0" height="15.0" fill="rgb(213,109,1)" rx="2" ry="2" /> <text x="1180.92" y="655.5" ></text> </g> <g > <title>malloc_consolidate (1 samples, 0.34%)</title><rect x="795.3" y="789" width="4.1" height="15.0" fill="rgb(223,221,17)" rx="2" ry="2" /> <text x="798.32" y="799.5" ></text> </g> <g > <title>miPointerDisplayCursor (4 samples, 1.37%)</title><rect x="155.0" y="837" width="16.1" height="15.0" fill="rgb(242,42,52)" rx="2" ry="2" /> <text x="157.98" y="847.5" ></text> </g> <g > <title>invoke_syscall (4 samples, 1.37%)</title><rect x="916.1" y="789" width="16.2" height="15.0" fill="rgb(242,211,42)" rx="2" ry="2" /> <text x="919.14" y="799.5" ></text> </g> <g > <title>QGuiApplication::layoutDirection (1 samples, 0.34%)</title><rect x="654.4" y="581" width="4.0" height="15.0" fill="rgb(213,168,13)" rx="2" ry="2" /> <text x="657.37" y="591.5" ></text> </g> <g > <title>QTextEngine::shapeText (1 samples, 0.34%)</title><rect x="642.3" y="565" width="4.0" height="15.0" fill="rgb(218,168,49)" rx="2" ry="2" /> <text x="645.29" y="575.5" ></text> </g> <g > <title>xscreensaver (7 samples, 2.39%)</title><rect x="1161.8" y="1013" width="28.2" height="15.0" fill="rgb(236,107,8)" rx="2" ry="2" /> <text x="1164.81" y="1023.5" >x..</text> </g> <g > <title>__arm64_sys_ioctl (1 samples, 0.34%)</title><rect x="344.3" y="469" width="4.0" height="15.0" fill="rgb(237,58,33)" rx="2" ry="2" /> <text x="347.27" y="479.5" ></text> </g> <g > <title>Fm::FolderModel::data (1 samples, 0.34%)</title><rect x="658.4" y="549" width="4.0" height="15.0" fill="rgb(217,34,35)" rx="2" ry="2" /> <text x="661.40" y="559.5" ></text> </g> <g > <title>miPointerUpdateSprite (4 samples, 1.37%)</title><rect x="155.0" y="789" width="16.1" height="15.0" fill="rgb(211,42,44)" rx="2" ry="2" /> <text x="157.98" y="799.5" ></text> </g> <g > <title>el0t_64_sync_handler (6 samples, 2.05%)</title><rect x="46.2" y="613" width="24.2" height="15.0" fill="rgb(212,135,47)" rx="2" ry="2" /> <text x="49.25" y="623.5" >e..</text> </g> <g > <title>miPointerGetPosition (1 samples, 0.34%)</title><rect x="259.7" y="917" width="4.0" height="15.0" fill="rgb(205,185,13)" rx="2" ry="2" /> <text x="262.69" y="927.5" ></text> </g> <g > <title>event_function_call (16 samples, 5.46%)</title><rect x="851.7" y="741" width="64.4" height="15.0" fill="rgb(237,84,9)" rx="2" ry="2" /> <text x="854.71" y="751.5" >event_f..</text> </g> <g > <title>__arm64_sys_futex (1 samples, 0.34%)</title><rect x="771.2" y="373" width="4.0" height="15.0" fill="rgb(253,152,30)" rx="2" ry="2" /> <text x="774.16" y="383.5" ></text> </g> <g > <title>hb_shape_plan_execute (1 samples, 0.34%)</title><rect x="638.3" y="469" width="4.0" height="15.0" fill="rgb(240,41,10)" rx="2" ry="2" /> <text x="641.26" y="479.5" ></text> </g> <g > <title>rpi_firmware_property_list (1 samples, 0.34%)</title><rect x="167.1" y="293" width="4.0" height="15.0" fill="rgb(208,169,15)" rx="2" ry="2" /> <text x="170.06" y="303.5" ></text> </g> <g > <title>QWidgetPrivate::drawWidget (1 samples, 0.34%)</title><rect x="634.2" y="661" width="4.1" height="15.0" fill="rgb(227,47,35)" rx="2" ry="2" /> <text x="637.23" y="671.5" ></text> </g> <g > <title>WaitForSomething (19 samples, 6.48%)</title><rect x="336.2" y="933" width="76.5" height="15.0" fill="rgb(233,181,54)" rx="2" ry="2" /> <text x="339.21" y="943.5" >WaitForS..</text> </g> <g > <title>st_TexSubImage (2 samples, 0.68%)</title><rect x="251.6" y="709" width="8.1" height="15.0" fill="rgb(207,195,28)" rx="2" ry="2" /> <text x="254.64" y="719.5" ></text> </g> <g > <title>v3d_resource_transfer_map (1 samples, 0.34%)</title><rect x="243.6" y="757" width="4.0" height="15.0" fill="rgb(237,43,40)" rx="2" ry="2" /> <text x="246.58" y="767.5" ></text> </g> <g > <title>texture_sub_image (14 samples, 4.78%)</title><rect x="191.2" y="805" width="56.4" height="15.0" fill="rgb(246,131,9)" rx="2" ry="2" /> <text x="194.23" y="815.5" >textu..</text> </g> <g > <title>_start (4 samples, 1.37%)</title><rect x="936.3" y="997" width="16.1" height="15.0" fill="rgb(226,90,9)" rx="2" ry="2" /> <text x="939.28" y="1007.5" ></text> </g> <g > <title>vc4_atomic_commit_tail (1 samples, 0.34%)</title><rect x="163.0" y="309" width="4.1" height="15.0" fill="rgb(220,113,41)" rx="2" ry="2" /> <text x="166.04" y="319.5" ></text> </g> <g > <title>blitter_draw (1 samples, 0.34%)</title><rect x="255.7" y="597" width="4.0" height="15.0" fill="rgb(209,30,15)" rx="2" ry="2" /> <text x="258.67" y="607.5" ></text> </g> <g > <title>ksys_read (3 samples, 1.02%)</title><rect x="34.2" y="677" width="12.0" height="15.0" fill="rgb(207,106,13)" rx="2" ry="2" /> <text x="37.16" y="687.5" ></text> </g> <g > <title>do_el0_svc (5 samples, 1.71%)</title><rect x="316.1" y="821" width="20.1" height="15.0" fill="rgb(229,117,34)" rx="2" ry="2" /> <text x="319.08" y="831.5" ></text> </g> <g > <title>sock_sendmsg (1 samples, 0.34%)</title><rect x="283.9" y="469" width="4.0" height="15.0" fill="rgb(253,82,36)" rx="2" ry="2" /> <text x="286.86" y="479.5" ></text> </g> <g > <title>_raw_spin_unlock_irqrestore (1 samples, 0.34%)</title><rect x="1173.9" y="469" width="4.0" height="15.0" fill="rgb(232,77,21)" rx="2" ry="2" /> <text x="1176.89" y="479.5" ></text> </g> <g > <title>drmModeMoveCursor (1 samples, 0.34%)</title><rect x="167.1" y="693" width="4.0" height="15.0" fill="rgb(217,200,31)" rx="2" ry="2" /> <text x="170.06" y="703.5" ></text> </g> <g > <title>print_vma_addr (1 samples, 0.34%)</title><rect x="952.4" y="789" width="4.0" height="15.0" fill="rgb(227,17,28)" rx="2" ry="2" /> <text x="955.39" y="799.5" ></text> </g> <g > <title>PickPointer (1 samples, 0.34%)</title><rect x="179.1" y="917" width="4.1" height="15.0" fill="rgb(213,197,37)" rx="2" ry="2" /> <text x="182.15" y="927.5" ></text> </g> <g > <title>el0t_64_sync (2 samples, 0.68%)</title><rect x="839.6" y="917" width="8.1" height="15.0" fill="rgb(244,107,43)" rx="2" ry="2" /> <text x="842.62" y="927.5" ></text> </g> <g > <title>unix_stream_sendmsg (1 samples, 0.34%)</title><rect x="175.1" y="645" width="4.0" height="15.0" fill="rgb(248,121,25)" rx="2" ry="2" /> <text x="178.12" y="655.5" ></text> </g> <g > <title>invoke_syscall (2 samples, 0.68%)</title><rect x="300.0" y="565" width="8.0" height="15.0" fill="rgb(254,40,40)" rx="2" ry="2" /> <text x="302.97" y="575.5" ></text> </g> <g > <title>_xcb_out_flush_to (1 samples, 0.34%)</title><rect x="775.2" y="533" width="4.0" height="15.0" fill="rgb(241,25,0)" rx="2" ry="2" /> <text x="778.19" y="543.5" ></text> </g> <g > <title>el0t_64_irq (1 samples, 0.34%)</title><rect x="940.3" y="645" width="4.0" height="15.0" fill="rgb(252,22,14)" rx="2" ry="2" /> <text x="943.31" y="655.5" ></text> </g> <g > <title>do_el0_svc (1 samples, 0.34%)</title><rect x="283.9" y="613" width="4.0" height="15.0" fill="rgb(250,50,31)" rx="2" ry="2" /> <text x="286.86" y="623.5" ></text> </g> <g > <title>v3d_cl_ensure_space_with_branch (1 samples, 0.34%)</title><rect x="344.3" y="677" width="4.0" height="15.0" fill="rgb(207,55,1)" rx="2" ry="2" /> <text x="347.27" y="687.5" ></text> </g> <g > <title>read_more_events (3 samples, 1.02%)</title><rect x="34.2" y="853" width="12.0" height="15.0" fill="rgb(241,25,42)" rx="2" ry="2" /> <text x="37.16" y="863.5" ></text> </g> <g > <title>el0_svc (2 samples, 0.68%)</title><rect x="839.6" y="885" width="8.1" height="15.0" fill="rgb(248,168,6)" rx="2" ry="2" /> <text x="842.62" y="895.5" ></text> </g> <g > <title>el0_svc_common.constprop.0 (2 samples, 0.68%)</title><rect x="300.0" y="581" width="8.0" height="15.0" fill="rgb(227,203,50)" rx="2" ry="2" /> <text x="302.97" y="591.5" ></text> </g> <g > <title>xf86libinput_handle_motion (7 samples, 2.39%)</title><rect x="46.2" y="885" width="28.2" height="15.0" fill="rgb(243,220,43)" rx="2" ry="2" /> <text x="49.25" y="895.5" >x..</text> </g> <g > <title>el1_interrupt (1 samples, 0.34%)</title><rect x="408.7" y="741" width="4.0" height="15.0" fill="rgb(241,137,11)" rx="2" ry="2" /> <text x="411.70" y="751.5" ></text> </g> <g > <title>glamor_copy_cpu_fbo (3 samples, 1.02%)</title><rect x="247.6" y="789" width="12.1" height="15.0" fill="rgb(234,21,1)" rx="2" ry="2" /> <text x="250.61" y="799.5" ></text> </g> <g > <title>futex_wait_queue_me (1 samples, 0.34%)</title><rect x="771.2" y="325" width="4.0" height="15.0" fill="rgb(236,207,54)" rx="2" ry="2" /> <text x="774.16" y="335.5" ></text> </g> <g > <title>DeliverOneEvent (2 samples, 0.68%)</title><rect x="267.7" y="837" width="8.1" height="15.0" fill="rgb(242,175,31)" rx="2" ry="2" /> <text x="270.75" y="847.5" ></text> </g> <g > <title>inotify_poll (1 samples, 0.34%)</title><rect x="807.4" y="709" width="4.0" height="15.0" fill="rgb(253,68,52)" rx="2" ry="2" /> <text x="810.41" y="719.5" ></text> </g> <g > <title>add_wait_queue (2 samples, 0.68%)</title><rect x="146.9" y="693" width="8.1" height="15.0" fill="rgb(238,213,22)" rx="2" ry="2" /> <text x="149.93" y="703.5" ></text> </g> <g > <title>drm_ioctl (3 samples, 1.02%)</title><rect x="155.0" y="469" width="12.1" height="15.0" fill="rgb(224,130,36)" rx="2" ry="2" /> <text x="157.98" y="479.5" ></text> </g> <g > <title>__schedule (3 samples, 1.02%)</title><rect x="1057.1" y="885" width="12.1" height="15.0" fill="rgb(229,107,27)" rx="2" ry="2" /> <text x="1060.10" y="895.5" ></text> </g> <g > <title>QEvent::~QEvent@plt (1 samples, 0.34%)</title><rect x="932.3" y="965" width="4.0" height="15.0" fill="rgb(215,44,13)" rx="2" ry="2" /> <text x="935.25" y="975.5" ></text> </g> <g > <title>xf86_crtc_load_cursor_argb (2 samples, 0.68%)</title><rect x="275.8" y="645" width="8.1" height="15.0" fill="rgb(236,6,37)" rx="2" ry="2" /> <text x="278.80" y="655.5" ></text> </g> <g > <title>xf86_driver_load_cursor_argb (3 samples, 1.02%)</title><rect x="155.0" y="677" width="12.1" height="15.0" fill="rgb(220,33,8)" rx="2" ry="2" /> <text x="157.98" y="687.5" ></text> </g> <g > <title>el0_svc (2 samples, 0.68%)</title><rect x="1173.9" y="741" width="8.0" height="15.0" fill="rgb(228,98,22)" rx="2" ry="2" /> <text x="1176.89" y="751.5" ></text> </g> <g > <title>rpi_firmware_property_list (1 samples, 0.34%)</title><rect x="275.8" y="197" width="4.0" height="15.0" fill="rgb(254,47,52)" rx="2" ry="2" /> <text x="278.80" y="207.5" ></text> </g> <g > <title>compPaintChildrenToWindow (1 samples, 0.34%)</title><rect x="344.3" y="885" width="4.0" height="15.0" fill="rgb(214,55,9)" rx="2" ry="2" /> <text x="347.27" y="895.5" ></text> </g> <g > <title>XdgIconLoaderEngine::paint (1 samples, 0.34%)</title><rect x="650.3" y="549" width="4.1" height="15.0" fill="rgb(220,110,30)" rx="2" ry="2" /> <text x="653.34" y="559.5" ></text> </g> <g > <title>drm_is_current_master (1 samples, 0.34%)</title><rect x="159.0" y="421" width="4.0" height="15.0" fill="rgb(205,86,48)" rx="2" ry="2" /> <text x="162.01" y="431.5" ></text> </g> <g > <title>drm_ioctl_kernel (1 samples, 0.34%)</title><rect x="243.6" y="517" width="4.0" height="15.0" fill="rgb(231,61,46)" rx="2" ry="2" /> <text x="246.58" y="527.5" ></text> </g> <g > <title>el0_svc (1 samples, 0.34%)</title><rect x="473.1" y="757" width="4.1" height="15.0" fill="rgb(246,162,0)" rx="2" ry="2" /> <text x="476.14" y="767.5" ></text> </g> <g > <title>el0_svc (1 samples, 0.34%)</title><rect x="295.9" y="597" width="4.1" height="15.0" fill="rgb(213,221,0)" rx="2" ry="2" /> <text x="298.94" y="607.5" ></text> </g> <g > <title>InputThreadNotifyPipe (1 samples, 0.34%)</title><rect x="372.5" y="901" width="4.0" height="15.0" fill="rgb(210,69,3)" rx="2" ry="2" /> <text x="375.46" y="911.5" ></text> </g> <g > <title>el0_svc (1 samples, 0.34%)</title><rect x="344.3" y="533" width="4.0" height="15.0" fill="rgb(230,178,42)" rx="2" ry="2" /> <text x="347.27" y="543.5" ></text> </g> <g > <title>do_el0_svc (1 samples, 0.34%)</title><rect x="1169.9" y="741" width="4.0" height="15.0" fill="rgb(241,170,10)" rx="2" ry="2" /> <text x="1172.86" y="751.5" ></text> </g> <g > <title>WindowHasNewCursor (4 samples, 1.37%)</title><rect x="155.0" y="901" width="16.1" height="15.0" fill="rgb(213,14,18)" rx="2" ry="2" /> <text x="157.98" y="911.5" ></text> </g> <g > <title>el0_svc (1 samples, 0.34%)</title><rect x="243.6" y="613" width="4.0" height="15.0" fill="rgb(206,153,27)" rx="2" ry="2" /> <text x="246.58" y="623.5" ></text> </g> <g > <title>sock_write_iter (1 samples, 0.34%)</title><rect x="175.1" y="677" width="4.0" height="15.0" fill="rgb(212,42,38)" rx="2" ry="2" /> <text x="178.12" y="687.5" ></text> </g> <g > <title>el0t_64_sync (6 samples, 2.05%)</title><rect x="46.2" y="629" width="24.2" height="15.0" fill="rgb(214,126,2)" rx="2" ry="2" /> <text x="49.25" y="639.5" >e..</text> </g> <g > <title>cpu_startup_entry (28 samples, 9.56%)</title><rect x="964.5" y="933" width="112.7" height="15.0" fill="rgb(210,67,39)" rx="2" ry="2" /> <text x="967.47" y="943.5" >cpu_startup_e..</text> </g> <g > <title>do_setitimer (2 samples, 0.68%)</title><rect x="352.3" y="773" width="8.1" height="15.0" fill="rgb(208,181,9)" rx="2" ry="2" /> <text x="355.32" y="783.5" ></text> </g> <g > <title>__set_cpus_allowed_ptr_locked (1 samples, 0.34%)</title><rect x="835.6" y="773" width="4.0" height="15.0" fill="rgb(249,39,31)" rx="2" ry="2" /> <text x="838.60" y="783.5" ></text> </g> <g > <title>[libQt5Widgets.so.5.15.2] (1 samples, 0.34%)</title><rect x="755.1" y="725" width="4.0" height="15.0" fill="rgb(212,70,18)" rx="2" ry="2" /> <text x="758.05" y="735.5" ></text> </g> <g > <title>gic_handle_irq (1 samples, 0.34%)</title><rect x="940.3" y="549" width="4.0" height="15.0" fill="rgb(233,43,35)" rx="2" ry="2" /> <text x="943.31" y="559.5" ></text> </g> <g > <title>el0_svc_common.constprop.0 (6 samples, 2.05%)</title><rect x="46.2" y="565" width="24.2" height="15.0" fill="rgb(250,147,47)" rx="2" ry="2" /> <text x="49.25" y="575.5" >e..</text> </g> <g > <title>drm_ioctl (1 samples, 0.34%)</title><rect x="167.1" y="517" width="4.0" height="15.0" fill="rgb(217,180,21)" rx="2" ry="2" /> <text x="170.06" y="527.5" ></text> </g> <g > <title>__arm64_sys_recvmsg (2 samples, 0.68%)</title><rect x="110.7" y="757" width="8.0" height="15.0" fill="rgb(228,21,37)" rx="2" ry="2" /> <text x="113.68" y="767.5" ></text> </g> <g > <title>el1_abort (2 samples, 0.68%)</title><rect x="924.2" y="629" width="8.1" height="15.0" fill="rgb(244,113,2)" rx="2" ry="2" /> <text x="927.20" y="639.5" ></text> </g> <g > <title>__libc_start_main (6 samples, 2.05%)</title><rect x="1161.8" y="981" width="24.2" height="15.0" fill="rgb(239,206,33)" rx="2" ry="2" /> <text x="1164.81" y="991.5" >_..</text> </g> <g > <title>process_one_work (1 samples, 0.34%)</title><rect x="424.8" y="949" width="4.0" height="15.0" fill="rgb(212,186,25)" rx="2" ry="2" /> <text x="427.81" y="959.5" ></text> </g> <g > <title>__ksize (1 samples, 0.34%)</title><rect x="175.1" y="581" width="4.0" height="15.0" fill="rgb(236,14,8)" rx="2" ry="2" /> <text x="178.12" y="591.5" ></text> </g> <g > <title>do_writev (1 samples, 0.34%)</title><rect x="283.9" y="549" width="4.0" height="15.0" fill="rgb(239,119,40)" rx="2" ry="2" /> <text x="286.86" y="559.5" ></text> </g> <g > <title>sock_sendmsg (2 samples, 0.68%)</title><rect x="300.0" y="453" width="8.0" height="15.0" fill="rgb(233,101,7)" rx="2" ry="2" /> <text x="302.97" y="463.5" ></text> </g> <g > <title>g_main_context_iterate (90 samples, 30.72%)</title><rect x="473.1" y="885" width="362.5" height="15.0" fill="rgb(240,181,5)" rx="2" ry="2" /> <text x="476.14" y="895.5" >g_main_context_iterate</text> </g> <g > <title>v3d_clock_down_work (1 samples, 0.34%)</title><rect x="416.8" y="933" width="4.0" height="15.0" fill="rgb(225,144,34)" rx="2" ry="2" /> <text x="419.76" y="943.5" ></text> </g> <g > <title>_hb_ot_shape (1 samples, 0.34%)</title><rect x="642.3" y="469" width="4.0" height="15.0" fill="rgb(213,224,38)" rx="2" ry="2" /> <text x="645.29" y="479.5" ></text> </g> <g > <title>add_to_page_cache_lru (1 samples, 0.34%)</title><rect x="920.2" y="613" width="4.0" height="15.0" fill="rgb(214,28,42)" rx="2" ry="2" /> <text x="923.17" y="623.5" ></text> </g> <g > <title>__arm64_sys_ioctl (17 samples, 5.80%)</title><rect x="847.7" y="821" width="68.4" height="15.0" fill="rgb(221,22,45)" rx="2" ry="2" /> <text x="850.68" y="831.5" >__arm64..</text> </g> <g > <title>[libQt5Widgets.so.5.15.2] (1 samples, 0.34%)</title><rect x="626.2" y="549" width="4.0" height="15.0" fill="rgb(223,141,18)" rx="2" ry="2" /> <text x="629.18" y="559.5" ></text> </g> <g > <title>g_source_ref (1 samples, 0.34%)</title><rect x="827.5" y="837" width="4.1" height="15.0" fill="rgb(215,211,21)" rx="2" ry="2" /> <text x="830.54" y="847.5" ></text> </g> <g > <title>v3d_blit (1 samples, 0.34%)</title><rect x="255.7" y="693" width="4.0" height="15.0" fill="rgb(223,1,14)" rx="2" ry="2" /> <text x="258.67" y="703.5" ></text> </g> <g > <title>xf86CursorSetCursor (4 samples, 1.37%)</title><rect x="155.0" y="773" width="16.1" height="15.0" fill="rgb(205,10,36)" rx="2" ry="2" /> <text x="157.98" y="783.5" ></text> </g> <g > <title>xhci_urb_enqueue (5 samples, 1.71%)</title><rect x="1032.9" y="597" width="20.2" height="15.0" fill="rgb(232,174,30)" rx="2" ry="2" /> <text x="1035.94" y="607.5" ></text> </g> <g > <title>el0t_64_sync_handler (3 samples, 1.02%)</title><rect x="110.7" y="837" width="12.1" height="15.0" fill="rgb(242,88,34)" rx="2" ry="2" /> <text x="113.68" y="847.5" ></text> </g> <g > <title>do_el0_svc (6 samples, 2.05%)</title><rect x="46.2" y="581" width="24.2" height="15.0" fill="rgb(227,14,1)" rx="2" ry="2" /> <text x="49.25" y="591.5" >d..</text> </g> <g > <title>el0t_64_sync_handler (2 samples, 0.68%)</title><rect x="839.6" y="901" width="8.1" height="15.0" fill="rgb(222,31,42)" rx="2" ry="2" /> <text x="842.62" y="911.5" ></text> </g> <g > <title>handle_domain_irq (1 samples, 0.34%)</title><rect x="62.4" y="85" width="4.0" height="15.0" fill="rgb(253,162,53)" rx="2" ry="2" /> <text x="65.35" y="95.5" ></text> </g> <g > <title>[libQt5Gui.so.5.15.2] (32 samples, 10.92%)</title><rect x="477.2" y="661" width="128.8" height="15.0" fill="rgb(225,107,0)" rx="2" ry="2" /> <text x="480.17" y="671.5" >[libQt5Gui.so.5...</text> </g> <g > <title>drmModeSetCursor2 (2 samples, 0.68%)</title><rect x="275.8" y="597" width="8.1" height="15.0" fill="rgb(242,77,1)" rx="2" ry="2" /> <text x="278.80" y="607.5" ></text> </g> <g > <title>el0t_64_irq_handler (1 samples, 0.34%)</title><rect x="940.3" y="629" width="4.0" height="15.0" fill="rgb(211,38,0)" rx="2" ry="2" /> <text x="943.31" y="639.5" ></text> </g> <g > <title>el0t_64_sync_handler (1 samples, 0.34%)</title><rect x="791.3" y="661" width="4.0" height="15.0" fill="rgb(209,201,53)" rx="2" ry="2" /> <text x="794.30" y="671.5" ></text> </g> <g > <title>el0_da (1 samples, 0.34%)</title><rect x="952.4" y="885" width="4.0" height="15.0" fill="rgb(238,206,4)" rx="2" ry="2" /> <text x="955.39" y="895.5" ></text> </g> <g > <title>FlushClient (1 samples, 0.34%)</title><rect x="295.9" y="693" width="4.1" height="15.0" fill="rgb(217,29,54)" rx="2" ry="2" /> <text x="298.94" y="703.5" ></text> </g> <g > <title>el0_svc_common.constprop.0 (1 samples, 0.34%)</title><rect x="771.2" y="405" width="4.0" height="15.0" fill="rgb(254,35,5)" rx="2" ry="2" /> <text x="774.16" y="415.5" ></text> </g> <g > <title>el0t_64_sync_handler (2 samples, 0.68%)</title><rect x="26.1" y="853" width="8.1" height="15.0" fill="rgb(205,122,33)" rx="2" ry="2" /> <text x="29.11" y="863.5" ></text> </g> <g > <title>do_writev (2 samples, 0.68%)</title><rect x="300.0" y="533" width="8.0" height="15.0" fill="rgb(223,83,35)" rx="2" ry="2" /> <text x="302.97" y="543.5" ></text> </g> <g > <title>schedule (1 samples, 0.34%)</title><rect x="956.4" y="949" width="4.0" height="15.0" fill="rgb(207,17,13)" rx="2" ry="2" /> <text x="959.42" y="959.5" ></text> </g> <g > <title>TryClientEvents (1 samples, 0.34%)</title><rect x="283.9" y="757" width="4.0" height="15.0" fill="rgb(253,142,9)" rx="2" ry="2" /> <text x="286.86" y="767.5" ></text> </g> <g > <title>drm_atomic_helper_commit_planes (1 samples, 0.34%)</title><rect x="167.1" y="341" width="4.0" height="15.0" fill="rgb(240,200,24)" rx="2" ry="2" /> <text x="170.06" y="351.5" ></text> </g> <g > <title>memcpy (1 samples, 0.34%)</title><rect x="251.6" y="645" width="4.1" height="15.0" fill="rgb(224,18,20)" rx="2" ry="2" /> <text x="254.64" y="655.5" ></text> </g> <g > <title>hb_ot_shape_internal (1 samples, 0.34%)</title><rect x="638.3" y="437" width="4.0" height="15.0" fill="rgb(235,99,43)" rx="2" ry="2" /> <text x="641.26" y="447.5" ></text> </g> <g > <title>__vm_enough_memory (1 samples, 0.34%)</title><rect x="255.7" y="165" width="4.0" height="15.0" fill="rgb(230,136,49)" rx="2" ry="2" /> <text x="258.67" y="175.5" ></text> </g> <g > <title>[libsystemd-shared-249.so] (1 samples, 0.34%)</title><rect x="1145.7" y="901" width="4.0" height="15.0" fill="rgb(221,213,27)" rx="2" ry="2" /> <text x="1148.70" y="911.5" ></text> </g> <g > <title>raspberrypi_fw_get_rate (1 samples, 0.34%)</title><rect x="960.4" y="805" width="4.1" height="15.0" fill="rgb(253,79,34)" rx="2" ry="2" /> <text x="963.44" y="815.5" ></text> </g> <g > <title>[perf] (24 samples, 8.19%)</title><rect x="835.6" y="965" width="96.7" height="15.0" fill="rgb(232,166,16)" rx="2" ry="2" /> <text x="838.60" y="975.5" >[perf]</text> </g> <g > <title>DoEnterLeaveEvents (3 samples, 1.02%)</title><rect x="287.9" y="837" width="12.1" height="15.0" fill="rgb(249,207,27)" rx="2" ry="2" /> <text x="290.88" y="847.5" ></text> </g> <g > <title>[libQt5Widgets.so.5.15.2] (3 samples, 1.02%)</title><rect x="936.3" y="741" width="12.1" height="15.0" fill="rgb(211,92,1)" rx="2" ry="2" /> <text x="939.28" y="751.5" ></text> </g> <g > <title>cso_multi_draw (1 samples, 0.34%)</title><rect x="344.3" y="741" width="4.0" height="15.0" fill="rgb(223,135,51)" rx="2" ry="2" /> <text x="347.27" y="751.5" ></text> </g> <g > <title>call_on_irq_stack (1 samples, 0.34%)</title><rect x="408.7" y="709" width="4.0" height="15.0" fill="rgb(245,119,54)" rx="2" ry="2" /> <text x="411.70" y="719.5" ></text> </g> <g > <title>iput (1 samples, 0.34%)</title><rect x="1153.8" y="773" width="4.0" height="15.0" fill="rgb(210,114,45)" rx="2" ry="2" /> <text x="1156.75" y="783.5" ></text> </g> <g > <title>[libsystemd-shared-249.so] (1 samples, 0.34%)</title><rect x="1145.7" y="853" width="4.0" height="15.0" fill="rgb(210,28,49)" rx="2" ry="2" /> <text x="1148.70" y="863.5" ></text> </g> <g > <title>[libsystemd-shared-249.so] (1 samples, 0.34%)</title><rect x="1145.7" y="885" width="4.0" height="15.0" fill="rgb(252,134,35)" rx="2" ry="2" /> <text x="1148.70" y="895.5" ></text> </g> <g > <title>QPainter::save (1 samples, 0.34%)</title><rect x="622.2" y="533" width="4.0" height="15.0" fill="rgb(206,26,42)" rx="2" ry="2" /> <text x="625.15" y="543.5" ></text> </g> <g > <title>unix_stream_recvmsg (1 samples, 0.34%)</title><rect x="1173.9" y="613" width="4.0" height="15.0" fill="rgb(207,181,19)" rx="2" ry="2" /> <text x="1176.89" y="623.5" ></text> </g> <g > <title>do_el0_svc (1 samples, 0.34%)</title><rect x="102.6" y="821" width="4.1" height="15.0" fill="rgb(216,202,50)" rx="2" ry="2" /> <text x="105.63" y="831.5" ></text> </g> <g > <title>drm_mode_cursor_universal (1 samples, 0.34%)</title><rect x="163.0" y="405" width="4.1" height="15.0" fill="rgb(207,38,3)" rx="2" ry="2" /> <text x="166.04" y="415.5" ></text> </g> <g > <title>el1h_64_irq_handler (14 samples, 4.78%)</title><rect x="1000.7" y="853" width="56.4" height="15.0" fill="rgb(242,88,32)" rx="2" ry="2" /> <text x="1003.72" y="863.5" >el1h_..</text> </g> <g > <title>el0_svc_common.constprop.0 (1 samples, 0.34%)</title><rect x="255.7" y="373" width="4.0" height="15.0" fill="rgb(246,198,35)" rx="2" ry="2" /> <text x="258.67" y="383.5" ></text> </g> <g > <title>el0t_64_sync (1 samples, 0.34%)</title><rect x="287.9" y="629" width="4.0" height="15.0" fill="rgb(237,54,25)" rx="2" ry="2" /> <text x="290.88" y="639.5" ></text> </g> <g > <title>__setplane_atomic (1 samples, 0.34%)</title><rect x="275.8" y="341" width="4.0" height="15.0" fill="rgb(212,139,15)" rx="2" ry="2" /> <text x="278.80" y="351.5" ></text> </g> <g > <title>sugov_work (1 samples, 0.34%)</title><rect x="960.4" y="949" width="4.1" height="15.0" fill="rgb(230,37,42)" rx="2" ry="2" /> <text x="963.44" y="959.5" ></text> </g> <g > <title>doShmPutImage (3 samples, 1.02%)</title><rect x="247.6" y="917" width="12.1" height="15.0" fill="rgb(242,69,21)" rx="2" ry="2" /> <text x="250.61" y="927.5" ></text> </g> <g > <title>unix_stream_sendmsg (1 samples, 0.34%)</title><rect x="283.9" y="453" width="4.0" height="15.0" fill="rgb(213,47,42)" rx="2" ry="2" /> <text x="286.86" y="463.5" ></text> </g> <g > <title>el0t_64_sync (1 samples, 0.34%)</title><rect x="255.7" y="437" width="4.0" height="15.0" fill="rgb(230,155,7)" rx="2" ry="2" /> <text x="258.67" y="447.5" ></text> </g> <g > <title>do_page_fault (1 samples, 0.34%)</title><rect x="952.4" y="853" width="4.0" height="15.0" fill="rgb(207,26,49)" rx="2" ry="2" /> <text x="955.39" y="863.5" ></text> </g> <g > <title>[libQt5Gui.so.5.15.2] (1 samples, 0.34%)</title><rect x="614.1" y="453" width="4.0" height="15.0" fill="rgb(206,30,4)" rx="2" ry="2" /> <text x="617.10" y="463.5" ></text> </g> <g > <title>QWidget::window (1 samples, 0.34%)</title><rect x="936.3" y="709" width="4.0" height="15.0" fill="rgb(230,214,9)" rx="2" ry="2" /> <text x="939.28" y="719.5" ></text> </g> <g > <title>vfs_writev (1 samples, 0.34%)</title><rect x="295.9" y="501" width="4.1" height="15.0" fill="rgb(232,151,29)" rx="2" ry="2" /> <text x="298.94" y="511.5" ></text> </g> <g > <title>xf86ScreenSetCursor (2 samples, 0.68%)</title><rect x="275.8" y="693" width="8.1" height="15.0" fill="rgb(240,115,49)" rx="2" ry="2" /> <text x="278.80" y="703.5" ></text> </g> <g > <title>fsnotify_perm.part.0 (1 samples, 0.34%)</title><rect x="34.2" y="629" width="4.0" height="15.0" fill="rgb(209,45,48)" rx="2" ry="2" /> <text x="37.16" y="639.5" ></text> </g> <g > <title>schedule (1 samples, 0.34%)</title><rect x="142.9" y="709" width="4.0" height="15.0" fill="rgb(228,161,27)" rx="2" ry="2" /> <text x="145.90" y="719.5" ></text> </g> <g > <title>_atomic_dec_and_lock (1 samples, 0.34%)</title><rect x="1153.8" y="757" width="4.0" height="15.0" fill="rgb(217,126,35)" rx="2" ry="2" /> <text x="1156.75" y="767.5" ></text> </g> <g > <title>invoke_syscall (1 samples, 0.34%)</title><rect x="255.7" y="357" width="4.0" height="15.0" fill="rgb(250,82,23)" rx="2" ry="2" /> <text x="258.67" y="367.5" ></text> </g> <g > <title>glamor_upload_boxes (3 samples, 1.02%)</title><rect x="247.6" y="773" width="12.1" height="15.0" fill="rgb(253,47,37)" rx="2" ry="2" /> <text x="250.61" y="783.5" ></text> </g> <g > <title>QXcbWindow::handleMouseEvent (1 samples, 0.34%)</title><rect x="791.3" y="757" width="4.0" height="15.0" fill="rgb(205,193,54)" rx="2" ry="2" /> <text x="794.30" y="767.5" ></text> </g> <g > <title>__fput (1 samples, 0.34%)</title><rect x="1153.8" y="837" width="4.0" height="15.0" fill="rgb(224,3,37)" rx="2" ry="2" /> <text x="1156.75" y="847.5" ></text> </g> <g > <title>ret_from_fork (2 samples, 0.68%)</title><rect x="956.4" y="997" width="8.1" height="15.0" fill="rgb(247,46,54)" rx="2" ry="2" /> <text x="959.42" y="1007.5" ></text> </g> <g > <title>gic_handle_irq (14 samples, 4.78%)</title><rect x="1000.7" y="789" width="56.4" height="15.0" fill="rgb(237,104,31)" rx="2" ry="2" /> <text x="1003.72" y="799.5" >gic_h..</text> </g> <g > <title>el0_svc (1 samples, 0.34%)</title><rect x="775.2" y="389" width="4.0" height="15.0" fill="rgb(225,53,33)" rx="2" ry="2" /> <text x="778.19" y="399.5" ></text> </g> <g > <title>_XtWaitForSomething (3 samples, 1.02%)</title><rect x="1173.9" y="917" width="12.1" height="15.0" fill="rgb(205,179,10)" rx="2" ry="2" /> <text x="1176.89" y="927.5" ></text> </g> <g > <title>_copy_from_iter (1 samples, 0.34%)</title><rect x="300.0" y="405" width="4.0" height="15.0" fill="rgb(252,219,41)" rx="2" ry="2" /> <text x="302.97" y="415.5" ></text> </g> <g > <title>do_el0_svc (4 samples, 1.37%)</title><rect x="916.1" y="821" width="16.2" height="15.0" fill="rgb(249,135,46)" rx="2" ry="2" /> <text x="919.14" y="831.5" ></text> </g> <g > <title>QTextLine::draw (1 samples, 0.34%)</title><rect x="638.3" y="581" width="4.0" height="15.0" fill="rgb(232,57,32)" rx="2" ry="2" /> <text x="641.26" y="591.5" ></text> </g> <g > <title>QGuiApplicationPrivate::processEnterEvent (1 samples, 0.34%)</title><rect x="440.9" y="805" width="4.0" height="15.0" fill="rgb(207,210,18)" rx="2" ry="2" /> <text x="443.92" y="815.5" ></text> </g> <g > <title>DeliverEventsToWindow (1 samples, 0.34%)</title><rect x="291.9" y="757" width="4.0" height="15.0" fill="rgb(206,100,38)" rx="2" ry="2" /> <text x="294.91" y="767.5" ></text> </g> <g > <title>xcb_flush (1 samples, 0.34%)</title><rect x="944.3" y="645" width="4.1" height="15.0" fill="rgb(238,64,48)" rx="2" ry="2" /> <text x="947.33" y="655.5" ></text> </g> <g > <title>el0t_64_sync_handler (5 samples, 1.71%)</title><rect x="316.1" y="853" width="20.1" height="15.0" fill="rgb(229,167,0)" rx="2" ry="2" /> <text x="319.08" y="863.5" ></text> </g> <g > <title>sd_event_dispatch (2 samples, 0.68%)</title><rect x="1145.7" y="933" width="8.1" height="15.0" fill="rgb(239,134,54)" rx="2" ry="2" /> <text x="1148.70" y="943.5" ></text> </g> <g > <title>drm_gem_fb_init_with_funcs (1 samples, 0.34%)</title><rect x="279.8" y="293" width="4.1" height="15.0" fill="rgb(222,21,15)" rx="2" ry="2" /> <text x="282.83" y="303.5" ></text> </g> <g > <title>vfs_write (4 samples, 1.37%)</title><rect x="916.1" y="741" width="16.2" height="15.0" fill="rgb(231,130,26)" rx="2" ry="2" /> <text x="919.14" y="751.5" ></text> </g> <g > <title>QEventDispatcherGlib::processEvents (4 samples, 1.37%)</title><rect x="936.3" y="917" width="16.1" height="15.0" fill="rgb(216,108,29)" rx="2" ry="2" /> <text x="939.28" y="927.5" ></text> </g> <g > <title>__arm64_sys_writev (1 samples, 0.34%)</title><rect x="175.1" y="757" width="4.0" height="15.0" fill="rgb(216,80,31)" rx="2" ry="2" /> <text x="178.12" y="767.5" ></text> </g> <g > <title>util_copy_rect (2 samples, 0.68%)</title><rect x="235.5" y="741" width="8.1" height="15.0" fill="rgb(217,196,7)" rx="2" ry="2" /> <text x="238.53" y="751.5" ></text> </g> <g > <title>el0t_64_sync_handler (6 samples, 2.05%)</title><rect x="74.4" y="901" width="24.2" height="15.0" fill="rgb(244,189,26)" rx="2" ry="2" /> <text x="77.44" y="911.5" >e..</text> </g> <g > <title>el0_svc_common.constprop.0 (1 samples, 0.34%)</title><rect x="126.8" y="773" width="4.0" height="15.0" fill="rgb(242,99,10)" rx="2" ry="2" /> <text x="129.79" y="783.5" ></text> </g> <g > <title>__ioctl (1 samples, 0.34%)</title><rect x="344.3" y="581" width="4.0" height="15.0" fill="rgb(221,15,7)" rx="2" ry="2" /> <text x="347.27" y="591.5" ></text> </g> <g > <title>kworker/1:3-eve (1 samples, 0.34%)</title><rect x="416.8" y="1013" width="4.0" height="15.0" fill="rgb(211,166,43)" rx="2" ry="2" /> <text x="419.76" y="1023.5" ></text> </g> <g > <title>__do_softirq (1 samples, 0.34%)</title><rect x="62.4" y="37" width="4.0" height="15.0" fill="rgb(232,91,40)" rx="2" ry="2" /> <text x="65.35" y="47.5" ></text> </g> <g > <title>g_main_dispatch (80 samples, 27.30%)</title><rect x="477.2" y="853" width="322.2" height="15.0" fill="rgb(226,187,24)" rx="2" ry="2" /> <text x="480.17" y="863.5" >g_main_dispatch</text> </g> <g > <title>util_copy_box (1 samples, 0.34%)</title><rect x="251.6" y="677" width="4.1" height="15.0" fill="rgb(220,156,40)" rx="2" ry="2" /> <text x="254.64" y="687.5" ></text> </g> <g > <title>el1h_64_irq (14 samples, 4.78%)</title><rect x="1000.7" y="869" width="56.4" height="15.0" fill="rgb(210,59,44)" rx="2" ry="2" /> <text x="1003.72" y="879.5" >el1h_..</text> </g> <g > <title>Fm::FolderItemDelegate::paint (5 samples, 1.71%)</title><rect x="606.0" y="549" width="20.2" height="15.0" fill="rgb(225,169,0)" rx="2" ry="2" /> <text x="609.04" y="559.5" ></text> </g> <g > <title>[libQt5Widgets.so.5.15.2] (1 samples, 0.34%)</title><rect x="626.2" y="517" width="4.0" height="15.0" fill="rgb(216,33,53)" rx="2" ry="2" /> <text x="629.18" y="527.5" ></text> </g> <g > <title>generic_perform_write (2 samples, 0.68%)</title><rect x="916.1" y="677" width="8.1" height="15.0" fill="rgb(233,182,36)" rx="2" ry="2" /> <text x="919.14" y="687.5" ></text> </g> <g > <title>shmem_read_mapping_page_gfp (1 samples, 0.34%)</title><rect x="255.7" y="213" width="4.0" height="15.0" fill="rgb(250,28,51)" rx="2" ry="2" /> <text x="258.67" y="223.5" ></text> </g> <g > <title>xf86SetCursor (4 samples, 1.37%)</title><rect x="155.0" y="757" width="16.1" height="15.0" fill="rgb(222,173,14)" rx="2" ry="2" /> <text x="157.98" y="767.5" ></text> </g> <g > <title>do_iter_readv_writev (1 samples, 0.34%)</title><rect x="295.9" y="469" width="4.1" height="15.0" fill="rgb(228,174,43)" rx="2" ry="2" /> <text x="298.94" y="479.5" ></text> </g> <g > <title>g_main_dispatch (3 samples, 1.02%)</title><rect x="936.3" y="853" width="12.1" height="15.0" fill="rgb(254,202,52)" rx="2" ry="2" /> <text x="939.28" y="863.5" ></text> </g> <g > <title>hrtimer_start_range_ns (1 samples, 0.34%)</title><rect x="960.4" y="725" width="4.1" height="15.0" fill="rgb(210,38,13)" rx="2" ry="2" /> <text x="963.44" y="735.5" ></text> </g> <g > <title>hb_shape_plan_execute (1 samples, 0.34%)</title><rect x="638.3" y="485" width="4.0" height="15.0" fill="rgb(232,64,53)" rx="2" ry="2" /> <text x="641.26" y="495.5" ></text> </g> <g > <title>QApplicationPrivate::notify_helper (1 samples, 0.34%)</title><rect x="634.2" y="549" width="4.1" height="15.0" fill="rgb(235,127,29)" rx="2" ry="2" /> <text x="637.23" y="559.5" ></text> </g> <g > <title>blk_mq_dispatch_rq_list (1 samples, 0.34%)</title><rect x="420.8" y="853" width="4.0" height="15.0" fill="rgb(244,135,48)" rx="2" ry="2" /> <text x="423.78" y="863.5" ></text> </g> <g > <title>BlockHandler (2 samples, 0.68%)</title><rect x="336.2" y="917" width="8.1" height="15.0" fill="rgb(213,9,6)" rx="2" ry="2" /> <text x="339.21" y="927.5" ></text> </g> <g > <title>QCoreApplication::notifyInternal2 (6 samples, 2.05%)</title><rect x="763.1" y="709" width="24.2" height="15.0" fill="rgb(238,156,32)" rx="2" ry="2" /> <text x="766.11" y="719.5" >Q..</text> </g> <g > <title>hb_shape_full (1 samples, 0.34%)</title><rect x="606.0" y="437" width="4.1" height="15.0" fill="rgb(208,29,15)" rx="2" ry="2" /> <text x="609.04" y="447.5" ></text> </g> <g > <title>gic_handle_irq (1 samples, 0.34%)</title><rect x="1121.5" y="821" width="4.1" height="15.0" fill="rgb(219,103,39)" rx="2" ry="2" /> <text x="1124.54" y="831.5" ></text> </g> <g > <title>unix_stream_sendmsg (1 samples, 0.34%)</title><rect x="747.0" y="341" width="4.0" height="15.0" fill="rgb(208,228,12)" rx="2" ry="2" /> <text x="750.00" y="351.5" ></text> </g> <g > <title>u_default_texture_subdata (13 samples, 4.44%)</title><rect x="195.3" y="773" width="52.3" height="15.0" fill="rgb(230,156,38)" rx="2" ry="2" /> <text x="198.26" y="783.5" >u_def..</text> </g> <g > <title>drm_ioctl (1 samples, 0.34%)</title><rect x="255.7" y="325" width="4.0" height="15.0" fill="rgb(227,85,54)" rx="2" ry="2" /> <text x="258.67" y="335.5" ></text> </g> <g > <title>el0t_64_sync_handler (3 samples, 1.02%)</title><rect x="155.0" y="565" width="12.1" height="15.0" fill="rgb(236,10,3)" rx="2" ry="2" /> <text x="157.98" y="575.5" ></text> </g> <g > <title>[libQt5Widgets.so.5.15.2] (1 samples, 0.34%)</title><rect x="626.2" y="533" width="4.0" height="15.0" fill="rgb(208,70,44)" rx="2" ry="2" /> <text x="629.18" y="543.5" ></text> </g> <g > <title>el0_svc_common.constprop.0 (2 samples, 0.68%)</title><rect x="1173.9" y="709" width="8.0" height="15.0" fill="rgb(246,124,3)" rx="2" ry="2" /> <text x="1176.89" y="719.5" ></text> </g> <g > <title>walk_stackframe (1 samples, 0.34%)</title><rect x="110.7" y="613" width="4.0" height="15.0" fill="rgb(223,83,18)" rx="2" ry="2" /> <text x="113.68" y="623.5" ></text> </g> <g > <title>_xcb_conn_wait (1 samples, 0.34%)</title><rect x="775.2" y="485" width="4.0" height="15.0" fill="rgb(253,79,11)" rx="2" ry="2" /> <text x="778.19" y="495.5" ></text> </g> <g > <title>iovec_from_user.part.0 (1 samples, 0.34%)</title><rect x="944.3" y="357" width="4.1" height="15.0" fill="rgb(236,157,18)" rx="2" ry="2" /> <text x="947.33" y="367.5" ></text> </g> <g > <title>el0t_64_sync (1 samples, 0.34%)</title><rect x="344.3" y="565" width="4.0" height="15.0" fill="rgb(229,188,40)" rx="2" ry="2" /> <text x="347.27" y="575.5" ></text> </g> <g > <title>ep_done_scan (1 samples, 0.34%)</title><rect x="86.5" y="741" width="4.0" height="15.0" fill="rgb(210,109,44)" rx="2" ry="2" /> <text x="89.52" y="751.5" ></text> </g> <g > <title>QTextEngine::shapeTextWithHarfbuzzNG (1 samples, 0.34%)</title><rect x="606.0" y="453" width="4.1" height="15.0" fill="rgb(237,14,31)" rx="2" ry="2" /> <text x="609.04" y="463.5" ></text> </g> <g > <title>el0_svc_common.constprop.0 (2 samples, 0.68%)</title><rect x="26.1" y="805" width="8.1" height="15.0" fill="rgb(252,89,15)" rx="2" ry="2" /> <text x="29.11" y="815.5" ></text> </g> <g > <title>_hb_ot_shape (1 samples, 0.34%)</title><rect x="638.3" y="405" width="4.0" height="15.0" fill="rgb(229,74,19)" rx="2" ry="2" /> <text x="641.26" y="415.5" ></text> </g> <g > <title>schedule_hrtimeout_range_clock (2 samples, 0.68%)</title><rect x="815.5" y="693" width="8.0" height="15.0" fill="rgb(235,201,42)" rx="2" ry="2" /> <text x="818.46" y="703.5" ></text> </g> <g > <title>drm_atomic_helper_update_plane (1 samples, 0.34%)</title><rect x="167.1" y="421" width="4.0" height="15.0" fill="rgb(250,204,3)" rx="2" ry="2" /> <text x="170.06" y="431.5" ></text> </g> <g > <title>QEventLoop::exec (1 samples, 0.34%)</title><rect x="440.9" y="933" width="4.0" height="15.0" fill="rgb(249,222,0)" rx="2" ry="2" /> <text x="443.92" y="943.5" ></text> </g> <g > <title>preempt_count_sub (1 samples, 0.34%)</title><rect x="416.8" y="757" width="4.0" height="15.0" fill="rgb(253,72,19)" rx="2" ry="2" /> <text x="419.76" y="767.5" ></text> </g> <g > <title>TryClientEvents (1 samples, 0.34%)</title><rect x="267.7" y="741" width="4.1" height="15.0" fill="rgb(237,136,21)" rx="2" ry="2" /> <text x="270.75" y="751.5" ></text> </g> <g > <title>__fget_light (1 samples, 0.34%)</title><rect x="847.7" y="805" width="4.0" height="15.0" fill="rgb(229,68,49)" rx="2" ry="2" /> <text x="850.68" y="815.5" ></text> </g> <g > <title>drm_atomic_commit (1 samples, 0.34%)</title><rect x="163.0" y="357" width="4.1" height="15.0" fill="rgb(250,37,54)" rx="2" ry="2" /> <text x="166.04" y="367.5" ></text> </g> <g > <title>QApplicationPrivate::notify_helper (6 samples, 2.05%)</title><rect x="606.0" y="629" width="24.2" height="15.0" fill="rgb(237,203,42)" rx="2" ry="2" /> <text x="609.04" y="639.5" >Q..</text> </g> <g > <title>preempt_count_sub (1 samples, 0.34%)</title><rect x="1169.9" y="581" width="4.0" height="15.0" fill="rgb(230,132,8)" rx="2" ry="2" /> <text x="1172.86" y="591.5" ></text> </g> <g > <title>__libc_recvmsg (1 samples, 0.34%)</title><rect x="444.9" y="773" width="4.1" height="15.0" fill="rgb(231,87,49)" rx="2" ry="2" /> <text x="447.95" y="783.5" ></text> </g> <g > <title>__arm64_sys_epoll_pwait (2 samples, 0.68%)</title><rect x="26.1" y="773" width="8.1" height="15.0" fill="rgb(208,172,18)" rx="2" ry="2" /> <text x="29.11" y="783.5" ></text> </g> <g > <title>__GI___writev (1 samples, 0.34%)</title><rect x="175.1" y="885" width="4.0" height="15.0" fill="rgb(243,101,2)" rx="2" ry="2" /> <text x="178.12" y="895.5" ></text> </g> <g > <title>QWidgetPrivate::paintBackground (32 samples, 10.92%)</title><rect x="477.2" y="725" width="128.8" height="15.0" fill="rgb(217,55,39)" rx="2" ry="2" /> <text x="480.17" y="735.5" >QWidgetPrivate::..</text> </g> <g > <title>idr_alloc (1 samples, 0.34%)</title><rect x="279.8" y="245" width="4.1" height="15.0" fill="rgb(209,159,44)" rx="2" ry="2" /> <text x="282.83" y="255.5" ></text> </g> <g > <title>el0t_64_sync_handler (1 samples, 0.34%)</title><rect x="287.9" y="613" width="4.0" height="15.0" fill="rgb(216,169,21)" rx="2" ry="2" /> <text x="290.88" y="623.5" ></text> </g> <g > <title>perf_event_for_each_child (16 samples, 5.46%)</title><rect x="851.7" y="773" width="64.4" height="15.0" fill="rgb(242,130,49)" rx="2" ry="2" /> <text x="854.71" y="783.5" >perf_ev..</text> </g> <g > <title>_raw_spin_unlock_irqrestore (1 samples, 0.34%)</title><rect x="287.9" y="357" width="4.0" height="15.0" fill="rgb(205,22,46)" rx="2" ry="2" /> <text x="290.88" y="367.5" ></text> </g> <g > <title>[perf] (24 samples, 8.19%)</title><rect x="835.6" y="997" width="96.7" height="15.0" fill="rgb(228,48,21)" rx="2" ry="2" /> <text x="838.60" y="1007.5" >[perf]</text> </g> <g > <title>QEventLoop::exec (4 samples, 1.37%)</title><rect x="936.3" y="933" width="16.1" height="15.0" fill="rgb(211,138,50)" rx="2" ry="2" /> <text x="939.28" y="943.5" ></text> </g> <g > <title>drm_ioctl_kernel (2 samples, 0.68%)</title><rect x="159.0" y="453" width="8.1" height="15.0" fill="rgb(233,38,42)" rx="2" ry="2" /> <text x="162.01" y="463.5" ></text> </g> <g > <title>poll_for_response (3 samples, 1.02%)</title><rect x="1161.8" y="869" width="12.1" height="15.0" fill="rgb(223,148,44)" rx="2" ry="2" /> <text x="1164.81" y="879.5" ></text> </g> <g > <title>do_notify_resume (1 samples, 0.34%)</title><rect x="823.5" y="789" width="4.0" height="15.0" fill="rgb(230,65,27)" rx="2" ry="2" /> <text x="826.52" y="799.5" ></text> </g> <g > <title>el0t_64_sync (2 samples, 0.68%)</title><rect x="275.8" y="533" width="8.1" height="15.0" fill="rgb(211,82,29)" rx="2" ry="2" /> <text x="278.80" y="543.5" ></text> </g> <g > <title>xf86CursorSetCursor (2 samples, 0.68%)</title><rect x="275.8" y="725" width="8.1" height="15.0" fill="rgb(206,148,46)" rx="2" ry="2" /> <text x="278.80" y="735.5" ></text> </g> <g > <title>elf_dynamic_do_Rela (1 samples, 0.34%)</title><rect x="952.4" y="949" width="4.0" height="15.0" fill="rgb(220,20,20)" rx="2" ry="2" /> <text x="955.39" y="959.5" ></text> </g> <g > <title>WriteEventsToClient (1 samples, 0.34%)</title><rect x="291.9" y="693" width="4.0" height="15.0" fill="rgb(248,115,4)" rx="2" ry="2" /> <text x="294.91" y="703.5" ></text> </g> <g > <title>do_el0_svc (1 samples, 0.34%)</title><rect x="295.9" y="581" width="4.1" height="15.0" fill="rgb(205,205,49)" rx="2" ry="2" /> <text x="298.94" y="591.5" ></text> </g> <g > <title>do_el0_svc (17 samples, 5.80%)</title><rect x="847.7" y="869" width="68.4" height="15.0" fill="rgb(221,203,0)" rx="2" ry="2" /> <text x="850.68" y="879.5" >do_el0_..</text> </g> <g > <title>_xcb_in_read (2 samples, 0.68%)</title><rect x="1165.8" y="821" width="8.1" height="15.0" fill="rgb(229,47,48)" rx="2" ry="2" /> <text x="1168.84" y="831.5" ></text> </g> <g > <title>do_el0_svc (3 samples, 1.02%)</title><rect x="110.7" y="805" width="12.1" height="15.0" fill="rgb(249,31,38)" rx="2" ry="2" /> <text x="113.68" y="815.5" ></text> </g> <g > <title>drm_sched_main (1 samples, 0.34%)</title><rect x="1157.8" y="965" width="4.0" height="15.0" fill="rgb(219,33,44)" rx="2" ry="2" /> <text x="1160.78" y="975.5" ></text> </g> <g > <title>vfs_writev (1 samples, 0.34%)</title><rect x="175.1" y="725" width="4.0" height="15.0" fill="rgb(244,4,48)" rx="2" ry="2" /> <text x="178.12" y="735.5" ></text> </g> <g > <title>libinput_dispatch (5 samples, 1.71%)</title><rect x="26.1" y="901" width="20.1" height="15.0" fill="rgb(225,23,18)" rx="2" ry="2" /> <text x="29.11" y="911.5" ></text> </g> <g > <title>return_address (1 samples, 0.34%)</title><rect x="110.7" y="629" width="4.0" height="15.0" fill="rgb(224,158,49)" rx="2" ry="2" /> <text x="113.68" y="639.5" ></text> </g> <g > <title>drm_atomic_helper_commit_modeset_enables (1 samples, 0.34%)</title><rect x="163.0" y="293" width="4.1" height="15.0" fill="rgb(214,171,10)" rx="2" ry="2" /> <text x="166.04" y="303.5" ></text> </g> <g > <title>__GI___writev (1 samples, 0.34%)</title><rect x="291.9" y="645" width="4.0" height="15.0" fill="rgb(241,70,22)" rx="2" ry="2" /> <text x="294.91" y="655.5" ></text> </g> <g > <title>IsFloating (1 samples, 0.34%)</title><rect x="70.4" y="821" width="4.0" height="15.0" fill="rgb(233,188,12)" rx="2" ry="2" /> <text x="73.41" y="831.5" ></text> </g> <g > <title>el0t_64_sync (1 samples, 0.34%)</title><rect x="944.3" y="517" width="4.1" height="15.0" fill="rgb(210,183,34)" rx="2" ry="2" /> <text x="947.33" y="527.5" ></text> </g> <g > <title>do_iter_readv_writev (1 samples, 0.34%)</title><rect x="775.2" y="261" width="4.0" height="15.0" fill="rgb(216,136,40)" rx="2" ry="2" /> <text x="778.19" y="271.5" ></text> </g> <g > <title>CoreEnterLeaveEvent (1 samples, 0.34%)</title><rect x="287.9" y="789" width="4.0" height="15.0" fill="rgb(254,100,45)" rx="2" ry="2" /> <text x="290.88" y="799.5" ></text> </g> <g > <title>vfs_write (1 samples, 0.34%)</title><rect x="791.3" y="549" width="4.0" height="15.0" fill="rgb(234,16,44)" rx="2" ry="2" /> <text x="794.30" y="559.5" ></text> </g> <g > <title>el0t_64_sync (1 samples, 0.34%)</title><rect x="295.9" y="629" width="4.1" height="15.0" fill="rgb(244,49,28)" rx="2" ry="2" /> <text x="298.94" y="639.5" ></text> </g> <g > <title>arch_stack_walk (1 samples, 0.34%)</title><rect x="26.1" y="661" width="4.0" height="15.0" fill="rgb(217,171,23)" rx="2" ry="2" /> <text x="29.11" y="671.5" ></text> </g> <g > <title>el0t_64_sync_handler (1 samples, 0.34%)</title><rect x="948.4" y="821" width="4.0" height="15.0" fill="rgb(205,35,1)" rx="2" ry="2" /> <text x="951.36" y="831.5" ></text> </g> <g > <title>QGuiApplicationPrivate::processMouseEvent (1 samples, 0.34%)</title><rect x="932.3" y="981" width="4.0" height="15.0" fill="rgb(245,204,9)" rx="2" ry="2" /> <text x="935.25" y="991.5" ></text> </g> <g > <title>____sys_recvmsg (1 samples, 0.34%)</title><rect x="1173.9" y="629" width="4.0" height="15.0" fill="rgb(220,177,17)" rx="2" ry="2" /> <text x="1176.89" y="639.5" ></text> </g> <g > <title>invoke_syscall (2 samples, 0.68%)</title><rect x="1173.9" y="693" width="8.0" height="15.0" fill="rgb(253,214,26)" rx="2" ry="2" /> <text x="1176.89" y="703.5" ></text> </g> <g > <title>gdbus (1 samples, 0.34%)</title><rect x="412.7" y="1013" width="4.1" height="15.0" fill="rgb(251,83,44)" rx="2" ry="2" /> <text x="415.73" y="1023.5" ></text> </g> <g > <title>do_el0_svc (1 samples, 0.34%)</title><rect x="267.7" y="597" width="4.1" height="15.0" fill="rgb(211,68,53)" rx="2" ry="2" /> <text x="270.75" y="607.5" ></text> </g> <g > <title>el0t_64_sync (17 samples, 5.80%)</title><rect x="847.7" y="917" width="68.4" height="15.0" fill="rgb(220,97,12)" rx="2" ry="2" /> <text x="850.68" y="927.5" >el0t_64..</text> </g> <g > <title>cpu_startup_entry (17 samples, 5.80%)</title><rect x="1077.2" y="965" width="68.5" height="15.0" fill="rgb(220,33,8)" rx="2" ry="2" /> <text x="1080.24" y="975.5" >cpu_sta..</text> </g> <g > <title>invoke_syscall (1 samples, 0.34%)</title><rect x="283.9" y="581" width="4.0" height="15.0" fill="rgb(244,8,23)" rx="2" ry="2" /> <text x="286.86" y="591.5" ></text> </g> <g > <title>sock_wfree (1 samples, 0.34%)</title><rect x="1173.9" y="533" width="4.0" height="15.0" fill="rgb(220,56,36)" rx="2" ry="2" /> <text x="1176.89" y="543.5" ></text> </g> <g > <title>__sched_setaffinity (1 samples, 0.34%)</title><rect x="835.6" y="789" width="4.0" height="15.0" fill="rgb(212,80,51)" rx="2" ry="2" /> <text x="838.60" y="799.5" ></text> </g> <g > <title>[libQt5Widgets.so.5.15.2] (68 samples, 23.21%)</title><rect x="477.2" y="757" width="273.8" height="15.0" fill="rgb(247,156,5)" rx="2" ry="2" /> <text x="480.17" y="767.5" >[libQt5Widgets.so.5.15.2]</text> </g> <g > <title>_int_free (1 samples, 0.34%)</title><rect x="795.3" y="805" width="4.1" height="15.0" fill="rgb(214,133,3)" rx="2" ry="2" /> <text x="798.32" y="815.5" ></text> </g> <g > <title>QSortFilterProxyModel::data (1 samples, 0.34%)</title><rect x="618.1" y="517" width="4.1" height="15.0" fill="rgb(221,205,11)" rx="2" ry="2" /> <text x="621.12" y="527.5" ></text> </g> <g > <title>el0t_64_sync (1 samples, 0.34%)</title><rect x="791.3" y="677" width="4.0" height="15.0" fill="rgb(216,171,19)" rx="2" ry="2" /> <text x="794.30" y="687.5" ></text> </g> <g > <title>QRasterPaintEngine::fillRect (21 samples, 7.17%)</title><rect x="662.4" y="613" width="84.6" height="15.0" fill="rgb(210,63,9)" rx="2" ry="2" /> <text x="665.42" y="623.5" >QRasterPa..</text> </g> <g > <title>xcb_query_pointer (1 samples, 0.34%)</title><rect x="767.1" y="565" width="4.1" height="15.0" fill="rgb(208,34,13)" rx="2" ry="2" /> <text x="770.13" y="575.5" ></text> </g> <g > <title>QApplicationPrivate::sendMouseEvent (6 samples, 2.05%)</title><rect x="763.1" y="725" width="24.2" height="15.0" fill="rgb(212,101,2)" rx="2" ry="2" /> <text x="766.11" y="735.5" >Q..</text> </g> <g > <title>affine_move_task (1 samples, 0.34%)</title><rect x="835.6" y="757" width="4.0" height="15.0" fill="rgb(243,195,40)" rx="2" ry="2" /> <text x="838.60" y="767.5" ></text> </g> <g > <title>arch_call_rest_init (28 samples, 9.56%)</title><rect x="964.5" y="965" width="112.7" height="15.0" fill="rgb(245,22,22)" rx="2" ry="2" /> <text x="967.47" y="975.5" >arch_call_res..</text> </g> <g > <title>InputReady (12 samples, 4.10%)</title><rect x="26.1" y="933" width="48.3" height="15.0" fill="rgb(221,63,41)" rx="2" ry="2" /> <text x="29.11" y="943.5" >Inpu..</text> </g> <g > <title>hid_irq_in (8 samples, 2.73%)</title><rect x="1020.9" y="645" width="32.2" height="15.0" fill="rgb(233,96,34)" rx="2" ry="2" /> <text x="1023.85" y="655.5" >hi..</text> </g> <g > <title>preempt_count_sub (2 samples, 0.68%)</title><rect x="58.3" y="213" width="8.1" height="15.0" fill="rgb(224,150,1)" rx="2" ry="2" /> <text x="61.33" y="223.5" ></text> </g> <g > <title>__lock_text_start (1 samples, 0.34%)</title><rect x="110.7" y="661" width="4.0" height="15.0" fill="rgb(230,208,1)" rx="2" ry="2" /> <text x="113.68" y="671.5" ></text> </g> <g > <title>g_main_context_poll (7 samples, 2.39%)</title><rect x="799.4" y="869" width="28.1" height="15.0" fill="rgb(209,3,5)" rx="2" ry="2" /> <text x="802.35" y="879.5" >g..</text> </g> <g > <title>QCoreApplication::notifyInternal2 (1 samples, 0.34%)</title><rect x="634.2" y="565" width="4.1" height="15.0" fill="rgb(233,225,48)" rx="2" ry="2" /> <text x="637.23" y="575.5" ></text> </g> <g > <title>g_signal_handlers_destroy (1 samples, 0.34%)</title><rect x="412.7" y="773" width="4.1" height="15.0" fill="rgb(215,109,52)" rx="2" ry="2" /> <text x="415.73" y="783.5" ></text> </g> <g > <title>QXcbConnection::processXcbEvents (3 samples, 1.02%)</title><rect x="787.3" y="821" width="12.1" height="15.0" fill="rgb(251,148,11)" rx="2" ry="2" /> <text x="790.27" y="831.5" ></text> </g> <g > <title>_start (1 samples, 0.34%)</title><rect x="440.9" y="997" width="4.0" height="15.0" fill="rgb(248,50,9)" rx="2" ry="2" /> <text x="443.92" y="1007.5" ></text> </g> <g > <title>__GI___sched_setaffinity_new (2 samples, 0.68%)</title><rect x="839.6" y="933" width="8.1" height="15.0" fill="rgb(229,0,1)" rx="2" ry="2" /> <text x="842.62" y="943.5" ></text> </g> <g > <title>QWidget::event (6 samples, 2.05%)</title><rect x="606.0" y="581" width="24.2" height="15.0" fill="rgb(236,121,50)" rx="2" ry="2" /> <text x="609.04" y="591.5" >Q..</text> </g> <g > <title>cmd_record (24 samples, 8.19%)</title><rect x="835.6" y="981" width="96.7" height="15.0" fill="rgb(246,65,46)" rx="2" ry="2" /> <text x="838.60" y="991.5" >cmd_record</text> </g> <g > <title>__irq_exit_rcu (1 samples, 0.34%)</title><rect x="1121.5" y="773" width="4.1" height="15.0" fill="rgb(214,171,27)" rx="2" ry="2" /> <text x="1124.54" y="783.5" ></text> </g> <g > <title>__setplane_atomic (1 samples, 0.34%)</title><rect x="163.0" y="389" width="4.1" height="15.0" fill="rgb(239,207,37)" rx="2" ry="2" /> <text x="166.04" y="399.5" ></text> </g> <g > <title>hb_lazy_loader_t<OT::GPOS_accelerator_t, hb_face_lazy_loader_t<OT::GPOS_accelerator_t, 23u>, hb_face_t, 23u, OT::GPOS_accelerator_t>::get (1 samples, 0.34%)</title><rect x="606.0" y="261" width="4.1" height="15.0" fill="rgb(254,52,53)" rx="2" ry="2" /> <text x="609.04" y="271.5" ></text> </g> <g > <title>el0_svc_common.constprop.0 (1 samples, 0.34%)</title><rect x="287.9" y="565" width="4.0" height="15.0" fill="rgb(217,39,44)" rx="2" ry="2" /> <text x="290.88" y="575.5" ></text> </g> <g > <title>write_vec (1 samples, 0.34%)</title><rect x="775.2" y="469" width="4.0" height="15.0" fill="rgb(209,89,35)" rx="2" ry="2" /> <text x="778.19" y="479.5" ></text> </g> <g > <title>el0_interrupt (1 samples, 0.34%)</title><rect x="428.8" y="917" width="4.1" height="15.0" fill="rgb(218,183,6)" rx="2" ry="2" /> <text x="431.84" y="927.5" ></text> </g> <g > <title>el0_svc (17 samples, 5.80%)</title><rect x="847.7" y="885" width="68.4" height="15.0" fill="rgb(247,26,10)" rx="2" ry="2" /> <text x="850.68" y="895.5" >el0_svc</text> </g> <g > <title>[libQt5Widgets.so.5.15.2] (1 samples, 0.34%)</title><rect x="755.1" y="741" width="4.0" height="15.0" fill="rgb(218,18,22)" rx="2" ry="2" /> <text x="758.05" y="751.5" ></text> </g> <g > <title>QWindow::mapFromGlobal (1 samples, 0.34%)</title><rect x="779.2" y="597" width="4.0" height="15.0" fill="rgb(219,175,31)" rx="2" ry="2" /> <text x="782.22" y="607.5" ></text> </g> <g > <title>__ioctl (1 samples, 0.34%)</title><rect x="167.1" y="645" width="4.0" height="15.0" fill="rgb(210,0,22)" rx="2" ry="2" /> <text x="170.06" y="655.5" ></text> </g> <g > <title>el0_svc (1 samples, 0.34%)</title><rect x="771.2" y="437" width="4.0" height="15.0" fill="rgb(227,203,14)" rx="2" ry="2" /> <text x="774.16" y="447.5" ></text> </g> <g > <title>mmc_blk_rw_wait (1 samples, 0.34%)</title><rect x="420.8" y="805" width="4.0" height="15.0" fill="rgb(241,23,35)" rx="2" ry="2" /> <text x="423.78" y="815.5" ></text> </g> <g > <title>el0t_64_sync (2 samples, 0.68%)</title><rect x="449.0" y="869" width="8.0" height="15.0" fill="rgb(227,16,10)" rx="2" ry="2" /> <text x="451.98" y="879.5" ></text> </g> <g > <title>sock_write_iter (1 samples, 0.34%)</title><rect x="775.2" y="245" width="4.0" height="15.0" fill="rgb(247,195,27)" rx="2" ry="2" /> <text x="778.19" y="255.5" ></text> </g> <g > <title>CursorDisplayCursor (4 samples, 1.37%)</title><rect x="155.0" y="853" width="16.1" height="15.0" fill="rgb(226,109,34)" rx="2" ry="2" /> <text x="157.98" y="863.5" ></text> </g> <g > <title>do_writev (1 samples, 0.34%)</title><rect x="175.1" y="741" width="4.0" height="15.0" fill="rgb(235,85,21)" rx="2" ry="2" /> <text x="178.12" y="751.5" ></text> </g> <g > <title>xf86DriverLoadCursorARGB (3 samples, 1.02%)</title><rect x="155.0" y="725" width="12.1" height="15.0" fill="rgb(245,27,41)" rx="2" ry="2" /> <text x="157.98" y="735.5" ></text> </g> <g > <title>affinity__cleanup (1 samples, 0.34%)</title><rect x="835.6" y="949" width="4.0" height="15.0" fill="rgb(228,121,48)" rx="2" ry="2" /> <text x="838.60" y="959.5" ></text> </g> <g > <title>drmIoctl (1 samples, 0.34%)</title><rect x="167.1" y="661" width="4.0" height="15.0" fill="rgb(253,149,16)" rx="2" ry="2" /> <text x="170.06" y="671.5" ></text> </g> <g > <title>el0t_64_sync (9 samples, 3.07%)</title><rect x="376.5" y="885" width="36.2" height="15.0" fill="rgb(229,160,15)" rx="2" ry="2" /> <text x="379.48" y="895.5" >el0..</text> </g> <g > <title>ep_done_scan (2 samples, 0.68%)</title><rect x="78.5" y="773" width="8.0" height="15.0" fill="rgb(234,53,39)" rx="2" ry="2" /> <text x="81.46" y="783.5" ></text> </g> <g > <title>_XSERVTransSocketWritev (1 samples, 0.34%)</title><rect x="267.7" y="693" width="4.1" height="15.0" fill="rgb(254,156,51)" rx="2" ry="2" /> <text x="270.75" y="703.5" ></text> </g> <g > <title>QWindowPrivate::globalPosition (1 samples, 0.34%)</title><rect x="779.2" y="581" width="4.0" height="15.0" fill="rgb(218,85,51)" rx="2" ry="2" /> <text x="782.22" y="591.5" ></text> </g> <g > <title>mmc_blk_mq_issue_rq (1 samples, 0.34%)</title><rect x="420.8" y="821" width="4.0" height="15.0" fill="rgb(218,152,9)" rx="2" ry="2" /> <text x="423.78" y="831.5" ></text> </g> <g > <title>ProcQueryPointer (3 samples, 1.02%)</title><rect x="171.1" y="933" width="12.1" height="15.0" fill="rgb(233,7,39)" rx="2" ry="2" /> <text x="174.09" y="943.5" ></text> </g> <g > <title>return_address (1 samples, 0.34%)</title><rect x="332.2" y="549" width="4.0" height="15.0" fill="rgb(241,136,44)" rx="2" ry="2" /> <text x="335.18" y="559.5" ></text> </g> <g > <title>el0t_64_sync_handler (2 samples, 0.68%)</title><rect x="1173.9" y="757" width="8.0" height="15.0" fill="rgb(228,49,30)" rx="2" ry="2" /> <text x="1176.89" y="767.5" ></text> </g> <g > <title>_raw_spin_unlock_irqrestore (4 samples, 1.37%)</title><rect x="1037.0" y="581" width="16.1" height="15.0" fill="rgb(234,54,33)" rx="2" ry="2" /> <text x="1039.96" y="591.5" ></text> </g> <g > <title>hb_shape_plan_execute (1 samples, 0.34%)</title><rect x="642.3" y="517" width="4.0" height="15.0" fill="rgb(251,103,25)" rx="2" ry="2" /> <text x="645.29" y="527.5" ></text> </g> <g > <title>call_on_irq_stack (1 samples, 0.34%)</title><rect x="62.4" y="117" width="4.0" height="15.0" fill="rgb(215,203,15)" rx="2" ry="2" /> <text x="65.35" y="127.5" ></text> </g> <g > <title>[libQt5Core.so.5.15.2] (1 samples, 0.34%)</title><rect x="618.1" y="469" width="4.1" height="15.0" fill="rgb(214,128,23)" rx="2" ry="2" /> <text x="621.12" y="479.5" ></text> </g> <g > <title>mbox_send_message (1 samples, 0.34%)</title><rect x="960.4" y="757" width="4.1" height="15.0" fill="rgb(225,212,42)" rx="2" ry="2" /> <text x="963.44" y="767.5" ></text> </g> <g > <title>WriteEventsToClient (2 samples, 0.68%)</title><rect x="300.0" y="725" width="8.0" height="15.0" fill="rgb(208,59,6)" rx="2" ry="2" /> <text x="302.97" y="735.5" ></text> </g> <g > <title>sock_write_iter (1 samples, 0.34%)</title><rect x="283.9" y="485" width="4.0" height="15.0" fill="rgb(229,222,26)" rx="2" ry="2" /> <text x="286.86" y="495.5" ></text> </g> <g > <title>ProcessDeviceEvent (3 samples, 1.02%)</title><rect x="263.7" y="869" width="12.1" height="15.0" fill="rgb(252,208,1)" rx="2" ry="2" /> <text x="266.72" y="879.5" ></text> </g> <g > <title>__GI___libc_malloc (1 samples, 0.34%)</title><rect x="122.8" y="869" width="4.0" height="15.0" fill="rgb(207,206,33)" rx="2" ry="2" /> <text x="125.76" y="879.5" ></text> </g> <g > <title>glamor_composite_with_shader (1 samples, 0.34%)</title><rect x="344.3" y="773" width="4.0" height="15.0" fill="rgb(250,124,47)" rx="2" ry="2" /> <text x="347.27" y="783.5" ></text> </g> <g > <title>_XSERVTransSocketWritev (1 samples, 0.34%)</title><rect x="295.9" y="677" width="4.1" height="15.0" fill="rgb(234,177,30)" rx="2" ry="2" /> <text x="298.94" y="687.5" ></text> </g> <g > <title>v3d_render_blit (1 samples, 0.34%)</title><rect x="255.7" y="677" width="4.0" height="15.0" fill="rgb(215,11,45)" rx="2" ry="2" /> <text x="258.67" y="687.5" ></text> </g> <g > <title>gic_handle_irq (1 samples, 0.34%)</title><rect x="428.8" y="869" width="4.1" height="15.0" fill="rgb(205,164,39)" rx="2" ry="2" /> <text x="431.84" y="879.5" ></text> </g> <g > <title>__GI___writev (1 samples, 0.34%)</title><rect x="944.3" y="549" width="4.1" height="15.0" fill="rgb(231,116,36)" rx="2" ry="2" /> <text x="947.33" y="559.5" ></text> </g> <g > <title>tracer_preempt_on (1 samples, 0.34%)</title><rect x="356.3" y="725" width="4.1" height="15.0" fill="rgb(216,217,7)" rx="2" ry="2" /> <text x="359.35" y="735.5" ></text> </g> <g > <title>__audit_syscall_exit (1 samples, 0.34%)</title><rect x="948.4" y="741" width="4.0" height="15.0" fill="rgb(234,47,26)" rx="2" ry="2" /> <text x="951.36" y="751.5" ></text> </g> <g > <title>_start (64 samples, 21.84%)</title><rect x="155.0" y="997" width="257.7" height="15.0" fill="rgb(219,27,2)" rx="2" ry="2" /> <text x="157.98" y="1007.5" >_start</text> </g> <g > <title>el0_svc (1 samples, 0.34%)</title><rect x="255.7" y="405" width="4.0" height="15.0" fill="rgb(216,96,30)" rx="2" ry="2" /> <text x="258.67" y="415.5" ></text> </g> <g > <title>raspberrypi_fw_set_rate (1 samples, 0.34%)</title><rect x="416.8" y="869" width="4.0" height="15.0" fill="rgb(230,229,29)" rx="2" ry="2" /> <text x="419.76" y="879.5" ></text> </g> <g > <title>do_iter_readv_writev (2 samples, 0.68%)</title><rect x="300.0" y="485" width="8.0" height="15.0" fill="rgb(209,72,2)" rx="2" ry="2" /> <text x="302.97" y="495.5" ></text> </g> <g > <title>el0_svc_common.constprop.0 (1 samples, 0.34%)</title><rect x="243.6" y="581" width="4.0" height="15.0" fill="rgb(225,176,43)" rx="2" ry="2" /> <text x="246.58" y="591.5" ></text> </g> <g > <title>DeliverDeviceEvents (3 samples, 1.02%)</title><rect x="263.7" y="853" width="12.1" height="15.0" fill="rgb(213,197,48)" rx="2" ry="2" /> <text x="266.72" y="863.5" ></text> </g> <g > <title>finish_task_switch.isra.0 (2 samples, 0.68%)</title><rect x="815.5" y="645" width="8.0" height="15.0" fill="rgb(254,8,24)" rx="2" ry="2" /> <text x="818.46" y="655.5" ></text> </g> <g > <title>drm_atomic_helper_commit (6 samples, 2.05%)</title><rect x="46.2" y="389" width="24.2" height="15.0" fill="rgb(245,70,22)" rx="2" ry="2" /> <text x="49.25" y="399.5" >d..</text> </g> <g > <title>QTextEngine::shapeTextWithHarfbuzzNG (1 samples, 0.34%)</title><rect x="638.3" y="517" width="4.0" height="15.0" fill="rgb(215,82,2)" rx="2" ry="2" /> <text x="641.26" y="527.5" ></text> </g> <g > <title>__do_softirq (1 samples, 0.34%)</title><rect x="940.3" y="485" width="4.0" height="15.0" fill="rgb(245,80,51)" rx="2" ry="2" /> <text x="943.31" y="495.5" ></text> </g> <g > <title>QWidgetPrivate::sendPaintEvent (6 samples, 2.05%)</title><rect x="606.0" y="661" width="24.2" height="15.0" fill="rgb(252,94,29)" rx="2" ry="2" /> <text x="609.04" y="671.5" >Q..</text> </g> <g > <title>drm_atomic_helper_update_plane (1 samples, 0.34%)</title><rect x="163.0" y="373" width="4.1" height="15.0" fill="rgb(211,88,45)" rx="2" ry="2" /> <text x="166.04" y="383.5" ></text> </g> <g > <title>_raw_write_unlock_irq (2 samples, 0.68%)</title><rect x="26.1" y="725" width="8.1" height="15.0" fill="rgb(251,80,0)" rx="2" ry="2" /> <text x="29.11" y="735.5" ></text> </g> <g > <title>el0_svc_common.constprop.0 (1 samples, 0.34%)</title><rect x="295.9" y="565" width="4.1" height="15.0" fill="rgb(219,179,18)" rx="2" ry="2" /> <text x="298.94" y="575.5" ></text> </g> <g > <title>glamor_put_image_gl (15 samples, 5.12%)</title><rect x="187.2" y="885" width="60.4" height="15.0" fill="rgb(205,223,0)" rx="2" ry="2" /> <text x="190.20" y="895.5" >glamor..</text> </g> <g > <title>el0t_64_sync_handler (1 samples, 0.34%)</title><rect x="344.3" y="549" width="4.0" height="15.0" fill="rgb(220,90,19)" rx="2" ry="2" /> <text x="347.27" y="559.5" ></text> </g> <g > <title>__wake_up_common_lock (1 samples, 0.34%)</title><rect x="332.2" y="581" width="4.0" height="15.0" fill="rgb(242,61,8)" rx="2" ry="2" /> <text x="335.18" y="591.5" ></text> </g> <g > <title>drmModeSetCursor2 (3 samples, 1.02%)</title><rect x="155.0" y="645" width="12.1" height="15.0" fill="rgb(207,74,53)" rx="2" ry="2" /> <text x="157.98" y="655.5" ></text> </g> <g > <title>do_notify_resume (2 samples, 0.68%)</title><rect x="90.5" y="869" width="8.1" height="15.0" fill="rgb(233,210,38)" rx="2" ry="2" /> <text x="93.55" y="879.5" ></text> </g> <g > <title>__GI___clock_gettime (1 samples, 0.34%)</title><rect x="469.1" y="997" width="4.0" height="15.0" fill="rgb(253,66,7)" rx="2" ry="2" /> <text x="472.11" y="1007.5" ></text> </g> <g > <title>perf_evsel__enable_cpu (17 samples, 5.80%)</title><rect x="847.7" y="949" width="68.4" height="15.0" fill="rgb(205,129,36)" rx="2" ry="2" /> <text x="850.68" y="959.5" >perf_ev..</text> </g> <g > <title>__handle_mm_fault (1 samples, 0.34%)</title><rect x="952.4" y="821" width="4.0" height="15.0" fill="rgb(234,21,17)" rx="2" ry="2" /> <text x="955.39" y="831.5" ></text> </g> <g > <title>__aarch64_ldadd4_acq_rel (1 samples, 0.34%)</title><rect x="831.6" y="821" width="4.0" height="15.0" fill="rgb(230,78,10)" rx="2" ry="2" /> <text x="834.57" y="831.5" ></text> </g> <g > <title>walk_stackframe (1 samples, 0.34%)</title><rect x="384.5" y="677" width="4.1" height="15.0" fill="rgb(220,44,23)" rx="2" ry="2" /> <text x="387.54" y="687.5" ></text> </g> <g > <title>do_iter_write (1 samples, 0.34%)</title><rect x="291.9" y="469" width="4.0" height="15.0" fill="rgb(252,172,39)" rx="2" ry="2" /> <text x="294.91" y="479.5" ></text> </g> <g > <title>__schedule (2 samples, 0.68%)</title><rect x="815.5" y="661" width="8.0" height="15.0" fill="rgb(206,168,52)" rx="2" ry="2" /> <text x="818.46" y="671.5" ></text> </g> <g > <title>hb_nonnull_ptr_t<hb_blob_t>::operator (1 samples, 0.34%)</title><rect x="638.3" y="325" width="4.0" height="15.0" fill="rgb(216,43,23)" rx="2" ry="2" /> <text x="641.26" y="335.5" ></text> </g> <g > <title>positionSprite (6 samples, 2.05%)</title><rect x="46.2" y="821" width="24.2" height="15.0" fill="rgb(243,129,47)" rx="2" ry="2" /> <text x="49.25" y="831.5" >p..</text> </g> <g > <title>rpi_firmware_property_list (5 samples, 1.71%)</title><rect x="50.3" y="293" width="20.1" height="15.0" fill="rgb(208,173,34)" rx="2" ry="2" /> <text x="53.27" y="303.5" ></text> </g> <g > <title>blitter_draw_tex (1 samples, 0.34%)</title><rect x="255.7" y="613" width="4.0" height="15.0" fill="rgb(248,136,54)" rx="2" ry="2" /> <text x="258.67" y="623.5" ></text> </g> <g > <title>[libQt5Core.so.5.15.2] (1 samples, 0.34%)</title><rect x="751.0" y="789" width="4.1" height="15.0" fill="rgb(205,120,35)" rx="2" ry="2" /> <text x="754.02" y="799.5" ></text> </g> <g > <title>FlushClient (2 samples, 0.68%)</title><rect x="300.0" y="709" width="8.0" height="15.0" fill="rgb(239,167,29)" rx="2" ry="2" /> <text x="302.97" y="719.5" ></text> </g> <g > <title>read (1 samples, 0.34%)</title><rect x="372.5" y="869" width="4.0" height="15.0" fill="rgb(224,132,1)" rx="2" ry="2" /> <text x="375.46" y="879.5" ></text> </g> <g > <title>__GI___writev (1 samples, 0.34%)</title><rect x="295.9" y="645" width="4.1" height="15.0" fill="rgb(206,224,18)" rx="2" ry="2" /> <text x="298.94" y="655.5" ></text> </g> <g > <title>sock_wfree (1 samples, 0.34%)</title><rect x="332.2" y="629" width="4.0" height="15.0" fill="rgb(243,99,9)" rx="2" ry="2" /> <text x="335.18" y="639.5" ></text> </g> <g > <title>Fm::FolderModel::data (1 samples, 0.34%)</title><rect x="646.3" y="565" width="4.0" height="15.0" fill="rgb(249,120,49)" rx="2" ry="2" /> <text x="649.31" y="575.5" ></text> </g> <g > <title>drm_gem_shmem_get_pages_sgt (1 samples, 0.34%)</title><rect x="255.7" y="261" width="4.0" height="15.0" fill="rgb(239,14,16)" rx="2" ry="2" /> <text x="258.67" y="271.5" ></text> </g> <g > <title>hb_shape_full (1 samples, 0.34%)</title><rect x="642.3" y="533" width="4.0" height="15.0" fill="rgb(238,223,7)" rx="2" ry="2" /> <text x="645.29" y="543.5" ></text> </g> <g > <title>walk_stackframe (2 samples, 0.68%)</title><rect x="26.1" y="677" width="8.1" height="15.0" fill="rgb(226,11,33)" rx="2" ry="2" /> <text x="29.11" y="687.5" ></text> </g> <g > <title>perf_mmap__push (4 samples, 1.37%)</title><rect x="916.1" y="949" width="16.2" height="15.0" fill="rgb(222,132,38)" rx="2" ry="2" /> <text x="919.14" y="959.5" ></text> </g> <g > <title>el0t_64_sync (1 samples, 0.34%)</title><rect x="771.2" y="469" width="4.0" height="15.0" fill="rgb(209,195,43)" rx="2" ry="2" /> <text x="774.16" y="479.5" ></text> </g> <g > <title>el0_svc_common.constprop.0 (2 samples, 0.68%)</title><rect x="360.4" y="821" width="8.0" height="15.0" fill="rgb(237,35,6)" rx="2" ry="2" /> <text x="363.38" y="831.5" ></text> </g> <g > <title>_raw_spin_unlock_irqrestore (1 samples, 0.34%)</title><rect x="960.4" y="709" width="4.1" height="15.0" fill="rgb(221,188,49)" rx="2" ry="2" /> <text x="963.44" y="719.5" ></text> </g> <g > <title>TryClientEvents (1 samples, 0.34%)</title><rect x="287.9" y="741" width="4.0" height="15.0" fill="rgb(217,171,14)" rx="2" ry="2" /> <text x="290.88" y="751.5" ></text> </g> <g > <title>__kernel_clock_gettime (1 samples, 0.34%)</title><rect x="469.1" y="981" width="4.0" height="15.0" fill="rgb(246,144,46)" rx="2" ry="2" /> <text x="472.11" y="991.5" ></text> </g> <g > <title>g_main_context_check (1 samples, 0.34%)</title><rect x="444.9" y="901" width="4.1" height="15.0" fill="rgb(240,180,25)" rx="2" ry="2" /> <text x="447.95" y="911.5" ></text> </g> <g > <title>unix_destruct_scm (1 samples, 0.34%)</title><rect x="114.7" y="629" width="4.0" height="15.0" fill="rgb(239,152,37)" rx="2" ry="2" /> <text x="117.71" y="639.5" ></text> </g> <g > <title>drm_atomic_commit (1 samples, 0.34%)</title><rect x="275.8" y="309" width="4.0" height="15.0" fill="rgb(217,171,38)" rx="2" ry="2" /> <text x="278.80" y="319.5" ></text> </g> <g > <title>CoreEnterLeaveEvent (1 samples, 0.34%)</title><rect x="291.9" y="773" width="4.0" height="15.0" fill="rgb(220,22,24)" rx="2" ry="2" /> <text x="294.91" y="783.5" ></text> </g> <g > <title>el0_svc (1 samples, 0.34%)</title><rect x="1169.9" y="757" width="4.0" height="15.0" fill="rgb(254,58,18)" rx="2" ry="2" /> <text x="1172.86" y="767.5" ></text> </g> <g > <title>miPointerDisplayCursor (2 samples, 0.68%)</title><rect x="275.8" y="789" width="8.1" height="15.0" fill="rgb(223,126,19)" rx="2" ry="2" /> <text x="278.80" y="799.5" ></text> </g> <g > <title>el0_svc_common.constprop.0 (1 samples, 0.34%)</title><rect x="267.7" y="581" width="4.1" height="15.0" fill="rgb(214,133,49)" rx="2" ry="2" /> <text x="270.75" y="591.5" ></text> </g> <g > <title>ProcShmPutImage (19 samples, 6.48%)</title><rect x="183.2" y="933" width="76.5" height="15.0" fill="rgb(248,186,3)" rx="2" ry="2" /> <text x="186.17" y="943.5" >ProcShmP..</text> </g> <g > <title>el0_svc (2 samples, 0.68%)</title><rect x="275.8" y="501" width="8.1" height="15.0" fill="rgb(221,52,29)" rx="2" ry="2" /> <text x="278.80" y="511.5" ></text> </g> <g > <title>el0t_64_sync_handler (1 samples, 0.34%)</title><rect x="102.6" y="853" width="4.1" height="15.0" fill="rgb(230,116,40)" rx="2" ry="2" /> <text x="105.63" y="863.5" ></text> </g> <g > <title>[libQt5Widgets.so.5.15.2] (3 samples, 1.02%)</title><rect x="936.3" y="757" width="12.1" height="15.0" fill="rgb(238,9,30)" rx="2" ry="2" /> <text x="939.28" y="767.5" ></text> </g> <g > <title>[systemd-journald] (2 samples, 0.68%)</title><rect x="1145.7" y="997" width="8.1" height="15.0" fill="rgb(241,108,0)" rx="2" ry="2" /> <text x="1148.70" y="1007.5" ></text> </g> <g > <title>texsubimage_err (3 samples, 1.02%)</title><rect x="247.6" y="741" width="12.1" height="15.0" fill="rgb(230,180,50)" rx="2" ry="2" /> <text x="250.61" y="751.5" ></text> </g> <g > <title>do_el0_svc (2 samples, 0.68%)</title><rect x="352.3" y="837" width="8.1" height="15.0" fill="rgb(222,130,54)" rx="2" ry="2" /> <text x="355.32" y="847.5" ></text> </g> <g > <title>_XSERVTransSocketWritev (1 samples, 0.34%)</title><rect x="175.1" y="901" width="4.0" height="15.0" fill="rgb(242,169,22)" rx="2" ry="2" /> <text x="178.12" y="911.5" ></text> </g> <g > <title>do_writev (1 samples, 0.34%)</title><rect x="944.3" y="405" width="4.1" height="15.0" fill="rgb(208,125,29)" rx="2" ry="2" /> <text x="947.33" y="415.5" ></text> </g> <g > <title>_mesa_image_row_stride (1 samples, 0.34%)</title><rect x="191.2" y="773" width="4.1" height="15.0" fill="rgb(219,100,47)" rx="2" ry="2" /> <text x="194.23" y="783.5" ></text> </g> <g > <title>glamor_copy (3 samples, 1.02%)</title><rect x="247.6" y="837" width="12.1" height="15.0" fill="rgb(244,134,53)" rx="2" ry="2" /> <text x="250.61" y="847.5" ></text> </g> <g > <title>QCursor::pos (3 samples, 1.02%)</title><rect x="767.1" y="613" width="12.1" height="15.0" fill="rgb(230,26,20)" rx="2" ry="2" /> <text x="770.13" y="623.5" ></text> </g> <g > <title>g_object_unref (1 samples, 0.34%)</title><rect x="412.7" y="805" width="4.1" height="15.0" fill="rgb(216,69,0)" rx="2" ry="2" /> <text x="415.73" y="815.5" ></text> </g> <g > <title>__ioctl (3 samples, 1.02%)</title><rect x="155.0" y="597" width="12.1" height="15.0" fill="rgb(246,227,34)" rx="2" ry="2" /> <text x="157.98" y="607.5" ></text> </g> <g > <title>Fm::IconInfo::internalQicon (1 samples, 0.34%)</title><rect x="658.4" y="485" width="4.0" height="15.0" fill="rgb(246,179,19)" rx="2" ry="2" /> <text x="661.40" y="495.5" ></text> </g> <g > <title>QPainter::drawText (1 samples, 0.34%)</title><rect x="432.9" y="997" width="4.0" height="15.0" fill="rgb(220,167,11)" rx="2" ry="2" /> <text x="435.87" y="1007.5" ></text> </g> <g > <title>__arm64_sys_ppoll (2 samples, 0.68%)</title><rect x="449.0" y="773" width="8.0" height="15.0" fill="rgb(247,218,11)" rx="2" ry="2" /> <text x="451.98" y="783.5" ></text> </g> <g > <title>drm_mode_cursor_universal (2 samples, 0.68%)</title><rect x="275.8" y="357" width="8.1" height="15.0" fill="rgb(208,223,39)" rx="2" ry="2" /> <text x="278.80" y="367.5" ></text> </g> <g > <title>DeliverEventToWindowMask (2 samples, 0.68%)</title><rect x="267.7" y="789" width="8.1" height="15.0" fill="rgb(250,127,18)" rx="2" ry="2" /> <text x="270.75" y="799.5" ></text> </g> <g > <title>el1_interrupt (1 samples, 0.34%)</title><rect x="62.4" y="149" width="4.0" height="15.0" fill="rgb(229,114,12)" rx="2" ry="2" /> <text x="65.35" y="159.5" ></text> </g> <g > <title>DRM_IOCTL (3 samples, 1.02%)</title><rect x="155.0" y="629" width="12.1" height="15.0" fill="rgb(206,9,39)" rx="2" ry="2" /> <text x="157.98" y="639.5" ></text> </g> <g > <title>run_rebalance_domains (1 samples, 0.34%)</title><rect x="1121.5" y="741" width="4.1" height="15.0" fill="rgb(225,49,42)" rx="2" ry="2" /> <text x="1124.54" y="751.5" ></text> </g> <g > <title>write_vec (1 samples, 0.34%)</title><rect x="747.0" y="597" width="4.0" height="15.0" fill="rgb(213,146,21)" rx="2" ry="2" /> <text x="750.00" y="607.5" ></text> </g> <g > <title>DRM_IOCTL (1 samples, 0.34%)</title><rect x="167.1" y="677" width="4.0" height="15.0" fill="rgb(226,161,10)" rx="2" ry="2" /> <text x="170.06" y="687.5" ></text> </g> <g > <title>unix_stream_recvmsg (1 samples, 0.34%)</title><rect x="1169.9" y="629" width="4.0" height="15.0" fill="rgb(242,50,9)" rx="2" ry="2" /> <text x="1172.86" y="639.5" ></text> </g> <g > <title>all (293 samples, 100%)</title><rect x="10.0" y="1029" width="1180.0" height="15.0" fill="rgb(254,32,52)" rx="2" ry="2" /> <text x="13.00" y="1039.5" ></text> </g> <g > <title>el0_svc (3 samples, 1.02%)</title><rect x="110.7" y="821" width="12.1" height="15.0" fill="rgb(232,80,16)" rx="2" ry="2" /> <text x="113.68" y="831.5" ></text> </g> <g > <title>_mesa_TexSubImage2D (15 samples, 5.12%)</title><rect x="187.2" y="837" width="60.4" height="15.0" fill="rgb(205,173,36)" rx="2" ry="2" /> <text x="190.20" y="847.5" >_mesa_..</text> </g> <g > <title>arch_local_save_flags (1 samples, 0.34%)</title><rect x="400.6" y="693" width="4.1" height="15.0" fill="rgb(239,165,29)" rx="2" ry="2" /> <text x="403.65" y="703.5" ></text> </g> <g > <title>hb_shape_plan_execute (1 samples, 0.34%)</title><rect x="642.3" y="501" width="4.0" height="15.0" fill="rgb(216,50,17)" rx="2" ry="2" /> <text x="645.29" y="511.5" ></text> </g> <g > <title>v3d_pipe_flush (1 samples, 0.34%)</title><rect x="336.2" y="837" width="4.0" height="15.0" fill="rgb(210,63,47)" rx="2" ry="2" /> <text x="339.21" y="847.5" ></text> </g> <g > <title>[libQt5Core.so.5.15.2] (69 samples, 23.55%)</title><rect x="477.2" y="837" width="277.9" height="15.0" fill="rgb(247,68,49)" rx="2" ry="2" /> <text x="480.17" y="847.5" >[libQt5Core.so.5.15.2]</text> </g> <g > <title>[xscreensaver] (6 samples, 2.05%)</title><rect x="1161.8" y="997" width="24.2" height="15.0" fill="rgb(230,36,7)" rx="2" ry="2" /> <text x="1164.81" y="1007.5" >[..</text> </g> <g > <title>__arm64_sys_recvmsg (2 samples, 0.68%)</title><rect x="1173.9" y="677" width="8.0" height="15.0" fill="rgb(229,130,9)" rx="2" ry="2" /> <text x="1176.89" y="687.5" ></text> </g> <g > <title>finish_task_switch.isra.0 (3 samples, 1.02%)</title><rect x="1057.1" y="869" width="12.1" height="15.0" fill="rgb(239,155,32)" rx="2" ry="2" /> <text x="1060.10" y="879.5" ></text> </g> <g > <title>el1h_64_irq_handler (1 samples, 0.34%)</title><rect x="62.4" y="165" width="4.0" height="15.0" fill="rgb(251,104,30)" rx="2" ry="2" /> <text x="65.35" y="175.5" ></text> </g> <g > <title>QFrame::event (6 samples, 2.05%)</title><rect x="638.3" y="661" width="24.1" height="15.0" fill="rgb(212,199,5)" rx="2" ry="2" /> <text x="641.26" y="671.5" >Q..</text> </g> <g > <title>__irq_exit_rcu (14 samples, 4.78%)</title><rect x="1000.7" y="741" width="56.4" height="15.0" fill="rgb(222,95,53)" rx="2" ry="2" /> <text x="1003.72" y="751.5" >__irq..</text> </g> <g > <title>finish_task_switch.isra.0 (3 samples, 1.02%)</title><rect x="1125.6" y="901" width="12.0" height="15.0" fill="rgb(239,51,47)" rx="2" ry="2" /> <text x="1128.56" y="911.5" ></text> </g> <g > <title>_hb_ot_shape (1 samples, 0.34%)</title><rect x="638.3" y="453" width="4.0" height="15.0" fill="rgb(211,98,12)" rx="2" ry="2" /> <text x="641.26" y="463.5" ></text> </g> <g > <title>[pcmanfm-qt] (21 samples, 7.17%)</title><rect x="662.4" y="645" width="84.6" height="15.0" fill="rgb(245,148,32)" rx="2" ry="2" /> <text x="665.42" y="655.5" >[pcmanfm-..</text> </g> <g > <title>invoke_syscall (5 samples, 1.71%)</title><rect x="803.4" y="757" width="20.1" height="15.0" fill="rgb(230,97,54)" rx="2" ry="2" /> <text x="806.38" y="767.5" ></text> </g> <g > <title>____sys_recvmsg (2 samples, 0.68%)</title><rect x="110.7" y="709" width="8.0" height="15.0" fill="rgb(224,132,0)" rx="2" ry="2" /> <text x="113.68" y="719.5" ></text> </g> <g > <title>_start (1 samples, 0.34%)</title><rect x="952.4" y="997" width="4.0" height="15.0" fill="rgb(248,183,40)" rx="2" ry="2" /> <text x="955.39" y="1007.5" ></text> </g> <g > <title>drm_ioctl_kernel (1 samples, 0.34%)</title><rect x="255.7" y="309" width="4.0" height="15.0" fill="rgb(253,45,54)" rx="2" ry="2" /> <text x="258.67" y="319.5" ></text> </g> <g > <title>____sys_recvmsg (1 samples, 0.34%)</title><rect x="1169.9" y="645" width="4.0" height="15.0" fill="rgb(219,82,1)" rx="2" ry="2" /> <text x="1172.86" y="655.5" ></text> </g> <g > <title>QApplicationPrivate::notify_helper (3 samples, 1.02%)</title><rect x="936.3" y="773" width="12.1" height="15.0" fill="rgb(240,132,52)" rx="2" ry="2" /> <text x="939.28" y="783.5" ></text> </g> <g > <title>v3d_bo_wait (1 samples, 0.34%)</title><rect x="344.3" y="645" width="4.0" height="15.0" fill="rgb(248,74,40)" rx="2" ry="2" /> <text x="347.27" y="655.5" ></text> </g> <g > <title>xf86_set_cursor_position (1 samples, 0.34%)</title><rect x="167.1" y="725" width="4.0" height="15.0" fill="rgb(212,209,26)" rx="2" ry="2" /> <text x="170.06" y="735.5" ></text> </g> <g > <title>__secondary_switched (17 samples, 5.80%)</title><rect x="1077.2" y="997" width="68.5" height="15.0" fill="rgb(253,100,36)" rx="2" ry="2" /> <text x="1080.24" y="1007.5" >__secon..</text> </g> <g > <title>drm_internal_framebuffer_create (1 samples, 0.34%)</title><rect x="279.8" y="341" width="4.1" height="15.0" fill="rgb(245,96,49)" rx="2" ry="2" /> <text x="282.83" y="351.5" ></text> </g> <g > <title>do_el0_svc (1 samples, 0.34%)</title><rect x="126.8" y="789" width="4.0" height="15.0" fill="rgb(228,202,34)" rx="2" ry="2" /> <text x="129.79" y="799.5" ></text> </g> <g > <title>el0t_64_sync (5 samples, 1.71%)</title><rect x="316.1" y="869" width="20.1" height="15.0" fill="rgb(251,103,44)" rx="2" ry="2" /> <text x="319.08" y="879.5" ></text> </g> <g > <title>do_el0_svc (1 samples, 0.34%)</title><rect x="291.9" y="565" width="4.0" height="15.0" fill="rgb(251,216,38)" rx="2" ry="2" /> <text x="294.91" y="575.5" ></text> </g> <g > <title>__wake_up_common_lock (1 samples, 0.34%)</title><rect x="775.2" y="165" width="4.0" height="15.0" fill="rgb(220,45,15)" rx="2" ry="2" /> <text x="778.19" y="175.5" ></text> </g> <g > <title>QCoreApplication::exec (1 samples, 0.34%)</title><rect x="440.9" y="949" width="4.0" height="15.0" fill="rgb(237,223,48)" rx="2" ry="2" /> <text x="443.92" y="959.5" ></text> </g> <g > <title>TryClientEvents (1 samples, 0.34%)</title><rect x="287.9" y="725" width="4.0" height="15.0" fill="rgb(251,141,5)" rx="2" ry="2" /> <text x="290.88" y="735.5" ></text> </g> <g > <title>call_on_irq_stack (1 samples, 0.34%)</title><rect x="428.8" y="885" width="4.1" height="15.0" fill="rgb(243,157,18)" rx="2" ry="2" /> <text x="431.84" y="895.5" ></text> </g> <g > <title>__arm64_sys_ioctl (1 samples, 0.34%)</title><rect x="167.1" y="533" width="4.0" height="15.0" fill="rgb(210,159,41)" rx="2" ry="2" /> <text x="170.06" y="543.5" ></text> </g> <g > <title>_raw_spin_unlock_irqrestore (1 samples, 0.34%)</title><rect x="138.9" y="709" width="4.0" height="15.0" fill="rgb(252,27,44)" rx="2" ry="2" /> <text x="141.87" y="719.5" ></text> </g> <g > <title>el0_svc_common.constprop.0 (1 samples, 0.34%)</title><rect x="291.9" y="549" width="4.0" height="15.0" fill="rgb(205,26,34)" rx="2" ry="2" /> <text x="294.91" y="559.5" ></text> </g> <g > <title>__primary_switched (28 samples, 9.56%)</title><rect x="964.5" y="997" width="112.7" height="15.0" fill="rgb(235,178,28)" rx="2" ry="2" /> <text x="967.47" y="1007.5" >__primary_swi..</text> </g> <g > <title>__do_softirq (1 samples, 0.34%)</title><rect x="408.7" y="629" width="4.0" height="15.0" fill="rgb(213,228,12)" rx="2" ry="2" /> <text x="411.70" y="639.5" ></text> </g> <g > <title>kmalloc_reserve (1 samples, 0.34%)</title><rect x="747.0" y="277" width="4.0" height="15.0" fill="rgb(208,214,25)" rx="2" ry="2" /> <text x="750.00" y="287.5" ></text> </g> <g > <title>_nohz_idle_balance.constprop.0.isra.0 (1 samples, 0.34%)</title><rect x="1121.5" y="725" width="4.1" height="15.0" fill="rgb(236,131,26)" rx="2" ry="2" /> <text x="1124.54" y="735.5" ></text> </g> <g > <title>xcb_send_request_with_fds64 (1 samples, 0.34%)</title><rect x="767.1" y="533" width="4.1" height="15.0" fill="rgb(212,186,16)" rx="2" ry="2" /> <text x="770.13" y="543.5" ></text> </g> <g > <title>irq_exit (1 samples, 0.34%)</title><rect x="408.7" y="661" width="4.0" height="15.0" fill="rgb(206,145,3)" rx="2" ry="2" /> <text x="411.70" y="671.5" ></text> </g> <g > <title>sock_sendmsg (1 samples, 0.34%)</title><rect x="175.1" y="661" width="4.0" height="15.0" fill="rgb(225,195,27)" rx="2" ry="2" /> <text x="178.12" y="671.5" ></text> </g> <g > <title>_raw_spin_unlock_irqrestore (1 samples, 0.34%)</title><rect x="1020.9" y="549" width="4.0" height="15.0" fill="rgb(213,68,40)" rx="2" ry="2" /> <text x="1023.85" y="559.5" ></text> </g> <g > <title>_perf_event_enable (16 samples, 5.46%)</title><rect x="851.7" y="757" width="64.4" height="15.0" fill="rgb(245,154,46)" rx="2" ry="2" /> <text x="854.71" y="767.5" >_perf_e..</text> </g> <g > <title>__blk_mq_do_dispatch_sched (1 samples, 0.34%)</title><rect x="420.8" y="869" width="4.0" height="15.0" fill="rgb(233,135,16)" rx="2" ry="2" /> <text x="423.78" y="879.5" ></text> </g> <g > <title>xf86_crtc_set_cursor_position (6 samples, 2.05%)</title><rect x="46.2" y="709" width="24.2" height="15.0" fill="rgb(254,162,34)" rx="2" ry="2" /> <text x="49.25" y="719.5" >x..</text> </g> <g > <title>__irq_exit_rcu (1 samples, 0.34%)</title><rect x="62.4" y="53" width="4.0" height="15.0" fill="rgb(231,19,45)" rx="2" ry="2" /> <text x="65.35" y="63.5" ></text> </g> <g > <title>__libc_start_main (3 samples, 1.02%)</title><rect x="444.9" y="965" width="12.1" height="15.0" fill="rgb(205,59,43)" rx="2" ry="2" /> <text x="447.95" y="975.5" ></text> </g> <g > <title>do_writev (1 samples, 0.34%)</title><rect x="287.9" y="517" width="4.0" height="15.0" fill="rgb(229,103,53)" rx="2" ry="2" /> <text x="290.88" y="527.5" ></text> </g> <g > <title>[libQt5XcbQpa.so.5.15.2] (11 samples, 3.75%)</title><rect x="755.1" y="837" width="44.3" height="15.0" fill="rgb(209,56,20)" rx="2" ry="2" /> <text x="758.05" y="847.5" >[lib..</text> </g> <g > <title>unix_write_space (1 samples, 0.34%)</title><rect x="1173.9" y="517" width="4.0" height="15.0" fill="rgb(248,60,4)" rx="2" ry="2" /> <text x="1176.89" y="527.5" ></text> </g> <g > <title>ext4_end_io_rsv_work (1 samples, 0.34%)</title><rect x="424.8" y="933" width="4.0" height="15.0" fill="rgb(233,183,9)" rx="2" ry="2" /> <text x="427.81" y="943.5" ></text> </g> <g > <title>[libQt5XcbQpa.so.5.15.2] (14 samples, 4.78%)</title><rect x="98.6" y="949" width="56.4" height="15.0" fill="rgb(247,17,9)" rx="2" ry="2" /> <text x="101.60" y="959.5" >[libQ..</text> </g> <g > <title>__GI___poll (1 samples, 0.34%)</title><rect x="948.4" y="853" width="4.0" height="15.0" fill="rgb(232,38,2)" rx="2" ry="2" /> <text x="951.36" y="863.5" ></text> </g> <g > <title>do_writev (1 samples, 0.34%)</title><rect x="295.9" y="517" width="4.1" height="15.0" fill="rgb(207,12,4)" rx="2" ry="2" /> <text x="298.94" y="527.5" ></text> </g> <g > <title>invoke_syscall (2 samples, 0.68%)</title><rect x="26.1" y="789" width="8.1" height="15.0" fill="rgb(226,119,2)" rx="2" ry="2" /> <text x="29.11" y="799.5" ></text> </g> <g > <title>QWindowPrivate::setCursor (2 samples, 0.68%)</title><rect x="940.3" y="693" width="8.1" height="15.0" fill="rgb(210,112,48)" rx="2" ry="2" /> <text x="943.31" y="703.5" ></text> </g> <g > <title>el0_da (1 samples, 0.34%)</title><rect x="1149.7" y="789" width="4.1" height="15.0" fill="rgb(227,110,35)" rx="2" ry="2" /> <text x="1152.73" y="799.5" ></text> </g> <g > <title>QTextLine::layout_helper (1 samples, 0.34%)</title><rect x="642.3" y="581" width="4.0" height="15.0" fill="rgb(217,22,48)" rx="2" ry="2" /> <text x="645.29" y="591.5" ></text> </g> <g > <title>ret_from_fork (1 samples, 0.34%)</title><rect x="416.8" y="997" width="4.0" height="15.0" fill="rgb(247,137,26)" rx="2" ry="2" /> <text x="419.76" y="1007.5" ></text> </g> <g > <title>finish_task_switch.isra.0 (1 samples, 0.34%)</title><rect x="956.4" y="917" width="4.0" height="15.0" fill="rgb(217,80,5)" rx="2" ry="2" /> <text x="959.42" y="927.5" ></text> </g> <g > <title>_raw_write_lock_irq (1 samples, 0.34%)</title><rect x="380.5" y="741" width="4.0" height="15.0" fill="rgb(241,36,8)" rx="2" ry="2" /> <text x="383.51" y="751.5" ></text> </g> <g > <title>[libQt5Gui.so.5.15.2] (1 samples, 0.34%)</title><rect x="432.9" y="885" width="4.0" height="15.0" fill="rgb(205,74,53)" rx="2" ry="2" /> <text x="435.87" y="895.5" ></text> </g> <g > <title>__setitimer (3 samples, 1.02%)</title><rect x="348.3" y="901" width="12.1" height="15.0" fill="rgb(228,88,26)" rx="2" ry="2" /> <text x="351.29" y="911.5" ></text> </g> <g > <title>ChangeToCursor (4 samples, 1.37%)</title><rect x="155.0" y="885" width="16.1" height="15.0" fill="rgb(227,162,52)" rx="2" ry="2" /> <text x="157.98" y="895.5" ></text> </g> <g > <title>sock_write_iter (2 samples, 0.68%)</title><rect x="300.0" y="469" width="8.0" height="15.0" fill="rgb(221,172,5)" rx="2" ry="2" /> <text x="302.97" y="479.5" ></text> </g> <g > <title>el0_svc_common.constprop.0 (17 samples, 5.80%)</title><rect x="847.7" y="853" width="68.4" height="15.0" fill="rgb(244,72,17)" rx="2" ry="2" /> <text x="850.68" y="863.5" >el0_svc..</text> </g> <g > <title>skb_copy_datagram_from_iter (1 samples, 0.34%)</title><rect x="300.0" y="421" width="4.0" height="15.0" fill="rgb(252,52,6)" rx="2" ry="2" /> <text x="302.97" y="431.5" ></text> </g> <g > <title>___sys_recvmsg (2 samples, 0.68%)</title><rect x="110.7" y="725" width="8.0" height="15.0" fill="rgb(247,136,47)" rx="2" ry="2" /> <text x="113.68" y="735.5" ></text> </g> <g > <title>util_blitter_blit (1 samples, 0.34%)</title><rect x="255.7" y="661" width="4.0" height="15.0" fill="rgb(219,41,39)" rx="2" ry="2" /> <text x="258.67" y="671.5" ></text> </g> <g > <title>g_main_context_iterate (1 samples, 0.34%)</title><rect x="440.9" y="885" width="4.0" height="15.0" fill="rgb(216,224,48)" rx="2" ry="2" /> <text x="443.92" y="895.5" ></text> </g> <g > <title>prioq_reshuffle (1 samples, 0.34%)</title><rect x="1145.7" y="869" width="4.0" height="15.0" fill="rgb(250,105,1)" rx="2" ry="2" /> <text x="1148.70" y="879.5" ></text> </g> <g > <title>el0_svc (2 samples, 0.68%)</title><rect x="300.0" y="613" width="8.0" height="15.0" fill="rgb(240,93,38)" rx="2" ry="2" /> <text x="302.97" y="623.5" ></text> </g> <g > <title>QWidgetPrivate::paintSiblingsRecursive (2 samples, 0.68%)</title><rect x="630.2" y="709" width="8.1" height="15.0" fill="rgb(236,207,49)" rx="2" ry="2" /> <text x="633.20" y="719.5" ></text> </g> <g > <title>import_iovec (1 samples, 0.34%)</title><rect x="267.7" y="501" width="4.1" height="15.0" fill="rgb(207,63,26)" rx="2" ry="2" /> <text x="270.75" y="511.5" ></text> </g> <g > <title>cpuset_cpus_allowed (1 samples, 0.34%)</title><rect x="843.7" y="773" width="4.0" height="15.0" fill="rgb(224,102,11)" rx="2" ry="2" /> <text x="846.65" y="783.5" ></text> </g> <g > <title>__GI___writev (1 samples, 0.34%)</title><rect x="775.2" y="453" width="4.0" height="15.0" fill="rgb(212,14,45)" rx="2" ry="2" /> <text x="778.19" y="463.5" ></text> </g> <g > <title>[libQt5Widgets.so.5.15.2] (1 samples, 0.34%)</title><rect x="440.9" y="693" width="4.0" height="15.0" fill="rgb(222,21,22)" rx="2" ry="2" /> <text x="443.92" y="703.5" ></text> </g> <g > <title>QApplicationPrivate::notify_helper (6 samples, 2.05%)</title><rect x="763.1" y="677" width="24.2" height="15.0" fill="rgb(254,214,50)" rx="2" ry="2" /> <text x="766.11" y="687.5" >Q..</text> </g> <g > <title>el0t_64_irq_handler (1 samples, 0.34%)</title><rect x="428.8" y="949" width="4.1" height="15.0" fill="rgb(241,59,50)" rx="2" ry="2" /> <text x="431.84" y="959.5" ></text> </g> <g > <title>QAbstractItemView::viewportEvent (4 samples, 1.37%)</title><rect x="767.1" y="645" width="16.1" height="15.0" fill="rgb(225,187,8)" rx="2" ry="2" /> <text x="770.13" y="655.5" ></text> </g> <g > <title>__GI___writev (1 samples, 0.34%)</title><rect x="287.9" y="645" width="4.0" height="15.0" fill="rgb(249,131,45)" rx="2" ry="2" /> <text x="290.88" y="655.5" ></text> </g> <g > <title>_raw_spin_unlock_irq (2 samples, 0.68%)</title><rect x="352.3" y="757" width="8.1" height="15.0" fill="rgb(252,7,9)" rx="2" ry="2" /> <text x="355.32" y="767.5" ></text> </g> <g > <title>QXcbWindow::handleMotionNotifyEvent (1 samples, 0.34%)</title><rect x="791.3" y="773" width="4.0" height="15.0" fill="rgb(247,192,42)" rx="2" ry="2" /> <text x="794.30" y="783.5" ></text> </g> <g > <title>QWidget::mapFromGlobal (1 samples, 0.34%)</title><rect x="440.9" y="709" width="4.0" height="15.0" fill="rgb(248,223,15)" rx="2" ry="2" /> <text x="443.92" y="719.5" ></text> </g> <g > <title>consume_skb (2 samples, 0.68%)</title><rect x="328.2" y="677" width="8.0" height="15.0" fill="rgb(231,221,51)" rx="2" ry="2" /> <text x="331.16" y="687.5" ></text> </g> <g > <title>do_el0_svc (1 samples, 0.34%)</title><rect x="775.2" y="373" width="4.0" height="15.0" fill="rgb(238,138,44)" rx="2" ry="2" /> <text x="778.19" y="383.5" ></text> </g> <g > <title>g_main_context_check (1 samples, 0.34%)</title><rect x="473.1" y="869" width="4.1" height="15.0" fill="rgb(244,63,6)" rx="2" ry="2" /> <text x="476.14" y="879.5" ></text> </g> <g > <title>do_idle (17 samples, 5.80%)</title><rect x="1077.2" y="949" width="68.5" height="15.0" fill="rgb(216,54,11)" rx="2" ry="2" /> <text x="1080.24" y="959.5" >do_idle</text> </g> <g > <title>SmartScheduleStartTimer (3 samples, 1.02%)</title><rect x="348.3" y="917" width="12.1" height="15.0" fill="rgb(222,72,2)" rx="2" ry="2" /> <text x="351.29" y="927.5" ></text> </g> <g > <title>kmalloc_reserve (1 samples, 0.34%)</title><rect x="291.9" y="357" width="4.0" height="15.0" fill="rgb(216,47,39)" rx="2" ry="2" /> <text x="294.91" y="367.5" ></text> </g> <g > <title>el0_svc (1 samples, 0.34%)</title><rect x="102.6" y="837" width="4.1" height="15.0" fill="rgb(232,34,6)" rx="2" ry="2" /> <text x="105.63" y="847.5" ></text> </g> <g > <title>_xcb_conn_wait (1 samples, 0.34%)</title><rect x="771.2" y="533" width="4.0" height="15.0" fill="rgb(218,139,8)" rx="2" ry="2" /> <text x="774.16" y="543.5" ></text> </g> <g > <title>QWidgetPrivate::paintSiblingsRecursive (8 samples, 2.73%)</title><rect x="606.0" y="725" width="32.3" height="15.0" fill="rgb(220,172,23)" rx="2" ry="2" /> <text x="609.04" y="735.5" >QW..</text> </g> <g > <title>invoke_syscall (1 samples, 0.34%)</title><rect x="835.6" y="837" width="4.0" height="15.0" fill="rgb(225,18,16)" rx="2" ry="2" /> <text x="838.60" y="847.5" ></text> </g> <g > <title>el0t_64_sync_handler (2 samples, 0.68%)</title><rect x="352.3" y="869" width="8.1" height="15.0" fill="rgb(205,96,20)" rx="2" ry="2" /> <text x="355.32" y="879.5" ></text> </g> <g > <title>QTextLine::draw (1 samples, 0.34%)</title><rect x="432.9" y="965" width="4.0" height="15.0" fill="rgb(221,8,32)" rx="2" ry="2" /> <text x="435.87" y="975.5" ></text> </g> <g > <title>__arm64_sys_epoll_pwait (8 samples, 2.73%)</title><rect x="376.5" y="789" width="32.2" height="15.0" fill="rgb(205,188,7)" rx="2" ry="2" /> <text x="379.48" y="799.5" >__..</text> </g> <g > <title>el0_svc (1 samples, 0.34%)</title><rect x="267.7" y="613" width="4.1" height="15.0" fill="rgb(253,145,26)" rx="2" ry="2" /> <text x="270.75" y="623.5" ></text> </g> <g > <title>QApplicationPrivate::notify_helper (1 samples, 0.34%)</title><rect x="428.8" y="997" width="4.1" height="15.0" fill="rgb(234,94,40)" rx="2" ry="2" /> <text x="431.84" y="1007.5" ></text> </g> <g > <title>arch_stack_walk (1 samples, 0.34%)</title><rect x="384.5" y="661" width="4.1" height="15.0" fill="rgb(233,43,45)" rx="2" ry="2" /> <text x="387.54" y="671.5" ></text> </g> <g > <title>hb_ot_map_t::position (1 samples, 0.34%)</title><rect x="606.0" y="309" width="4.1" height="15.0" fill="rgb(234,13,15)" rx="2" ry="2" /> <text x="609.04" y="319.5" ></text> </g> <g > <title>g_main_context_dispatch (1 samples, 0.34%)</title><rect x="412.7" y="901" width="4.1" height="15.0" fill="rgb(230,13,8)" rx="2" ry="2" /> <text x="415.73" y="911.5" ></text> </g> <g > <title>g_main_context_iteration (4 samples, 1.37%)</title><rect x="936.3" y="901" width="16.1" height="15.0" fill="rgb(249,84,23)" rx="2" ry="2" /> <text x="939.28" y="911.5" ></text> </g> <g > <title>_raw_spin_unlock_irq (1 samples, 0.34%)</title><rect x="791.3" y="517" width="4.0" height="15.0" fill="rgb(254,81,51)" rx="2" ry="2" /> <text x="794.30" y="527.5" ></text> </g> <g > <title>vfs_writev (2 samples, 0.68%)</title><rect x="300.0" y="517" width="8.0" height="15.0" fill="rgb(217,59,14)" rx="2" ry="2" /> <text x="302.97" y="527.5" ></text> </g> <g > <title>st_glFlush (2 samples, 0.68%)</title><rect x="336.2" y="869" width="8.1" height="15.0" fill="rgb(254,146,4)" rx="2" ry="2" /> <text x="339.21" y="879.5" ></text> </g> <g > <title>QCoreApplicationPrivate::sendThroughObjectEventFilters (6 samples, 2.05%)</title><rect x="763.1" y="661" width="24.2" height="15.0" fill="rgb(240,108,37)" rx="2" ry="2" /> <text x="766.11" y="671.5" >Q..</text> </g> <g > <title>QWindowPrivate::applyCursor (2 samples, 0.68%)</title><rect x="940.3" y="677" width="8.1" height="15.0" fill="rgb(229,201,26)" rx="2" ry="2" /> <text x="943.31" y="687.5" ></text> </g> <g > <title>el0_svc_common.constprop.0 (2 samples, 0.68%)</title><rect x="839.6" y="853" width="8.1" height="15.0" fill="rgb(211,48,27)" rx="2" ry="2" /> <text x="842.62" y="863.5" ></text> </g> <g > <title>QWidgetPrivate::sendPaintEvent (1 samples, 0.34%)</title><rect x="634.2" y="581" width="4.1" height="15.0" fill="rgb(226,132,5)" rx="2" ry="2" /> <text x="637.23" y="591.5" ></text> </g> <g > <title>lxqt-panel (4 samples, 1.37%)</title><rect x="428.8" y="1013" width="16.1" height="15.0" fill="rgb(235,28,39)" rx="2" ry="2" /> <text x="431.84" y="1023.5" ></text> </g> <g > <title>QGuiApplicationPrivate::processEnterEvent (3 samples, 1.02%)</title><rect x="936.3" y="805" width="12.1" height="15.0" fill="rgb(241,182,17)" rx="2" ry="2" /> <text x="939.28" y="815.5" ></text> </g> <g > <title>g_main_context_dispatch (3 samples, 1.02%)</title><rect x="936.3" y="869" width="12.1" height="15.0" fill="rgb(234,214,40)" rx="2" ry="2" /> <text x="939.28" y="879.5" ></text> </g> <g > <title>__wake_up_common_lock (1 samples, 0.34%)</title><rect x="114.7" y="565" width="4.0" height="15.0" fill="rgb(233,229,8)" rx="2" ry="2" /> <text x="117.71" y="575.5" ></text> </g> <g > <title>drmmode_set_cursor (2 samples, 0.68%)</title><rect x="275.8" y="613" width="8.1" height="15.0" fill="rgb(225,68,41)" rx="2" ry="2" /> <text x="278.80" y="623.5" ></text> </g> <g > <title>drm_gem_dma_resv_wait (1 samples, 0.34%)</title><rect x="344.3" y="405" width="4.0" height="15.0" fill="rgb(239,114,0)" rx="2" ry="2" /> <text x="347.27" y="415.5" ></text> </g> <g > <title>el0_svc (1 samples, 0.34%)</title><rect x="291.9" y="581" width="4.0" height="15.0" fill="rgb(206,213,54)" rx="2" ry="2" /> <text x="294.91" y="591.5" ></text> </g> <g > <title>read_packet (2 samples, 0.68%)</title><rect x="122.8" y="885" width="8.0" height="15.0" fill="rgb(232,105,14)" rx="2" ry="2" /> <text x="125.76" y="895.5" ></text> </g> <g > <title>__pollwait (1 samples, 0.34%)</title><rect x="807.4" y="693" width="4.0" height="15.0" fill="rgb(226,77,24)" rx="2" ry="2" /> <text x="810.41" y="703.5" ></text> </g> <g > <title>__el0_irq_handler_common (1 samples, 0.34%)</title><rect x="428.8" y="933" width="4.1" height="15.0" fill="rgb(219,132,51)" rx="2" ry="2" /> <text x="431.84" y="943.5" ></text> </g> <g > <title>sock_write_iter (1 samples, 0.34%)</title><rect x="295.9" y="453" width="4.1" height="15.0" fill="rgb(248,164,7)" rx="2" ry="2" /> <text x="298.94" y="463.5" ></text> </g> <g > <title>QTextEngine::shapeLine (1 samples, 0.34%)</title><rect x="638.3" y="549" width="4.0" height="15.0" fill="rgb(216,39,33)" rx="2" ry="2" /> <text x="641.26" y="559.5" ></text> </g> <g > <title>sock_alloc_send_pskb (1 samples, 0.34%)</title><rect x="291.9" y="389" width="4.0" height="15.0" fill="rgb(233,68,54)" rx="2" ry="2" /> <text x="294.91" y="399.5" ></text> </g> <g > <title>kmalloc_slab (1 samples, 0.34%)</title><rect x="747.0" y="261" width="4.0" height="15.0" fill="rgb(237,27,43)" rx="2" ry="2" /> <text x="750.00" y="271.5" ></text> </g> <g > <title>QTextLine::draw (1 samples, 0.34%)</title><rect x="465.1" y="981" width="4.0" height="15.0" fill="rgb(242,59,14)" rx="2" ry="2" /> <text x="468.09" y="991.5" ></text> </g> <g > <title>v3d_ioctl (1 samples, 0.34%)</title><rect x="344.3" y="613" width="4.0" height="15.0" fill="rgb(232,137,29)" rx="2" ry="2" /> <text x="347.27" y="623.5" ></text> </g> <g > <title>el0_svc_common.constprop.0 (3 samples, 1.02%)</title><rect x="155.0" y="517" width="12.1" height="15.0" fill="rgb(217,114,27)" rx="2" ry="2" /> <text x="157.98" y="527.5" ></text> </g> <g > <title>_hb_ot_shape (1 samples, 0.34%)</title><rect x="606.0" y="389" width="4.1" height="15.0" fill="rgb(239,176,12)" rx="2" ry="2" /> <text x="609.04" y="399.5" ></text> </g> <g > <title>__setitimer (2 samples, 0.68%)</title><rect x="360.4" y="901" width="8.0" height="15.0" fill="rgb(242,87,36)" rx="2" ry="2" /> <text x="363.38" y="911.5" ></text> </g> <g > <title>ext4_file_write_iter (4 samples, 1.37%)</title><rect x="916.1" y="709" width="16.2" height="15.0" fill="rgb(217,141,42)" rx="2" ry="2" /> <text x="919.14" y="719.5" ></text> </g> <g > <title>DeliverEventsToWindow (2 samples, 0.68%)</title><rect x="267.7" y="805" width="8.1" height="15.0" fill="rgb(242,147,54)" rx="2" ry="2" /> <text x="270.75" y="815.5" ></text> </g> <g > <title>__arm64_sys_writev (1 samples, 0.34%)</title><rect x="291.9" y="517" width="4.0" height="15.0" fill="rgb(205,114,11)" rx="2" ry="2" /> <text x="294.91" y="527.5" ></text> </g> <g > <title>_XEventsQueued (1 samples, 0.34%)</title><rect x="444.9" y="869" width="4.1" height="15.0" fill="rgb(250,219,46)" rx="2" ry="2" /> <text x="447.95" y="879.5" ></text> </g> <g > <title>___sys_recvmsg (3 samples, 1.02%)</title><rect x="324.1" y="741" width="12.1" height="15.0" fill="rgb(213,7,1)" rx="2" ry="2" /> <text x="327.13" y="751.5" ></text> </g> <g > <title>schedule_idle (3 samples, 1.02%)</title><rect x="1057.1" y="901" width="12.1" height="15.0" fill="rgb(214,89,24)" rx="2" ry="2" /> <text x="1060.10" y="911.5" ></text> </g> <g > <title>sock_sendmsg (1 samples, 0.34%)</title><rect x="291.9" y="421" width="4.0" height="15.0" fill="rgb(212,1,45)" rx="2" ry="2" /> <text x="294.91" y="431.5" ></text> </g> <g > <title>drm_mode_cursor_ioctl (1 samples, 0.34%)</title><rect x="167.1" y="485" width="4.0" height="15.0" fill="rgb(248,164,51)" rx="2" ry="2" /> <text x="170.06" y="495.5" ></text> </g> <g > <title>FT_Get_Char_Index (1 samples, 0.34%)</title><rect x="610.1" y="453" width="4.0" height="15.0" fill="rgb(247,166,7)" rx="2" ry="2" /> <text x="613.07" y="463.5" ></text> </g> <g > <title>damageComposite (1 samples, 0.34%)</title><rect x="344.3" y="821" width="4.0" height="15.0" fill="rgb(218,79,4)" rx="2" ry="2" /> <text x="347.27" y="831.5" ></text> </g> <g > <title>sd_event_run (2 samples, 0.68%)</title><rect x="1145.7" y="949" width="8.1" height="15.0" fill="rgb(238,116,36)" rx="2" ry="2" /> <text x="1148.70" y="959.5" ></text> </g> <g > <title>g_main_context_iterate (1 samples, 0.34%)</title><rect x="412.7" y="917" width="4.1" height="15.0" fill="rgb(250,62,34)" rx="2" ry="2" /> <text x="415.73" y="927.5" ></text> </g> <g > <title>ProcessInputEvents (12 samples, 4.10%)</title><rect x="259.7" y="933" width="48.3" height="15.0" fill="rgb(228,62,48)" rx="2" ry="2" /> <text x="262.69" y="943.5" >Proc..</text> </g> <g > <title>return_address (2 samples, 0.68%)</title><rect x="26.1" y="693" width="8.1" height="15.0" fill="rgb(235,144,45)" rx="2" ry="2" /> <text x="29.11" y="703.5" ></text> </g> <g > <title>drm_atomic_helper_update_plane (6 samples, 2.05%)</title><rect x="46.2" y="421" width="24.2" height="15.0" fill="rgb(220,21,33)" rx="2" ry="2" /> <text x="49.25" y="431.5" >d..</text> </g> <g > <title>dev_pm_opp_set_rate (1 samples, 0.34%)</title><rect x="960.4" y="901" width="4.1" height="15.0" fill="rgb(241,46,44)" rx="2" ry="2" /> <text x="963.44" y="911.5" ></text> </g> <g > <title>drmIoctl (2 samples, 0.68%)</title><rect x="275.8" y="565" width="8.1" height="15.0" fill="rgb(214,102,18)" rx="2" ry="2" /> <text x="278.80" y="575.5" ></text> </g> <g > <title>do_writev (1 samples, 0.34%)</title><rect x="291.9" y="501" width="4.0" height="15.0" fill="rgb(234,136,41)" rx="2" ry="2" /> <text x="294.91" y="511.5" ></text> </g> <g > <title>commit_tail (1 samples, 0.34%)</title><rect x="167.1" y="373" width="4.0" height="15.0" fill="rgb(206,106,5)" rx="2" ry="2" /> <text x="170.06" y="383.5" ></text> </g> <g > <title>el0t_64_irq (1 samples, 0.34%)</title><rect x="428.8" y="965" width="4.1" height="15.0" fill="rgb(242,36,22)" rx="2" ry="2" /> <text x="431.84" y="975.5" ></text> </g> <g > <title>glamor_copy (3 samples, 1.02%)</title><rect x="247.6" y="821" width="12.1" height="15.0" fill="rgb(234,100,13)" rx="2" ry="2" /> <text x="250.61" y="831.5" ></text> </g> <g > <title>invoke_syscall (1 samples, 0.34%)</title><rect x="102.6" y="789" width="4.1" height="15.0" fill="rgb(251,92,48)" rx="2" ry="2" /> <text x="105.63" y="799.5" ></text> </g> <g > <title>_xcb_out_send (1 samples, 0.34%)</title><rect x="747.0" y="629" width="4.0" height="15.0" fill="rgb(209,48,2)" rx="2" ry="2" /> <text x="750.00" y="639.5" ></text> </g> <g > <title>el0t_64_sync (1 samples, 0.34%)</title><rect x="126.8" y="837" width="4.0" height="15.0" fill="rgb(244,110,19)" rx="2" ry="2" /> <text x="129.79" y="847.5" ></text> </g> <g > <title>__add_to_page_cache_locked (1 samples, 0.34%)</title><rect x="920.2" y="597" width="4.0" height="15.0" fill="rgb(254,91,51)" rx="2" ry="2" /> <text x="923.17" y="607.5" ></text> </g> <g > <title>QWindowSystemInterface::sendWindowSystemEvents (3 samples, 1.02%)</title><rect x="936.3" y="821" width="12.1" height="15.0" fill="rgb(239,85,29)" rx="2" ry="2" /> <text x="939.28" y="831.5" ></text> </g> <g > <title>[libQt5Widgets.so.5.15.2] (1 samples, 0.34%)</title><rect x="461.1" y="997" width="4.0" height="15.0" fill="rgb(211,210,23)" rx="2" ry="2" /> <text x="464.06" y="1007.5" ></text> </g> <g > <title>glamor_composite (1 samples, 0.34%)</title><rect x="344.3" y="805" width="4.0" height="15.0" fill="rgb(228,218,31)" rx="2" ry="2" /> <text x="347.27" y="815.5" ></text> </g> <g > <title>TryClientEvents (1 samples, 0.34%)</title><rect x="267.7" y="757" width="4.1" height="15.0" fill="rgb(231,70,22)" rx="2" ry="2" /> <text x="270.75" y="767.5" ></text> </g> <g > <title>el0_svc_common.constprop.0 (1 samples, 0.34%)</title><rect x="175.1" y="789" width="4.0" height="15.0" fill="rgb(229,192,14)" rx="2" ry="2" /> <text x="178.12" y="799.5" ></text> </g> <g > <title>xcb_wait_for_event (12 samples, 4.10%)</title><rect x="106.7" y="933" width="48.3" height="15.0" fill="rgb(231,40,30)" rx="2" ry="2" /> <text x="109.66" y="943.5" >xcb_..</text> </g> <g > <title>_mesa_draw_arrays (1 samples, 0.34%)</title><rect x="344.3" y="757" width="4.0" height="15.0" fill="rgb(211,5,25)" rx="2" ry="2" /> <text x="347.27" y="767.5" ></text> </g> <g > <title>DeliverEventsToWindow (1 samples, 0.34%)</title><rect x="295.9" y="789" width="4.1" height="15.0" fill="rgb(241,33,40)" rx="2" ry="2" /> <text x="298.94" y="799.5" ></text> </g> <g > <title>[systemd-journald] (1 samples, 0.34%)</title><rect x="1149.7" y="901" width="4.1" height="15.0" fill="rgb(206,71,27)" rx="2" ry="2" /> <text x="1152.73" y="911.5" ></text> </g> <g > <title>schedule_hrtimeout_range_clock (1 samples, 0.34%)</title><rect x="142.9" y="725" width="4.0" height="15.0" fill="rgb(232,205,46)" rx="2" ry="2" /> <text x="145.90" y="735.5" ></text> </g> <g > <title>schedule (2 samples, 0.68%)</title><rect x="396.6" y="709" width="8.1" height="15.0" fill="rgb(227,48,47)" rx="2" ry="2" /> <text x="399.62" y="719.5" ></text> </g> <g > <title>__arm64_sys_writev (1 samples, 0.34%)</title><rect x="747.0" y="453" width="4.0" height="15.0" fill="rgb(223,161,5)" rx="2" ry="2" /> <text x="750.00" y="463.5" ></text> </g> <g > <title>do_iter_readv_writev (1 samples, 0.34%)</title><rect x="175.1" y="693" width="4.0" height="15.0" fill="rgb(228,138,12)" rx="2" ry="2" /> <text x="178.12" y="703.5" ></text> </g> <g > <title>hb_nonnull_ptr_t<hb_blob_t>::get (1 samples, 0.34%)</title><rect x="638.3" y="309" width="4.0" height="15.0" fill="rgb(247,77,48)" rx="2" ry="2" /> <text x="641.26" y="319.5" ></text> </g> <g > <title>QWindow::geometry (1 samples, 0.34%)</title><rect x="779.2" y="565" width="4.0" height="15.0" fill="rgb(246,71,50)" rx="2" ry="2" /> <text x="782.22" y="575.5" ></text> </g> <g > <title>drm_mode_cursor_ioctl (6 samples, 2.05%)</title><rect x="46.2" y="485" width="24.2" height="15.0" fill="rgb(209,44,26)" rx="2" ry="2" /> <text x="49.25" y="495.5" >d..</text> </g> <g > <title>rpi_firmware_property_list (1 samples, 0.34%)</title><rect x="416.8" y="837" width="4.0" height="15.0" fill="rgb(242,21,8)" rx="2" ry="2" /> <text x="419.76" y="847.5" ></text> </g> <g > <title>rest_init (28 samples, 9.56%)</title><rect x="964.5" y="949" width="112.7" height="15.0" fill="rgb(236,29,34)" rx="2" ry="2" /> <text x="967.47" y="959.5" >rest_init</text> </g> <g > <title>start_thread (22 samples, 7.51%)</title><rect x="10.0" y="981" width="88.6" height="15.0" fill="rgb(238,217,26)" rx="2" ry="2" /> <text x="13.00" y="991.5" >start_thread</text> </g> <g > <title>kfree_skbmem (1 samples, 0.34%)</title><rect x="328.2" y="661" width="4.0" height="15.0" fill="rgb(252,106,44)" rx="2" ry="2" /> <text x="331.16" y="671.5" ></text> </g> <g > <title>XtAppNextEvent (6 samples, 2.05%)</title><rect x="1161.8" y="933" width="24.2" height="15.0" fill="rgb(249,185,47)" rx="2" ry="2" /> <text x="1164.81" y="943.5" >X..</text> </g> <g > <title>__arm64_sys_ioctl (3 samples, 1.02%)</title><rect x="155.0" y="485" width="12.1" height="15.0" fill="rgb(212,194,50)" rx="2" ry="2" /> <text x="157.98" y="495.5" ></text> </g> <g > <title>_raw_spin_unlock_irqrestore (1 samples, 0.34%)</title><rect x="835.6" y="741" width="4.0" height="15.0" fill="rgb(249,110,53)" rx="2" ry="2" /> <text x="838.60" y="751.5" ></text> </g> <g > <title>DeliverEventToInputClients (1 samples, 0.34%)</title><rect x="283.9" y="789" width="4.0" height="15.0" fill="rgb(207,56,20)" rx="2" ry="2" /> <text x="286.86" y="799.5" ></text> </g> <g > <title>el0_svc (1 samples, 0.34%)</title><rect x="835.6" y="885" width="4.0" height="15.0" fill="rgb(217,107,41)" rx="2" ry="2" /> <text x="838.60" y="895.5" ></text> </g> <g > <title>invoke_syscall (1 samples, 0.34%)</title><rect x="791.3" y="597" width="4.0" height="15.0" fill="rgb(210,162,38)" rx="2" ry="2" /> <text x="794.30" y="607.5" ></text> </g> <g > <title>do_el0_svc (2 samples, 0.68%)</title><rect x="275.8" y="485" width="8.1" height="15.0" fill="rgb(214,60,53)" rx="2" ry="2" /> <text x="278.80" y="495.5" ></text> </g> <g > <title>Fm::ProxyFolderModel::data (1 samples, 0.34%)</title><rect x="658.4" y="581" width="4.0" height="15.0" fill="rgb(235,143,22)" rx="2" ry="2" /> <text x="661.40" y="591.5" ></text> </g> <g > <title>[libQt5Gui.so.5.15.2] (1 samples, 0.34%)</title><rect x="650.3" y="517" width="4.1" height="15.0" fill="rgb(205,20,28)" rx="2" ry="2" /> <text x="653.34" y="527.5" ></text> </g> <g > <title>[libQt5Widgets.so.5.15.2] (6 samples, 2.05%)</title><rect x="763.1" y="741" width="24.2" height="15.0" fill="rgb(220,26,1)" rx="2" ry="2" /> <text x="766.11" y="751.5" >[..</text> </g> <g > <title>schedule (1 samples, 0.34%)</title><rect x="420.8" y="789" width="4.0" height="15.0" fill="rgb(217,176,38)" rx="2" ry="2" /> <text x="423.78" y="799.5" ></text> </g> <g > <title>run_timer_softirq (1 samples, 0.34%)</title><rect x="940.3" y="469" width="4.0" height="15.0" fill="rgb(254,97,14)" rx="2" ry="2" /> <text x="943.31" y="479.5" ></text> </g> <g > <title>poll_for_next_event (1 samples, 0.34%)</title><rect x="444.9" y="805" width="4.1" height="15.0" fill="rgb(222,96,34)" rx="2" ry="2" /> <text x="447.95" y="815.5" ></text> </g> <g > <title>miPointerUpdateSprite (2 samples, 0.68%)</title><rect x="275.8" y="757" width="8.1" height="15.0" fill="rgb(234,208,23)" rx="2" ry="2" /> <text x="278.80" y="767.5" ></text> </g> <g > <title>drm_atomic_helper_commit (1 samples, 0.34%)</title><rect x="167.1" y="389" width="4.0" height="15.0" fill="rgb(207,162,12)" rx="2" ry="2" /> <text x="170.06" y="399.5" ></text> </g> <g > <title>DeviceEnterLeaveEvent (1 samples, 0.34%)</title><rect x="283.9" y="837" width="4.0" height="15.0" fill="rgb(241,133,8)" rx="2" ry="2" /> <text x="286.86" y="847.5" ></text> </g> <g > <title>[perf] (4 samples, 1.37%)</title><rect x="916.1" y="917" width="16.2" height="15.0" fill="rgb(252,88,2)" rx="2" ry="2" /> <text x="919.14" y="927.5" ></text> </g> <g > <title>el1h_64_sync (2 samples, 0.68%)</title><rect x="924.2" y="661" width="8.1" height="15.0" fill="rgb(218,221,7)" rx="2" ry="2" /> <text x="927.20" y="671.5" ></text> </g> <g > <title>invoke_syscall (1 samples, 0.34%)</title><rect x="291.9" y="533" width="4.0" height="15.0" fill="rgb(207,15,18)" rx="2" ry="2" /> <text x="294.91" y="543.5" ></text> </g> <g > <title>__blk_mq_sched_dispatch_requests (1 samples, 0.34%)</title><rect x="420.8" y="885" width="4.0" height="15.0" fill="rgb(207,67,29)" rx="2" ry="2" /> <text x="423.78" y="895.5" ></text> </g> <g > <title>do_el0_svc (1 samples, 0.34%)</title><rect x="255.7" y="389" width="4.0" height="15.0" fill="rgb(234,140,21)" rx="2" ry="2" /> <text x="258.67" y="399.5" ></text> </g> <g > <title>do_epoll_pwait.part.0 (8 samples, 2.73%)</title><rect x="376.5" y="773" width="32.2" height="15.0" fill="rgb(227,139,7)" rx="2" ry="2" /> <text x="379.48" y="783.5" >do..</text> </g> <g > <title>__GI___writev (1 samples, 0.34%)</title><rect x="267.7" y="677" width="4.1" height="15.0" fill="rgb(253,156,0)" rx="2" ry="2" /> <text x="270.75" y="687.5" ></text> </g> <g > <title>ret_from_fork (1 samples, 0.34%)</title><rect x="1157.8" y="997" width="4.0" height="15.0" fill="rgb(205,107,41)" rx="2" ry="2" /> <text x="1160.78" y="1007.5" ></text> </g> <g > <title>el0t_64_sync_handler (1 samples, 0.34%)</title><rect x="747.0" y="533" width="4.0" height="15.0" fill="rgb(217,146,13)" rx="2" ry="2" /> <text x="750.00" y="543.5" ></text> </g> <g > <title>__pthread_cond_wait (1 samples, 0.34%)</title><rect x="771.2" y="517" width="4.0" height="15.0" fill="rgb(235,187,11)" rx="2" ry="2" /> <text x="774.16" y="527.5" ></text> </g> <g > <title>FlushClient (1 samples, 0.34%)</title><rect x="175.1" y="917" width="4.0" height="15.0" fill="rgb(250,191,7)" rx="2" ry="2" /> <text x="178.12" y="927.5" ></text> </g> <g > <title>[libQt5Core.so.5.15.2] (14 samples, 4.78%)</title><rect x="98.6" y="965" width="56.4" height="15.0" fill="rgb(249,197,42)" rx="2" ry="2" /> <text x="101.60" y="975.5" >[libQ..</text> </g> <g > <title>DeliverEventsToWindow (1 samples, 0.34%)</title><rect x="283.9" y="821" width="4.0" height="15.0" fill="rgb(226,162,32)" rx="2" ry="2" /> <text x="286.86" y="831.5" ></text> </g> <g > <title>g_object_real_dispose (1 samples, 0.34%)</title><rect x="412.7" y="789" width="4.1" height="15.0" fill="rgb(218,136,21)" rx="2" ry="2" /> <text x="415.73" y="799.5" ></text> </g> <g > <title>CoreEnterLeaveEvents (2 samples, 0.68%)</title><rect x="287.9" y="821" width="8.0" height="15.0" fill="rgb(216,17,13)" rx="2" ry="2" /> <text x="290.88" y="831.5" ></text> </g> <g > <title>_raw_spin_unlock_irq (1 samples, 0.34%)</title><rect x="920.2" y="581" width="4.0" height="15.0" fill="rgb(233,74,52)" rx="2" ry="2" /> <text x="923.17" y="591.5" ></text> </g> <g > <title>do_interrupt_handler (1 samples, 0.34%)</title><rect x="1121.5" y="853" width="4.1" height="15.0" fill="rgb(219,18,4)" rx="2" ry="2" /> <text x="1124.54" y="863.5" ></text> </g> <g > <title>send_request (1 samples, 0.34%)</title><rect x="767.1" y="501" width="4.1" height="15.0" fill="rgb(241,139,43)" rx="2" ry="2" /> <text x="770.13" y="511.5" ></text> </g> <g > <title>[unknown] (1 samples, 0.34%)</title><rect x="465.1" y="997" width="4.0" height="15.0" fill="rgb(249,204,33)" rx="2" ry="2" /> <text x="468.09" y="1007.5" ></text> </g> <g > <title>do_interrupt_handler (1 samples, 0.34%)</title><rect x="940.3" y="581" width="4.0" height="15.0" fill="rgb(219,15,21)" rx="2" ry="2" /> <text x="943.31" y="591.5" ></text> </g> <g > <title>el0t_64_sync (1 samples, 0.34%)</title><rect x="291.9" y="613" width="4.0" height="15.0" fill="rgb(205,138,5)" rx="2" ry="2" /> <text x="294.91" y="623.5" ></text> </g> <g > <title>poll_freewait (2 samples, 0.68%)</title><rect x="449.0" y="741" width="8.0" height="15.0" fill="rgb(245,99,43)" rx="2" ry="2" /> <text x="451.98" y="751.5" ></text> </g> <g > <title>[xscreensaver] (6 samples, 2.05%)</title><rect x="1161.8" y="965" width="24.2" height="15.0" fill="rgb(235,166,24)" rx="2" ry="2" /> <text x="1164.81" y="975.5" >[..</text> </g> <g > <title>hb_lazy_loader_t<OT::GPOS_accelerator_t, hb_face_lazy_loader_t<OT::GPOS_accelerator_t, 23u>, hb_face_t, 23u, OT::GPOS_accelerator_t>::operator (1 samples, 0.34%)</title><rect x="606.0" y="277" width="4.1" height="15.0" fill="rgb(241,81,10)" rx="2" ry="2" /> <text x="609.04" y="287.5" ></text> </g> <g > <title>sock_alloc_send_pskb (1 samples, 0.34%)</title><rect x="175.1" y="629" width="4.0" height="15.0" fill="rgb(248,131,32)" rx="2" ry="2" /> <text x="178.12" y="639.5" ></text> </g> <g > <title>QWidgetPrivate::windowHandle@plt (1 samples, 0.34%)</title><rect x="461.1" y="981" width="4.0" height="15.0" fill="rgb(231,138,28)" rx="2" ry="2" /> <text x="464.06" y="991.5" ></text> </g> <g > <title>invoke_syscall (3 samples, 1.02%)</title><rect x="324.1" y="789" width="12.1" height="15.0" fill="rgb(237,27,5)" rx="2" ry="2" /> <text x="327.13" y="799.5" ></text> </g> <g > <title>_xcb_conn_wait (1 samples, 0.34%)</title><rect x="944.3" y="581" width="4.1" height="15.0" fill="rgb(229,197,16)" rx="2" ry="2" /> <text x="947.33" y="591.5" ></text> </g> <g > <title>__sys_recvmsg (2 samples, 0.68%)</title><rect x="110.7" y="741" width="8.0" height="15.0" fill="rgb(251,24,23)" rx="2" ry="2" /> <text x="113.68" y="751.5" ></text> </g> <g > <title>__irq_exit_rcu (1 samples, 0.34%)</title><rect x="408.7" y="645" width="4.0" height="15.0" fill="rgb(241,55,52)" rx="2" ry="2" /> <text x="411.70" y="655.5" ></text> </g> <g > <title>__wake_up_sync_key (1 samples, 0.34%)</title><rect x="304.0" y="405" width="4.0" height="15.0" fill="rgb(250,111,34)" rx="2" ry="2" /> <text x="306.99" y="415.5" ></text> </g> <g > <title>do_el0_svc (2 samples, 0.68%)</title><rect x="360.4" y="837" width="8.0" height="15.0" fill="rgb(242,2,5)" rx="2" ry="2" /> <text x="363.38" y="847.5" ></text> </g> <g > <title>_raw_write_lock_irqsave (1 samples, 0.34%)</title><rect x="243.6" y="453" width="4.0" height="15.0" fill="rgb(222,171,7)" rx="2" ry="2" /> <text x="246.58" y="463.5" ></text> </g> <g > <title>[qterminal] (4 samples, 1.37%)</title><rect x="936.3" y="965" width="16.1" height="15.0" fill="rgb(216,105,6)" rx="2" ry="2" /> <text x="939.28" y="975.5" ></text> </g> <g > <title>el0t_64_sync (1 samples, 0.34%)</title><rect x="1153.8" y="933" width="4.0" height="15.0" fill="rgb(243,192,31)" rx="2" ry="2" /> <text x="1156.75" y="943.5" ></text> </g> <g > <title>__pollwait (2 samples, 0.68%)</title><rect x="146.9" y="709" width="8.1" height="15.0" fill="rgb(242,68,19)" rx="2" ry="2" /> <text x="149.93" y="719.5" ></text> </g> <g > <title>pagecache_get_page (1 samples, 0.34%)</title><rect x="920.2" y="629" width="4.0" height="15.0" fill="rgb(228,211,17)" rx="2" ry="2" /> <text x="923.17" y="639.5" ></text> </g> <g > <title>SmartScheduleStopTimer (2 samples, 0.68%)</title><rect x="360.4" y="917" width="8.0" height="15.0" fill="rgb(228,140,1)" rx="2" ry="2" /> <text x="363.38" y="927.5" ></text> </g> <g > <title>Fm::FolderItemDelegate::drawText (3 samples, 1.02%)</title><rect x="606.0" y="533" width="12.1" height="15.0" fill="rgb(211,173,50)" rx="2" ry="2" /> <text x="609.04" y="543.5" ></text> </g> <g > <title>QCoreApplication::exec (90 samples, 30.72%)</title><rect x="473.1" y="949" width="362.5" height="15.0" fill="rgb(245,153,17)" rx="2" ry="2" /> <text x="476.14" y="959.5" >QCoreApplication::exec</text> </g> <g > <title>arch_cpu_idle (12 samples, 4.10%)</title><rect x="1077.2" y="917" width="48.4" height="15.0" fill="rgb(210,125,6)" rx="2" ry="2" /> <text x="1080.24" y="927.5" >arch..</text> </g> <g > <title>affinity__set (2 samples, 0.68%)</title><rect x="839.6" y="949" width="8.1" height="15.0" fill="rgb(236,200,26)" rx="2" ry="2" /> <text x="842.62" y="959.5" ></text> </g> <g > <title>g_source_unref_internal (1 samples, 0.34%)</title><rect x="831.6" y="837" width="4.0" height="15.0" fill="rgb(210,64,23)" rx="2" ry="2" /> <text x="834.57" y="847.5" ></text> </g> <g > <title>vc4_plane_atomic_update (1 samples, 0.34%)</title><rect x="167.1" y="325" width="4.0" height="15.0" fill="rgb(239,24,47)" rx="2" ry="2" /> <text x="170.06" y="335.5" ></text> </g> <g > <title>_raw_spin_unlock_irq (1 samples, 0.34%)</title><rect x="22.1" y="725" width="4.0" height="15.0" fill="rgb(211,59,28)" rx="2" ry="2" /> <text x="25.08" y="735.5" ></text> </g> <g > <title>glamor_composite_clipped_region (1 samples, 0.34%)</title><rect x="344.3" y="789" width="4.0" height="15.0" fill="rgb(212,104,24)" rx="2" ry="2" /> <text x="347.27" y="799.5" ></text> </g> <g > <title>util_copy_rect (1 samples, 0.34%)</title><rect x="251.6" y="661" width="4.1" height="15.0" fill="rgb(248,176,25)" rx="2" ry="2" /> <text x="254.64" y="671.5" ></text> </g> <g > <title>el0_svc (2 samples, 0.68%)</title><rect x="352.3" y="853" width="8.1" height="15.0" fill="rgb(239,20,31)" rx="2" ry="2" /> <text x="355.32" y="863.5" ></text> </g> <g > <title>read (3 samples, 1.02%)</title><rect x="34.2" y="837" width="12.0" height="15.0" fill="rgb(245,192,10)" rx="2" ry="2" /> <text x="37.16" y="847.5" ></text> </g> <g > <title>dix_main (64 samples, 21.84%)</title><rect x="155.0" y="965" width="257.7" height="15.0" fill="rgb(209,26,0)" rx="2" ry="2" /> <text x="157.98" y="975.5" >dix_main</text> </g> <g > <title>g_source_callback_unref (1 samples, 0.34%)</title><rect x="412.7" y="837" width="4.1" height="15.0" fill="rgb(223,36,39)" rx="2" ry="2" /> <text x="415.73" y="847.5" ></text> </g> <g > <title>alloc_skb_with_frags (1 samples, 0.34%)</title><rect x="175.1" y="613" width="4.0" height="15.0" fill="rgb(240,129,37)" rx="2" ry="2" /> <text x="178.12" y="623.5" ></text> </g> <g > <title>QIcon::isNull (1 samples, 0.34%)</title><rect x="658.4" y="453" width="4.0" height="15.0" fill="rgb(207,148,36)" rx="2" ry="2" /> <text x="661.40" y="463.5" ></text> </g> <g > <title>drm_atomic_helper_commit (1 samples, 0.34%)</title><rect x="275.8" y="293" width="4.0" height="15.0" fill="rgb(253,226,27)" rx="2" ry="2" /> <text x="278.80" y="303.5" ></text> </g> <g > <title>__schedule (1 samples, 0.34%)</title><rect x="142.9" y="693" width="4.0" height="15.0" fill="rgb(249,112,47)" rx="2" ry="2" /> <text x="145.90" y="703.5" ></text> </g> <g > <title>set_target (1 samples, 0.34%)</title><rect x="960.4" y="917" width="4.1" height="15.0" fill="rgb(229,73,2)" rx="2" ry="2" /> <text x="963.44" y="927.5" ></text> </g> <g > <title>el0t_64_sync_handler (1 samples, 0.34%)</title><rect x="835.6" y="901" width="4.0" height="15.0" fill="rgb(227,136,22)" rx="2" ry="2" /> <text x="838.60" y="911.5" ></text> </g> <g > <title>QWidget::event (1 samples, 0.34%)</title><rect x="783.2" y="629" width="4.1" height="15.0" fill="rgb(225,115,35)" rx="2" ry="2" /> <text x="786.24" y="639.5" ></text> </g> <g > <title>el0_svc_common.constprop.0 (1 samples, 0.34%)</title><rect x="473.1" y="725" width="4.1" height="15.0" fill="rgb(219,46,34)" rx="2" ry="2" /> <text x="476.14" y="735.5" ></text> </g> <g > <title>invoke_syscall (9 samples, 3.07%)</title><rect x="376.5" y="805" width="36.2" height="15.0" fill="rgb(251,151,31)" rx="2" ry="2" /> <text x="379.48" y="815.5" >inv..</text> </g> <g > <title>el1h_64_irq_handler (1 samples, 0.34%)</title><rect x="1121.5" y="885" width="4.1" height="15.0" fill="rgb(216,201,54)" rx="2" ry="2" /> <text x="1124.54" y="895.5" ></text> </g> <g > <title>QXcbWindow::handleXIMouseEvent (2 samples, 0.68%)</title><rect x="787.3" y="789" width="8.0" height="15.0" fill="rgb(222,84,22)" rx="2" ry="2" /> <text x="790.27" y="799.5" ></text> </g> <g > <title>_XSERVTransSocketWritev (2 samples, 0.68%)</title><rect x="300.0" y="693" width="8.0" height="15.0" fill="rgb(239,209,24)" rx="2" ry="2" /> <text x="302.97" y="703.5" ></text> </g> <g > <title>el0_svc (2 samples, 0.68%)</title><rect x="360.4" y="853" width="8.0" height="15.0" fill="rgb(221,33,15)" rx="2" ry="2" /> <text x="363.38" y="863.5" ></text> </g> <g > <title>g_main_context_poll (1 samples, 0.34%)</title><rect x="948.4" y="869" width="4.0" height="15.0" fill="rgb(213,67,27)" rx="2" ry="2" /> <text x="951.36" y="879.5" ></text> </g> <g > <title>invoke_syscall (17 samples, 5.80%)</title><rect x="847.7" y="837" width="68.4" height="15.0" fill="rgb(248,68,27)" rx="2" ry="2" /> <text x="850.68" y="847.5" >invoke_..</text> </g> <g > <title>QTextEngine::shapeText (1 samples, 0.34%)</title><rect x="638.3" y="533" width="4.0" height="15.0" fill="rgb(235,105,31)" rx="2" ry="2" /> <text x="641.26" y="543.5" ></text> </g> <g > <title>_raw_spin_unlock_irqrestore (1 samples, 0.34%)</title><rect x="1024.9" y="565" width="4.0" height="15.0" fill="rgb(253,65,10)" rx="2" ry="2" /> <text x="1027.88" y="575.5" ></text> </g> <g > <title>QEventDispatcherGlib::processEvents (1 samples, 0.34%)</title><rect x="440.9" y="917" width="4.0" height="15.0" fill="rgb(239,73,0)" rx="2" ry="2" /> <text x="443.92" y="927.5" ></text> </g> <g > <title>QEventLoop::exec (90 samples, 30.72%)</title><rect x="473.1" y="933" width="362.5" height="15.0" fill="rgb(211,146,25)" rx="2" ry="2" /> <text x="476.14" y="943.5" >QEventLoop::exec</text> </g> <g > <title>_start (1 samples, 0.34%)</title><rect x="952.4" y="981" width="4.0" height="15.0" fill="rgb(248,92,27)" rx="2" ry="2" /> <text x="955.39" y="991.5" ></text> </g> <g > <title>msg_submit (2 samples, 0.68%)</title><rect x="58.3" y="261" width="8.1" height="15.0" fill="rgb(240,187,2)" rx="2" ry="2" /> <text x="61.33" y="271.5" ></text> </g> <g > <title>__GI_memcpy (9 samples, 3.07%)</title><rect x="199.3" y="741" width="36.2" height="15.0" fill="rgb(246,180,10)" rx="2" ry="2" /> <text x="202.28" y="751.5" >__G..</text> </g> <g > <title>el0t_64_sync (1 samples, 0.34%)</title><rect x="283.9" y="661" width="4.0" height="15.0" fill="rgb(245,33,29)" rx="2" ry="2" /> <text x="286.86" y="671.5" ></text> </g> <g > <title>QPainter::fillRect (21 samples, 7.17%)</title><rect x="662.4" y="629" width="84.6" height="15.0" fill="rgb(212,162,14)" rx="2" ry="2" /> <text x="665.42" y="639.5" >QPainter:..</text> </g> <g > <title>QFont::QFont (1 samples, 0.34%)</title><rect x="614.1" y="469" width="4.0" height="15.0" fill="rgb(238,90,20)" rx="2" ry="2" /> <text x="617.10" y="479.5" ></text> </g> <g > <title>_XSERVTransSocketWritev (1 samples, 0.34%)</title><rect x="291.9" y="661" width="4.0" height="15.0" fill="rgb(216,227,13)" rx="2" ry="2" /> <text x="294.91" y="671.5" ></text> </g> <g > <title>__libc_write (4 samples, 1.37%)</title><rect x="916.1" y="901" width="16.2" height="15.0" fill="rgb(225,116,42)" rx="2" ry="2" /> <text x="919.14" y="911.5" ></text> </g> <g > <title>[libQt5XcbQpa.so.5.15.2] (1 samples, 0.34%)</title><rect x="440.9" y="837" width="4.0" height="15.0" fill="rgb(232,76,7)" rx="2" ry="2" /> <text x="443.92" y="847.5" ></text> </g> <g > <title>_XEventsQueued (1 samples, 0.34%)</title><rect x="1186.0" y="981" width="4.0" height="15.0" fill="rgb(238,135,24)" rx="2" ry="2" /> <text x="1188.97" y="991.5" ></text> </g> <g > <title>dput (1 samples, 0.34%)</title><rect x="1153.8" y="821" width="4.0" height="15.0" fill="rgb(244,222,11)" rx="2" ry="2" /> <text x="1156.75" y="831.5" ></text> </g> <g > <title>__arm64_sys_recvmsg (3 samples, 1.02%)</title><rect x="324.1" y="773" width="12.1" height="15.0" fill="rgb(225,66,17)" rx="2" ry="2" /> <text x="327.13" y="783.5" ></text> </g> <g > <title>xcb_flush (1 samples, 0.34%)</title><rect x="747.0" y="677" width="4.0" height="15.0" fill="rgb(239,124,8)" rx="2" ry="2" /> <text x="750.00" y="687.5" ></text> </g> <g > <title>schedule_hrtimeout_range (2 samples, 0.68%)</title><rect x="815.5" y="709" width="8.0" height="15.0" fill="rgb(209,223,30)" rx="2" ry="2" /> <text x="818.46" y="719.5" ></text> </g> <g > <title>TryClientEvents (1 samples, 0.34%)</title><rect x="291.9" y="725" width="4.0" height="15.0" fill="rgb(245,21,20)" rx="2" ry="2" /> <text x="294.91" y="735.5" ></text> </g> <g > <title>drm_ioctl (2 samples, 0.68%)</title><rect x="275.8" y="421" width="8.1" height="15.0" fill="rgb(216,114,25)" rx="2" ry="2" /> <text x="278.80" y="431.5" ></text> </g> <g > <title>[systemd-userwork] (1 samples, 0.34%)</title><rect x="1153.8" y="965" width="4.0" height="15.0" fill="rgb(206,72,20)" rx="2" ry="2" /> <text x="1156.75" y="975.5" ></text> </g> <g > <title>DeliverEventToWindowMask (1 samples, 0.34%)</title><rect x="295.9" y="773" width="4.1" height="15.0" fill="rgb(245,71,3)" rx="2" ry="2" /> <text x="298.94" y="783.5" ></text> </g> <g > <title>el0t_64_sync_handler (1 samples, 0.34%)</title><rect x="775.2" y="405" width="4.0" height="15.0" fill="rgb(251,67,1)" rx="2" ry="2" /> <text x="778.19" y="415.5" ></text> </g> <g > <title>XEventsQueued (3 samples, 1.02%)</title><rect x="1161.8" y="917" width="12.1" height="15.0" fill="rgb(238,210,20)" rx="2" ry="2" /> <text x="1164.81" y="927.5" ></text> </g> <g > <title>[libsystemd-shared-249.so] (1 samples, 0.34%)</title><rect x="1145.7" y="837" width="4.0" height="15.0" fill="rgb(235,156,41)" rx="2" ry="2" /> <text x="1148.70" y="847.5" ></text> </g> <g > <title>Fm::FolderItemDelegate::drawText (2 samples, 0.68%)</title><rect x="638.3" y="597" width="8.0" height="15.0" fill="rgb(252,43,42)" rx="2" ry="2" /> <text x="641.26" y="607.5" ></text> </g> <g > <title>Fm::IconInfo::qicon (1 samples, 0.34%)</title><rect x="658.4" y="533" width="4.0" height="15.0" fill="rgb(244,201,29)" rx="2" ry="2" /> <text x="661.40" y="543.5" ></text> </g> <g > <title>__local_bh_disable_ip (1 samples, 0.34%)</title><rect x="94.6" y="821" width="4.0" height="15.0" fill="rgb(220,98,52)" rx="2" ry="2" /> <text x="97.57" y="831.5" ></text> </g> <g > <title>iov_iter_fault_in_readable (2 samples, 0.68%)</title><rect x="924.2" y="677" width="8.1" height="15.0" fill="rgb(216,103,22)" rx="2" ry="2" /> <text x="927.20" y="687.5" ></text> </g> <g > <title>v3d_bo_alloc (1 samples, 0.34%)</title><rect x="255.7" y="501" width="4.0" height="15.0" fill="rgb(238,55,19)" rx="2" ry="2" /> <text x="258.67" y="511.5" ></text> </g> <g > <title>_perf_ioctl (16 samples, 5.46%)</title><rect x="851.7" y="789" width="64.4" height="15.0" fill="rgb(225,5,20)" rx="2" ry="2" /> <text x="854.71" y="799.5" >_perf_i..</text> </g> <g > <title>drm_ioctl_kernel (2 samples, 0.68%)</title><rect x="275.8" y="405" width="8.1" height="15.0" fill="rgb(253,14,21)" rx="2" ry="2" /> <text x="278.80" y="415.5" ></text> </g> <g > <title>__arm64_sys_ioctl (2 samples, 0.68%)</title><rect x="275.8" y="437" width="8.1" height="15.0" fill="rgb(207,167,45)" rx="2" ry="2" /> <text x="278.80" y="447.5" ></text> </g> <g > <title>[libQt5Gui.so.5.15.2] (1 samples, 0.34%)</title><rect x="606.0" y="501" width="4.1" height="15.0" fill="rgb(234,35,35)" rx="2" ry="2" /> <text x="609.04" y="511.5" ></text> </g> <g > <title>g_main_dispatch (1 samples, 0.34%)</title><rect x="412.7" y="885" width="4.1" height="15.0" fill="rgb(222,174,15)" rx="2" ry="2" /> <text x="415.73" y="895.5" ></text> </g> <g > <title>drmIoctl (1 samples, 0.34%)</title><rect x="344.3" y="597" width="4.0" height="15.0" fill="rgb(232,196,36)" rx="2" ry="2" /> <text x="347.27" y="607.5" ></text> </g> <g > <title>drmIoctl (1 samples, 0.34%)</title><rect x="243.6" y="677" width="4.0" height="15.0" fill="rgb(244,159,32)" rx="2" ry="2" /> <text x="246.58" y="687.5" ></text> </g> <g > <title>_raw_spin_unlock_irqrestore (1 samples, 0.34%)</title><rect x="843.7" y="757" width="4.0" height="15.0" fill="rgb(251,52,16)" rx="2" ry="2" /> <text x="846.65" y="767.5" ></text> </g> <g > <title>InputThreadFillPipe (4 samples, 1.37%)</title><rect x="10.0" y="949" width="16.1" height="15.0" fill="rgb(220,179,31)" rx="2" ry="2" /> <text x="13.00" y="959.5" ></text> </g> <g > <title>do_iter_write (1 samples, 0.34%)</title><rect x="747.0" y="405" width="4.0" height="15.0" fill="rgb(208,32,29)" rx="2" ry="2" /> <text x="750.00" y="415.5" ></text> </g> <g > <title>_xcb_out_send (1 samples, 0.34%)</title><rect x="944.3" y="597" width="4.1" height="15.0" fill="rgb(218,8,0)" rx="2" ry="2" /> <text x="947.33" y="607.5" ></text> </g> <g > <title>el0_svc (6 samples, 2.05%)</title><rect x="74.4" y="885" width="24.2" height="15.0" fill="rgb(242,62,1)" rx="2" ry="2" /> <text x="77.44" y="895.5" >e..</text> </g> <g > <title>el0_svc (4 samples, 1.37%)</title><rect x="10.0" y="869" width="16.1" height="15.0" fill="rgb(212,217,33)" rx="2" ry="2" /> <text x="13.00" y="879.5" ></text> </g> <g > <title>el0_svc (9 samples, 3.07%)</title><rect x="376.5" y="853" width="36.2" height="15.0" fill="rgb(226,88,45)" rx="2" ry="2" /> <text x="379.48" y="863.5" >el0..</text> </g> <g > <title>drm_atomic_helper_update_plane (1 samples, 0.34%)</title><rect x="275.8" y="325" width="4.0" height="15.0" fill="rgb(221,142,20)" rx="2" ry="2" /> <text x="278.80" y="335.5" ></text> </g> <g > <title>__GI___sched_setaffinity_new (1 samples, 0.34%)</title><rect x="835.6" y="933" width="4.0" height="15.0" fill="rgb(226,138,20)" rx="2" ry="2" /> <text x="838.60" y="943.5" ></text> </g> <g > <title>invoke_syscall (3 samples, 1.02%)</title><rect x="34.2" y="709" width="12.0" height="15.0" fill="rgb(244,202,18)" rx="2" ry="2" /> <text x="37.16" y="719.5" ></text> </g> <g > <title>__do_softirq (14 samples, 4.78%)</title><rect x="1000.7" y="725" width="56.4" height="15.0" fill="rgb(223,205,7)" rx="2" ry="2" /> <text x="1003.72" y="735.5" >__do_..</text> </g> <g > <title>[libQt5Widgets.so.5.15.2] (1 samples, 0.34%)</title><rect x="440.9" y="757" width="4.0" height="15.0" fill="rgb(206,112,53)" rx="2" ry="2" /> <text x="443.92" y="767.5" ></text> </g> <g > <title>start_backtrace (1 samples, 0.34%)</title><rect x="1169.9" y="565" width="4.0" height="15.0" fill="rgb(216,151,41)" rx="2" ry="2" /> <text x="1172.86" y="575.5" ></text> </g> <g > <title>pipe_write (3 samples, 1.02%)</title><rect x="14.0" y="741" width="12.1" height="15.0" fill="rgb(206,144,43)" rx="2" ry="2" /> <text x="17.03" y="751.5" ></text> </g> <g > <title>QTextEngine::fontEngine (1 samples, 0.34%)</title><rect x="614.1" y="485" width="4.0" height="15.0" fill="rgb(250,1,53)" rx="2" ry="2" /> <text x="617.10" y="495.5" ></text> </g> <g > <title>__libc_read (3 samples, 1.02%)</title><rect x="34.2" y="805" width="12.0" height="15.0" fill="rgb(235,76,6)" rx="2" ry="2" /> <text x="37.16" y="815.5" ></text> </g> <g > <title>finish_task_switch.isra.0 (1 samples, 0.34%)</title><rect x="420.8" y="757" width="4.0" height="15.0" fill="rgb(241,18,38)" rx="2" ry="2" /> <text x="423.78" y="767.5" ></text> </g> <g > <title>vc4_atomic_commit_tail (1 samples, 0.34%)</title><rect x="275.8" y="261" width="4.0" height="15.0" fill="rgb(217,82,1)" rx="2" ry="2" /> <text x="278.80" y="271.5" ></text> </g> <g > <title>el0_svc_common.constprop.0 (4 samples, 1.37%)</title><rect x="916.1" y="805" width="16.2" height="15.0" fill="rgb(224,16,42)" rx="2" ry="2" /> <text x="919.14" y="815.5" ></text> </g> <g > <title>__arm64_sys_ioctl (6 samples, 2.05%)</title><rect x="46.2" y="533" width="24.2" height="15.0" fill="rgb(221,184,20)" rx="2" ry="2" /> <text x="49.25" y="543.5" >_..</text> </g> <g > <title>el0t_64_sync_handler (2 samples, 0.68%)</title><rect x="360.4" y="869" width="8.0" height="15.0" fill="rgb(239,147,51)" rx="2" ry="2" /> <text x="363.38" y="879.5" ></text> </g> <g > <title>el0t_64_sync (3 samples, 1.02%)</title><rect x="110.7" y="853" width="12.1" height="15.0" fill="rgb(234,34,6)" rx="2" ry="2" /> <text x="113.68" y="863.5" ></text> </g> <g > <title>hrtimer_start_range_ns (1 samples, 0.34%)</title><rect x="416.8" y="789" width="4.0" height="15.0" fill="rgb(210,100,33)" rx="2" ry="2" /> <text x="419.76" y="799.5" ></text> </g> <g > <title>__libc_recvmsg (6 samples, 2.05%)</title><rect x="312.0" y="885" width="24.2" height="15.0" fill="rgb(216,172,11)" rx="2" ry="2" /> <text x="315.05" y="895.5" >_..</text> </g> <g > <title>v3d_draw_vbo (1 samples, 0.34%)</title><rect x="255.7" y="565" width="4.0" height="15.0" fill="rgb(238,119,30)" rx="2" ry="2" /> <text x="258.67" y="575.5" ></text> </g> <g > <title>_XEventsQueued (3 samples, 1.02%)</title><rect x="1161.8" y="901" width="12.1" height="15.0" fill="rgb(241,128,30)" rx="2" ry="2" /> <text x="1164.81" y="911.5" ></text> </g> <g > <title>[libQt5XcbQpa.so.5.15.2] (3 samples, 1.02%)</title><rect x="936.3" y="837" width="12.1" height="15.0" fill="rgb(235,95,50)" rx="2" ry="2" /> <text x="939.28" y="847.5" ></text> </g> <g > <title>__alloc_skb (1 samples, 0.34%)</title><rect x="747.0" y="293" width="4.0" height="15.0" fill="rgb(240,120,6)" rx="2" ry="2" /> <text x="750.00" y="303.5" ></text> </g> <g > <title>QApplicationPrivate::notify_helper (6 samples, 2.05%)</title><rect x="763.1" y="773" width="24.2" height="15.0" fill="rgb(239,35,47)" rx="2" ry="2" /> <text x="766.11" y="783.5" >Q..</text> </g> <g > <title>_raw_spin_unlock_irqrestore (2 samples, 0.68%)</title><rect x="449.0" y="709" width="8.0" height="15.0" fill="rgb(236,86,31)" rx="2" ry="2" /> <text x="451.98" y="719.5" ></text> </g> <g > <title>do_el0_svc (6 samples, 2.05%)</title><rect x="799.4" y="789" width="24.1" height="15.0" fill="rgb(246,170,48)" rx="2" ry="2" /> <text x="802.35" y="799.5" >d..</text> </g> <g > <title>process_one_work (1 samples, 0.34%)</title><rect x="416.8" y="949" width="4.0" height="15.0" fill="rgb(236,68,18)" rx="2" ry="2" /> <text x="419.76" y="959.5" ></text> </g> <g > <title>do_epoll_pwait.part.0 (3 samples, 1.02%)</title><rect x="78.5" y="805" width="12.0" height="15.0" fill="rgb(229,118,40)" rx="2" ry="2" /> <text x="81.46" y="815.5" ></text> </g> <g > <title>do_sys_poll (2 samples, 0.68%)</title><rect x="449.0" y="757" width="8.0" height="15.0" fill="rgb(217,126,10)" rx="2" ry="2" /> <text x="451.98" y="767.5" ></text> </g> <g > <title>_raw_spin_unlock_irq (1 samples, 0.34%)</title><rect x="66.4" y="245" width="4.0" height="15.0" fill="rgb(249,153,47)" rx="2" ry="2" /> <text x="69.38" y="255.5" ></text> </g> <g > <title>g_wakeup_signal (1 samples, 0.34%)</title><rect x="102.6" y="917" width="4.1" height="15.0" fill="rgb(236,64,50)" rx="2" ry="2" /> <text x="105.63" y="927.5" ></text> </g> <g > <title>util_copy_box (11 samples, 3.75%)</title><rect x="199.3" y="757" width="44.3" height="15.0" fill="rgb(228,121,13)" rx="2" ry="2" /> <text x="202.28" y="767.5" >util..</text> </g> <g > <title>send_request (1 samples, 0.34%)</title><rect x="767.1" y="517" width="4.1" height="15.0" fill="rgb(254,140,18)" rx="2" ry="2" /> <text x="770.13" y="527.5" ></text> </g> <g > <title>QMetaType::QMetaType (1 samples, 0.34%)</title><rect x="618.1" y="453" width="4.1" height="15.0" fill="rgb(237,160,33)" rx="2" ry="2" /> <text x="621.12" y="463.5" ></text> </g> <g > <title>accept4 (1 samples, 0.34%)</title><rect x="1153.8" y="949" width="4.0" height="15.0" fill="rgb(221,37,8)" rx="2" ry="2" /> <text x="1156.75" y="959.5" ></text> </g> <g > <title>FlushClient (1 samples, 0.34%)</title><rect x="291.9" y="677" width="4.0" height="15.0" fill="rgb(244,95,20)" rx="2" ry="2" /> <text x="294.91" y="687.5" ></text> </g> <g > <title>[libQt5XcbQpa.so.5.15.2] (2 samples, 0.68%)</title><rect x="940.3" y="661" width="8.1" height="15.0" fill="rgb(210,101,0)" rx="2" ry="2" /> <text x="943.31" y="671.5" ></text> </g> <g > <title>[libQt5Widgets.so.5.15.2] (6 samples, 2.05%)</title><rect x="763.1" y="757" width="24.2" height="15.0" fill="rgb(206,110,20)" rx="2" ry="2" /> <text x="766.11" y="767.5" >[..</text> </g> <g > <title>_raw_spin_lock (1 samples, 0.34%)</title><rect x="159.0" y="405" width="4.0" height="15.0" fill="rgb(209,154,35)" rx="2" ry="2" /> <text x="162.01" y="415.5" ></text> </g> <g > <title>el0t_64_sync (2 samples, 0.68%)</title><rect x="360.4" y="885" width="8.0" height="15.0" fill="rgb(224,28,0)" rx="2" ry="2" /> <text x="363.38" y="895.5" ></text> </g> <g > <title>_xcb_out_send (1 samples, 0.34%)</title><rect x="775.2" y="501" width="4.0" height="15.0" fill="rgb(246,63,14)" rx="2" ry="2" /> <text x="778.19" y="511.5" ></text> </g> <g > <title>QWidget::event (6 samples, 2.05%)</title><rect x="638.3" y="645" width="24.1" height="15.0" fill="rgb(230,92,18)" rx="2" ry="2" /> <text x="641.26" y="655.5" >Q..</text> </g> <g > <title>invoke_syscall (3 samples, 1.02%)</title><rect x="14.0" y="821" width="12.1" height="15.0" fill="rgb(242,87,19)" rx="2" ry="2" /> <text x="17.03" y="831.5" ></text> </g> <g > <title>ep_done_scan (1 samples, 0.34%)</title><rect x="384.5" y="741" width="4.1" height="15.0" fill="rgb(248,192,6)" rx="2" ry="2" /> <text x="387.54" y="751.5" ></text> </g> <g > <title>sock_sendmsg (1 samples, 0.34%)</title><rect x="287.9" y="437" width="4.0" height="15.0" fill="rgb(244,3,10)" rx="2" ry="2" /> <text x="290.88" y="447.5" ></text> </g> <g > <title>worker_thread (1 samples, 0.34%)</title><rect x="424.8" y="965" width="4.0" height="15.0" fill="rgb(251,186,3)" rx="2" ry="2" /> <text x="427.81" y="975.5" ></text> </g> <g > <title>poll_for_event (2 samples, 0.68%)</title><rect x="1173.9" y="837" width="8.0" height="15.0" fill="rgb(205,28,48)" rx="2" ry="2" /> <text x="1176.89" y="847.5" ></text> </g> <g > <title>msg_submit (1 samples, 0.34%)</title><rect x="960.4" y="741" width="4.1" height="15.0" fill="rgb(241,52,17)" rx="2" ry="2" /> <text x="963.44" y="751.5" ></text> </g> <g > <title>do_el0_svc (1 samples, 0.34%)</title><rect x="287.9" y="581" width="4.0" height="15.0" fill="rgb(225,139,13)" rx="2" ry="2" /> <text x="290.88" y="591.5" ></text> </g> <g > <title>v3d_bin_job_run (1 samples, 0.34%)</title><rect x="1157.8" y="949" width="4.0" height="15.0" fill="rgb(224,165,28)" rx="2" ry="2" /> <text x="1160.78" y="959.5" ></text> </g> <g > <title>el0t_64_sync_handler (7 samples, 2.39%)</title><rect x="799.4" y="821" width="28.1" height="15.0" fill="rgb(229,117,23)" rx="2" ry="2" /> <text x="802.35" y="831.5" >e..</text> </g> <g > <title>FlushClient (1 samples, 0.34%)</title><rect x="267.7" y="709" width="4.1" height="15.0" fill="rgb(229,102,4)" rx="2" ry="2" /> <text x="270.75" y="719.5" ></text> </g> <g > <title>hrtimer_start_range_ns (2 samples, 0.68%)</title><rect x="58.3" y="245" width="8.1" height="15.0" fill="rgb(211,212,42)" rx="2" ry="2" /> <text x="61.33" y="255.5" ></text> </g> <g > <title>QWindow::parent (1 samples, 0.34%)</title><rect x="755.1" y="661" width="4.0" height="15.0" fill="rgb(216,43,51)" rx="2" ry="2" /> <text x="758.05" y="671.5" ></text> </g> <g > <title>__GI___writev (2 samples, 0.68%)</title><rect x="300.0" y="661" width="8.0" height="15.0" fill="rgb(237,59,5)" rx="2" ry="2" /> <text x="302.97" y="671.5" ></text> </g> <g > <title>el0t_64_sync_handler (1 samples, 0.34%)</title><rect x="295.9" y="613" width="4.1" height="15.0" fill="rgb(216,156,30)" rx="2" ry="2" /> <text x="298.94" y="623.5" ></text> </g> <g > <title>clk_core_set_rate_nolock (1 samples, 0.34%)</title><rect x="960.4" y="853" width="4.1" height="15.0" fill="rgb(239,101,50)" rx="2" ry="2" /> <text x="963.44" y="863.5" ></text> </g> <g > <title>____sys_recvmsg (3 samples, 1.02%)</title><rect x="324.1" y="725" width="12.1" height="15.0" fill="rgb(249,134,17)" rx="2" ry="2" /> <text x="327.13" y="735.5" ></text> </g> <g > <title>__libc_start_main (1 samples, 0.34%)</title><rect x="440.9" y="981" width="4.0" height="15.0" fill="rgb(234,108,40)" rx="2" ry="2" /> <text x="443.92" y="991.5" ></text> </g> <g > <title>hb_ot_shape_plan_t::position (1 samples, 0.34%)</title><rect x="606.0" y="325" width="4.1" height="15.0" fill="rgb(224,100,30)" rx="2" ry="2" /> <text x="609.04" y="335.5" ></text> </g> <g > <title>drm_gem_fb_create (1 samples, 0.34%)</title><rect x="279.8" y="309" width="4.1" height="15.0" fill="rgb(209,215,11)" rx="2" ry="2" /> <text x="282.83" y="319.5" ></text> </g> <g > <title>vfs_writev (1 samples, 0.34%)</title><rect x="283.9" y="533" width="4.0" height="15.0" fill="rgb(212,159,31)" rx="2" ry="2" /> <text x="286.86" y="543.5" ></text> </g> <g > <title>kworker/u8:5-ev (1 samples, 0.34%)</title><rect x="424.8" y="1013" width="4.0" height="15.0" fill="rgb(253,154,45)" rx="2" ry="2" /> <text x="427.81" y="1023.5" ></text> </g> <g > <title>__sys_recvmsg (3 samples, 1.02%)</title><rect x="324.1" y="757" width="12.1" height="15.0" fill="rgb(230,195,22)" rx="2" ry="2" /> <text x="327.13" y="767.5" ></text> </g> <g > <title>v3d_bo_map (1 samples, 0.34%)</title><rect x="344.3" y="661" width="4.0" height="15.0" fill="rgb(239,18,12)" rx="2" ry="2" /> <text x="347.27" y="671.5" ></text> </g> <g > <title>QueuePointerEvents (6 samples, 2.05%)</title><rect x="46.2" y="869" width="24.2" height="15.0" fill="rgb(205,35,46)" rx="2" ry="2" /> <text x="49.25" y="879.5" >Q..</text> </g> <g > <title>_mesa_validate_pbo_source (1 samples, 0.34%)</title><rect x="247.6" y="709" width="4.0" height="15.0" fill="rgb(252,172,39)" rx="2" ry="2" /> <text x="250.61" y="719.5" ></text> </g> <g > <title>el0_svc_common.constprop.0 (5 samples, 1.71%)</title><rect x="134.8" y="805" width="20.2" height="15.0" fill="rgb(244,33,4)" rx="2" ry="2" /> <text x="137.85" y="815.5" ></text> </g> <g > <title>do_iter_write (1 samples, 0.34%)</title><rect x="175.1" y="709" width="4.0" height="15.0" fill="rgb(223,90,45)" rx="2" ry="2" /> <text x="178.12" y="719.5" ></text> </g> <g > <title>__GI_epoll_pwait (9 samples, 3.07%)</title><rect x="376.5" y="901" width="36.2" height="15.0" fill="rgb(222,6,7)" rx="2" ry="2" /> <text x="379.48" y="911.5" >__G..</text> </g> <g > <title>FlushClient (1 samples, 0.34%)</title><rect x="283.9" y="725" width="4.0" height="15.0" fill="rgb(246,175,30)" rx="2" ry="2" /> <text x="286.86" y="735.5" ></text> </g> <g > <title>_xcb_out_flush_to (1 samples, 0.34%)</title><rect x="775.2" y="517" width="4.0" height="15.0" fill="rgb(230,212,8)" rx="2" ry="2" /> <text x="778.19" y="527.5" ></text> </g> <g > <title>texsubimage_err (14 samples, 4.78%)</title><rect x="191.2" y="821" width="56.4" height="15.0" fill="rgb(210,5,0)" rx="2" ry="2" /> <text x="194.23" y="831.5" >texsu..</text> </g> <g > <title>__libc_recvmsg (3 samples, 1.02%)</title><rect x="110.7" y="869" width="12.1" height="15.0" fill="rgb(216,201,51)" rx="2" ry="2" /> <text x="113.68" y="879.5" ></text> </g> <g > <title>glamor_upload_region (15 samples, 5.12%)</title><rect x="187.2" y="869" width="60.4" height="15.0" fill="rgb(210,122,47)" rx="2" ry="2" /> <text x="190.20" y="879.5" >glamor..</text> </g> <g > <title>do_idle (28 samples, 9.56%)</title><rect x="964.5" y="917" width="112.7" height="15.0" fill="rgb(245,204,22)" rx="2" ry="2" /> <text x="967.47" y="927.5" >do_idle</text> </g> <g > <title>drm_mode_cursor_universal (6 samples, 2.05%)</title><rect x="46.2" y="453" width="24.2" height="15.0" fill="rgb(212,83,7)" rx="2" ry="2" /> <text x="49.25" y="463.5" >d..</text> </g> <g > <title>do_writev (1 samples, 0.34%)</title><rect x="775.2" y="309" width="4.0" height="15.0" fill="rgb(216,28,37)" rx="2" ry="2" /> <text x="778.19" y="319.5" ></text> </g> <g > <title>rw_verify_area (2 samples, 0.68%)</title><rect x="34.2" y="645" width="8.0" height="15.0" fill="rgb(240,220,50)" rx="2" ry="2" /> <text x="37.16" y="655.5" ></text> </g> <g > <title>schedule_hrtimeout_range (4 samples, 1.37%)</title><rect x="388.6" y="741" width="16.1" height="15.0" fill="rgb(223,166,52)" rx="2" ry="2" /> <text x="391.57" y="751.5" ></text> </g> <g > <title>el0t_64_sync (1 samples, 0.34%)</title><rect x="775.2" y="421" width="4.0" height="15.0" fill="rgb(235,61,45)" rx="2" ry="2" /> <text x="778.19" y="431.5" ></text> </g> <g > <title>X_ (64 samples, 21.84%)</title><rect x="155.0" y="1013" width="257.7" height="15.0" fill="rgb(244,37,34)" rx="2" ry="2" /> <text x="157.98" y="1023.5" >X_</text> </g> <g > <title>sock_def_readable (1 samples, 0.34%)</title><rect x="304.0" y="421" width="4.0" height="15.0" fill="rgb(250,131,43)" rx="2" ry="2" /> <text x="306.99" y="431.5" ></text> </g> <g > <title>eventfd_write (1 samples, 0.34%)</title><rect x="791.3" y="533" width="4.0" height="15.0" fill="rgb(211,110,13)" rx="2" ry="2" /> <text x="794.30" y="543.5" ></text> </g> <g > <title>mbox_send_message (1 samples, 0.34%)</title><rect x="416.8" y="821" width="4.0" height="15.0" fill="rgb(213,115,29)" rx="2" ry="2" /> <text x="419.76" y="831.5" ></text> </g> <g > <title>DRM_IOCTL (2 samples, 0.68%)</title><rect x="275.8" y="581" width="8.1" height="15.0" fill="rgb(214,218,23)" rx="2" ry="2" /> <text x="278.80" y="591.5" ></text> </g> <g > <title>drm_atomic_helper_commit_planes (6 samples, 2.05%)</title><rect x="46.2" y="341" width="24.2" height="15.0" fill="rgb(221,207,54)" rx="2" ry="2" /> <text x="49.25" y="351.5" >d..</text> </g> <g > <title>el0_svc (1 samples, 0.34%)</title><rect x="1153.8" y="901" width="4.0" height="15.0" fill="rgb(220,165,12)" rx="2" ry="2" /> <text x="1156.75" y="911.5" ></text> </g> <g > <title>v3d_ioctl (1 samples, 0.34%)</title><rect x="255.7" y="485" width="4.0" height="15.0" fill="rgb(234,108,34)" rx="2" ry="2" /> <text x="258.67" y="495.5" ></text> </g> <g > <title>get_cpu_fpsimd_context (1 samples, 0.34%)</title><rect x="94.6" y="837" width="4.0" height="15.0" fill="rgb(212,32,9)" rx="2" ry="2" /> <text x="97.57" y="847.5" ></text> </g> <g > <title>kworker/2:1H-kb (1 samples, 0.34%)</title><rect x="420.8" y="1013" width="4.0" height="15.0" fill="rgb(249,17,51)" rx="2" ry="2" /> <text x="423.78" y="1023.5" ></text> </g> <g > <title>__arm64_sys_writev (1 samples, 0.34%)</title><rect x="267.7" y="549" width="4.1" height="15.0" fill="rgb(208,158,42)" rx="2" ry="2" /> <text x="270.75" y="559.5" ></text> </g> <g > <title>_raw_spin_unlock_irqrestore (2 samples, 0.68%)</title><rect x="146.9" y="677" width="8.1" height="15.0" fill="rgb(214,207,25)" rx="2" ry="2" /> <text x="149.93" y="687.5" ></text> </g> <g > <title>thread_start (22 samples, 7.51%)</title><rect x="10.0" y="997" width="88.6" height="15.0" fill="rgb(209,1,33)" rx="2" ry="2" /> <text x="13.00" y="1007.5" >thread_start</text> </g> <g > <title>ret_from_fork (1 samples, 0.34%)</title><rect x="420.8" y="997" width="4.0" height="15.0" fill="rgb(252,57,17)" rx="2" ry="2" /> <text x="423.78" y="1007.5" ></text> </g> <g > <title>el0t_64_sync_handler (4 samples, 1.37%)</title><rect x="916.1" y="853" width="16.2" height="15.0" fill="rgb(253,134,24)" rx="2" ry="2" /> <text x="919.14" y="863.5" ></text> </g> <g > <title>do_el0_svc (1 samples, 0.34%)</title><rect x="167.1" y="581" width="4.0" height="15.0" fill="rgb(213,53,17)" rx="2" ry="2" /> <text x="170.06" y="591.5" ></text> </g> <g > <title>[libQt5Core.so.5.15.2] (1 samples, 0.34%)</title><rect x="646.3" y="533" width="4.0" height="15.0" fill="rgb(241,66,15)" rx="2" ry="2" /> <text x="649.31" y="543.5" ></text> </g> <g > <title>unix_destruct_scm (1 samples, 0.34%)</title><rect x="1173.9" y="549" width="4.0" height="15.0" fill="rgb(239,182,0)" rx="2" ry="2" /> <text x="1176.89" y="559.5" ></text> </g> <g > <title>preempt_count_sub (1 samples, 0.34%)</title><rect x="110.7" y="645" width="4.0" height="15.0" fill="rgb(241,77,40)" rx="2" ry="2" /> <text x="113.68" y="655.5" ></text> </g> <g > <title>_xcb_conn_wait (1 samples, 0.34%)</title><rect x="747.0" y="613" width="4.0" height="15.0" fill="rgb(224,167,46)" rx="2" ry="2" /> <text x="750.00" y="623.5" ></text> </g> <g > <title>DeliverEventToWindowMask (2 samples, 0.68%)</title><rect x="300.0" y="789" width="8.0" height="15.0" fill="rgb(224,186,31)" rx="2" ry="2" /> <text x="302.97" y="799.5" ></text> </g> <g > <title>invoke_syscall (1 samples, 0.34%)</title><rect x="295.9" y="549" width="4.1" height="15.0" fill="rgb(241,125,10)" rx="2" ry="2" /> <text x="298.94" y="559.5" ></text> </g> <g > <title>drm_mode_cursor2_ioctl (1 samples, 0.34%)</title><rect x="163.0" y="437" width="4.1" height="15.0" fill="rgb(251,14,28)" rx="2" ry="2" /> <text x="166.04" y="447.5" ></text> </g> <g > <title>__GI___writev (1 samples, 0.34%)</title><rect x="283.9" y="677" width="4.0" height="15.0" fill="rgb(207,68,36)" rx="2" ry="2" /> <text x="286.86" y="687.5" ></text> </g> <g > <title>el0_svc (3 samples, 1.02%)</title><rect x="34.2" y="757" width="12.0" height="15.0" fill="rgb(208,45,25)" rx="2" ry="2" /> <text x="37.16" y="767.5" ></text> </g> <g > <title>hb_lazy_loader_t<OT::GPOS_accelerator_t, hb_face_lazy_loader_t<OT::GPOS_accelerator_t, 23u>, hb_face_t, 23u, OT::GPOS_accelerator_t>::get_stored (1 samples, 0.34%)</title><rect x="606.0" y="245" width="4.1" height="15.0" fill="rgb(228,93,26)" rx="2" ry="2" /> <text x="609.04" y="255.5" ></text> </g> <g > <title>__import_iovec (1 samples, 0.34%)</title><rect x="267.7" y="485" width="4.1" height="15.0" fill="rgb(208,201,30)" rx="2" ry="2" /> <text x="270.75" y="495.5" ></text> </g> <g > <title>do_el0_svc (1 samples, 0.34%)</title><rect x="243.6" y="597" width="4.0" height="15.0" fill="rgb(209,120,42)" rx="2" ry="2" /> <text x="246.58" y="607.5" ></text> </g> <g > <title>smp_call_function_single (16 samples, 5.46%)</title><rect x="851.7" y="725" width="64.4" height="15.0" fill="rgb(242,71,9)" rx="2" ry="2" /> <text x="854.71" y="735.5" >smp_cal..</text> </g> <g > <title>dentry_unlink_inode (1 samples, 0.34%)</title><rect x="1153.8" y="789" width="4.0" height="15.0" fill="rgb(251,220,24)" rx="2" ry="2" /> <text x="1156.75" y="799.5" ></text> </g> <g > <title>sock_sendmsg (1 samples, 0.34%)</title><rect x="775.2" y="229" width="4.0" height="15.0" fill="rgb(230,181,5)" rx="2" ry="2" /> <text x="778.19" y="239.5" ></text> </g> <g > <title>futex_wait (1 samples, 0.34%)</title><rect x="771.2" y="341" width="4.0" height="15.0" fill="rgb(238,59,1)" rx="2" ry="2" /> <text x="774.16" y="351.5" ></text> </g> <g > <title>drm_gem_shmem_get_pages (1 samples, 0.34%)</title><rect x="255.7" y="245" width="4.0" height="15.0" fill="rgb(246,166,32)" rx="2" ry="2" /> <text x="258.67" y="255.5" ></text> </g> <g > <title>kthread (2 samples, 0.68%)</title><rect x="956.4" y="981" width="8.1" height="15.0" fill="rgb(205,118,8)" rx="2" ry="2" /> <text x="959.42" y="991.5" ></text> </g> <g > <title>drm_ioctl (1 samples, 0.34%)</title><rect x="243.6" y="533" width="4.0" height="15.0" fill="rgb(224,198,13)" rx="2" ry="2" /> <text x="246.58" y="543.5" ></text> </g> <g > <title>do_el0_svc (1 samples, 0.34%)</title><rect x="791.3" y="629" width="4.0" height="15.0" fill="rgb(233,152,3)" rx="2" ry="2" /> <text x="794.30" y="639.5" ></text> </g> <g > <title>unwind_frame (1 samples, 0.34%)</title><rect x="811.4" y="613" width="4.1" height="15.0" fill="rgb(240,125,47)" rx="2" ry="2" /> <text x="814.43" y="623.5" ></text> </g> <g > <title>rpi_firmware_property (1 samples, 0.34%)</title><rect x="960.4" y="789" width="4.1" height="15.0" fill="rgb(214,7,45)" rx="2" ry="2" /> <text x="963.44" y="799.5" ></text> </g> <g > <title>DeliverEventToInputClients (2 samples, 0.68%)</title><rect x="267.7" y="773" width="8.1" height="15.0" fill="rgb(231,118,15)" rx="2" ry="2" /> <text x="270.75" y="783.5" ></text> </g> <g > <title>handle_domain_irq (1 samples, 0.34%)</title><rect x="408.7" y="677" width="4.0" height="15.0" fill="rgb(254,221,7)" rx="2" ry="2" /> <text x="411.70" y="687.5" ></text> </g> <g > <title>QPainter::fillRect (32 samples, 10.92%)</title><rect x="477.2" y="693" width="128.8" height="15.0" fill="rgb(225,223,50)" rx="2" ry="2" /> <text x="480.17" y="703.5" >QPainter::fillRect</text> </g> <g > <title>unix_stream_sendmsg (1 samples, 0.34%)</title><rect x="775.2" y="213" width="4.0" height="15.0" fill="rgb(213,229,38)" rx="2" ry="2" /> <text x="778.19" y="223.5" ></text> </g> <g > <title>el0t_64_sync (1 samples, 0.34%)</title><rect x="1169.9" y="789" width="4.0" height="15.0" fill="rgb(242,229,31)" rx="2" ry="2" /> <text x="1172.86" y="799.5" ></text> </g> <g > <title>[libQt5Widgets.so.5.15.2] (1 samples, 0.34%)</title><rect x="759.1" y="757" width="4.0" height="15.0" fill="rgb(233,95,15)" rx="2" ry="2" /> <text x="762.08" y="767.5" ></text> </g> <g > <title>do_el0_svc (1 samples, 0.34%)</title><rect x="771.2" y="421" width="4.0" height="15.0" fill="rgb(245,49,30)" rx="2" ry="2" /> <text x="774.16" y="431.5" ></text> </g> <g > <title>__wake_up_sync_key (1 samples, 0.34%)</title><rect x="283.9" y="421" width="4.0" height="15.0" fill="rgb(241,80,48)" rx="2" ry="2" /> <text x="286.86" y="431.5" ></text> </g> <g > <title>fsnotify_perm.part.0 (1 samples, 0.34%)</title><rect x="38.2" y="613" width="4.0" height="15.0" fill="rgb(221,13,4)" rx="2" ry="2" /> <text x="41.19" y="623.5" ></text> </g> <g > <title>do_futex (1 samples, 0.34%)</title><rect x="771.2" y="357" width="4.0" height="15.0" fill="rgb(211,104,38)" rx="2" ry="2" /> <text x="774.16" y="367.5" ></text> </g> <g > <title>invoke_syscall (1 samples, 0.34%)</title><rect x="1169.9" y="709" width="4.0" height="15.0" fill="rgb(236,39,50)" rx="2" ry="2" /> <text x="1172.86" y="719.5" ></text> </g> <g > <title>QWindowPrivate::globalPosition (1 samples, 0.34%)</title><rect x="755.1" y="677" width="4.0" height="15.0" fill="rgb(207,29,35)" rx="2" ry="2" /> <text x="758.05" y="687.5" ></text> </g> <g > <title>AnimCurDisplayCursor (4 samples, 1.37%)</title><rect x="155.0" y="869" width="16.1" height="15.0" fill="rgb(228,62,21)" rx="2" ry="2" /> <text x="157.98" y="879.5" ></text> </g> <g > <title>_xcb_in_expect_reply (1 samples, 0.34%)</title><rect x="767.1" y="485" width="4.1" height="15.0" fill="rgb(215,116,30)" rx="2" ry="2" /> <text x="770.13" y="495.5" ></text> </g> <g > <title>QRasterPaintEngine::fillRect (32 samples, 10.92%)</title><rect x="477.2" y="677" width="128.8" height="15.0" fill="rgb(211,224,34)" rx="2" ry="2" /> <text x="480.17" y="687.5" >QRasterPaintEngi..</text> </g> <g > <title>_hb_ot_shape (1 samples, 0.34%)</title><rect x="606.0" y="341" width="4.1" height="15.0" fill="rgb(219,186,42)" rx="2" ry="2" /> <text x="609.04" y="351.5" ></text> </g> <g > <title>QWindow::mapFromGlobal (1 samples, 0.34%)</title><rect x="755.1" y="693" width="4.0" height="15.0" fill="rgb(241,65,36)" rx="2" ry="2" /> <text x="758.05" y="703.5" ></text> </g> <g > <title>entry_is_present (1 samples, 0.34%)</title><rect x="336.2" y="789" width="4.0" height="15.0" fill="rgb(242,191,52)" rx="2" ry="2" /> <text x="339.21" y="799.5" ></text> </g> <g > <title>consume_skb (1 samples, 0.34%)</title><rect x="1173.9" y="581" width="4.0" height="15.0" fill="rgb(206,102,49)" rx="2" ry="2" /> <text x="1176.89" y="591.5" ></text> </g> <g > <title>drm_gem_get_pages (1 samples, 0.34%)</title><rect x="255.7" y="229" width="4.0" height="15.0" fill="rgb(214,158,54)" rx="2" ry="2" /> <text x="258.67" y="239.5" ></text> </g> <g > <title>ep_item_poll.isra.0 (1 samples, 0.34%)</title><rect x="86.5" y="773" width="4.0" height="15.0" fill="rgb(207,37,20)" rx="2" ry="2" /> <text x="89.52" y="783.5" ></text> </g> <g > <title>sock_sendmsg (1 samples, 0.34%)</title><rect x="295.9" y="437" width="4.1" height="15.0" fill="rgb(228,29,50)" rx="2" ry="2" /> <text x="298.94" y="447.5" ></text> </g> <g > <title>drm_mode_cursor_universal (1 samples, 0.34%)</title><rect x="167.1" y="453" width="4.0" height="15.0" fill="rgb(245,56,52)" rx="2" ry="2" /> <text x="170.06" y="463.5" ></text> </g> <g > <title>el0_svc (6 samples, 2.05%)</title><rect x="46.2" y="597" width="24.2" height="15.0" fill="rgb(236,88,8)" rx="2" ry="2" /> <text x="49.25" y="607.5" >e..</text> </g> <g > <title>[libQt5Widgets.so.5.15.2] (1 samples, 0.34%)</title><rect x="626.2" y="469" width="4.0" height="15.0" fill="rgb(247,151,11)" rx="2" ry="2" /> <text x="629.18" y="479.5" ></text> </g> <g > <title>_XEventsQueued (3 samples, 1.02%)</title><rect x="1161.8" y="885" width="12.1" height="15.0" fill="rgb(252,18,23)" rx="2" ry="2" /> <text x="1164.81" y="895.5" ></text> </g> <g > <title>__libc_recvmsg (6 samples, 2.05%)</title><rect x="312.0" y="901" width="24.2" height="15.0" fill="rgb(215,174,11)" rx="2" ry="2" /> <text x="315.05" y="911.5" >_..</text> </g> <g > <title>_raw_spin_unlock_irq (1 samples, 0.34%)</title><rect x="102.6" y="709" width="4.1" height="15.0" fill="rgb(213,105,0)" rx="2" ry="2" /> <text x="105.63" y="719.5" ></text> </g> <g > <title>invoke_syscall (1 samples, 0.34%)</title><rect x="267.7" y="565" width="4.1" height="15.0" fill="rgb(240,201,41)" rx="2" ry="2" /> <text x="270.75" y="575.5" ></text> </g> <g > <title>QApplicationPrivate::notify_helper (68 samples, 23.21%)</title><rect x="477.2" y="789" width="273.8" height="15.0" fill="rgb(227,155,48)" rx="2" ry="2" /> <text x="480.17" y="799.5" >QApplicationPrivate::notify_helper</text> </g> <g > <title>[systemd-journald] (1 samples, 0.34%)</title><rect x="1149.7" y="885" width="4.1" height="15.0" fill="rgb(213,25,2)" rx="2" ry="2" /> <text x="1152.73" y="895.5" ></text> </g> <g > <title>QCoreApplication::notifyInternal2 (3 samples, 1.02%)</title><rect x="936.3" y="789" width="12.1" height="15.0" fill="rgb(249,107,39)" rx="2" ry="2" /> <text x="939.28" y="799.5" ></text> </g> <g > <title>_XEventsQueued (2 samples, 0.68%)</title><rect x="1173.9" y="869" width="8.0" height="15.0" fill="rgb(251,213,34)" rx="2" ry="2" /> <text x="1176.89" y="879.5" ></text> </g> <g > <title>el0_svc_common.constprop.0 (2 samples, 0.68%)</title><rect x="110.7" y="789" width="8.0" height="15.0" fill="rgb(251,66,42)" rx="2" ry="2" /> <text x="113.68" y="799.5" ></text> </g> <g > <title>journal_file_append_entry (1 samples, 0.34%)</title><rect x="1149.7" y="869" width="4.1" height="15.0" fill="rgb(240,217,51)" rx="2" ry="2" /> <text x="1152.73" y="879.5" ></text> </g> <g > <title>TryClientEvents (1 samples, 0.34%)</title><rect x="283.9" y="773" width="4.0" height="15.0" fill="rgb(253,152,41)" rx="2" ry="2" /> <text x="286.86" y="783.5" ></text> </g> <g > <title>vfs_writev (1 samples, 0.34%)</title><rect x="287.9" y="501" width="4.0" height="15.0" fill="rgb(254,36,39)" rx="2" ry="2" /> <text x="290.88" y="511.5" ></text> </g> <g > <title>return_address (1 samples, 0.34%)</title><rect x="384.5" y="693" width="4.1" height="15.0" fill="rgb(249,97,14)" rx="2" ry="2" /> <text x="387.54" y="703.5" ></text> </g> <g > <title>preempt_count_sub (1 samples, 0.34%)</title><rect x="1020.9" y="533" width="4.0" height="15.0" fill="rgb(236,146,0)" rx="2" ry="2" /> <text x="1023.85" y="543.5" ></text> </g> <g > <title>rpi_firmware_property (1 samples, 0.34%)</title><rect x="416.8" y="853" width="4.0" height="15.0" fill="rgb(217,123,18)" rx="2" ry="2" /> <text x="419.76" y="863.5" ></text> </g> <g > <title>msg_submit (1 samples, 0.34%)</title><rect x="416.8" y="805" width="4.0" height="15.0" fill="rgb(216,216,19)" rx="2" ry="2" /> <text x="419.76" y="815.5" ></text> </g> <g > <title>v3d_start_draw (1 samples, 0.34%)</title><rect x="255.7" y="533" width="4.0" height="15.0" fill="rgb(245,77,31)" rx="2" ry="2" /> <text x="258.67" y="543.5" ></text> </g> <g > <title>__GI_memcpy (2 samples, 0.68%)</title><rect x="235.5" y="709" width="8.1" height="15.0" fill="rgb(245,158,29)" rx="2" ry="2" /> <text x="238.53" y="719.5" ></text> </g> <g > <title>sock_wfree (1 samples, 0.34%)</title><rect x="114.7" y="613" width="4.0" height="15.0" fill="rgb(217,142,14)" rx="2" ry="2" /> <text x="117.71" y="623.5" ></text> </g> <g > <title>el0t_64_sync (1 samples, 0.34%)</title><rect x="243.6" y="645" width="4.0" height="15.0" fill="rgb(214,135,47)" rx="2" ry="2" /> <text x="246.58" y="655.5" ></text> </g> <g > <title>el0_svc_common.constprop.0 (1 samples, 0.34%)</title><rect x="344.3" y="501" width="4.0" height="15.0" fill="rgb(231,147,17)" rx="2" ry="2" /> <text x="347.27" y="511.5" ></text> </g> <g > <title>el1h_64_irq (1 samples, 0.34%)</title><rect x="408.7" y="773" width="4.0" height="15.0" fill="rgb(245,83,51)" rx="2" ry="2" /> <text x="411.70" y="783.5" ></text> </g> <g > <title>_hb_ot_layout_set_glyph_props (1 samples, 0.34%)</title><rect x="638.3" y="373" width="4.0" height="15.0" fill="rgb(205,130,31)" rx="2" ry="2" /> <text x="641.26" y="383.5" ></text> </g> <g > <title>alloc_skb_with_frags (1 samples, 0.34%)</title><rect x="291.9" y="373" width="4.0" height="15.0" fill="rgb(238,195,28)" rx="2" ry="2" /> <text x="294.91" y="383.5" ></text> </g> <g > <title>QWidget::event (1 samples, 0.34%)</title><rect x="634.2" y="533" width="4.1" height="15.0" fill="rgb(209,107,43)" rx="2" ry="2" /> <text x="637.23" y="543.5" ></text> </g> <g > <title>drmmode_set_cursor (3 samples, 1.02%)</title><rect x="155.0" y="661" width="12.1" height="15.0" fill="rgb(246,149,36)" rx="2" ry="2" /> <text x="157.98" y="671.5" ></text> </g> <g > <title>[libQt5XcbQpa.so.5.15.2] (1 samples, 0.34%)</title><rect x="102.6" y="933" width="4.1" height="15.0" fill="rgb(220,90,6)" rx="2" ry="2" /> <text x="105.63" y="943.5" ></text> </g> <g > <title>QMetaObject::cast (1 samples, 0.34%)</title><rect x="759.1" y="741" width="4.0" height="15.0" fill="rgb(239,197,48)" rx="2" ry="2" /> <text x="762.08" y="751.5" ></text> </g> <g > <title>__schedule (3 samples, 1.02%)</title><rect x="1125.6" y="917" width="12.0" height="15.0" fill="rgb(226,145,35)" rx="2" ry="2" /> <text x="1128.56" y="927.5" ></text> </g> <g > <title>__GI___libc_read (1 samples, 0.34%)</title><rect x="473.1" y="805" width="4.1" height="15.0" fill="rgb(231,48,4)" rx="2" ry="2" /> <text x="476.14" y="815.5" ></text> </g> <g > <title>el0_svc_common.constprop.0 (4 samples, 1.37%)</title><rect x="74.4" y="853" width="16.1" height="15.0" fill="rgb(238,130,24)" rx="2" ry="2" /> <text x="77.44" y="863.5" ></text> </g> <g > <title>InputThreadReadPipe (1 samples, 0.34%)</title><rect x="372.5" y="885" width="4.0" height="15.0" fill="rgb(244,138,47)" rx="2" ry="2" /> <text x="375.46" y="895.5" ></text> </g> <g > <title>CallCallbacks (1 samples, 0.34%)</title><rect x="271.8" y="741" width="4.0" height="15.0" fill="rgb(226,156,10)" rx="2" ry="2" /> <text x="274.77" y="751.5" ></text> </g> <g > <title>do_sys_poll (5 samples, 1.71%)</title><rect x="803.4" y="725" width="20.1" height="15.0" fill="rgb(209,137,52)" rx="2" ry="2" /> <text x="806.38" y="735.5" ></text> </g> <g > <title>QCoreApplication::notifyInternal2 (27 samples, 9.22%)</title><rect x="638.3" y="709" width="108.7" height="15.0" fill="rgb(229,91,37)" rx="2" ry="2" /> <text x="641.26" y="719.5" >QCoreApplicat..</text> </g> <g > <title>xf86_driver_load_cursor_argb (2 samples, 0.68%)</title><rect x="275.8" y="629" width="8.1" height="15.0" fill="rgb(226,29,54)" rx="2" ry="2" /> <text x="278.80" y="639.5" ></text> </g> <g > <title>drm_mode_cursor_common (6 samples, 2.05%)</title><rect x="46.2" y="469" width="24.2" height="15.0" fill="rgb(247,56,22)" rx="2" ry="2" /> <text x="49.25" y="479.5" >d..</text> </g> <g > <title>drm_mode_cursor_common (1 samples, 0.34%)</title><rect x="163.0" y="421" width="4.1" height="15.0" fill="rgb(243,12,5)" rx="2" ry="2" /> <text x="166.04" y="431.5" ></text> </g> <g > <title>g_main_context_dispatch (1 samples, 0.34%)</title><rect x="440.9" y="869" width="4.0" height="15.0" fill="rgb(246,208,29)" rx="2" ry="2" /> <text x="443.92" y="879.5" ></text> </g> <g > <title>miPointerDisplayCursor (4 samples, 1.37%)</title><rect x="155.0" y="821" width="16.1" height="15.0" fill="rgb(209,221,54)" rx="2" ry="2" /> <text x="157.98" y="831.5" ></text> </g> <g > <title>call_on_irq_stack (1 samples, 0.34%)</title><rect x="1121.5" y="837" width="4.1" height="15.0" fill="rgb(224,52,32)" rx="2" ry="2" /> <text x="1124.54" y="847.5" ></text> </g> <g > <title>schedule_idle (3 samples, 1.02%)</title><rect x="1125.6" y="933" width="12.0" height="15.0" fill="rgb(219,82,54)" rx="2" ry="2" /> <text x="1128.56" y="943.5" ></text> </g> <g > <title>drm_ioctl_kernel (1 samples, 0.34%)</title><rect x="344.3" y="437" width="4.0" height="15.0" fill="rgb(223,216,7)" rx="2" ry="2" /> <text x="347.27" y="447.5" ></text> </g> <g > <title>ext4_buffered_write_iter (4 samples, 1.37%)</title><rect x="916.1" y="693" width="16.2" height="15.0" fill="rgb(207,95,53)" rx="2" ry="2" /> <text x="919.14" y="703.5" ></text> </g> <g > <title>do_iter_write (1 samples, 0.34%)</title><rect x="295.9" y="485" width="4.1" height="15.0" fill="rgb(240,88,23)" rx="2" ry="2" /> <text x="298.94" y="495.5" ></text> </g> <g > <title>hrtimer_try_to_cancel.part.0 (1 samples, 0.34%)</title><rect x="392.6" y="709" width="4.0" height="15.0" fill="rgb(206,113,44)" rx="2" ry="2" /> <text x="395.59" y="719.5" ></text> </g> <g > <title>do_notify_resume (1 samples, 0.34%)</title><rect x="1153.8" y="885" width="4.0" height="15.0" fill="rgb(239,102,13)" rx="2" ry="2" /> <text x="1156.75" y="895.5" ></text> </g> <g > <title>QStyleOption::QStyleOption (1 samples, 0.34%)</title><rect x="654.4" y="597" width="4.0" height="15.0" fill="rgb(245,48,49)" rx="2" ry="2" /> <text x="657.37" y="607.5" ></text> </g> <g > <title>default_idle_call (12 samples, 4.10%)</title><rect x="1077.2" y="933" width="48.4" height="15.0" fill="rgb(224,215,39)" rx="2" ry="2" /> <text x="1080.24" y="943.5" >defa..</text> </g> <g > <title>QTextEngine::shapeText (1 samples, 0.34%)</title><rect x="606.0" y="469" width="4.1" height="15.0" fill="rgb(243,188,7)" rx="2" ry="2" /> <text x="609.04" y="479.5" ></text> </g> <g > <title>____fput (1 samples, 0.34%)</title><rect x="1153.8" y="853" width="4.0" height="15.0" fill="rgb(247,37,1)" rx="2" ry="2" /> <text x="1156.75" y="863.5" ></text> </g> <g > <title>v3d_wait_bo_ioctl (1 samples, 0.34%)</title><rect x="344.3" y="629" width="4.0" height="15.0" fill="rgb(232,140,41)" rx="2" ry="2" /> <text x="347.27" y="639.5" ></text> </g> <g > <title>compWindowUpdateAutomatic (1 samples, 0.34%)</title><rect x="344.3" y="837" width="4.0" height="15.0" fill="rgb(214,35,27)" rx="2" ry="2" /> <text x="347.27" y="847.5" ></text> </g> <g > <title>el0t_64_sync_handler (1 samples, 0.34%)</title><rect x="944.3" y="501" width="4.1" height="15.0" fill="rgb(211,11,31)" rx="2" ry="2" /> <text x="947.33" y="511.5" ></text> </g> <g > <title>default_idle_call (23 samples, 7.85%)</title><rect x="964.5" y="901" width="92.6" height="15.0" fill="rgb(225,7,24)" rx="2" ry="2" /> <text x="967.47" y="911.5" >default_idl..</text> </g> <g > <title>poll_for_event (1 samples, 0.34%)</title><rect x="444.9" y="821" width="4.1" height="15.0" fill="rgb(241,53,50)" rx="2" ry="2" /> <text x="447.95" y="831.5" ></text> </g> <g > <title>miCopyRegion (3 samples, 1.02%)</title><rect x="247.6" y="853" width="12.1" height="15.0" fill="rgb(246,67,19)" rx="2" ry="2" /> <text x="250.61" y="863.5" ></text> </g> <g > <title>__GI___writev (1 samples, 0.34%)</title><rect x="291.9" y="629" width="4.0" height="15.0" fill="rgb(238,190,31)" rx="2" ry="2" /> <text x="294.91" y="639.5" ></text> </g> <g > <title>do_writev (1 samples, 0.34%)</title><rect x="747.0" y="437" width="4.0" height="15.0" fill="rgb(239,85,40)" rx="2" ry="2" /> <text x="750.00" y="447.5" ></text> </g> <g > <title>handle_domain_irq (1 samples, 0.34%)</title><rect x="940.3" y="533" width="4.0" height="15.0" fill="rgb(244,217,53)" rx="2" ry="2" /> <text x="943.31" y="543.5" ></text> </g> <g > <title>task_work_run (1 samples, 0.34%)</title><rect x="1153.8" y="869" width="4.0" height="15.0" fill="rgb(236,226,40)" rx="2" ry="2" /> <text x="1156.75" y="879.5" ></text> </g> <g > <title>do_epoll_wait (2 samples, 0.68%)</title><rect x="26.1" y="741" width="8.1" height="15.0" fill="rgb(209,199,40)" rx="2" ry="2" /> <text x="29.11" y="751.5" ></text> </g> <g > <title>return_address (1 samples, 0.34%)</title><rect x="62.4" y="197" width="4.0" height="15.0" fill="rgb(213,3,35)" rx="2" ry="2" /> <text x="65.35" y="207.5" ></text> </g> <g > <title>schedule (1 samples, 0.34%)</title><rect x="771.2" y="309" width="4.0" height="15.0" fill="rgb(228,166,15)" rx="2" ry="2" /> <text x="774.16" y="319.5" ></text> </g> <g > <title>glamor_copy_gl (3 samples, 1.02%)</title><rect x="247.6" y="805" width="12.1" height="15.0" fill="rgb(231,168,29)" rx="2" ry="2" /> <text x="250.61" y="815.5" ></text> </g> <g > <title>drm_framebuffer_init (1 samples, 0.34%)</title><rect x="279.8" y="277" width="4.1" height="15.0" fill="rgb(238,217,3)" rx="2" ry="2" /> <text x="282.83" y="287.5" ></text> </g> <g > <title>new_sync_write (4 samples, 1.37%)</title><rect x="916.1" y="725" width="16.2" height="15.0" fill="rgb(221,165,53)" rx="2" ry="2" /> <text x="919.14" y="735.5" ></text> </g> <g > <title>el0t_64_sync (1 samples, 0.34%)</title><rect x="747.0" y="549" width="4.0" height="15.0" fill="rgb(205,78,34)" rx="2" ry="2" /> <text x="750.00" y="559.5" ></text> </g> <g > <title>g_main_loop_run (1 samples, 0.34%)</title><rect x="412.7" y="933" width="4.1" height="15.0" fill="rgb(252,70,2)" rx="2" ry="2" /> <text x="415.73" y="943.5" ></text> </g> <g > <title>poll_for_response (1 samples, 0.34%)</title><rect x="444.9" y="837" width="4.1" height="15.0" fill="rgb(234,119,41)" rx="2" ry="2" /> <text x="447.95" y="847.5" ></text> </g> <g > <title>QVariant::QVariant (1 samples, 0.34%)</title><rect x="646.3" y="549" width="4.0" height="15.0" fill="rgb(237,39,48)" rx="2" ry="2" /> <text x="649.31" y="559.5" ></text> </g> <g > <title>invoke_syscall (1 samples, 0.34%)</title><rect x="747.0" y="469" width="4.0" height="15.0" fill="rgb(239,1,34)" rx="2" ry="2" /> <text x="750.00" y="479.5" ></text> </g> <g > <title>[libgio-2.0.so.0.6800.4] (1 samples, 0.34%)</title><rect x="412.7" y="949" width="4.1" height="15.0" fill="rgb(253,150,6)" rx="2" ry="2" /> <text x="415.73" y="959.5" ></text> </g> <g > <title>__GI___poll (7 samples, 2.39%)</title><rect x="799.4" y="853" width="28.1" height="15.0" fill="rgb(237,64,25)" rx="2" ry="2" /> <text x="802.35" y="863.5" >_..</text> </g> <g > <title>_mesa_bytes_per_pixel (1 samples, 0.34%)</title><rect x="247.6" y="661" width="4.0" height="15.0" fill="rgb(218,25,23)" rx="2" ry="2" /> <text x="250.61" y="671.5" ></text> </g> <g > <title>xcb_wait_for_reply (2 samples, 0.68%)</title><rect x="771.2" y="565" width="8.0" height="15.0" fill="rgb(229,164,30)" rx="2" ry="2" /> <text x="774.16" y="575.5" ></text> </g> <g > <title>do_mem_abort (1 samples, 0.34%)</title><rect x="952.4" y="869" width="4.0" height="15.0" fill="rgb(227,210,29)" rx="2" ry="2" /> <text x="955.39" y="879.5" ></text> </g> <g > <title>mieqProcessDeviceEvent (11 samples, 3.75%)</title><rect x="263.7" y="901" width="44.3" height="15.0" fill="rgb(239,226,33)" rx="2" ry="2" /> <text x="266.72" y="911.5" >mieq..</text> </g> <g > <title>futex_wait_cancelable (1 samples, 0.34%)</title><rect x="771.2" y="485" width="4.0" height="15.0" fill="rgb(238,11,43)" rx="2" ry="2" /> <text x="774.16" y="495.5" ></text> </g> <g > <title>tasklet_hi_action (9 samples, 3.07%)</title><rect x="1020.9" y="709" width="36.2" height="15.0" fill="rgb(252,37,24)" rx="2" ry="2" /> <text x="1023.85" y="719.5" >tas..</text> </g> <g > <title>ksys_write (3 samples, 1.02%)</title><rect x="14.0" y="789" width="12.1" height="15.0" fill="rgb(220,6,18)" rx="2" ry="2" /> <text x="17.03" y="799.5" ></text> </g> <g > <title>el0_svc_common.constprop.0 (1 samples, 0.34%)</title><rect x="775.2" y="357" width="4.0" height="15.0" fill="rgb(254,112,31)" rx="2" ry="2" /> <text x="778.19" y="367.5" ></text> </g> <g > <title>QMetaType::operator= (1 samples, 0.34%)</title><rect x="618.1" y="437" width="4.1" height="15.0" fill="rgb(214,124,38)" rx="2" ry="2" /> <text x="621.12" y="447.5" ></text> </g> <g > <title>do_el0_svc (3 samples, 1.02%)</title><rect x="34.2" y="741" width="12.0" height="15.0" fill="rgb(219,216,9)" rx="2" ry="2" /> <text x="37.16" y="751.5" ></text> </g> <g > <title>clk_change_rate (1 samples, 0.34%)</title><rect x="416.8" y="885" width="4.0" height="15.0" fill="rgb(205,80,2)" rx="2" ry="2" /> <text x="419.76" y="895.5" ></text> </g> <g > <title>QApplication::notify (6 samples, 2.05%)</title><rect x="763.1" y="693" width="24.2" height="15.0" fill="rgb(241,18,3)" rx="2" ry="2" /> <text x="766.11" y="703.5" >Q..</text> </g> <g > <title>[libQt5XcbQpa.so.5.15.2] (1 samples, 0.34%)</title><rect x="610.1" y="469" width="4.0" height="15.0" fill="rgb(240,217,19)" rx="2" ry="2" /> <text x="613.07" y="479.5" ></text> </g> <g > <title>g_main_context_iteration (90 samples, 30.72%)</title><rect x="473.1" y="901" width="362.5" height="15.0" fill="rgb(216,58,19)" rx="2" ry="2" /> <text x="476.14" y="911.5" >g_main_context_iteration</text> </g> <g > <title>el0t_64_sync_handler (4 samples, 1.37%)</title><rect x="10.0" y="885" width="16.1" height="15.0" fill="rgb(240,167,42)" rx="2" ry="2" /> <text x="13.00" y="895.5" ></text> </g> <g > <title>el0_svc_common.constprop.0 (1 samples, 0.34%)</title><rect x="791.3" y="613" width="4.0" height="15.0" fill="rgb(240,213,42)" rx="2" ry="2" /> <text x="794.30" y="623.5" ></text> </g> <g > <title>el0_svc (1 samples, 0.34%)</title><rect x="944.3" y="485" width="4.1" height="15.0" fill="rgb(231,129,26)" rx="2" ry="2" /> <text x="947.33" y="495.5" ></text> </g> <g > <title>QBackingStore::flush (1 samples, 0.34%)</title><rect x="747.0" y="709" width="4.0" height="15.0" fill="rgb(224,10,22)" rx="2" ry="2" /> <text x="750.00" y="719.5" ></text> </g> <g > <title>__wake_up_sync_key (1 samples, 0.34%)</title><rect x="1173.9" y="501" width="4.0" height="15.0" fill="rgb(233,22,49)" rx="2" ry="2" /> <text x="1176.89" y="511.5" ></text> </g> <g > <title>_XEventsQueued (2 samples, 0.68%)</title><rect x="1173.9" y="885" width="8.0" height="15.0" fill="rgb(244,178,46)" rx="2" ry="2" /> <text x="1176.89" y="895.5" ></text> </g> <g > <title>InputThreadDoWork (22 samples, 7.51%)</title><rect x="10.0" y="965" width="88.6" height="15.0" fill="rgb(222,170,41)" rx="2" ry="2" /> <text x="13.00" y="975.5" >InputThrea..</text> </g> <g > <title>xf86DriverLoadCursorARGB (2 samples, 0.68%)</title><rect x="275.8" y="677" width="8.1" height="15.0" fill="rgb(241,131,34)" rx="2" ry="2" /> <text x="278.80" y="687.5" ></text> </g> <g > <title>return_address (1 samples, 0.34%)</title><rect x="159.0" y="373" width="4.0" height="15.0" fill="rgb(205,173,54)" rx="2" ry="2" /> <text x="162.01" y="383.5" ></text> </g> <g > <title>QWidget::event (21 samples, 7.17%)</title><rect x="662.4" y="677" width="84.6" height="15.0" fill="rgb(250,118,38)" rx="2" ry="2" /> <text x="665.42" y="687.5" >QWidget::..</text> </g> <g > <title>_CallCallbacks (1 samples, 0.34%)</title><rect x="271.8" y="725" width="4.0" height="15.0" fill="rgb(223,67,34)" rx="2" ry="2" /> <text x="274.77" y="735.5" ></text> </g> <g > <title>do_el0_svc (5 samples, 1.71%)</title><rect x="134.8" y="821" width="20.2" height="15.0" fill="rgb(232,30,13)" rx="2" ry="2" /> <text x="137.85" y="831.5" ></text> </g> <g > <title>_raw_spin_unlock_irqrestore (1 samples, 0.34%)</title><rect x="304.0" y="373" width="4.0" height="15.0" fill="rgb(237,120,25)" rx="2" ry="2" /> <text x="306.99" y="383.5" ></text> </g> <g > <title>kthread_worker_fn (2 samples, 0.68%)</title><rect x="956.4" y="965" width="8.1" height="15.0" fill="rgb(207,186,52)" rx="2" ry="2" /> <text x="959.42" y="975.5" ></text> </g> <g > <title>AnimCurDisplayCursor (2 samples, 0.68%)</title><rect x="275.8" y="821" width="8.1" height="15.0" fill="rgb(251,104,18)" rx="2" ry="2" /> <text x="278.80" y="831.5" ></text> </g> <g > <title>g_main_context_prepare (2 samples, 0.68%)</title><rect x="827.5" y="869" width="8.1" height="15.0" fill="rgb(221,56,53)" rx="2" ry="2" /> <text x="830.54" y="879.5" ></text> </g> <g > <title>journal_file_append_object (1 samples, 0.34%)</title><rect x="1149.7" y="837" width="4.1" height="15.0" fill="rgb(215,192,12)" rx="2" ry="2" /> <text x="1152.73" y="847.5" ></text> </g> <g > <title>miPointerDisplayCursor (2 samples, 0.68%)</title><rect x="275.8" y="773" width="8.1" height="15.0" fill="rgb(233,114,8)" rx="2" ry="2" /> <text x="278.80" y="783.5" ></text> </g> <g > <title>QListView::paintEvent (6 samples, 2.05%)</title><rect x="606.0" y="565" width="24.2" height="15.0" fill="rgb(217,62,9)" rx="2" ry="2" /> <text x="609.04" y="575.5" >Q..</text> </g> <g > <title>do_interrupt_handler (14 samples, 4.78%)</title><rect x="1000.7" y="821" width="56.4" height="15.0" fill="rgb(237,88,46)" rx="2" ry="2" /> <text x="1003.72" y="831.5" >do_in..</text> </g> <g > <title>unix_stream_recvmsg (2 samples, 0.68%)</title><rect x="110.7" y="693" width="8.0" height="15.0" fill="rgb(217,228,28)" rx="2" ry="2" /> <text x="113.68" y="703.5" ></text> </g> <g > <title>__arm64_sys_write (4 samples, 1.37%)</title><rect x="916.1" y="773" width="16.2" height="15.0" fill="rgb(249,158,18)" rx="2" ry="2" /> <text x="919.14" y="783.5" ></text> </g> <g > <title>damageCopyArea (3 samples, 1.02%)</title><rect x="247.6" y="901" width="12.1" height="15.0" fill="rgb(233,202,22)" rx="2" ry="2" /> <text x="250.61" y="911.5" ></text> </g> <g > <title>QSortFilterProxyModel::data (1 samples, 0.34%)</title><rect x="646.3" y="581" width="4.0" height="15.0" fill="rgb(209,228,3)" rx="2" ry="2" /> <text x="649.31" y="591.5" ></text> </g> <g > <title>do_el0_svc (2 samples, 0.68%)</title><rect x="1173.9" y="725" width="8.0" height="15.0" fill="rgb(218,204,19)" rx="2" ry="2" /> <text x="1176.89" y="735.5" ></text> </g> <g > <title>_int_malloc (1 samples, 0.34%)</title><rect x="122.8" y="853" width="4.0" height="15.0" fill="rgb(208,100,5)" rx="2" ry="2" /> <text x="125.76" y="863.5" ></text> </g> <g > <title>pipe_transfer_unmap (1 samples, 0.34%)</title><rect x="195.3" y="757" width="4.0" height="15.0" fill="rgb(253,146,51)" rx="2" ry="2" /> <text x="198.26" y="767.5" ></text> </g> <g > <title>_raw_spin_unlock_irqrestore (1 samples, 0.34%)</title><rect x="1028.9" y="581" width="4.0" height="15.0" fill="rgb(210,188,38)" rx="2" ry="2" /> <text x="1031.91" y="591.5" ></text> </g> <g > <title>__lock_text_start (1 samples, 0.34%)</title><rect x="295.9" y="405" width="4.1" height="15.0" fill="rgb(246,111,40)" rx="2" ry="2" /> <text x="298.94" y="415.5" ></text> </g> <g > <title>Fm::ProxyFolderModel::data (1 samples, 0.34%)</title><rect x="646.3" y="597" width="4.0" height="15.0" fill="rgb(244,222,8)" rx="2" ry="2" /> <text x="649.31" y="607.5" ></text> </g> <g > <title>el0_svc (4 samples, 1.37%)</title><rect x="916.1" y="837" width="16.2" height="15.0" fill="rgb(237,152,53)" rx="2" ry="2" /> <text x="919.14" y="847.5" ></text> </g> <g > <title>__pthread_cond_signal (1 samples, 0.34%)</title><rect x="126.8" y="869" width="4.0" height="15.0" fill="rgb(236,39,18)" rx="2" ry="2" /> <text x="129.79" y="879.5" ></text> </g> <g > <title>el0t_64_sync (5 samples, 1.71%)</title><rect x="134.8" y="869" width="20.2" height="15.0" fill="rgb(254,223,37)" rx="2" ry="2" /> <text x="137.85" y="879.5" ></text> </g> <g > <title>__do_softirq (1 samples, 0.34%)</title><rect x="428.8" y="805" width="4.1" height="15.0" fill="rgb(224,46,40)" rx="2" ry="2" /> <text x="431.84" y="815.5" ></text> </g> <g > <title>sock_write_iter (1 samples, 0.34%)</title><rect x="747.0" y="373" width="4.0" height="15.0" fill="rgb(253,105,16)" rx="2" ry="2" /> <text x="750.00" y="383.5" ></text> </g> <g > <title>drm_mode_cursor2_ioctl (2 samples, 0.68%)</title><rect x="275.8" y="389" width="8.1" height="15.0" fill="rgb(236,79,54)" rx="2" ry="2" /> <text x="278.80" y="399.5" ></text> </g> <g > <title>return_address (1 samples, 0.34%)</title><rect x="811.4" y="645" width="4.1" height="15.0" fill="rgb(207,150,6)" rx="2" ry="2" /> <text x="814.43" y="655.5" ></text> </g> <g > <title>TryClientEvents (1 samples, 0.34%)</title><rect x="295.9" y="741" width="4.1" height="15.0" fill="rgb(218,16,17)" rx="2" ry="2" /> <text x="298.94" y="751.5" ></text> </g> <g > <title>skb_release_head_state (1 samples, 0.34%)</title><rect x="114.7" y="645" width="4.0" height="15.0" fill="rgb(227,47,33)" rx="2" ry="2" /> <text x="117.71" y="655.5" ></text> </g> <g > <title>do_el0_svc (9 samples, 3.07%)</title><rect x="376.5" y="837" width="36.2" height="15.0" fill="rgb(254,14,4)" rx="2" ry="2" /> <text x="379.48" y="847.5" >do_..</text> </g> <g > <title>miPointerSetPosition (6 samples, 2.05%)</title><rect x="46.2" y="789" width="24.2" height="15.0" fill="rgb(245,99,15)" rx="2" ry="2" /> <text x="49.25" y="799.5" >m..</text> </g> <g > <title>__arm64_sys_recvmsg (1 samples, 0.34%)</title><rect x="1169.9" y="693" width="4.0" height="15.0" fill="rgb(231,116,42)" rx="2" ry="2" /> <text x="1172.86" y="703.5" ></text> </g> <g > <title>hb_shape_full (1 samples, 0.34%)</title><rect x="638.3" y="501" width="4.0" height="15.0" fill="rgb(232,153,5)" rx="2" ry="2" /> <text x="641.26" y="511.5" ></text> </g> <g > <title>elf_machine_rela_relative (1 samples, 0.34%)</title><rect x="952.4" y="933" width="4.0" height="15.0" fill="rgb(222,69,30)" rx="2" ry="2" /> <text x="955.39" y="943.5" ></text> </g> <g > <title>el0_svc_common.constprop.0 (1 samples, 0.34%)</title><rect x="167.1" y="565" width="4.0" height="15.0" fill="rgb(238,224,20)" rx="2" ry="2" /> <text x="170.06" y="575.5" ></text> </g> <g > <title>DeliverEvent (2 samples, 0.68%)</title><rect x="300.0" y="821" width="8.0" height="15.0" fill="rgb(242,69,37)" rx="2" ry="2" /> <text x="302.97" y="831.5" ></text> </g> <g > <title>handle_transfer (1 samples, 0.34%)</title><rect x="195.3" y="725" width="4.0" height="15.0" fill="rgb(249,32,48)" rx="2" ry="2" /> <text x="198.26" y="735.5" ></text> </g> <g > <title>el0t_64_sync_handler (2 samples, 0.68%)</title><rect x="449.0" y="853" width="8.0" height="15.0" fill="rgb(248,184,33)" rx="2" ry="2" /> <text x="451.98" y="863.5" ></text> </g> <g > <title>_xcb_in_read (1 samples, 0.34%)</title><rect x="444.9" y="789" width="4.1" height="15.0" fill="rgb(211,216,49)" rx="2" ry="2" /> <text x="447.95" y="799.5" ></text> </g> <g > <title>drm_atomic_commit (1 samples, 0.34%)</title><rect x="167.1" y="405" width="4.0" height="15.0" fill="rgb(220,148,50)" rx="2" ry="2" /> <text x="170.06" y="415.5" ></text> </g> <g > <title>do_iter_readv_writev (1 samples, 0.34%)</title><rect x="747.0" y="389" width="4.0" height="15.0" fill="rgb(247,173,53)" rx="2" ry="2" /> <text x="750.00" y="399.5" ></text> </g> <g > <title>QRasterPaintEngine::createState (1 samples, 0.34%)</title><rect x="622.2" y="517" width="4.0" height="15.0" fill="rgb(220,144,39)" rx="2" ry="2" /> <text x="625.15" y="527.5" ></text> </g> <g > <title>do_iter_readv_writev (1 samples, 0.34%)</title><rect x="291.9" y="453" width="4.0" height="15.0" fill="rgb(234,58,7)" rx="2" ry="2" /> <text x="294.91" y="463.5" ></text> </g> <g > <title>QWindowSystemInterfacePrivate::eventHandler (1 samples, 0.34%)</title><rect x="932.3" y="997" width="4.0" height="15.0" fill="rgb(253,187,9)" rx="2" ry="2" /> <text x="935.25" y="1007.5" ></text> </g> <g > <title>_raw_spin_unlock_irqrestore (1 samples, 0.34%)</title><rect x="811.4" y="677" width="4.1" height="15.0" fill="rgb(243,147,0)" rx="2" ry="2" /> <text x="814.43" y="687.5" ></text> </g> <g > <title>DeliverToWindowOwner (1 samples, 0.34%)</title><rect x="287.9" y="757" width="4.0" height="15.0" fill="rgb(248,100,30)" rx="2" ry="2" /> <text x="290.88" y="767.5" ></text> </g> <g > <title>futex_wake (1 samples, 0.34%)</title><rect x="126.8" y="853" width="4.0" height="15.0" fill="rgb(218,23,49)" rx="2" ry="2" /> <text x="129.79" y="863.5" ></text> </g> <g > <title>el0t_64_sync_handler (3 samples, 1.02%)</title><rect x="34.2" y="773" width="12.0" height="15.0" fill="rgb(206,139,14)" rx="2" ry="2" /> <text x="37.16" y="783.5" ></text> </g> <g > <title>wait_for_reply (2 samples, 0.68%)</title><rect x="771.2" y="549" width="8.0" height="15.0" fill="rgb(225,119,47)" rx="2" ry="2" /> <text x="774.16" y="559.5" ></text> </g> <g > <title>QCoreApplication::notifyInternal2 (68 samples, 23.21%)</title><rect x="477.2" y="805" width="273.8" height="15.0" fill="rgb(217,166,54)" rx="2" ry="2" /> <text x="480.17" y="815.5" >QCoreApplication::notifyInternal2</text> </g> <g > <title>unix_stream_sendmsg (1 samples, 0.34%)</title><rect x="295.9" y="421" width="4.1" height="15.0" fill="rgb(246,88,46)" rx="2" ry="2" /> <text x="298.94" y="431.5" ></text> </g> <g > <title>handle_domain_irq (14 samples, 4.78%)</title><rect x="1000.7" y="773" width="56.4" height="15.0" fill="rgb(238,88,42)" rx="2" ry="2" /> <text x="1003.72" y="783.5" >handl..</text> </g> <g > <title>QComboBox::paintEvent (1 samples, 0.34%)</title><rect x="634.2" y="517" width="4.1" height="15.0" fill="rgb(238,133,11)" rx="2" ry="2" /> <text x="637.23" y="527.5" ></text> </g> <g > <title>QTextLine::layout_helper (2 samples, 0.68%)</title><rect x="610.1" y="517" width="8.0" height="15.0" fill="rgb(241,45,43)" rx="2" ry="2" /> <text x="613.07" y="527.5" ></text> </g> <g > <title>preempt_count_add (1 samples, 0.34%)</title><rect x="159.0" y="389" width="4.0" height="15.0" fill="rgb(244,82,20)" rx="2" ry="2" /> <text x="162.01" y="399.5" ></text> </g> <g > <title>[libfm-qt.so.10.0.0] (1 samples, 0.34%)</title><rect x="658.4" y="501" width="4.0" height="15.0" fill="rgb(229,112,2)" rx="2" ry="2" /> <text x="661.40" y="511.5" ></text> </g> <g > <title>QTextEngine::shapeTextWithHarfbuzzNG (1 samples, 0.34%)</title><rect x="642.3" y="549" width="4.0" height="15.0" fill="rgb(223,80,28)" rx="2" ry="2" /> <text x="645.29" y="559.5" ></text> </g> <g > <title>do_el0_svc (2 samples, 0.68%)</title><rect x="300.0" y="597" width="8.0" height="15.0" fill="rgb(240,22,9)" rx="2" ry="2" /> <text x="302.97" y="607.5" ></text> </g> <g > <title>xf86_load_cursor_argb (3 samples, 1.02%)</title><rect x="155.0" y="709" width="12.1" height="15.0" fill="rgb(245,179,45)" rx="2" ry="2" /> <text x="157.98" y="719.5" ></text> </g> <g > <title>el0t_64_sync_handler (1 samples, 0.34%)</title><rect x="267.7" y="629" width="4.1" height="15.0" fill="rgb(233,154,23)" rx="2" ry="2" /> <text x="270.75" y="639.5" ></text> </g> <g > <title>pcmanfm-qt (94 samples, 32.08%)</title><rect x="457.0" y="1013" width="378.6" height="15.0" fill="rgb(245,114,14)" rx="2" ry="2" /> <text x="460.03" y="1023.5" >pcmanfm-qt</text> </g> <g > <title>_XSERVTransSocketWritev (1 samples, 0.34%)</title><rect x="283.9" y="709" width="4.0" height="15.0" fill="rgb(213,51,32)" rx="2" ry="2" /> <text x="286.86" y="719.5" ></text> </g> <g > <title>mieqProcessInputEvents (11 samples, 3.75%)</title><rect x="263.7" y="917" width="44.3" height="15.0" fill="rgb(206,175,43)" rx="2" ry="2" /> <text x="266.72" y="927.5" >mieq..</text> </g> <g > <title>WriteEventsToClient (1 samples, 0.34%)</title><rect x="267.7" y="725" width="4.1" height="15.0" fill="rgb(205,77,40)" rx="2" ry="2" /> <text x="270.75" y="735.5" ></text> </g> <g > <title>QPainter::drawPixmap (1 samples, 0.34%)</title><rect x="650.3" y="533" width="4.1" height="15.0" fill="rgb(223,213,13)" rx="2" ry="2" /> <text x="653.34" y="543.5" ></text> </g> <g > <title>do_iter_write (1 samples, 0.34%)</title><rect x="287.9" y="485" width="4.0" height="15.0" fill="rgb(246,29,17)" rx="2" ry="2" /> <text x="290.88" y="495.5" ></text> </g> <g > <title>el1h_64_sync_handler (2 samples, 0.68%)</title><rect x="924.2" y="645" width="8.1" height="15.0" fill="rgb(212,128,21)" rx="2" ry="2" /> <text x="927.20" y="655.5" ></text> </g> <g > <title>_raw_spin_unlock_irqrestore (1 samples, 0.34%)</title><rect x="332.2" y="565" width="4.0" height="15.0" fill="rgb(234,70,54)" rx="2" ry="2" /> <text x="335.18" y="575.5" ></text> </g> <g > <title>__libc_start_main (64 samples, 21.84%)</title><rect x="155.0" y="981" width="257.7" height="15.0" fill="rgb(215,156,48)" rx="2" ry="2" /> <text x="157.98" y="991.5" >__libc_start_main</text> </g> <g > <title>QCoreApplicationPrivate::sendThroughObjectEventFilters@plt (1 samples, 0.34%)</title><rect x="428.8" y="981" width="4.1" height="15.0" fill="rgb(244,3,54)" rx="2" ry="2" /> <text x="431.84" y="991.5" ></text> </g> <g > <title>Fm::FolderModel::data (1 samples, 0.34%)</title><rect x="618.1" y="501" width="4.1" height="15.0" fill="rgb(229,24,5)" rx="2" ry="2" /> <text x="621.12" y="511.5" ></text> </g> <g > <title>blk_mq_sched_dispatch_requests (1 samples, 0.34%)</title><rect x="420.8" y="901" width="4.0" height="15.0" fill="rgb(248,4,49)" rx="2" ry="2" /> <text x="423.78" y="911.5" ></text> </g> <g > <title>do_el0_svc (1 samples, 0.34%)</title><rect x="835.6" y="869" width="4.0" height="15.0" fill="rgb(223,7,46)" rx="2" ry="2" /> <text x="838.60" y="879.5" ></text> </g> <g > <title>__GI_memcpy (1 samples, 0.34%)</title><rect x="251.6" y="629" width="4.1" height="15.0" fill="rgb(217,103,25)" rx="2" ry="2" /> <text x="254.64" y="639.5" ></text> </g> <g > <title>QXcbConnection::xi2HandleScrollEvent@plt (1 samples, 0.34%)</title><rect x="436.9" y="981" width="4.0" height="15.0" fill="rgb(205,200,49)" rx="2" ry="2" /> <text x="439.89" y="991.5" ></text> </g> <g > <title>do_blits (1 samples, 0.34%)</title><rect x="255.7" y="629" width="4.0" height="15.0" fill="rgb(218,187,11)" rx="2" ry="2" /> <text x="258.67" y="639.5" ></text> </g> <g > <title>drmIoctl (3 samples, 1.02%)</title><rect x="155.0" y="613" width="12.1" height="15.0" fill="rgb(245,176,53)" rx="2" ry="2" /> <text x="157.98" y="623.5" ></text> </g> <g > <title>poll_for_next_event (2 samples, 0.68%)</title><rect x="1165.8" y="837" width="8.1" height="15.0" fill="rgb(227,0,42)" rx="2" ry="2" /> <text x="1168.84" y="847.5" ></text> </g> <g > <title>do_iter_write (1 samples, 0.34%)</title><rect x="775.2" y="277" width="4.0" height="15.0" fill="rgb(208,199,26)" rx="2" ry="2" /> <text x="778.19" y="287.5" ></text> </g> <g > <title>Dispatch (64 samples, 21.84%)</title><rect x="155.0" y="949" width="257.7" height="15.0" fill="rgb(223,138,35)" rx="2" ry="2" /> <text x="157.98" y="959.5" >Dispatch</text> </g> <g > <title>vc4_atomic_commit_tail (1 samples, 0.34%)</title><rect x="167.1" y="357" width="4.0" height="15.0" fill="rgb(231,204,16)" rx="2" ry="2" /> <text x="170.06" y="367.5" ></text> </g> <g > <title>xf86SetCursor (2 samples, 0.68%)</title><rect x="275.8" y="709" width="8.1" height="15.0" fill="rgb(209,167,26)" rx="2" ry="2" /> <text x="278.80" y="719.5" ></text> </g> <g > <title>__libc_read (3 samples, 1.02%)</title><rect x="34.2" y="821" width="12.0" height="15.0" fill="rgb(253,112,32)" rx="2" ry="2" /> <text x="37.16" y="831.5" ></text> </g> <g > <title>new_sync_write (3 samples, 1.02%)</title><rect x="14.0" y="757" width="12.1" height="15.0" fill="rgb(239,139,51)" rx="2" ry="2" /> <text x="17.03" y="767.5" ></text> </g> <g > <title>__blk_mq_run_hw_queue (1 samples, 0.34%)</title><rect x="420.8" y="917" width="4.0" height="15.0" fill="rgb(227,70,50)" rx="2" ry="2" /> <text x="423.78" y="927.5" ></text> </g> <g > <title>ProcChangeWindowAttributes (4 samples, 1.37%)</title><rect x="155.0" y="933" width="16.1" height="15.0" fill="rgb(242,222,10)" rx="2" ry="2" /> <text x="157.98" y="943.5" ></text> </g> <g > <title>__GI___writev (1 samples, 0.34%)</title><rect x="944.3" y="533" width="4.1" height="15.0" fill="rgb(207,26,50)" rx="2" ry="2" /> <text x="947.33" y="543.5" ></text> </g> <g > <title>XEventsQueued (2 samples, 0.68%)</title><rect x="1173.9" y="901" width="8.0" height="15.0" fill="rgb(216,199,16)" rx="2" ry="2" /> <text x="1176.89" y="911.5" ></text> </g> <g > <title>systemd-journal (2 samples, 0.68%)</title><rect x="1145.7" y="1013" width="8.1" height="15.0" fill="rgb(219,172,46)" rx="2" ry="2" /> <text x="1148.70" y="1023.5" ></text> </g> <g > <title>do_el0_svc (1 samples, 0.34%)</title><rect x="473.1" y="741" width="4.1" height="15.0" fill="rgb(217,64,52)" rx="2" ry="2" /> <text x="476.14" y="751.5" ></text> </g> <g > <title>do_wp_page (1 samples, 0.34%)</title><rect x="952.4" y="805" width="4.0" height="15.0" fill="rgb(212,1,2)" rx="2" ry="2" /> <text x="955.39" y="815.5" ></text> </g> <g > <title>QGuiApplicationPrivate::processMouseEvent (7 samples, 2.39%)</title><rect x="759.1" y="805" width="28.2" height="15.0" fill="rgb(225,148,47)" rx="2" ry="2" /> <text x="762.08" y="815.5" >Q..</text> </g> <g > <title>unix_stream_read_generic (1 samples, 0.34%)</title><rect x="1173.9" y="597" width="4.0" height="15.0" fill="rgb(218,33,6)" rx="2" ry="2" /> <text x="1176.89" y="607.5" ></text> </g> <g > <title>glamor_upload_boxes (15 samples, 5.12%)</title><rect x="187.2" y="853" width="60.4" height="15.0" fill="rgb(235,60,20)" rx="2" ry="2" /> <text x="190.20" y="863.5" >glamor..</text> </g> <g > <title>irq_exit (1 samples, 0.34%)</title><rect x="428.8" y="837" width="4.1" height="15.0" fill="rgb(207,100,37)" rx="2" ry="2" /> <text x="431.84" y="847.5" ></text> </g> <g > <title>gic_handle_irq (1 samples, 0.34%)</title><rect x="408.7" y="693" width="4.0" height="15.0" fill="rgb(210,31,3)" rx="2" ry="2" /> <text x="411.70" y="703.5" ></text> </g> <g > <title>v3d_create_bo_ioctl (1 samples, 0.34%)</title><rect x="255.7" y="293" width="4.0" height="15.0" fill="rgb(209,139,15)" rx="2" ry="2" /> <text x="258.67" y="303.5" ></text> </g> <g > <title>memcpy (2 samples, 0.68%)</title><rect x="235.5" y="725" width="8.1" height="15.0" fill="rgb(219,42,43)" rx="2" ry="2" /> <text x="238.53" y="735.5" ></text> </g> <g > <title>__arm64_sys_write (3 samples, 1.02%)</title><rect x="14.0" y="805" width="12.1" height="15.0" fill="rgb(241,138,26)" rx="2" ry="2" /> <text x="17.03" y="815.5" ></text> </g> <g > <title>clk_core_set_rate_nolock (1 samples, 0.34%)</title><rect x="416.8" y="901" width="4.0" height="15.0" fill="rgb(223,98,28)" rx="2" ry="2" /> <text x="419.76" y="911.5" ></text> </g> <g > <title>TryClientEvents (1 samples, 0.34%)</title><rect x="295.9" y="725" width="4.1" height="15.0" fill="rgb(244,228,51)" rx="2" ry="2" /> <text x="298.94" y="735.5" ></text> </g> <g > <title>__arm64_sys_write (1 samples, 0.34%)</title><rect x="102.6" y="773" width="4.1" height="15.0" fill="rgb(222,103,41)" rx="2" ry="2" /> <text x="105.63" y="783.5" ></text> </g> <g > <title>clk_set_rate (1 samples, 0.34%)</title><rect x="960.4" y="869" width="4.1" height="15.0" fill="rgb(210,167,25)" rx="2" ry="2" /> <text x="963.44" y="879.5" ></text> </g> <g > <title>___sys_recvmsg (1 samples, 0.34%)</title><rect x="1173.9" y="645" width="4.0" height="15.0" fill="rgb(216,114,33)" rx="2" ry="2" /> <text x="1176.89" y="655.5" ></text> </g> <g > <title>el0t_64_sync_handler (1 samples, 0.34%)</title><rect x="291.9" y="597" width="4.0" height="15.0" fill="rgb(222,141,17)" rx="2" ry="2" /> <text x="294.91" y="607.5" ></text> </g> <g > <title>arch_cpu_idle (22 samples, 7.51%)</title><rect x="968.5" y="885" width="88.6" height="15.0" fill="rgb(252,98,15)" rx="2" ry="2" /> <text x="971.50" y="895.5" >arch_cpu_i..</text> </g> <g > <title>hidinput_report_event (1 samples, 0.34%)</title><rect x="1024.9" y="597" width="4.0" height="15.0" fill="rgb(224,116,1)" rx="2" ry="2" /> <text x="1027.88" y="607.5" ></text> </g> <g > <title>_start (90 samples, 30.72%)</title><rect x="473.1" y="997" width="362.5" height="15.0" fill="rgb(211,191,40)" rx="2" ry="2" /> <text x="476.14" y="1007.5" >_start</text> </g> <g > <title>QListView::paintEvent (6 samples, 2.05%)</title><rect x="638.3" y="629" width="24.1" height="15.0" fill="rgb(228,90,33)" rx="2" ry="2" /> <text x="641.26" y="639.5" >Q..</text> </g> <g > <title>__audit_syscall_exit (1 samples, 0.34%)</title><rect x="126.8" y="741" width="4.0" height="15.0" fill="rgb(231,52,2)" rx="2" ry="2" /> <text x="129.79" y="751.5" ></text> </g> <g > <title>[libfm-qt.so.10.0.0] (4 samples, 1.37%)</title><rect x="767.1" y="629" width="16.1" height="15.0" fill="rgb(246,81,6)" rx="2" ry="2" /> <text x="770.13" y="639.5" ></text> </g> <g > <title>DeliverEvent (2 samples, 0.68%)</title><rect x="267.7" y="821" width="8.1" height="15.0" fill="rgb(221,149,43)" rx="2" ry="2" /> <text x="270.75" y="831.5" ></text> </g> <g > <title>sugov:0 (2 samples, 0.68%)</title><rect x="956.4" y="1013" width="8.1" height="15.0" fill="rgb(214,90,46)" rx="2" ry="2" /> <text x="959.42" y="1023.5" ></text> </g> <g > <title>DRM_IOCTL (6 samples, 2.05%)</title><rect x="46.2" y="677" width="24.2" height="15.0" fill="rgb(230,29,48)" rx="2" ry="2" /> <text x="49.25" y="687.5" >D..</text> </g> <g > <title>hid_report_raw_event (3 samples, 1.02%)</title><rect x="1020.9" y="613" width="12.0" height="15.0" fill="rgb(247,208,52)" rx="2" ry="2" /> <text x="1023.85" y="623.5" ></text> </g> <g > <title>el0t_64_sync_handler (1 samples, 0.34%)</title><rect x="771.2" y="453" width="4.0" height="15.0" fill="rgb(217,29,39)" rx="2" ry="2" /> <text x="774.16" y="463.5" ></text> </g> <g > <title>irq_exit (14 samples, 4.78%)</title><rect x="1000.7" y="757" width="56.4" height="15.0" fill="rgb(243,47,25)" rx="2" ry="2" /> <text x="1003.72" y="767.5" >irq_e..</text> </g> <g > <title>el0t_64_sync (2 samples, 0.68%)</title><rect x="26.1" y="869" width="8.1" height="15.0" fill="rgb(239,100,39)" rx="2" ry="2" /> <text x="29.11" y="879.5" ></text> </g> <g > <title>glamor_copy_area (3 samples, 1.02%)</title><rect x="247.6" y="885" width="12.1" height="15.0" fill="rgb(220,222,48)" rx="2" ry="2" /> <text x="250.61" y="895.5" ></text> </g> <g > <title>perf_ioctl (16 samples, 5.46%)</title><rect x="851.7" y="805" width="64.4" height="15.0" fill="rgb(245,62,48)" rx="2" ry="2" /> <text x="854.71" y="815.5" >perf_io..</text> </g> <g > <title>poll_freewait (1 samples, 0.34%)</title><rect x="138.9" y="741" width="4.0" height="15.0" fill="rgb(222,142,49)" rx="2" ry="2" /> <text x="141.87" y="751.5" ></text> </g> <g > <title>el0t_64_sync_handler (2 samples, 0.68%)</title><rect x="300.0" y="629" width="8.0" height="15.0" fill="rgb(247,208,53)" rx="2" ry="2" /> <text x="302.97" y="639.5" ></text> </g> <g > <title>QStyledItemDelegate::initStyleOption (1 samples, 0.34%)</title><rect x="658.4" y="597" width="4.0" height="15.0" fill="rgb(243,19,23)" rx="2" ry="2" /> <text x="661.40" y="607.5" ></text> </g> <g > <title>__sys_recvmsg (2 samples, 0.68%)</title><rect x="1173.9" y="661" width="8.0" height="15.0" fill="rgb(213,30,53)" rx="2" ry="2" /> <text x="1176.89" y="671.5" ></text> </g> <g > <title>g_source_iter_next (2 samples, 0.68%)</title><rect x="827.5" y="853" width="8.1" height="15.0" fill="rgb(240,29,6)" rx="2" ry="2" /> <text x="830.54" y="863.5" ></text> </g> <g > <title>hid_process_event (1 samples, 0.34%)</title><rect x="1020.9" y="597" width="4.0" height="15.0" fill="rgb(247,99,13)" rx="2" ry="2" /> <text x="1023.85" y="607.5" ></text> </g> <g > <title>[libsystemd-shared-249.so] (2 samples, 0.68%)</title><rect x="1145.7" y="917" width="8.1" height="15.0" fill="rgb(226,1,36)" rx="2" ry="2" /> <text x="1148.70" y="927.5" ></text> </g> <g > <title>__arm64_sys_ppoll (5 samples, 1.71%)</title><rect x="803.4" y="741" width="20.1" height="15.0" fill="rgb(214,134,39)" rx="2" ry="2" /> <text x="806.38" y="751.5" ></text> </g> <g > <title>vfs_writev (1 samples, 0.34%)</title><rect x="944.3" y="389" width="4.1" height="15.0" fill="rgb(223,59,38)" rx="2" ry="2" /> <text x="947.33" y="399.5" ></text> </g> <g > <title>invoke_syscall (1 samples, 0.34%)</title><rect x="771.2" y="389" width="4.0" height="15.0" fill="rgb(211,26,1)" rx="2" ry="2" /> <text x="774.16" y="399.5" ></text> </g> <g > <title>sched_setaffinity (1 samples, 0.34%)</title><rect x="835.6" y="805" width="4.0" height="15.0" fill="rgb(209,40,23)" rx="2" ry="2" /> <text x="838.60" y="815.5" ></text> </g> <g > <title>openbox (3 samples, 1.02%)</title><rect x="444.9" y="1013" width="12.1" height="15.0" fill="rgb(246,203,0)" rx="2" ry="2" /> <text x="447.95" y="1023.5" ></text> </g> <g > <title>start_kernel (28 samples, 9.56%)</title><rect x="964.5" y="981" width="112.7" height="15.0" fill="rgb(252,220,27)" rx="2" ry="2" /> <text x="967.47" y="991.5" >start_kernel</text> </g> <g > <title>v3d_start_binning (1 samples, 0.34%)</title><rect x="255.7" y="517" width="4.0" height="15.0" fill="rgb(236,20,39)" rx="2" ry="2" /> <text x="258.67" y="527.5" ></text> </g> <g > <title>_xcb_out_flush_to (1 samples, 0.34%)</title><rect x="944.3" y="629" width="4.1" height="15.0" fill="rgb(254,81,18)" rx="2" ry="2" /> <text x="947.33" y="639.5" ></text> </g> <g > <title>__GI___libc_write (1 samples, 0.34%)</title><rect x="102.6" y="885" width="4.1" height="15.0" fill="rgb(239,39,33)" rx="2" ry="2" /> <text x="105.63" y="895.5" ></text> </g> <g > <title>write_vec (1 samples, 0.34%)</title><rect x="944.3" y="565" width="4.1" height="15.0" fill="rgb(218,93,39)" rx="2" ry="2" /> <text x="947.33" y="575.5" ></text> </g> <g > <title>do_epoll_wait (3 samples, 1.02%)</title><rect x="78.5" y="789" width="12.0" height="15.0" fill="rgb(217,202,9)" rx="2" ry="2" /> <text x="81.46" y="799.5" ></text> </g> <g > <title>do_el0_svc (3 samples, 1.02%)</title><rect x="155.0" y="533" width="12.1" height="15.0" fill="rgb(225,197,44)" rx="2" ry="2" /> <text x="157.98" y="543.5" ></text> </g> <g > <title>syscall_trace_exit (1 samples, 0.34%)</title><rect x="118.7" y="789" width="4.1" height="15.0" fill="rgb(223,113,13)" rx="2" ry="2" /> <text x="121.74" y="799.5" ></text> </g> <g > <title>QWaitCondition::wakeOne (1 samples, 0.34%)</title><rect x="98.6" y="933" width="4.0" height="15.0" fill="rgb(206,60,30)" rx="2" ry="2" /> <text x="101.60" y="943.5" ></text> </g> <g > <title>el1h_64_irq (1 samples, 0.34%)</title><rect x="62.4" y="181" width="4.0" height="15.0" fill="rgb(212,123,15)" rx="2" ry="2" /> <text x="65.35" y="191.5" ></text> </g> <g > <title>ret_from_fork (1 samples, 0.34%)</title><rect x="424.8" y="997" width="4.0" height="15.0" fill="rgb(221,125,17)" rx="2" ry="2" /> <text x="427.81" y="1007.5" ></text> </g> <g > <title>ChangeWindowAttributes (4 samples, 1.37%)</title><rect x="155.0" y="917" width="16.1" height="15.0" fill="rgb(243,143,10)" rx="2" ry="2" /> <text x="157.98" y="927.5" ></text> </g> <g > <title>el0t_64_sync (1 samples, 0.34%)</title><rect x="1149.7" y="821" width="4.1" height="15.0" fill="rgb(212,65,48)" rx="2" ry="2" /> <text x="1152.73" y="831.5" ></text> </g> <g > <title>texture_sub_image (2 samples, 0.68%)</title><rect x="251.6" y="725" width="8.1" height="15.0" fill="rgb(224,180,41)" rx="2" ry="2" /> <text x="254.64" y="735.5" ></text> </g> <g > <title>__do_softirq (1 samples, 0.34%)</title><rect x="1121.5" y="757" width="4.1" height="15.0" fill="rgb(237,201,9)" rx="2" ry="2" /> <text x="1124.54" y="767.5" ></text> </g> <g > <title>QWidgetPrivate::drawWidget (6 samples, 2.05%)</title><rect x="606.0" y="677" width="24.2" height="15.0" fill="rgb(241,12,10)" rx="2" ry="2" /> <text x="609.04" y="687.5" >Q..</text> </g> <g > <title>el0_svc_common.constprop.0 (1 samples, 0.34%)</title><rect x="1169.9" y="725" width="4.0" height="15.0" fill="rgb(240,156,32)" rx="2" ry="2" /> <text x="1172.86" y="735.5" ></text> </g> <g > <title>[libQt5Gui.so.5.15.2] (21 samples, 7.17%)</title><rect x="662.4" y="597" width="84.6" height="15.0" fill="rgb(237,172,2)" rx="2" ry="2" /> <text x="665.42" y="607.5" >[libQt5Gu..</text> </g> <g > <title>do_el0_svc (2 samples, 0.68%)</title><rect x="449.0" y="821" width="8.0" height="15.0" fill="rgb(246,52,44)" rx="2" ry="2" /> <text x="451.98" y="831.5" ></text> </g> <g > <title>QVariant::QVariant (1 samples, 0.34%)</title><rect x="618.1" y="485" width="4.1" height="15.0" fill="rgb(214,114,35)" rx="2" ry="2" /> <text x="621.12" y="495.5" ></text> </g> <g > <title>__cpufreq_driver_target (1 samples, 0.34%)</title><rect x="960.4" y="933" width="4.1" height="15.0" fill="rgb(242,183,38)" rx="2" ry="2" /> <text x="963.44" y="943.5" ></text> </g> <g > <title>xf86_crtc_load_cursor_argb (3 samples, 1.02%)</title><rect x="155.0" y="693" width="12.1" height="15.0" fill="rgb(211,92,0)" rx="2" ry="2" /> <text x="157.98" y="703.5" ></text> </g> <g > <title>_XSERVTransSocketRead (6 samples, 2.05%)</title><rect x="312.0" y="917" width="24.2" height="15.0" fill="rgb(240,29,20)" rx="2" ry="2" /> <text x="315.05" y="927.5" >_..</text> </g> <g > <title>evdev_device_dispatch (3 samples, 1.02%)</title><rect x="34.2" y="885" width="12.0" height="15.0" fill="rgb(217,90,27)" rx="2" ry="2" /> <text x="37.16" y="895.5" ></text> </g> <g > <title>__libc_recvmsg (2 samples, 0.68%)</title><rect x="1165.8" y="805" width="8.1" height="15.0" fill="rgb(244,126,34)" rx="2" ry="2" /> <text x="1168.84" y="815.5" ></text> </g> <g > <title>[libQt5Widgets.so.5.15.2] (1 samples, 0.34%)</title><rect x="755.1" y="757" width="4.0" height="15.0" fill="rgb(231,52,29)" rx="2" ry="2" /> <text x="758.05" y="767.5" ></text> </g> <g > <title>QApplication::notify (1 samples, 0.34%)</title><rect x="759.1" y="773" width="4.0" height="15.0" fill="rgb(211,71,16)" rx="2" ry="2" /> <text x="762.08" y="783.5" ></text> </g> <g > <title>ospoll_wait (11 samples, 3.75%)</title><rect x="368.4" y="917" width="44.3" height="15.0" fill="rgb(207,110,16)" rx="2" ry="2" /> <text x="371.43" y="927.5" >ospo..</text> </g> <g > <title>xf86_load_cursor_argb (2 samples, 0.68%)</title><rect x="275.8" y="661" width="8.1" height="15.0" fill="rgb(242,23,24)" rx="2" ry="2" /> <text x="278.80" y="671.5" ></text> </g> <g > <title>__libc_write (4 samples, 1.37%)</title><rect x="916.1" y="885" width="16.2" height="15.0" fill="rgb(210,217,41)" rx="2" ry="2" /> <text x="919.14" y="895.5" ></text> </g> <g > <title>g_main_loop_run (3 samples, 1.02%)</title><rect x="444.9" y="933" width="12.1" height="15.0" fill="rgb(209,142,45)" rx="2" ry="2" /> <text x="447.95" y="943.5" ></text> </g> <g > <title>_mesa_TexSubImage2D (3 samples, 1.02%)</title><rect x="247.6" y="757" width="12.1" height="15.0" fill="rgb(247,68,15)" rx="2" ry="2" /> <text x="250.61" y="767.5" ></text> </g> <g > <title>xcb_connection_has_error@plt (1 samples, 0.34%)</title><rect x="1186.0" y="965" width="4.0" height="15.0" fill="rgb(216,97,17)" rx="2" ry="2" /> <text x="1188.97" y="975.5" ></text> </g> <g > <title>drmIoctl (6 samples, 2.05%)</title><rect x="46.2" y="661" width="24.2" height="15.0" fill="rgb(221,49,14)" rx="2" ry="2" /> <text x="49.25" y="671.5" >d..</text> </g> <g > <title>sock_poll (2 samples, 0.68%)</title><rect x="146.9" y="741" width="8.1" height="15.0" fill="rgb(231,164,21)" rx="2" ry="2" /> <text x="149.93" y="751.5" ></text> </g> <g > <title>el0t_64_sync (1 samples, 0.34%)</title><rect x="948.4" y="837" width="4.0" height="15.0" fill="rgb(222,27,44)" rx="2" ry="2" /> <text x="951.36" y="847.5" ></text> </g> <g > <title>xf86ScreenMoveCursor (6 samples, 2.05%)</title><rect x="46.2" y="741" width="24.2" height="15.0" fill="rgb(210,20,8)" rx="2" ry="2" /> <text x="49.25" y="751.5" >x..</text> </g> <g > <title>hiddev_send_event.isra.0 (1 samples, 0.34%)</title><rect x="1020.9" y="565" width="4.0" height="15.0" fill="rgb(210,209,33)" rx="2" ry="2" /> <text x="1023.85" y="575.5" ></text> </g> <g > <title>[systemd-userwork] (1 samples, 0.34%)</title><rect x="1153.8" y="997" width="4.0" height="15.0" fill="rgb(232,64,50)" rx="2" ry="2" /> <text x="1156.75" y="1007.5" ></text> </g> <g > <title>[libQt5Widgets.so.5.15.2] (1 samples, 0.34%)</title><rect x="626.2" y="501" width="4.0" height="15.0" fill="rgb(241,129,53)" rx="2" ry="2" /> <text x="629.18" y="511.5" ></text> </g> <g > <title>QTextLayout::beginLayout (1 samples, 0.34%)</title><rect x="457.0" y="997" width="4.1" height="15.0" fill="rgb(210,14,29)" rx="2" ry="2" /> <text x="460.03" y="1007.5" ></text> </g> <g > <title>QRasterPaintEngine::drawCachedGlyphs (1 samples, 0.34%)</title><rect x="432.9" y="917" width="4.0" height="15.0" fill="rgb(215,38,29)" rx="2" ry="2" /> <text x="435.87" y="927.5" ></text> </g> <g > <title>g_hash_table_lookup (1 samples, 0.34%)</title><rect x="412.7" y="757" width="4.1" height="15.0" fill="rgb(207,31,2)" rx="2" ry="2" /> <text x="415.73" y="767.5" ></text> </g> <g > <title>[libQt5Widgets.so.5.15.2] (1 samples, 0.34%)</title><rect x="747.0" y="741" width="4.0" height="15.0" fill="rgb(219,132,20)" rx="2" ry="2" /> <text x="750.00" y="751.5" ></text> </g> <g > <title>tick_nohz_idle_exit (2 samples, 0.68%)</title><rect x="1137.6" y="933" width="8.1" height="15.0" fill="rgb(249,223,20)" rx="2" ry="2" /> <text x="1140.65" y="943.5" ></text> </g> <g > <title>mbox_send_message (3 samples, 1.02%)</title><rect x="58.3" y="277" width="12.1" height="15.0" fill="rgb(243,177,48)" rx="2" ry="2" /> <text x="61.33" y="287.5" ></text> </g> <g > <title>DeliverEventsToWindow (1 samples, 0.34%)</title><rect x="287.9" y="773" width="4.0" height="15.0" fill="rgb(224,51,40)" rx="2" ry="2" /> <text x="290.88" y="783.5" ></text> </g> <g > <title>__GI___libc_write (1 samples, 0.34%)</title><rect x="102.6" y="901" width="4.1" height="15.0" fill="rgb(244,160,25)" rx="2" ry="2" /> <text x="105.63" y="911.5" ></text> </g> <g > <title>do_mem_abort (1 samples, 0.34%)</title><rect x="1149.7" y="773" width="4.1" height="15.0" fill="rgb(213,183,52)" rx="2" ry="2" /> <text x="1152.73" y="783.5" ></text> </g> <g > <title>generic_exec_single (16 samples, 5.46%)</title><rect x="851.7" y="709" width="64.4" height="15.0" fill="rgb(221,116,14)" rx="2" ry="2" /> <text x="854.71" y="719.5" >generic..</text> </g> <g > <title>XPending (1 samples, 0.34%)</title><rect x="444.9" y="885" width="4.1" height="15.0" fill="rgb(246,157,26)" rx="2" ry="2" /> <text x="447.95" y="895.5" ></text> </g> <g > <title>drmModeMoveCursor (6 samples, 2.05%)</title><rect x="46.2" y="693" width="24.2" height="15.0" fill="rgb(223,24,41)" rx="2" ry="2" /> <text x="49.25" y="703.5" >d..</text> </g> <g > <title>__ioctl (17 samples, 5.80%)</title><rect x="847.7" y="933" width="68.4" height="15.0" fill="rgb(236,36,28)" rx="2" ry="2" /> <text x="850.68" y="943.5" >__ioctl</text> </g> <g > <title>do_el0_svc (1 samples, 0.34%)</title><rect x="175.1" y="805" width="4.0" height="15.0" fill="rgb(240,157,40)" rx="2" ry="2" /> <text x="178.12" y="815.5" ></text> </g> <g > <title>ktime_get_coarse_real_ts64 (1 samples, 0.34%)</title><rect x="364.4" y="789" width="4.0" height="15.0" fill="rgb(220,139,49)" rx="2" ry="2" /> <text x="367.40" y="799.5" ></text> </g> <g > <title>invoke_syscall (2 samples, 0.68%)</title><rect x="275.8" y="453" width="8.1" height="15.0" fill="rgb(205,97,33)" rx="2" ry="2" /> <text x="278.80" y="463.5" ></text> </g> <g > <title>v3d_bo_map (1 samples, 0.34%)</title><rect x="243.6" y="741" width="4.0" height="15.0" fill="rgb(254,115,27)" rx="2" ry="2" /> <text x="246.58" y="751.5" ></text> </g> <g > <title>drm_ioctl_permit (1 samples, 0.34%)</title><rect x="159.0" y="437" width="4.0" height="15.0" fill="rgb(206,90,48)" rx="2" ry="2" /> <text x="162.01" y="447.5" ></text> </g> <g > <title>TryClientEvents (2 samples, 0.68%)</title><rect x="300.0" y="757" width="8.0" height="15.0" fill="rgb(236,156,6)" rx="2" ry="2" /> <text x="302.97" y="767.5" ></text> </g> <g > <title>_raw_spin_unlock_irqrestore (1 samples, 0.34%)</title><rect x="283.9" y="389" width="4.0" height="15.0" fill="rgb(240,144,7)" rx="2" ry="2" /> <text x="286.86" y="399.5" ></text> </g> <g > <title>QWidget::event (68 samples, 23.21%)</title><rect x="477.2" y="773" width="273.8" height="15.0" fill="rgb(230,76,47)" rx="2" ry="2" /> <text x="480.17" y="783.5" >QWidget::event</text> </g> <g > <title>__arm64_sys_setitimer (2 samples, 0.68%)</title><rect x="352.3" y="789" width="8.1" height="15.0" fill="rgb(243,96,48)" rx="2" ry="2" /> <text x="355.32" y="799.5" ></text> </g> <g > <title>sock_sendmsg (1 samples, 0.34%)</title><rect x="747.0" y="357" width="4.0" height="15.0" fill="rgb(211,179,20)" rx="2" ry="2" /> <text x="750.00" y="367.5" ></text> </g> <g > <title>g_source_callback_unref (1 samples, 0.34%)</title><rect x="412.7" y="853" width="4.1" height="15.0" fill="rgb(217,105,21)" rx="2" ry="2" /> <text x="415.73" y="863.5" ></text> </g> <g > <title>QCoreApplicationPrivate::sendPostedEvents (69 samples, 23.55%)</title><rect x="477.2" y="821" width="277.9" height="15.0" fill="rgb(239,63,31)" rx="2" ry="2" /> <text x="480.17" y="831.5" >QCoreApplicationPrivate::sendPostedEv..</text> </g> <g > <title>[libQt5Widgets.so.5.15.2] (1 samples, 0.34%)</title><rect x="440.9" y="725" width="4.0" height="15.0" fill="rgb(230,110,37)" rx="2" ry="2" /> <text x="443.92" y="735.5" ></text> </g> <g > <title>_mesa_validate_pbo_access (1 samples, 0.34%)</title><rect x="247.6" y="693" width="4.0" height="15.0" fill="rgb(224,99,31)" rx="2" ry="2" /> <text x="250.61" y="703.5" ></text> </g> <g > <title>unix_stream_sendmsg (2 samples, 0.68%)</title><rect x="300.0" y="437" width="8.0" height="15.0" fill="rgb(234,186,42)" rx="2" ry="2" /> <text x="302.97" y="447.5" ></text> </g> <g > <title>QMutex::unlock (1 samples, 0.34%)</title><rect x="751.0" y="805" width="4.1" height="15.0" fill="rgb(213,223,43)" rx="2" ry="2" /> <text x="754.02" y="815.5" ></text> </g> <g > <title>Fm::ProxyFolderModel::data (1 samples, 0.34%)</title><rect x="618.1" y="533" width="4.1" height="15.0" fill="rgb(221,188,27)" rx="2" ry="2" /> <text x="621.12" y="543.5" ></text> </g> <g > <title>QFontEngineMulti::stringToCMap (1 samples, 0.34%)</title><rect x="610.1" y="485" width="4.0" height="15.0" fill="rgb(216,227,6)" rx="2" ry="2" /> <text x="613.07" y="495.5" ></text> </g> <g > <title>irq_exit (1 samples, 0.34%)</title><rect x="940.3" y="517" width="4.0" height="15.0" fill="rgb(248,215,7)" rx="2" ry="2" /> <text x="943.31" y="527.5" ></text> </g> <g > <title>invoke_syscall (1 samples, 0.34%)</title><rect x="243.6" y="565" width="4.0" height="15.0" fill="rgb(247,155,0)" rx="2" ry="2" /> <text x="246.58" y="575.5" ></text> </g> <g > <title>drm_ioctl_kernel (1 samples, 0.34%)</title><rect x="167.1" y="501" width="4.0" height="15.0" fill="rgb(234,142,2)" rx="2" ry="2" /> <text x="170.06" y="511.5" ></text> </g> <g > <title>vc4_plane_atomic_update (1 samples, 0.34%)</title><rect x="275.8" y="229" width="4.0" height="15.0" fill="rgb(207,210,15)" rx="2" ry="2" /> <text x="278.80" y="239.5" ></text> </g> <g > <title>__arm64_sys_read (3 samples, 1.02%)</title><rect x="34.2" y="693" width="12.0" height="15.0" fill="rgb(206,73,2)" rx="2" ry="2" /> <text x="37.16" y="703.5" ></text> </g> <g > <title>g_object_unref (1 samples, 0.34%)</title><rect x="412.7" y="821" width="4.1" height="15.0" fill="rgb(226,205,24)" rx="2" ry="2" /> <text x="415.73" y="831.5" ></text> </g> <g > <title>InputThread (22 samples, 7.51%)</title><rect x="10.0" y="1013" width="88.6" height="15.0" fill="rgb(213,166,38)" rx="2" ry="2" /> <text x="13.00" y="1023.5" >InputThread</text> </g> <g > <title>vc4_plane_set_blank.isra.0 (1 samples, 0.34%)</title><rect x="167.1" y="309" width="4.0" height="15.0" fill="rgb(222,56,3)" rx="2" ry="2" /> <text x="170.06" y="319.5" ></text> </g> <g > <title>el0t_64_sync_handler (1 samples, 0.34%)</title><rect x="243.6" y="629" width="4.0" height="15.0" fill="rgb(238,199,30)" rx="2" ry="2" /> <text x="246.58" y="639.5" ></text> </g> <g > <title>g_main_context_iteration (1 samples, 0.34%)</title><rect x="440.9" y="901" width="4.0" height="15.0" fill="rgb(240,156,4)" rx="2" ry="2" /> <text x="443.92" y="911.5" ></text> </g> <g > <title>fpsimd_restore_current_state (1 samples, 0.34%)</title><rect x="823.5" y="773" width="4.0" height="15.0" fill="rgb(232,2,19)" rx="2" ry="2" /> <text x="826.52" y="783.5" ></text> </g> <g > <title>glamor_validate_gc (1 samples, 0.34%)</title><rect x="183.2" y="885" width="4.0" height="15.0" fill="rgb(206,215,3)" rx="2" ry="2" /> <text x="186.17" y="895.5" ></text> </g> <g > <title>_xcb_in_read (2 samples, 0.68%)</title><rect x="1173.9" y="805" width="8.0" height="15.0" fill="rgb(237,169,10)" rx="2" ry="2" /> <text x="1176.89" y="815.5" ></text> </g> <g > <title>el0t_64_sync (7 samples, 2.39%)</title><rect x="799.4" y="837" width="28.1" height="15.0" fill="rgb(217,8,47)" rx="2" ry="2" /> <text x="802.35" y="847.5" >e..</text> </g> <g > <title>XaceHook (1 samples, 0.34%)</title><rect x="271.8" y="757" width="4.0" height="15.0" fill="rgb(246,72,41)" rx="2" ry="2" /> <text x="274.77" y="767.5" ></text> </g> <g > <title>irq_exit (1 samples, 0.34%)</title><rect x="62.4" y="69" width="4.0" height="15.0" fill="rgb(226,144,36)" rx="2" ry="2" /> <text x="65.35" y="79.5" ></text> </g> <g > <title>add_wait_queue (1 samples, 0.34%)</title><rect x="807.4" y="677" width="4.0" height="15.0" fill="rgb(214,160,28)" rx="2" ry="2" /> <text x="810.41" y="687.5" ></text> </g> <g > <title>__dentry_kill (1 samples, 0.34%)</title><rect x="1153.8" y="805" width="4.0" height="15.0" fill="rgb(236,134,38)" rx="2" ry="2" /> <text x="1156.75" y="815.5" ></text> </g> <g > <title>drm_ioctl (6 samples, 2.05%)</title><rect x="46.2" y="517" width="24.2" height="15.0" fill="rgb(228,58,35)" rx="2" ry="2" /> <text x="49.25" y="527.5" >d..</text> </g> <g > <title>DeviceEnterLeaveEvent (1 samples, 0.34%)</title><rect x="295.9" y="805" width="4.1" height="15.0" fill="rgb(216,95,5)" rx="2" ry="2" /> <text x="298.94" y="815.5" ></text> </g> <g > <title>unix_poll (2 samples, 0.68%)</title><rect x="146.9" y="725" width="8.1" height="15.0" fill="rgb(234,112,8)" rx="2" ry="2" /> <text x="149.93" y="735.5" ></text> </g> <g > <title>poll (6 samples, 2.05%)</title><rect x="130.8" y="901" width="24.2" height="15.0" fill="rgb(232,110,15)" rx="2" ry="2" /> <text x="133.82" y="911.5" >p..</text> </g> <g > <title>__GI___libc_read (1 samples, 0.34%)</title><rect x="473.1" y="821" width="4.1" height="15.0" fill="rgb(252,177,48)" rx="2" ry="2" /> <text x="476.14" y="831.5" ></text> </g> <g > <title>DeliverEventToInputClients (1 samples, 0.34%)</title><rect x="295.9" y="757" width="4.1" height="15.0" fill="rgb(228,101,21)" rx="2" ry="2" /> <text x="298.94" y="767.5" ></text> </g> <g > <title>[libQt5Gui.so.5.15.2] (1 samples, 0.34%)</title><rect x="650.3" y="501" width="4.1" height="15.0" fill="rgb(248,132,7)" rx="2" ry="2" /> <text x="653.34" y="511.5" ></text> </g> <g > <title>QCoreApplication::notifyInternal2 (6 samples, 2.05%)</title><rect x="606.0" y="645" width="24.2" height="15.0" fill="rgb(254,13,50)" rx="2" ry="2" /> <text x="609.04" y="655.5" >Q..</text> </g> <g > <title>process_one_work (1 samples, 0.34%)</title><rect x="420.8" y="949" width="4.0" height="15.0" fill="rgb(213,150,41)" rx="2" ry="2" /> <text x="423.78" y="959.5" ></text> </g> <g > <title>[libQt5Widgets.so.5.15.2] (1 samples, 0.34%)</title><rect x="747.0" y="725" width="4.0" height="15.0" fill="rgb(239,195,49)" rx="2" ry="2" /> <text x="750.00" y="735.5" ></text> </g> <g > <title>idr_alloc_u32 (1 samples, 0.34%)</title><rect x="279.8" y="229" width="4.1" height="15.0" fill="rgb(232,167,23)" rx="2" ry="2" /> <text x="282.83" y="239.5" ></text> </g> <g > <title>__aarch64_ldadd4_acq_rel (1 samples, 0.34%)</title><rect x="827.5" y="821" width="4.1" height="15.0" fill="rgb(231,192,45)" rx="2" ry="2" /> <text x="830.54" y="831.5" ></text> </g> <g > <title>el0t_64_sync_handler (1 samples, 0.34%)</title><rect x="952.4" y="901" width="4.0" height="15.0" fill="rgb(225,95,0)" rx="2" ry="2" /> <text x="955.39" y="911.5" ></text> </g> <g > <title>sock_def_readable (1 samples, 0.34%)</title><rect x="287.9" y="405" width="4.0" height="15.0" fill="rgb(237,77,0)" rx="2" ry="2" /> <text x="290.88" y="415.5" ></text> </g> <g > <title>hb_ot_substitute_pre (1 samples, 0.34%)</title><rect x="638.3" y="421" width="4.0" height="15.0" fill="rgb(222,108,43)" rx="2" ry="2" /> <text x="641.26" y="431.5" ></text> </g> <g > <title>_raw_spin_unlock_irqrestore (1 samples, 0.34%)</title><rect x="392.6" y="693" width="4.0" height="15.0" fill="rgb(241,198,18)" rx="2" ry="2" /> <text x="395.59" y="703.5" ></text> </g> <g > <title>el0t_64_sync (2 samples, 0.68%)</title><rect x="300.0" y="645" width="8.0" height="15.0" fill="rgb(213,52,40)" rx="2" ry="2" /> <text x="302.97" y="655.5" ></text> </g> <g > <title>unix_stream_recvmsg (3 samples, 1.02%)</title><rect x="324.1" y="709" width="12.1" height="15.0" fill="rgb(237,42,49)" rx="2" ry="2" /> <text x="327.13" y="719.5" ></text> </g> <g > <title>unix_destruct_scm (1 samples, 0.34%)</title><rect x="332.2" y="645" width="4.0" height="15.0" fill="rgb(239,128,19)" rx="2" ry="2" /> <text x="335.18" y="655.5" ></text> </g> <g > <title>wait_for_completion_timeout (1 samples, 0.34%)</title><rect x="66.4" y="261" width="4.0" height="15.0" fill="rgb(254,72,2)" rx="2" ry="2" /> <text x="69.38" y="271.5" ></text> </g> <g > <title>do_el0_svc (2 samples, 0.68%)</title><rect x="839.6" y="869" width="8.1" height="15.0" fill="rgb(234,112,21)" rx="2" ry="2" /> <text x="842.62" y="879.5" ></text> </g> <g > <title>[libQt5Gui.so.5.15.2] (1 samples, 0.34%)</title><rect x="622.2" y="501" width="4.0" height="15.0" fill="rgb(249,128,27)" rx="2" ry="2" /> <text x="625.15" y="511.5" ></text> </g> <g > <title>WriteEventsToClient (1 samples, 0.34%)</title><rect x="283.9" y="741" width="4.0" height="15.0" fill="rgb(240,101,36)" rx="2" ry="2" /> <text x="286.86" y="751.5" ></text> </g> <g > <title>QWidgetPrivate::paintSiblingsRecursive (1 samples, 0.34%)</title><rect x="634.2" y="613" width="4.1" height="15.0" fill="rgb(244,51,3)" rx="2" ry="2" /> <text x="637.23" y="623.5" ></text> </g> <g > <title>g_wakeup_acknowledge (1 samples, 0.34%)</title><rect x="473.1" y="853" width="4.1" height="15.0" fill="rgb(205,212,50)" rx="2" ry="2" /> <text x="476.14" y="863.5" ></text> </g> <g > <title>[libQt5Widgets.so.5.15.2] (2 samples, 0.68%)</title><rect x="940.3" y="709" width="8.1" height="15.0" fill="rgb(209,145,37)" rx="2" ry="2" /> <text x="943.31" y="719.5" ></text> </g> <g > <title>__libc_start_main (90 samples, 30.72%)</title><rect x="473.1" y="981" width="362.5" height="15.0" fill="rgb(235,84,26)" rx="2" ry="2" /> <text x="476.14" y="991.5" >__libc_start_main</text> </g> <g > <title>vfs_read (3 samples, 1.02%)</title><rect x="34.2" y="661" width="12.0" height="15.0" fill="rgb(242,86,49)" rx="2" ry="2" /> <text x="37.16" y="671.5" ></text> </g> <g > <title>el0_svc (1 samples, 0.34%)</title><rect x="791.3" y="645" width="4.0" height="15.0" fill="rgb(207,68,2)" rx="2" ry="2" /> <text x="794.30" y="655.5" ></text> </g> <g > <title>preempt_count_sub (1 samples, 0.34%)</title><rect x="18.1" y="693" width="4.0" height="15.0" fill="rgb(238,19,36)" rx="2" ry="2" /> <text x="21.05" y="703.5" ></text> </g> <g > <title>xf86_crtc_set_cursor_position (1 samples, 0.34%)</title><rect x="167.1" y="709" width="4.0" height="15.0" fill="rgb(246,113,12)" rx="2" ry="2" /> <text x="170.06" y="719.5" ></text> </g> <g > <title>vc4_fb_create (1 samples, 0.34%)</title><rect x="279.8" y="325" width="4.1" height="15.0" fill="rgb(227,143,17)" rx="2" ry="2" /> <text x="282.83" y="335.5" ></text> </g> <g > <title>invoke_syscall (2 samples, 0.68%)</title><rect x="449.0" y="789" width="8.0" height="15.0" fill="rgb(213,195,10)" rx="2" ry="2" /> <text x="451.98" y="799.5" ></text> </g> <g > <title>positionSprite (6 samples, 2.05%)</title><rect x="46.2" y="805" width="24.2" height="15.0" fill="rgb(215,3,5)" rx="2" ry="2" /> <text x="49.25" y="815.5" >p..</text> </g> <g > <title>__ioctl (1 samples, 0.34%)</title><rect x="243.6" y="661" width="4.0" height="15.0" fill="rgb(240,31,35)" rx="2" ry="2" /> <text x="246.58" y="671.5" ></text> </g> <g > <title>g_hash_table_lookup_node (1 samples, 0.34%)</title><rect x="412.7" y="741" width="4.1" height="15.0" fill="rgb(229,102,1)" rx="2" ry="2" /> <text x="415.73" y="751.5" ></text> </g> <g > <title>__GI___writev (1 samples, 0.34%)</title><rect x="283.9" y="693" width="4.0" height="15.0" fill="rgb(238,134,30)" rx="2" ry="2" /> <text x="286.86" y="703.5" ></text> </g> <g > <title>el0t_64_sync (3 samples, 1.02%)</title><rect x="34.2" y="789" width="12.0" height="15.0" fill="rgb(227,107,37)" rx="2" ry="2" /> <text x="37.16" y="799.5" ></text> </g> <g > <title>QWidgetPrivate::paintSiblingsRecursive (6 samples, 2.05%)</title><rect x="606.0" y="693" width="24.2" height="15.0" fill="rgb(254,109,37)" rx="2" ry="2" /> <text x="609.04" y="703.5" >Q..</text> </g> <g > <title>__sched_setaffinity (2 samples, 0.68%)</title><rect x="839.6" y="789" width="8.1" height="15.0" fill="rgb(245,151,8)" rx="2" ry="2" /> <text x="842.62" y="799.5" ></text> </g> <g > <title>[libQt5Gui.so.5.15.2] (1 samples, 0.34%)</title><rect x="432.9" y="949" width="4.0" height="15.0" fill="rgb(235,142,16)" rx="2" ry="2" /> <text x="435.87" y="959.5" ></text> </g> <g > <title>__libc_write (4 samples, 1.37%)</title><rect x="10.0" y="917" width="16.1" height="15.0" fill="rgb(238,116,19)" rx="2" ry="2" /> <text x="13.00" y="927.5" ></text> </g> <g > <title>ChangeToCursor (2 samples, 0.68%)</title><rect x="275.8" y="837" width="8.1" height="15.0" fill="rgb(248,137,34)" rx="2" ry="2" /> <text x="278.80" y="847.5" ></text> </g> <g > <title>el0t_64_sync_handler (9 samples, 3.07%)</title><rect x="376.5" y="869" width="36.2" height="15.0" fill="rgb(205,61,35)" rx="2" ry="2" /> <text x="379.48" y="879.5" >el0..</text> </g> <g > <title>_start (3 samples, 1.02%)</title><rect x="444.9" y="997" width="12.1" height="15.0" fill="rgb(218,157,31)" rx="2" ry="2" /> <text x="447.95" y="1007.5" ></text> </g> <g > <title>v3d_invalidate_caches (1 samples, 0.34%)</title><rect x="1157.8" y="933" width="4.0" height="15.0" fill="rgb(234,163,8)" rx="2" ry="2" /> <text x="1160.78" y="943.5" ></text> </g> <g > <title>shmem_getpage_gfp (1 samples, 0.34%)</title><rect x="255.7" y="197" width="4.0" height="15.0" fill="rgb(209,46,25)" rx="2" ry="2" /> <text x="258.67" y="207.5" ></text> </g> <g > <title>QCoreApplication::notifyInternal2 (1 samples, 0.34%)</title><rect x="440.9" y="789" width="4.0" height="15.0" fill="rgb(237,198,40)" rx="2" ry="2" /> <text x="443.92" y="799.5" ></text> </g> <g > <title>drm_atomic_helper_commit_planes (1 samples, 0.34%)</title><rect x="275.8" y="245" width="4.0" height="15.0" fill="rgb(228,63,13)" rx="2" ry="2" /> <text x="278.80" y="255.5" ></text> </g> <g > <title>_raw_write_unlock_irq (1 samples, 0.34%)</title><rect x="384.5" y="725" width="4.1" height="15.0" fill="rgb(251,163,54)" rx="2" ry="2" /> <text x="387.54" y="735.5" ></text> </g> <g > <title>el0_svc_common.constprop.0 (6 samples, 2.05%)</title><rect x="799.4" y="773" width="24.1" height="15.0" fill="rgb(213,3,8)" rx="2" ry="2" /> <text x="802.35" y="783.5" >e..</text> </g> <g > <title>QGuiApplicationPrivate::processEnterEvent (1 samples, 0.34%)</title><rect x="755.1" y="805" width="4.0" height="15.0" fill="rgb(235,98,7)" rx="2" ry="2" /> <text x="758.05" y="815.5" ></text> </g> <g > <title>ksys_write (1 samples, 0.34%)</title><rect x="791.3" y="565" width="4.0" height="15.0" fill="rgb(233,112,16)" rx="2" ry="2" /> <text x="794.30" y="575.5" ></text> </g> <g > <title>return_address (1 samples, 0.34%)</title><rect x="416.8" y="741" width="4.0" height="15.0" fill="rgb(219,101,14)" rx="2" ry="2" /> <text x="419.76" y="751.5" ></text> </g> <g > <title>__arm64_sys_writev (1 samples, 0.34%)</title><rect x="283.9" y="565" width="4.0" height="15.0" fill="rgb(250,138,50)" rx="2" ry="2" /> <text x="286.86" y="575.5" ></text> </g> <g > <title>walk_stackframe (1 samples, 0.34%)</title><rect x="159.0" y="357" width="4.0" height="15.0" fill="rgb(216,140,24)" rx="2" ry="2" /> <text x="162.01" y="367.5" ></text> </g> <g > <title>el0_svc_common.constprop.0 (1 samples, 0.34%)</title><rect x="948.4" y="773" width="4.0" height="15.0" fill="rgb(252,205,18)" rx="2" ry="2" /> <text x="951.36" y="783.5" ></text> </g> <g > <title>GetPointerEvents (6 samples, 2.05%)</title><rect x="46.2" y="853" width="24.2" height="15.0" fill="rgb(233,13,6)" rx="2" ry="2" /> <text x="49.25" y="863.5" >G..</text> </g> <g > <title>hb_blob_ptr_t<OT::GDEF>::operator* (1 samples, 0.34%)</title><rect x="638.3" y="357" width="4.0" height="15.0" fill="rgb(206,215,10)" rx="2" ry="2" /> <text x="641.26" y="367.5" ></text> </g> <g > <title>WriteEventsToClient (1 samples, 0.34%)</title><rect x="295.9" y="709" width="4.1" height="15.0" fill="rgb(250,24,37)" rx="2" ry="2" /> <text x="298.94" y="719.5" ></text> </g> <g > <title>preempt_count_sub (2 samples, 0.68%)</title><rect x="26.1" y="709" width="8.1" height="15.0" fill="rgb(219,6,27)" rx="2" ry="2" /> <text x="29.11" y="719.5" ></text> </g> <g > <title>QWindowSystemInterface::sendWindowSystemEvents (1 samples, 0.34%)</title><rect x="440.9" y="821" width="4.0" height="15.0" fill="rgb(242,33,10)" rx="2" ry="2" /> <text x="443.92" y="831.5" ></text> </g> <g > <title>remove_wait_queue (1 samples, 0.34%)</title><rect x="811.4" y="693" width="4.1" height="15.0" fill="rgb(238,72,53)" rx="2" ry="2" /> <text x="814.43" y="703.5" ></text> </g> <g > <title>libevdev_next_event (3 samples, 1.02%)</title><rect x="34.2" y="869" width="12.0" height="15.0" fill="rgb(205,8,51)" rx="2" ry="2" /> <text x="37.16" y="879.5" ></text> </g> <g > <title>__wake_up_sync_key (1 samples, 0.34%)</title><rect x="114.7" y="581" width="4.0" height="15.0" fill="rgb(236,91,39)" rx="2" ry="2" /> <text x="117.71" y="591.5" ></text> </g> <g > <title>QFusionStyle::drawComplexControl (1 samples, 0.34%)</title><rect x="634.2" y="501" width="4.1" height="15.0" fill="rgb(215,156,32)" rx="2" ry="2" /> <text x="637.23" y="511.5" ></text> </g> <g > <title>el0_svc (1 samples, 0.34%)</title><rect x="175.1" y="821" width="4.0" height="15.0" fill="rgb(219,224,38)" rx="2" ry="2" /> <text x="178.12" y="831.5" ></text> </g> <g > <title>el0_svc_common.constprop.0 (1 samples, 0.34%)</title><rect x="944.3" y="453" width="4.1" height="15.0" fill="rgb(244,135,13)" rx="2" ry="2" /> <text x="947.33" y="463.5" ></text> </g> <g > <title>do_interrupt_handler (1 samples, 0.34%)</title><rect x="408.7" y="725" width="4.0" height="15.0" fill="rgb(246,18,43)" rx="2" ry="2" /> <text x="411.70" y="735.5" ></text> </g> <g > <title>gic_handle_irq (1 samples, 0.34%)</title><rect x="62.4" y="101" width="4.0" height="15.0" fill="rgb(240,37,42)" rx="2" ry="2" /> <text x="65.35" y="111.5" ></text> </g> <g > <title>do_writev (1 samples, 0.34%)</title><rect x="267.7" y="533" width="4.1" height="15.0" fill="rgb(217,67,36)" rx="2" ry="2" /> <text x="270.75" y="543.5" ></text> </g> <g > <title>__arm64_sys_ppoll (4 samples, 1.37%)</title><rect x="138.9" y="773" width="16.1" height="15.0" fill="rgb(211,118,50)" rx="2" ry="2" /> <text x="141.87" y="783.5" ></text> </g> <g > <title>[libQt5Widgets.so.5.15.2] (1 samples, 0.34%)</title><rect x="626.2" y="485" width="4.0" height="15.0" fill="rgb(239,222,54)" rx="2" ry="2" /> <text x="629.18" y="495.5" ></text> </g> <g > <title>DeliverOneEvent (2 samples, 0.68%)</title><rect x="300.0" y="837" width="8.0" height="15.0" fill="rgb(238,175,34)" rx="2" ry="2" /> <text x="302.97" y="847.5" ></text> </g> <g > <title>GPOSProxy::GPOSProxy (1 samples, 0.34%)</title><rect x="606.0" y="293" width="4.1" height="15.0" fill="rgb(217,187,20)" rx="2" ry="2" /> <text x="609.04" y="303.5" ></text> </g> <g > <title>invoke_syscall (4 samples, 1.37%)</title><rect x="138.9" y="789" width="16.1" height="15.0" fill="rgb(238,222,41)" rx="2" ry="2" /> <text x="141.87" y="799.5" ></text> </g> <g > <title>handle_domain_irq (1 samples, 0.34%)</title><rect x="1121.5" y="805" width="4.1" height="15.0" fill="rgb(218,79,45)" rx="2" ry="2" /> <text x="1124.54" y="815.5" ></text> </g> <g > <title>g_main_dispatch (1 samples, 0.34%)</title><rect x="440.9" y="853" width="4.0" height="15.0" fill="rgb(250,103,7)" rx="2" ry="2" /> <text x="443.92" y="863.5" ></text> </g> <g > <title>el0_svc (1 samples, 0.34%)</title><rect x="948.4" y="805" width="4.0" height="15.0" fill="rgb(250,77,8)" rx="2" ry="2" /> <text x="951.36" y="815.5" ></text> </g> <g > <title>QWindowSystemInterface::sendWindowSystemEvents (8 samples, 2.73%)</title><rect x="755.1" y="821" width="32.2" height="15.0" fill="rgb(239,99,41)" rx="2" ry="2" /> <text x="758.05" y="831.5" >QW..</text> </g> <g > <title>el0t_64_sync (4 samples, 1.37%)</title><rect x="916.1" y="869" width="16.2" height="15.0" fill="rgb(207,33,25)" rx="2" ry="2" /> <text x="919.14" y="879.5" ></text> </g> <g > <title>vc4_plane_set_blank.isra.0 (6 samples, 2.05%)</title><rect x="46.2" y="309" width="24.2" height="15.0" fill="rgb(252,151,18)" rx="2" ry="2" /> <text x="49.25" y="319.5" >v..</text> </g> <g > <title>sched_setaffinity (2 samples, 0.68%)</title><rect x="839.6" y="805" width="8.1" height="15.0" fill="rgb(229,31,25)" rx="2" ry="2" /> <text x="842.62" y="815.5" ></text> </g> <g > <title>el0t_64_sync_handler (1 samples, 0.34%)</title><rect x="1149.7" y="805" width="4.1" height="15.0" fill="rgb(227,79,0)" rx="2" ry="2" /> <text x="1152.73" y="815.5" ></text> </g> <g > <title>__arm64_sys_write (1 samples, 0.34%)</title><rect x="791.3" y="581" width="4.0" height="15.0" fill="rgb(210,86,50)" rx="2" ry="2" /> <text x="794.30" y="591.5" ></text> </g> <g > <title>__libc_recvmsg (1 samples, 0.34%)</title><rect x="444.9" y="757" width="4.1" height="15.0" fill="rgb(206,13,29)" rx="2" ry="2" /> <text x="447.95" y="767.5" ></text> </g> <g > <title>__arm64_sys_writev (1 samples, 0.34%)</title><rect x="944.3" y="421" width="4.1" height="15.0" fill="rgb(237,74,36)" rx="2" ry="2" /> <text x="947.33" y="431.5" ></text> </g> <g > <title>QCoreApplication::notifyInternal2 (1 samples, 0.34%)</title><rect x="755.1" y="789" width="4.0" height="15.0" fill="rgb(208,27,3)" rx="2" ry="2" /> <text x="758.05" y="799.5" ></text> </g> <g > <title>worker_thread (1 samples, 0.34%)</title><rect x="420.8" y="965" width="4.0" height="15.0" fill="rgb(208,139,9)" rx="2" ry="2" /> <text x="423.78" y="975.5" ></text> </g> <g > <title>fpsimd_restore_current_state (2 samples, 0.68%)</title><rect x="90.5" y="853" width="8.1" height="15.0" fill="rgb(244,153,54)" rx="2" ry="2" /> <text x="93.55" y="863.5" ></text> </g> <g > <title>__setplane_atomic (6 samples, 2.05%)</title><rect x="46.2" y="437" width="24.2" height="15.0" fill="rgb(225,209,30)" rx="2" ry="2" /> <text x="49.25" y="447.5" >_..</text> </g> <g > <title>v3d_wait_bo_ioctl (1 samples, 0.34%)</title><rect x="344.3" y="421" width="4.0" height="15.0" fill="rgb(230,66,8)" rx="2" ry="2" /> <text x="347.27" y="431.5" ></text> </g> <g > <title>clk_recalc (1 samples, 0.34%)</title><rect x="960.4" y="821" width="4.1" height="15.0" fill="rgb(210,191,3)" rx="2" ry="2" /> <text x="963.44" y="831.5" ></text> </g> <g > <title>grab_cache_page_write_begin (1 samples, 0.34%)</title><rect x="920.2" y="645" width="4.0" height="15.0" fill="rgb(254,123,21)" rx="2" ry="2" /> <text x="923.17" y="655.5" ></text> </g> <g > <title>QTextLine::draw (1 samples, 0.34%)</title><rect x="606.0" y="517" width="4.1" height="15.0" fill="rgb(210,211,40)" rx="2" ry="2" /> <text x="609.04" y="527.5" ></text> </g> <g > <title>[libQt5Widgets.so.5.15.2] (32 samples, 10.92%)</title><rect x="477.2" y="709" width="128.8" height="15.0" fill="rgb(237,97,22)" rx="2" ry="2" /> <text x="480.17" y="719.5" >[libQt5Widgets.s..</text> </g> <g > <title>__wake_up_common_lock (1 samples, 0.34%)</title><rect x="283.9" y="405" width="4.0" height="15.0" fill="rgb(205,128,8)" rx="2" ry="2" /> <text x="286.86" y="415.5" ></text> </g> <g > <title>v3d_wait_bo_ioctl (1 samples, 0.34%)</title><rect x="243.6" y="709" width="4.0" height="15.0" fill="rgb(233,141,18)" rx="2" ry="2" /> <text x="246.58" y="719.5" ></text> </g> <g > <title>do_epoll_pwait.part.0 (2 samples, 0.68%)</title><rect x="26.1" y="757" width="8.1" height="15.0" fill="rgb(216,177,40)" rx="2" ry="2" /> <text x="29.11" y="767.5" ></text> </g> <g > <title>_xcb_out_flush_to (1 samples, 0.34%)</title><rect x="747.0" y="645" width="4.0" height="15.0" fill="rgb(215,114,5)" rx="2" ry="2" /> <text x="750.00" y="655.5" ></text> </g> <g > <title>__drm_mode_object_add (1 samples, 0.34%)</title><rect x="279.8" y="261" width="4.1" height="15.0" fill="rgb(230,108,36)" rx="2" ry="2" /> <text x="282.83" y="271.5" ></text> </g> <g > <title>do_interrupt_handler (1 samples, 0.34%)</title><rect x="428.8" y="901" width="4.1" height="15.0" fill="rgb(233,74,23)" rx="2" ry="2" /> <text x="431.84" y="911.5" ></text> </g> <g > <title>el0t_64_sync (1 samples, 0.34%)</title><rect x="267.7" y="645" width="4.1" height="15.0" fill="rgb(244,30,19)" rx="2" ry="2" /> <text x="270.75" y="655.5" ></text> </g> <g > <title>QWidget::mapFromGlobal (1 samples, 0.34%)</title><rect x="779.2" y="613" width="4.0" height="15.0" fill="rgb(243,208,48)" rx="2" ry="2" /> <text x="782.22" y="623.5" ></text> </g> <g > <title>usb_hcd_submit_urb (5 samples, 1.71%)</title><rect x="1032.9" y="613" width="20.2" height="15.0" fill="rgb(252,201,7)" rx="2" ry="2" /> <text x="1035.94" y="623.5" ></text> </g> <g > <title>miDoCopy (3 samples, 1.02%)</title><rect x="247.6" y="869" width="12.1" height="15.0" fill="rgb(244,17,4)" rx="2" ry="2" /> <text x="250.61" y="879.5" ></text> </g> <g > <title>el0_svc (7 samples, 2.39%)</title><rect x="799.4" y="805" width="28.1" height="15.0" fill="rgb(222,117,43)" rx="2" ry="2" /> <text x="802.35" y="815.5" >e..</text> </g> <g > <title>_raw_spin_unlock_irqrestore (2 samples, 0.68%)</title><rect x="58.3" y="229" width="8.1" height="15.0" fill="rgb(242,130,47)" rx="2" ry="2" /> <text x="61.33" y="239.5" ></text> </g> <g > <title>el0t_64_sync_handler (1 samples, 0.34%)</title><rect x="1169.9" y="773" width="4.0" height="15.0" fill="rgb(253,183,42)" rx="2" ry="2" /> <text x="1172.86" y="783.5" ></text> </g> <g > <title>perf (24 samples, 8.19%)</title><rect x="835.6" y="1013" width="96.7" height="15.0" fill="rgb(215,91,3)" rx="2" ry="2" /> <text x="838.60" y="1023.5" >perf</text> </g> <g > <title>sock_def_readable (1 samples, 0.34%)</title><rect x="775.2" y="197" width="4.0" height="15.0" fill="rgb(229,158,17)" rx="2" ry="2" /> <text x="778.19" y="207.5" ></text> </g> <g > <title>_raw_spin_unlock_irq (1 samples, 0.34%)</title><rect x="940.3" y="437" width="4.0" height="15.0" fill="rgb(253,186,26)" rx="2" ry="2" /> <text x="943.31" y="447.5" ></text> </g> <g > <title>QApplicationPrivate::notify_helper (27 samples, 9.22%)</title><rect x="638.3" y="693" width="108.7" height="15.0" fill="rgb(234,21,26)" rx="2" ry="2" /> <text x="641.26" y="703.5" >QApplicationP..</text> </g> <g > <title>QCoreApplicationPrivate::sendThroughObjectEventFilters (6 samples, 2.05%)</title><rect x="638.3" y="677" width="24.1" height="15.0" fill="rgb(252,22,37)" rx="2" ry="2" /> <text x="641.26" y="687.5" >Q..</text> </g> <g > <title>mntput (1 samples, 0.34%)</title><rect x="126.8" y="725" width="4.0" height="15.0" fill="rgb(222,185,50)" rx="2" ry="2" /> <text x="129.79" y="735.5" ></text> </g> <g > <title>do_el0_svc (1 samples, 0.34%)</title><rect x="747.0" y="501" width="4.0" height="15.0" fill="rgb(224,105,13)" rx="2" ry="2" /> <text x="750.00" y="511.5" ></text> </g> <g > <title>_glamor_block_handler (2 samples, 0.68%)</title><rect x="336.2" y="885" width="8.1" height="15.0" fill="rgb(228,93,53)" rx="2" ry="2" /> <text x="339.21" y="895.5" ></text> </g> <g > <title>do_iter_readv_writev (1 samples, 0.34%)</title><rect x="283.9" y="501" width="4.0" height="15.0" fill="rgb(213,51,26)" rx="2" ry="2" /> <text x="286.86" y="511.5" ></text> </g> <g > <title>ProcessDeviceEvent (8 samples, 2.73%)</title><rect x="275.8" y="869" width="32.2" height="15.0" fill="rgb(230,136,25)" rx="2" ry="2" /> <text x="278.80" y="879.5" >Pr..</text> </g> <g > <title>st_flush (1 samples, 0.34%)</title><rect x="336.2" y="853" width="4.0" height="15.0" fill="rgb(246,169,4)" rx="2" ry="2" /> <text x="339.21" y="863.5" ></text> </g> <g > <title>drm_ioctl_kernel (6 samples, 2.05%)</title><rect x="46.2" y="501" width="24.2" height="15.0" fill="rgb(228,177,7)" rx="2" ry="2" /> <text x="49.25" y="511.5" >d..</text> </g> <g > <title>skb_release_head_state (1 samples, 0.34%)</title><rect x="1173.9" y="565" width="4.0" height="15.0" fill="rgb(207,222,49)" rx="2" ry="2" /> <text x="1176.89" y="575.5" ></text> </g> <g > <title>__arm64_sys_writev (1 samples, 0.34%)</title><rect x="775.2" y="325" width="4.0" height="15.0" fill="rgb(236,55,47)" rx="2" ry="2" /> <text x="778.19" y="335.5" ></text> </g> <g > <title>xf86CheckMotionEvent4DGA (1 samples, 0.34%)</title><rect x="70.4" y="853" width="4.0" height="15.0" fill="rgb(232,107,44)" rx="2" ry="2" /> <text x="73.41" y="863.5" ></text> </g> <g > <title>[libQt5Gui.so.5.15.2] (1 samples, 0.34%)</title><rect x="432.9" y="981" width="4.0" height="15.0" fill="rgb(227,152,42)" rx="2" ry="2" /> <text x="435.87" y="991.5" ></text> </g> <g > <title>el0_svc (1 samples, 0.34%)</title><rect x="167.1" y="597" width="4.0" height="15.0" fill="rgb(249,43,6)" rx="2" ry="2" /> <text x="170.06" y="607.5" ></text> </g> <g > <title>security_vm_enough_memory_mm (1 samples, 0.34%)</title><rect x="255.7" y="181" width="4.0" height="15.0" fill="rgb(236,101,24)" rx="2" ry="2" /> <text x="258.67" y="191.5" ></text> </g> <g > <title>_raw_spin_unlock_irqrestore (1 samples, 0.34%)</title><rect x="807.4" y="661" width="4.0" height="15.0" fill="rgb(223,174,11)" rx="2" ry="2" /> <text x="810.41" y="671.5" ></text> </g> <g > <title>_raw_spin_unlock_irq (1 samples, 0.34%)</title><rect x="1053.1" y="661" width="4.0" height="15.0" fill="rgb(248,10,16)" rx="2" ry="2" /> <text x="1056.07" y="671.5" ></text> </g> <g > <title>clk_change_rate (1 samples, 0.34%)</title><rect x="960.4" y="837" width="4.1" height="15.0" fill="rgb(246,129,17)" rx="2" ry="2" /> <text x="963.44" y="847.5" ></text> </g> <g > <title>texsubimage_error_check (1 samples, 0.34%)</title><rect x="247.6" y="725" width="4.0" height="15.0" fill="rgb(209,100,29)" rx="2" ry="2" /> <text x="250.61" y="735.5" ></text> </g> <g > <title>balance_dirty_pages_ratelimited (1 samples, 0.34%)</title><rect x="916.1" y="661" width="4.1" height="15.0" fill="rgb(214,184,42)" rx="2" ry="2" /> <text x="919.14" y="671.5" ></text> </g> <g > <title>___sys_recvmsg (1 samples, 0.34%)</title><rect x="1169.9" y="661" width="4.0" height="15.0" fill="rgb(207,175,32)" rx="2" ry="2" /> <text x="1172.86" y="671.5" ></text> </g> <g > <title>u_transfer_helper_transfer_unmap (1 samples, 0.34%)</title><rect x="195.3" y="741" width="4.0" height="15.0" fill="rgb(210,117,25)" rx="2" ry="2" /> <text x="198.26" y="751.5" ></text> </g> <g > <title>v3d_bin (1 samples, 0.34%)</title><rect x="1157.8" y="1013" width="4.0" height="15.0" fill="rgb(254,41,15)" rx="2" ry="2" /> <text x="1160.78" y="1023.5" ></text> </g> <g > <title>drmIoctl (1 samples, 0.34%)</title><rect x="255.7" y="469" width="4.0" height="15.0" fill="rgb(245,175,51)" rx="2" ry="2" /> <text x="258.67" y="479.5" ></text> </g> <g > <title>_mesa_image_offset (1 samples, 0.34%)</title><rect x="247.6" y="677" width="4.0" height="15.0" fill="rgb(230,144,43)" rx="2" ry="2" /> <text x="250.61" y="687.5" ></text> </g> <g > <title>el0_svc_common.constprop.0 (1 samples, 0.34%)</title><rect x="102.6" y="805" width="4.1" height="15.0" fill="rgb(234,93,25)" rx="2" ry="2" /> <text x="105.63" y="815.5" ></text> </g> <g > <title>el0t_64_sync_handler (1 samples, 0.34%)</title><rect x="167.1" y="613" width="4.0" height="15.0" fill="rgb(229,177,40)" rx="2" ry="2" /> <text x="170.06" y="623.5" ></text> </g> </g> </svg>