ALT Linux Bugzilla
– Attachment 10670 Details for
Bug 42604
kernel-image-rpi-def 5.15.33-alt1: отрисовка курсора блокирует весь графический интерфейс
New bug
|
Search
|
[?]
|
Help
Register
|
Log In
[x]
|
Forgot Password
Login:
[x]
|
EN
|
RU
общесистемный профайл на "хорошем" ядре
normal-cursor.svg (text/html), 319.14 KB, created by
Alexey Sheplyakov
on 2022-04-26 19:11:30 MSK
(
hide
)
Description:
общесистемный профайл на "хорошем" ядре
Filename:
MIME Type:
Creator:
Alexey Sheplyakov
Created:
2022-04-26 19:11:30 MSK
Size:
319.14 KB
patch
obsolete
><?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>
<?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>
View Attachment As Raw
Actions:
View
Attachments on
bug 42604
:
10669
| 10670