Created
August 19, 2022 07:37
-
-
Save hucsmn/7b73624f94bf2f3599bcc522cae625d7 to your computer and use it in GitHub Desktop.
qbsdiff flamegraph
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?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="486" onload="init(evt)" viewBox="0 0 1200 486" 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="486" fill="url(#background)"/><text id="title" x="50.0000%" y="24.00">Flame Graph</text><text id="details" x="10" y="469.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="469.00"> </text><svg id="frames" x="10" width="1180" total_samples="19734"><g><title>[ld-linux-x86-64.so.2] (2 samples, 0.01%)</title><rect x="0.0051%" y="373" width="0.0101%" height="15" fill="rgb(227,0,7)" fg:x="1" fg:w="2"/><text x="0.2551%" y="383.50"></text></g><g><title>[ld-linux-x86-64.so.2] (2 samples, 0.01%)</title><rect x="0.0051%" y="357" width="0.0101%" height="15" fill="rgb(217,0,24)" fg:x="1" fg:w="2"/><text x="0.2551%" y="367.50"></text></g><g><title>[ld-linux-x86-64.so.2] (5 samples, 0.03%)</title><rect x="0.0000%" y="389" width="0.0253%" height="15" fill="rgb(221,193,54)" fg:x="0" fg:w="5"/><text x="0.2500%" y="399.50"></text></g><g><title>[unknown] (2 samples, 0.01%)</title><rect x="0.0152%" y="373" width="0.0101%" height="15" fill="rgb(248,212,6)" fg:x="3" fg:w="2"/><text x="0.2652%" y="383.50"></text></g><g><title>[unknown] (2 samples, 0.01%)</title><rect x="0.0152%" y="357" width="0.0101%" height="15" fill="rgb(208,68,35)" fg:x="3" fg:w="2"/><text x="0.2652%" y="367.50"></text></g><g><title>[unknown] (2 samples, 0.01%)</title><rect x="0.0152%" y="341" width="0.0101%" height="15" fill="rgb(232,128,0)" fg:x="3" fg:w="2"/><text x="0.2652%" y="351.50"></text></g><g><title>[unknown] (2 samples, 0.01%)</title><rect x="0.0152%" y="325" width="0.0101%" height="15" fill="rgb(207,160,47)" fg:x="3" fg:w="2"/><text x="0.2652%" y="335.50"></text></g><g><title>[ld-linux-x86-64.so.2] (7 samples, 0.04%)</title><rect x="0.0000%" y="405" width="0.0355%" height="15" fill="rgb(228,23,34)" fg:x="0" fg:w="7"/><text x="0.2500%" y="415.50"></text></g><g><title>[unknown] (2 samples, 0.01%)</title><rect x="0.0253%" y="389" width="0.0101%" height="15" fill="rgb(218,30,26)" fg:x="5" fg:w="2"/><text x="0.2753%" y="399.50"></text></g><g><title>BZ2_blockSort (11 samples, 0.06%)</title><rect x="0.0355%" y="277" width="0.0557%" height="15" fill="rgb(220,122,19)" fg:x="7" fg:w="11"/><text x="0.2855%" y="287.50"></text></g><g><title>[libbz2.so.1.0.8] (11 samples, 0.06%)</title><rect x="0.0355%" y="261" width="0.0557%" height="15" fill="rgb(250,228,42)" fg:x="7" fg:w="11"/><text x="0.2855%" y="271.50"></text></g><g><title>[libbz2.so.1.0.8] (6 samples, 0.03%)</title><rect x="0.0608%" y="245" width="0.0304%" height="15" fill="rgb(240,193,28)" fg:x="12" fg:w="6"/><text x="0.3108%" y="255.50"></text></g><g><title><bzip2::write::BzEncoder<W> as std::io::Write>::flush (12 samples, 0.06%)</title><rect x="0.0355%" y="357" width="0.0608%" height="15" fill="rgb(216,20,37)" fg:x="7" fg:w="12"/><text x="0.2855%" y="367.50"></text></g><g><title>bzip2::mem::Compress::compress_vec (12 samples, 0.06%)</title><rect x="0.0355%" y="341" width="0.0608%" height="15" fill="rgb(206,188,39)" fg:x="7" fg:w="12"/><text x="0.2855%" y="351.50"></text></g><g><title>BZ2_bzCompress (12 samples, 0.06%)</title><rect x="0.0355%" y="325" width="0.0608%" height="15" fill="rgb(217,207,13)" fg:x="7" fg:w="12"/><text x="0.2855%" y="335.50"></text></g><g><title>[libbz2.so.1.0.8] (12 samples, 0.06%)</title><rect x="0.0355%" y="309" width="0.0608%" height="15" fill="rgb(231,73,38)" fg:x="7" fg:w="12"/><text x="0.2855%" y="319.50"></text></g><g><title>BZ2_compressBlock (12 samples, 0.06%)</title><rect x="0.0355%" y="293" width="0.0608%" height="15" fill="rgb(225,20,46)" fg:x="7" fg:w="12"/><text x="0.2855%" y="303.50"></text></g><g><title>[libbz2.so.1.0.8] (366 samples, 1.85%)</title><rect x="4.5860%" y="245" width="1.8547%" height="15" fill="rgb(210,31,41)" fg:x="905" fg:w="366"/><text x="4.8360%" y="255.50">[..</text></g><g><title>BZ2_blockSort (1,255 samples, 6.36%)</title><rect x="0.0963%" y="277" width="6.3596%" height="15" fill="rgb(221,200,47)" fg:x="19" fg:w="1255"/><text x="0.3463%" y="287.50">BZ2_bloc..</text></g><g><title>[libbz2.so.1.0.8] (1,255 samples, 6.36%)</title><rect x="0.0963%" y="261" width="6.3596%" height="15" fill="rgb(226,26,5)" fg:x="19" fg:w="1255"/><text x="0.3463%" y="271.50">[libbz2...</text></g><g><title>[libc.so.6] (3 samples, 0.02%)</title><rect x="6.4407%" y="245" width="0.0152%" height="15" fill="rgb(249,33,26)" fg:x="1271" fg:w="3"/><text x="6.6907%" y="255.50"></text></g><g><title>[unknown] (1,305 samples, 6.61%)</title><rect x="0.0355%" y="405" width="6.6130%" height="15" fill="rgb(235,183,28)" fg:x="7" fg:w="1305"/><text x="0.2855%" y="415.50">[unknown]</text></g><g><title>qbsdiff::main (1,305 samples, 6.61%)</title><rect x="0.0355%" y="389" width="6.6130%" height="15" fill="rgb(221,5,38)" fg:x="7" fg:w="1305"/><text x="0.2855%" y="399.50">qbsdiff::..</text></g><g><title>qbsdiff::bsdiff::Bsdiff::compare (1,305 samples, 6.61%)</title><rect x="0.0355%" y="373" width="6.6130%" height="15" fill="rgb(247,18,42)" fg:x="7" fg:w="1305"/><text x="0.2855%" y="383.50">qbsdiff::..</text></g><g><title>std::io::Write::write_all (1,293 samples, 6.55%)</title><rect x="0.0963%" y="357" width="6.5521%" height="15" fill="rgb(241,131,45)" fg:x="19" fg:w="1293"/><text x="0.3463%" y="367.50">std::io::..</text></g><g><title>bzip2::mem::Compress::compress_vec (1,293 samples, 6.55%)</title><rect x="0.0963%" y="341" width="6.5521%" height="15" fill="rgb(249,31,29)" fg:x="19" fg:w="1293"/><text x="0.3463%" y="351.50">bzip2::me..</text></g><g><title>BZ2_bzCompress (1,293 samples, 6.55%)</title><rect x="0.0963%" y="325" width="6.5521%" height="15" fill="rgb(225,111,53)" fg:x="19" fg:w="1293"/><text x="0.3463%" y="335.50">BZ2_bzCom..</text></g><g><title>[libbz2.so.1.0.8] (1,293 samples, 6.55%)</title><rect x="0.0963%" y="309" width="6.5521%" height="15" fill="rgb(238,160,17)" fg:x="19" fg:w="1293"/><text x="0.3463%" y="319.50">[libbz2.s..</text></g><g><title>BZ2_compressBlock (1,293 samples, 6.55%)</title><rect x="0.0963%" y="293" width="6.5521%" height="15" fill="rgb(214,148,48)" fg:x="19" fg:w="1293"/><text x="0.3463%" y="303.50">BZ2_compr..</text></g><g><title>BZ2_hbMakeCodeLengths (38 samples, 0.19%)</title><rect x="6.4559%" y="277" width="0.1926%" height="15" fill="rgb(232,36,49)" fg:x="1274" fg:w="38"/><text x="6.7059%" y="287.50"></text></g><g><title>BZ2_blockSort (13 samples, 0.07%)</title><rect x="6.9170%" y="53" width="0.0659%" height="15" fill="rgb(209,103,24)" fg:x="1365" fg:w="13"/><text x="7.1670%" y="63.50"></text></g><g><title>[libbz2.so.1.0.8] (13 samples, 0.07%)</title><rect x="6.9170%" y="37" width="0.0659%" height="15" fill="rgb(229,88,8)" fg:x="1365" fg:w="13"/><text x="7.1670%" y="47.50"></text></g><g><title><bzip2::write::BzEncoder<W> as std::io::Write>::flush (20 samples, 0.10%)</title><rect x="6.9069%" y="133" width="0.1013%" height="15" fill="rgb(213,181,19)" fg:x="1363" fg:w="20"/><text x="7.1569%" y="143.50"></text></g><g><title>bzip2::mem::Compress::compress_vec (20 samples, 0.10%)</title><rect x="6.9069%" y="117" width="0.1013%" height="15" fill="rgb(254,191,54)" fg:x="1363" fg:w="20"/><text x="7.1569%" y="127.50"></text></g><g><title>BZ2_bzCompress (20 samples, 0.10%)</title><rect x="6.9069%" y="101" width="0.1013%" height="15" fill="rgb(241,83,37)" fg:x="1363" fg:w="20"/><text x="7.1569%" y="111.50"></text></g><g><title>[libbz2.so.1.0.8] (20 samples, 0.10%)</title><rect x="6.9069%" y="85" width="0.1013%" height="15" fill="rgb(233,36,39)" fg:x="1363" fg:w="20"/><text x="7.1569%" y="95.50"></text></g><g><title>BZ2_compressBlock (20 samples, 0.10%)</title><rect x="6.9069%" y="69" width="0.1013%" height="15" fill="rgb(226,3,54)" fg:x="1363" fg:w="20"/><text x="7.1569%" y="79.50"></text></g><g><title>[libbz2.so.1.0.8] (5 samples, 0.03%)</title><rect x="6.9829%" y="53" width="0.0253%" height="15" fill="rgb(245,192,40)" fg:x="1378" fg:w="5"/><text x="7.2329%" y="63.50"></text></g><g><title><qbsdiff::bsdiff::SaDiff as core::iter::traits::iterator::Iterator>::next (9,317 samples, 47.21%)</title><rect x="7.0082%" y="133" width="47.2129%" height="15" fill="rgb(238,167,29)" fg:x="1383" fg:w="9317"/><text x="7.2582%" y="143.50"><qbsdiff::bsdiff::SaDiff as core::iter::traits::iterator::Iterator>::next</text></g><g><title>suffix_array::sa::SuffixArray::search_lcp (8,946 samples, 45.33%)</title><rect x="8.8882%" y="117" width="45.3329%" height="15" fill="rgb(232,182,51)" fg:x="1754" fg:w="8946"/><text x="9.1382%" y="127.50">suffix_array::sa::SuffixArray::search_lcp</text></g><g><title>[libc.so.6] (5,170 samples, 26.20%)</title><rect x="28.0227%" y="101" width="26.1984%" height="15" fill="rgb(231,60,39)" fg:x="5530" fg:w="5170"/><text x="28.2727%" y="111.50">[libc.so.6]</text></g><g><title>BZ2_blockSort (239 samples, 1.21%)</title><rect x="56.5927%" y="53" width="1.2111%" height="15" fill="rgb(208,69,12)" fg:x="11168" fg:w="239"/><text x="56.8427%" y="63.50"></text></g><g><title>[libbz2.so.1.0.8] (220 samples, 1.11%)</title><rect x="56.6890%" y="37" width="1.1148%" height="15" fill="rgb(235,93,37)" fg:x="11187" fg:w="220"/><text x="56.9390%" y="47.50"></text></g><g><title>BZ2_compressBlock (968 samples, 4.91%)</title><rect x="55.5539%" y="69" width="4.9052%" height="15" fill="rgb(213,116,39)" fg:x="10963" fg:w="968"/><text x="55.8039%" y="79.50">BZ2_co..</text></g><g><title>[libbz2.so.1.0.8] (524 samples, 2.66%)</title><rect x="57.8038%" y="53" width="2.6553%" height="15" fill="rgb(222,207,29)" fg:x="11407" fg:w="524"/><text x="58.0538%" y="63.50">[l..</text></g><g><title>bzip2::mem::Compress::compress_vec (1,488 samples, 7.54%)</title><rect x="54.2313%" y="117" width="7.5403%" height="15" fill="rgb(206,96,30)" fg:x="10702" fg:w="1488"/><text x="54.4813%" y="127.50">bzip2::mem..</text></g><g><title>BZ2_bzCompress (1,488 samples, 7.54%)</title><rect x="54.2313%" y="101" width="7.5403%" height="15" fill="rgb(218,138,4)" fg:x="10702" fg:w="1488"/><text x="54.4813%" y="111.50">BZ2_bzComp..</text></g><g><title>[libbz2.so.1.0.8] (1,484 samples, 7.52%)</title><rect x="54.2515%" y="85" width="7.5200%" height="15" fill="rgb(250,191,14)" fg:x="10706" fg:w="1484"/><text x="54.5015%" y="95.50">[libbz2.so..</text></g><g><title>[libbz2.so.1.0.8] (259 samples, 1.31%)</title><rect x="60.4591%" y="69" width="1.3125%" height="15" fill="rgb(239,60,40)" fg:x="11931" fg:w="259"/><text x="60.7091%" y="79.50"></text></g><g><title>bzip2::mem::Compress::total_in (4 samples, 0.02%)</title><rect x="61.7716%" y="117" width="0.0203%" height="15" fill="rgb(206,27,48)" fg:x="12190" fg:w="4"/><text x="62.0216%" y="127.50"></text></g><g><title>std::io::Write::write_all (1,496 samples, 7.58%)</title><rect x="54.2211%" y="133" width="7.5808%" height="15" fill="rgb(225,35,8)" fg:x="10700" fg:w="1496"/><text x="54.4711%" y="143.50">std::io::W..</text></g><g><title>bzip2::write::BzEncoder<W>::dump (2 samples, 0.01%)</title><rect x="61.7918%" y="117" width="0.0101%" height="15" fill="rgb(250,213,24)" fg:x="12194" fg:w="2"/><text x="62.0418%" y="127.50"></text></g><g><title>suffix_array::sa::SuffixArray::enable_buckets (79 samples, 0.40%)</title><rect x="61.8020%" y="133" width="0.4003%" height="15" fill="rgb(247,123,22)" fg:x="12196" fg:w="79"/><text x="62.0520%" y="143.50"></text></g><g><title>ss_mintrosort (1,752 samples, 8.88%)</title><rect x="79.0108%" y="53" width="8.8781%" height="15" fill="rgb(231,138,38)" fg:x="15592" fg:w="1752"/><text x="79.2608%" y="63.50">ss_mintrosort</text></g><g><title>sssort (2,599 samples, 13.17%)</title><rect x="79.0108%" y="69" width="13.1702%" height="15" fill="rgb(231,145,46)" fg:x="15592" fg:w="2599"/><text x="79.2608%" y="79.50">sssort</text></g><g><title>ss_swapmerge (847 samples, 4.29%)</title><rect x="87.8889%" y="53" width="4.2921%" height="15" fill="rgb(251,118,11)" fg:x="17344" fg:w="847"/><text x="88.1389%" y="63.50">ss_sw..</text></g><g><title>all (19,734 samples, 100%)</title><rect x="0.0000%" y="437" width="100.0000%" height="15" fill="rgb(217,147,25)" fg:x="0" fg:w="19734"/><text x="0.2500%" y="447.50"></text></g><g><title>qbsdiff (19,734 samples, 100.00%)</title><rect x="0.0000%" y="421" width="100.0000%" height="15" fill="rgb(247,81,37)" fg:x="0" fg:w="19734"/><text x="0.2500%" y="431.50">qbsdiff</text></g><g><title>_start (18,422 samples, 93.35%)</title><rect x="6.6484%" y="405" width="93.3516%" height="15" fill="rgb(209,12,38)" fg:x="1312" fg:w="18422"/><text x="6.8984%" y="415.50">_start</text></g><g><title>__libc_start_main (18,422 samples, 93.35%)</title><rect x="6.6484%" y="389" width="93.3516%" height="15" fill="rgb(227,1,9)" fg:x="1312" fg:w="18422"/><text x="6.8984%" y="399.50">__libc_start_main</text></g><g><title>[libc.so.6] (18,422 samples, 93.35%)</title><rect x="6.6484%" y="373" width="93.3516%" height="15" fill="rgb(248,47,43)" fg:x="1312" fg:w="18422"/><text x="6.8984%" y="383.50">[libc.so.6]</text></g><g><title>main (18,422 samples, 93.35%)</title><rect x="6.6484%" y="357" width="93.3516%" height="15" fill="rgb(221,10,30)" fg:x="1312" fg:w="18422"/><text x="6.8984%" y="367.50">main</text></g><g><title>std::rt::lang_start_internal (18,422 samples, 93.35%)</title><rect x="6.6484%" y="341" width="93.3516%" height="15" fill="rgb(210,229,1)" fg:x="1312" fg:w="18422"/><text x="6.8984%" y="351.50">std::rt::lang_start_internal</text></g><g><title>std::panic::catch_unwind (18,422 samples, 93.35%)</title><rect x="6.6484%" y="325" width="93.3516%" height="15" fill="rgb(222,148,37)" fg:x="1312" fg:w="18422"/><text x="6.8984%" y="335.50">std::panic::catch_unwind</text></g><g><title>std::panicking::try (18,422 samples, 93.35%)</title><rect x="6.6484%" y="309" width="93.3516%" height="15" fill="rgb(234,67,33)" fg:x="1312" fg:w="18422"/><text x="6.8984%" y="319.50">std::panicking::try</text></g><g><title>std::panicking::try::do_call (18,422 samples, 93.35%)</title><rect x="6.6484%" y="293" width="93.3516%" height="15" fill="rgb(247,98,35)" fg:x="1312" fg:w="18422"/><text x="6.8984%" y="303.50">std::panicking::try::do_call</text></g><g><title>std::rt::lang_start_internal::{{closure}} (18,422 samples, 93.35%)</title><rect x="6.6484%" y="277" width="93.3516%" height="15" fill="rgb(247,138,52)" fg:x="1312" fg:w="18422"/><text x="6.8984%" y="287.50">std::rt::lang_start_internal::{{closure}}</text></g><g><title>std::panic::catch_unwind (18,422 samples, 93.35%)</title><rect x="6.6484%" y="261" width="93.3516%" height="15" fill="rgb(213,79,30)" fg:x="1312" fg:w="18422"/><text x="6.8984%" y="271.50">std::panic::catch_unwind</text></g><g><title>std::panicking::try (18,422 samples, 93.35%)</title><rect x="6.6484%" y="245" width="93.3516%" height="15" fill="rgb(246,177,23)" fg:x="1312" fg:w="18422"/><text x="6.8984%" y="255.50">std::panicking::try</text></g><g><title>std::panicking::try::do_call (18,422 samples, 93.35%)</title><rect x="6.6484%" y="229" width="93.3516%" height="15" fill="rgb(230,62,27)" fg:x="1312" fg:w="18422"/><text x="6.8984%" y="239.50">std::panicking::try::do_call</text></g><g><title>core::ops::function::impls::<impl core::ops::function::FnOnce<A> for &F>::call_once (18,422 samples, 93.35%)</title><rect x="6.6484%" y="213" width="93.3516%" height="15" fill="rgb(216,154,8)" fg:x="1312" fg:w="18422"/><text x="6.8984%" y="223.50">core::ops::function::impls::<impl core::ops::function::FnOnce<A> for &F>::call_once</text></g><g><title>std::rt::lang_start::_{{closure}} (18,422 samples, 93.35%)</title><rect x="6.6484%" y="197" width="93.3516%" height="15" fill="rgb(244,35,45)" fg:x="1312" fg:w="18422"/><text x="6.8984%" y="207.50">std::rt::lang_start::_{{closure}}</text></g><g><title>std::sys_common::backtrace::__rust_begin_short_backtrace (18,422 samples, 93.35%)</title><rect x="6.6484%" y="181" width="93.3516%" height="15" fill="rgb(251,115,12)" fg:x="1312" fg:w="18422"/><text x="6.8984%" y="191.50">std::sys_common::backtrace::__rust_begin_short_backtrace</text></g><g><title>qbsdiff::main (18,422 samples, 93.35%)</title><rect x="6.6484%" y="165" width="93.3516%" height="15" fill="rgb(240,54,50)" fg:x="1312" fg:w="18422"/><text x="6.8984%" y="175.50">qbsdiff::main</text></g><g><title>qbsdiff::bsdiff::Bsdiff::compare (18,422 samples, 93.35%)</title><rect x="6.6484%" y="149" width="93.3516%" height="15" fill="rgb(233,84,52)" fg:x="1312" fg:w="18422"/><text x="6.8984%" y="159.50">qbsdiff::bsdiff::Bsdiff::compare</text></g><g><title>suffix_array::sa::SuffixArray::new (7,459 samples, 37.80%)</title><rect x="62.2023%" y="133" width="37.7977%" height="15" fill="rgb(207,117,47)" fg:x="12275" fg:w="7459"/><text x="62.4523%" y="143.50">suffix_array::sa::SuffixArray::new</text></g><g><title>cdivsufsort::sort_in_place (7,459 samples, 37.80%)</title><rect x="62.2023%" y="117" width="37.7977%" height="15" fill="rgb(249,43,39)" fg:x="12275" fg:w="7459"/><text x="62.4523%" y="127.50">cdivsufsort::sort_in_place</text></g><g><title>divsufsort (7,459 samples, 37.80%)</title><rect x="62.2023%" y="101" width="37.7977%" height="15" fill="rgb(209,38,44)" fg:x="12275" fg:w="7459"/><text x="62.4523%" y="111.50">divsufsort</text></g><g><title>sort_typeBstar (5,260 samples, 26.65%)</title><rect x="73.3455%" y="85" width="26.6545%" height="15" fill="rgb(236,212,23)" fg:x="14474" fg:w="5260"/><text x="73.5955%" y="95.50">sort_typeBstar</text></g><g><title>trsort (1,543 samples, 7.82%)</title><rect x="92.1810%" y="69" width="7.8190%" height="15" fill="rgb(242,79,21)" fg:x="18191" fg:w="1543"/><text x="92.4310%" y="79.50">trsort</text></g><g><title>tr_introsort.constprop.0 (1,422 samples, 7.21%)</title><rect x="92.7942%" y="53" width="7.2058%" height="15" fill="rgb(211,96,35)" fg:x="18312" fg:w="1422"/><text x="93.0442%" y="63.50">tr_introso..</text></g></svg></svg> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment