Skip to content

Instantly share code, notes, and snippets.

@elderica
Created May 4, 2022 10:42
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save elderica/367f2b8a2b924c57a4f09ff54e442b20 to your computer and use it in GitHub Desktop.
Save elderica/367f2b8a2b924c57a4f09ff54e442b20 to your computer and use it in GitHub Desktop.
Display the source blob
Display the rendered blob
Raw
<?xml version="1.0" standalone="no"?><!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"><svg version="1.1" width="1200" height="790" onload="init(evt)" viewBox="0 0 1200 790" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:fg="http://github.com/jonhoo/inferno"><!--Flame graph stack visualization. See https://github.com/brendangregg/FlameGraph for latest version, and http://www.brendangregg.com/flamegraphs.html for examples.--><!--NOTES: --><defs><linearGradient id="background" y1="0" y2="1" x1="0" x2="0"><stop stop-color="#eeeeee" offset="5%"/><stop stop-color="#eeeeb0" offset="95%"/></linearGradient></defs><style type="text/css">
text { font-family:"Verdana"; font-size:12px; fill:rgb(0,0,0); }
#title { text-anchor:middle; font-size:17px; }
#search { opacity:0.1; cursor:pointer; }
#search:hover, #search.show { opacity:1; }
#subtitle { text-anchor:middle; font-color:rgb(160,160,160); }
#unzoom { cursor:pointer; }
#frames > *:hover { stroke:black; stroke-width:0.5; cursor:pointer; }
.hide { display:none; }
.parent { opacity:0.5; }
</style><script type="text/ecmascript"><![CDATA[
var nametype = 'Function:';
var fontsize = 12;
var fontwidth = 0.59;
var xpad = 10;
var inverted = false;
var searchcolor = 'rgb(230,0,230)';
var fluiddrawing = true;
var truncate_text_right = false;
]]><![CDATA["use strict";
var details, searchbtn, unzoombtn, matchedtxt, svg, searching, frames;
function init(evt) {
details = document.getElementById("details").firstChild;
searchbtn = document.getElementById("search");
unzoombtn = document.getElementById("unzoom");
matchedtxt = document.getElementById("matched");
svg = document.getElementsByTagName("svg")[0];
frames = document.getElementById("frames");
total_samples = parseInt(frames.attributes.total_samples.value);
searching = 0;
// Use GET parameters to restore a flamegraph's state.
var restore_state = function() {
var params = get_params();
if (params.x && params.y)
zoom(find_group(document.querySelector('[*|x="' + params.x + '"][y="' + params.y + '"]')));
if (params.s)
search(params.s);
};
if (fluiddrawing) {
// Make width dynamic so the SVG fits its parent's width.
svg.removeAttribute("width");
// Edge requires us to have a viewBox that gets updated with size changes.
var isEdge = /Edge\/\d./i.test(navigator.userAgent);
if (!isEdge) {
svg.removeAttribute("viewBox");
}
var update_for_width_change = function() {
if (isEdge) {
svg.attributes.viewBox.value = "0 0 " + svg.width.baseVal.value + " " + svg.height.baseVal.value;
}
// Keep consistent padding on left and right of frames container.
frames.attributes.width.value = svg.width.baseVal.value - xpad * 2;
// Text truncation needs to be adjusted for the current width.
var el = frames.children;
for(var i = 0; i < el.length; i++) {
update_text(el[i]);
}
// Keep search elements at a fixed distance from right edge.
var svgWidth = svg.width.baseVal.value;
searchbtn.attributes.x.value = svgWidth - xpad - 100;
matchedtxt.attributes.x.value = svgWidth - xpad - 100;
};
window.addEventListener('resize', function() {
update_for_width_change();
});
// This needs to be done asynchronously for Safari to work.
setTimeout(function() {
unzoom();
update_for_width_change();
restore_state();
}, 0);
} else {
restore_state();
}
}
// event listeners
window.addEventListener("click", function(e) {
var target = find_group(e.target);
if (target) {
if (target.nodeName == "a") {
if (e.ctrlKey === false) return;
e.preventDefault();
}
if (target.classList.contains("parent")) unzoom();
zoom(target);
// set parameters for zoom state
var el = target.querySelector("rect");
if (el && el.attributes && el.attributes.y && el.attributes["fg:x"]) {
var params = get_params()
params.x = el.attributes["fg:x"].value;
params.y = el.attributes.y.value;
history.replaceState(null, null, parse_params(params));
}
}
else if (e.target.id == "unzoom") {
unzoom();
// remove zoom state
var params = get_params();
if (params.x) delete params.x;
if (params.y) delete params.y;
history.replaceState(null, null, parse_params(params));
}
else if (e.target.id == "search") search_prompt();
}, false)
// mouse-over for info
// show
window.addEventListener("mouseover", function(e) {
var target = find_group(e.target);
if (target) details.nodeValue = nametype + " " + g_to_text(target);
}, false)
// clear
window.addEventListener("mouseout", function(e) {
var target = find_group(e.target);
if (target) details.nodeValue = ' ';
}, false)
// ctrl-F for search
window.addEventListener("keydown",function (e) {
if (e.keyCode === 114 || (e.ctrlKey && e.keyCode === 70)) {
e.preventDefault();
search_prompt();
}
}, false)
// functions
function get_params() {
var params = {};
var paramsarr = window.location.search.substr(1).split('&');
for (var i = 0; i < paramsarr.length; ++i) {
var tmp = paramsarr[i].split("=");
if (!tmp[0] || !tmp[1]) continue;
params[tmp[0]] = decodeURIComponent(tmp[1]);
}
return params;
}
function parse_params(params) {
var uri = "?";
for (var key in params) {
uri += key + '=' + encodeURIComponent(params[key]) + '&';
}
if (uri.slice(-1) == "&")
uri = uri.substring(0, uri.length - 1);
if (uri == '?')
uri = window.location.href.split('?')[0];
return uri;
}
function find_child(node, selector) {
var children = node.querySelectorAll(selector);
if (children.length) return children[0];
return;
}
function find_group(node) {
var parent = node.parentElement;
if (!parent) return;
if (parent.id == "frames") return node;
return find_group(parent);
}
function orig_save(e, attr, val) {
if (e.attributes["fg:orig_" + attr] != undefined) return;
if (e.attributes[attr] == undefined) return;
if (val == undefined) val = e.attributes[attr].value;
e.setAttribute("fg:orig_" + attr, val);
}
function orig_load(e, attr) {
if (e.attributes["fg:orig_"+attr] == undefined) return;
e.attributes[attr].value = e.attributes["fg:orig_" + attr].value;
e.removeAttribute("fg:orig_" + attr);
}
function g_to_text(e) {
var text = find_child(e, "title").firstChild.nodeValue;
return (text)
}
function g_to_func(e) {
var func = g_to_text(e);
// if there's any manipulation we want to do to the function
// name before it's searched, do it here before returning.
return (func);
}
function update_text(e) {
var r = find_child(e, "rect");
var t = find_child(e, "text");
var w = parseFloat(r.attributes.width.value) * frames.attributes.width.value / 100 - 3;
var txt = find_child(e, "title").textContent.replace(/\([^(]*\)$/,"");
t.attributes.x.value = format_percent((parseFloat(r.attributes.x.value) + (100 * 3 / frames.attributes.width.value)));
// Smaller than this size won't fit anything
if (w < 2 * fontsize * fontwidth) {
t.textContent = "";
return;
}
t.textContent = txt;
// Fit in full text width
if (/^ *\$/.test(txt) || t.getComputedTextLength() < w)
return;
if (truncate_text_right) {
// Truncate the right side of the text.
for (var x = txt.length - 2; x > 0; x--) {
if (t.getSubStringLength(0, x + 2) <= w) {
t.textContent = txt.substring(0, x) + "..";
return;
}
}
} else {
// Truncate the left side of the text.
for (var x = 2; x < txt.length; x++) {
if (t.getSubStringLength(x - 2, txt.length) <= w) {
t.textContent = ".." + txt.substring(x, txt.length);
return;
}
}
}
t.textContent = "";
}
// zoom
function zoom_reset(e) {
if (e.tagName == "rect") {
e.attributes.x.value = format_percent(100 * parseInt(e.attributes["fg:x"].value) / total_samples);
e.attributes.width.value = format_percent(100 * parseInt(e.attributes["fg:w"].value) / total_samples);
}
if (e.childNodes == undefined) return;
for(var i = 0, c = e.childNodes; i < c.length; i++) {
zoom_reset(c[i]);
}
}
function zoom_child(e, x, zoomed_width_samples) {
if (e.tagName == "text") {
var parent_x = parseFloat(find_child(e.parentNode, "rect[x]").attributes.x.value);
e.attributes.x.value = format_percent(parent_x + (100 * 3 / frames.attributes.width.value));
} else if (e.tagName == "rect") {
e.attributes.x.value = format_percent(100 * (parseInt(e.attributes["fg:x"].value) - x) / zoomed_width_samples);
e.attributes.width.value = format_percent(100 * parseInt(e.attributes["fg:w"].value) / zoomed_width_samples);
}
if (e.childNodes == undefined) return;
for(var i = 0, c = e.childNodes; i < c.length; i++) {
zoom_child(c[i], x, zoomed_width_samples);
}
}
function zoom_parent(e) {
if (e.attributes) {
if (e.attributes.x != undefined) {
e.attributes.x.value = "0.0%";
}
if (e.attributes.width != undefined) {
e.attributes.width.value = "100.0%";
}
}
if (e.childNodes == undefined) return;
for(var i = 0, c = e.childNodes; i < c.length; i++) {
zoom_parent(c[i]);
}
}
function zoom(node) {
var attr = find_child(node, "rect").attributes;
var width = parseInt(attr["fg:w"].value);
var xmin = parseInt(attr["fg:x"].value);
var xmax = xmin + width;
var ymin = parseFloat(attr.y.value);
unzoombtn.classList.remove("hide");
var el = frames.children;
for (var i = 0; i < el.length; i++) {
var e = el[i];
var a = find_child(e, "rect").attributes;
var ex = parseInt(a["fg:x"].value);
var ew = parseInt(a["fg:w"].value);
// Is it an ancestor
if (!inverted) {
var upstack = parseFloat(a.y.value) > ymin;
} else {
var upstack = parseFloat(a.y.value) < ymin;
}
if (upstack) {
// Direct ancestor
if (ex <= xmin && (ex+ew) >= xmax) {
e.classList.add("parent");
zoom_parent(e);
update_text(e);
}
// not in current path
else
e.classList.add("hide");
}
// Children maybe
else {
// no common path
if (ex < xmin || ex >= xmax) {
e.classList.add("hide");
}
else {
zoom_child(e, xmin, width);
update_text(e);
}
}
}
}
function unzoom() {
unzoombtn.classList.add("hide");
var el = frames.children;
for(var i = 0; i < el.length; i++) {
el[i].classList.remove("parent");
el[i].classList.remove("hide");
zoom_reset(el[i]);
update_text(el[i]);
}
}
// search
function reset_search() {
var el = document.querySelectorAll("#frames rect");
for (var i = 0; i < el.length; i++) {
orig_load(el[i], "fill")
}
var params = get_params();
delete params.s;
history.replaceState(null, null, parse_params(params));
}
function search_prompt() {
if (!searching) {
var term = prompt("Enter a search term (regexp " +
"allowed, eg: ^ext4_)", "");
if (term != null) {
search(term)
}
} else {
reset_search();
searching = 0;
searchbtn.classList.remove("show");
searchbtn.firstChild.nodeValue = "Search"
matchedtxt.classList.add("hide");
matchedtxt.firstChild.nodeValue = ""
}
}
function search(term) {
var re = new RegExp(term);
var el = frames.children;
var matches = new Object();
var maxwidth = 0;
for (var i = 0; i < el.length; i++) {
var e = el[i];
// Skip over frames which are either not visible, or below the zoomed-to frame
if (e.classList.contains("hide") || e.classList.contains("parent")) {
continue;
}
var func = g_to_func(e);
var rect = find_child(e, "rect");
if (func == null || rect == null)
continue;
// Save max width. Only works as we have a root frame
var w = parseInt(rect.attributes["fg:w"].value);
if (w > maxwidth)
maxwidth = w;
if (func.match(re)) {
// highlight
var x = parseInt(rect.attributes["fg:x"].value);
orig_save(rect, "fill");
rect.attributes.fill.value = searchcolor;
// remember matches
if (matches[x] == undefined) {
matches[x] = w;
} else {
if (w > matches[x]) {
// overwrite with parent
matches[x] = w;
}
}
searching = 1;
}
}
if (!searching)
return;
var params = get_params();
params.s = term;
history.replaceState(null, null, parse_params(params));
searchbtn.classList.add("show");
searchbtn.firstChild.nodeValue = "Reset Search";
// calculate percent matched, excluding vertical overlap
var count = 0;
var lastx = -1;
var lastw = 0;
var keys = Array();
for (k in matches) {
if (matches.hasOwnProperty(k))
keys.push(k);
}
// sort the matched frames by their x location
// ascending, then width descending
keys.sort(function(a, b){
return a - b;
});
// Step through frames saving only the biggest bottom-up frames
// thanks to the sort order. This relies on the tree property
// where children are always smaller than their parents.
for (var k in keys) {
var x = parseInt(keys[k]);
var w = matches[keys[k]];
if (x >= lastx + lastw) {
count += w;
lastx = x;
lastw = w;
}
}
// display matched percent
matchedtxt.classList.remove("hide");
var pct = 100 * count / maxwidth;
if (pct != 100) pct = pct.toFixed(1);
matchedtxt.firstChild.nodeValue = "Matched: " + pct + "%";
}
function format_percent(n) {
return n.toFixed(4) + "%";
}
]]></script><rect x="0" y="0" width="100%" height="790" fill="url(#background)"/><text id="title" x="50.0000%" y="24.00">Flame Graph</text><text id="details" x="10" y="773.00"> </text><text id="unzoom" class="hide" x="10" y="24.00">Reset Zoom</text><text id="search" x="1090" y="24.00">Search</text><text id="matched" x="1090" y="773.00"> </text><svg id="frames" x="10" width="1180" total_samples="49"><g><title>perf-exec (9 samples, 18.37%)</title><rect x="0.0000%" y="725" width="18.3673%" height="15" fill="rgb(227,0,7)" fg:x="0" fg:w="9"/><text x="0.2500%" y="735.50">perf-exec</text></g><g><title>entry_SYSCALL_64_after_hwframe (9 samples, 18.37%)</title><rect x="0.0000%" y="709" width="18.3673%" height="15" fill="rgb(217,0,24)" fg:x="0" fg:w="9"/><text x="0.2500%" y="719.50">entry_SYSCALL_64_after_hwframe</text></g><g><title>do_syscall_64 (9 samples, 18.37%)</title><rect x="0.0000%" y="693" width="18.3673%" height="15" fill="rgb(221,193,54)" fg:x="0" fg:w="9"/><text x="0.2500%" y="703.50">do_syscall_64</text></g><g><title>__x64_sys_execve (9 samples, 18.37%)</title><rect x="0.0000%" y="677" width="18.3673%" height="15" fill="rgb(248,212,6)" fg:x="0" fg:w="9"/><text x="0.2500%" y="687.50">__x64_sys_execve</text></g><g><title>do_execveat_common.isra.0 (9 samples, 18.37%)</title><rect x="0.0000%" y="661" width="18.3673%" height="15" fill="rgb(208,68,35)" fg:x="0" fg:w="9"/><text x="0.2500%" y="671.50">do_execveat_common.isra.0</text></g><g><title>bprm_execve (9 samples, 18.37%)</title><rect x="0.0000%" y="645" width="18.3673%" height="15" fill="rgb(232,128,0)" fg:x="0" fg:w="9"/><text x="0.2500%" y="655.50">bprm_execve</text></g><g><title>load_elf_binary (9 samples, 18.37%)</title><rect x="0.0000%" y="629" width="18.3673%" height="15" fill="rgb(207,160,47)" fg:x="0" fg:w="9"/><text x="0.2500%" y="639.50">load_elf_binary</text></g><g><title>begin_new_exec (9 samples, 18.37%)</title><rect x="0.0000%" y="613" width="18.3673%" height="15" fill="rgb(228,23,34)" fg:x="0" fg:w="9"/><text x="0.2500%" y="623.50">begin_new_exec</text></g><g><title>perf_event_exec (9 samples, 18.37%)</title><rect x="0.0000%" y="597" width="18.3673%" height="15" fill="rgb(218,30,26)" fg:x="0" fg:w="9"/><text x="0.2500%" y="607.50">perf_event_exec</text></g><g><title>perf_iterate_ctx (8 samples, 16.33%)</title><rect x="2.0408%" y="581" width="16.3265%" height="15" fill="rgb(220,122,19)" fg:x="1" fg:w="8"/><text x="2.2908%" y="591.50">perf_iterate_ctx</text></g><g><title>core::ptr::drop_in_place&lt;alloc::string::String&gt; (1 samples, 2.04%)</title><rect x="18.3673%" y="437" width="2.0408%" height="15" fill="rgb(250,228,42)" fg:x="9" fg:w="1"/><text x="18.6173%" y="447.50">c..</text></g><g><title>core::ptr::drop_in_place&lt;alloc::vec::Vec&lt;u8&gt;&gt; (1 samples, 2.04%)</title><rect x="18.3673%" y="421" width="2.0408%" height="15" fill="rgb(240,193,28)" fg:x="9" fg:w="1"/><text x="18.6173%" y="431.50">c..</text></g><g><title>core::ptr::drop_in_place&lt;alloc::raw_vec::RawVec&lt;u8&gt;&gt; (1 samples, 2.04%)</title><rect x="18.3673%" y="405" width="2.0408%" height="15" fill="rgb(216,20,37)" fg:x="9" fg:w="1"/><text x="18.6173%" y="415.50">c..</text></g><g><title>&lt;alloc::raw_vec::RawVec&lt;T,A&gt; as core::ops::drop::Drop&gt;::drop (1 samples, 2.04%)</title><rect x="18.3673%" y="389" width="2.0408%" height="15" fill="rgb(206,188,39)" fg:x="9" fg:w="1"/><text x="18.6173%" y="399.50">&lt;..</text></g><g><title>&lt;alloc::alloc::Global as core::alloc::Allocator&gt;::deallocate (1 samples, 2.04%)</title><rect x="18.3673%" y="373" width="2.0408%" height="15" fill="rgb(217,207,13)" fg:x="9" fg:w="1"/><text x="18.6173%" y="383.50">&lt;..</text></g><g><title>alloc::alloc::dealloc (1 samples, 2.04%)</title><rect x="18.3673%" y="357" width="2.0408%" height="15" fill="rgb(231,73,38)" fg:x="9" fg:w="1"/><text x="18.6173%" y="367.50">a..</text></g><g><title>__free (1 samples, 2.04%)</title><rect x="18.3673%" y="341" width="2.0408%" height="15" fill="rgb(225,20,46)" fg:x="9" fg:w="1"/><text x="18.6173%" y="351.50">_..</text></g><g><title>core::ptr::drop_in_place&lt;alloc::vec::into_iter::IntoIter&lt;alloc::string::String&gt;&gt; (1 samples, 2.04%)</title><rect x="20.4082%" y="437" width="2.0408%" height="15" fill="rgb(210,31,41)" fg:x="10" fg:w="1"/><text x="20.6582%" y="447.50">c..</text></g><g><title>&lt;alloc::vec::into_iter::IntoIter&lt;T,A&gt; as core::ops::drop::Drop&gt;::drop (1 samples, 2.04%)</title><rect x="20.4082%" y="421" width="2.0408%" height="15" fill="rgb(221,200,47)" fg:x="10" fg:w="1"/><text x="20.6582%" y="431.50">&lt;..</text></g><g><title>core::ptr::drop_in_place&lt;&lt;alloc::vec::into_iter::IntoIter&lt;T,A&gt; as core::ops::drop::Drop&gt;::drop::DropGuard&lt;alloc::string::String,alloc::alloc::Global&gt;&gt; (1 samples, 2.04%)</title><rect x="20.4082%" y="405" width="2.0408%" height="15" fill="rgb(226,26,5)" fg:x="10" fg:w="1"/><text x="20.6582%" y="415.50">c..</text></g><g><title>&lt;&lt;alloc::vec::into_iter::IntoIter&lt;T,A&gt; as core::ops::drop::Drop&gt;::drop::DropGuard&lt;T,A&gt; as core::ops::drop::Drop&gt;::drop (1 samples, 2.04%)</title><rect x="20.4082%" y="389" width="2.0408%" height="15" fill="rgb(249,33,26)" fg:x="10" fg:w="1"/><text x="20.6582%" y="399.50">&lt;..</text></g><g><title>core::ptr::drop_in_place&lt;alloc::raw_vec::RawVec&lt;alloc::string::String&gt;&gt; (1 samples, 2.04%)</title><rect x="20.4082%" y="373" width="2.0408%" height="15" fill="rgb(235,183,28)" fg:x="10" fg:w="1"/><text x="20.6582%" y="383.50">c..</text></g><g><title>&lt;alloc::raw_vec::RawVec&lt;T,A&gt; as core::ops::drop::Drop&gt;::drop (1 samples, 2.04%)</title><rect x="20.4082%" y="357" width="2.0408%" height="15" fill="rgb(221,5,38)" fg:x="10" fg:w="1"/><text x="20.6582%" y="367.50">&lt;..</text></g><g><title>&lt;alloc::alloc::Global as core::alloc::Allocator&gt;::deallocate (1 samples, 2.04%)</title><rect x="20.4082%" y="341" width="2.0408%" height="15" fill="rgb(247,18,42)" fg:x="10" fg:w="1"/><text x="20.6582%" y="351.50">&lt;..</text></g><g><title>alloc::alloc::dealloc (1 samples, 2.04%)</title><rect x="20.4082%" y="325" width="2.0408%" height="15" fill="rgb(241,131,45)" fg:x="10" fg:w="1"/><text x="20.6582%" y="335.50">a..</text></g><g><title>__free (1 samples, 2.04%)</title><rect x="20.4082%" y="309" width="2.0408%" height="15" fill="rgb(249,31,29)" fg:x="10" fg:w="1"/><text x="20.6582%" y="319.50">_..</text></g><g><title>core::str::&lt;impl str&gt;::parse (2 samples, 4.08%)</title><rect x="22.4490%" y="437" width="4.0816%" height="15" fill="rgb(225,111,53)" fg:x="11" fg:w="2"/><text x="22.6990%" y="447.50">core..</text></g><g><title>core::num::&lt;impl core::str::traits::FromStr for u64&gt;::from_str (2 samples, 4.08%)</title><rect x="22.4490%" y="421" width="4.0816%" height="15" fill="rgb(238,160,17)" fg:x="11" fg:w="2"/><text x="22.6990%" y="431.50">core..</text></g><g><title>core::num::from_str_radix (2 samples, 4.08%)</title><rect x="22.4490%" y="405" width="4.0816%" height="15" fill="rgb(214,148,48)" fg:x="11" fg:w="2"/><text x="22.6990%" y="415.50">core..</text></g><g><title>entry_SYSCALL_64 (4 samples, 8.16%)</title><rect x="32.6531%" y="197" width="8.1633%" height="15" fill="rgb(232,36,49)" fg:x="16" fg:w="4"/><text x="32.9031%" y="207.50">entry_SYSCA..</text></g><g><title>__x64_sys_write (1 samples, 2.04%)</title><rect x="40.8163%" y="165" width="2.0408%" height="15" fill="rgb(209,103,24)" fg:x="20" fg:w="1"/><text x="41.0663%" y="175.50">_..</text></g><g><title>__fdget_pos (1 samples, 2.04%)</title><rect x="42.8571%" y="149" width="2.0408%" height="15" fill="rgb(229,88,8)" fg:x="21" fg:w="1"/><text x="43.1071%" y="159.50">_..</text></g><g><title>__fget_light (1 samples, 2.04%)</title><rect x="42.8571%" y="133" width="2.0408%" height="15" fill="rgb(213,181,19)" fg:x="21" fg:w="1"/><text x="43.1071%" y="143.50">_..</text></g><g><title>ksys_write (2 samples, 4.08%)</title><rect x="42.8571%" y="165" width="4.0816%" height="15" fill="rgb(254,191,54)" fg:x="21" fg:w="2"/><text x="43.1071%" y="175.50">ksys..</text></g><g><title>vfs_write (1 samples, 2.04%)</title><rect x="44.8980%" y="149" width="2.0408%" height="15" fill="rgb(241,83,37)" fg:x="22" fg:w="1"/><text x="45.1480%" y="159.50">v..</text></g><g><title>security_file_permission (1 samples, 2.04%)</title><rect x="44.8980%" y="133" width="2.0408%" height="15" fill="rgb(233,36,39)" fg:x="22" fg:w="1"/><text x="45.1480%" y="143.50">s..</text></g><g><title>bpf_lsm_file_permission (1 samples, 2.04%)</title><rect x="44.8980%" y="117" width="2.0408%" height="15" fill="rgb(226,3,54)" fg:x="22" fg:w="1"/><text x="45.1480%" y="127.50">b..</text></g><g><title>syscall_exit_to_user_mode (1 samples, 2.04%)</title><rect x="46.9388%" y="165" width="2.0408%" height="15" fill="rgb(245,192,40)" fg:x="23" fg:w="1"/><text x="47.1888%" y="175.50">s..</text></g><g><title>syscall_exit_work (1 samples, 2.04%)</title><rect x="46.9388%" y="149" width="2.0408%" height="15" fill="rgb(238,167,29)" fg:x="23" fg:w="1"/><text x="47.1888%" y="159.50">s..</text></g><g><title>__audit_syscall_exit (1 samples, 2.04%)</title><rect x="46.9388%" y="133" width="2.0408%" height="15" fill="rgb(232,182,51)" fg:x="23" fg:w="1"/><text x="47.1888%" y="143.50">_..</text></g><g><title>__GI___write (9 samples, 18.37%)</title><rect x="32.6531%" y="213" width="18.3673%" height="15" fill="rgb(231,60,39)" fg:x="16" fg:w="9"/><text x="32.9031%" y="223.50">__GI___write</text></g><g><title>entry_SYSCALL_64_after_hwframe (5 samples, 10.20%)</title><rect x="40.8163%" y="197" width="10.2041%" height="15" fill="rgb(208,69,12)" fg:x="20" fg:w="5"/><text x="41.0663%" y="207.50">entry_SYSCALL_6..</text></g><g><title>do_syscall_64 (5 samples, 10.20%)</title><rect x="40.8163%" y="181" width="10.2041%" height="15" fill="rgb(235,93,37)" fg:x="20" fg:w="5"/><text x="41.0663%" y="191.50">do_syscall_64</text></g><g><title>syscall_trace_enter.constprop.0 (1 samples, 2.04%)</title><rect x="48.9796%" y="165" width="2.0408%" height="15" fill="rgb(213,116,39)" fg:x="24" fg:w="1"/><text x="49.2296%" y="175.50">s..</text></g><g><title>std::io::buffered::bufwriter::BufWriter&lt;W&gt;::flush_buf (10 samples, 20.41%)</title><rect x="32.6531%" y="277" width="20.4082%" height="15" fill="rgb(222,207,29)" fg:x="16" fg:w="10"/><text x="32.9031%" y="287.50">std::io::buffered::bufwriter::Bu..</text></g><g><title>&lt;std::io::stdio::StdoutRaw as std::io::Write&gt;::write (10 samples, 20.41%)</title><rect x="32.6531%" y="261" width="20.4082%" height="15" fill="rgb(206,96,30)" fg:x="16" fg:w="10"/><text x="32.9031%" y="271.50">&lt;std::io::stdio::StdoutRaw as st..</text></g><g><title>&lt;std::sys::unix::stdio::Stdout as std::io::Write&gt;::write (10 samples, 20.41%)</title><rect x="32.6531%" y="245" width="20.4082%" height="15" fill="rgb(218,138,4)" fg:x="16" fg:w="10"/><text x="32.9031%" y="255.50">&lt;std::sys::unix::stdio::Stdout a..</text></g><g><title>std::sys::unix::fd::FileDesc::write (10 samples, 20.41%)</title><rect x="32.6531%" y="229" width="20.4082%" height="15" fill="rgb(250,191,14)" fg:x="16" fg:w="10"/><text x="32.9031%" y="239.50">std::sys::unix::fd::FileDesc::wr..</text></g><g><title>std::sys::unix::cvt (1 samples, 2.04%)</title><rect x="51.0204%" y="213" width="2.0408%" height="15" fill="rgb(239,60,40)" fg:x="25" fg:w="1"/><text x="51.2704%" y="223.50">s..</text></g><g><title>&lt;isize as std::sys::unix::IsMinusOne&gt;::is_minus_one (1 samples, 2.04%)</title><rect x="51.0204%" y="197" width="2.0408%" height="15" fill="rgb(206,27,48)" fg:x="25" fg:w="1"/><text x="51.2704%" y="207.50">&lt;..</text></g><g><title>&lt;std::io::Write::write_fmt::Adapter&lt;T&gt; as core::fmt::Write&gt;::write_str (11 samples, 22.45%)</title><rect x="32.6531%" y="341" width="22.4490%" height="15" fill="rgb(225,35,8)" fg:x="16" fg:w="11"/><text x="32.9031%" y="351.50">&lt;std::io::Write::write_fmt::Adapter&lt;..</text></g><g><title>&lt;std::io::stdio::StdoutLock as std::io::Write&gt;::write_all (11 samples, 22.45%)</title><rect x="32.6531%" y="325" width="22.4490%" height="15" fill="rgb(250,213,24)" fg:x="16" fg:w="11"/><text x="32.9031%" y="335.50">&lt;std::io::stdio::StdoutLock as std::..</text></g><g><title>&lt;std::io::buffered::linewriter::LineWriter&lt;W&gt; as std::io::Write&gt;::write_all (11 samples, 22.45%)</title><rect x="32.6531%" y="309" width="22.4490%" height="15" fill="rgb(247,123,22)" fg:x="16" fg:w="11"/><text x="32.9031%" y="319.50">&lt;std::io::buffered::linewriter::Line..</text></g><g><title>&lt;std::io::buffered::linewritershim::LineWriterShim&lt;W&gt; as std::io::Write&gt;::write_all (11 samples, 22.45%)</title><rect x="32.6531%" y="293" width="22.4490%" height="15" fill="rgb(231,138,38)" fg:x="16" fg:w="11"/><text x="32.9031%" y="303.50">&lt;std::io::buffered::linewritershim::..</text></g><g><title>std::sys_common::memchr::memrchr (1 samples, 2.04%)</title><rect x="53.0612%" y="277" width="2.0408%" height="15" fill="rgb(231,145,46)" fg:x="26" fg:w="1"/><text x="53.3112%" y="287.50">s..</text></g><g><title>std::sys::unix::memchr::memrchr (1 samples, 2.04%)</title><rect x="53.0612%" y="261" width="2.0408%" height="15" fill="rgb(251,118,11)" fg:x="26" fg:w="1"/><text x="53.3112%" y="271.50">s..</text></g><g><title>std::sys::unix::memchr::memrchr::memrchr_specific (1 samples, 2.04%)</title><rect x="53.0612%" y="245" width="2.0408%" height="15" fill="rgb(217,147,25)" fg:x="26" fg:w="1"/><text x="53.3112%" y="255.50">s..</text></g><g><title>__memrchr_avx2 (1 samples, 2.04%)</title><rect x="53.0612%" y="229" width="2.0408%" height="15" fill="rgb(247,81,37)" fg:x="26" fg:w="1"/><text x="53.3112%" y="239.50">_..</text></g><g><title>std::io::stdio::_print (15 samples, 30.61%)</title><rect x="26.5306%" y="437" width="30.6122%" height="15" fill="rgb(209,12,38)" fg:x="13" fg:w="15"/><text x="26.7806%" y="447.50">std::io::stdio::_print</text></g><g><title>std::io::stdio::print_to (14 samples, 28.57%)</title><rect x="28.5714%" y="421" width="28.5714%" height="15" fill="rgb(227,1,9)" fg:x="14" fg:w="14"/><text x="28.8214%" y="431.50">std::io::stdio::print_to</text></g><g><title>&lt;std::io::stdio::Stdout as std::io::Write&gt;::write_fmt (14 samples, 28.57%)</title><rect x="28.5714%" y="405" width="28.5714%" height="15" fill="rgb(248,47,43)" fg:x="14" fg:w="14"/><text x="28.8214%" y="415.50">&lt;std::io::stdio::Stdout as std::io::Write&gt;::wr..</text></g><g><title>&lt;&amp;std::io::stdio::Stdout as std::io::Write&gt;::write_fmt (13 samples, 26.53%)</title><rect x="30.6122%" y="389" width="26.5306%" height="15" fill="rgb(221,10,30)" fg:x="15" fg:w="13"/><text x="30.8622%" y="399.50">&lt;&amp;std::io::stdio::Stdout as std::io::Write..</text></g><g><title>std::io::Write::write_fmt (13 samples, 26.53%)</title><rect x="30.6122%" y="373" width="26.5306%" height="15" fill="rgb(210,229,1)" fg:x="15" fg:w="13"/><text x="30.8622%" y="383.50">std::io::Write::write_fmt</text></g><g><title>core::fmt::write (13 samples, 26.53%)</title><rect x="30.6122%" y="357" width="26.5306%" height="15" fill="rgb(222,148,37)" fg:x="15" fg:w="13"/><text x="30.8622%" y="367.50">core::fmt::write</text></g><g><title>core::fmt::num::imp::&lt;impl core::fmt::Display for u64&gt;::fmt (1 samples, 2.04%)</title><rect x="55.1020%" y="341" width="2.0408%" height="15" fill="rgb(234,67,33)" fg:x="27" fg:w="1"/><text x="55.3520%" y="351.50">c..</text></g><g><title>core::fmt::num::imp::fmt_u64 (1 samples, 2.04%)</title><rect x="55.1020%" y="325" width="2.0408%" height="15" fill="rgb(247,98,35)" fg:x="27" fg:w="1"/><text x="55.3520%" y="335.50">c..</text></g><g><title>&lt;core::str::iter::SplitWhitespace as core::iter::traits::iterator::Iterator&gt;::next (1 samples, 2.04%)</title><rect x="59.1837%" y="309" width="2.0408%" height="15" fill="rgb(247,138,52)" fg:x="29" fg:w="1"/><text x="59.4337%" y="319.50">&lt;..</text></g><g><title>&lt;core::iter::adapters::filter::Filter&lt;I,P&gt; as core::iter::traits::iterator::Iterator&gt;::next (1 samples, 2.04%)</title><rect x="59.1837%" y="293" width="2.0408%" height="15" fill="rgb(213,79,30)" fg:x="29" fg:w="1"/><text x="59.4337%" y="303.50">&lt;..</text></g><g><title>core::iter::traits::iterator::Iterator::find (1 samples, 2.04%)</title><rect x="59.1837%" y="277" width="2.0408%" height="15" fill="rgb(246,177,23)" fg:x="29" fg:w="1"/><text x="59.4337%" y="287.50">c..</text></g><g><title>core::iter::traits::iterator::Iterator::try_fold (1 samples, 2.04%)</title><rect x="59.1837%" y="261" width="2.0408%" height="15" fill="rgb(230,62,27)" fg:x="29" fg:w="1"/><text x="59.4337%" y="271.50">c..</text></g><g><title>&lt;core::str::iter::Split&lt;P&gt; as core::iter::traits::iterator::Iterator&gt;::next (1 samples, 2.04%)</title><rect x="59.1837%" y="245" width="2.0408%" height="15" fill="rgb(216,154,8)" fg:x="29" fg:w="1"/><text x="59.4337%" y="255.50">&lt;..</text></g><g><title>&lt;alloc::vec::Vec&lt;T&gt; as alloc::vec::spec_from_iter::SpecFromIter&lt;T,I&gt;&gt;::from_iter (1 samples, 2.04%)</title><rect x="59.1837%" y="229" width="2.0408%" height="15" fill="rgb(244,35,45)" fg:x="29" fg:w="1"/><text x="59.4337%" y="239.50">&lt;..</text></g><g><title>__rdl_alloc (1 samples, 2.04%)</title><rect x="61.2245%" y="53" width="2.0408%" height="15" fill="rgb(251,115,12)" fg:x="30" fg:w="1"/><text x="61.4745%" y="63.50">_..</text></g><g><title>std::sys::unix::alloc::&lt;impl core::alloc::global::GlobalAlloc for std::alloc::System&gt;::alloc (1 samples, 2.04%)</title><rect x="61.2245%" y="37" width="2.0408%" height="15" fill="rgb(240,54,50)" fg:x="30" fg:w="1"/><text x="61.4745%" y="47.50">s..</text></g><g><title>alloc::vec::Vec&lt;T,A&gt;::with_capacity_in (2 samples, 4.08%)</title><rect x="61.2245%" y="149" width="4.0816%" height="15" fill="rgb(233,84,52)" fg:x="30" fg:w="2"/><text x="61.4745%" y="159.50">allo..</text></g><g><title>alloc::raw_vec::RawVec&lt;T,A&gt;::with_capacity_in (2 samples, 4.08%)</title><rect x="61.2245%" y="133" width="4.0816%" height="15" fill="rgb(207,117,47)" fg:x="30" fg:w="2"/><text x="61.4745%" y="143.50">allo..</text></g><g><title>alloc::raw_vec::RawVec&lt;T,A&gt;::allocate_in (2 samples, 4.08%)</title><rect x="61.2245%" y="117" width="4.0816%" height="15" fill="rgb(249,43,39)" fg:x="30" fg:w="2"/><text x="61.4745%" y="127.50">allo..</text></g><g><title>&lt;alloc::alloc::Global as core::alloc::Allocator&gt;::allocate (2 samples, 4.08%)</title><rect x="61.2245%" y="101" width="4.0816%" height="15" fill="rgb(209,38,44)" fg:x="30" fg:w="2"/><text x="61.4745%" y="111.50">&lt;all..</text></g><g><title>alloc::alloc::Global::alloc_impl (2 samples, 4.08%)</title><rect x="61.2245%" y="85" width="4.0816%" height="15" fill="rgb(236,212,23)" fg:x="30" fg:w="2"/><text x="61.4745%" y="95.50">allo..</text></g><g><title>alloc::alloc::alloc (2 samples, 4.08%)</title><rect x="61.2245%" y="69" width="4.0816%" height="15" fill="rgb(242,79,21)" fg:x="30" fg:w="2"/><text x="61.4745%" y="79.50">allo..</text></g><g><title>__rust_alloc (1 samples, 2.04%)</title><rect x="63.2653%" y="53" width="2.0408%" height="15" fill="rgb(211,96,35)" fg:x="31" fg:w="1"/><text x="63.5153%" y="63.50">_..</text></g><g><title>&lt;alloc::vec::Vec&lt;T,A&gt; as alloc::vec::spec_extend::SpecExtend&lt;T,I&gt;&gt;::spec_extend (4 samples, 8.16%)</title><rect x="59.1837%" y="357" width="8.1633%" height="15" fill="rgb(253,215,40)" fg:x="29" fg:w="4"/><text x="59.4337%" y="367.50">&lt;alloc::vec..</text></g><g><title>alloc::vec::Vec&lt;T,A&gt;::extend_desugared (4 samples, 8.16%)</title><rect x="59.1837%" y="341" width="8.1633%" height="15" fill="rgb(211,81,21)" fg:x="29" fg:w="4"/><text x="59.4337%" y="351.50">alloc::vec:..</text></g><g><title>&lt;core::iter::adapters::map::Map&lt;I,F&gt; as core::iter::traits::iterator::Iterator&gt;::next (4 samples, 8.16%)</title><rect x="59.1837%" y="325" width="8.1633%" height="15" fill="rgb(208,190,38)" fg:x="29" fg:w="4"/><text x="59.4337%" y="335.50">&lt;core::iter..</text></g><g><title>core::option::Option&lt;T&gt;::map (3 samples, 6.12%)</title><rect x="61.2245%" y="309" width="6.1224%" height="15" fill="rgb(235,213,38)" fg:x="30" fg:w="3"/><text x="61.4745%" y="319.50">core::op..</text></g><g><title>core::ops::function::impls::&lt;impl core::ops::function::FnOnce&lt;A&gt; for &amp;mut F&gt;::call_once (3 samples, 6.12%)</title><rect x="61.2245%" y="293" width="6.1224%" height="15" fill="rgb(237,122,38)" fg:x="30" fg:w="3"/><text x="61.4745%" y="303.50">core::op..</text></g><g><title>core::ops::function::FnMut::call_mut (3 samples, 6.12%)</title><rect x="61.2245%" y="277" width="6.1224%" height="15" fill="rgb(244,218,35)" fg:x="30" fg:w="3"/><text x="61.4745%" y="287.50">core::op..</text></g><g><title>&lt;alloc::string::String as core::convert::From&lt;&amp;str&gt;&gt;::from (3 samples, 6.12%)</title><rect x="61.2245%" y="261" width="6.1224%" height="15" fill="rgb(240,68,47)" fg:x="30" fg:w="3"/><text x="61.4745%" y="271.50">&lt;alloc::..</text></g><g><title>alloc::str::&lt;impl alloc::borrow::ToOwned for str&gt;::to_owned (3 samples, 6.12%)</title><rect x="61.2245%" y="245" width="6.1224%" height="15" fill="rgb(210,16,53)" fg:x="30" fg:w="3"/><text x="61.4745%" y="255.50">alloc::s..</text></g><g><title>alloc::slice::&lt;impl alloc::borrow::ToOwned for [T]&gt;::to_owned (3 samples, 6.12%)</title><rect x="61.2245%" y="229" width="6.1224%" height="15" fill="rgb(235,124,12)" fg:x="30" fg:w="3"/><text x="61.4745%" y="239.50">alloc::s..</text></g><g><title>alloc::slice::&lt;impl [T]&gt;::to_vec (3 samples, 6.12%)</title><rect x="61.2245%" y="213" width="6.1224%" height="15" fill="rgb(224,169,11)" fg:x="30" fg:w="3"/><text x="61.4745%" y="223.50">alloc::s..</text></g><g><title>alloc::slice::&lt;impl [T]&gt;::to_vec_in (3 samples, 6.12%)</title><rect x="61.2245%" y="197" width="6.1224%" height="15" fill="rgb(250,166,2)" fg:x="30" fg:w="3"/><text x="61.4745%" y="207.50">alloc::s..</text></g><g><title>alloc::slice::hack::to_vec (3 samples, 6.12%)</title><rect x="61.2245%" y="181" width="6.1224%" height="15" fill="rgb(242,216,29)" fg:x="30" fg:w="3"/><text x="61.4745%" y="191.50">alloc::s..</text></g><g><title>&lt;T as alloc::slice::hack::ConvertVec&gt;::to_vec (3 samples, 6.12%)</title><rect x="61.2245%" y="165" width="6.1224%" height="15" fill="rgb(230,116,27)" fg:x="30" fg:w="3"/><text x="61.4745%" y="175.50">&lt;T as al..</text></g><g><title>core::ptr::const_ptr::&lt;impl *const T&gt;::copy_to_nonoverlapping (1 samples, 2.04%)</title><rect x="65.3061%" y="149" width="2.0408%" height="15" fill="rgb(228,99,48)" fg:x="32" fg:w="1"/><text x="65.5561%" y="159.50">c..</text></g><g><title>core::intrinsics::copy_nonoverlapping (1 samples, 2.04%)</title><rect x="65.3061%" y="133" width="2.0408%" height="15" fill="rgb(253,11,6)" fg:x="32" fg:w="1"/><text x="65.5561%" y="143.50">c..</text></g><g><title>__memmove_avx_unaligned (1 samples, 2.04%)</title><rect x="65.3061%" y="117" width="2.0408%" height="15" fill="rgb(247,143,39)" fg:x="32" fg:w="1"/><text x="65.5561%" y="127.50">_..</text></g><g><title>core::iter::traits::iterator::Iterator::collect (6 samples, 12.24%)</title><rect x="57.1429%" y="421" width="12.2449%" height="15" fill="rgb(236,97,10)" fg:x="28" fg:w="6"/><text x="57.3929%" y="431.50">core::iter::traits..</text></g><g><title>&lt;alloc::vec::Vec&lt;T&gt; as core::iter::traits::collect::FromIterator&lt;T&gt;&gt;::from_iter (6 samples, 12.24%)</title><rect x="57.1429%" y="405" width="12.2449%" height="15" fill="rgb(233,208,19)" fg:x="28" fg:w="6"/><text x="57.3929%" y="415.50">&lt;alloc::vec::Vec&lt;T..</text></g><g><title>&lt;alloc::vec::Vec&lt;T&gt; as alloc::vec::spec_from_iter::SpecFromIter&lt;T,I&gt;&gt;::from_iter (6 samples, 12.24%)</title><rect x="57.1429%" y="389" width="12.2449%" height="15" fill="rgb(216,164,2)" fg:x="28" fg:w="6"/><text x="57.3929%" y="399.50">&lt;alloc::vec::Vec&lt;T..</text></g><g><title>&lt;alloc::vec::Vec&lt;T&gt; as alloc::vec::spec_from_iter_nested::SpecFromIterNested&lt;T,I&gt;&gt;::from_iter (5 samples, 10.20%)</title><rect x="59.1837%" y="373" width="10.2041%" height="15" fill="rgb(220,129,5)" fg:x="29" fg:w="5"/><text x="59.4337%" y="383.50">&lt;alloc::vec::Ve..</text></g><g><title>alloc::vec::Vec&lt;T&gt;::with_capacity (1 samples, 2.04%)</title><rect x="67.3469%" y="357" width="2.0408%" height="15" fill="rgb(242,17,10)" fg:x="33" fg:w="1"/><text x="67.5969%" y="367.50">a..</text></g><g><title>alloc::vec::Vec&lt;T,A&gt;::with_capacity_in (1 samples, 2.04%)</title><rect x="67.3469%" y="341" width="2.0408%" height="15" fill="rgb(242,107,0)" fg:x="33" fg:w="1"/><text x="67.5969%" y="351.50">a..</text></g><g><title>alloc::raw_vec::RawVec&lt;T,A&gt;::with_capacity_in (1 samples, 2.04%)</title><rect x="67.3469%" y="325" width="2.0408%" height="15" fill="rgb(251,28,31)" fg:x="33" fg:w="1"/><text x="67.5969%" y="335.50">a..</text></g><g><title>alloc::raw_vec::RawVec&lt;T,A&gt;::allocate_in (1 samples, 2.04%)</title><rect x="67.3469%" y="309" width="2.0408%" height="15" fill="rgb(233,223,10)" fg:x="33" fg:w="1"/><text x="67.5969%" y="319.50">a..</text></g><g><title>&lt;alloc::alloc::Global as core::alloc::Allocator&gt;::allocate (1 samples, 2.04%)</title><rect x="67.3469%" y="293" width="2.0408%" height="15" fill="rgb(215,21,27)" fg:x="33" fg:w="1"/><text x="67.5969%" y="303.50">&lt;..</text></g><g><title>alloc::alloc::Global::alloc_impl (1 samples, 2.04%)</title><rect x="67.3469%" y="277" width="2.0408%" height="15" fill="rgb(232,23,21)" fg:x="33" fg:w="1"/><text x="67.5969%" y="287.50">a..</text></g><g><title>alloc::alloc::alloc (1 samples, 2.04%)</title><rect x="67.3469%" y="261" width="2.0408%" height="15" fill="rgb(244,5,23)" fg:x="33" fg:w="1"/><text x="67.5969%" y="271.50">a..</text></g><g><title>__GI___libc_malloc (1 samples, 2.04%)</title><rect x="67.3469%" y="245" width="2.0408%" height="15" fill="rgb(226,81,46)" fg:x="33" fg:w="1"/><text x="67.5969%" y="255.50">_..</text></g><g><title>alloc::string::String::new (1 samples, 2.04%)</title><rect x="69.3878%" y="405" width="2.0408%" height="15" fill="rgb(247,70,30)" fg:x="34" fg:w="1"/><text x="69.6378%" y="415.50">a..</text></g><g><title>__free (1 samples, 2.04%)</title><rect x="71.4286%" y="309" width="2.0408%" height="15" fill="rgb(212,68,19)" fg:x="35" fg:w="1"/><text x="71.6786%" y="319.50">_..</text></g><g><title>_int_free (1 samples, 2.04%)</title><rect x="71.4286%" y="293" width="2.0408%" height="15" fill="rgb(240,187,13)" fg:x="35" fg:w="1"/><text x="71.6786%" y="303.50">_..</text></g><g><title>core::ptr::drop_in_place&lt;alloc::string::String&gt; (2 samples, 4.08%)</title><rect x="71.4286%" y="405" width="4.0816%" height="15" fill="rgb(223,113,26)" fg:x="35" fg:w="2"/><text x="71.6786%" y="415.50">core..</text></g><g><title>core::ptr::drop_in_place&lt;alloc::vec::Vec&lt;u8&gt;&gt; (2 samples, 4.08%)</title><rect x="71.4286%" y="389" width="4.0816%" height="15" fill="rgb(206,192,2)" fg:x="35" fg:w="2"/><text x="71.6786%" y="399.50">core..</text></g><g><title>core::ptr::drop_in_place&lt;alloc::raw_vec::RawVec&lt;u8&gt;&gt; (2 samples, 4.08%)</title><rect x="71.4286%" y="373" width="4.0816%" height="15" fill="rgb(241,108,4)" fg:x="35" fg:w="2"/><text x="71.6786%" y="383.50">core..</text></g><g><title>&lt;alloc::raw_vec::RawVec&lt;T,A&gt; as core::ops::drop::Drop&gt;::drop (2 samples, 4.08%)</title><rect x="71.4286%" y="357" width="4.0816%" height="15" fill="rgb(247,173,49)" fg:x="35" fg:w="2"/><text x="71.6786%" y="367.50">&lt;all..</text></g><g><title>&lt;alloc::alloc::Global as core::alloc::Allocator&gt;::deallocate (2 samples, 4.08%)</title><rect x="71.4286%" y="341" width="4.0816%" height="15" fill="rgb(224,114,35)" fg:x="35" fg:w="2"/><text x="71.6786%" y="351.50">&lt;all..</text></g><g><title>alloc::alloc::dealloc (2 samples, 4.08%)</title><rect x="71.4286%" y="325" width="4.0816%" height="15" fill="rgb(245,159,27)" fg:x="35" fg:w="2"/><text x="71.6786%" y="335.50">allo..</text></g><g><title>__rust_dealloc (1 samples, 2.04%)</title><rect x="73.4694%" y="309" width="2.0408%" height="15" fill="rgb(245,172,44)" fg:x="36" fg:w="1"/><text x="73.7194%" y="319.50">_..</text></g><g><title>alloc::vec::Vec&lt;T,A&gt;::reserve (1 samples, 2.04%)</title><rect x="79.5918%" y="261" width="2.0408%" height="15" fill="rgb(236,23,11)" fg:x="39" fg:w="1"/><text x="79.8418%" y="271.50">a..</text></g><g><title>alloc::raw_vec::RawVec&lt;T,A&gt;::reserve (1 samples, 2.04%)</title><rect x="79.5918%" y="245" width="2.0408%" height="15" fill="rgb(205,117,38)" fg:x="39" fg:w="1"/><text x="79.8418%" y="255.50">a..</text></g><g><title>alloc::raw_vec::RawVec&lt;T,A&gt;::reserve::do_reserve_and_handle (1 samples, 2.04%)</title><rect x="79.5918%" y="229" width="2.0408%" height="15" fill="rgb(237,72,25)" fg:x="39" fg:w="1"/><text x="79.8418%" y="239.50">a..</text></g><g><title>alloc::raw_vec::RawVec&lt;T,A&gt;::grow_amortized (1 samples, 2.04%)</title><rect x="79.5918%" y="213" width="2.0408%" height="15" fill="rgb(244,70,9)" fg:x="39" fg:w="1"/><text x="79.8418%" y="223.50">a..</text></g><g><title>core::cmp::max (1 samples, 2.04%)</title><rect x="79.5918%" y="197" width="2.0408%" height="15" fill="rgb(217,125,39)" fg:x="39" fg:w="1"/><text x="79.8418%" y="207.50">c..</text></g><g><title>core::cmp::Ord::max (1 samples, 2.04%)</title><rect x="79.5918%" y="181" width="2.0408%" height="15" fill="rgb(235,36,10)" fg:x="39" fg:w="1"/><text x="79.8418%" y="191.50">c..</text></g><g><title>alloc::raw_vec::RawVec&lt;T,A&gt;::reserve::do_reserve_and_handle (1 samples, 2.04%)</title><rect x="79.5918%" y="165" width="2.0408%" height="15" fill="rgb(251,123,47)" fg:x="39" fg:w="1"/><text x="79.8418%" y="175.50">a..</text></g><g><title>__memcpy_avx_unaligned_erms (1 samples, 2.04%)</title><rect x="81.6327%" y="245" width="2.0408%" height="15" fill="rgb(221,13,13)" fg:x="40" fg:w="1"/><text x="81.8827%" y="255.50">_..</text></g><g><title>alloc::vec::Vec&lt;T,A&gt;::extend_from_slice (3 samples, 6.12%)</title><rect x="79.5918%" y="309" width="6.1224%" height="15" fill="rgb(238,131,9)" fg:x="39" fg:w="3"/><text x="79.8418%" y="319.50">alloc::v..</text></g><g><title>&lt;alloc::vec::Vec&lt;T,A&gt; as alloc::vec::spec_extend::SpecExtend&lt;&amp;T,core::slice::iter::Iter&lt;T&gt;&gt;&gt;::spec_extend (3 samples, 6.12%)</title><rect x="79.5918%" y="293" width="6.1224%" height="15" fill="rgb(211,50,8)" fg:x="39" fg:w="3"/><text x="79.8418%" y="303.50">&lt;alloc::..</text></g><g><title>alloc::vec::Vec&lt;T,A&gt;::append_elements (3 samples, 6.12%)</title><rect x="79.5918%" y="277" width="6.1224%" height="15" fill="rgb(245,182,24)" fg:x="39" fg:w="3"/><text x="79.8418%" y="287.50">alloc::v..</text></g><g><title>core::intrinsics::copy_nonoverlapping (2 samples, 4.08%)</title><rect x="81.6327%" y="261" width="4.0816%" height="15" fill="rgb(242,14,37)" fg:x="40" fg:w="2"/><text x="81.8827%" y="271.50">core..</text></g><g><title>__memmove_avx_unaligned (1 samples, 2.04%)</title><rect x="83.6735%" y="245" width="2.0408%" height="15" fill="rgb(246,228,12)" fg:x="41" fg:w="1"/><text x="83.9235%" y="255.50">_..</text></g><g><title>std::panic::catch_unwind (34 samples, 69.39%)</title><rect x="18.3673%" y="565" width="69.3878%" height="15" fill="rgb(213,55,15)" fg:x="9" fg:w="34"/><text x="18.6173%" y="575.50">std::panic::catch_unwind</text></g><g><title>std::panicking::try (34 samples, 69.39%)</title><rect x="18.3673%" y="549" width="69.3878%" height="15" fill="rgb(209,9,3)" fg:x="9" fg:w="34"/><text x="18.6173%" y="559.50">std::panicking::try</text></g><g><title>std::panicking::try::do_call (34 samples, 69.39%)</title><rect x="18.3673%" y="533" width="69.3878%" height="15" fill="rgb(230,59,30)" fg:x="9" fg:w="34"/><text x="18.6173%" y="543.50">std::panicking::try::do_call</text></g><g><title>core::ops::function::impls::&lt;impl core::ops::function::FnOnce&lt;A&gt; for &amp;F&gt;::call_once (34 samples, 69.39%)</title><rect x="18.3673%" y="517" width="69.3878%" height="15" fill="rgb(209,121,21)" fg:x="9" fg:w="34"/><text x="18.6173%" y="527.50">core::ops::function::impls::&lt;impl core::ops::function::FnOnce&lt;A&gt; for &amp;F&gt;::call_once</text></g><g><title>std::rt::lang_start::{{closure}} (34 samples, 69.39%)</title><rect x="18.3673%" y="501" width="69.3878%" height="15" fill="rgb(220,109,13)" fg:x="9" fg:w="34"/><text x="18.6173%" y="511.50">std::rt::lang_start::{{closure}}</text></g><g><title>std::sys_common::backtrace::__rust_begin_short_backtrace (34 samples, 69.39%)</title><rect x="18.3673%" y="485" width="69.3878%" height="15" fill="rgb(232,18,1)" fg:x="9" fg:w="34"/><text x="18.6173%" y="495.50">std::sys_common::backtrace::__rust_begin_short_backtrace</text></g><g><title>core::ops::function::FnOnce::call_once (34 samples, 69.39%)</title><rect x="18.3673%" y="469" width="69.3878%" height="15" fill="rgb(215,41,42)" fg:x="9" fg:w="34"/><text x="18.6173%" y="479.50">core::ops::function::FnOnce::call_once</text></g><g><title>task889::main (34 samples, 69.39%)</title><rect x="18.3673%" y="453" width="69.3878%" height="15" fill="rgb(224,123,36)" fg:x="9" fg:w="34"/><text x="18.6173%" y="463.50">task889::main</text></g><g><title>task889::read_words (15 samples, 30.61%)</title><rect x="57.1429%" y="437" width="30.6122%" height="15" fill="rgb(240,125,3)" fg:x="28" fg:w="15"/><text x="57.3929%" y="447.50">task889::read_words</text></g><g><title>task889::read_line (9 samples, 18.37%)</title><rect x="69.3878%" y="421" width="18.3673%" height="15" fill="rgb(205,98,50)" fg:x="34" fg:w="9"/><text x="69.6378%" y="431.50">task889::read_line</text></g><g><title>std::io::stdio::Stdin::read_line (6 samples, 12.24%)</title><rect x="75.5102%" y="405" width="12.2449%" height="15" fill="rgb(205,185,37)" fg:x="37" fg:w="6"/><text x="75.7602%" y="415.50">std::io::stdio::St..</text></g><g><title>&lt;std::io::stdio::StdinLock as std::io::BufRead&gt;::read_line (5 samples, 10.20%)</title><rect x="77.5510%" y="389" width="10.2041%" height="15" fill="rgb(238,207,15)" fg:x="38" fg:w="5"/><text x="77.8010%" y="399.50">&lt;std::io::stdio..</text></g><g><title>std::io::BufRead::read_line (5 samples, 10.20%)</title><rect x="77.5510%" y="373" width="10.2041%" height="15" fill="rgb(213,199,42)" fg:x="38" fg:w="5"/><text x="77.8010%" y="383.50">std::io::BufRea..</text></g><g><title>std::io::append_to_string (5 samples, 10.20%)</title><rect x="77.5510%" y="357" width="10.2041%" height="15" fill="rgb(235,201,11)" fg:x="38" fg:w="5"/><text x="77.8010%" y="367.50">std::io::append..</text></g><g><title>std::io::BufRead::read_line::{{closure}} (5 samples, 10.20%)</title><rect x="77.5510%" y="341" width="10.2041%" height="15" fill="rgb(207,46,11)" fg:x="38" fg:w="5"/><text x="77.8010%" y="351.50">std::io::BufRea..</text></g><g><title>std::io::read_until (5 samples, 10.20%)</title><rect x="77.5510%" y="325" width="10.2041%" height="15" fill="rgb(241,35,35)" fg:x="38" fg:w="5"/><text x="77.8010%" y="335.50">std::io::read_u..</text></g><g><title>std::sys_common::memchr::memchr (1 samples, 2.04%)</title><rect x="85.7143%" y="309" width="2.0408%" height="15" fill="rgb(243,32,47)" fg:x="42" fg:w="1"/><text x="85.9643%" y="319.50">s..</text></g><g><title>std::sys::unix::memchr::memchr (1 samples, 2.04%)</title><rect x="85.7143%" y="293" width="2.0408%" height="15" fill="rgb(247,202,23)" fg:x="42" fg:w="1"/><text x="85.9643%" y="303.50">s..</text></g><g><title>__memchr_avx2 (1 samples, 2.04%)</title><rect x="85.7143%" y="277" width="2.0408%" height="15" fill="rgb(219,102,11)" fg:x="42" fg:w="1"/><text x="85.9643%" y="287.50">_..</text></g><g><title>__libc_start_main_alias_2 (35 samples, 71.43%)</title><rect x="18.3673%" y="693" width="71.4286%" height="15" fill="rgb(243,110,44)" fg:x="9" fg:w="35"/><text x="18.6173%" y="703.50">__libc_start_main_alias_2</text></g><g><title>__libc_start_call_main (35 samples, 71.43%)</title><rect x="18.3673%" y="677" width="71.4286%" height="15" fill="rgb(222,74,54)" fg:x="9" fg:w="35"/><text x="18.6173%" y="687.50">__libc_start_call_main</text></g><g><title>main (35 samples, 71.43%)</title><rect x="18.3673%" y="661" width="71.4286%" height="15" fill="rgb(216,99,12)" fg:x="9" fg:w="35"/><text x="18.6173%" y="671.50">main</text></g><g><title>std::rt::lang_start_internal (35 samples, 71.43%)</title><rect x="18.3673%" y="645" width="71.4286%" height="15" fill="rgb(226,22,26)" fg:x="9" fg:w="35"/><text x="18.6173%" y="655.50">std::rt::lang_start_internal</text></g><g><title>std::panic::catch_unwind (35 samples, 71.43%)</title><rect x="18.3673%" y="629" width="71.4286%" height="15" fill="rgb(217,163,10)" fg:x="9" fg:w="35"/><text x="18.6173%" y="639.50">std::panic::catch_unwind</text></g><g><title>std::panicking::try (35 samples, 71.43%)</title><rect x="18.3673%" y="613" width="71.4286%" height="15" fill="rgb(213,25,53)" fg:x="9" fg:w="35"/><text x="18.6173%" y="623.50">std::panicking::try</text></g><g><title>std::panicking::try::do_call (35 samples, 71.43%)</title><rect x="18.3673%" y="597" width="71.4286%" height="15" fill="rgb(252,105,26)" fg:x="9" fg:w="35"/><text x="18.6173%" y="607.50">std::panicking::try::do_call</text></g><g><title>std::rt::lang_start_internal::{{closure}} (35 samples, 71.43%)</title><rect x="18.3673%" y="581" width="71.4286%" height="15" fill="rgb(220,39,43)" fg:x="9" fg:w="35"/><text x="18.6173%" y="591.50">std::rt::lang_start_internal::{{closure}}</text></g><g><title>std::rt::init (1 samples, 2.04%)</title><rect x="87.7551%" y="565" width="2.0408%" height="15" fill="rgb(229,68,48)" fg:x="43" fg:w="1"/><text x="88.0051%" y="575.50">s..</text></g><g><title>std::sys::unix::thread::guard::init (1 samples, 2.04%)</title><rect x="87.7551%" y="549" width="2.0408%" height="15" fill="rgb(252,8,32)" fg:x="43" fg:w="1"/><text x="88.0051%" y="559.50">s..</text></g><g><title>std::sys::unix::thread::guard::get_stack_start_aligned (1 samples, 2.04%)</title><rect x="87.7551%" y="533" width="2.0408%" height="15" fill="rgb(223,20,43)" fg:x="43" fg:w="1"/><text x="88.0051%" y="543.50">s..</text></g><g><title>std::sys::unix::thread::guard::get_stack_start (1 samples, 2.04%)</title><rect x="87.7551%" y="517" width="2.0408%" height="15" fill="rgb(229,81,49)" fg:x="43" fg:w="1"/><text x="88.0051%" y="527.50">s..</text></g><g><title>__pthread_getattr_np (1 samples, 2.04%)</title><rect x="87.7551%" y="501" width="2.0408%" height="15" fill="rgb(236,28,36)" fg:x="43" fg:w="1"/><text x="88.0051%" y="511.50">_..</text></g><g><title>_IO_fopen64 (1 samples, 2.04%)</title><rect x="87.7551%" y="485" width="2.0408%" height="15" fill="rgb(249,185,26)" fg:x="43" fg:w="1"/><text x="88.0051%" y="495.50">_..</text></g><g><title>asm_exc_page_fault (1 samples, 2.04%)</title><rect x="87.7551%" y="469" width="2.0408%" height="15" fill="rgb(249,174,33)" fg:x="43" fg:w="1"/><text x="88.0051%" y="479.50">a..</text></g><g><title>exc_page_fault (1 samples, 2.04%)</title><rect x="87.7551%" y="453" width="2.0408%" height="15" fill="rgb(233,201,37)" fg:x="43" fg:w="1"/><text x="88.0051%" y="463.50">e..</text></g><g><title>do_user_addr_fault (1 samples, 2.04%)</title><rect x="87.7551%" y="437" width="2.0408%" height="15" fill="rgb(221,78,26)" fg:x="43" fg:w="1"/><text x="88.0051%" y="447.50">d..</text></g><g><title>handle_mm_fault (1 samples, 2.04%)</title><rect x="87.7551%" y="421" width="2.0408%" height="15" fill="rgb(250,127,30)" fg:x="43" fg:w="1"/><text x="88.0051%" y="431.50">h..</text></g><g><title>__handle_mm_fault (1 samples, 2.04%)</title><rect x="87.7551%" y="405" width="2.0408%" height="15" fill="rgb(230,49,44)" fg:x="43" fg:w="1"/><text x="88.0051%" y="415.50">_..</text></g><g><title>filemap_map_pages (1 samples, 2.04%)</title><rect x="87.7551%" y="389" width="2.0408%" height="15" fill="rgb(229,67,23)" fg:x="43" fg:w="1"/><text x="88.0051%" y="399.50">f..</text></g><g><title>next_uptodate_page (1 samples, 2.04%)</title><rect x="87.7551%" y="373" width="2.0408%" height="15" fill="rgb(249,83,47)" fg:x="43" fg:w="1"/><text x="88.0051%" y="383.50">n..</text></g><g><title>_dl_map_object_deps (1 samples, 2.04%)</title><rect x="89.7959%" y="645" width="2.0408%" height="15" fill="rgb(215,43,3)" fg:x="44" fg:w="1"/><text x="90.0459%" y="655.50">_..</text></g><g><title>_dl_catch_exception (1 samples, 2.04%)</title><rect x="89.7959%" y="629" width="2.0408%" height="15" fill="rgb(238,154,13)" fg:x="44" fg:w="1"/><text x="90.0459%" y="639.50">_..</text></g><g><title>openaux (1 samples, 2.04%)</title><rect x="89.7959%" y="613" width="2.0408%" height="15" fill="rgb(219,56,2)" fg:x="44" fg:w="1"/><text x="90.0459%" y="623.50">o..</text></g><g><title>_dl_map_object (1 samples, 2.04%)</title><rect x="89.7959%" y="597" width="2.0408%" height="15" fill="rgb(233,0,4)" fg:x="44" fg:w="1"/><text x="90.0459%" y="607.50">_..</text></g><g><title>_dl_map_object_from_fd (1 samples, 2.04%)</title><rect x="89.7959%" y="581" width="2.0408%" height="15" fill="rgb(235,30,7)" fg:x="44" fg:w="1"/><text x="90.0459%" y="591.50">_..</text></g><g><title>__mmap (1 samples, 2.04%)</title><rect x="89.7959%" y="565" width="2.0408%" height="15" fill="rgb(250,79,13)" fg:x="44" fg:w="1"/><text x="90.0459%" y="575.50">_..</text></g><g><title>entry_SYSCALL_64_after_hwframe (1 samples, 2.04%)</title><rect x="89.7959%" y="549" width="2.0408%" height="15" fill="rgb(211,146,34)" fg:x="44" fg:w="1"/><text x="90.0459%" y="559.50">e..</text></g><g><title>do_syscall_64 (1 samples, 2.04%)</title><rect x="89.7959%" y="533" width="2.0408%" height="15" fill="rgb(228,22,38)" fg:x="44" fg:w="1"/><text x="90.0459%" y="543.50">d..</text></g><g><title>ksys_mmap_pgoff (1 samples, 2.04%)</title><rect x="89.7959%" y="517" width="2.0408%" height="15" fill="rgb(235,168,5)" fg:x="44" fg:w="1"/><text x="90.0459%" y="527.50">k..</text></g><g><title>vm_mmap_pgoff (1 samples, 2.04%)</title><rect x="89.7959%" y="501" width="2.0408%" height="15" fill="rgb(221,155,16)" fg:x="44" fg:w="1"/><text x="90.0459%" y="511.50">v..</text></g><g><title>do_mmap (1 samples, 2.04%)</title><rect x="89.7959%" y="485" width="2.0408%" height="15" fill="rgb(215,215,53)" fg:x="44" fg:w="1"/><text x="90.0459%" y="495.50">d..</text></g><g><title>mmap_region (1 samples, 2.04%)</title><rect x="89.7959%" y="469" width="2.0408%" height="15" fill="rgb(223,4,10)" fg:x="44" fg:w="1"/><text x="90.0459%" y="479.50">m..</text></g><g><title>vma_link (1 samples, 2.04%)</title><rect x="89.7959%" y="453" width="2.0408%" height="15" fill="rgb(234,103,6)" fg:x="44" fg:w="1"/><text x="90.0459%" y="463.50">v..</text></g><g><title>vma_interval_tree_insert (1 samples, 2.04%)</title><rect x="89.7959%" y="437" width="2.0408%" height="15" fill="rgb(227,97,0)" fg:x="44" fg:w="1"/><text x="90.0459%" y="447.50">v..</text></g><g><title>_dl_start (2 samples, 4.08%)</title><rect x="89.7959%" y="693" width="4.0816%" height="15" fill="rgb(234,150,53)" fg:x="44" fg:w="2"/><text x="90.0459%" y="703.50">_dl_..</text></g><g><title>_dl_sysdep_start (2 samples, 4.08%)</title><rect x="89.7959%" y="677" width="4.0816%" height="15" fill="rgb(228,201,54)" fg:x="44" fg:w="2"/><text x="90.0459%" y="687.50">_dl_..</text></g><g><title>dl_main (2 samples, 4.08%)</title><rect x="89.7959%" y="661" width="4.0816%" height="15" fill="rgb(222,22,37)" fg:x="44" fg:w="2"/><text x="90.0459%" y="671.50">dl_m..</text></g><g><title>_dl_relocate_object (1 samples, 2.04%)</title><rect x="91.8367%" y="645" width="2.0408%" height="15" fill="rgb(237,53,32)" fg:x="45" fg:w="1"/><text x="92.0867%" y="655.50">_..</text></g><g><title>_start (38 samples, 77.55%)</title><rect x="18.3673%" y="709" width="77.5510%" height="15" fill="rgb(233,25,53)" fg:x="9" fg:w="38"/><text x="18.6173%" y="719.50">_start</text></g><g><title>entry_SYSCALL_64_after_hwframe (1 samples, 2.04%)</title><rect x="93.8776%" y="693" width="2.0408%" height="15" fill="rgb(210,40,34)" fg:x="46" fg:w="1"/><text x="94.1276%" y="703.50">e..</text></g><g><title>do_syscall_64 (1 samples, 2.04%)</title><rect x="93.8776%" y="677" width="2.0408%" height="15" fill="rgb(241,220,44)" fg:x="46" fg:w="1"/><text x="94.1276%" y="687.50">d..</text></g><g><title>syscall_exit_to_user_mode (1 samples, 2.04%)</title><rect x="93.8776%" y="661" width="2.0408%" height="15" fill="rgb(235,28,35)" fg:x="46" fg:w="1"/><text x="94.1276%" y="671.50">s..</text></g><g><title>exit_to_user_mode_prepare (1 samples, 2.04%)</title><rect x="93.8776%" y="645" width="2.0408%" height="15" fill="rgb(210,56,17)" fg:x="46" fg:w="1"/><text x="94.1276%" y="655.50">e..</text></g><g><title>task_work_run (1 samples, 2.04%)</title><rect x="93.8776%" y="629" width="2.0408%" height="15" fill="rgb(224,130,29)" fg:x="46" fg:w="1"/><text x="94.1276%" y="639.50">t..</text></g><g><title>__fput (1 samples, 2.04%)</title><rect x="93.8776%" y="613" width="2.0408%" height="15" fill="rgb(235,212,8)" fg:x="46" fg:w="1"/><text x="94.1276%" y="623.50">_..</text></g><g><title>__dentry_kill (1 samples, 2.04%)</title><rect x="93.8776%" y="597" width="2.0408%" height="15" fill="rgb(223,33,50)" fg:x="46" fg:w="1"/><text x="94.1276%" y="607.50">_..</text></g><g><title>evict (1 samples, 2.04%)</title><rect x="93.8776%" y="581" width="2.0408%" height="15" fill="rgb(219,149,13)" fg:x="46" fg:w="1"/><text x="94.1276%" y="591.50">e..</text></g><g><title>inode_wait_for_writeback (1 samples, 2.04%)</title><rect x="93.8776%" y="565" width="2.0408%" height="15" fill="rgb(250,156,29)" fg:x="46" fg:w="1"/><text x="94.1276%" y="575.50">i..</text></g><g><title>entry_SYSCALL_64_after_hwframe (1 samples, 2.04%)</title><rect x="95.9184%" y="709" width="2.0408%" height="15" fill="rgb(216,193,19)" fg:x="47" fg:w="1"/><text x="96.1684%" y="719.50">e..</text></g><g><title>do_syscall_64 (1 samples, 2.04%)</title><rect x="95.9184%" y="693" width="2.0408%" height="15" fill="rgb(216,135,14)" fg:x="47" fg:w="1"/><text x="96.1684%" y="703.50">d..</text></g><g><title>__x64_sys_execve (1 samples, 2.04%)</title><rect x="95.9184%" y="677" width="2.0408%" height="15" fill="rgb(241,47,5)" fg:x="47" fg:w="1"/><text x="96.1684%" y="687.50">_..</text></g><g><title>do_execveat_common.isra.0 (1 samples, 2.04%)</title><rect x="95.9184%" y="661" width="2.0408%" height="15" fill="rgb(233,42,35)" fg:x="47" fg:w="1"/><text x="96.1684%" y="671.50">d..</text></g><g><title>bprm_execve (1 samples, 2.04%)</title><rect x="95.9184%" y="645" width="2.0408%" height="15" fill="rgb(231,13,6)" fg:x="47" fg:w="1"/><text x="96.1684%" y="655.50">b..</text></g><g><title>load_elf_binary (1 samples, 2.04%)</title><rect x="95.9184%" y="629" width="2.0408%" height="15" fill="rgb(207,181,40)" fg:x="47" fg:w="1"/><text x="96.1684%" y="639.50">l..</text></g><g><title>setup_arg_pages (1 samples, 2.04%)</title><rect x="95.9184%" y="613" width="2.0408%" height="15" fill="rgb(254,173,49)" fg:x="47" fg:w="1"/><text x="96.1684%" y="623.50">s..</text></g><g><title>shift_arg_pages (1 samples, 2.04%)</title><rect x="95.9184%" y="597" width="2.0408%" height="15" fill="rgb(221,1,38)" fg:x="47" fg:w="1"/><text x="96.1684%" y="607.50">s..</text></g><g><title>move_page_tables (1 samples, 2.04%)</title><rect x="95.9184%" y="581" width="2.0408%" height="15" fill="rgb(206,124,46)" fg:x="47" fg:w="1"/><text x="96.1684%" y="591.50">m..</text></g><g><title>all (49 samples, 100%)</title><rect x="0.0000%" y="741" width="100.0000%" height="15" fill="rgb(249,21,11)" fg:x="0" fg:w="49"/><text x="0.2500%" y="751.50"></text></g><g><title>task889 (40 samples, 81.63%)</title><rect x="18.3673%" y="725" width="81.6327%" height="15" fill="rgb(222,201,40)" fg:x="9" fg:w="40"/><text x="18.6173%" y="735.50">task889</text></g><g><title>entry_SYSCALL_64_safe_stack (1 samples, 2.04%)</title><rect x="97.9592%" y="709" width="2.0408%" height="15" fill="rgb(235,61,29)" fg:x="48" fg:w="1"/><text x="98.2092%" y="719.50">e..</text></g></svg></svg>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment