491 lines
31 KiB
XML
491 lines
31 KiB
XML
<?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="374" onload="init(evt)" viewBox="0 0 1200 374" 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:monospace; font-size:12px }
|
|
#title { text-anchor:middle; font-size:17px; }
|
|
#matched { text-anchor:end; }
|
|
#search { text-anchor:end; 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, known_font_width;
|
|
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");
|
|
known_font_width = get_monospace_width(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.
|
|
update_text_for_elements(frames.children);
|
|
|
|
// Keep search elements at a fixed distance from right edge.
|
|
var svgWidth = svg.width.baseVal.value;
|
|
searchbtn.attributes.x.value = svgWidth - xpad;
|
|
matchedtxt.attributes.x.value = svgWidth - xpad;
|
|
};
|
|
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 get_monospace_width(frames) {
|
|
// Given the id="frames" element, return the width of text characters if
|
|
// this is a monospace font, otherwise return 0.
|
|
text = find_child(frames.children[0], "text");
|
|
originalContent = text.textContent;
|
|
text.textContent = "!";
|
|
bangWidth = text.getComputedTextLength();
|
|
text.textContent = "W";
|
|
wWidth = text.getComputedTextLength();
|
|
text.textContent = originalContent;
|
|
if (bangWidth === wWidth) {
|
|
return bangWidth;
|
|
} else {
|
|
return 0;
|
|
}
|
|
}
|
|
function update_text_for_elements(elements) {
|
|
// In order to render quickly in the browser, you want to do one pass of
|
|
// reading attributes, and one pass of mutating attributes. See
|
|
// https://web.dev/avoid-large-complex-layouts-and-layout-thrashing/ for details.
|
|
|
|
// Fall back to inefficient calculation, if we're variable-width font.
|
|
// TODO This should be optimized somehow too.
|
|
if (known_font_width === 0) {
|
|
for (var i = 0; i < elements.length; i++) {
|
|
update_text(elements[i]);
|
|
}
|
|
return;
|
|
}
|
|
|
|
var textElemNewAttributes = [];
|
|
for (var i = 0; i < elements.length; i++) {
|
|
var e = elements[i];
|
|
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(/\([^(]*\)$/,"");
|
|
var newX = format_percent((parseFloat(r.attributes.x.value) + (100 * 3 / frames.attributes.width.value)));
|
|
|
|
// Smaller than this size won't fit anything
|
|
if (w < 2 * known_font_width) {
|
|
textElemNewAttributes.push([newX, ""]);
|
|
continue;
|
|
}
|
|
|
|
// Fit in full text width
|
|
if (txt.length * known_font_width < w) {
|
|
textElemNewAttributes.push([newX, txt]);
|
|
continue;
|
|
}
|
|
|
|
var substringLength = Math.floor(w / known_font_width) - 2;
|
|
if (truncate_text_right) {
|
|
// Truncate the right side of the text.
|
|
textElemNewAttributes.push([newX, txt.substring(0, substringLength) + ".."]);
|
|
continue;
|
|
} else {
|
|
// Truncate the left side of the text.
|
|
textElemNewAttributes.push([newX, ".." + txt.substring(txt.length - substringLength, txt.length)]);
|
|
continue;
|
|
}
|
|
}
|
|
|
|
console.assert(textElemNewAttributes.length === elements.length, "Resize failed, please file a bug at https://github.com/jonhoo/inferno/");
|
|
|
|
// Now that we know new textContent, set it all in one go so we don't refresh a bazillion times.
|
|
for (var i = 0; i < elements.length; i++) {
|
|
var e = elements[i];
|
|
var values = textElemNewAttributes[i];
|
|
var t = find_child(e, "text");
|
|
t.attributes.x.value = values[0];
|
|
t.textContent = values[1];
|
|
}
|
|
}
|
|
|
|
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 (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;
|
|
var to_update_text = [];
|
|
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);
|
|
to_update_text.push(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);
|
|
to_update_text.push(e);
|
|
}
|
|
}
|
|
}
|
|
update_text_for_elements(to_update_text);
|
|
}
|
|
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_for_elements(el);
|
|
}
|
|
// 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="374" fill="url(#background)"/><text id="title" fill="rgb(0,0,0)" x="50.0000%" y="24.00">Flame Graph</text><text id="details" fill="rgb(0,0,0)" x="10" y="357.00"> </text><text id="unzoom" class="hide" fill="rgb(0,0,0)" x="10" y="24.00">Reset Zoom</text><text id="search" fill="rgb(0,0,0)" x="1190" y="24.00">Search</text><text id="matched" fill="rgb(0,0,0)" x="1190" y="357.00"> </text><svg id="frames" x="10" width="1180" total_samples="3172"><g><title>[ld-linux-x86-64.so.2] (1 samples, 0.03%)</title><rect x="0.0946%" y="261" width="0.0315%" height="15" fill="rgb(227,0,7)" fg:x="3" fg:w="1"/><text x="0.3446%" y="271.50"></text></g><g><title>[ld-linux-x86-64.so.2] (1 samples, 0.03%)</title><rect x="0.0946%" y="245" width="0.0315%" height="15" fill="rgb(217,0,24)" fg:x="3" fg:w="1"/><text x="0.3446%" y="255.50"></text></g><g><title>[ld-linux-x86-64.so.2] (1 samples, 0.03%)</title><rect x="0.0946%" y="229" width="0.0315%" height="15" fill="rgb(221,193,54)" fg:x="3" fg:w="1"/><text x="0.3446%" y="239.50"></text></g><g><title>[ld-linux-x86-64.so.2] (1 samples, 0.03%)</title><rect x="0.0946%" y="213" width="0.0315%" height="15" fill="rgb(248,212,6)" fg:x="3" fg:w="1"/><text x="0.3446%" y="223.50"></text></g><g><title>[ld-linux-x86-64.so.2] (1 samples, 0.03%)</title><rect x="0.0946%" y="197" width="0.0315%" height="15" fill="rgb(208,68,35)" fg:x="3" fg:w="1"/><text x="0.3446%" y="207.50"></text></g><g><title>[ld-linux-x86-64.so.2] (1 samples, 0.03%)</title><rect x="0.0946%" y="181" width="0.0315%" height="15" fill="rgb(232,128,0)" fg:x="3" fg:w="1"/><text x="0.3446%" y="191.50"></text></g><g><title>[ld-linux-x86-64.so.2] (1 samples, 0.03%)</title><rect x="0.0946%" y="165" width="0.0315%" height="15" fill="rgb(207,160,47)" fg:x="3" fg:w="1"/><text x="0.3446%" y="175.50"></text></g><g><title>[ld-linux-x86-64.so.2] (5 samples, 0.16%)</title><rect x="0.0000%" y="277" width="0.1576%" height="15" fill="rgb(228,23,34)" fg:x="0" fg:w="5"/><text x="0.2500%" y="287.50"></text></g><g><title>[unknown] (1 samples, 0.03%)</title><rect x="0.1261%" y="261" width="0.0315%" height="15" fill="rgb(218,30,26)" fg:x="4" fg:w="1"/><text x="0.3761%" y="271.50"></text></g><g><title>[ld-linux-x86-64.so.2] (7 samples, 0.22%)</title><rect x="0.0000%" y="293" width="0.2207%" height="15" fill="rgb(220,122,19)" fg:x="0" fg:w="7"/><text x="0.2500%" y="303.50"></text></g><g><title>[unknown] (2 samples, 0.06%)</title><rect x="0.1576%" y="277" width="0.0631%" height="15" fill="rgb(250,228,42)" fg:x="5" fg:w="2"/><text x="0.4076%" y="287.50"></text></g><g><title>[unknown] (1 samples, 0.03%)</title><rect x="2.3014%" y="133" width="0.0315%" height="15" fill="rgb(240,193,28)" fg:x="73" fg:w="1"/><text x="2.5514%" y="143.50"></text></g><g><title>[unknown] (1 samples, 0.03%)</title><rect x="2.3014%" y="117" width="0.0315%" height="15" fill="rgb(216,20,37)" fg:x="73" fg:w="1"/><text x="2.5514%" y="127.50"></text></g><g><title>sudk::SField::next (82 samples, 2.59%)</title><rect x="2.3329%" y="133" width="2.5851%" height="15" fill="rgb(206,188,39)" fg:x="74" fg:w="82"/><text x="2.5829%" y="143.50">su..</text></g><g><title><alloc::vec::Vec<T,A> as core::ops::index::Index<I>>::index (2 samples, 0.06%)</title><rect x="4.8550%" y="117" width="0.0631%" height="15" fill="rgb(217,207,13)" fg:x="154" fg:w="2"/><text x="5.1050%" y="127.50"></text></g><g><title>core::slice::index::<impl core::ops::index::Index<I> for [T]>::index (2 samples, 0.06%)</title><rect x="4.8550%" y="101" width="0.0631%" height="15" fill="rgb(231,73,38)" fg:x="154" fg:w="2"/><text x="5.1050%" y="111.50"></text></g><g><title><usize as core::slice::index::SliceIndex<[T]>>::index (2 samples, 0.06%)</title><rect x="4.8550%" y="85" width="0.0631%" height="15" fill="rgb(225,20,46)" fg:x="154" fg:w="2"/><text x="5.1050%" y="95.50"></text></g><g><title>sudk::SField::prev (75 samples, 2.36%)</title><rect x="4.9180%" y="133" width="2.3644%" height="15" fill="rgb(210,31,41)" fg:x="156" fg:w="75"/><text x="5.1680%" y="143.50">su..</text></g><g><title><alloc::vec::Vec<T,A> as core::ops::index::Index<I>>::index (24 samples, 0.76%)</title><rect x="6.5259%" y="117" width="0.7566%" height="15" fill="rgb(221,200,47)" fg:x="207" fg:w="24"/><text x="6.7759%" y="127.50"></text></g><g><title>core::slice::index::<impl core::ops::index::Index<I> for [T]>::index (24 samples, 0.76%)</title><rect x="6.5259%" y="101" width="0.7566%" height="15" fill="rgb(226,26,5)" fg:x="207" fg:w="24"/><text x="6.7759%" y="111.50"></text></g><g><title><usize as core::slice::index::SliceIndex<[T]>>::index (24 samples, 0.76%)</title><rect x="6.5259%" y="85" width="0.7566%" height="15" fill="rgb(249,33,26)" fg:x="207" fg:w="24"/><text x="6.7759%" y="95.50"></text></g><g><title><alloc::vec::Vec<T,A> as core::ops::deref::Deref>::deref (9 samples, 0.28%)</title><rect x="9.2055%" y="117" width="0.2837%" height="15" fill="rgb(235,183,28)" fg:x="292" fg:w="9"/><text x="9.4555%" y="127.50"></text></g><g><title>alloc::vec::Vec<T,A>::as_ptr (4 samples, 0.13%)</title><rect x="9.3632%" y="101" width="0.1261%" height="15" fill="rgb(221,5,38)" fg:x="297" fg:w="4"/><text x="9.6132%" y="111.50"></text></g><g><title>alloc::raw_vec::RawVec<T,A>::ptr (4 samples, 0.13%)</title><rect x="9.3632%" y="85" width="0.1261%" height="15" fill="rgb(247,18,42)" fg:x="297" fg:w="4"/><text x="9.6132%" y="95.50"></text></g><g><title><alloc::vec::Vec<T,A> as core::ops::index::Index<I>>::index (10 samples, 0.32%)</title><rect x="9.4893%" y="117" width="0.3153%" height="15" fill="rgb(241,131,45)" fg:x="301" fg:w="10"/><text x="9.7393%" y="127.50"></text></g><g><title>core::slice::index::<impl core::ops::index::Index<I> for [T]>::index (10 samples, 0.32%)</title><rect x="9.4893%" y="101" width="0.3153%" height="15" fill="rgb(249,31,29)" fg:x="301" fg:w="10"/><text x="9.7393%" y="111.50"></text></g><g><title><usize as core::slice::index::SliceIndex<[T]>>::index (10 samples, 0.32%)</title><rect x="9.4893%" y="85" width="0.3153%" height="15" fill="rgb(225,111,53)" fg:x="301" fg:w="10"/><text x="9.7393%" y="95.50"></text></g><g><title><core::slice::iter::Iter<T> as core::iter::traits::iterator::Iterator>::next (531 samples, 16.74%)</title><rect x="9.8045%" y="117" width="16.7402%" height="15" fill="rgb(238,160,17)" fg:x="311" fg:w="531"/><text x="10.0545%" y="127.50"><core::slice::iter::Iter<T..</text></g><g><title><core::ptr::non_null::NonNull<T> as core::cmp::PartialEq>::eq (163 samples, 5.14%)</title><rect x="21.4061%" y="101" width="5.1387%" height="15" fill="rgb(214,148,48)" fg:x="679" fg:w="163"/><text x="21.6561%" y="111.50"><core:..</text></g><g><title>sudk::SField::block_ok (74 samples, 2.33%)</title><rect x="73.5183%" y="101" width="2.3329%" height="15" fill="rgb(232,36,49)" fg:x="2332" fg:w="74"/><text x="73.7683%" y="111.50">s..</text></g><g><title>core::slice::<impl [T]>::contains (74 samples, 2.33%)</title><rect x="73.5183%" y="85" width="2.3329%" height="15" fill="rgb(209,103,24)" fg:x="2332" fg:w="74"/><text x="73.7683%" y="95.50">c..</text></g><g><title><u8 as core::slice::cmp::SliceContains>::slice_contains (74 samples, 2.33%)</title><rect x="73.5183%" y="69" width="2.3329%" height="15" fill="rgb(229,88,8)" fg:x="2332" fg:w="74"/><text x="73.7683%" y="79.50"><..</text></g><g><title>core::slice::memchr::memchr (74 samples, 2.33%)</title><rect x="73.5183%" y="53" width="2.3329%" height="15" fill="rgb(213,181,19)" fg:x="2332" fg:w="74"/><text x="73.7683%" y="63.50">c..</text></g><g><title>core::slice::memchr::memchr_naive (74 samples, 2.33%)</title><rect x="73.5183%" y="37" width="2.3329%" height="15" fill="rgb(254,191,54)" fg:x="2332" fg:w="74"/><text x="73.7683%" y="47.50">c..</text></g><g><title>sudk::SField::col_ok (166 samples, 5.23%)</title><rect x="75.8512%" y="101" width="5.2333%" height="15" fill="rgb(241,83,37)" fg:x="2406" fg:w="166"/><text x="76.1012%" y="111.50">sudk::..</text></g><g><title>core::slice::<impl [T]>::contains (166 samples, 5.23%)</title><rect x="75.8512%" y="85" width="5.2333%" height="15" fill="rgb(233,36,39)" fg:x="2406" fg:w="166"/><text x="76.1012%" y="95.50">core::..</text></g><g><title><u8 as core::slice::cmp::SliceContains>::slice_contains (166 samples, 5.23%)</title><rect x="75.8512%" y="69" width="5.2333%" height="15" fill="rgb(226,3,54)" fg:x="2406" fg:w="166"/><text x="76.1012%" y="79.50"><u8 as..</text></g><g><title>core::slice::memchr::memchr (166 samples, 5.23%)</title><rect x="75.8512%" y="53" width="5.2333%" height="15" fill="rgb(245,192,40)" fg:x="2406" fg:w="166"/><text x="76.1012%" y="63.50">core::..</text></g><g><title>core::slice::memchr::memchr_naive (166 samples, 5.23%)</title><rect x="75.8512%" y="37" width="5.2333%" height="15" fill="rgb(238,167,29)" fg:x="2406" fg:w="166"/><text x="76.1012%" y="47.50">core::..</text></g><g><title>core::slice::<impl [T]>::contains (501 samples, 15.79%)</title><rect x="81.0845%" y="85" width="15.7945%" height="15" fill="rgb(232,182,51)" fg:x="2572" fg:w="501"/><text x="81.3345%" y="95.50">core::slice::<impl [T]>:..</text></g><g><title><u8 as core::slice::cmp::SliceContains>::slice_contains (501 samples, 15.79%)</title><rect x="81.0845%" y="69" width="15.7945%" height="15" fill="rgb(231,60,39)" fg:x="2572" fg:w="501"/><text x="81.3345%" y="79.50"><u8 as core::slice::cmp:..</text></g><g><title>core::slice::memchr::memchr (501 samples, 15.79%)</title><rect x="81.0845%" y="53" width="15.7945%" height="15" fill="rgb(208,69,12)" fg:x="2572" fg:w="501"/><text x="81.3345%" y="63.50">core::slice::memchr::mem..</text></g><g><title>core::slice::memchr::memchr_naive (501 samples, 15.79%)</title><rect x="81.0845%" y="37" width="15.7945%" height="15" fill="rgb(235,93,37)" fg:x="2572" fg:w="501"/><text x="81.3345%" y="47.50">core::slice::memchr::mem..</text></g><g><title>all (3,172 samples, 100%)</title><rect x="0.0000%" y="325" width="100.0000%" height="15" fill="rgb(213,116,39)" fg:x="0" fg:w="3172"/><text x="0.2500%" y="335.50"></text></g><g><title>sudk (3,172 samples, 100.00%)</title><rect x="0.0000%" y="309" width="100.0000%" height="15" fill="rgb(222,207,29)" fg:x="0" fg:w="3172"/><text x="0.2500%" y="319.50">sudk</text></g><g><title>_start (3,165 samples, 99.78%)</title><rect x="0.2207%" y="293" width="99.7793%" height="15" fill="rgb(206,96,30)" fg:x="7" fg:w="3165"/><text x="0.4707%" y="303.50">_start</text></g><g><title>__libc_start_main (3,165 samples, 99.78%)</title><rect x="0.2207%" y="277" width="99.7793%" height="15" fill="rgb(218,138,4)" fg:x="7" fg:w="3165"/><text x="0.4707%" y="287.50">__libc_start_main</text></g><g><title>[libc.so.6] (3,165 samples, 99.78%)</title><rect x="0.2207%" y="261" width="99.7793%" height="15" fill="rgb(250,191,14)" fg:x="7" fg:w="3165"/><text x="0.4707%" y="271.50">[libc.so.6]</text></g><g><title>main (3,165 samples, 99.78%)</title><rect x="0.2207%" y="245" width="99.7793%" height="15" fill="rgb(239,60,40)" fg:x="7" fg:w="3165"/><text x="0.4707%" y="255.50">main</text></g><g><title>std::sys_common::backtrace::__rust_begin_short_backtrace (3,165 samples, 99.78%)</title><rect x="0.2207%" y="229" width="99.7793%" height="15" fill="rgb(206,27,48)" fg:x="7" fg:w="3165"/><text x="0.4707%" y="239.50">std::sys_common::backtrace::__rust_begin_short_backtrace</text></g><g><title>core::ops::function::FnOnce::call_once (3,165 samples, 99.78%)</title><rect x="0.2207%" y="213" width="99.7793%" height="15" fill="rgb(225,35,8)" fg:x="7" fg:w="3165"/><text x="0.4707%" y="223.50">core::ops::function::FnOnce::call_once</text></g><g><title>sudk::main (3,165 samples, 99.78%)</title><rect x="0.2207%" y="197" width="99.7793%" height="15" fill="rgb(250,213,24)" fg:x="7" fg:w="3165"/><text x="0.4707%" y="207.50">sudk::main</text></g><g><title>sudk::run (3,165 samples, 99.78%)</title><rect x="0.2207%" y="181" width="99.7793%" height="15" fill="rgb(247,123,22)" fg:x="7" fg:w="3165"/><text x="0.4707%" y="191.50">sudk::run</text></g><g><title>sudk::SField::solve (3,165 samples, 99.78%)</title><rect x="0.2207%" y="165" width="99.7793%" height="15" fill="rgb(231,138,38)" fg:x="7" fg:w="3165"/><text x="0.4707%" y="175.50">sudk::SField::solve</text></g><g><title>sudk::SField::solve_backtracking (3,165 samples, 99.78%)</title><rect x="0.2207%" y="149" width="99.7793%" height="15" fill="rgb(231,145,46)" fg:x="7" fg:w="3165"/><text x="0.4707%" y="159.50">sudk::SField::solve_backtracking</text></g><g><title>sudk::SField::put_valid_nr (2,941 samples, 92.72%)</title><rect x="7.2825%" y="133" width="92.7175%" height="15" fill="rgb(251,118,11)" fg:x="231" fg:w="2941"/><text x="7.5325%" y="143.50">sudk::SField::put_valid_nr</text></g><g><title>sudk::SField::ok (2,330 samples, 73.46%)</title><rect x="26.5448%" y="117" width="73.4552%" height="15" fill="rgb(217,147,25)" fg:x="842" fg:w="2330"/><text x="26.7948%" y="127.50">sudk::SField::ok</text></g><g><title>sudk::SField::row_ok (600 samples, 18.92%)</title><rect x="81.0845%" y="101" width="18.9155%" height="15" fill="rgb(247,81,37)" fg:x="2572" fg:w="600"/><text x="81.3345%" y="111.50">sudk::SField::row_ok</text></g><g><title>sudk::SField::get_row (99 samples, 3.12%)</title><rect x="96.8789%" y="85" width="3.1211%" height="15" fill="rgb(209,12,38)" fg:x="3073" fg:w="99"/><text x="97.1289%" y="95.50">sud..</text></g></svg></svg> |