This contains my bachelors thesis and associated tex files, code snippets and maybe more. Topic: Data Movement in Heterogeneous Memories with Intel Data Streaming Accelerator
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

3037 lines
146 KiB

  1. <?xml version="1.0" standalone="no"?>
  2. <!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
  3. <svg version="1.1" width="1200" height="646" onload="init(evt)" viewBox="0 0 1200 646" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
  4. <!-- Flame graph stack visualization. See https://github.com/brendangregg/FlameGraph for latest version, and http://www.brendangregg.com/flamegraphs.html for examples. -->
  5. <!-- NOTES: -->
  6. <defs>
  7. <linearGradient id="background" y1="0" y2="1" x1="0" x2="0" >
  8. <stop stop-color="#eeeeee" offset="5%" />
  9. <stop stop-color="#eeeeb0" offset="95%" />
  10. </linearGradient>
  11. </defs>
  12. <style type="text/css">
  13. text { font-family:Verdana; font-size:12px; fill:rgb(0,0,0); }
  14. #search, #ignorecase { opacity:0.1; cursor:pointer; }
  15. #search:hover, #search.show, #ignorecase:hover, #ignorecase.show { opacity:1; }
  16. #subtitle { text-anchor:middle; font-color:rgb(160,160,160); }
  17. #title { text-anchor:middle; font-size:17px}
  18. #unzoom { cursor:pointer; }
  19. #frames > *:hover { stroke:black; stroke-width:0.5; cursor:pointer; }
  20. .hide { display:none; }
  21. .parent { opacity:0.5; }
  22. </style>
  23. <script type="text/ecmascript">
  24. <![CDATA[
  25. "use strict";
  26. var details, searchbtn, unzoombtn, matchedtxt, svg, searching, currentSearchTerm, ignorecase, ignorecaseBtn;
  27. function init(evt) {
  28. details = document.getElementById("details").firstChild;
  29. searchbtn = document.getElementById("search");
  30. ignorecaseBtn = document.getElementById("ignorecase");
  31. unzoombtn = document.getElementById("unzoom");
  32. matchedtxt = document.getElementById("matched");
  33. svg = document.getElementsByTagName("svg")[0];
  34. searching = 0;
  35. currentSearchTerm = null;
  36. // use GET parameters to restore a flamegraphs state.
  37. var params = get_params();
  38. if (params.x && params.y)
  39. zoom(find_group(document.querySelector('[x="' + params.x + '"][y="' + params.y + '"]')));
  40. if (params.s) search(params.s);
  41. }
  42. // event listeners
  43. window.addEventListener("click", function(e) {
  44. var target = find_group(e.target);
  45. if (target) {
  46. if (target.nodeName == "a") {
  47. if (e.ctrlKey === false) return;
  48. e.preventDefault();
  49. }
  50. if (target.classList.contains("parent")) unzoom(true);
  51. zoom(target);
  52. if (!document.querySelector('.parent')) {
  53. // we have basically done a clearzoom so clear the url
  54. var params = get_params();
  55. if (params.x) delete params.x;
  56. if (params.y) delete params.y;
  57. history.replaceState(null, null, parse_params(params));
  58. unzoombtn.classList.add("hide");
  59. return;
  60. }
  61. // set parameters for zoom state
  62. var el = target.querySelector("rect");
  63. if (el && el.attributes && el.attributes.y && el.attributes._orig_x) {
  64. var params = get_params()
  65. params.x = el.attributes._orig_x.value;
  66. params.y = el.attributes.y.value;
  67. history.replaceState(null, null, parse_params(params));
  68. }
  69. }
  70. else if (e.target.id == "unzoom") clearzoom();
  71. else if (e.target.id == "search") search_prompt();
  72. else if (e.target.id == "ignorecase") toggle_ignorecase();
  73. }, false)
  74. // mouse-over for info
  75. // show
  76. window.addEventListener("mouseover", function(e) {
  77. var target = find_group(e.target);
  78. if (target) details.nodeValue = "Function: " + g_to_text(target);
  79. }, false)
  80. // clear
  81. window.addEventListener("mouseout", function(e) {
  82. var target = find_group(e.target);
  83. if (target) details.nodeValue = ' ';
  84. }, false)
  85. // ctrl-F for search
  86. // ctrl-I to toggle case-sensitive search
  87. window.addEventListener("keydown",function (e) {
  88. if (e.keyCode === 114 || (e.ctrlKey && e.keyCode === 70)) {
  89. e.preventDefault();
  90. search_prompt();
  91. }
  92. else if (e.ctrlKey && e.keyCode === 73) {
  93. e.preventDefault();
  94. toggle_ignorecase();
  95. }
  96. }, false)
  97. // functions
  98. function get_params() {
  99. var params = {};
  100. var paramsarr = window.location.search.substr(1).split('&');
  101. for (var i = 0; i < paramsarr.length; ++i) {
  102. var tmp = paramsarr[i].split("=");
  103. if (!tmp[0] || !tmp[1]) continue;
  104. params[tmp[0]] = decodeURIComponent(tmp[1]);
  105. }
  106. return params;
  107. }
  108. function parse_params(params) {
  109. var uri = "?";
  110. for (var key in params) {
  111. uri += key + '=' + encodeURIComponent(params[key]) + '&';
  112. }
  113. if (uri.slice(-1) == "&")
  114. uri = uri.substring(0, uri.length - 1);
  115. if (uri == '?')
  116. uri = window.location.href.split('?')[0];
  117. return uri;
  118. }
  119. function find_child(node, selector) {
  120. var children = node.querySelectorAll(selector);
  121. if (children.length) return children[0];
  122. }
  123. function find_group(node) {
  124. var parent = node.parentElement;
  125. if (!parent) return;
  126. if (parent.id == "frames") return node;
  127. return find_group(parent);
  128. }
  129. function orig_save(e, attr, val) {
  130. if (e.attributes["_orig_" + attr] != undefined) return;
  131. if (e.attributes[attr] == undefined) return;
  132. if (val == undefined) val = e.attributes[attr].value;
  133. e.setAttribute("_orig_" + attr, val);
  134. }
  135. function orig_load(e, attr) {
  136. if (e.attributes["_orig_"+attr] == undefined) return;
  137. e.attributes[attr].value = e.attributes["_orig_" + attr].value;
  138. e.removeAttribute("_orig_"+attr);
  139. }
  140. function g_to_text(e) {
  141. var text = find_child(e, "title").firstChild.nodeValue;
  142. return (text)
  143. }
  144. function g_to_func(e) {
  145. var func = g_to_text(e);
  146. // if there's any manipulation we want to do to the function
  147. // name before it's searched, do it here before returning.
  148. return (func);
  149. }
  150. function update_text(e) {
  151. var r = find_child(e, "rect");
  152. var t = find_child(e, "text");
  153. var w = parseFloat(r.attributes.width.value) -3;
  154. var txt = find_child(e, "title").textContent.replace(/\([^(]*\)$/,"");
  155. t.attributes.x.value = parseFloat(r.attributes.x.value) + 3;
  156. // Smaller than this size won't fit anything
  157. if (w < 2 * 12 * 0.59) {
  158. t.textContent = "";
  159. return;
  160. }
  161. t.textContent = txt;
  162. var sl = t.getSubStringLength(0, txt.length);
  163. // check if only whitespace or if we can fit the entire string into width w
  164. if (/^ *$/.test(txt) || sl < w)
  165. return;
  166. // this isn't perfect, but gives a good starting point
  167. // and avoids calling getSubStringLength too often
  168. var start = Math.floor((w/sl) * txt.length);
  169. for (var x = start; x > 0; x = x-2) {
  170. if (t.getSubStringLength(0, x + 2) <= w) {
  171. t.textContent = txt.substring(0, x) + "..";
  172. return;
  173. }
  174. }
  175. t.textContent = "";
  176. }
  177. // zoom
  178. function zoom_reset(e) {
  179. if (e.attributes != undefined) {
  180. orig_load(e, "x");
  181. orig_load(e, "width");
  182. }
  183. if (e.childNodes == undefined) return;
  184. for (var i = 0, c = e.childNodes; i < c.length; i++) {
  185. zoom_reset(c[i]);
  186. }
  187. }
  188. function zoom_child(e, x, ratio) {
  189. if (e.attributes != undefined) {
  190. if (e.attributes.x != undefined) {
  191. orig_save(e, "x");
  192. e.attributes.x.value = (parseFloat(e.attributes.x.value) - x - 10) * ratio + 10;
  193. if (e.tagName == "text")
  194. e.attributes.x.value = find_child(e.parentNode, "rect[x]").attributes.x.value + 3;
  195. }
  196. if (e.attributes.width != undefined) {
  197. orig_save(e, "width");
  198. e.attributes.width.value = parseFloat(e.attributes.width.value) * ratio;
  199. }
  200. }
  201. if (e.childNodes == undefined) return;
  202. for (var i = 0, c = e.childNodes; i < c.length; i++) {
  203. zoom_child(c[i], x - 10, ratio);
  204. }
  205. }
  206. function zoom_parent(e) {
  207. if (e.attributes) {
  208. if (e.attributes.x != undefined) {
  209. orig_save(e, "x");
  210. e.attributes.x.value = 10;
  211. }
  212. if (e.attributes.width != undefined) {
  213. orig_save(e, "width");
  214. e.attributes.width.value = parseInt(svg.width.baseVal.value) - (10 * 2);
  215. }
  216. }
  217. if (e.childNodes == undefined) return;
  218. for (var i = 0, c = e.childNodes; i < c.length; i++) {
  219. zoom_parent(c[i]);
  220. }
  221. }
  222. function zoom(node) {
  223. var attr = find_child(node, "rect").attributes;
  224. var width = parseFloat(attr.width.value);
  225. var xmin = parseFloat(attr.x.value);
  226. var xmax = parseFloat(xmin + width);
  227. var ymin = parseFloat(attr.y.value);
  228. var ratio = (svg.width.baseVal.value - 2 * 10) / width;
  229. // XXX: Workaround for JavaScript float issues (fix me)
  230. var fudge = 0.0001;
  231. unzoombtn.classList.remove("hide");
  232. var el = document.getElementById("frames").children;
  233. for (var i = 0; i < el.length; i++) {
  234. var e = el[i];
  235. var a = find_child(e, "rect").attributes;
  236. var ex = parseFloat(a.x.value);
  237. var ew = parseFloat(a.width.value);
  238. var upstack;
  239. // Is it an ancestor
  240. if (0 == 0) {
  241. upstack = parseFloat(a.y.value) > ymin;
  242. } else {
  243. upstack = parseFloat(a.y.value) < ymin;
  244. }
  245. if (upstack) {
  246. // Direct ancestor
  247. if (ex <= xmin && (ex+ew+fudge) >= xmax) {
  248. e.classList.add("parent");
  249. zoom_parent(e);
  250. update_text(e);
  251. }
  252. // not in current path
  253. else
  254. e.classList.add("hide");
  255. }
  256. // Children maybe
  257. else {
  258. // no common path
  259. if (ex < xmin || ex + fudge >= xmax) {
  260. e.classList.add("hide");
  261. }
  262. else {
  263. zoom_child(e, xmin, ratio);
  264. update_text(e);
  265. }
  266. }
  267. }
  268. search();
  269. }
  270. function unzoom(dont_update_text) {
  271. unzoombtn.classList.add("hide");
  272. var el = document.getElementById("frames").children;
  273. for(var i = 0; i < el.length; i++) {
  274. el[i].classList.remove("parent");
  275. el[i].classList.remove("hide");
  276. zoom_reset(el[i]);
  277. if(!dont_update_text) update_text(el[i]);
  278. }
  279. search();
  280. }
  281. function clearzoom() {
  282. unzoom();
  283. // remove zoom state
  284. var params = get_params();
  285. if (params.x) delete params.x;
  286. if (params.y) delete params.y;
  287. history.replaceState(null, null, parse_params(params));
  288. }
  289. // search
  290. function toggle_ignorecase() {
  291. ignorecase = !ignorecase;
  292. if (ignorecase) {
  293. ignorecaseBtn.classList.add("show");
  294. } else {
  295. ignorecaseBtn.classList.remove("show");
  296. }
  297. reset_search();
  298. search();
  299. }
  300. function reset_search() {
  301. var el = document.querySelectorAll("#frames rect");
  302. for (var i = 0; i < el.length; i++) {
  303. orig_load(el[i], "fill")
  304. }
  305. var params = get_params();
  306. delete params.s;
  307. history.replaceState(null, null, parse_params(params));
  308. }
  309. function search_prompt() {
  310. if (!searching) {
  311. var term = prompt("Enter a search term (regexp " +
  312. "allowed, eg: ^ext4_)"
  313. + (ignorecase ? ", ignoring case" : "")
  314. + "\nPress Ctrl-i to toggle case sensitivity", "");
  315. if (term != null) search(term);
  316. } else {
  317. reset_search();
  318. searching = 0;
  319. currentSearchTerm = null;
  320. searchbtn.classList.remove("show");
  321. searchbtn.firstChild.nodeValue = "Search"
  322. matchedtxt.classList.add("hide");
  323. matchedtxt.firstChild.nodeValue = ""
  324. }
  325. }
  326. function search(term) {
  327. if (term) currentSearchTerm = term;
  328. var re = new RegExp(currentSearchTerm, ignorecase ? 'i' : '');
  329. var el = document.getElementById("frames").children;
  330. var matches = new Object();
  331. var maxwidth = 0;
  332. for (var i = 0; i < el.length; i++) {
  333. var e = el[i];
  334. var func = g_to_func(e);
  335. var rect = find_child(e, "rect");
  336. if (func == null || rect == null)
  337. continue;
  338. // Save max width. Only works as we have a root frame
  339. var w = parseFloat(rect.attributes.width.value);
  340. if (w > maxwidth)
  341. maxwidth = w;
  342. if (func.match(re)) {
  343. // highlight
  344. var x = parseFloat(rect.attributes.x.value);
  345. orig_save(rect, "fill");
  346. rect.attributes.fill.value = "rgb(230,0,230)";
  347. // remember matches
  348. if (matches[x] == undefined) {
  349. matches[x] = w;
  350. } else {
  351. if (w > matches[x]) {
  352. // overwrite with parent
  353. matches[x] = w;
  354. }
  355. }
  356. searching = 1;
  357. }
  358. }
  359. if (!searching)
  360. return;
  361. var params = get_params();
  362. params.s = currentSearchTerm;
  363. history.replaceState(null, null, parse_params(params));
  364. searchbtn.classList.add("show");
  365. searchbtn.firstChild.nodeValue = "Reset Search";
  366. // calculate percent matched, excluding vertical overlap
  367. var count = 0;
  368. var lastx = -1;
  369. var lastw = 0;
  370. var keys = Array();
  371. for (k in matches) {
  372. if (matches.hasOwnProperty(k))
  373. keys.push(k);
  374. }
  375. // sort the matched frames by their x location
  376. // ascending, then width descending
  377. keys.sort(function(a, b){
  378. return a - b;
  379. });
  380. // Step through frames saving only the biggest bottom-up frames
  381. // thanks to the sort order. This relies on the tree property
  382. // where children are always smaller than their parents.
  383. var fudge = 0.0001; // JavaScript floating point
  384. for (var k in keys) {
  385. var x = parseFloat(keys[k]);
  386. var w = matches[keys[k]];
  387. if (x >= lastx + lastw - fudge) {
  388. count += w;
  389. lastx = x;
  390. lastw = w;
  391. }
  392. }
  393. // display matched percent
  394. matchedtxt.classList.remove("hide");
  395. var pct = 100 * count / maxwidth;
  396. if (pct != 100) pct = pct.toFixed(1)
  397. matchedtxt.firstChild.nodeValue = "Matched: " + pct + "%";
  398. }
  399. ]]>
  400. </script>
  401. <rect x="0.0" y="0" width="1200.0" height="646.0" fill="url(#background)" />
  402. <text id="title" x="600.00" y="24" >Flame Graph</text>
  403. <text id="details" x="10.00" y="629" > </text>
  404. <text id="unzoom" x="10.00" y="24" class="hide">Reset Zoom</text>
  405. <text id="search" x="1090.00" y="24" >Search</text>
  406. <text id="ignorecase" x="1174.00" y="24" >ic</text>
  407. <text id="matched" x="1090.00" y="629" > </text>
  408. <g id="frames">
  409. <g >
  410. <title>__count_memcg_events (3,821,882 samples, 0.02%)</title><rect x="1131.4" y="373" width="0.2" height="15.0" fill="rgb(250,211,50)" rx="2" ry="2" />
  411. <text x="1134.36" y="383.5" ></text>
  412. </g>
  413. <g >
  414. <title>update_process_times (5,146,731 samples, 0.03%)</title><rect x="791.5" y="341" width="0.4" height="15.0" fill="rgb(250,209,50)" rx="2" ry="2" />
  415. <text x="794.49" y="351.5" ></text>
  416. </g>
  417. <g >
  418. <title>__sysvec_apic_timer_interrupt (7,884,915 samples, 0.05%)</title><rect x="941.9" y="453" width="0.6" height="15.0" fill="rgb(242,173,41)" rx="2" ry="2" />
  419. <text x="944.94" y="463.5" ></text>
  420. </g>
  421. <g >
  422. <title>dml::core::hardware_device::submit (12,186,558 samples, 0.07%)</title><rect x="1146.7" y="389" width="0.9" height="15.0" fill="rgb(249,202,48)" rx="2" ry="2" />
  423. <text x="1149.73" y="399.5" ></text>
  424. </g>
  425. <g >
  426. <title>unmap_page_range (12,974,723 samples, 0.08%)</title><rect x="29.9" y="197" width="0.9" height="15.0" fill="rgb(206,5,1)" rx="2" ry="2" />
  427. <text x="32.87" y="207.5" ></text>
  428. </g>
  429. <g >
  430. <title>__mem_cgroup_charge (12,102,933 samples, 0.07%)</title><rect x="948.4" y="357" width="0.9" height="15.0" fill="rgb(218,60,14)" rx="2" ry="2" />
  431. <text x="951.45" y="367.5" ></text>
  432. </g>
  433. <g >
  434. <title>__strstr_avx512 (2,478,575 samples, 0.02%)</title><rect x="1143.4" y="437" width="0.1" height="15.0" fill="rgb(219,65,15)" rx="2" ry="2" />
  435. <text x="1146.35" y="447.5" ></text>
  436. </g>
  437. <g >
  438. <title>Aggregation&lt;unsigned long, Sum, (2,644,773,911 samples, 16.19%)</title><rect x="629.1" y="501" width="191.1" height="15.0" fill="rgb(251,215,51)" rx="2" ry="2" />
  439. <text x="632.14" y="511.5" >Aggregation&lt;unsigned lon..</text>
  440. </g>
  441. <g >
  442. <title>unsigned long std::uniform_int_distribution&lt;unsigned long&gt;::operator (571,144,167 samples, 3.50%)</title><rect x="1148.7" y="565" width="41.3" height="15.0" fill="rgb(252,216,51)" rx="2" ry="2" />
  443. <text x="1151.75" y="575.5" >uns..</text>
  444. </g>
  445. <g >
  446. <title>perf_event_mmap_output (1,530,993 samples, 0.01%)</title><rect x="1136.4" y="277" width="0.1" height="15.0" fill="rgb(214,45,10)" rx="2" ry="2" />
  447. <text x="1139.35" y="287.5" ></text>
  448. </g>
  449. <g >
  450. <title>exc_page_fault (1,830,044,679 samples, 11.20%)</title><rect x="303.2" y="469" width="132.2" height="15.0" fill="rgb(212,35,8)" rx="2" ry="2" />
  451. <text x="306.21" y="479.5" >exc_page_fault</text>
  452. </g>
  453. <g >
  454. <title>sysmalloc (21,283,512 samples, 0.13%)</title><rect x="1138.3" y="325" width="1.5" height="15.0" fill="rgb(213,38,9)" rx="2" ry="2" />
  455. <text x="1141.27" y="335.5" ></text>
  456. </g>
  457. <g >
  458. <title>free_unref_page_prepare (1,730,235 samples, 0.01%)</title><rect x="30.4" y="149" width="0.1" height="15.0" fill="rgb(238,155,37)" rx="2" ry="2" />
  459. <text x="33.37" y="159.5" ></text>
  460. </g>
  461. <g >
  462. <title>kmem_cache_alloc (1,721,694 samples, 0.01%)</title><rect x="1142.7" y="293" width="0.1" height="15.0" fill="rgb(225,95,22)" rx="2" ry="2" />
  463. <text x="1145.72" y="303.5" ></text>
  464. </g>
  465. <g >
  466. <title>accfg_get_param_long (1,490,139 samples, 0.01%)</title><rect x="10.3" y="469" width="0.1" height="15.0" fill="rgb(217,57,13)" rx="2" ry="2" />
  467. <text x="13.31" y="479.5" ></text>
  468. </g>
  469. <g >
  470. <title>std::allocator&lt;dml::detail::ml::utils::structure_from&lt;dml::detail::descriptor, dml::detail::completion_record&gt; &gt;::allocate (44,228,686 samples, 0.27%)</title><rect x="1143.5" y="341" width="3.2" height="15.0" fill="rgb(221,76,18)" rx="2" ry="2" />
  471. <text x="1146.53" y="351.5" ></text>
  472. </g>
  473. <g >
  474. <title>folio_add_new_anon_rmap (3,195,706 samples, 0.02%)</title><rect x="1011.6" y="357" width="0.2" height="15.0" fill="rgb(233,133,31)" rx="2" ry="2" />
  475. <text x="1014.56" y="367.5" ></text>
  476. </g>
  477. <g >
  478. <title>vm_area_alloc (3,054,209 samples, 0.02%)</title><rect x="1136.5" y="325" width="0.2" height="15.0" fill="rgb(249,203,48)" rx="2" ry="2" />
  479. <text x="1139.46" y="335.5" ></text>
  480. </g>
  481. <g >
  482. <title>update_process_times (2,170,601 samples, 0.01%)</title><rect x="819.4" y="341" width="0.2" height="15.0" fill="rgb(250,209,50)" rx="2" ry="2" />
  483. <text x="822.45" y="351.5" ></text>
  484. </g>
  485. <g >
  486. <title>__x64_sys_munmap (1,728,623 samples, 0.01%)</title><rect x="10.5" y="421" width="0.1" height="15.0" fill="rgb(206,7,1)" rx="2" ry="2" />
  487. <text x="13.51" y="431.5" ></text>
  488. </g>
  489. <g >
  490. <title>page_counter_try_charge (2,596,328 samples, 0.02%)</title><rect x="303.6" y="341" width="0.2" height="15.0" fill="rgb(233,132,31)" rx="2" ry="2" />
  491. <text x="306.58" y="351.5" ></text>
  492. </g>
  493. <g >
  494. <title>vma_alloc_folio (12,924,242 samples, 0.08%)</title><rect x="950.2" y="357" width="0.9" height="15.0" fill="rgb(245,187,44)" rx="2" ry="2" />
  495. <text x="953.20" y="367.5" ></text>
  496. </g>
  497. <g >
  498. <title>auto dml::detail::submit&lt;dml::hardware, dml::mem_copy_operation, dml::execution_interface&lt;dml::hardware, std::allocator&lt;unsigned char&gt; &gt;, dml::submit&lt;dml::hardware, dml::execution_interface&lt;dml::hardware, std::allocator&lt;unsigned char&gt; &gt; &gt; (57,276,083 samples, 0.35%)</title><rect x="1143.5" y="437" width="4.2" height="15.0" fill="rgb(216,53,12)" rx="2" ry="2" />
  499. <text x="1146.53" y="447.5" ></text>
  500. </g>
  501. <g >
  502. <title>std::thread::thread&lt;void (3,409,299 samples, 0.02%)</title><rect x="31.0" y="437" width="0.2" height="15.0" fill="rgb(213,38,9)" rx="2" ry="2" />
  503. <text x="33.99" y="447.5" ></text>
  504. </g>
  505. <g >
  506. <title>ksys_read (1,524,427 samples, 0.01%)</title><rect x="1147.1" y="133" width="0.1" height="15.0" fill="rgb(229,113,27)" rx="2" ry="2" />
  507. <text x="1150.13" y="143.5" ></text>
  508. </g>
  509. <g >
  510. <title>all (16,337,436,059 samples, 100%)</title><rect x="10.0" y="597" width="1180.0" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
  511. <text x="13.00" y="607.5" ></text>
  512. </g>
  513. <g >
  514. <title>perf_adjust_freq_unthr_context (5,492,973 samples, 0.03%)</title><rect x="819.7" y="325" width="0.4" height="15.0" fill="rgb(236,146,35)" rx="2" ry="2" />
  515. <text x="822.68" y="335.5" ></text>
  516. </g>
  517. <g >
  518. <title>unmap_vmas (1,728,977 samples, 0.01%)</title><rect x="11.9" y="373" width="0.1" height="15.0" fill="rgb(243,176,42)" rx="2" ry="2" />
  519. <text x="14.87" y="383.5" ></text>
  520. </g>
  521. <g >
  522. <title>change_protection (19,560,452 samples, 0.12%)</title><rect x="1138.3" y="197" width="1.4" height="15.0" fill="rgb(209,22,5)" rx="2" ry="2" />
  523. <text x="1141.33" y="207.5" ></text>
  524. </g>
  525. <g >
  526. <title>__folio_alloc (1,479,835,396 samples, 9.06%)</title><rect x="328.5" y="373" width="106.9" height="15.0" fill="rgb(224,91,21)" rx="2" ry="2" />
  527. <text x="331.50" y="383.5" >__folio_alloc</text>
  528. </g>
  529. <g >
  530. <title>__x64_sys_mprotect (20,421,763 samples, 0.12%)</title><rect x="1138.3" y="245" width="1.5" height="15.0" fill="rgb(209,21,5)" rx="2" ry="2" />
  531. <text x="1141.33" y="255.5" ></text>
  532. </g>
  533. <g >
  534. <title>perf_adjust_freq_unthr_context (1,541,693 samples, 0.01%)</title><rect x="1011.0" y="165" width="0.1" height="15.0" fill="rgb(236,146,35)" rx="2" ry="2" />
  535. <text x="1014.00" y="175.5" ></text>
  536. </g>
  537. <g >
  538. <title>path_openat (11,335,071 samples, 0.07%)</title><rect x="1141.7" y="293" width="0.9" height="15.0" fill="rgb(249,202,48)" rx="2" ry="2" />
  539. <text x="1144.74" y="303.5" ></text>
  540. </g>
  541. <g >
  542. <title>__GI___fstatat64 (2,319,458 samples, 0.01%)</title><rect x="1138.0" y="357" width="0.2" height="15.0" fill="rgb(227,101,24)" rx="2" ry="2" />
  543. <text x="1140.99" y="367.5" ></text>
  544. </g>
  545. <g >
  546. <title>perf_event_task_tick (1,626,903 samples, 0.01%)</title><rect x="819.5" y="309" width="0.1" height="15.0" fill="rgb(205,3,0)" rx="2" ry="2" />
  547. <text x="822.49" y="319.5" ></text>
  548. </g>
  549. <g >
  550. <title>irqentry_exit_to_user_mode (1,731,095 samples, 0.01%)</title><rect x="270.6" y="469" width="0.1" height="15.0" fill="rgb(254,229,54)" rx="2" ry="2" />
  551. <text x="273.56" y="479.5" ></text>
  552. </g>
  553. <g >
  554. <title>node_read_meminfo (14,183,508 samples, 0.09%)</title><rect x="1140.3" y="261" width="1.1" height="15.0" fill="rgb(223,83,19)" rx="2" ry="2" />
  555. <text x="1143.34" y="271.5" ></text>
  556. </g>
  557. <g >
  558. <title>openat (3,078,371 samples, 0.02%)</title><rect x="1146.9" y="213" width="0.2" height="15.0" fill="rgb(233,133,31)" rx="2" ry="2" />
  559. <text x="1149.91" y="223.5" ></text>
  560. </g>
  561. <g >
  562. <title>asm_sysvec_apic_timer_interrupt (4,508,335 samples, 0.03%)</title><rect x="270.6" y="485" width="0.3" height="15.0" fill="rgb(232,127,30)" rx="2" ry="2" />
  563. <text x="273.56" y="495.5" ></text>
  564. </g>
  565. <g >
  566. <title>try_charge_memcg (4,050,786 samples, 0.02%)</title><rect x="951.3" y="325" width="0.3" height="15.0" fill="rgb(210,27,6)" rx="2" ry="2" />
  567. <text x="954.31" y="335.5" ></text>
  568. </g>
  569. <g >
  570. <title>tick_sched_timer (7,126,171 samples, 0.04%)</title><rect x="942.0" y="405" width="0.5" height="15.0" fill="rgb(254,227,54)" rx="2" ry="2" />
  571. <text x="944.99" y="415.5" ></text>
  572. </g>
  573. <g >
  574. <title>free_unref_page_list (6,056,971 samples, 0.04%)</title><rect x="23.4" y="165" width="0.5" height="15.0" fill="rgb(221,77,18)" rx="2" ry="2" />
  575. <text x="26.43" y="175.5" ></text>
  576. </g>
  577. <g >
  578. <title>exit_to_user_mode_prepare (2,049,407 samples, 0.01%)</title><rect x="1132.0" y="421" width="0.1" height="15.0" fill="rgb(228,108,25)" rx="2" ry="2" />
  579. <text x="1134.96" y="431.5" ></text>
  580. </g>
  581. <g >
  582. <title>folio_add_lru (6,122,334 samples, 0.04%)</title><rect x="1011.1" y="357" width="0.5" height="15.0" fill="rgb(208,17,4)" rx="2" ry="2" />
  583. <text x="1014.11" y="367.5" ></text>
  584. </g>
  585. <g >
  586. <title>asm_sysvec_apic_timer_interrupt (5,156,974 samples, 0.03%)</title><rect x="791.5" y="453" width="0.4" height="15.0" fill="rgb(232,127,30)" rx="2" ry="2" />
  587. <text x="794.49" y="463.5" ></text>
  588. </g>
  589. <g >
  590. <title>folio_add_new_anon_rmap (3,082,256 samples, 0.02%)</title><rect x="949.9" y="357" width="0.2" height="15.0" fill="rgb(233,133,31)" rx="2" ry="2" />
  591. <text x="952.89" y="367.5" ></text>
  592. </g>
  593. <g >
  594. <title>_mm512_mask_add_epi64 (757,239,970 samples, 4.63%)</title><rect x="737.2" y="469" width="54.7" height="15.0" fill="rgb(246,189,45)" rx="2" ry="2" />
  595. <text x="740.17" y="479.5" >_mm51..</text>
  596. </g>
  597. <g >
  598. <title>exit_to_user_mode_prepare (5,918,508 samples, 0.04%)</title><rect x="1137.5" y="341" width="0.4" height="15.0" fill="rgb(228,108,25)" rx="2" ry="2" />
  599. <text x="1140.51" y="351.5" ></text>
  600. </g>
  601. <g >
  602. <title>__rmqueue_pcplist (2,876,947 samples, 0.02%)</title><rect x="950.6" y="293" width="0.2" height="15.0" fill="rgb(230,118,28)" rx="2" ry="2" />
  603. <text x="953.58" y="303.5" ></text>
  604. </g>
  605. <g >
  606. <title>std::thread&amp; std::vector&lt;std::thread, std::allocator&lt;std::thread&gt; &gt;::emplace_back&lt;void (3,409,299 samples, 0.02%)</title><rect x="31.0" y="501" width="0.2" height="15.0" fill="rgb(238,156,37)" rx="2" ry="2" />
  607. <text x="33.99" y="511.5" ></text>
  608. </g>
  609. <g >
  610. <title>allocate_stack (3,409,299 samples, 0.02%)</title><rect x="31.0" y="389" width="0.2" height="15.0" fill="rgb(243,176,42)" rx="2" ry="2" />
  611. <text x="33.99" y="399.5" ></text>
  612. </g>
  613. <g >
  614. <title>qi_flush_dev_iotlb_pasid (8,586,262 samples, 0.05%)</title><rect x="1138.3" y="149" width="0.7" height="15.0" fill="rgb(220,69,16)" rx="2" ry="2" />
  615. <text x="1141.33" y="159.5" ></text>
  616. </g>
  617. <g >
  618. <title>update_process_times (2,777,240 samples, 0.02%)</title><rect x="270.7" y="373" width="0.2" height="15.0" fill="rgb(250,209,50)" rx="2" ry="2" />
  619. <text x="273.68" y="383.5" ></text>
  620. </g>
  621. <g >
  622. <title>tick_sched_timer (1,460,612 samples, 0.01%)</title><rect x="1131.1" y="197" width="0.1" height="15.0" fill="rgb(254,227,54)" rx="2" ry="2" />
  623. <text x="1134.10" y="207.5" ></text>
  624. </g>
  625. <g >
  626. <title>dsacache::CacheData::WaitOnCompletion (1,883,293 samples, 0.01%)</title><rect x="821.2" y="501" width="0.1" height="15.0" fill="rgb(234,134,32)" rx="2" ry="2" />
  627. <text x="824.17" y="511.5" ></text>
  628. </g>
  629. <g >
  630. <title>allocate_fake_cpuc (3,459,982 samples, 0.02%)</title><rect x="628.7" y="373" width="0.2" height="15.0" fill="rgb(241,168,40)" rx="2" ry="2" />
  631. <text x="631.70" y="383.5" ></text>
  632. </g>
  633. <g >
  634. <title>__hrtimer_run_queues (7,126,171 samples, 0.04%)</title><rect x="942.0" y="421" width="0.5" height="15.0" fill="rgb(237,150,35)" rx="2" ry="2" />
  635. <text x="944.99" y="431.5" ></text>
  636. </g>
  637. <g >
  638. <title>internal_get_user_pages_fast (2,228,742 samples, 0.01%)</title><rect x="943.0" y="389" width="0.1" height="15.0" fill="rgb(253,223,53)" rx="2" ry="2" />
  639. <text x="945.98" y="399.5" ></text>
  640. </g>
  641. <g >
  642. <title>perf_event_task_tick (5,146,731 samples, 0.03%)</title><rect x="791.5" y="309" width="0.4" height="15.0" fill="rgb(205,3,0)" rx="2" ry="2" />
  643. <text x="794.49" y="319.5" ></text>
  644. </g>
  645. <g >
  646. <title>kmalloc_node_trace (1,729,995 samples, 0.01%)</title><rect x="628.7" y="341" width="0.1" height="15.0" fill="rgb(231,123,29)" rx="2" ry="2" />
  647. <text x="631.70" y="351.5" ></text>
  648. </g>
  649. <g >
  650. <title>__x64_sys_madvise (9,653,225 samples, 0.06%)</title><rect x="1148.0" y="469" width="0.7" height="15.0" fill="rgb(218,63,15)" rx="2" ry="2" />
  651. <text x="1151.00" y="479.5" ></text>
  652. </g>
  653. <g >
  654. <title>lru_add_fn (2,023,224 samples, 0.01%)</title><rect x="1011.4" y="325" width="0.2" height="15.0" fill="rgb(208,14,3)" rx="2" ry="2" />
  655. <text x="1014.41" y="335.5" ></text>
  656. </g>
  657. <g >
  658. <title>__sysfs_device_parse (1,490,139 samples, 0.01%)</title><rect x="10.3" y="501" width="0.1" height="15.0" fill="rgb(226,99,23)" rx="2" ry="2" />
  659. <text x="13.31" y="511.5" ></text>
  660. </g>
  661. <g >
  662. <title>qi_submit_sync (32,864,156 samples, 0.20%)</title><rect x="12.5" y="149" width="2.4" height="15.0" fill="rgb(239,159,38)" rx="2" ry="2" />
  663. <text x="15.50" y="159.5" ></text>
  664. </g>
  665. <g >
  666. <title>__x64_sys_get_mempolicy (4,556,948 samples, 0.03%)</title><rect x="942.8" y="421" width="0.3" height="15.0" fill="rgb(252,217,51)" rx="2" ry="2" />
  667. <text x="945.81" y="431.5" ></text>
  668. </g>
  669. <g >
  670. <title>qi_submit_sync (42,381,487 samples, 0.26%)</title><rect x="26.8" y="149" width="3.1" height="15.0" fill="rgb(239,159,38)" rx="2" ry="2" />
  671. <text x="29.81" y="159.5" ></text>
  672. </g>
  673. <g >
  674. <title>__GI___close_nocancel (6,690,044 samples, 0.04%)</title><rect x="1137.4" y="405" width="0.5" height="15.0" fill="rgb(207,11,2)" rx="2" ry="2" />
  675. <text x="1140.45" y="415.5" ></text>
  676. </g>
  677. <g >
  678. <title>do_syscall_64 (38,464,959 samples, 0.24%)</title><rect x="1143.9" y="181" width="2.8" height="15.0" fill="rgb(209,20,4)" rx="2" ry="2" />
  679. <text x="1146.95" y="191.5" ></text>
  680. </g>
  681. <g >
  682. <title>vma_alloc_folio (3,430,412 samples, 0.02%)</title><rect x="941.6" y="389" width="0.2" height="15.0" fill="rgb(245,187,44)" rx="2" ry="2" />
  683. <text x="944.59" y="399.5" ></text>
  684. </g>
  685. <g >
  686. <title>get_page_from_freelist (1,715,406 samples, 0.01%)</title><rect x="1012.5" y="325" width="0.1" height="15.0" fill="rgb(252,218,52)" rx="2" ry="2" />
  687. <text x="1015.49" y="335.5" ></text>
  688. </g>
  689. <g >
  690. <title>void std::vector&lt;int, std::allocator&lt;int&gt; &gt;::_M_range_initialize&lt;int const*&gt; (3,431,863 samples, 0.02%)</title><rect x="943.2" y="437" width="0.3" height="15.0" fill="rgb(231,123,29)" rx="2" ry="2" />
  691. <text x="946.24" y="447.5" ></text>
  692. </g>
  693. <g >
  694. <title>vma_prepare (2,582,768 samples, 0.02%)</title><rect x="1136.9" y="309" width="0.2" height="15.0" fill="rgb(205,2,0)" rx="2" ry="2" />
  695. <text x="1139.87" y="319.5" ></text>
  696. </g>
  697. <g >
  698. <title>__alloc_pages (7,939,545 samples, 0.05%)</title><rect x="1012.0" y="341" width="0.6" height="15.0" fill="rgb(233,129,30)" rx="2" ry="2" />
  699. <text x="1015.04" y="351.5" ></text>
  700. </g>
  701. <g >
  702. <title>irqentry_exit_to_user_mode (2,049,407 samples, 0.01%)</title><rect x="1132.0" y="437" width="0.1" height="15.0" fill="rgb(254,229,54)" rx="2" ry="2" />
  703. <text x="1134.96" y="447.5" ></text>
  704. </g>
  705. <g >
  706. <title>vscnprintf (13,571,657 samples, 0.08%)</title><rect x="1140.4" y="229" width="1.0" height="15.0" fill="rgb(251,212,50)" rx="2" ry="2" />
  707. <text x="1143.39" y="239.5" ></text>
  708. </g>
  709. <g >
  710. <title>__GI___mmap64 (50,596,001 samples, 0.31%)</title><rect x="1133.1" y="421" width="3.6" height="15.0" fill="rgb(221,77,18)" rx="2" ry="2" />
  711. <text x="1136.09" y="431.5" ></text>
  712. </g>
  713. <g >
  714. <title>hrtimer_interrupt (7,666,902 samples, 0.05%)</title><rect x="819.6" y="437" width="0.6" height="15.0" fill="rgb(228,109,26)" rx="2" ry="2" />
  715. <text x="822.61" y="447.5" ></text>
  716. </g>
  717. <g >
  718. <title>__alloc_pages (1,479,835,396 samples, 9.06%)</title><rect x="328.5" y="357" width="106.9" height="15.0" fill="rgb(233,129,30)" rx="2" ry="2" />
  719. <text x="331.50" y="367.5" >__alloc_pages</text>
  720. </g>
  721. <g >
  722. <title>pte_alloc_one (6,060,859 samples, 0.04%)</title><rect x="328.1" y="389" width="0.4" height="15.0" fill="rgb(252,217,51)" rx="2" ry="2" />
  723. <text x="331.07" y="399.5" ></text>
  724. </g>
  725. <g >
  726. <title>get_page_from_freelist (1,694,345 samples, 0.01%)</title><rect x="31.1" y="229" width="0.1" height="15.0" fill="rgb(252,218,52)" rx="2" ry="2" />
  727. <text x="34.05" y="239.5" ></text>
  728. </g>
  729. <g >
  730. <title>QDPBench (16,337,436,058 samples, 100.00%)</title><rect x="10.0" y="581" width="1180.0" height="15.0" fill="rgb(233,131,31)" rx="2" ry="2" />
  731. <text x="13.00" y="591.5" >QDPBench</text>
  732. </g>
  733. <g >
  734. <title>charge_memcg (4,050,786 samples, 0.02%)</title><rect x="951.3" y="341" width="0.3" height="15.0" fill="rgb(242,170,40)" rx="2" ry="2" />
  735. <text x="954.31" y="351.5" ></text>
  736. </g>
  737. <g >
  738. <title>__libc_start_main_impl (8,541,764,204 samples, 52.28%)</title><rect x="10.5" y="549" width="617.0" height="15.0" fill="rgb(218,63,15)" rx="2" ry="2" />
  739. <text x="13.51" y="559.5" >__libc_start_main_impl</text>
  740. </g>
  741. <g >
  742. <title>__GI__IO_doallocbuf (25,072,445 samples, 0.15%)</title><rect x="1138.0" y="389" width="1.8" height="15.0" fill="rgb(243,177,42)" rx="2" ry="2" />
  743. <text x="1140.99" y="399.5" ></text>
  744. </g>
  745. <g >
  746. <title>__kmalloc_node (2,093,173 samples, 0.01%)</title><rect x="1140.0" y="293" width="0.2" height="15.0" fill="rgb(222,80,19)" rx="2" ry="2" />
  747. <text x="1143.02" y="303.5" ></text>
  748. </g>
  749. <g >
  750. <title>charge_memcg (1,722,903 samples, 0.01%)</title><rect x="1143.5" y="133" width="0.2" height="15.0" fill="rgb(242,170,40)" rx="2" ry="2" />
  751. <text x="1146.53" y="143.5" ></text>
  752. </g>
  753. <g >
  754. <title>std::_Hashtable&lt;unsigned char*, std::pair&lt;unsigned char* const, dsacache::CacheData&gt;, std::allocator&lt;std::pair&lt;unsigned char* const, dsacache::CacheData&gt; &gt;, std::__detail::_Select1st, std::equal_to&lt;unsigned char*&gt;, std::hash&lt;unsigned char*&gt;, std::__detail::_Mod_range_hashing, std::__detail::_Default_ranged_hash, std::__detail::_Prime_rehash_policy, std::__detail::_Hashtable_traits&lt;false, false, true&gt; &gt;::_Scoped_node::_Scoped_node&lt;unsigned char*, dsacache::CacheData&amp;&gt; (2,231,659 samples, 0.01%)</title><rect x="1147.8" y="437" width="0.1" height="15.0" fill="rgb(244,180,43)" rx="2" ry="2" />
  755. <text x="1150.78" y="447.5" ></text>
  756. </g>
  757. <g >
  758. <title>kernel_get_mempolicy (4,556,948 samples, 0.03%)</title><rect x="942.8" y="405" width="0.3" height="15.0" fill="rgb(229,114,27)" rx="2" ry="2" />
  759. <text x="945.81" y="415.5" ></text>
  760. </g>
  761. <g >
  762. <title>charge_memcg (2,598,122 samples, 0.02%)</title><rect x="303.3" y="373" width="0.2" height="15.0" fill="rgb(242,170,40)" rx="2" ry="2" />
  763. <text x="306.27" y="383.5" ></text>
  764. </g>
  765. <g >
  766. <title>mbind (5,974,528 samples, 0.04%)</title><rect x="1136.7" y="437" width="0.5" height="15.0" fill="rgb(241,167,40)" rx="2" ry="2" />
  767. <text x="1139.75" y="447.5" ></text>
  768. </g>
  769. <g >
  770. <title>folio_lruvec_lock_irqsave (2,414,711 samples, 0.01%)</title><rect x="1011.2" y="325" width="0.2" height="15.0" fill="rgb(235,138,33)" rx="2" ry="2" />
  771. <text x="1014.24" y="335.5" ></text>
  772. </g>
  773. <g >
  774. <title>__GI_munmap (1,728,623 samples, 0.01%)</title><rect x="10.5" y="469" width="0.1" height="15.0" fill="rgb(217,57,13)" rx="2" ry="2" />
  775. <text x="13.51" y="479.5" ></text>
  776. </g>
  777. <g >
  778. <title>perf_event_init_task (19,899,347 samples, 0.12%)</title><rect x="627.6" y="469" width="1.5" height="15.0" fill="rgb(247,195,46)" rx="2" ry="2" />
  779. <text x="630.64" y="479.5" ></text>
  780. </g>
  781. <g >
  782. <title>Vector_Loader&lt;unsigned long, (384,094,614 samples, 2.35%)</title><rect x="791.9" y="485" width="27.7" height="15.0" fill="rgb(242,170,40)" rx="2" ry="2" />
  783. <text x="794.86" y="495.5" >V..</text>
  784. </g>
  785. <g >
  786. <title>entry_SYSCALL_64_after_hwframe (1,524,427 samples, 0.01%)</title><rect x="1147.1" y="165" width="0.1" height="15.0" fill="rgb(218,63,15)" rx="2" ry="2" />
  787. <text x="1150.13" y="175.5" ></text>
  788. </g>
  789. <g >
  790. <title>__alloc_file (3,366,665 samples, 0.02%)</title><rect x="1141.7" y="261" width="0.3" height="15.0" fill="rgb(206,7,1)" rx="2" ry="2" />
  791. <text x="1144.74" y="271.5" ></text>
  792. </g>
  793. <g >
  794. <title>scheduler_tick (6,579,035 samples, 0.04%)</title><rect x="819.7" y="357" width="0.5" height="15.0" fill="rgb(246,190,45)" rx="2" ry="2" />
  795. <text x="822.68" y="367.5" ></text>
  796. </g>
  797. <g >
  798. <title>std::thread::_M_start_thread (3,409,299 samples, 0.02%)</title><rect x="31.0" y="421" width="0.2" height="15.0" fill="rgb(218,60,14)" rx="2" ry="2" />
  799. <text x="33.99" y="431.5" ></text>
  800. </g>
  801. <g >
  802. <title>handle_mm_fault (2,542,727,303 samples, 15.56%)</title><rect x="948.0" y="405" width="183.6" height="15.0" fill="rgb(234,135,32)" rx="2" ry="2" />
  803. <text x="950.99" y="415.5" >handle_mm_fault</text>
  804. </g>
  805. <g >
  806. <title>[anon] (2,347,633 samples, 0.01%)</title><rect x="10.0" y="565" width="0.2" height="15.0" fill="rgb(210,23,5)" rx="2" ry="2" />
  807. <text x="13.01" y="575.5" ></text>
  808. </g>
  809. <g >
  810. <title>do_user_addr_fault (2,547,045,986 samples, 15.59%)</title><rect x="948.0" y="421" width="183.9" height="15.0" fill="rgb(228,108,25)" rx="2" ry="2" />
  811. <text x="950.95" y="431.5" >do_user_addr_fault</text>
  812. </g>
  813. <g >
  814. <title>main (8,539,248,506 samples, 52.27%)</title><rect x="10.7" y="517" width="616.8" height="15.0" fill="rgb(243,179,42)" rx="2" ry="2" />
  815. <text x="13.69" y="527.5" >main</text>
  816. </g>
  817. <g >
  818. <title>__GI_munmap (260,351,057 samples, 1.59%)</title><rect x="12.0" y="341" width="18.8" height="15.0" fill="rgb(217,57,13)" rx="2" ry="2" />
  819. <text x="15.00" y="351.5" ></text>
  820. </g>
  821. <g >
  822. <title>get_page_from_freelist (3,430,412 samples, 0.02%)</title><rect x="941.6" y="341" width="0.2" height="15.0" fill="rgb(252,218,52)" rx="2" ry="2" />
  823. <text x="944.59" y="351.5" ></text>
  824. </g>
  825. <g >
  826. <title>try_charge_memcg (2,357,402 samples, 0.01%)</title><rect x="949.1" y="325" width="0.1" height="15.0" fill="rgb(210,27,6)" rx="2" ry="2" />
  827. <text x="952.07" y="335.5" ></text>
  828. </g>
  829. <g >
  830. <title>__mmu_notifier_invalidate_range_end (78,711,041 samples, 0.48%)</title><rect x="24.2" y="197" width="5.7" height="15.0" fill="rgb(207,11,2)" rx="2" ry="2" />
  831. <text x="27.18" y="207.5" ></text>
  832. </g>
  833. <g >
  834. <title>lru_add_fn (3,223,510 samples, 0.02%)</title><rect x="949.5" y="325" width="0.3" height="15.0" fill="rgb(208,14,3)" rx="2" ry="2" />
  835. <text x="952.53" y="335.5" ></text>
  836. </g>
  837. <g >
  838. <title>__GI___libc_read (21,636,096 samples, 0.13%)</title><rect x="1139.8" y="405" width="1.6" height="15.0" fill="rgb(241,166,39)" rx="2" ry="2" />
  839. <text x="1142.81" y="415.5" ></text>
  840. </g>
  841. <g >
  842. <title>asm_exc_page_fault (3,409,299 samples, 0.02%)</title><rect x="31.0" y="373" width="0.2" height="15.0" fill="rgb(225,93,22)" rx="2" ry="2" />
  843. <text x="33.99" y="383.5" ></text>
  844. </g>
  845. <g >
  846. <title>entry_SYSCALL_64_after_hwframe (20,421,763 samples, 0.12%)</title><rect x="1138.3" y="277" width="1.5" height="15.0" fill="rgb(218,63,15)" rx="2" ry="2" />
  847. <text x="1141.33" y="287.5" ></text>
  848. </g>
  849. <g >
  850. <title>do_syscall_64 (19,250,418 samples, 0.12%)</title><rect x="1141.6" y="357" width="1.3" height="15.0" fill="rgb(209,20,4)" rx="2" ry="2" />
  851. <text x="1144.55" y="367.5" ></text>
  852. </g>
  853. <g >
  854. <title>[unknown] (4,568,590 samples, 0.03%)</title><rect x="10.2" y="565" width="0.3" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
  855. <text x="13.18" y="575.5" ></text>
  856. </g>
  857. <g >
  858. <title>__vm_munmap (259,486,254 samples, 1.59%)</title><rect x="12.1" y="277" width="18.7" height="15.0" fill="rgb(231,121,28)" rx="2" ry="2" />
  859. <text x="15.06" y="287.5" ></text>
  860. </g>
  861. <g >
  862. <title>_raw_spin_lock (6,009,917 samples, 0.04%)</title><rect x="303.8" y="389" width="0.5" height="15.0" fill="rgb(239,160,38)" rx="2" ry="2" />
  863. <text x="306.83" y="399.5" ></text>
  864. </g>
  865. <g >
  866. <title>__mod_lruvec_page_state (3,035,337 samples, 0.02%)</title><rect x="1012.6" y="325" width="0.2" height="15.0" fill="rgb(245,185,44)" rx="2" ry="2" />
  867. <text x="1015.61" y="335.5" ></text>
  868. </g>
  869. <g >
  870. <title>__x64_sys_munmap (259,486,254 samples, 1.59%)</title><rect x="12.1" y="293" width="18.7" height="15.0" fill="rgb(206,7,1)" rx="2" ry="2" />
  871. <text x="15.06" y="303.5" ></text>
  872. </g>
  873. <g >
  874. <title>clear_huge_page (818,171,051 samples, 5.01%)</title><rect x="952.0" y="357" width="59.1" height="15.0" fill="rgb(220,69,16)" rx="2" ry="2" />
  875. <text x="955.02" y="367.5" >clear_..</text>
  876. </g>
  877. <g >
  878. <title>devices_init (1,487,221 samples, 0.01%)</title><rect x="1146.7" y="309" width="0.1" height="15.0" fill="rgb(209,20,4)" rx="2" ry="2" />
  879. <text x="1149.73" y="319.5" ></text>
  880. </g>
  881. <g >
  882. <title>__kmem_cache_alloc_node (1,729,995 samples, 0.01%)</title><rect x="628.7" y="325" width="0.1" height="15.0" fill="rgb(208,16,4)" rx="2" ry="2" />
  883. <text x="631.70" y="335.5" ></text>
  884. </g>
  885. <g >
  886. <title>syscall_exit_to_user_mode (5,918,508 samples, 0.04%)</title><rect x="1137.5" y="357" width="0.4" height="15.0" fill="rgb(251,211,50)" rx="2" ry="2" />
  887. <text x="1140.51" y="367.5" ></text>
  888. </g>
  889. <g >
  890. <title>sysvec_apic_timer_interrupt (2,777,240 samples, 0.02%)</title><rect x="270.7" y="469" width="0.2" height="15.0" fill="rgb(220,69,16)" rx="2" ry="2" />
  891. <text x="273.68" y="479.5" ></text>
  892. </g>
  893. <g >
  894. <title>sysvec_apic_timer_interrupt (8,062,003 samples, 0.05%)</title><rect x="941.9" y="469" width="0.6" height="15.0" fill="rgb(220,69,16)" rx="2" ry="2" />
  895. <text x="944.92" y="479.5" ></text>
  896. </g>
  897. <g >
  898. <title>__hrtimer_run_queues (5,146,731 samples, 0.03%)</title><rect x="791.5" y="389" width="0.4" height="15.0" fill="rgb(237,150,35)" rx="2" ry="2" />
  899. <text x="794.49" y="399.5" ></text>
  900. </g>
  901. <g >
  902. <title>hrtimer_interrupt (7,126,171 samples, 0.04%)</title><rect x="942.0" y="437" width="0.5" height="15.0" fill="rgb(228,109,26)" rx="2" ry="2" />
  903. <text x="944.99" y="447.5" ></text>
  904. </g>
  905. <g >
  906. <title>pte_alloc_one (12,504,536 samples, 0.08%)</title><rect x="1011.9" y="357" width="0.9" height="15.0" fill="rgb(252,217,51)" rx="2" ry="2" />
  907. <text x="1014.93" y="367.5" ></text>
  908. </g>
  909. <g >
  910. <title>mas_wr_modify (1,728,362 samples, 0.01%)</title><rect x="12.3" y="213" width="0.1" height="15.0" fill="rgb(221,75,18)" rx="2" ry="2" />
  911. <text x="15.31" y="223.5" ></text>
  912. </g>
  913. <g >
  914. <title>vma_merge (5,204,666 samples, 0.03%)</title><rect x="1146.4" y="117" width="0.3" height="15.0" fill="rgb(246,188,45)" rx="2" ry="2" />
  915. <text x="1149.35" y="127.5" ></text>
  916. </g>
  917. <g >
  918. <title>vm_mmap_pgoff (50,596,001 samples, 0.31%)</title><rect x="1133.1" y="373" width="3.6" height="15.0" fill="rgb(237,150,35)" rx="2" ry="2" />
  919. <text x="1136.09" y="383.5" ></text>
  920. </g>
  921. <g >
  922. <title>accfg_get_param_long (4,602,798 samples, 0.03%)</title><rect x="1146.9" y="229" width="0.3" height="15.0" fill="rgb(217,57,13)" rx="2" ry="2" />
  923. <text x="1149.91" y="239.5" ></text>
  924. </g>
  925. <g >
  926. <title>scan_a (1,678,013,450 samples, 10.27%)</title><rect x="821.3" y="517" width="121.2" height="15.0" fill="rgb(253,223,53)" rx="2" ry="2" />
  927. <text x="824.31" y="527.5" >scan_a</text>
  928. </g>
  929. <g >
  930. <title>_raw_spin_lock (2,039,788 samples, 0.01%)</title><rect x="951.9" y="357" width="0.1" height="15.0" fill="rgb(239,160,38)" rx="2" ry="2" />
  931. <text x="954.87" y="367.5" ></text>
  932. </g>
  933. <g >
  934. <title>exit_to_user_mode_prepare (1,731,095 samples, 0.01%)</title><rect x="270.6" y="453" width="0.1" height="15.0" fill="rgb(228,108,25)" rx="2" ry="2" />
  935. <text x="273.56" y="463.5" ></text>
  936. </g>
  937. <g >
  938. <title>syscall (4,556,948 samples, 0.03%)</title><rect x="942.8" y="469" width="0.3" height="15.0" fill="rgb(234,136,32)" rx="2" ry="2" />
  939. <text x="945.81" y="479.5" ></text>
  940. </g>
  941. <g >
  942. <title>do_syscall_64 (2,565,568 samples, 0.02%)</title><rect x="1146.9" y="165" width="0.2" height="15.0" fill="rgb(209,20,4)" rx="2" ry="2" />
  943. <text x="1149.94" y="175.5" ></text>
  944. </g>
  945. <g >
  946. <title>do_syscall_64 (50,596,001 samples, 0.31%)</title><rect x="1133.1" y="389" width="3.6" height="15.0" fill="rgb(209,20,4)" rx="2" ry="2" />
  947. <text x="1136.09" y="399.5" ></text>
  948. </g>
  949. <g >
  950. <title>__sysvec_apic_timer_interrupt (1,541,693 samples, 0.01%)</title><rect x="1011.0" y="293" width="0.1" height="15.0" fill="rgb(242,173,41)" rx="2" ry="2" />
  951. <text x="1014.00" y="303.5" ></text>
  952. </g>
  953. <g >
  954. <title>unmap_region (1,728,623 samples, 0.01%)</title><rect x="10.5" y="357" width="0.1" height="15.0" fill="rgb(219,64,15)" rx="2" ry="2" />
  955. <text x="13.51" y="367.5" ></text>
  956. </g>
  957. <g >
  958. <title>__rmqueue_pcplist (12,992,411 samples, 0.08%)</title><rect x="345.4" y="325" width="1.0" height="15.0" fill="rgb(230,118,28)" rx="2" ry="2" />
  959. <text x="348.43" y="335.5" ></text>
  960. </g>
  961. <g >
  962. <title>__hrtimer_run_queues (2,714,507 samples, 0.02%)</title><rect x="819.4" y="389" width="0.2" height="15.0" fill="rgb(237,150,35)" rx="2" ry="2" />
  963. <text x="822.41" y="399.5" ></text>
  964. </g>
  965. <g >
  966. <title>intel_invalidate_range (78,711,041 samples, 0.48%)</title><rect x="24.2" y="181" width="5.7" height="15.0" fill="rgb(228,107,25)" rx="2" ry="2" />
  967. <text x="27.18" y="191.5" ></text>
  968. </g>
  969. <g >
  970. <title>perf_iterate_ctx (32,825,072 samples, 0.20%)</title><rect x="1134.1" y="293" width="2.4" height="15.0" fill="rgb(205,4,0)" rx="2" ry="2" />
  971. <text x="1137.09" y="303.5" ></text>
  972. </g>
  973. <g >
  974. <title>__split_vma (2,597,797 samples, 0.02%)</title><rect x="12.1" y="229" width="0.2" height="15.0" fill="rgb(237,150,36)" rx="2" ry="2" />
  975. <text x="15.12" y="239.5" ></text>
  976. </g>
  977. <g >
  978. <title>count_memcg_events.constprop.0 (3,821,882 samples, 0.02%)</title><rect x="1131.4" y="389" width="0.2" height="15.0" fill="rgb(213,41,9)" rx="2" ry="2" />
  979. <text x="1134.36" y="399.5" ></text>
  980. </g>
  981. <g >
  982. <title>do_anonymous_page (2,419,571 samples, 0.01%)</title><rect x="1143.7" y="149" width="0.2" height="15.0" fill="rgb(238,155,37)" rx="2" ry="2" />
  983. <text x="1146.72" y="159.5" ></text>
  984. </g>
  985. <g >
  986. <title>alloc_fd (2,581,399 samples, 0.02%)</title><rect x="1141.6" y="309" width="0.1" height="15.0" fill="rgb(216,52,12)" rx="2" ry="2" />
  987. <text x="1144.55" y="319.5" ></text>
  988. </g>
  989. <g >
  990. <title>walk_component (2,915,734 samples, 0.02%)</title><rect x="1142.3" y="261" width="0.2" height="15.0" fill="rgb(241,167,40)" rx="2" ry="2" />
  991. <text x="1145.31" y="271.5" ></text>
  992. </g>
  993. <g >
  994. <title>asm_exc_page_fault (1,731,639 samples, 0.01%)</title><rect x="506.6" y="453" width="0.1" height="15.0" fill="rgb(225,93,22)" rx="2" ry="2" />
  995. <text x="509.60" y="463.5" ></text>
  996. </g>
  997. <g >
  998. <title>get_page_from_freelist (1,732,237 samples, 0.01%)</title><rect x="328.2" y="357" width="0.1" height="15.0" fill="rgb(252,218,52)" rx="2" ry="2" />
  999. <text x="331.19" y="367.5" ></text>
  1000. </g>
  1001. <g >
  1002. <title>qi_submit_sync (7,061,195 samples, 0.04%)</title><rect x="1148.0" y="373" width="0.5" height="15.0" fill="rgb(239,159,38)" rx="2" ry="2" />
  1003. <text x="1151.00" y="383.5" ></text>
  1004. </g>
  1005. <g >
  1006. <title>numa_node_to_cpus (2,831,897 samples, 0.02%)</title><rect x="820.2" y="453" width="0.2" height="15.0" fill="rgb(221,74,17)" rx="2" ry="2" />
  1007. <text x="823.22" y="463.5" ></text>
  1008. </g>
  1009. <g >
  1010. <title>_raw_spin_lock_irqsave (1,505,920 samples, 0.01%)</title><rect x="1145.8" y="37" width="0.1" height="15.0" fill="rgb(247,195,46)" rx="2" ry="2" />
  1011. <text x="1148.78" y="47.5" ></text>
  1012. </g>
  1013. <g >
  1014. <title>std::pair&lt;std::__detail::_Node_iterator&lt;std::pair&lt;unsigned char* const, dsacache::CacheData&gt;, false, false&gt;, bool&gt; std::_Hashtable&lt;unsigned char*, std::pair&lt;unsigned char* const, dsacache::CacheData&gt;, std::allocator&lt;std::pair&lt;unsigned char* const, dsacache::CacheData&gt; &gt;, std::__detail::_Select1st, std::equal_to&lt;unsigned char*&gt;, std::hash&lt;unsigned char*&gt;, std::__detail::_Mod_range_hashing, std::__detail::_Default_ranged_hash, std::__detail::_Prime_rehash_policy, std::__detail::_Hashtable_traits&lt;false, false, true&gt; &gt;::emplace&lt;unsigned char*, dsacache::CacheData&amp;&gt; (2,231,659 samples, 0.01%)</title><rect x="1147.8" y="469" width="0.1" height="15.0" fill="rgb(224,89,21)" rx="2" ry="2" />
  1015. <text x="1150.78" y="479.5" ></text>
  1016. </g>
  1017. <g >
  1018. <title>void std::destroy_at&lt;std::pair&lt;unsigned char* const, dsacache::CacheData&gt; &gt; (262,080,827 samples, 1.60%)</title><rect x="12.0" y="405" width="18.9" height="15.0" fill="rgb(233,131,31)" rx="2" ry="2" />
  1019. <text x="15.00" y="415.5" ></text>
  1020. </g>
  1021. <g >
  1022. <title>sysvec_apic_timer_interrupt (2,724,344 samples, 0.02%)</title><rect x="819.4" y="437" width="0.2" height="15.0" fill="rgb(220,69,16)" rx="2" ry="2" />
  1023. <text x="822.41" y="447.5" ></text>
  1024. </g>
  1025. <g >
  1026. <title>__hrtimer_run_queues (1,460,612 samples, 0.01%)</title><rect x="1131.1" y="213" width="0.1" height="15.0" fill="rgb(237,150,35)" rx="2" ry="2" />
  1027. <text x="1134.10" y="223.5" ></text>
  1028. </g>
  1029. <g >
  1030. <title>clear_page_erms (309,607,106 samples, 1.90%)</title><rect x="305.6" y="373" width="22.3" height="15.0" fill="rgb(229,113,27)" rx="2" ry="2" />
  1031. <text x="308.58" y="383.5" >c..</text>
  1032. </g>
  1033. <g >
  1034. <title>exc_page_fault (2,547,614,283 samples, 15.59%)</title><rect x="948.0" y="437" width="184.0" height="15.0" fill="rgb(212,35,8)" rx="2" ry="2" />
  1035. <text x="950.95" y="447.5" >exc_page_fault</text>
  1036. </g>
  1037. <g >
  1038. <title>dsacache::CacheData::Deallocate (260,351,057 samples, 1.59%)</title><rect x="12.0" y="357" width="18.8" height="15.0" fill="rgb(205,3,0)" rx="2" ry="2" />
  1039. <text x="15.00" y="367.5" ></text>
  1040. </g>
  1041. <g >
  1042. <title>__GI__IO_doallocbuf (25,072,445 samples, 0.15%)</title><rect x="1138.0" y="405" width="1.8" height="15.0" fill="rgb(243,177,42)" rx="2" ry="2" />
  1043. <text x="1140.99" y="415.5" ></text>
  1044. </g>
  1045. <g >
  1046. <title>add_wq (8,186,564 samples, 0.05%)</title><rect x="1146.9" y="245" width="0.6" height="15.0" fill="rgb(232,126,30)" rx="2" ry="2" />
  1047. <text x="1149.87" y="255.5" ></text>
  1048. </g>
  1049. <g >
  1050. <title>std::__detail::_Hashtable_alloc&lt;std::allocator&lt;std::__detail::_Hash_node&lt;std::pair&lt;unsigned char* const, dsacache::CacheData&gt;, false&gt; &gt; &gt;::_M_deallocate_nodes (262,080,827 samples, 1.60%)</title><rect x="12.0" y="453" width="18.9" height="15.0" fill="rgb(226,97,23)" rx="2" ry="2" />
  1051. <text x="15.00" y="463.5" ></text>
  1052. </g>
  1053. <g >
  1054. <title>do_sys_openat2 (18,616,272 samples, 0.11%)</title><rect x="1141.6" y="325" width="1.3" height="15.0" fill="rgb(253,221,52)" rx="2" ry="2" />
  1055. <text x="1144.55" y="335.5" ></text>
  1056. </g>
  1057. <g >
  1058. <title>do_syscall_64 (259,486,254 samples, 1.59%)</title><rect x="12.1" y="309" width="18.7" height="15.0" fill="rgb(209,20,4)" rx="2" ry="2" />
  1059. <text x="15.06" y="319.5" ></text>
  1060. </g>
  1061. <g >
  1062. <title>__handle_mm_fault (2,542,611 samples, 0.02%)</title><rect x="31.0" y="309" width="0.2" height="15.0" fill="rgb(207,9,2)" rx="2" ry="2" />
  1063. <text x="33.99" y="319.5" ></text>
  1064. </g>
  1065. <g >
  1066. <title>read (1,524,427 samples, 0.01%)</title><rect x="1147.1" y="213" width="0.1" height="15.0" fill="rgb(252,216,51)" rx="2" ry="2" />
  1067. <text x="1150.13" y="223.5" ></text>
  1068. </g>
  1069. <g >
  1070. <title>_int_memalign (44,228,686 samples, 0.27%)</title><rect x="1143.5" y="277" width="3.2" height="15.0" fill="rgb(208,17,4)" rx="2" ry="2" />
  1071. <text x="1146.53" y="287.5" ></text>
  1072. </g>
  1073. <g >
  1074. <title>vma_alloc_folio (1,640,530,564 samples, 10.04%)</title><rect x="1012.8" y="357" width="118.5" height="15.0" fill="rgb(245,187,44)" rx="2" ry="2" />
  1075. <text x="1015.83" y="367.5" >vma_alloc_folio</text>
  1076. </g>
  1077. <g >
  1078. <title>__cond_resched (7,615,401 samples, 0.05%)</title><rect x="954.3" y="341" width="0.6" height="15.0" fill="rgb(217,58,14)" rx="2" ry="2" />
  1079. <text x="957.35" y="351.5" ></text>
  1080. </g>
  1081. <g >
  1082. <title>sysmalloc (42,505,783 samples, 0.26%)</title><rect x="1143.7" y="245" width="3.0" height="15.0" fill="rgb(213,38,9)" rx="2" ry="2" />
  1083. <text x="1146.66" y="255.5" ></text>
  1084. </g>
  1085. <g >
  1086. <title>kmem_cache_alloc_bulk (1,585,774 samples, 0.01%)</title><rect x="1146.4" y="69" width="0.1" height="15.0" fill="rgb(234,135,32)" rx="2" ry="2" />
  1087. <text x="1149.35" y="79.5" ></text>
  1088. </g>
  1089. <g >
  1090. <title>kernel_mbind (5,974,528 samples, 0.04%)</title><rect x="1136.7" y="373" width="0.5" height="15.0" fill="rgb(237,147,35)" rx="2" ry="2" />
  1091. <text x="1139.75" y="383.5" ></text>
  1092. </g>
  1093. <g >
  1094. <title>__handle_mm_fault (2,537,101,790 samples, 15.53%)</title><rect x="948.1" y="389" width="183.3" height="15.0" fill="rgb(207,9,2)" rx="2" ry="2" />
  1095. <text x="951.12" y="399.5" >__handle_mm_fault</text>
  1096. </g>
  1097. <g >
  1098. <title>clear_page_erms (1,231,860,598 samples, 7.54%)</title><rect x="346.4" y="325" width="89.0" height="15.0" fill="rgb(229,113,27)" rx="2" ry="2" />
  1099. <text x="349.41" y="335.5" >clear_page..</text>
  1100. </g>
  1101. <g >
  1102. <title>qi_flush_dev_iotlb_pasid (10,837,698 samples, 0.07%)</title><rect x="1143.9" y="69" width="0.8" height="15.0" fill="rgb(220,69,16)" rx="2" ry="2" />
  1103. <text x="1146.95" y="79.5" ></text>
  1104. </g>
  1105. <g >
  1106. <title>mas_prev_nentry (1,563,935 samples, 0.01%)</title><rect x="1133.1" y="277" width="0.1" height="15.0" fill="rgb(246,192,46)" rx="2" ry="2" />
  1107. <text x="1136.09" y="287.5" ></text>
  1108. </g>
  1109. <g >
  1110. <title>decltype (3,409,299 samples, 0.02%)</title><rect x="31.0" y="453" width="0.2" height="15.0" fill="rgb(214,42,10)" rx="2" ry="2" />
  1111. <text x="33.99" y="463.5" ></text>
  1112. </g>
  1113. <g >
  1114. <title>check_preemption_disabled (1,676,042 samples, 0.01%)</title><rect x="949.1" y="309" width="0.1" height="15.0" fill="rgb(220,73,17)" rx="2" ry="2" />
  1115. <text x="952.11" y="319.5" ></text>
  1116. </g>
  1117. <g >
  1118. <title>do_mmap (50,596,001 samples, 0.31%)</title><rect x="1133.1" y="357" width="3.6" height="15.0" fill="rgb(228,107,25)" rx="2" ry="2" />
  1119. <text x="1136.09" y="367.5" ></text>
  1120. </g>
  1121. <g >
  1122. <title>__alloc_pages (3,430,412 samples, 0.02%)</title><rect x="941.6" y="357" width="0.2" height="15.0" fill="rgb(233,129,30)" rx="2" ry="2" />
  1123. <text x="944.59" y="367.5" ></text>
  1124. </g>
  1125. <g >
  1126. <title>vfs_fstatat (1,512,504 samples, 0.01%)</title><rect x="1138.1" y="293" width="0.1" height="15.0" fill="rgb(232,127,30)" rx="2" ry="2" />
  1127. <text x="1141.05" y="303.5" ></text>
  1128. </g>
  1129. <g >
  1130. <title>__GI___mmap64 (50,596,001 samples, 0.31%)</title><rect x="1133.1" y="437" width="3.6" height="15.0" fill="rgb(221,77,18)" rx="2" ry="2" />
  1131. <text x="1136.09" y="447.5" ></text>
  1132. </g>
  1133. <g >
  1134. <title>__GI_munmap (18,146,766 samples, 0.11%)</title><rect x="10.7" y="501" width="1.3" height="15.0" fill="rgb(217,57,13)" rx="2" ry="2" />
  1135. <text x="13.69" y="511.5" ></text>
  1136. </g>
  1137. <g >
  1138. <title>folio_add_lru (7,530,893 samples, 0.05%)</title><rect x="949.3" y="357" width="0.6" height="15.0" fill="rgb(208,17,4)" rx="2" ry="2" />
  1139. <text x="952.35" y="367.5" ></text>
  1140. </g>
  1141. <g >
  1142. <title>intel_cpuc_prepare (1,729,995 samples, 0.01%)</title><rect x="628.7" y="357" width="0.1" height="15.0" fill="rgb(238,152,36)" rx="2" ry="2" />
  1143. <text x="631.70" y="367.5" ></text>
  1144. </g>
  1145. <g >
  1146. <title>do_syscall_64 (1,524,427 samples, 0.01%)</title><rect x="1147.1" y="149" width="0.1" height="15.0" fill="rgb(209,20,4)" rx="2" ry="2" />
  1147. <text x="1150.13" y="159.5" ></text>
  1148. </g>
  1149. <g >
  1150. <title>do_syscall_64 (20,421,763 samples, 0.12%)</title><rect x="1138.3" y="261" width="1.5" height="15.0" fill="rgb(209,20,4)" rx="2" ry="2" />
  1151. <text x="1141.33" y="271.5" ></text>
  1152. </g>
  1153. <g >
  1154. <title>entry_SYSCALL_64_after_hwframe (4,556,948 samples, 0.03%)</title><rect x="942.8" y="453" width="0.3" height="15.0" fill="rgb(218,63,15)" rx="2" ry="2" />
  1155. <text x="945.81" y="463.5" ></text>
  1156. </g>
  1157. <g >
  1158. <title>perf_iterate_sb.constprop.0 (32,825,072 samples, 0.20%)</title><rect x="1134.1" y="309" width="2.4" height="15.0" fill="rgb(229,113,27)" rx="2" ry="2" />
  1159. <text x="1137.09" y="319.5" ></text>
  1160. </g>
  1161. <g >
  1162. <title>sum_check (3,317,095,812 samples, 20.30%)</title><rect x="31.3" y="501" width="239.6" height="15.0" fill="rgb(252,218,52)" rx="2" ry="2" />
  1163. <text x="34.30" y="511.5" >sum_check</text>
  1164. </g>
  1165. <g >
  1166. <title>std::pair&lt;std::__detail::_Node_iterator&lt;std::pair&lt;unsigned char* const, dsacache::CacheData&gt;, false, false&gt;, bool&gt; std::_Hashtable&lt;unsigned char*, std::pair&lt;unsigned char* const, dsacache::CacheData&gt;, std::allocator&lt;std::pair&lt;unsigned char* const, dsacache::CacheData&gt; &gt;, std::__detail::_Select1st, std::equal_to&lt;unsigned char*&gt;, std::hash&lt;unsigned char*&gt;, std::__detail::_Mod_range_hashing, std::__detail::_Default_ranged_hash, std::__detail::_Prime_rehash_policy, std::__detail::_Hashtable_traits&lt;false, false, true&gt; &gt;::_M_emplace&lt;unsigned char*, dsacache::CacheData&amp;&gt; (2,231,659 samples, 0.01%)</title><rect x="1147.8" y="453" width="0.1" height="15.0" fill="rgb(249,205,49)" rx="2" ry="2" />
  1167. <text x="1150.78" y="463.5" ></text>
  1168. </g>
  1169. <g >
  1170. <title>tlb_finish_mmu (161,743,813 samples, 0.99%)</title><rect x="12.5" y="213" width="11.7" height="15.0" fill="rgb(251,212,50)" rx="2" ry="2" />
  1171. <text x="15.50" y="223.5" ></text>
  1172. </g>
  1173. <g >
  1174. <title>__next_zones_zonelist (3,096,950 samples, 0.02%)</title><rect x="950.2" y="309" width="0.3" height="15.0" fill="rgb(223,86,20)" rx="2" ry="2" />
  1175. <text x="953.24" y="319.5" ></text>
  1176. </g>
  1177. <g >
  1178. <title>memcg_check_events (4,262,574 samples, 0.03%)</title><rect x="948.8" y="325" width="0.3" height="15.0" fill="rgb(206,4,1)" rx="2" ry="2" />
  1179. <text x="951.77" y="335.5" ></text>
  1180. </g>
  1181. <g >
  1182. <title>kmalloc_trace (1,729,987 samples, 0.01%)</title><rect x="628.8" y="357" width="0.1" height="15.0" fill="rgb(221,76,18)" rx="2" ry="2" />
  1183. <text x="631.82" y="367.5" ></text>
  1184. </g>
  1185. <g >
  1186. <title>sysvec_apic_timer_interrupt (2,163,378 samples, 0.01%)</title><rect x="1131.1" y="261" width="0.2" height="15.0" fill="rgb(220,69,16)" rx="2" ry="2" />
  1187. <text x="1134.10" y="271.5" ></text>
  1188. </g>
  1189. <g >
  1190. <title>dsacache::Cache::Access (2,844,259,210 samples, 17.41%)</title><rect x="942.5" y="501" width="205.4" height="15.0" fill="rgb(209,18,4)" rx="2" ry="2" />
  1191. <text x="945.51" y="511.5" >dsacache::Cache::Access</text>
  1192. </g>
  1193. <g >
  1194. <title>qi_flush_dev_iotlb_pasid (7,061,195 samples, 0.04%)</title><rect x="1148.0" y="389" width="0.5" height="15.0" fill="rgb(220,69,16)" rx="2" ry="2" />
  1195. <text x="1151.00" y="399.5" ></text>
  1196. </g>
  1197. <g >
  1198. <title>clear_huge_page (2,583,148 samples, 0.02%)</title><rect x="941.4" y="389" width="0.2" height="15.0" fill="rgb(220,69,16)" rx="2" ry="2" />
  1199. <text x="944.41" y="399.5" ></text>
  1200. </g>
  1201. <g >
  1202. <title>copy_process (22,478,709 samples, 0.14%)</title><rect x="627.5" y="485" width="1.6" height="15.0" fill="rgb(233,130,31)" rx="2" ry="2" />
  1203. <text x="630.45" y="495.5" ></text>
  1204. </g>
  1205. <g >
  1206. <title>do_syscall_64 (18,146,766 samples, 0.11%)</title><rect x="10.7" y="469" width="1.3" height="15.0" fill="rgb(209,20,4)" rx="2" ry="2" />
  1207. <text x="13.69" y="479.5" ></text>
  1208. </g>
  1209. <g >
  1210. <title>dsacache::Cache::GetFromCache (2,051,374 samples, 0.01%)</title><rect x="821.0" y="485" width="0.2" height="15.0" fill="rgb(252,219,52)" rx="2" ry="2" />
  1211. <text x="824.02" y="495.5" ></text>
  1212. </g>
  1213. <g >
  1214. <title>do_sys_openat2 (2,565,568 samples, 0.02%)</title><rect x="1146.9" y="133" width="0.2" height="15.0" fill="rgb(253,221,52)" rx="2" ry="2" />
  1215. <text x="1149.94" y="143.5" ></text>
  1216. </g>
  1217. <g >
  1218. <title>_raw_spin_lock (2,581,399 samples, 0.02%)</title><rect x="1141.6" y="293" width="0.1" height="15.0" fill="rgb(239,160,38)" rx="2" ry="2" />
  1219. <text x="1144.55" y="303.5" ></text>
  1220. </g>
  1221. <g >
  1222. <title>sysfs_kf_seq_show (14,183,508 samples, 0.09%)</title><rect x="1140.3" y="293" width="1.1" height="15.0" fill="rgb(227,102,24)" rx="2" ry="2" />
  1223. <text x="1143.34" y="303.5" ></text>
  1224. </g>
  1225. <g >
  1226. <title>format_decode (3,780,724 samples, 0.02%)</title><rect x="1140.8" y="197" width="0.3" height="15.0" fill="rgb(253,225,53)" rx="2" ry="2" />
  1227. <text x="1143.83" y="207.5" ></text>
  1228. </g>
  1229. <g >
  1230. <title>__mmu_notifier_invalidate_range_end (26,909,047 samples, 0.16%)</title><rect x="1143.9" y="101" width="2.0" height="15.0" fill="rgb(207,11,2)" rx="2" ry="2" />
  1231. <text x="1146.95" y="111.5" ></text>
  1232. </g>
  1233. <g >
  1234. <title>_IO_new_fclose (7,527,675 samples, 0.05%)</title><rect x="1137.4" y="437" width="0.5" height="15.0" fill="rgb(250,208,49)" rx="2" ry="2" />
  1235. <text x="1140.39" y="447.5" ></text>
  1236. </g>
  1237. <g >
  1238. <title>asm_exc_page_fault (1,722,903 samples, 0.01%)</title><rect x="1143.5" y="245" width="0.2" height="15.0" fill="rgb(225,93,22)" rx="2" ry="2" />
  1239. <text x="1146.53" y="255.5" ></text>
  1240. </g>
  1241. <g >
  1242. <title>__mem_cgroup_charge (1,722,903 samples, 0.01%)</title><rect x="1143.5" y="149" width="0.2" height="15.0" fill="rgb(218,60,14)" rx="2" ry="2" />
  1243. <text x="1146.53" y="159.5" ></text>
  1244. </g>
  1245. <g >
  1246. <title>__folio_alloc (1,694,345 samples, 0.01%)</title><rect x="31.1" y="261" width="0.1" height="15.0" fill="rgb(224,91,21)" rx="2" ry="2" />
  1247. <text x="34.05" y="271.5" ></text>
  1248. </g>
  1249. <g >
  1250. <title>_mm512_mask_testn_epi8_mask (1,617,669 samples, 0.01%)</title><rect x="1143.4" y="421" width="0.1" height="15.0" fill="rgb(254,228,54)" rx="2" ry="2" />
  1251. <text x="1146.42" y="431.5" ></text>
  1252. </g>
  1253. <g >
  1254. <title>std::mersenne_twister_engine&lt;unsigned long, 32ul, 624ul, 397ul, 31ul, 2567483615ul, 11ul, 4294967295ul, 7ul, 2636928640ul, 15ul, 4022730752ul, 18ul, 1812433253ul&gt;::_M_gen_rand (446,356,922 samples, 2.73%)</title><rect x="595.2" y="421" width="32.3" height="15.0" fill="rgb(207,12,3)" rx="2" ry="2" />
  1255. <text x="598.21" y="431.5" >st..</text>
  1256. </g>
  1257. <g >
  1258. <title>dml::detail::ml::impl::hardware::submit (12,186,558 samples, 0.07%)</title><rect x="1146.7" y="405" width="0.9" height="15.0" fill="rgb(234,136,32)" rx="2" ry="2" />
  1259. <text x="1149.73" y="415.5" ></text>
  1260. </g>
  1261. <g >
  1262. <title>vfs_read (1,524,427 samples, 0.01%)</title><rect x="1147.1" y="117" width="0.1" height="15.0" fill="rgb(224,88,21)" rx="2" ry="2" />
  1263. <text x="1150.13" y="127.5" ></text>
  1264. </g>
  1265. <g >
  1266. <title>aggr_j (2,660,666,540 samples, 16.29%)</title><rect x="629.1" y="517" width="192.2" height="15.0" fill="rgb(221,75,17)" rx="2" ry="2" />
  1267. <text x="632.14" y="527.5" >aggr_j</text>
  1268. </g>
  1269. <g >
  1270. <title>clear_page_erms (1,325,383,434 samples, 8.11%)</title><rect x="1035.5" y="293" width="95.8" height="15.0" fill="rgb(229,113,27)" rx="2" ry="2" />
  1271. <text x="1038.53" y="303.5" >clear_page_..</text>
  1272. </g>
  1273. <g >
  1274. <title>dsacache::Cache::ExecuteCopy (57,276,083 samples, 0.35%)</title><rect x="1143.5" y="469" width="4.2" height="15.0" fill="rgb(220,72,17)" rx="2" ry="2" />
  1275. <text x="1146.53" y="479.5" ></text>
  1276. </g>
  1277. <g >
  1278. <title>qi_flush_piotlb (16,071,349 samples, 0.10%)</title><rect x="1144.7" y="69" width="1.2" height="15.0" fill="rgb(251,215,51)" rx="2" ry="2" />
  1279. <text x="1147.73" y="79.5" ></text>
  1280. </g>
  1281. <g >
  1282. <title>__handle_mm_fault (1,722,903 samples, 0.01%)</title><rect x="1143.5" y="181" width="0.2" height="15.0" fill="rgb(207,9,2)" rx="2" ry="2" />
  1283. <text x="1146.53" y="191.5" ></text>
  1284. </g>
  1285. <g >
  1286. <title>accfg_get_param_str (3,070,305 samples, 0.02%)</title><rect x="1147.2" y="229" width="0.3" height="15.0" fill="rgb(229,112,26)" rx="2" ry="2" />
  1287. <text x="1150.24" y="239.5" ></text>
  1288. </g>
  1289. <g >
  1290. <title>scheduler_tick (2,170,601 samples, 0.01%)</title><rect x="819.4" y="325" width="0.2" height="15.0" fill="rgb(246,190,45)" rx="2" ry="2" />
  1291. <text x="822.45" y="335.5" ></text>
  1292. </g>
  1293. <g >
  1294. <title>preempt_count_add (1,462,822 samples, 0.01%)</title><rect x="1131.8" y="373" width="0.1" height="15.0" fill="rgb(253,222,53)" rx="2" ry="2" />
  1295. <text x="1134.77" y="383.5" ></text>
  1296. </g>
  1297. <g >
  1298. <title>do_mprotect_pkey (38,464,959 samples, 0.24%)</title><rect x="1143.9" y="149" width="2.8" height="15.0" fill="rgb(252,218,52)" rx="2" ry="2" />
  1299. <text x="1146.95" y="159.5" ></text>
  1300. </g>
  1301. <g >
  1302. <title>device_parse (8,186,564 samples, 0.05%)</title><rect x="1146.9" y="277" width="0.6" height="15.0" fill="rgb(237,147,35)" rx="2" ry="2" />
  1303. <text x="1149.87" y="287.5" ></text>
  1304. </g>
  1305. <g >
  1306. <title>numa_bitmask_clearall (2,584,213 samples, 0.02%)</title><rect x="942.6" y="437" width="0.2" height="15.0" fill="rgb(238,155,37)" rx="2" ry="2" />
  1307. <text x="945.63" y="447.5" ></text>
  1308. </g>
  1309. <g >
  1310. <title>scheduler_tick (2,777,240 samples, 0.02%)</title><rect x="270.7" y="357" width="0.2" height="15.0" fill="rgb(246,190,45)" rx="2" ry="2" />
  1311. <text x="273.68" y="367.5" ></text>
  1312. </g>
  1313. <g >
  1314. <title>mas_prev (1,563,935 samples, 0.01%)</title><rect x="1133.1" y="293" width="0.1" height="15.0" fill="rgb(251,214,51)" rx="2" ry="2" />
  1315. <text x="1136.09" y="303.5" ></text>
  1316. </g>
  1317. <g >
  1318. <title>syscall_exit_to_user_mode (2,109,428 samples, 0.01%)</title><rect x="820.9" y="421" width="0.1" height="15.0" fill="rgb(251,211,50)" rx="2" ry="2" />
  1319. <text x="823.87" y="431.5" ></text>
  1320. </g>
  1321. <g >
  1322. <title>do_syscall_64 (4,556,948 samples, 0.03%)</title><rect x="942.8" y="437" width="0.3" height="15.0" fill="rgb(209,20,4)" rx="2" ry="2" />
  1323. <text x="945.81" y="447.5" ></text>
  1324. </g>
  1325. <g >
  1326. <title>do_mbind (5,974,528 samples, 0.04%)</title><rect x="1136.7" y="357" width="0.5" height="15.0" fill="rgb(214,44,10)" rx="2" ry="2" />
  1327. <text x="1139.75" y="367.5" ></text>
  1328. </g>
  1329. <g >
  1330. <title>unsigned int std::uniform_int_distribution&lt;unsigned long&gt;::_S_nd&lt;unsigned long, std::mersenne_twister_engine&lt;unsigned long, 32ul, 624ul, 397ul, 31ul, 2567483615ul, 11ul, 4294967295ul, 7ul, 2636928640ul, 15ul, 4022730752ul, 18ul, 1812433253ul&gt;, unsigned int&gt; (571,144,167 samples, 3.50%)</title><rect x="1148.7" y="549" width="41.3" height="15.0" fill="rgb(237,147,35)" rx="2" ry="2" />
  1331. <text x="1151.75" y="559.5" >uns..</text>
  1332. </g>
  1333. <g >
  1334. <title>exc_page_fault (3,280,828 samples, 0.02%)</title><rect x="1143.7" y="213" width="0.2" height="15.0" fill="rgb(212,35,8)" rx="2" ry="2" />
  1335. <text x="1146.66" y="223.5" ></text>
  1336. </g>
  1337. <g >
  1338. <title>handle_mm_fault (6,013,560 samples, 0.04%)</title><rect x="941.4" y="437" width="0.4" height="15.0" fill="rgb(234,135,32)" rx="2" ry="2" />
  1339. <text x="944.41" y="447.5" ></text>
  1340. </g>
  1341. <g >
  1342. <title>mem_cgroup_charge_statistics (1,722,903 samples, 0.01%)</title><rect x="1143.5" y="117" width="0.2" height="15.0" fill="rgb(232,126,30)" rx="2" ry="2" />
  1343. <text x="1146.53" y="127.5" ></text>
  1344. </g>
  1345. <g >
  1346. <title>hrtimer_interrupt (5,146,731 samples, 0.03%)</title><rect x="791.5" y="405" width="0.4" height="15.0" fill="rgb(228,109,26)" rx="2" ry="2" />
  1347. <text x="794.49" y="415.5" ></text>
  1348. </g>
  1349. <g >
  1350. <title>__memcpy (3,104,328 samples, 0.02%)</title><rect x="1140.6" y="197" width="0.2" height="15.0" fill="rgb(230,118,28)" rx="2" ry="2" />
  1351. <text x="1143.61" y="207.5" ></text>
  1352. </g>
  1353. <g >
  1354. <title>do_user_addr_fault (3,280,828 samples, 0.02%)</title><rect x="1143.7" y="197" width="0.2" height="15.0" fill="rgb(228,108,25)" rx="2" ry="2" />
  1355. <text x="1146.66" y="207.5" ></text>
  1356. </g>
  1357. <g >
  1358. <title>dml::submit&lt;dml::hardware, dml::execution_interface&lt;dml::hardware, std::allocator&lt;unsigned char&gt; &gt; &gt; (44,228,686 samples, 0.27%)</title><rect x="1143.5" y="421" width="3.2" height="15.0" fill="rgb(234,134,32)" rx="2" ry="2" />
  1359. <text x="1146.53" y="431.5" ></text>
  1360. </g>
  1361. <g >
  1362. <title>perf_event_alloc (15,574,048 samples, 0.10%)</title><rect x="627.9" y="421" width="1.2" height="15.0" fill="rgb(209,19,4)" rx="2" ry="2" />
  1363. <text x="630.95" y="431.5" ></text>
  1364. </g>
  1365. <g >
  1366. <title>__GI___libc_malloc (22,752,987 samples, 0.14%)</title><rect x="1138.2" y="357" width="1.6" height="15.0" fill="rgb(219,68,16)" rx="2" ry="2" />
  1367. <text x="1141.16" y="367.5" ></text>
  1368. </g>
  1369. <g >
  1370. <title>mas_alloc_nodes (1,585,774 samples, 0.01%)</title><rect x="1146.4" y="85" width="0.1" height="15.0" fill="rgb(215,46,11)" rx="2" ry="2" />
  1371. <text x="1149.35" y="95.5" ></text>
  1372. </g>
  1373. <g >
  1374. <title>do_huge_pmd_anonymous_page (2,494,709,541 samples, 15.27%)</title><rect x="951.1" y="373" width="180.2" height="15.0" fill="rgb(242,172,41)" rx="2" ry="2" />
  1375. <text x="954.14" y="383.5" >do_huge_pmd_anonymous_p..</text>
  1376. </g>
  1377. <g >
  1378. <title>scheduler_tick (5,146,731 samples, 0.03%)</title><rect x="791.5" y="325" width="0.4" height="15.0" fill="rgb(246,190,45)" rx="2" ry="2" />
  1379. <text x="794.49" y="335.5" ></text>
  1380. </g>
  1381. <g >
  1382. <title>mod_memcg_state (2,422,137 samples, 0.01%)</title><rect x="1012.1" y="293" width="0.1" height="15.0" fill="rgb(232,127,30)" rx="2" ry="2" />
  1383. <text x="1015.07" y="303.5" ></text>
  1384. </g>
  1385. <g >
  1386. <title>syscall (2,285,719 samples, 0.01%)</title><rect x="10.0" y="549" width="0.2" height="15.0" fill="rgb(234,136,32)" rx="2" ry="2" />
  1387. <text x="13.01" y="559.5" ></text>
  1388. </g>
  1389. <g >
  1390. <title>free_tail_page_prepare (12,096,311 samples, 0.07%)</title><rect x="10.9" y="293" width="0.9" height="15.0" fill="rgb(251,211,50)" rx="2" ry="2" />
  1391. <text x="13.94" y="303.5" ></text>
  1392. </g>
  1393. <g >
  1394. <title>tick_sched_handle (1,541,693 samples, 0.01%)</title><rect x="1011.0" y="229" width="0.1" height="15.0" fill="rgb(219,68,16)" rx="2" ry="2" />
  1395. <text x="1014.00" y="239.5" ></text>
  1396. </g>
  1397. <g >
  1398. <title>__alloc_pages (1,694,345 samples, 0.01%)</title><rect x="31.1" y="245" width="0.1" height="15.0" fill="rgb(233,129,30)" rx="2" ry="2" />
  1399. <text x="34.05" y="255.5" ></text>
  1400. </g>
  1401. <g >
  1402. <title>__GI___libc_read (21,636,096 samples, 0.13%)</title><rect x="1139.8" y="389" width="1.6" height="15.0" fill="rgb(241,166,39)" rx="2" ry="2" />
  1403. <text x="1142.81" y="399.5" ></text>
  1404. </g>
  1405. <g >
  1406. <title>do_vmi_munmap (18,146,766 samples, 0.11%)</title><rect x="10.7" y="421" width="1.3" height="15.0" fill="rgb(253,223,53)" rx="2" ry="2" />
  1407. <text x="13.69" y="431.5" ></text>
  1408. </g>
  1409. <g >
  1410. <title>__mmu_notifier_invalidate_range_end (9,653,225 samples, 0.06%)</title><rect x="1148.0" y="421" width="0.7" height="15.0" fill="rgb(207,11,2)" rx="2" ry="2" />
  1411. <text x="1151.00" y="431.5" ></text>
  1412. </g>
  1413. <g >
  1414. <title>__folio_alloc (11,611,654 samples, 0.07%)</title><rect x="950.2" y="341" width="0.8" height="15.0" fill="rgb(224,91,21)" rx="2" ry="2" />
  1415. <text x="953.20" y="351.5" ></text>
  1416. </g>
  1417. <g >
  1418. <title>Sum&lt;unsigned long&gt;::simd_agg (757,239,970 samples, 4.63%)</title><rect x="737.2" y="485" width="54.7" height="15.0" fill="rgb(228,107,25)" rx="2" ry="2" />
  1419. <text x="740.17" y="495.5" >Sum&lt;u..</text>
  1420. </g>
  1421. <g >
  1422. <title>vfs_read (19,372,267 samples, 0.12%)</title><rect x="1140.0" y="325" width="1.4" height="15.0" fill="rgb(224,88,21)" rx="2" ry="2" />
  1423. <text x="1142.97" y="335.5" ></text>
  1424. </g>
  1425. <g >
  1426. <title>__GI_exit (2,515,698 samples, 0.02%)</title><rect x="10.5" y="517" width="0.2" height="15.0" fill="rgb(236,147,35)" rx="2" ry="2" />
  1427. <text x="13.51" y="527.5" ></text>
  1428. </g>
  1429. <g >
  1430. <title>tick_sched_handle (1,460,612 samples, 0.01%)</title><rect x="1131.1" y="181" width="0.1" height="15.0" fill="rgb(219,68,16)" rx="2" ry="2" />
  1431. <text x="1134.10" y="191.5" ></text>
  1432. </g>
  1433. <g >
  1434. <title>inherit_task_group.isra.0 (19,899,347 samples, 0.12%)</title><rect x="627.6" y="453" width="1.5" height="15.0" fill="rgb(212,32,7)" rx="2" ry="2" />
  1435. <text x="630.64" y="463.5" ></text>
  1436. </g>
  1437. <g >
  1438. <title>do_anonymous_page (38,255,303 samples, 0.23%)</title><rect x="948.4" y="373" width="2.7" height="15.0" fill="rgb(238,155,37)" rx="2" ry="2" />
  1439. <text x="951.37" y="383.5" ></text>
  1440. </g>
  1441. <g >
  1442. <title>mem_cgroup_charge_statistics (3,814,030 samples, 0.02%)</title><rect x="948.5" y="325" width="0.3" height="15.0" fill="rgb(232,126,30)" rx="2" ry="2" />
  1443. <text x="951.49" y="335.5" ></text>
  1444. </g>
  1445. <g >
  1446. <title>__GI___libc_read (1,524,427 samples, 0.01%)</title><rect x="1147.1" y="197" width="0.1" height="15.0" fill="rgb(241,166,39)" rx="2" ry="2" />
  1447. <text x="1150.13" y="207.5" ></text>
  1448. </g>
  1449. <g >
  1450. <title>entry_SYSCALL_64_after_hwframe (7,728,229 samples, 0.05%)</title><rect x="820.5" y="453" width="0.5" height="15.0" fill="rgb(218,63,15)" rx="2" ry="2" />
  1451. <text x="823.47" y="463.5" ></text>
  1452. </g>
  1453. <g >
  1454. <title>entry_SYSCALL_64_after_hwframe (1,728,623 samples, 0.01%)</title><rect x="10.5" y="453" width="0.1" height="15.0" fill="rgb(218,63,15)" rx="2" ry="2" />
  1455. <text x="13.51" y="463.5" ></text>
  1456. </g>
  1457. <g >
  1458. <title>perf_iterate_ctx (6,351,246 samples, 0.04%)</title><rect x="1145.9" y="85" width="0.5" height="15.0" fill="rgb(205,4,0)" rx="2" ry="2" />
  1459. <text x="1148.89" y="95.5" ></text>
  1460. </g>
  1461. <g >
  1462. <title>get_page_from_freelist (1,638,023,280 samples, 10.03%)</title><rect x="1012.9" y="309" width="118.4" height="15.0" fill="rgb(252,218,52)" rx="2" ry="2" />
  1463. <text x="1015.95" y="319.5" >get_page_from_..</text>
  1464. </g>
  1465. <g >
  1466. <title>do_madvise (9,653,225 samples, 0.06%)</title><rect x="1148.0" y="453" width="0.7" height="15.0" fill="rgb(224,88,21)" rx="2" ry="2" />
  1467. <text x="1151.00" y="463.5" ></text>
  1468. </g>
  1469. <g >
  1470. <title>accfg_device_get_first (1,487,221 samples, 0.01%)</title><rect x="1146.7" y="325" width="0.1" height="15.0" fill="rgb(228,108,25)" rx="2" ry="2" />
  1471. <text x="1149.73" y="335.5" ></text>
  1472. </g>
  1473. <g >
  1474. <title>get_page_from_freelist (1,479,835,396 samples, 9.06%)</title><rect x="328.5" y="341" width="106.9" height="15.0" fill="rgb(252,218,52)" rx="2" ry="2" />
  1475. <text x="331.50" y="351.5" >get_page_from..</text>
  1476. </g>
  1477. <g >
  1478. <title>x86_pmu_event_init (6,918,889 samples, 0.04%)</title><rect x="628.6" y="389" width="0.5" height="15.0" fill="rgb(209,21,5)" rx="2" ry="2" />
  1479. <text x="631.57" y="399.5" ></text>
  1480. </g>
  1481. <g >
  1482. <title>do_user_addr_fault (1,830,044,679 samples, 11.20%)</title><rect x="303.2" y="453" width="132.2" height="15.0" fill="rgb(228,108,25)" rx="2" ry="2" />
  1483. <text x="306.21" y="463.5" >do_user_addr_fault</text>
  1484. </g>
  1485. <g >
  1486. <title>__mmu_notifier_invalidate_range (1,729,045 samples, 0.01%)</title><rect x="10.7" y="357" width="0.1" height="15.0" fill="rgb(230,115,27)" rx="2" ry="2" />
  1487. <text x="13.69" y="367.5" ></text>
  1488. </g>
  1489. <g >
  1490. <title>update_load_avg (1,445,866 samples, 0.01%)</title><rect x="942.4" y="325" width="0.1" height="15.0" fill="rgb(240,165,39)" rx="2" ry="2" />
  1491. <text x="945.40" y="335.5" ></text>
  1492. </g>
  1493. <g >
  1494. <title>exc_page_fault (1,722,903 samples, 0.01%)</title><rect x="1143.5" y="229" width="0.2" height="15.0" fill="rgb(212,35,8)" rx="2" ry="2" />
  1495. <text x="1146.53" y="239.5" ></text>
  1496. </g>
  1497. <g >
  1498. <title>memcg_slab_post_alloc_hook (1,486,139 samples, 0.01%)</title><rect x="1140.0" y="261" width="0.1" height="15.0" fill="rgb(234,135,32)" rx="2" ry="2" />
  1499. <text x="1143.02" y="271.5" ></text>
  1500. </g>
  1501. <g >
  1502. <title>__mod_zone_page_state (1,731,117 samples, 0.01%)</title><rect x="23.6" y="117" width="0.1" height="15.0" fill="rgb(221,74,17)" rx="2" ry="2" />
  1503. <text x="26.62" y="127.5" ></text>
  1504. </g>
  1505. <g >
  1506. <title>mbind_range (3,444,002 samples, 0.02%)</title><rect x="1136.8" y="341" width="0.3" height="15.0" fill="rgb(236,144,34)" rx="2" ry="2" />
  1507. <text x="1139.81" y="351.5" ></text>
  1508. </g>
  1509. <g >
  1510. <title>__fput (5,918,508 samples, 0.04%)</title><rect x="1137.5" y="309" width="0.4" height="15.0" fill="rgb(248,200,47)" rx="2" ry="2" />
  1511. <text x="1140.51" y="319.5" ></text>
  1512. </g>
  1513. <g >
  1514. <title>update_process_times (1,460,612 samples, 0.01%)</title><rect x="1131.1" y="165" width="0.1" height="15.0" fill="rgb(250,209,50)" rx="2" ry="2" />
  1515. <text x="1134.10" y="175.5" ></text>
  1516. </g>
  1517. <g >
  1518. <title>entry_SYSCALL_64_after_hwframe (5,974,528 samples, 0.04%)</title><rect x="1136.7" y="405" width="0.5" height="15.0" fill="rgb(218,63,15)" rx="2" ry="2" />
  1519. <text x="1139.75" y="415.5" ></text>
  1520. </g>
  1521. <g >
  1522. <title>do_vmi_align_munmap (259,486,254 samples, 1.59%)</title><rect x="12.1" y="245" width="18.7" height="15.0" fill="rgb(211,29,7)" rx="2" ry="2" />
  1523. <text x="15.06" y="255.5" ></text>
  1524. </g>
  1525. <g >
  1526. <title>__list_del_entry_valid (1,456,703 samples, 0.01%)</title><rect x="1035.3" y="277" width="0.1" height="15.0" fill="rgb(239,158,37)" rx="2" ry="2" />
  1527. <text x="1038.26" y="287.5" ></text>
  1528. </g>
  1529. <g >
  1530. <title>__mmu_notifier_invalidate_range (76,977,428 samples, 0.47%)</title><rect x="12.5" y="197" width="5.6" height="15.0" fill="rgb(230,115,27)" rx="2" ry="2" />
  1531. <text x="15.50" y="207.5" ></text>
  1532. </g>
  1533. <g >
  1534. <title>vsnprintf (13,571,657 samples, 0.08%)</title><rect x="1140.4" y="213" width="1.0" height="15.0" fill="rgb(240,164,39)" rx="2" ry="2" />
  1535. <text x="1143.39" y="223.5" ></text>
  1536. </g>
  1537. <g >
  1538. <title>void fill_mt&lt;unsigned long&gt; (4,936,796,643 samples, 30.22%)</title><rect x="270.9" y="501" width="356.6" height="15.0" fill="rgb(206,5,1)" rx="2" ry="2" />
  1539. <text x="273.88" y="511.5" >void fill_mt&lt;unsigned long&gt;</text>
  1540. </g>
  1541. <g >
  1542. <title>unmap_region (254,294,478 samples, 1.56%)</title><rect x="12.4" y="229" width="18.4" height="15.0" fill="rgb(219,64,15)" rx="2" ry="2" />
  1543. <text x="15.44" y="239.5" ></text>
  1544. </g>
  1545. <g >
  1546. <title>qi_submit_sync (36,329,554 samples, 0.22%)</title><rect x="24.2" y="149" width="2.6" height="15.0" fill="rgb(239,159,38)" rx="2" ry="2" />
  1547. <text x="27.18" y="159.5" ></text>
  1548. </g>
  1549. <g >
  1550. <title>kmem_cache_alloc (3,054,209 samples, 0.02%)</title><rect x="1136.5" y="309" width="0.2" height="15.0" fill="rgb(225,95,22)" rx="2" ry="2" />
  1551. <text x="1139.46" y="319.5" ></text>
  1552. </g>
  1553. <g >
  1554. <title>asm_exc_page_fault (2,590,206,895 samples, 15.85%)</title><rect x="945.9" y="453" width="187.1" height="15.0" fill="rgb(225,93,22)" rx="2" ry="2" />
  1555. <text x="948.89" y="463.5" >asm_exc_page_fault</text>
  1556. </g>
  1557. <g >
  1558. <title>operator new (44,228,686 samples, 0.27%)</title><rect x="1143.5" y="309" width="3.2" height="15.0" fill="rgb(216,51,12)" rx="2" ry="2" />
  1559. <text x="1146.53" y="319.5" ></text>
  1560. </g>
  1561. <g >
  1562. <title>__memcg_kmem_charge_page (6,224,139 samples, 0.04%)</title><rect x="1012.0" y="325" width="0.5" height="15.0" fill="rgb(217,57,13)" rx="2" ry="2" />
  1563. <text x="1015.04" y="335.5" ></text>
  1564. </g>
  1565. <g >
  1566. <title>__do_sys_newfstatat (1,512,504 samples, 0.01%)</title><rect x="1138.1" y="309" width="0.1" height="15.0" fill="rgb(243,177,42)" rx="2" ry="2" />
  1567. <text x="1141.05" y="319.5" ></text>
  1568. </g>
  1569. <g >
  1570. <title>grow_heap (20,421,763 samples, 0.12%)</title><rect x="1138.3" y="309" width="1.5" height="15.0" fill="rgb(237,151,36)" rx="2" ry="2" />
  1571. <text x="1141.33" y="319.5" ></text>
  1572. </g>
  1573. <g >
  1574. <title>perf_iterate_sb.constprop.0 (6,351,246 samples, 0.04%)</title><rect x="1145.9" y="101" width="0.5" height="15.0" fill="rgb(229,113,27)" rx="2" ry="2" />
  1575. <text x="1148.89" y="111.5" ></text>
  1576. </g>
  1577. <g >
  1578. <title>mas_wr_node_store (1,728,362 samples, 0.01%)</title><rect x="12.3" y="197" width="0.1" height="15.0" fill="rgb(219,66,15)" rx="2" ry="2" />
  1579. <text x="15.31" y="207.5" ></text>
  1580. </g>
  1581. <g >
  1582. <title>devices_init (2,466,668 samples, 0.02%)</title><rect x="10.2" y="549" width="0.2" height="15.0" fill="rgb(209,20,4)" rx="2" ry="2" />
  1583. <text x="13.24" y="559.5" ></text>
  1584. </g>
  1585. <g >
  1586. <title>page_remove_rmap (1,729,498 samples, 0.01%)</title><rect x="30.1" y="181" width="0.1" height="15.0" fill="rgb(252,219,52)" rx="2" ry="2" />
  1587. <text x="33.05" y="191.5" ></text>
  1588. </g>
  1589. <g >
  1590. <title>__sysvec_apic_timer_interrupt (2,714,507 samples, 0.02%)</title><rect x="819.4" y="421" width="0.2" height="15.0" fill="rgb(242,173,41)" rx="2" ry="2" />
  1591. <text x="822.41" y="431.5" ></text>
  1592. </g>
  1593. <g >
  1594. <title>clear_page_erms (778,310,223 samples, 4.76%)</title><rect x="954.9" y="341" width="56.2" height="15.0" fill="rgb(229,113,27)" rx="2" ry="2" />
  1595. <text x="957.90" y="351.5" >clear..</text>
  1596. </g>
  1597. <g >
  1598. <title>do_filp_open (1,537,896 samples, 0.01%)</title><rect x="1146.9" y="117" width="0.2" height="15.0" fill="rgb(211,28,6)" rx="2" ry="2" />
  1599. <text x="1149.94" y="127.5" ></text>
  1600. </g>
  1601. <g >
  1602. <title>__GI_mprotect (39,224,955 samples, 0.24%)</title><rect x="1143.9" y="213" width="2.8" height="15.0" fill="rgb(220,71,17)" rx="2" ry="2" />
  1603. <text x="1146.89" y="223.5" ></text>
  1604. </g>
  1605. <g >
  1606. <title>__strncasecmp_l_evex (2,453,327 samples, 0.02%)</title><rect x="1143.2" y="389" width="0.2" height="15.0" fill="rgb(250,211,50)" rx="2" ry="2" />
  1607. <text x="1146.18" y="399.5" ></text>
  1608. </g>
  1609. <g >
  1610. <title>__vm_munmap (18,146,766 samples, 0.11%)</title><rect x="10.7" y="437" width="1.3" height="15.0" fill="rgb(231,121,28)" rx="2" ry="2" />
  1611. <text x="13.69" y="447.5" ></text>
  1612. </g>
  1613. <g >
  1614. <title>sysvec_apic_timer_interrupt (5,156,974 samples, 0.03%)</title><rect x="791.5" y="437" width="0.4" height="15.0" fill="rgb(220,69,16)" rx="2" ry="2" />
  1615. <text x="794.49" y="447.5" ></text>
  1616. </g>
  1617. <g >
  1618. <title>perf_adjust_freq_unthr_context (5,146,731 samples, 0.03%)</title><rect x="791.5" y="293" width="0.4" height="15.0" fill="rgb(236,146,35)" rx="2" ry="2" />
  1619. <text x="794.49" y="303.5" ></text>
  1620. </g>
  1621. <g >
  1622. <title>update_process_times (1,541,693 samples, 0.01%)</title><rect x="1011.0" y="213" width="0.1" height="15.0" fill="rgb(250,209,50)" rx="2" ry="2" />
  1623. <text x="1014.00" y="223.5" ></text>
  1624. </g>
  1625. <g >
  1626. <title>internal_get_user_pages_fast (2,670,813 samples, 0.02%)</title><rect x="820.5" y="389" width="0.2" height="15.0" fill="rgb(253,223,53)" rx="2" ry="2" />
  1627. <text x="823.51" y="399.5" ></text>
  1628. </g>
  1629. <g >
  1630. <title>dml::core::dispatcher::hw_dispatcher::~hw_dispatcher (1,728,623 samples, 0.01%)</title><rect x="10.5" y="485" width="0.1" height="15.0" fill="rgb(249,206,49)" rx="2" ry="2" />
  1631. <text x="13.51" y="495.5" ></text>
  1632. </g>
  1633. <g >
  1634. <title>sync_regs (12,011,565 samples, 0.07%)</title><rect x="1132.1" y="437" width="0.9" height="15.0" fill="rgb(228,106,25)" rx="2" ry="2" />
  1635. <text x="1135.10" y="447.5" ></text>
  1636. </g>
  1637. <g >
  1638. <title>qi_flush_piotlb (10,974,190 samples, 0.07%)</title><rect x="1139.0" y="149" width="0.7" height="15.0" fill="rgb(251,215,51)" rx="2" ry="2" />
  1639. <text x="1141.95" y="159.5" ></text>
  1640. </g>
  1641. <g >
  1642. <title>__x64_sys_openat (18,616,272 samples, 0.11%)</title><rect x="1141.6" y="341" width="1.3" height="15.0" fill="rgb(251,215,51)" rx="2" ry="2" />
  1643. <text x="1144.55" y="351.5" ></text>
  1644. </g>
  1645. <g >
  1646. <title>do_dentry_open (2,033,850 samples, 0.01%)</title><rect x="1142.0" y="277" width="0.1" height="15.0" fill="rgb(243,175,41)" rx="2" ry="2" />
  1647. <text x="1144.98" y="287.5" ></text>
  1648. </g>
  1649. <g >
  1650. <title>dml::core::dispatcher::hw_queue::initialize_new_queue (1,537,469 samples, 0.01%)</title><rect x="1147.5" y="309" width="0.1" height="15.0" fill="rgb(211,31,7)" rx="2" ry="2" />
  1651. <text x="1150.46" y="319.5" ></text>
  1652. </g>
  1653. <g >
  1654. <title>task_tick_fair (1,445,866 samples, 0.01%)</title><rect x="942.4" y="341" width="0.1" height="15.0" fill="rgb(217,57,13)" rx="2" ry="2" />
  1655. <text x="945.40" y="351.5" ></text>
  1656. </g>
  1657. <g >
  1658. <title>memcg_account_kmem (2,422,137 samples, 0.01%)</title><rect x="1012.1" y="309" width="0.1" height="15.0" fill="rgb(230,115,27)" rx="2" ry="2" />
  1659. <text x="1015.07" y="319.5" ></text>
  1660. </g>
  1661. <g >
  1662. <title>__GI___libc_malloc (2,231,659 samples, 0.01%)</title><rect x="1147.8" y="341" width="0.1" height="15.0" fill="rgb(219,68,16)" rx="2" ry="2" />
  1663. <text x="1150.78" y="351.5" ></text>
  1664. </g>
  1665. <g >
  1666. <title>__fopen_internal (20,850,721 samples, 0.13%)</title><rect x="1141.6" y="437" width="1.5" height="15.0" fill="rgb(248,197,47)" rx="2" ry="2" />
  1667. <text x="1144.55" y="447.5" ></text>
  1668. </g>
  1669. <g >
  1670. <title>__sysvec_apic_timer_interrupt (5,146,731 samples, 0.03%)</title><rect x="791.5" y="421" width="0.4" height="15.0" fill="rgb(242,173,41)" rx="2" ry="2" />
  1671. <text x="794.49" y="431.5" ></text>
  1672. </g>
  1673. <g >
  1674. <title>dml::handler&lt;dml::mem_copy_operation, dml::execution_interface&lt;dml::hardware, std::allocator&lt;unsigned char&gt; &gt;::allocator_type&gt; dml::submit&lt;dml::hardware, dml::execution_interface&lt;dml::hardware, std::allocator&lt;unsigned char&gt; &gt; &gt; (57,276,083 samples, 0.35%)</title><rect x="1143.5" y="453" width="4.2" height="15.0" fill="rgb(252,219,52)" rx="2" ry="2" />
  1675. <text x="1146.53" y="463.5" ></text>
  1676. </g>
  1677. <g >
  1678. <title>do_vmi_munmap (1,728,623 samples, 0.01%)</title><rect x="10.5" y="389" width="0.1" height="15.0" fill="rgb(253,223,53)" rx="2" ry="2" />
  1679. <text x="13.51" y="399.5" ></text>
  1680. </g>
  1681. <g >
  1682. <title>syscall (5,974,528 samples, 0.04%)</title><rect x="1136.7" y="421" width="0.5" height="15.0" fill="rgb(234,136,32)" rx="2" ry="2" />
  1683. <text x="1139.75" y="431.5" ></text>
  1684. </g>
  1685. <g >
  1686. <title>kernel_get_mempolicy (5,075,534 samples, 0.03%)</title><rect x="820.5" y="405" width="0.3" height="15.0" fill="rgb(229,114,27)" rx="2" ry="2" />
  1687. <text x="823.47" y="415.5" ></text>
  1688. </g>
  1689. <g >
  1690. <title>__kmem_cache_alloc_node (2,093,173 samples, 0.01%)</title><rect x="1140.0" y="277" width="0.2" height="15.0" fill="rgb(208,16,4)" rx="2" ry="2" />
  1691. <text x="1143.02" y="287.5" ></text>
  1692. </g>
  1693. <g >
  1694. <title>mtree_load (1,843,021 samples, 0.01%)</title><rect x="820.7" y="389" width="0.1" height="15.0" fill="rgb(217,58,14)" rx="2" ry="2" />
  1695. <text x="823.70" y="399.5" ></text>
  1696. </g>
  1697. <g >
  1698. <title>arch_get_unmapped_area_topdown (1,563,935 samples, 0.01%)</title><rect x="1133.1" y="325" width="0.1" height="15.0" fill="rgb(250,208,49)" rx="2" ry="2" />
  1699. <text x="1136.09" y="335.5" ></text>
  1700. </g>
  1701. <g >
  1702. <title>mod_objcg_state (1,543,680 samples, 0.01%)</title><rect x="1137.8" y="245" width="0.1" height="15.0" fill="rgb(208,16,3)" rx="2" ry="2" />
  1703. <text x="1140.76" y="255.5" ></text>
  1704. </g>
  1705. <g >
  1706. <title>do_syscall_64 (9,653,225 samples, 0.06%)</title><rect x="1148.0" y="485" width="0.7" height="15.0" fill="rgb(209,20,4)" rx="2" ry="2" />
  1707. <text x="1151.00" y="495.5" ></text>
  1708. </g>
  1709. <g >
  1710. <title>tick_sched_handle (5,146,731 samples, 0.03%)</title><rect x="791.5" y="357" width="0.4" height="15.0" fill="rgb(219,68,16)" rx="2" ry="2" />
  1711. <text x="794.49" y="367.5" ></text>
  1712. </g>
  1713. <g >
  1714. <title>__GI___libc_read (1,524,427 samples, 0.01%)</title><rect x="1147.1" y="181" width="0.1" height="15.0" fill="rgb(241,166,39)" rx="2" ry="2" />
  1715. <text x="1150.13" y="191.5" ></text>
  1716. </g>
  1717. <g >
  1718. <title>__GI___libc_malloc (3,431,863 samples, 0.02%)</title><rect x="943.2" y="325" width="0.3" height="15.0" fill="rgb(219,68,16)" rx="2" ry="2" />
  1719. <text x="946.24" y="335.5" ></text>
  1720. </g>
  1721. <g >
  1722. <title>__GI___getdelim (49,290,423 samples, 0.30%)</title><rect x="1137.9" y="437" width="3.6" height="15.0" fill="rgb(219,65,15)" rx="2" ry="2" />
  1723. <text x="1140.93" y="447.5" ></text>
  1724. </g>
  1725. <g >
  1726. <title>__libc_open64 (19,250,418 samples, 0.12%)</title><rect x="1141.6" y="389" width="1.3" height="15.0" fill="rgb(235,140,33)" rx="2" ry="2" />
  1727. <text x="1144.55" y="399.5" ></text>
  1728. </g>
  1729. <g >
  1730. <title>mmap_region (48,171,543 samples, 0.29%)</title><rect x="1133.3" y="341" width="3.4" height="15.0" fill="rgb(231,121,28)" rx="2" ry="2" />
  1731. <text x="1136.27" y="351.5" ></text>
  1732. </g>
  1733. <g >
  1734. <title>__libc_start_call_main (8,541,764,204 samples, 52.28%)</title><rect x="10.5" y="533" width="617.0" height="15.0" fill="rgb(210,26,6)" rx="2" ry="2" />
  1735. <text x="13.51" y="543.5" >__libc_start_call_main</text>
  1736. </g>
  1737. <g >
  1738. <title>dml::detail::ml::task&lt;std::allocator&lt;unsigned char&gt; &gt;::task (44,228,686 samples, 0.27%)</title><rect x="1143.5" y="389" width="3.2" height="15.0" fill="rgb(224,90,21)" rx="2" ry="2" />
  1739. <text x="1146.53" y="399.5" ></text>
  1740. </g>
  1741. <g >
  1742. <title>perf_try_init_event (6,918,889 samples, 0.04%)</title><rect x="628.6" y="405" width="0.5" height="15.0" fill="rgb(240,161,38)" rx="2" ry="2" />
  1743. <text x="631.57" y="415.5" ></text>
  1744. </g>
  1745. <g >
  1746. <title>handle_mm_fault (3,280,828 samples, 0.02%)</title><rect x="1143.7" y="181" width="0.2" height="15.0" fill="rgb(234,135,32)" rx="2" ry="2" />
  1747. <text x="1146.66" y="191.5" ></text>
  1748. </g>
  1749. <g >
  1750. <title>__strcasestr (4,045,089 samples, 0.02%)</title><rect x="1143.1" y="421" width="0.3" height="15.0" fill="rgb(217,56,13)" rx="2" ry="2" />
  1751. <text x="1146.06" y="431.5" ></text>
  1752. </g>
  1753. <g >
  1754. <title>__x64_sys_mprotect (38,464,959 samples, 0.24%)</title><rect x="1143.9" y="165" width="2.8" height="15.0" fill="rgb(209,21,5)" rx="2" ry="2" />
  1755. <text x="1146.95" y="175.5" ></text>
  1756. </g>
  1757. <g >
  1758. <title>dsacache::Cache::AllocOnNode (2,768,859,594 samples, 16.95%)</title><rect x="943.5" y="469" width="200.0" height="15.0" fill="rgb(234,133,32)" rx="2" ry="2" />
  1759. <text x="946.55" y="479.5" >dsacache::Cache::AllocOnNode</text>
  1760. </g>
  1761. <g >
  1762. <title>__hrtimer_run_queues (1,541,693 samples, 0.01%)</title><rect x="1011.0" y="261" width="0.1" height="15.0" fill="rgb(237,150,35)" rx="2" ry="2" />
  1763. <text x="1014.00" y="271.5" ></text>
  1764. </g>
  1765. <g >
  1766. <title>numa_node_to_cpus (2,584,213 samples, 0.02%)</title><rect x="942.6" y="453" width="0.2" height="15.0" fill="rgb(221,74,17)" rx="2" ry="2" />
  1767. <text x="945.63" y="463.5" ></text>
  1768. </g>
  1769. <g >
  1770. <title>std::__new_allocator&lt;dml::detail::ml::utils::structure_from&lt;dml::detail::descriptor, dml::detail::completion_record&gt; &gt;::allocate (44,228,686 samples, 0.27%)</title><rect x="1143.5" y="325" width="3.2" height="15.0" fill="rgb(248,201,48)" rx="2" ry="2" />
  1771. <text x="1146.53" y="335.5" ></text>
  1772. </g>
  1773. <g >
  1774. <title>charge_memcg (2,596,328 samples, 0.02%)</title><rect x="303.6" y="373" width="0.2" height="15.0" fill="rgb(242,170,40)" rx="2" ry="2" />
  1775. <text x="306.58" y="383.5" ></text>
  1776. </g>
  1777. <g >
  1778. <title>entry_SYSCALL_64_after_hwframe (18,146,766 samples, 0.11%)</title><rect x="10.7" y="485" width="1.3" height="15.0" fill="rgb(218,63,15)" rx="2" ry="2" />
  1779. <text x="13.69" y="495.5" ></text>
  1780. </g>
  1781. <g >
  1782. <title>kvfree_call_rcu (2,652,940 samples, 0.02%)</title><rect x="1137.5" y="261" width="0.2" height="15.0" fill="rgb(239,157,37)" rx="2" ry="2" />
  1783. <text x="1140.51" y="271.5" ></text>
  1784. </g>
  1785. <g >
  1786. <title>unsigned long std::uniform_int_distribution&lt;unsigned long&gt;::operator (2,657,438,501 samples, 16.27%)</title><rect x="435.5" y="485" width="192.0" height="15.0" fill="rgb(252,216,51)" rx="2" ry="2" />
  1787. <text x="438.51" y="495.5" >unsigned long std::unifor..</text>
  1788. </g>
  1789. <g >
  1790. <title>perf_adjust_freq_unthr_context (1,626,903 samples, 0.01%)</title><rect x="819.5" y="293" width="0.1" height="15.0" fill="rgb(236,146,35)" rx="2" ry="2" />
  1791. <text x="822.49" y="303.5" ></text>
  1792. </g>
  1793. <g >
  1794. <title>unsigned int std::uniform_int_distribution&lt;unsigned long&gt;::_S_nd&lt;unsigned long, std::mersenne_twister_engine&lt;unsigned long, 32ul, 624ul, 397ul, 31ul, 2567483615ul, 11ul, 4294967295ul, 7ul, 2636928640ul, 15ul, 4022730752ul, 18ul, 1812433253ul&gt;, unsigned int&gt; (1,671,517,566 samples, 10.23%)</title><rect x="506.7" y="453" width="120.8" height="15.0" fill="rgb(237,147,35)" rx="2" ry="2" />
  1795. <text x="509.72" y="463.5" >unsigned int st..</text>
  1796. </g>
  1797. <g >
  1798. <title>lru_gen_add_folio (2,065,739 samples, 0.01%)</title><rect x="949.6" y="309" width="0.2" height="15.0" fill="rgb(216,53,12)" rx="2" ry="2" />
  1799. <text x="952.61" y="319.5" ></text>
  1800. </g>
  1801. <g >
  1802. <title>krc_this_cpu_lock (1,791,831 samples, 0.01%)</title><rect x="1137.6" y="245" width="0.1" height="15.0" fill="rgb(248,200,48)" rx="2" ry="2" />
  1803. <text x="1140.57" y="255.5" ></text>
  1804. </g>
  1805. <g >
  1806. <title>perf_event_task_tick (5,671,208 samples, 0.03%)</title><rect x="942.0" y="341" width="0.4" height="15.0" fill="rgb(205,3,0)" rx="2" ry="2" />
  1807. <text x="944.99" y="351.5" ></text>
  1808. </g>
  1809. <g >
  1810. <title>two_way_short_needle (3,184,226 samples, 0.02%)</title><rect x="1143.1" y="405" width="0.3" height="15.0" fill="rgb(231,120,28)" rx="2" ry="2" />
  1811. <text x="1146.12" y="415.5" ></text>
  1812. </g>
  1813. <g >
  1814. <title>do_anonymous_page (2,598,122 samples, 0.02%)</title><rect x="303.3" y="405" width="0.2" height="15.0" fill="rgb(238,155,37)" rx="2" ry="2" />
  1815. <text x="306.27" y="415.5" ></text>
  1816. </g>
  1817. <g >
  1818. <title>tick_sched_timer (2,714,507 samples, 0.02%)</title><rect x="819.4" y="373" width="0.2" height="15.0" fill="rgb(254,227,54)" rx="2" ry="2" />
  1819. <text x="822.41" y="383.5" ></text>
  1820. </g>
  1821. <g >
  1822. <title>scheduler_tick (1,541,693 samples, 0.01%)</title><rect x="1011.0" y="197" width="0.1" height="15.0" fill="rgb(246,190,45)" rx="2" ry="2" />
  1823. <text x="1014.00" y="207.5" ></text>
  1824. </g>
  1825. <g >
  1826. <title>asm_sysvec_apic_timer_interrupt (1,415,984 samples, 0.01%)</title><rect x="1035.4" y="293" width="0.1" height="15.0" fill="rgb(232,127,30)" rx="2" ry="2" />
  1827. <text x="1038.43" y="303.5" ></text>
  1828. </g>
  1829. <g >
  1830. <title>hrtimer_interrupt (2,777,240 samples, 0.02%)</title><rect x="270.7" y="437" width="0.2" height="15.0" fill="rgb(228,109,26)" rx="2" ry="2" />
  1831. <text x="273.68" y="447.5" ></text>
  1832. </g>
  1833. <g >
  1834. <title>check_preemption_disabled (1,713,789 samples, 0.01%)</title><rect x="1012.2" y="293" width="0.2" height="15.0" fill="rgb(220,73,17)" rx="2" ry="2" />
  1835. <text x="1015.25" y="303.5" ></text>
  1836. </g>
  1837. <g >
  1838. <title>__GI_madvise (9,653,225 samples, 0.06%)</title><rect x="1148.0" y="517" width="0.7" height="15.0" fill="rgb(229,113,27)" rx="2" ry="2" />
  1839. <text x="1151.00" y="527.5" ></text>
  1840. </g>
  1841. <g >
  1842. <title>perf_event_task_tick (5,492,973 samples, 0.03%)</title><rect x="819.7" y="341" width="0.4" height="15.0" fill="rgb(205,3,0)" rx="2" ry="2" />
  1843. <text x="822.68" y="351.5" ></text>
  1844. </g>
  1845. <g >
  1846. <title>intel_invalidate_range (76,977,428 samples, 0.47%)</title><rect x="12.5" y="181" width="5.6" height="15.0" fill="rgb(228,107,25)" rx="2" ry="2" />
  1847. <text x="15.50" y="191.5" ></text>
  1848. </g>
  1849. <g >
  1850. <title>sysvec_apic_timer_interrupt (1,415,984 samples, 0.01%)</title><rect x="1035.4" y="277" width="0.1" height="15.0" fill="rgb(220,69,16)" rx="2" ry="2" />
  1851. <text x="1038.43" y="287.5" ></text>
  1852. </g>
  1853. <g >
  1854. <title>unmap_vmas (1,728,623 samples, 0.01%)</title><rect x="10.5" y="341" width="0.1" height="15.0" fill="rgb(243,176,42)" rx="2" ry="2" />
  1855. <text x="13.51" y="351.5" ></text>
  1856. </g>
  1857. <g >
  1858. <title>intel_cpuc_finish (1,730,138 samples, 0.01%)</title><rect x="628.9" y="373" width="0.2" height="15.0" fill="rgb(248,200,48)" rx="2" ry="2" />
  1859. <text x="631.95" y="383.5" ></text>
  1860. </g>
  1861. <g >
  1862. <title>down_read (1,551,814 samples, 0.01%)</title><rect x="1142.4" y="213" width="0.1" height="15.0" fill="rgb(246,188,45)" rx="2" ry="2" />
  1863. <text x="1145.41" y="223.5" ></text>
  1864. </g>
  1865. <g >
  1866. <title>hrtimer_interrupt (2,714,507 samples, 0.02%)</title><rect x="819.4" y="405" width="0.2" height="15.0" fill="rgb(228,109,26)" rx="2" ry="2" />
  1867. <text x="822.41" y="415.5" ></text>
  1868. </g>
  1869. <g >
  1870. <title>down_write (2,822,695 samples, 0.02%)</title><rect x="1146.5" y="85" width="0.2" height="15.0" fill="rgb(222,79,18)" rx="2" ry="2" />
  1871. <text x="1149.52" y="95.5" ></text>
  1872. </g>
  1873. <g >
  1874. <title>vma_alloc_folio (1,479,835,396 samples, 9.06%)</title><rect x="328.5" y="389" width="106.9" height="15.0" fill="rgb(245,187,44)" rx="2" ry="2" />
  1875. <text x="331.50" y="399.5" >vma_alloc_folio</text>
  1876. </g>
  1877. <g >
  1878. <title>release_pages (84,766,385 samples, 0.52%)</title><rect x="18.1" y="181" width="6.1" height="15.0" fill="rgb(228,106,25)" rx="2" ry="2" />
  1879. <text x="21.06" y="191.5" ></text>
  1880. </g>
  1881. <g >
  1882. <title>_IO_new_file_close_it (6,690,044 samples, 0.04%)</title><rect x="1137.4" y="421" width="0.5" height="15.0" fill="rgb(216,54,13)" rx="2" ry="2" />
  1883. <text x="1140.45" y="431.5" ></text>
  1884. </g>
  1885. <g >
  1886. <title>std::mersenne_twister_engine&lt;unsigned long, 32ul, 624ul, 397ul, 31ul, 2567483615ul, 11ul, 4294967295ul, 7ul, 2636928640ul, 15ul, 4022730752ul, 18ul, 1812433253ul&gt;::operator (571,144,167 samples, 3.50%)</title><rect x="1148.7" y="533" width="41.3" height="15.0" fill="rgb(235,139,33)" rx="2" ry="2" />
  1887. <text x="1151.75" y="543.5" >std..</text>
  1888. </g>
  1889. <g >
  1890. <title>qi_submit_sync (44,113,272 samples, 0.27%)</title><rect x="14.9" y="149" width="3.2" height="15.0" fill="rgb(239,159,38)" rx="2" ry="2" />
  1891. <text x="17.87" y="159.5" ></text>
  1892. </g>
  1893. <g >
  1894. <title>std::__new_allocator&lt;std::__detail::_Hash_node&lt;std::pair&lt;unsigned char* const, dsacache::CacheData&gt;, false&gt; &gt;::allocate (2,231,659 samples, 0.01%)</title><rect x="1147.8" y="373" width="0.1" height="15.0" fill="rgb(240,161,38)" rx="2" ry="2" />
  1895. <text x="1150.78" y="383.5" ></text>
  1896. </g>
  1897. <g >
  1898. <title>__hrtimer_run_queues (2,777,240 samples, 0.02%)</title><rect x="270.7" y="421" width="0.2" height="15.0" fill="rgb(237,150,35)" rx="2" ry="2" />
  1899. <text x="273.68" y="431.5" ></text>
  1900. </g>
  1901. <g >
  1902. <title>inode_permission (1,722,389 samples, 0.01%)</title><rect x="1142.1" y="261" width="0.2" height="15.0" fill="rgb(208,18,4)" rx="2" ry="2" />
  1903. <text x="1145.13" y="271.5" ></text>
  1904. </g>
  1905. <g >
  1906. <title>numa_node_of_cpu (4,248,901 samples, 0.03%)</title><rect x="942.5" y="469" width="0.3" height="15.0" fill="rgb(254,227,54)" rx="2" ry="2" />
  1907. <text x="945.51" y="479.5" ></text>
  1908. </g>
  1909. <g >
  1910. <title>clone3 (7,216,796,516 samples, 44.17%)</title><rect x="627.5" y="565" width="521.2" height="15.0" fill="rgb(216,54,12)" rx="2" ry="2" />
  1911. <text x="630.45" y="575.5" >clone3</text>
  1912. </g>
  1913. <g >
  1914. <title>qi_submit_sync (10,837,698 samples, 0.07%)</title><rect x="1143.9" y="53" width="0.8" height="15.0" fill="rgb(239,159,38)" rx="2" ry="2" />
  1915. <text x="1146.95" y="63.5" ></text>
  1916. </g>
  1917. <g >
  1918. <title>__x64_sys_openat (2,565,568 samples, 0.02%)</title><rect x="1146.9" y="149" width="0.2" height="15.0" fill="rgb(251,215,51)" rx="2" ry="2" />
  1919. <text x="1149.94" y="159.5" ></text>
  1920. </g>
  1921. <g >
  1922. <title>folio_batch_move_lru (4,953,093 samples, 0.03%)</title><rect x="949.4" y="341" width="0.4" height="15.0" fill="rgb(207,10,2)" rx="2" ry="2" />
  1923. <text x="952.45" y="351.5" ></text>
  1924. </g>
  1925. <g >
  1926. <title>hrtimer_interrupt (1,541,693 samples, 0.01%)</title><rect x="1011.0" y="277" width="0.1" height="15.0" fill="rgb(228,109,26)" rx="2" ry="2" />
  1927. <text x="1014.00" y="287.5" ></text>
  1928. </g>
  1929. <g >
  1930. <title>__x64_sys_get_mempolicy (5,075,534 samples, 0.03%)</title><rect x="820.5" y="421" width="0.3" height="15.0" fill="rgb(252,217,51)" rx="2" ry="2" />
  1931. <text x="823.47" y="431.5" ></text>
  1932. </g>
  1933. <g >
  1934. <title>__GI_mprotect (20,421,763 samples, 0.12%)</title><rect x="1138.3" y="293" width="1.5" height="15.0" fill="rgb(220,71,17)" rx="2" ry="2" />
  1935. <text x="1141.33" y="303.5" ></text>
  1936. </g>
  1937. <g >
  1938. <title>dml::core::dispatcher::hw_dispatcher::get_instance (12,186,558 samples, 0.07%)</title><rect x="1146.7" y="373" width="0.9" height="15.0" fill="rgb(243,178,42)" rx="2" ry="2" />
  1939. <text x="1149.73" y="383.5" ></text>
  1940. </g>
  1941. <g >
  1942. <title>__kmem_cache_free (2,404,641 samples, 0.01%)</title><rect x="1137.8" y="261" width="0.1" height="15.0" fill="rgb(226,99,23)" rx="2" ry="2" />
  1943. <text x="1140.76" y="271.5" ></text>
  1944. </g>
  1945. <g >
  1946. <title>do_user_addr_fault (6,013,560 samples, 0.04%)</title><rect x="941.4" y="453" width="0.4" height="15.0" fill="rgb(228,108,25)" rx="2" ry="2" />
  1947. <text x="944.41" y="463.5" ></text>
  1948. </g>
  1949. <g >
  1950. <title>get_mem_cgroup_from_mm (3,711,864 samples, 0.02%)</title><rect x="951.6" y="341" width="0.3" height="15.0" fill="rgb(218,61,14)" rx="2" ry="2" />
  1951. <text x="954.60" y="351.5" ></text>
  1952. </g>
  1953. <g >
  1954. <title>tick_sched_timer (2,777,240 samples, 0.02%)</title><rect x="270.7" y="405" width="0.2" height="15.0" fill="rgb(254,227,54)" rx="2" ry="2" />
  1955. <text x="273.68" y="415.5" ></text>
  1956. </g>
  1957. <g >
  1958. <title>path_openat (1,537,896 samples, 0.01%)</title><rect x="1146.9" y="101" width="0.2" height="15.0" fill="rgb(249,202,48)" rx="2" ry="2" />
  1959. <text x="1149.94" y="111.5" ></text>
  1960. </g>
  1961. <g >
  1962. <title>dml::core::dispatcher::hw_device::initialize_new_device (10,229,766 samples, 0.06%)</title><rect x="1146.8" y="325" width="0.8" height="15.0" fill="rgb(242,174,41)" rx="2" ry="2" />
  1963. <text x="1149.83" y="335.5" ></text>
  1964. </g>
  1965. <g >
  1966. <title>free_pcppages_bulk (4,326,961 samples, 0.03%)</title><rect x="23.4" y="149" width="0.3" height="15.0" fill="rgb(210,26,6)" rx="2" ry="2" />
  1967. <text x="26.43" y="159.5" ></text>
  1968. </g>
  1969. <g >
  1970. <title>do_anonymous_page (1,722,903 samples, 0.01%)</title><rect x="1143.5" y="165" width="0.2" height="15.0" fill="rgb(238,155,37)" rx="2" ry="2" />
  1971. <text x="1146.53" y="175.5" ></text>
  1972. </g>
  1973. <g >
  1974. <title>do_user_addr_fault (1,722,903 samples, 0.01%)</title><rect x="1143.5" y="213" width="0.2" height="15.0" fill="rgb(228,108,25)" rx="2" ry="2" />
  1975. <text x="1146.53" y="223.5" ></text>
  1976. </g>
  1977. <g >
  1978. <title>_mid_memalign (44,228,686 samples, 0.27%)</title><rect x="1143.5" y="293" width="3.2" height="15.0" fill="rgb(218,62,14)" rx="2" ry="2" />
  1979. <text x="1146.53" y="303.5" ></text>
  1980. </g>
  1981. <g >
  1982. <title>__handle_mm_fault (6,013,560 samples, 0.04%)</title><rect x="941.4" y="421" width="0.4" height="15.0" fill="rgb(207,9,2)" rx="2" ry="2" />
  1983. <text x="944.41" y="431.5" ></text>
  1984. </g>
  1985. <g >
  1986. <title>lru_gen_del_folio.constprop.0 (4,325,621 samples, 0.03%)</title><rect x="23.9" y="165" width="0.3" height="15.0" fill="rgb(224,91,21)" rx="2" ry="2" />
  1987. <text x="26.87" y="175.5" ></text>
  1988. </g>
  1989. <g >
  1990. <title>__mem_cgroup_charge (2,598,122 samples, 0.02%)</title><rect x="303.3" y="389" width="0.2" height="15.0" fill="rgb(218,60,14)" rx="2" ry="2" />
  1991. <text x="306.27" y="399.5" ></text>
  1992. </g>
  1993. <g >
  1994. <title>dsacache::Cache::SubmitTask (12,186,558 samples, 0.07%)</title><rect x="1146.7" y="421" width="0.9" height="15.0" fill="rgb(236,142,34)" rx="2" ry="2" />
  1995. <text x="1149.73" y="431.5" ></text>
  1996. </g>
  1997. <g >
  1998. <title>dsacache::Cache::GetCacheNode (8,805,849 samples, 0.05%)</title><rect x="942.5" y="485" width="0.6" height="15.0" fill="rgb(243,175,41)" rx="2" ry="2" />
  1999. <text x="945.51" y="495.5" ></text>
  2000. </g>
  2001. <g >
  2002. <title>vma_merge (3,444,002 samples, 0.02%)</title><rect x="1136.8" y="325" width="0.3" height="15.0" fill="rgb(246,188,45)" rx="2" ry="2" />
  2003. <text x="1139.81" y="335.5" ></text>
  2004. </g>
  2005. <g >
  2006. <title>asm_exc_page_fault (3,280,828 samples, 0.02%)</title><rect x="1143.7" y="229" width="0.2" height="15.0" fill="rgb(225,93,22)" rx="2" ry="2" />
  2007. <text x="1146.66" y="239.5" ></text>
  2008. </g>
  2009. <g >
  2010. <title>__hrtimer_run_queues (7,666,902 samples, 0.05%)</title><rect x="819.6" y="421" width="0.6" height="15.0" fill="rgb(237,150,35)" rx="2" ry="2" />
  2011. <text x="822.61" y="431.5" ></text>
  2012. </g>
  2013. <g >
  2014. <title>_int_malloc (44,228,686 samples, 0.27%)</title><rect x="1143.5" y="261" width="3.2" height="15.0" fill="rgb(215,47,11)" rx="2" ry="2" />
  2015. <text x="1146.53" y="271.5" ></text>
  2016. </g>
  2017. <g >
  2018. <title>std::__new_allocator&lt;int&gt;::allocate (3,431,863 samples, 0.02%)</title><rect x="943.2" y="357" width="0.3" height="15.0" fill="rgb(212,34,8)" rx="2" ry="2" />
  2019. <text x="946.24" y="367.5" ></text>
  2020. </g>
  2021. <g >
  2022. <title>mutex_unlock (1,578,372 samples, 0.01%)</title><rect x="1140.2" y="293" width="0.1" height="15.0" fill="rgb(251,212,50)" rx="2" ry="2" />
  2023. <text x="1143.23" y="303.5" ></text>
  2024. </g>
  2025. <g >
  2026. <title>unsigned long std::uniform_int_distribution&lt;unsigned long&gt;::operator (2,654,842,180 samples, 16.25%)</title><rect x="435.7" y="469" width="191.8" height="15.0" fill="rgb(252,216,51)" rx="2" ry="2" />
  2027. <text x="438.70" y="479.5" >unsigned long std::unifor..</text>
  2028. </g>
  2029. <g >
  2030. <title>vma_alloc_folio (1,559,530 samples, 0.01%)</title><rect x="1143.8" y="133" width="0.1" height="15.0" fill="rgb(245,187,44)" rx="2" ry="2" />
  2031. <text x="1146.78" y="143.5" ></text>
  2032. </g>
  2033. <g >
  2034. <title>_start (8,541,764,204 samples, 52.28%)</title><rect x="10.5" y="565" width="617.0" height="15.0" fill="rgb(245,185,44)" rx="2" ry="2" />
  2035. <text x="13.51" y="575.5" >_start</text>
  2036. </g>
  2037. <g >
  2038. <title>__sysfs_device_parse (8,186,564 samples, 0.05%)</title><rect x="1146.9" y="261" width="0.6" height="15.0" fill="rgb(226,99,23)" rx="2" ry="2" />
  2039. <text x="1149.87" y="271.5" ></text>
  2040. </g>
  2041. <g >
  2042. <title>__alloc_pages (1,638,884,491 samples, 10.03%)</title><rect x="1012.9" y="325" width="118.4" height="15.0" fill="rgb(233,129,30)" rx="2" ry="2" />
  2043. <text x="1015.89" y="335.5" >__alloc_pages</text>
  2044. </g>
  2045. <g >
  2046. <title>get_page_from_freelist (7,950,647 samples, 0.05%)</title><rect x="950.5" y="309" width="0.5" height="15.0" fill="rgb(252,218,52)" rx="2" ry="2" />
  2047. <text x="953.47" y="319.5" ></text>
  2048. </g>
  2049. <g >
  2050. <title>qi_flush_piotlb (2,592,030 samples, 0.02%)</title><rect x="1148.5" y="389" width="0.2" height="15.0" fill="rgb(251,215,51)" rx="2" ry="2" />
  2051. <text x="1151.51" y="399.5" ></text>
  2052. </g>
  2053. <g >
  2054. <title>do_syscall_64 (1,512,504 samples, 0.01%)</title><rect x="1138.1" y="325" width="0.1" height="15.0" fill="rgb(209,20,4)" rx="2" ry="2" />
  2055. <text x="1141.05" y="335.5" ></text>
  2056. </g>
  2057. <g >
  2058. <title>qi_flush_dev_iotlb_pasid (36,329,554 samples, 0.22%)</title><rect x="24.2" y="165" width="2.6" height="15.0" fill="rgb(220,69,16)" rx="2" ry="2" />
  2059. <text x="27.18" y="175.5" ></text>
  2060. </g>
  2061. <g >
  2062. <title>do_huge_pmd_anonymous_page (6,013,560 samples, 0.04%)</title><rect x="941.4" y="405" width="0.4" height="15.0" fill="rgb(242,172,41)" rx="2" ry="2" />
  2063. <text x="944.41" y="415.5" ></text>
  2064. </g>
  2065. <g >
  2066. <title>do_vmi_align_munmap (18,146,766 samples, 0.11%)</title><rect x="10.7" y="405" width="1.3" height="15.0" fill="rgb(211,29,7)" rx="2" ry="2" />
  2067. <text x="13.69" y="415.5" ></text>
  2068. </g>
  2069. <g >
  2070. <title>do_huge_pmd_anonymous_page (2,542,611 samples, 0.02%)</title><rect x="31.0" y="293" width="0.2" height="15.0" fill="rgb(242,172,41)" rx="2" ry="2" />
  2071. <text x="33.99" y="303.5" ></text>
  2072. </g>
  2073. <g >
  2074. <title>_raw_spin_lock (1,730,541 samples, 0.01%)</title><rect x="17.8" y="133" width="0.1" height="15.0" fill="rgb(239,160,38)" rx="2" ry="2" />
  2075. <text x="20.81" y="143.5" ></text>
  2076. </g>
  2077. <g >
  2078. <title>entry_SYSCALL_64_after_hwframe (20,775,227 samples, 0.13%)</title><rect x="1139.9" y="373" width="1.5" height="15.0" fill="rgb(218,63,15)" rx="2" ry="2" />
  2079. <text x="1142.87" y="383.5" ></text>
  2080. </g>
  2081. <g >
  2082. <title>do_syscall_64 (6,690,044 samples, 0.04%)</title><rect x="1137.4" y="373" width="0.5" height="15.0" fill="rgb(209,20,4)" rx="2" ry="2" />
  2083. <text x="1140.45" y="383.5" ></text>
  2084. </g>
  2085. <g >
  2086. <title>dml::core::dispatcher::hw_dispatcher::hw_dispatcher (12,186,558 samples, 0.07%)</title><rect x="1146.7" y="357" width="0.9" height="15.0" fill="rgb(213,40,9)" rx="2" ry="2" />
  2087. <text x="1149.73" y="367.5" ></text>
  2088. </g>
  2089. <g >
  2090. <title>update_process_times (7,126,171 samples, 0.04%)</title><rect x="942.0" y="373" width="0.5" height="15.0" fill="rgb(250,209,50)" rx="2" ry="2" />
  2091. <text x="944.99" y="383.5" ></text>
  2092. </g>
  2093. <g >
  2094. <title>dsacache::Cache::Access (14,009,326 samples, 0.09%)</title><rect x="820.2" y="501" width="1.0" height="15.0" fill="rgb(209,18,4)" rx="2" ry="2" />
  2095. <text x="823.16" y="511.5" ></text>
  2096. </g>
  2097. <g >
  2098. <title>__GI__IO_file_open (19,250,418 samples, 0.12%)</title><rect x="1141.6" y="405" width="1.3" height="15.0" fill="rgb(228,107,25)" rx="2" ry="2" />
  2099. <text x="1144.55" y="415.5" ></text>
  2100. </g>
  2101. <g >
  2102. <title>__mod_memcg_state (1,561,926 samples, 0.01%)</title><rect x="1012.1" y="277" width="0.1" height="15.0" fill="rgb(205,1,0)" rx="2" ry="2" />
  2103. <text x="1015.13" y="287.5" ></text>
  2104. </g>
  2105. <g >
  2106. <title>std::allocator_traits&lt;std::allocator&lt;int&gt; &gt;::allocate (3,431,863 samples, 0.02%)</title><rect x="943.2" y="389" width="0.3" height="15.0" fill="rgb(248,200,47)" rx="2" ry="2" />
  2107. <text x="946.24" y="399.5" ></text>
  2108. </g>
  2109. <g >
  2110. <title>down_write (8,479,830 samples, 0.05%)</title><rect x="1133.3" y="325" width="0.6" height="15.0" fill="rgb(222,79,18)" rx="2" ry="2" />
  2111. <text x="1136.27" y="335.5" ></text>
  2112. </g>
  2113. <g >
  2114. <title>clear_page_erms (2,147,468 samples, 0.01%)</title><rect x="950.9" y="293" width="0.1" height="15.0" fill="rgb(229,113,27)" rx="2" ry="2" />
  2115. <text x="953.87" y="303.5" ></text>
  2116. </g>
  2117. <g >
  2118. <title>scan_b (2,845,120,776 samples, 17.41%)</title><rect x="942.5" y="517" width="205.5" height="15.0" fill="rgb(247,193,46)" rx="2" ry="2" />
  2119. <text x="945.51" y="527.5" >scan_b</text>
  2120. </g>
  2121. <g >
  2122. <title>std::__detail::_Hashtable_alloc&lt;std::allocator&lt;std::__detail::_Hash_node&lt;std::pair&lt;unsigned char* const, dsacache::CacheData&gt;, false&gt; &gt; &gt;::_M_deallocate_node (262,080,827 samples, 1.60%)</title><rect x="12.0" y="437" width="18.9" height="15.0" fill="rgb(219,64,15)" rx="2" ry="2" />
  2123. <text x="15.00" y="447.5" ></text>
  2124. </g>
  2125. <g >
  2126. <title>device_parse (1,490,139 samples, 0.01%)</title><rect x="10.3" y="517" width="0.1" height="15.0" fill="rgb(237,147,35)" rx="2" ry="2" />
  2127. <text x="13.31" y="527.5" ></text>
  2128. </g>
  2129. <g >
  2130. <title>do_syscall_64 (23,342,525 samples, 0.14%)</title><rect x="627.5" y="533" width="1.6" height="15.0" fill="rgb(209,20,4)" rx="2" ry="2" />
  2131. <text x="630.45" y="543.5" ></text>
  2132. </g>
  2133. <g >
  2134. <title>__mmu_notifier_invalidate_range_end (19,560,452 samples, 0.12%)</title><rect x="1138.3" y="181" width="1.4" height="15.0" fill="rgb(207,11,2)" rx="2" ry="2" />
  2135. <text x="1141.33" y="191.5" ></text>
  2136. </g>
  2137. <g >
  2138. <title>tick_sched_handle (7,126,171 samples, 0.04%)</title><rect x="942.0" y="389" width="0.5" height="15.0" fill="rgb(219,68,16)" rx="2" ry="2" />
  2139. <text x="944.99" y="399.5" ></text>
  2140. </g>
  2141. <g >
  2142. <title>do_filp_open (11,335,071 samples, 0.07%)</title><rect x="1141.7" y="309" width="0.9" height="15.0" fill="rgb(211,28,6)" rx="2" ry="2" />
  2143. <text x="1144.74" y="319.5" ></text>
  2144. </g>
  2145. <g >
  2146. <title>std::_Hashtable&lt;unsigned char*, std::pair&lt;unsigned char* const, dsacache::CacheData&gt;, std::allocator&lt;std::pair&lt;unsigned char* const, dsacache::CacheData&gt; &gt;, std::__detail::_Select1st, std::equal_to&lt;unsigned char*&gt;, std::hash&lt;unsigned char*&gt;, std::__detail::_Mod_range_hashing, std::__detail::_Default_ranged_hash, std::__detail::_Prime_rehash_policy, std::__detail::_Hashtable_traits&lt;false, false, true&gt; &gt;::clear (262,080,827 samples, 1.60%)</title><rect x="12.0" y="469" width="18.9" height="15.0" fill="rgb(226,96,23)" rx="2" ry="2" />
  2147. <text x="15.00" y="479.5" ></text>
  2148. </g>
  2149. <g >
  2150. <title>qi_submit_sync (10,974,190 samples, 0.07%)</title><rect x="1139.0" y="133" width="0.7" height="15.0" fill="rgb(239,159,38)" rx="2" ry="2" />
  2151. <text x="1141.95" y="143.5" ></text>
  2152. </g>
  2153. <g >
  2154. <title>__run_exit_handlers (2,515,698 samples, 0.02%)</title><rect x="10.5" y="501" width="0.2" height="15.0" fill="rgb(216,51,12)" rx="2" ry="2" />
  2155. <text x="13.51" y="511.5" ></text>
  2156. </g>
  2157. <g >
  2158. <title>__pthread_create_2_1 (3,409,299 samples, 0.02%)</title><rect x="31.0" y="405" width="0.2" height="15.0" fill="rgb(242,172,41)" rx="2" ry="2" />
  2159. <text x="33.99" y="415.5" ></text>
  2160. </g>
  2161. <g >
  2162. <title>std::allocator&lt;int&gt;::allocate (3,431,863 samples, 0.02%)</title><rect x="943.2" y="373" width="0.3" height="15.0" fill="rgb(235,139,33)" rx="2" ry="2" />
  2163. <text x="946.24" y="383.5" ></text>
  2164. </g>
  2165. <g >
  2166. <title>_IO_new_file_fopen (19,250,418 samples, 0.12%)</title><rect x="1141.6" y="421" width="1.3" height="15.0" fill="rgb(245,185,44)" rx="2" ry="2" />
  2167. <text x="1144.55" y="431.5" ></text>
  2168. </g>
  2169. <g >
  2170. <title>kernfs_fop_open (2,033,850 samples, 0.01%)</title><rect x="1142.0" y="261" width="0.1" height="15.0" fill="rgb(240,163,39)" rx="2" ry="2" />
  2171. <text x="1144.98" y="271.5" ></text>
  2172. </g>
  2173. <g >
  2174. <title>_raw_spin_lock_irqsave (2,594,701 samples, 0.02%)</title><rect x="29.6" y="133" width="0.2" height="15.0" fill="rgb(247,195,46)" rx="2" ry="2" />
  2175. <text x="32.62" y="143.5" ></text>
  2176. </g>
  2177. <g >
  2178. <title>down_read (1,523,186 samples, 0.01%)</title><rect x="942.9" y="389" width="0.1" height="15.0" fill="rgb(246,188,45)" rx="2" ry="2" />
  2179. <text x="945.87" y="399.5" ></text>
  2180. </g>
  2181. <g >
  2182. <title>task_mm_cid_work (1,731,095 samples, 0.01%)</title><rect x="270.6" y="421" width="0.1" height="15.0" fill="rgb(226,101,24)" rx="2" ry="2" />
  2183. <text x="273.56" y="431.5" ></text>
  2184. </g>
  2185. <g >
  2186. <title>__mod_lruvec_page_state (1,732,325 samples, 0.01%)</title><rect x="328.4" y="357" width="0.1" height="15.0" fill="rgb(245,185,44)" rx="2" ry="2" />
  2187. <text x="331.38" y="367.5" ></text>
  2188. </g>
  2189. <g >
  2190. <title>lock_vma_under_rcu (3,289,225 samples, 0.02%)</title><rect x="1131.6" y="405" width="0.3" height="15.0" fill="rgb(251,211,50)" rx="2" ry="2" />
  2191. <text x="1134.64" y="415.5" ></text>
  2192. </g>
  2193. <g >
  2194. <title>dsacache::Cache::Clear (262,080,827 samples, 1.60%)</title><rect x="12.0" y="501" width="18.9" height="15.0" fill="rgb(250,208,49)" rx="2" ry="2" />
  2195. <text x="15.00" y="511.5" ></text>
  2196. </g>
  2197. <g >
  2198. <title>numa_bitmask_clearall (2,295,921 samples, 0.01%)</title><rect x="820.3" y="437" width="0.1" height="15.0" fill="rgb(238,155,37)" rx="2" ry="2" />
  2199. <text x="823.26" y="447.5" ></text>
  2200. </g>
  2201. <g >
  2202. <title>__mod_node_page_state (1,602,438 samples, 0.01%)</title><rect x="1011.6" y="309" width="0.1" height="15.0" fill="rgb(213,38,9)" rx="2" ry="2" />
  2203. <text x="1014.61" y="319.5" ></text>
  2204. </g>
  2205. <g >
  2206. <title>std::pair&lt;std::__detail::_Node_iterator&lt;std::pair&lt;unsigned char* const, dsacache::CacheData&gt;, false, false&gt;, bool&gt; std::unordered_map&lt;unsigned char*, dsacache::CacheData, std::hash&lt;unsigned char*&gt;, std::equal_to&lt;unsigned char*&gt;, std::allocator&lt;std::pair&lt;unsigned char* const, dsacache::CacheData&gt; &gt; &gt;::emplace&lt;unsigned char*, dsacache::CacheData&amp;&gt; (2,231,659 samples, 0.01%)</title><rect x="1147.8" y="485" width="0.1" height="15.0" fill="rgb(220,71,17)" rx="2" ry="2" />
  2207. <text x="1150.78" y="495.5" ></text>
  2208. </g>
  2209. <g >
  2210. <title>__do_sys_clone3 (23,342,525 samples, 0.14%)</title><rect x="627.5" y="517" width="1.6" height="15.0" fill="rgb(231,122,29)" rx="2" ry="2" />
  2211. <text x="630.45" y="527.5" ></text>
  2212. </g>
  2213. <g >
  2214. <title>mas_preallocate (1,585,774 samples, 0.01%)</title><rect x="1146.4" y="101" width="0.1" height="15.0" fill="rgb(206,8,2)" rx="2" ry="2" />
  2215. <text x="1149.35" y="111.5" ></text>
  2216. </g>
  2217. <g >
  2218. <title>__handle_mm_fault (3,280,828 samples, 0.02%)</title><rect x="1143.7" y="165" width="0.2" height="15.0" fill="rgb(207,9,2)" rx="2" ry="2" />
  2219. <text x="1146.66" y="175.5" ></text>
  2220. </g>
  2221. <g >
  2222. <title>clear_huge_page (327,751,872 samples, 2.01%)</title><rect x="304.3" y="389" width="23.6" height="15.0" fill="rgb(220,69,16)" rx="2" ry="2" />
  2223. <text x="307.27" y="399.5" >c..</text>
  2224. </g>
  2225. <g >
  2226. <title>zap_page_range_single (9,653,225 samples, 0.06%)</title><rect x="1148.0" y="437" width="0.7" height="15.0" fill="rgb(227,104,24)" rx="2" ry="2" />
  2227. <text x="1151.00" y="447.5" ></text>
  2228. </g>
  2229. <g >
  2230. <title>__folio_alloc (1,559,530 samples, 0.01%)</title><rect x="1143.8" y="117" width="0.1" height="15.0" fill="rgb(224,91,21)" rx="2" ry="2" />
  2231. <text x="1146.78" y="127.5" ></text>
  2232. </g>
  2233. <g >
  2234. <title>entry_SYSCALL_64_after_hwframe (19,250,418 samples, 0.12%)</title><rect x="1141.6" y="373" width="1.3" height="15.0" fill="rgb(218,63,15)" rx="2" ry="2" />
  2235. <text x="1144.55" y="383.5" ></text>
  2236. </g>
  2237. <g >
  2238. <title>inherit_event.isra.0 (19,034,831 samples, 0.12%)</title><rect x="627.7" y="437" width="1.4" height="15.0" fill="rgb(206,8,2)" rx="2" ry="2" />
  2239. <text x="630.70" y="447.5" ></text>
  2240. </g>
  2241. <g >
  2242. <title>[libstdc++.so.6.0.32] (7,183,800,766 samples, 43.97%)</title><rect x="629.1" y="533" width="518.9" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
  2243. <text x="632.14" y="543.5" >[libstdc++.so.6.0.32]</text>
  2244. </g>
  2245. <g >
  2246. <title>std::unordered_map&lt;unsigned char*, dsacache::CacheData, std::hash&lt;unsigned char*&gt;, std::equal_to&lt;unsigned char*&gt;, std::allocator&lt;std::pair&lt;unsigned char* const, dsacache::CacheData&gt; &gt; &gt;::clear (262,080,827 samples, 1.60%)</title><rect x="12.0" y="485" width="18.9" height="15.0" fill="rgb(222,78,18)" rx="2" ry="2" />
  2247. <text x="15.00" y="495.5" ></text>
  2248. </g>
  2249. <g >
  2250. <title>kernfs_fop_release (5,918,508 samples, 0.04%)</title><rect x="1137.5" y="293" width="0.4" height="15.0" fill="rgb(233,130,31)" rx="2" ry="2" />
  2251. <text x="1140.51" y="303.5" ></text>
  2252. </g>
  2253. <g >
  2254. <title>void std::allocator_traits&lt;std::allocator&lt;std::__detail::_Hash_node&lt;std::pair&lt;unsigned char* const, dsacache::CacheData&gt;, false&gt; &gt; &gt;::destroy&lt;std::pair&lt;unsigned char* const, dsacache::CacheData&gt; &gt; (262,080,827 samples, 1.60%)</title><rect x="12.0" y="421" width="18.9" height="15.0" fill="rgb(230,116,27)" rx="2" ry="2" />
  2255. <text x="15.00" y="431.5" ></text>
  2256. </g>
  2257. <g >
  2258. <title>_raw_spin_lock_irqsave (2,414,711 samples, 0.01%)</title><rect x="1011.2" y="309" width="0.2" height="15.0" fill="rgb(247,195,46)" rx="2" ry="2" />
  2259. <text x="1014.24" y="319.5" ></text>
  2260. </g>
  2261. <g >
  2262. <title>intel_invalidate_range (9,653,225 samples, 0.06%)</title><rect x="1148.0" y="405" width="0.7" height="15.0" fill="rgb(228,107,25)" rx="2" ry="2" />
  2263. <text x="1151.00" y="415.5" ></text>
  2264. </g>
  2265. <g >
  2266. <title>get_unmapped_area (2,424,458 samples, 0.01%)</title><rect x="1133.1" y="341" width="0.2" height="15.0" fill="rgb(234,134,32)" rx="2" ry="2" />
  2267. <text x="1136.09" y="351.5" ></text>
  2268. </g>
  2269. <g >
  2270. <title>numa_node_size64 (87,109,009 samples, 0.53%)</title><rect x="1137.2" y="453" width="6.3" height="15.0" fill="rgb(216,52,12)" rx="2" ry="2" />
  2271. <text x="1140.24" y="463.5" ></text>
  2272. </g>
  2273. <g >
  2274. <title>lookup_fast (2,915,734 samples, 0.02%)</title><rect x="1142.3" y="245" width="0.2" height="15.0" fill="rgb(219,68,16)" rx="2" ry="2" />
  2275. <text x="1145.31" y="255.5" ></text>
  2276. </g>
  2277. <g >
  2278. <title>mprotect_fixup (20,421,763 samples, 0.12%)</title><rect x="1138.3" y="213" width="1.5" height="15.0" fill="rgb(236,144,34)" rx="2" ry="2" />
  2279. <text x="1141.33" y="223.5" ></text>
  2280. </g>
  2281. <g >
  2282. <title>tlb_finish_mmu (16,417,789 samples, 0.10%)</title><rect x="10.7" y="373" width="1.2" height="15.0" fill="rgb(251,212,50)" rx="2" ry="2" />
  2283. <text x="13.69" y="383.5" ></text>
  2284. </g>
  2285. <g >
  2286. <title>_IO_new_file_underflow (46,708,541 samples, 0.29%)</title><rect x="1138.0" y="421" width="3.4" height="15.0" fill="rgb(214,42,10)" rx="2" ry="2" />
  2287. <text x="1140.99" y="431.5" ></text>
  2288. </g>
  2289. <g >
  2290. <title>do_syscall_64 (5,974,528 samples, 0.04%)</title><rect x="1136.7" y="389" width="0.5" height="15.0" fill="rgb(209,20,4)" rx="2" ry="2" />
  2291. <text x="1139.75" y="399.5" ></text>
  2292. </g>
  2293. <g >
  2294. <title>folio_batch_move_lru (4,437,935 samples, 0.03%)</title><rect x="1011.2" y="341" width="0.4" height="15.0" fill="rgb(207,10,2)" rx="2" ry="2" />
  2295. <text x="1014.24" y="351.5" ></text>
  2296. </g>
  2297. <g >
  2298. <title>seq_read_iter (1,524,427 samples, 0.01%)</title><rect x="1147.1" y="101" width="0.1" height="15.0" fill="rgb(232,128,30)" rx="2" ry="2" />
  2299. <text x="1150.13" y="111.5" ></text>
  2300. </g>
  2301. <g >
  2302. <title>try_charge_memcg (3,331,473 samples, 0.02%)</title><rect x="1012.2" y="309" width="0.3" height="15.0" fill="rgb(210,27,6)" rx="2" ry="2" />
  2303. <text x="1015.25" y="319.5" ></text>
  2304. </g>
  2305. <g >
  2306. <title>asm_exc_page_fault (6,530,628 samples, 0.04%)</title><rect x="941.4" y="485" width="0.5" height="15.0" fill="rgb(225,93,22)" rx="2" ry="2" />
  2307. <text x="944.41" y="495.5" ></text>
  2308. </g>
  2309. <g >
  2310. <title>void std::vector&lt;std::thread, std::allocator&lt;std::thread&gt; &gt;::_M_realloc_insert&lt;void (3,409,299 samples, 0.02%)</title><rect x="31.0" y="485" width="0.2" height="15.0" fill="rgb(225,95,22)" rx="2" ry="2" />
  2311. <text x="33.99" y="495.5" ></text>
  2312. </g>
  2313. <g >
  2314. <title>mod_lruvec_page_state.constprop.0 (3,035,337 samples, 0.02%)</title><rect x="1012.6" y="341" width="0.2" height="15.0" fill="rgb(208,15,3)" rx="2" ry="2" />
  2315. <text x="1015.61" y="351.5" ></text>
  2316. </g>
  2317. <g >
  2318. <title>mod_lruvec_page_state.constprop.0 (1,732,325 samples, 0.01%)</title><rect x="328.4" y="373" width="0.1" height="15.0" fill="rgb(208,15,3)" rx="2" ry="2" />
  2319. <text x="331.38" y="383.5" ></text>
  2320. </g>
  2321. <g >
  2322. <title>wqs_init (8,186,564 samples, 0.05%)</title><rect x="1146.9" y="293" width="0.6" height="15.0" fill="rgb(241,169,40)" rx="2" ry="2" />
  2323. <text x="1149.87" y="303.5" ></text>
  2324. </g>
  2325. <g >
  2326. <title>uncharge_batch (2,593,230 samples, 0.02%)</title><rect x="18.2" y="133" width="0.2" height="15.0" fill="rgb(220,72,17)" rx="2" ry="2" />
  2327. <text x="21.18" y="143.5" ></text>
  2328. </g>
  2329. <g >
  2330. <title>do_huge_pmd_anonymous_page (1,826,580,369 samples, 11.18%)</title><rect x="303.5" y="405" width="131.9" height="15.0" fill="rgb(242,172,41)" rx="2" ry="2" />
  2331. <text x="306.46" y="415.5" >do_huge_pmd_anon..</text>
  2332. </g>
  2333. <g >
  2334. <title>__kmem_cache_alloc_node (1,729,987 samples, 0.01%)</title><rect x="628.8" y="341" width="0.1" height="15.0" fill="rgb(208,16,4)" rx="2" ry="2" />
  2335. <text x="631.82" y="351.5" ></text>
  2336. </g>
  2337. <g >
  2338. <title>__rmqueue_pcplist (42,564,946 samples, 0.26%)</title><rect x="1032.3" y="293" width="3.1" height="15.0" fill="rgb(230,118,28)" rx="2" ry="2" />
  2339. <text x="1035.29" y="303.5" ></text>
  2340. </g>
  2341. <g >
  2342. <title>tick_sched_handle (2,170,601 samples, 0.01%)</title><rect x="819.4" y="357" width="0.2" height="15.0" fill="rgb(219,68,16)" rx="2" ry="2" />
  2343. <text x="822.45" y="367.5" ></text>
  2344. </g>
  2345. <g >
  2346. <title>__mod_lruvec_page_state (2,643,773 samples, 0.02%)</title><rect x="949.9" y="341" width="0.2" height="15.0" fill="rgb(245,185,44)" rx="2" ry="2" />
  2347. <text x="952.92" y="351.5" ></text>
  2348. </g>
  2349. <g >
  2350. <title>numa_alloc_onnode (58,089,727 samples, 0.36%)</title><rect x="1133.0" y="453" width="4.2" height="15.0" fill="rgb(206,8,1)" rx="2" ry="2" />
  2351. <text x="1136.04" y="463.5" ></text>
  2352. </g>
  2353. <g >
  2354. <title>__free_one_page (4,326,961 samples, 0.03%)</title><rect x="23.4" y="133" width="0.3" height="15.0" fill="rgb(210,25,6)" rx="2" ry="2" />
  2355. <text x="26.43" y="143.5" ></text>
  2356. </g>
  2357. <g >
  2358. <title>std::_Vector_base&lt;int, std::allocator&lt;int&gt; &gt;::_M_allocate (3,431,863 samples, 0.02%)</title><rect x="943.2" y="405" width="0.3" height="15.0" fill="rgb(216,52,12)" rx="2" ry="2" />
  2359. <text x="946.24" y="415.5" ></text>
  2360. </g>
  2361. <g >
  2362. <title>entry_SYSCALL_64_after_hwframe (23,342,525 samples, 0.14%)</title><rect x="627.5" y="549" width="1.6" height="15.0" fill="rgb(218,63,15)" rx="2" ry="2" />
  2363. <text x="630.45" y="559.5" ></text>
  2364. </g>
  2365. <g >
  2366. <title>__sysvec_apic_timer_interrupt (2,777,240 samples, 0.02%)</title><rect x="270.7" y="453" width="0.2" height="15.0" fill="rgb(242,173,41)" rx="2" ry="2" />
  2367. <text x="273.68" y="463.5" ></text>
  2368. </g>
  2369. <g >
  2370. <title>__count_memcg_events (1,722,903 samples, 0.01%)</title><rect x="1143.5" y="101" width="0.2" height="15.0" fill="rgb(250,211,50)" rx="2" ry="2" />
  2371. <text x="1146.53" y="111.5" ></text>
  2372. </g>
  2373. <g >
  2374. <title>std::allocator_traits&lt;std::allocator&lt;std::__detail::_Hash_node&lt;std::pair&lt;unsigned char* const, dsacache::CacheData&gt;, false&gt; &gt; &gt;::allocate (2,231,659 samples, 0.01%)</title><rect x="1147.8" y="405" width="0.1" height="15.0" fill="rgb(226,97,23)" rx="2" ry="2" />
  2375. <text x="1150.78" y="415.5" ></text>
  2376. </g>
  2377. <g >
  2378. <title>tlb_batch_pages_flush (84,766,385 samples, 0.52%)</title><rect x="18.1" y="197" width="6.1" height="15.0" fill="rgb(234,133,32)" rx="2" ry="2" />
  2379. <text x="21.06" y="207.5" ></text>
  2380. </g>
  2381. <g >
  2382. <title>intel_invalidate_range (1,729,045 samples, 0.01%)</title><rect x="10.7" y="341" width="0.1" height="15.0" fill="rgb(228,107,25)" rx="2" ry="2" />
  2383. <text x="13.69" y="351.5" ></text>
  2384. </g>
  2385. <g >
  2386. <title>groups_init (1,490,139 samples, 0.01%)</title><rect x="10.3" y="533" width="0.1" height="15.0" fill="rgb(242,171,41)" rx="2" ry="2" />
  2387. <text x="13.31" y="543.5" ></text>
  2388. </g>
  2389. <g >
  2390. <title>tick_sched_timer (5,146,731 samples, 0.03%)</title><rect x="791.5" y="373" width="0.4" height="15.0" fill="rgb(254,227,54)" rx="2" ry="2" />
  2391. <text x="794.49" y="383.5" ></text>
  2392. </g>
  2393. <g >
  2394. <title>std::mersenne_twister_engine&lt;unsigned long, 32ul, 624ul, 397ul, 31ul, 2567483615ul, 11ul, 4294967295ul, 7ul, 2636928640ul, 15ul, 4022730752ul, 18ul, 1812433253ul&gt;::operator (972,825,231 samples, 5.95%)</title><rect x="557.2" y="437" width="70.3" height="15.0" fill="rgb(235,139,33)" rx="2" ry="2" />
  2395. <text x="560.19" y="447.5" >std::me..</text>
  2396. </g>
  2397. <g >
  2398. <title>__GI__IO_file_doallocate (25,072,445 samples, 0.15%)</title><rect x="1138.0" y="373" width="1.8" height="15.0" fill="rgb(212,32,7)" rx="2" ry="2" />
  2399. <text x="1140.99" y="383.5" ></text>
  2400. </g>
  2401. <g >
  2402. <title>_int_malloc (22,752,987 samples, 0.14%)</title><rect x="1138.2" y="341" width="1.6" height="15.0" fill="rgb(215,47,11)" rx="2" ry="2" />
  2403. <text x="1141.16" y="351.5" ></text>
  2404. </g>
  2405. <g >
  2406. <title>free_unref_page (2,594,918 samples, 0.02%)</title><rect x="30.3" y="165" width="0.2" height="15.0" fill="rgb(253,224,53)" rx="2" ry="2" />
  2407. <text x="33.30" y="175.5" ></text>
  2408. </g>
  2409. <g >
  2410. <title>numa_node_of_cpu (4,229,723 samples, 0.03%)</title><rect x="820.2" y="469" width="0.3" height="15.0" fill="rgb(254,227,54)" rx="2" ry="2" />
  2411. <text x="823.16" y="479.5" ></text>
  2412. </g>
  2413. <g >
  2414. <title>ksys_read (20,070,864 samples, 0.12%)</title><rect x="1139.9" y="341" width="1.5" height="15.0" fill="rgb(229,113,27)" rx="2" ry="2" />
  2415. <text x="1142.92" y="351.5" ></text>
  2416. </g>
  2417. <g >
  2418. <title>mprotect_fixup (38,464,959 samples, 0.24%)</title><rect x="1143.9" y="133" width="2.8" height="15.0" fill="rgb(236,144,34)" rx="2" ry="2" />
  2419. <text x="1146.95" y="143.5" ></text>
  2420. </g>
  2421. <g >
  2422. <title>vma_prepare (2,822,695 samples, 0.02%)</title><rect x="1146.5" y="101" width="0.2" height="15.0" fill="rgb(205,2,0)" rx="2" ry="2" />
  2423. <text x="1149.52" y="111.5" ></text>
  2424. </g>
  2425. <g >
  2426. <title>std::allocator_traits&lt;std::allocator&lt;dml::detail::ml::utils::structure_from&lt;dml::detail::descriptor, dml::detail::completion_record&gt; &gt; &gt;::allocate (44,228,686 samples, 0.27%)</title><rect x="1143.5" y="357" width="3.2" height="15.0" fill="rgb(234,136,32)" rx="2" ry="2" />
  2427. <text x="1146.53" y="367.5" ></text>
  2428. </g>
  2429. <g >
  2430. <title>debug_smp_processor_id (1,617,684 samples, 0.01%)</title><rect x="1012.4" y="293" width="0.1" height="15.0" fill="rgb(216,54,12)" rx="2" ry="2" />
  2431. <text x="1015.37" y="303.5" ></text>
  2432. </g>
  2433. <g >
  2434. <title>asm_sysvec_apic_timer_interrupt (2,163,378 samples, 0.01%)</title><rect x="1131.1" y="277" width="0.2" height="15.0" fill="rgb(232,127,30)" rx="2" ry="2" />
  2435. <text x="1134.10" y="287.5" ></text>
  2436. </g>
  2437. <g >
  2438. <title>operator new (2,231,659 samples, 0.01%)</title><rect x="1147.8" y="357" width="0.1" height="15.0" fill="rgb(216,51,12)" rx="2" ry="2" />
  2439. <text x="1150.78" y="367.5" ></text>
  2440. </g>
  2441. <g >
  2442. <title>unmap_page_range (1,728,977 samples, 0.01%)</title><rect x="11.9" y="357" width="0.1" height="15.0" fill="rgb(206,5,1)" rx="2" ry="2" />
  2443. <text x="14.87" y="367.5" ></text>
  2444. </g>
  2445. <g >
  2446. <title>advise_stack_range (9,653,225 samples, 0.06%)</title><rect x="1148.0" y="533" width="0.7" height="15.0" fill="rgb(236,145,34)" rx="2" ry="2" />
  2447. <text x="1151.00" y="543.5" ></text>
  2448. </g>
  2449. <g >
  2450. <title>getname_flags.part.0 (3,101,514 samples, 0.02%)</title><rect x="1142.7" y="309" width="0.2" height="15.0" fill="rgb(207,10,2)" rx="2" ry="2" />
  2451. <text x="1145.68" y="319.5" ></text>
  2452. </g>
  2453. <g >
  2454. <title>std::__detail::_Hash_node&lt;std::pair&lt;unsigned char* const, dsacache::CacheData&gt;, false&gt;* std::__detail::_Hashtable_alloc&lt;std::allocator&lt;std::__detail::_Hash_node&lt;std::pair&lt;unsigned char* const, dsacache::CacheData&gt;, false&gt; &gt; &gt;::_M_allocate_node&lt;unsigned char*, dsacache::CacheData&amp;&gt; (2,231,659 samples, 0.01%)</title><rect x="1147.8" y="421" width="0.1" height="15.0" fill="rgb(236,146,35)" rx="2" ry="2" />
  2455. <text x="1150.78" y="431.5" ></text>
  2456. </g>
  2457. <g >
  2458. <title>__vm_munmap (1,728,623 samples, 0.01%)</title><rect x="10.5" y="405" width="0.1" height="15.0" fill="rgb(231,121,28)" rx="2" ry="2" />
  2459. <text x="13.51" y="415.5" ></text>
  2460. </g>
  2461. <g >
  2462. <title>page_counter_uncharge (1,727,997 samples, 0.01%)</title><rect x="18.2" y="117" width="0.2" height="15.0" fill="rgb(248,199,47)" rx="2" ry="2" />
  2463. <text x="21.25" y="127.5" ></text>
  2464. </g>
  2465. <g >
  2466. <title>__alloc_pages (11,611,654 samples, 0.07%)</title><rect x="950.2" y="325" width="0.8" height="15.0" fill="rgb(233,129,30)" rx="2" ry="2" />
  2467. <text x="953.20" y="335.5" ></text>
  2468. </g>
  2469. <g >
  2470. <title>page_counter_try_charge (4,050,786 samples, 0.02%)</title><rect x="951.3" y="309" width="0.3" height="15.0" fill="rgb(233,132,31)" rx="2" ry="2" />
  2471. <text x="954.31" y="319.5" ></text>
  2472. </g>
  2473. <g >
  2474. <title>memcg_check_events (1,732,342 samples, 0.01%)</title><rect x="303.3" y="357" width="0.2" height="15.0" fill="rgb(206,4,1)" rx="2" ry="2" />
  2475. <text x="306.33" y="367.5" ></text>
  2476. </g>
  2477. <g >
  2478. <title>free_unref_page_prepare (13,824,412 samples, 0.08%)</title><rect x="10.8" y="309" width="1.0" height="15.0" fill="rgb(238,155,37)" rx="2" ry="2" />
  2479. <text x="13.81" y="319.5" ></text>
  2480. </g>
  2481. <g >
  2482. <title>void std::allocator_traits&lt;std::allocator&lt;std::thread&gt; &gt;::construct&lt;std::thread, void (3,409,299 samples, 0.02%)</title><rect x="31.0" y="469" width="0.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
  2483. <text x="33.99" y="479.5" ></text>
  2484. </g>
  2485. <g >
  2486. <title>perf_adjust_freq_unthr_context (5,671,208 samples, 0.03%)</title><rect x="942.0" y="325" width="0.4" height="15.0" fill="rgb(236,146,35)" rx="2" ry="2" />
  2487. <text x="944.99" y="335.5" ></text>
  2488. </g>
  2489. <g >
  2490. <title>__alloc_pages (1,559,530 samples, 0.01%)</title><rect x="1143.8" y="101" width="0.1" height="15.0" fill="rgb(233,129,30)" rx="2" ry="2" />
  2491. <text x="1146.78" y="111.5" ></text>
  2492. </g>
  2493. <g >
  2494. <title>link_path_walk.part.0.constprop.0 (5,389,979 samples, 0.03%)</title><rect x="1142.1" y="277" width="0.4" height="15.0" fill="rgb(248,199,47)" rx="2" ry="2" />
  2495. <text x="1145.13" y="287.5" ></text>
  2496. </g>
  2497. <g >
  2498. <title>entry_SYSCALL_64_after_hwframe (1,512,504 samples, 0.01%)</title><rect x="1138.1" y="341" width="0.1" height="15.0" fill="rgb(218,63,15)" rx="2" ry="2" />
  2499. <text x="1141.05" y="351.5" ></text>
  2500. </g>
  2501. <g >
  2502. <title>operator new (3,431,863 samples, 0.02%)</title><rect x="943.2" y="341" width="0.3" height="15.0" fill="rgb(216,51,12)" rx="2" ry="2" />
  2503. <text x="946.24" y="351.5" ></text>
  2504. </g>
  2505. <g >
  2506. <title>__folio_alloc (3,430,412 samples, 0.02%)</title><rect x="941.6" y="373" width="0.2" height="15.0" fill="rgb(224,91,21)" rx="2" ry="2" />
  2507. <text x="944.59" y="383.5" ></text>
  2508. </g>
  2509. <g >
  2510. <title>vm_unmapped_area (1,563,935 samples, 0.01%)</title><rect x="1133.1" y="309" width="0.1" height="15.0" fill="rgb(235,138,33)" rx="2" ry="2" />
  2511. <text x="1136.09" y="319.5" ></text>
  2512. </g>
  2513. <g >
  2514. <title>do_syscall_64 (1,728,623 samples, 0.01%)</title><rect x="10.5" y="437" width="0.1" height="15.0" fill="rgb(209,20,4)" rx="2" ry="2" />
  2515. <text x="13.51" y="447.5" ></text>
  2516. </g>
  2517. <g >
  2518. <title>__sysvec_apic_timer_interrupt (2,142,780 samples, 0.01%)</title><rect x="1131.1" y="245" width="0.2" height="15.0" fill="rgb(242,173,41)" rx="2" ry="2" />
  2519. <text x="1134.10" y="255.5" ></text>
  2520. </g>
  2521. <g >
  2522. <title>qi_flush_piotlb (42,381,487 samples, 0.26%)</title><rect x="26.8" y="165" width="3.1" height="15.0" fill="rgb(251,215,51)" rx="2" ry="2" />
  2523. <text x="29.81" y="175.5" ></text>
  2524. </g>
  2525. <g >
  2526. <title>get_unused_fd_flags (1,598,288 samples, 0.01%)</title><rect x="1142.6" y="309" width="0.1" height="15.0" fill="rgb(245,186,44)" rx="2" ry="2" />
  2527. <text x="1145.56" y="319.5" ></text>
  2528. </g>
  2529. <g >
  2530. <title>start_thread (7,193,453,991 samples, 44.03%)</title><rect x="629.1" y="549" width="519.6" height="15.0" fill="rgb(212,34,8)" rx="2" ry="2" />
  2531. <text x="632.14" y="559.5" >start_thread</text>
  2532. </g>
  2533. <g >
  2534. <title>__strcasestr (4,045,089 samples, 0.02%)</title><rect x="1143.1" y="437" width="0.3" height="15.0" fill="rgb(217,56,13)" rx="2" ry="2" />
  2535. <text x="1146.06" y="447.5" ></text>
  2536. </g>
  2537. <g >
  2538. <title>__mod_zone_page_state (1,729,824 samples, 0.01%)</title><rect x="24.1" y="149" width="0.1" height="15.0" fill="rgb(221,74,17)" rx="2" ry="2" />
  2539. <text x="27.06" y="159.5" ></text>
  2540. </g>
  2541. <g >
  2542. <title>alloc_empty_file (3,366,665 samples, 0.02%)</title><rect x="1141.7" y="277" width="0.3" height="15.0" fill="rgb(209,19,4)" rx="2" ry="2" />
  2543. <text x="1144.74" y="287.5" ></text>
  2544. </g>
  2545. <g >
  2546. <title>__mod_lruvec_state (1,602,438 samples, 0.01%)</title><rect x="1011.6" y="325" width="0.1" height="15.0" fill="rgb(226,100,24)" rx="2" ry="2" />
  2547. <text x="1014.61" y="335.5" ></text>
  2548. </g>
  2549. <g >
  2550. <title>try_charge_memcg (2,596,328 samples, 0.02%)</title><rect x="303.6" y="357" width="0.2" height="15.0" fill="rgb(210,27,6)" rx="2" ry="2" />
  2551. <text x="306.58" y="367.5" ></text>
  2552. </g>
  2553. <g >
  2554. <title>__handle_mm_fault (1,830,044,679 samples, 11.20%)</title><rect x="303.2" y="421" width="132.2" height="15.0" fill="rgb(207,9,2)" rx="2" ry="2" />
  2555. <text x="306.21" y="431.5" >__handle_mm_fault</text>
  2556. </g>
  2557. <g >
  2558. <title>dsacache::CacheData::~CacheData (262,080,827 samples, 1.60%)</title><rect x="12.0" y="373" width="18.9" height="15.0" fill="rgb(225,93,22)" rx="2" ry="2" />
  2559. <text x="15.00" y="383.5" ></text>
  2560. </g>
  2561. <g >
  2562. <title>entry_SYSCALL_64_after_hwframe (259,486,254 samples, 1.59%)</title><rect x="12.1" y="325" width="18.7" height="15.0" fill="rgb(218,63,15)" rx="2" ry="2" />
  2563. <text x="15.06" y="335.5" ></text>
  2564. </g>
  2565. <g >
  2566. <title>asm_exc_page_fault (2,285,719 samples, 0.01%)</title><rect x="10.0" y="533" width="0.2" height="15.0" fill="rgb(225,93,22)" rx="2" ry="2" />
  2567. <text x="13.01" y="543.5" ></text>
  2568. </g>
  2569. <g >
  2570. <title>_raw_spin_lock (1,791,831 samples, 0.01%)</title><rect x="1137.6" y="229" width="0.1" height="15.0" fill="rgb(239,160,38)" rx="2" ry="2" />
  2571. <text x="1140.57" y="239.5" ></text>
  2572. </g>
  2573. <g >
  2574. <title>perf_event_mmap (33,685,958 samples, 0.21%)</title><rect x="1134.0" y="325" width="2.5" height="15.0" fill="rgb(229,112,26)" rx="2" ry="2" />
  2575. <text x="1137.03" y="335.5" ></text>
  2576. </g>
  2577. <g >
  2578. <title>free_compound_page (2,593,230 samples, 0.02%)</title><rect x="18.2" y="165" width="0.2" height="15.0" fill="rgb(254,227,54)" rx="2" ry="2" />
  2579. <text x="21.18" y="175.5" ></text>
  2580. </g>
  2581. <g >
  2582. <title>CopyMethodPolicy (3,431,863 samples, 0.02%)</title><rect x="943.2" y="469" width="0.3" height="15.0" fill="rgb(243,177,42)" rx="2" ry="2" />
  2583. <text x="946.24" y="479.5" ></text>
  2584. </g>
  2585. <g >
  2586. <title>dml::detail::ml::buffer&lt;std::allocator&lt;unsigned char&gt;, dml::detail::descriptor, dml::detail::completion_record&gt;::buffer (44,228,686 samples, 0.27%)</title><rect x="1143.5" y="373" width="3.2" height="15.0" fill="rgb(231,122,29)" rx="2" ry="2" />
  2587. <text x="1146.53" y="383.5" ></text>
  2588. </g>
  2589. <g >
  2590. <title>zap_huge_pmd (8,649,283 samples, 0.05%)</title><rect x="30.2" y="181" width="0.6" height="15.0" fill="rgb(228,109,26)" rx="2" ry="2" />
  2591. <text x="33.18" y="191.5" ></text>
  2592. </g>
  2593. <g >
  2594. <title>dsacache::Cache::GetCacheNode (11,957,952 samples, 0.07%)</title><rect x="820.2" y="485" width="0.8" height="15.0" fill="rgb(243,175,41)" rx="2" ry="2" />
  2595. <text x="823.16" y="495.5" ></text>
  2596. </g>
  2597. <g >
  2598. <title>check_preemption_disabled (3,692,528 samples, 0.02%)</title><rect x="948.8" y="309" width="0.3" height="15.0" fill="rgb(220,73,17)" rx="2" ry="2" />
  2599. <text x="951.81" y="319.5" ></text>
  2600. </g>
  2601. <g >
  2602. <title>__memset (1,729,987 samples, 0.01%)</title><rect x="628.8" y="325" width="0.1" height="15.0" fill="rgb(230,118,28)" rx="2" ry="2" />
  2603. <text x="631.82" y="335.5" ></text>
  2604. </g>
  2605. <g >
  2606. <title>perf_event_task_tick (1,541,693 samples, 0.01%)</title><rect x="1011.0" y="181" width="0.1" height="15.0" fill="rgb(205,3,0)" rx="2" ry="2" />
  2607. <text x="1014.00" y="191.5" ></text>
  2608. </g>
  2609. <g >
  2610. <title>do_syscall_64 (7,728,229 samples, 0.05%)</title><rect x="820.5" y="437" width="0.5" height="15.0" fill="rgb(209,20,4)" rx="2" ry="2" />
  2611. <text x="823.47" y="447.5" ></text>
  2612. </g>
  2613. <g >
  2614. <title>intel_invalidate_range (26,909,047 samples, 0.16%)</title><rect x="1143.9" y="85" width="2.0" height="15.0" fill="rgb(228,107,25)" rx="2" ry="2" />
  2615. <text x="1146.95" y="95.5" ></text>
  2616. </g>
  2617. <g >
  2618. <title>task_work_run (1,731,095 samples, 0.01%)</title><rect x="270.6" y="437" width="0.1" height="15.0" fill="rgb(209,22,5)" rx="2" ry="2" />
  2619. <text x="273.56" y="447.5" ></text>
  2620. </g>
  2621. <g >
  2622. <title>perf_adjust_freq_unthr_context (2,777,240 samples, 0.02%)</title><rect x="270.7" y="325" width="0.2" height="15.0" fill="rgb(236,146,35)" rx="2" ry="2" />
  2623. <text x="273.68" y="335.5" ></text>
  2624. </g>
  2625. <g >
  2626. <title>free_unref_page_prepare (69,196,859 samples, 0.42%)</title><rect x="18.4" y="149" width="5.0" height="15.0" fill="rgb(238,155,37)" rx="2" ry="2" />
  2627. <text x="21.43" y="159.5" ></text>
  2628. </g>
  2629. <g >
  2630. <title>vma_alloc_folio (1,694,345 samples, 0.01%)</title><rect x="31.1" y="277" width="0.1" height="15.0" fill="rgb(245,187,44)" rx="2" ry="2" />
  2631. <text x="34.05" y="287.5" ></text>
  2632. </g>
  2633. <g >
  2634. <title>exc_page_fault (3,409,299 samples, 0.02%)</title><rect x="31.0" y="357" width="0.2" height="15.0" fill="rgb(212,35,8)" rx="2" ry="2" />
  2635. <text x="33.99" y="367.5" ></text>
  2636. </g>
  2637. <g >
  2638. <title>hrtimer_interrupt (2,142,780 samples, 0.01%)</title><rect x="1131.1" y="229" width="0.2" height="15.0" fill="rgb(228,109,26)" rx="2" ry="2" />
  2639. <text x="1134.10" y="239.5" ></text>
  2640. </g>
  2641. <g >
  2642. <title>get_page_from_freelist (1,559,530 samples, 0.01%)</title><rect x="1143.8" y="85" width="0.1" height="15.0" fill="rgb(252,218,52)" rx="2" ry="2" />
  2643. <text x="1146.78" y="95.5" ></text>
  2644. </g>
  2645. <g >
  2646. <title>tick_sched_timer (1,541,693 samples, 0.01%)</title><rect x="1011.0" y="245" width="0.1" height="15.0" fill="rgb(254,227,54)" rx="2" ry="2" />
  2647. <text x="1014.00" y="255.5" ></text>
  2648. </g>
  2649. <g >
  2650. <title>lru_gen_del_folio.constprop.0 (1,728,698 samples, 0.01%)</title><rect x="18.1" y="149" width="0.1" height="15.0" fill="rgb(224,91,21)" rx="2" ry="2" />
  2651. <text x="21.06" y="159.5" ></text>
  2652. </g>
  2653. <g >
  2654. <title>__alloc_pages (2,597,639 samples, 0.02%)</title><rect x="328.1" y="373" width="0.2" height="15.0" fill="rgb(233,129,30)" rx="2" ry="2" />
  2655. <text x="331.13" y="383.5" ></text>
  2656. </g>
  2657. <g >
  2658. <title>tick_sched_timer (7,666,902 samples, 0.05%)</title><rect x="819.6" y="405" width="0.6" height="15.0" fill="rgb(254,227,54)" rx="2" ry="2" />
  2659. <text x="822.61" y="415.5" ></text>
  2660. </g>
  2661. <g >
  2662. <title>__folio_alloc (1,638,884,491 samples, 10.03%)</title><rect x="1012.9" y="341" width="118.4" height="15.0" fill="rgb(224,91,21)" rx="2" ry="2" />
  2663. <text x="1015.89" y="351.5" >__folio_alloc</text>
  2664. </g>
  2665. <g >
  2666. <title>clear_page_erms (2,583,148 samples, 0.02%)</title><rect x="941.4" y="373" width="0.2" height="15.0" fill="rgb(229,113,27)" rx="2" ry="2" />
  2667. <text x="944.41" y="383.5" ></text>
  2668. </g>
  2669. <g >
  2670. <title>kernfs_unlink_open_file (2,652,940 samples, 0.02%)</title><rect x="1137.5" y="277" width="0.2" height="15.0" fill="rgb(244,183,43)" rx="2" ry="2" />
  2671. <text x="1140.51" y="287.5" ></text>
  2672. </g>
  2673. <g >
  2674. <title>down_write (2,582,768 samples, 0.02%)</title><rect x="1136.9" y="293" width="0.2" height="15.0" fill="rgb(222,79,18)" rx="2" ry="2" />
  2675. <text x="1139.87" y="303.5" ></text>
  2676. </g>
  2677. <g >
  2678. <title>add_group (1,490,139 samples, 0.01%)</title><rect x="10.3" y="485" width="0.1" height="15.0" fill="rgb(233,129,30)" rx="2" ry="2" />
  2679. <text x="13.31" y="495.5" ></text>
  2680. </g>
  2681. <g >
  2682. <title>auto dml::detail::ml::make_mem_move_task&lt;std::allocator&lt;unsigned char&gt; &gt; (44,228,686 samples, 0.27%)</title><rect x="1143.5" y="405" width="3.2" height="15.0" fill="rgb(216,52,12)" rx="2" ry="2" />
  2683. <text x="1146.53" y="415.5" ></text>
  2684. </g>
  2685. <g >
  2686. <title>fpregs_assert_state_consistent (1,569,121 samples, 0.01%)</title><rect x="820.9" y="389" width="0.1" height="15.0" fill="rgb(228,109,26)" rx="2" ry="2" />
  2687. <text x="823.91" y="399.5" ></text>
  2688. </g>
  2689. <g >
  2690. <title>seq_read_iter (18,635,874 samples, 0.11%)</title><rect x="1140.0" y="309" width="1.4" height="15.0" fill="rgb(232,128,30)" rx="2" ry="2" />
  2691. <text x="1143.02" y="319.5" ></text>
  2692. </g>
  2693. <g >
  2694. <title>dev_attr_show (14,183,508 samples, 0.09%)</title><rect x="1140.3" y="277" width="1.1" height="15.0" fill="rgb(213,37,9)" rx="2" ry="2" />
  2695. <text x="1143.34" y="287.5" ></text>
  2696. </g>
  2697. <g >
  2698. <title>free_tail_page_prepare (55,358,225 samples, 0.34%)</title><rect x="19.4" y="133" width="4.0" height="15.0" fill="rgb(251,211,50)" rx="2" ry="2" />
  2699. <text x="22.43" y="143.5" ></text>
  2700. </g>
  2701. <g >
  2702. <title>do_vmi_munmap (259,486,254 samples, 1.59%)</title><rect x="12.1" y="261" width="18.7" height="15.0" fill="rgb(253,223,53)" rx="2" ry="2" />
  2703. <text x="15.06" y="271.5" ></text>
  2704. </g>
  2705. <g >
  2706. <title>entry_SYSCALL_64_after_hwframe (38,464,959 samples, 0.24%)</title><rect x="1143.9" y="197" width="2.8" height="15.0" fill="rgb(218,63,15)" rx="2" ry="2" />
  2707. <text x="1146.95" y="207.5" ></text>
  2708. </g>
  2709. <g >
  2710. <title>number (3,666,378 samples, 0.02%)</title><rect x="1141.1" y="197" width="0.3" height="15.0" fill="rgb(221,73,17)" rx="2" ry="2" />
  2711. <text x="1144.10" y="207.5" ></text>
  2712. </g>
  2713. <g >
  2714. <title>change_protection (26,909,047 samples, 0.16%)</title><rect x="1143.9" y="117" width="2.0" height="15.0" fill="rgb(209,22,5)" rx="2" ry="2" />
  2715. <text x="1146.95" y="127.5" ></text>
  2716. </g>
  2717. <g >
  2718. <title>sysvec_apic_timer_interrupt (7,666,902 samples, 0.05%)</title><rect x="819.6" y="469" width="0.6" height="15.0" fill="rgb(220,69,16)" rx="2" ry="2" />
  2719. <text x="822.61" y="479.5" ></text>
  2720. </g>
  2721. <g >
  2722. <title>update_process_times (6,579,035 samples, 0.04%)</title><rect x="819.7" y="373" width="0.5" height="15.0" fill="rgb(250,209,50)" rx="2" ry="2" />
  2723. <text x="822.68" y="383.5" ></text>
  2724. </g>
  2725. <g >
  2726. <title>__mod_lruvec_page_state (2,463,026 samples, 0.02%)</title><rect x="1011.6" y="341" width="0.2" height="15.0" fill="rgb(245,185,44)" rx="2" ry="2" />
  2727. <text x="1014.61" y="351.5" ></text>
  2728. </g>
  2729. <g >
  2730. <title>tick_sched_handle (6,579,035 samples, 0.04%)</title><rect x="819.7" y="389" width="0.5" height="15.0" fill="rgb(219,68,16)" rx="2" ry="2" />
  2731. <text x="822.68" y="399.5" ></text>
  2732. </g>
  2733. <g >
  2734. <title>asm_sysvec_apic_timer_interrupt (8,685,354 samples, 0.05%)</title><rect x="941.9" y="485" width="0.6" height="15.0" fill="rgb(232,127,30)" rx="2" ry="2" />
  2735. <text x="944.88" y="495.5" ></text>
  2736. </g>
  2737. <g >
  2738. <title>qi_submit_sync (16,071,349 samples, 0.10%)</title><rect x="1144.7" y="53" width="1.2" height="15.0" fill="rgb(239,159,38)" rx="2" ry="2" />
  2739. <text x="1147.73" y="63.5" ></text>
  2740. </g>
  2741. <g >
  2742. <title>free_unref_page (13,824,412 samples, 0.08%)</title><rect x="10.8" y="325" width="1.0" height="15.0" fill="rgb(253,224,53)" rx="2" ry="2" />
  2743. <text x="13.81" y="335.5" ></text>
  2744. </g>
  2745. <g >
  2746. <title>dml::core::dispatcher::hw_dispatcher::initialize_hw (12,186,558 samples, 0.07%)</title><rect x="1146.7" y="341" width="0.9" height="15.0" fill="rgb(242,173,41)" rx="2" ry="2" />
  2747. <text x="1149.73" y="351.5" ></text>
  2748. </g>
  2749. <g >
  2750. <title>lru_gen_add_folio (1,423,052 samples, 0.01%)</title><rect x="1011.5" y="309" width="0.1" height="15.0" fill="rgb(216,53,12)" rx="2" ry="2" />
  2751. <text x="1014.45" y="319.5" ></text>
  2752. </g>
  2753. <g >
  2754. <title>do_user_addr_fault (3,409,299 samples, 0.02%)</title><rect x="31.0" y="341" width="0.2" height="15.0" fill="rgb(228,108,25)" rx="2" ry="2" />
  2755. <text x="33.99" y="351.5" ></text>
  2756. </g>
  2757. <g >
  2758. <title>handle_mm_fault (2,542,611 samples, 0.02%)</title><rect x="31.0" y="325" width="0.2" height="15.0" fill="rgb(234,135,32)" rx="2" ry="2" />
  2759. <text x="33.99" y="335.5" ></text>
  2760. </g>
  2761. <g >
  2762. <title>task_work_run (5,918,508 samples, 0.04%)</title><rect x="1137.5" y="325" width="0.4" height="15.0" fill="rgb(209,22,5)" rx="2" ry="2" />
  2763. <text x="1140.51" y="335.5" ></text>
  2764. </g>
  2765. <g >
  2766. <title>__count_memcg_events (2,820,695 samples, 0.02%)</title><rect x="948.5" y="309" width="0.2" height="15.0" fill="rgb(250,211,50)" rx="2" ry="2" />
  2767. <text x="951.52" y="319.5" ></text>
  2768. </g>
  2769. <g >
  2770. <title>sysfs_emit_at (13,571,657 samples, 0.08%)</title><rect x="1140.4" y="245" width="1.0" height="15.0" fill="rgb(206,8,1)" rx="2" ry="2" />
  2771. <text x="1143.39" y="255.5" ></text>
  2772. </g>
  2773. <g >
  2774. <title>qi_flush_piotlb (44,113,272 samples, 0.27%)</title><rect x="14.9" y="165" width="3.2" height="15.0" fill="rgb(251,215,51)" rx="2" ry="2" />
  2775. <text x="17.87" y="175.5" ></text>
  2776. </g>
  2777. <g >
  2778. <title>perf_event_task_tick (2,777,240 samples, 0.02%)</title><rect x="270.7" y="341" width="0.2" height="15.0" fill="rgb(205,3,0)" rx="2" ry="2" />
  2779. <text x="273.68" y="351.5" ></text>
  2780. </g>
  2781. <g >
  2782. <title>free_unref_page (70,061,865 samples, 0.43%)</title><rect x="18.4" y="165" width="5.0" height="15.0" fill="rgb(253,224,53)" rx="2" ry="2" />
  2783. <text x="21.37" y="175.5" ></text>
  2784. </g>
  2785. <g >
  2786. <title>intel_invalidate_range (19,560,452 samples, 0.12%)</title><rect x="1138.3" y="165" width="1.4" height="15.0" fill="rgb(228,107,25)" rx="2" ry="2" />
  2787. <text x="1141.33" y="175.5" ></text>
  2788. </g>
  2789. <g >
  2790. <title>exc_page_fault (6,013,560 samples, 0.04%)</title><rect x="941.4" y="469" width="0.4" height="15.0" fill="rgb(212,35,8)" rx="2" ry="2" />
  2791. <text x="944.41" y="479.5" ></text>
  2792. </g>
  2793. <g >
  2794. <title>perf_event_mmap (6,351,246 samples, 0.04%)</title><rect x="1145.9" y="117" width="0.5" height="15.0" fill="rgb(229,112,26)" rx="2" ry="2" />
  2795. <text x="1148.89" y="127.5" ></text>
  2796. </g>
  2797. <g >
  2798. <title>kernfs_dop_revalidate (1,551,814 samples, 0.01%)</title><rect x="1142.4" y="229" width="0.1" height="15.0" fill="rgb(229,110,26)" rx="2" ry="2" />
  2799. <text x="1145.41" y="239.5" ></text>
  2800. </g>
  2801. <g >
  2802. <title>std::_Vector_base&lt;int, std::allocator&lt;int&gt; &gt;::_M_allocate (3,431,863 samples, 0.02%)</title><rect x="943.2" y="421" width="0.3" height="15.0" fill="rgb(216,52,12)" rx="2" ry="2" />
  2803. <text x="946.24" y="431.5" ></text>
  2804. </g>
  2805. <g >
  2806. <title>asm_sysvec_apic_timer_interrupt (3,300,386 samples, 0.02%)</title><rect x="819.4" y="453" width="0.2" height="15.0" fill="rgb(232,127,30)" rx="2" ry="2" />
  2807. <text x="822.37" y="463.5" ></text>
  2808. </g>
  2809. <g >
  2810. <title>qi_flush_dev_iotlb_pasid (32,864,156 samples, 0.20%)</title><rect x="12.5" y="165" width="2.4" height="15.0" fill="rgb(220,69,16)" rx="2" ry="2" />
  2811. <text x="15.50" y="175.5" ></text>
  2812. </g>
  2813. <g >
  2814. <title>entry_SYSCALL_64_after_hwframe (9,653,225 samples, 0.06%)</title><rect x="1148.0" y="501" width="0.7" height="15.0" fill="rgb(218,63,15)" rx="2" ry="2" />
  2815. <text x="1151.00" y="511.5" ></text>
  2816. </g>
  2817. <g >
  2818. <title>charge_memcg (11,014,135 samples, 0.07%)</title><rect x="948.4" y="341" width="0.8" height="15.0" fill="rgb(242,170,40)" rx="2" ry="2" />
  2819. <text x="951.45" y="351.5" ></text>
  2820. </g>
  2821. <g >
  2822. <title>handle_mm_fault (1,830,044,679 samples, 11.20%)</title><rect x="303.2" y="437" width="132.2" height="15.0" fill="rgb(234,135,32)" rx="2" ry="2" />
  2823. <text x="306.21" y="447.5" >handle_mm_fault</text>
  2824. </g>
  2825. <g >
  2826. <title>std::pair&lt;unsigned char* const, dsacache::CacheData&gt;::~pair (262,080,827 samples, 1.60%)</title><rect x="12.0" y="389" width="18.9" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
  2827. <text x="15.00" y="399.5" ></text>
  2828. </g>
  2829. <g >
  2830. <title>__sysvec_apic_timer_interrupt (7,666,902 samples, 0.05%)</title><rect x="819.6" y="453" width="0.6" height="15.0" fill="rgb(242,173,41)" rx="2" ry="2" />
  2831. <text x="822.61" y="463.5" ></text>
  2832. </g>
  2833. <g >
  2834. <title>entry_SYSCALL_64_after_hwframe (6,690,044 samples, 0.04%)</title><rect x="1137.4" y="389" width="0.5" height="15.0" fill="rgb(218,63,15)" rx="2" ry="2" />
  2835. <text x="1140.45" y="399.5" ></text>
  2836. </g>
  2837. <g >
  2838. <title>std::allocator&lt;std::__detail::_Hash_node&lt;std::pair&lt;unsigned char* const, dsacache::CacheData&gt;, false&gt; &gt;::allocate (2,231,659 samples, 0.01%)</title><rect x="1147.8" y="389" width="0.1" height="15.0" fill="rgb(213,36,8)" rx="2" ry="2" />
  2839. <text x="1150.78" y="399.5" ></text>
  2840. </g>
  2841. <g >
  2842. <title>sysvec_apic_timer_interrupt (1,541,693 samples, 0.01%)</title><rect x="1011.0" y="309" width="0.1" height="15.0" fill="rgb(220,69,16)" rx="2" ry="2" />
  2843. <text x="1014.00" y="319.5" ></text>
  2844. </g>
  2845. <g >
  2846. <title>unmap_vmas (91,685,764 samples, 0.56%)</title><rect x="24.2" y="213" width="6.6" height="15.0" fill="rgb(243,176,42)" rx="2" ry="2" />
  2847. <text x="27.18" y="223.5" ></text>
  2848. </g>
  2849. <g >
  2850. <title>entry_SYSCALL_64_after_hwframe (2,565,568 samples, 0.02%)</title><rect x="1146.9" y="181" width="0.2" height="15.0" fill="rgb(218,63,15)" rx="2" ry="2" />
  2851. <text x="1149.94" y="191.5" ></text>
  2852. </g>
  2853. <g >
  2854. <title>__mem_cgroup_uncharge (2,593,230 samples, 0.02%)</title><rect x="18.2" y="149" width="0.2" height="15.0" fill="rgb(251,215,51)" rx="2" ry="2" />
  2855. <text x="21.18" y="159.5" ></text>
  2856. </g>
  2857. <g >
  2858. <title>handle_mm_fault (1,722,903 samples, 0.01%)</title><rect x="1143.5" y="197" width="0.2" height="15.0" fill="rgb(234,135,32)" rx="2" ry="2" />
  2859. <text x="1146.53" y="207.5" ></text>
  2860. </g>
  2861. <g >
  2862. <title>asm_sysvec_apic_timer_interrupt (7,666,902 samples, 0.05%)</title><rect x="819.6" y="485" width="0.6" height="15.0" fill="rgb(232,127,30)" rx="2" ry="2" />
  2863. <text x="822.61" y="495.5" ></text>
  2864. </g>
  2865. <g >
  2866. <title>__mem_cgroup_charge (7,762,650 samples, 0.05%)</title><rect x="951.3" y="357" width="0.6" height="15.0" fill="rgb(218,60,14)" rx="2" ry="2" />
  2867. <text x="954.31" y="367.5" ></text>
  2868. </g>
  2869. <g >
  2870. <title>__x64_sys_munmap (18,146,766 samples, 0.11%)</title><rect x="10.7" y="453" width="1.3" height="15.0" fill="rgb(206,7,1)" rx="2" ry="2" />
  2871. <text x="13.69" y="463.5" ></text>
  2872. </g>
  2873. <g >
  2874. <title>unmap_region (18,146,766 samples, 0.11%)</title><rect x="10.7" y="389" width="1.3" height="15.0" fill="rgb(219,64,15)" rx="2" ry="2" />
  2875. <text x="13.69" y="399.5" ></text>
  2876. </g>
  2877. <g >
  2878. <title>syscall (7,728,229 samples, 0.05%)</title><rect x="820.5" y="469" width="0.5" height="15.0" fill="rgb(234,136,32)" rx="2" ry="2" />
  2879. <text x="823.47" y="479.5" ></text>
  2880. </g>
  2881. <g >
  2882. <title>do_syscall_64 (20,070,864 samples, 0.12%)</title><rect x="1139.9" y="357" width="1.5" height="15.0" fill="rgb(209,20,4)" rx="2" ry="2" />
  2883. <text x="1142.92" y="367.5" ></text>
  2884. </g>
  2885. <g >
  2886. <title>release_pages (14,688,744 samples, 0.09%)</title><rect x="10.8" y="341" width="1.1" height="15.0" fill="rgb(228,106,25)" rx="2" ry="2" />
  2887. <text x="13.81" y="351.5" ></text>
  2888. </g>
  2889. <g >
  2890. <title>kernel_clone (23,342,525 samples, 0.14%)</title><rect x="627.5" y="501" width="1.6" height="15.0" fill="rgb(241,169,40)" rx="2" ry="2" />
  2891. <text x="630.45" y="511.5" ></text>
  2892. </g>
  2893. <g >
  2894. <title>down_read_trylock (3,277,199 samples, 0.02%)</title><rect x="1131.6" y="389" width="0.3" height="15.0" fill="rgb(219,66,15)" rx="2" ry="2" />
  2895. <text x="1134.64" y="399.5" ></text>
  2896. </g>
  2897. <g >
  2898. <title>mas_store_gfp (1,728,362 samples, 0.01%)</title><rect x="12.3" y="229" width="0.1" height="15.0" fill="rgb(216,53,12)" rx="2" ry="2" />
  2899. <text x="15.31" y="239.5" ></text>
  2900. </g>
  2901. <g >
  2902. <title>qi_submit_sync (2,592,030 samples, 0.02%)</title><rect x="1148.5" y="373" width="0.2" height="15.0" fill="rgb(239,159,38)" rx="2" ry="2" />
  2903. <text x="1151.51" y="383.5" ></text>
  2904. </g>
  2905. <g >
  2906. <title>__mod_lruvec_page_state (1,729,498 samples, 0.01%)</title><rect x="30.1" y="165" width="0.1" height="15.0" fill="rgb(245,185,44)" rx="2" ry="2" />
  2907. <text x="33.05" y="175.5" ></text>
  2908. </g>
  2909. <g >
  2910. <title>asm_sysvec_apic_timer_interrupt (1,541,693 samples, 0.01%)</title><rect x="1011.0" y="325" width="0.1" height="15.0" fill="rgb(232,127,30)" rx="2" ry="2" />
  2911. <text x="1014.00" y="335.5" ></text>
  2912. </g>
  2913. <g >
  2914. <title>tick_sched_handle (2,777,240 samples, 0.02%)</title><rect x="270.7" y="389" width="0.2" height="15.0" fill="rgb(219,68,16)" rx="2" ry="2" />
  2915. <text x="273.68" y="399.5" ></text>
  2916. </g>
  2917. <g >
  2918. <title>seq_release (2,404,641 samples, 0.01%)</title><rect x="1137.8" y="277" width="0.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
  2919. <text x="1140.76" y="287.5" ></text>
  2920. </g>
  2921. <g >
  2922. <title>scheduler_tick (1,460,612 samples, 0.01%)</title><rect x="1131.1" y="149" width="0.1" height="15.0" fill="rgb(246,190,45)" rx="2" ry="2" />
  2923. <text x="1134.10" y="159.5" ></text>
  2924. </g>
  2925. <g >
  2926. <title>exit_to_user_mode_prepare (2,109,428 samples, 0.01%)</title><rect x="820.9" y="405" width="0.1" height="15.0" fill="rgb(228,108,25)" rx="2" ry="2" />
  2927. <text x="823.87" y="415.5" ></text>
  2928. </g>
  2929. <g >
  2930. <title>dsacache::Cache::SubmitTask (2,831,153,568 samples, 17.33%)</title><rect x="943.2" y="485" width="204.5" height="15.0" fill="rgb(236,142,34)" rx="2" ry="2" />
  2931. <text x="946.24" y="495.5" >dsacache::Cache::SubmitTask</text>
  2932. </g>
  2933. <g >
  2934. <title>grow_heap (39,224,955 samples, 0.24%)</title><rect x="1143.9" y="229" width="2.8" height="15.0" fill="rgb(237,151,36)" rx="2" ry="2" />
  2935. <text x="1146.89" y="239.5" ></text>
  2936. </g>
  2937. <g >
  2938. <title>__mem_cgroup_charge (3,461,902 samples, 0.02%)</title><rect x="303.6" y="389" width="0.2" height="15.0" fill="rgb(218,60,14)" rx="2" ry="2" />
  2939. <text x="306.58" y="399.5" ></text>
  2940. </g>
  2941. <g >
  2942. <title>do_vmi_align_munmap (1,728,623 samples, 0.01%)</title><rect x="10.5" y="373" width="0.1" height="15.0" fill="rgb(211,29,7)" rx="2" ry="2" />
  2943. <text x="13.51" y="383.5" ></text>
  2944. </g>
  2945. <g >
  2946. <title>malloc_consolidate (1,469,475 samples, 0.01%)</title><rect x="1138.2" y="325" width="0.1" height="15.0" fill="rgb(239,159,38)" rx="2" ry="2" />
  2947. <text x="1141.16" y="335.5" ></text>
  2948. </g>
  2949. <g >
  2950. <title>_mm512_stream_load_si512 (384,094,614 samples, 2.35%)</title><rect x="791.9" y="469" width="27.7" height="15.0" fill="rgb(216,52,12)" rx="2" ry="2" />
  2951. <text x="794.86" y="479.5" >_..</text>
  2952. </g>
  2953. <g >
  2954. <title>std::vector&lt;int, std::allocator&lt;int&gt; &gt;::vector (3,431,863 samples, 0.02%)</title><rect x="943.2" y="453" width="0.3" height="15.0" fill="rgb(216,53,12)" rx="2" ry="2" />
  2955. <text x="946.24" y="463.5" ></text>
  2956. </g>
  2957. <g >
  2958. <title>tlb_batch_pages_flush (14,688,744 samples, 0.09%)</title><rect x="10.8" y="357" width="1.1" height="15.0" fill="rgb(234,133,32)" rx="2" ry="2" />
  2959. <text x="13.81" y="367.5" ></text>
  2960. </g>
  2961. <g >
  2962. <title>do_mprotect_pkey (20,421,763 samples, 0.12%)</title><rect x="1138.3" y="229" width="1.5" height="15.0" fill="rgb(252,218,52)" rx="2" ry="2" />
  2963. <text x="1141.33" y="239.5" ></text>
  2964. </g>
  2965. <g >
  2966. <title>entry_SYSCALL_64_after_hwframe (50,596,001 samples, 0.31%)</title><rect x="1133.1" y="405" width="3.6" height="15.0" fill="rgb(218,63,15)" rx="2" ry="2" />
  2967. <text x="1136.09" y="415.5" ></text>
  2968. </g>
  2969. <g >
  2970. <title>asm_exc_page_fault (1,833,508,599 samples, 11.22%)</title><rect x="303.1" y="485" width="132.4" height="15.0" fill="rgb(225,93,22)" rx="2" ry="2" />
  2971. <text x="306.08" y="495.5" >asm_exc_page_fault</text>
  2972. </g>
  2973. <g >
  2974. <title>Filter&lt;unsigned long, LT, (1,678,013,429 samples, 10.27%)</title><rect x="821.3" y="501" width="121.2" height="15.0" fill="rgb(234,136,32)" rx="2" ry="2" />
  2975. <text x="824.31" y="511.5" >Filter&lt;unsigned..</text>
  2976. </g>
  2977. <g >
  2978. <title>qi_submit_sync (8,586,262 samples, 0.05%)</title><rect x="1138.3" y="133" width="0.7" height="15.0" fill="rgb(239,159,38)" rx="2" ry="2" />
  2979. <text x="1141.33" y="143.5" ></text>
  2980. </g>
  2981. <g >
  2982. <title>clear_page_erms (1,694,345 samples, 0.01%)</title><rect x="31.1" y="213" width="0.1" height="15.0" fill="rgb(229,113,27)" rx="2" ry="2" />
  2983. <text x="34.05" y="223.5" ></text>
  2984. </g>
  2985. <g >
  2986. <title>clear_page_erms (3,430,412 samples, 0.02%)</title><rect x="941.6" y="325" width="0.2" height="15.0" fill="rgb(229,113,27)" rx="2" ry="2" />
  2987. <text x="944.59" y="335.5" ></text>
  2988. </g>
  2989. <g >
  2990. <title>accfg_wq_get_first (8,186,564 samples, 0.05%)</title><rect x="1146.9" y="309" width="0.6" height="15.0" fill="rgb(210,26,6)" rx="2" ry="2" />
  2991. <text x="1149.87" y="319.5" ></text>
  2992. </g>
  2993. <g >
  2994. <title>__libc_openat64 (2,565,568 samples, 0.02%)</title><rect x="1146.9" y="197" width="0.2" height="15.0" fill="rgb(209,21,5)" rx="2" ry="2" />
  2995. <text x="1149.94" y="207.5" ></text>
  2996. </g>
  2997. <g >
  2998. <title>__page_cache_release (1,728,698 samples, 0.01%)</title><rect x="18.1" y="165" width="0.1" height="15.0" fill="rgb(249,206,49)" rx="2" ry="2" />
  2999. <text x="21.06" y="175.5" ></text>
  3000. </g>
  3001. <g >
  3002. <title>page_remove_rmap (3,459,855 samples, 0.02%)</title><rect x="30.6" y="165" width="0.2" height="15.0" fill="rgb(252,219,52)" rx="2" ry="2" />
  3003. <text x="33.55" y="175.5" ></text>
  3004. </g>
  3005. <g >
  3006. <title>scheduler_tick (7,117,074 samples, 0.04%)</title><rect x="942.0" y="357" width="0.5" height="15.0" fill="rgb(246,190,45)" rx="2" ry="2" />
  3007. <text x="944.99" y="367.5" ></text>
  3008. </g>
  3009. <g >
  3010. <title>vma_complete (1,732,102 samples, 0.01%)</title><rect x="12.1" y="213" width="0.1" height="15.0" fill="rgb(220,72,17)" rx="2" ry="2" />
  3011. <text x="15.12" y="223.5" ></text>
  3012. </g>
  3013. </g>
  3014. </svg>