mirror of
https://github.com/duhanbalci/dexpr.git
synced 2026-07-01 16:19:16 +00:00
491 lines
48 KiB
XML
491 lines
48 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="326" onload="init(evt)" viewBox="0 0 1200 326" 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="326" 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="309.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="309.00"> </text><svg id="frames" x="10" width="1180" total_samples="265"><g><title>dyld4::prepare(dyld4::APIs&, mach_o::Header const*) (1 samples, 0.38%)</title><rect x="0.0000%" y="245" width="0.3774%" height="15" fill="rgb(227,0,7)" fg:x="0" fg:w="1"/><text x="0.2500%" y="255.50"></text></g><g><title>dyld4::APIs::runAllInitializersForMain() (1 samples, 0.38%)</title><rect x="0.0000%" y="229" width="0.3774%" height="15" fill="rgb(217,0,24)" fg:x="0" fg:w="1"/><text x="0.2500%" y="239.50"></text></g><g><title>dyld4::PrebuiltLoader::runInitializers(dyld4::RuntimeState&) const (1 samples, 0.38%)</title><rect x="0.0000%" y="213" width="0.3774%" height="15" fill="rgb(221,193,54)" fg:x="0" fg:w="1"/><text x="0.2500%" y="223.50"></text></g><g><title>dyld4::Loader::findAndRunAllInitializers(dyld4::RuntimeState&) const (1 samples, 0.38%)</title><rect x="0.0000%" y="197" width="0.3774%" height="15" fill="rgb(248,212,6)" fg:x="0" fg:w="1"/><text x="0.2500%" y="207.50"></text></g><g><title>dyld3::MachOAnalyzer::forEachInitializer(Diagnostics&, dyld3::MachOAnalyzer::VMAddrConverter const&, void (unsigned int) block_pointer, void const*) const (1 samples, 0.38%)</title><rect x="0.0000%" y="181" width="0.3774%" height="15" fill="rgb(208,68,35)" fg:x="0" fg:w="1"/><text x="0.2500%" y="191.50"></text></g><g><title>mach_o::Header::forEachSection(void (mach_o::Header::SectionInfo const&, bool&) block_pointer) const (1 samples, 0.38%)</title><rect x="0.0000%" y="165" width="0.3774%" height="15" fill="rgb(232,128,0)" fg:x="0" fg:w="1"/><text x="0.2500%" y="175.50"></text></g><g><title>mach_o::Header::forEachLoadCommand(void (load_command const*, bool&) block_pointer) const (1 samples, 0.38%)</title><rect x="0.0000%" y="149" width="0.3774%" height="15" fill="rgb(207,160,47)" fg:x="0" fg:w="1"/><text x="0.2500%" y="159.50"></text></g><g><title>invocation function for block in mach_o::Header::forEachSection(void (mach_o::Header::SectionInfo const&, bool&) block_pointer) const (1 samples, 0.38%)</title><rect x="0.0000%" y="133" width="0.3774%" height="15" fill="rgb(228,23,34)" fg:x="0" fg:w="1"/><text x="0.2500%" y="143.50"></text></g><g><title>invocation function for block in dyld3::MachOAnalyzer::forEachInitializer(Diagnostics&, dyld3::MachOAnalyzer::VMAddrConverter const&, void (unsigned int) block_pointer, void const*) const (1 samples, 0.38%)</title><rect x="0.0000%" y="117" width="0.3774%" height="15" fill="rgb(218,30,26)" fg:x="0" fg:w="1"/><text x="0.2500%" y="127.50"></text></g><g><title>invocation function for block in dyld4::Loader::findAndRunAllInitializers(dyld4::RuntimeState&) const (1 samples, 0.38%)</title><rect x="0.0000%" y="101" width="0.3774%" height="15" fill="rgb(220,122,19)" fg:x="0" fg:w="1"/><text x="0.2500%" y="111.50"></text></g><g><title>libSystem_initializer (1 samples, 0.38%)</title><rect x="0.0000%" y="85" width="0.3774%" height="15" fill="rgb(250,228,42)" fg:x="0" fg:w="1"/><text x="0.2500%" y="95.50"></text></g><g><title>_sanitizers_init (1 samples, 0.38%)</title><rect x="0.0000%" y="69" width="0.3774%" height="15" fill="rgb(240,193,28)" fg:x="0" fg:w="1"/><text x="0.2500%" y="79.50"></text></g><g><title>void config::env::Parser::unsetEnv<18ul>(char const**, char const (&) [18ul]) (1 samples, 0.38%)</title><rect x="0.0000%" y="53" width="0.3774%" height="15" fill="rgb(216,20,37)" fg:x="0" fg:w="1"/><text x="0.2500%" y="63.50"></text></g><g><title><core::iter::adapters::cloned::Cloned<I> as core::iter::traits::unchecked_iterator::UncheckedIterator>::next_unchecked (1 samples, 0.38%)</title><rect x="0.3774%" y="197" width="0.3774%" height="15" fill="rgb(206,188,39)" fg:x="1" fg:w="1"/><text x="0.6274%" y="207.50"></text></g><g><title><dexpr::ast::value::Value as core::clone::Clone>::clone (1 samples, 0.38%)</title><rect x="0.3774%" y="181" width="0.3774%" height="15" fill="rgb(217,207,13)" fg:x="1" fg:w="1"/><text x="0.6274%" y="191.50"></text></g><g><title><core::ops::try_trait::NeverShortCircuit<T> as core::ops::try_trait::Try>::branch (2 samples, 0.75%)</title><rect x="0.7547%" y="197" width="0.7547%" height="15" fill="rgb(231,73,38)" fg:x="2" fg:w="2"/><text x="1.0047%" y="207.50"></text></g><g><title><core::result::Result<T,E> as core::ops::try_trait::Try>::branch (1 samples, 0.38%)</title><rect x="1.5094%" y="197" width="0.3774%" height="15" fill="rgb(225,20,46)" fg:x="4" fg:w="1"/><text x="1.7594%" y="207.50"></text></g><g><title>_free (8 samples, 3.02%)</title><rect x="1.8868%" y="197" width="3.0189%" height="15" fill="rgb(210,31,41)" fg:x="5" fg:w="8"/><text x="2.1368%" y="207.50">_fr..</text></g><g><title>_platform_memmove (4 samples, 1.51%)</title><rect x="4.9057%" y="197" width="1.5094%" height="15" fill="rgb(221,200,47)" fg:x="13" fg:w="4"/><text x="5.1557%" y="207.50"></text></g><g><title>_xzm_free (4 samples, 1.51%)</title><rect x="6.4151%" y="197" width="1.5094%" height="15" fill="rgb(226,26,5)" fg:x="17" fg:w="4"/><text x="6.6651%" y="207.50"></text></g><g><title><alloc::string::String as core::fmt::Write>::write_str (4 samples, 1.51%)</title><rect x="7.9245%" y="165" width="1.5094%" height="15" fill="rgb(249,33,26)" fg:x="21" fg:w="4"/><text x="8.1745%" y="175.50"></text></g><g><title><core::ptr::non_null::NonNull<T> as core::cmp::PartialEq>::eq (2 samples, 0.75%)</title><rect x="9.4340%" y="165" width="0.7547%" height="15" fill="rgb(235,183,28)" fg:x="25" fg:w="2"/><text x="9.6840%" y="175.50"></text></g><g><title><str as core::fmt::Debug>::fmt (1 samples, 0.38%)</title><rect x="10.1887%" y="165" width="0.3774%" height="15" fill="rgb(221,5,38)" fg:x="27" fg:w="1"/><text x="10.4387%" y="175.50"></text></g><g><title><alloc::string::String as core::fmt::Write>::write_str (3 samples, 1.13%)</title><rect x="10.5660%" y="149" width="1.1321%" height="15" fill="rgb(247,18,42)" fg:x="28" fg:w="3"/><text x="10.8160%" y="159.50"></text></g><g><title><core::fmt::Formatter as core::fmt::Write>::write_char (3 samples, 1.13%)</title><rect x="11.6981%" y="149" width="1.1321%" height="15" fill="rgb(241,131,45)" fg:x="31" fg:w="3"/><text x="11.9481%" y="159.50"></text></g><g><title>alloc::raw_vec::RawVecInner<A>::capacity (1 samples, 0.38%)</title><rect x="12.4528%" y="133" width="0.3774%" height="15" fill="rgb(249,31,29)" fg:x="33" fg:w="1"/><text x="12.7028%" y="143.50"></text></g><g><title><core::slice::iter::Iter<T> as core::iter::traits::iterator::Iterator>::position (9 samples, 3.40%)</title><rect x="12.8302%" y="149" width="3.3962%" height="15" fill="rgb(225,111,53)" fg:x="34" fg:w="9"/><text x="13.0802%" y="159.50"><co..</text></g><g><title><dexpr::ast::value::Value as core::fmt::Display>::fmt (1 samples, 0.38%)</title><rect x="16.2264%" y="149" width="0.3774%" height="15" fill="rgb(238,160,17)" fg:x="43" fg:w="1"/><text x="16.4764%" y="159.50"></text></g><g><title><core::slice::iter::Iter<T> as core::iter::traits::iterator::Iterator>::all (1 samples, 0.38%)</title><rect x="16.6038%" y="117" width="0.3774%" height="15" fill="rgb(214,148,48)" fg:x="44" fg:w="1"/><text x="16.8538%" y="127.50"></text></g><g><title>_platform_memmove (1 samples, 0.38%)</title><rect x="16.9811%" y="117" width="0.3774%" height="15" fill="rgb(232,36,49)" fg:x="45" fg:w="1"/><text x="17.2311%" y="127.50"></text></g><g><title><rust_decimal::decimal::Decimal as core::fmt::Display>::fmt (3 samples, 1.13%)</title><rect x="16.6038%" y="133" width="1.1321%" height="15" fill="rgb(209,103,24)" fg:x="44" fg:w="3"/><text x="16.8538%" y="143.50"></text></g><g><title>rust_decimal::str::to_str_internal (1 samples, 0.38%)</title><rect x="17.3585%" y="117" width="0.3774%" height="15" fill="rgb(229,88,8)" fg:x="46" fg:w="1"/><text x="17.6085%" y="127.50"></text></g><g><title><rust_decimal::decimal::Decimal as core::fmt::Debug>::fmt (4 samples, 1.51%)</title><rect x="16.6038%" y="149" width="1.5094%" height="15" fill="rgb(213,181,19)" fg:x="44" fg:w="4"/><text x="16.8538%" y="159.50"></text></g><g><title>arrayvec::array_string::ArrayString<_>::len (1 samples, 0.38%)</title><rect x="17.7358%" y="133" width="0.3774%" height="15" fill="rgb(254,191,54)" fg:x="47" fg:w="1"/><text x="17.9858%" y="143.50"></text></g><g><title><str as core::fmt::Debug>::fmt (2 samples, 0.75%)</title><rect x="18.1132%" y="149" width="0.7547%" height="15" fill="rgb(241,83,37)" fg:x="48" fg:w="2"/><text x="18.3632%" y="159.50"></text></g><g><title><core::ptr::non_null::NonNull<T> as core::cmp::PartialEq>::eq (1 samples, 0.38%)</title><rect x="18.8679%" y="133" width="0.3774%" height="15" fill="rgb(233,36,39)" fg:x="50" fg:w="1"/><text x="19.1179%" y="143.50"></text></g><g><title>core::fmt::Formatter::pad_integral (1 samples, 0.38%)</title><rect x="19.2453%" y="101" width="0.3774%" height="15" fill="rgb(226,3,54)" fg:x="51" fg:w="1"/><text x="19.4953%" y="111.50"></text></g><g><title>core::fmt::Formatter::pad_integral::write_prefix (1 samples, 0.38%)</title><rect x="19.6226%" y="101" width="0.3774%" height="15" fill="rgb(245,192,40)" fg:x="52" fg:w="1"/><text x="19.8726%" y="111.50"></text></g><g><title>core::fmt::Formatter::pad_integral (3 samples, 1.13%)</title><rect x="20.0000%" y="101" width="1.1321%" height="15" fill="rgb(238,167,29)" fg:x="53" fg:w="3"/><text x="20.2500%" y="111.50"></text></g><g><title>core::fmt::Formatter::pad_integral::write_prefix (3 samples, 1.13%)</title><rect x="20.0000%" y="85" width="1.1321%" height="15" fill="rgb(232,182,51)" fg:x="53" fg:w="3"/><text x="20.2500%" y="95.50"></text></g><g><title>core::ptr::copy_nonoverlapping (1 samples, 0.38%)</title><rect x="21.1321%" y="101" width="0.3774%" height="15" fill="rgb(231,60,39)" fg:x="56" fg:w="1"/><text x="21.3821%" y="111.50"></text></g><g><title>DYLD-STUB$$memcpy (1 samples, 0.38%)</title><rect x="21.1321%" y="85" width="0.3774%" height="15" fill="rgb(208,69,12)" fg:x="56" fg:w="1"/><text x="21.3821%" y="95.50"></text></g><g><title>rust_decimal::decimal::Decimal::mantissa_array3 (1 samples, 0.38%)</title><rect x="21.5094%" y="101" width="0.3774%" height="15" fill="rgb(235,93,37)" fg:x="57" fg:w="1"/><text x="21.7594%" y="111.50"></text></g><g><title><rust_decimal::decimal::Decimal as core::fmt::Display>::fmt (9 samples, 3.40%)</title><rect x="19.2453%" y="117" width="3.3962%" height="15" fill="rgb(213,116,39)" fg:x="51" fg:w="9"/><text x="19.4953%" y="127.50"><ru..</text></g><g><title>rust_decimal::str::to_str_internal (2 samples, 0.75%)</title><rect x="21.8868%" y="101" width="0.7547%" height="15" fill="rgb(222,207,29)" fg:x="58" fg:w="2"/><text x="22.1368%" y="111.50"></text></g><g><title>core::fmt::Formatter::write_fmt (11 samples, 4.15%)</title><rect x="18.8679%" y="149" width="4.1509%" height="15" fill="rgb(206,96,30)" fg:x="50" fg:w="11"/><text x="19.1179%" y="159.50">core:..</text></g><g><title>core::fmt::rt::Argument::fmt (10 samples, 3.77%)</title><rect x="19.2453%" y="133" width="3.7736%" height="15" fill="rgb(218,138,4)" fg:x="51" fg:w="10"/><text x="19.4953%" y="143.50">core..</text></g><g><title>core::fmt::Formatter::pad_integral (1 samples, 0.38%)</title><rect x="22.6415%" y="117" width="0.3774%" height="15" fill="rgb(250,191,14)" fg:x="60" fg:w="1"/><text x="22.8915%" y="127.50"></text></g><g><title><alloc::string::String as core::fmt::Write>::write_str (1 samples, 0.38%)</title><rect x="23.3962%" y="133" width="0.3774%" height="15" fill="rgb(239,60,40)" fg:x="62" fg:w="1"/><text x="23.6462%" y="143.50"></text></g><g><title>_platform_memmove (5 samples, 1.89%)</title><rect x="23.7736%" y="133" width="1.8868%" height="15" fill="rgb(206,27,48)" fg:x="63" fg:w="5"/><text x="24.0236%" y="143.50">_..</text></g><g><title>alloc::raw_vec::RawVecInner<A>::capacity (1 samples, 0.38%)</title><rect x="25.6604%" y="133" width="0.3774%" height="15" fill="rgb(225,35,8)" fg:x="68" fg:w="1"/><text x="25.9104%" y="143.50"></text></g><g><title><core::result::Result<T,E> as core::ops::try_trait::Try>::branch (1 samples, 0.38%)</title><rect x="26.0377%" y="117" width="0.3774%" height="15" fill="rgb(250,213,24)" fg:x="69" fg:w="1"/><text x="26.2877%" y="127.50"></text></g><g><title><deduplicated_symbol> (3 samples, 1.13%)</title><rect x="26.4151%" y="53" width="1.1321%" height="15" fill="rgb(247,123,22)" fg:x="70" fg:w="3"/><text x="26.6651%" y="63.50"></text></g><g><title>_platform_memmove (1 samples, 0.38%)</title><rect x="27.5472%" y="53" width="0.3774%" height="15" fill="rgb(231,138,38)" fg:x="73" fg:w="1"/><text x="27.7972%" y="63.50"></text></g><g><title>_xzm_free (1 samples, 0.38%)</title><rect x="27.9245%" y="53" width="0.3774%" height="15" fill="rgb(231,145,46)" fg:x="74" fg:w="1"/><text x="28.1745%" y="63.50"></text></g><g><title>_xzm_xzone_malloc (1 samples, 0.38%)</title><rect x="28.3019%" y="53" width="0.3774%" height="15" fill="rgb(251,118,11)" fg:x="75" fg:w="1"/><text x="28.5519%" y="63.50"></text></g><g><title>_xzm_xzone_malloc_tiny (4 samples, 1.51%)</title><rect x="28.6792%" y="53" width="1.5094%" height="15" fill="rgb(217,147,25)" fg:x="76" fg:w="4"/><text x="28.9292%" y="63.50"></text></g><g><title>_malloc_zone_realloc (16 samples, 6.04%)</title><rect x="26.4151%" y="69" width="6.0377%" height="15" fill="rgb(247,81,37)" fg:x="70" fg:w="16"/><text x="26.6651%" y="79.50">_malloc_..</text></g><g><title>xzm_realloc (6 samples, 2.26%)</title><rect x="30.1887%" y="53" width="2.2642%" height="15" fill="rgb(209,12,38)" fg:x="80" fg:w="6"/><text x="30.4387%" y="63.50">x..</text></g><g><title>mach_absolute_time (3 samples, 1.13%)</title><rect x="31.3208%" y="37" width="1.1321%" height="15" fill="rgb(227,1,9)" fg:x="83" fg:w="3"/><text x="31.5708%" y="47.50"></text></g><g><title>xzm_malloc_zone_size (4 samples, 1.51%)</title><rect x="32.4528%" y="69" width="1.5094%" height="15" fill="rgb(248,47,43)" fg:x="86" fg:w="4"/><text x="32.7028%" y="79.50"></text></g><g><title>alloc::raw_vec::RawVecInner<A>::reserve (22 samples, 8.30%)</title><rect x="26.0377%" y="133" width="8.3019%" height="15" fill="rgb(221,10,30)" fg:x="69" fg:w="22"/><text x="26.2877%" y="143.50">alloc::raw_v..</text></g><g><title>alloc::raw_vec::RawVecInner<A>::grow_amortized (21 samples, 7.92%)</title><rect x="26.4151%" y="117" width="7.9245%" height="15" fill="rgb(210,229,1)" fg:x="70" fg:w="21"/><text x="26.6651%" y="127.50">alloc::raw_..</text></g><g><title>std::sys::alloc::unix::_<impl core::alloc::global::GlobalAlloc for std::alloc::System>::realloc (21 samples, 7.92%)</title><rect x="26.4151%" y="101" width="7.9245%" height="15" fill="rgb(222,148,37)" fg:x="70" fg:w="21"/><text x="26.6651%" y="111.50">std::sys::a..</text></g><g><title>_realloc (21 samples, 7.92%)</title><rect x="26.4151%" y="85" width="7.9245%" height="15" fill="rgb(234,67,33)" fg:x="70" fg:w="21"/><text x="26.6651%" y="95.50">_realloc</text></g><g><title>xzm_realloc (1 samples, 0.38%)</title><rect x="33.9623%" y="69" width="0.3774%" height="15" fill="rgb(247,98,35)" fg:x="90" fg:w="1"/><text x="34.2123%" y="79.50"></text></g><g><title>core::fmt::Formatter::write_str (31 samples, 11.70%)</title><rect x="23.0189%" y="149" width="11.6981%" height="15" fill="rgb(247,138,52)" fg:x="61" fg:w="31"/><text x="23.2689%" y="159.50">core::fmt::Format..</text></g><g><title>core::ptr::copy_nonoverlapping (1 samples, 0.38%)</title><rect x="34.3396%" y="133" width="0.3774%" height="15" fill="rgb(213,79,30)" fg:x="91" fg:w="1"/><text x="34.5896%" y="143.50"></text></g><g><title>DYLD-STUB$$memcpy (1 samples, 0.38%)</title><rect x="34.3396%" y="117" width="0.3774%" height="15" fill="rgb(246,177,23)" fg:x="91" fg:w="1"/><text x="34.5896%" y="127.50"></text></g><g><title>core::fmt::builders::DebugList::entry::_{{closure}} (1 samples, 0.38%)</title><rect x="34.7170%" y="149" width="0.3774%" height="15" fill="rgb(230,62,27)" fg:x="92" fg:w="1"/><text x="34.9670%" y="159.50"></text></g><g><title>core::fmt::Formatter::pad_integral (1 samples, 0.38%)</title><rect x="34.7170%" y="133" width="0.3774%" height="15" fill="rgb(216,154,8)" fg:x="92" fg:w="1"/><text x="34.9670%" y="143.50"></text></g><g><title><core::result::Result<T,E> as core::ops::try_trait::Try>::branch (1 samples, 0.38%)</title><rect x="35.4717%" y="133" width="0.3774%" height="15" fill="rgb(244,35,45)" fg:x="94" fg:w="1"/><text x="35.7217%" y="143.50"></text></g><g><title>_platform_memmove (1 samples, 0.38%)</title><rect x="35.8491%" y="133" width="0.3774%" height="15" fill="rgb(251,115,12)" fg:x="95" fg:w="1"/><text x="36.0991%" y="143.50"></text></g><g><title>alloc::raw_vec::RawVecInner<A>::capacity (1 samples, 0.38%)</title><rect x="36.2264%" y="133" width="0.3774%" height="15" fill="rgb(240,54,50)" fg:x="96" fg:w="1"/><text x="36.4764%" y="143.50"></text></g><g><title>alloc::vec::Vec<T,A>::append_elements (1 samples, 0.38%)</title><rect x="36.6038%" y="133" width="0.3774%" height="15" fill="rgb(233,84,52)" fg:x="97" fg:w="1"/><text x="36.8538%" y="143.50"></text></g><g><title>core::fmt::Formatter::pad_integral (5 samples, 1.89%)</title><rect x="36.9811%" y="133" width="1.8868%" height="15" fill="rgb(207,117,47)" fg:x="98" fg:w="5"/><text x="37.2311%" y="143.50">c..</text></g><g><title>core::fmt::Formatter::pad_integral::write_prefix (1 samples, 0.38%)</title><rect x="38.8679%" y="133" width="0.3774%" height="15" fill="rgb(249,43,39)" fg:x="103" fg:w="1"/><text x="39.1179%" y="143.50"></text></g><g><title>core::fmt::num::imp::_<impl core::fmt::Display for u64>::fmt (13 samples, 4.91%)</title><rect x="35.0943%" y="149" width="4.9057%" height="15" fill="rgb(209,38,44)" fg:x="93" fg:w="13"/><text x="35.3443%" y="159.50">core::..</text></g><g><title>core::fmt::Formatter::pad_integral (2 samples, 0.75%)</title><rect x="39.2453%" y="133" width="0.7547%" height="15" fill="rgb(236,212,23)" fg:x="104" fg:w="2"/><text x="39.4953%" y="143.50"></text></g><g><title>core::fmt::Formatter::pad_integral::write_prefix (2 samples, 0.75%)</title><rect x="39.2453%" y="117" width="0.7547%" height="15" fill="rgb(242,79,21)" fg:x="104" fg:w="2"/><text x="39.4953%" y="127.50"></text></g><g><title>core::fmt::rt::Argument::fmt (79 samples, 29.81%)</title><rect x="10.5660%" y="165" width="29.8113%" height="15" fill="rgb(211,96,35)" fg:x="28" fg:w="79"/><text x="10.8160%" y="175.50">core::fmt::rt::Argument::fmt</text></g><g><title>core::str::traits::_<impl core::slice::index::SliceIndex<str> for core::ops::range::Range<usize>>::get (1 samples, 0.38%)</title><rect x="40.0000%" y="149" width="0.3774%" height="15" fill="rgb(253,215,40)" fg:x="106" fg:w="1"/><text x="40.2500%" y="159.50"></text></g><g><title>_platform_memmove (10 samples, 3.77%)</title><rect x="42.6415%" y="149" width="3.7736%" height="15" fill="rgb(211,81,21)" fg:x="113" fg:w="10"/><text x="42.8915%" y="159.50">_pla..</text></g><g><title>alloc::raw_vec::RawVecInner<A>::capacity (2 samples, 0.75%)</title><rect x="46.4151%" y="149" width="0.7547%" height="15" fill="rgb(208,190,38)" fg:x="123" fg:w="2"/><text x="46.6651%" y="159.50"></text></g><g><title>alloc::vec::Vec<T,A>::append_elements (3 samples, 1.13%)</title><rect x="47.1698%" y="149" width="1.1321%" height="15" fill="rgb(235,213,38)" fg:x="125" fg:w="3"/><text x="47.4198%" y="159.50"></text></g><g><title><&mut W as core::fmt::Write::write_fmt::SpecWriteFmt>::spec_write_fmt (111 samples, 41.89%)</title><rect x="7.9245%" y="181" width="41.8868%" height="15" fill="rgb(237,122,38)" fg:x="21" fg:w="111"/><text x="8.1745%" y="191.50"><&mut W as core::fmt::Write::write_fmt::SpecWriteFmt>::spec_write_fmt</text></g><g><title>core::fmt::write (25 samples, 9.43%)</title><rect x="40.3774%" y="165" width="9.4340%" height="15" fill="rgb(244,218,35)" fg:x="107" fg:w="25"/><text x="40.6274%" y="175.50">core::fmt::wr..</text></g><g><title>core::ptr::copy_nonoverlapping (4 samples, 1.51%)</title><rect x="48.3019%" y="149" width="1.5094%" height="15" fill="rgb(240,68,47)" fg:x="128" fg:w="4"/><text x="48.5519%" y="159.50"></text></g><g><title>DYLD-STUB$$memcpy (4 samples, 1.51%)</title><rect x="48.3019%" y="133" width="1.5094%" height="15" fill="rgb(210,16,53)" fg:x="128" fg:w="4"/><text x="48.5519%" y="143.50"></text></g><g><title><deduplicated_symbol> (4 samples, 1.51%)</title><rect x="49.8113%" y="181" width="1.5094%" height="15" fill="rgb(235,124,12)" fg:x="132" fg:w="4"/><text x="50.0613%" y="191.50"></text></g><g><title>_malloc_zone_malloc (7 samples, 2.64%)</title><rect x="51.3208%" y="181" width="2.6415%" height="15" fill="rgb(224,169,11)" fg:x="136" fg:w="7"/><text x="51.5708%" y="191.50">_m..</text></g><g><title>_xzm_xzone_malloc (2 samples, 0.75%)</title><rect x="53.9623%" y="181" width="0.7547%" height="15" fill="rgb(250,166,2)" fg:x="143" fg:w="2"/><text x="54.2123%" y="191.50"></text></g><g><title>_xzm_xzone_malloc_tiny (17 samples, 6.42%)</title><rect x="54.7170%" y="181" width="6.4151%" height="15" fill="rgb(242,216,29)" fg:x="145" fg:w="17"/><text x="54.9670%" y="191.50">_xzm_xzo..</text></g><g><title>alloc::fmt::format::format_inner (2 samples, 0.75%)</title><rect x="61.1321%" y="181" width="0.7547%" height="15" fill="rgb(230,116,27)" fg:x="162" fg:w="2"/><text x="61.3821%" y="191.50"></text></g><g><title>alloc::raw_vec::RawVecInner<A>::try_allocate_in (1 samples, 0.38%)</title><rect x="61.8868%" y="181" width="0.3774%" height="15" fill="rgb(228,99,48)" fg:x="164" fg:w="1"/><text x="62.1368%" y="191.50"></text></g><g><title>core::fmt::Arguments::estimated_capacity (1 samples, 0.38%)</title><rect x="62.2642%" y="181" width="0.3774%" height="15" fill="rgb(253,11,6)" fg:x="165" fg:w="1"/><text x="62.5142%" y="191.50"></text></g><g><title>malloc (1 samples, 0.38%)</title><rect x="62.6415%" y="181" width="0.3774%" height="15" fill="rgb(247,143,39)" fg:x="166" fg:w="1"/><text x="62.8915%" y="191.50"></text></g><g><title>alloc::fmt::format::_{{closure}} (147 samples, 55.47%)</title><rect x="7.9245%" y="197" width="55.4717%" height="15" fill="rgb(236,97,10)" fg:x="21" fg:w="147"/><text x="8.1745%" y="207.50">alloc::fmt::format::_{{closure}}</text></g><g><title>xzm_malloc_zone_malloc_type_malloc (1 samples, 0.38%)</title><rect x="63.0189%" y="181" width="0.3774%" height="15" fill="rgb(233,208,19)" fg:x="167" fg:w="1"/><text x="63.2689%" y="191.50"></text></g><g><title>alloc::fmt::format::format_inner (4 samples, 1.51%)</title><rect x="63.3962%" y="197" width="1.5094%" height="15" fill="rgb(216,164,2)" fg:x="168" fg:w="4"/><text x="63.6462%" y="207.50"></text></g><g><title>alloc::raw_vec::RawVecInner<A>::current_memory (1 samples, 0.38%)</title><rect x="64.9057%" y="197" width="0.3774%" height="15" fill="rgb(220,129,5)" fg:x="172" fg:w="1"/><text x="65.1557%" y="207.50"></text></g><g><title>alloc::vec::Vec<T,A>::push_mut (1 samples, 0.38%)</title><rect x="65.2830%" y="197" width="0.3774%" height="15" fill="rgb(242,17,10)" fg:x="173" fg:w="1"/><text x="65.5330%" y="207.50"></text></g><g><title>core::hint::must_use (2 samples, 0.75%)</title><rect x="65.6604%" y="197" width="0.7547%" height="15" fill="rgb(242,107,0)" fg:x="174" fg:w="2"/><text x="65.9104%" y="207.50"></text></g><g><title>dexpr::ast::value::Value::deserialize (1 samples, 0.38%)</title><rect x="66.4151%" y="197" width="0.3774%" height="15" fill="rgb(251,28,31)" fg:x="176" fg:w="1"/><text x="66.6651%" y="207.50"></text></g><g><title>dexpr::bytecode::BytecodeReader::read_byte (4 samples, 1.51%)</title><rect x="66.7925%" y="197" width="1.5094%" height="15" fill="rgb(233,223,10)" fg:x="177" fg:w="4"/><text x="67.0425%" y="207.50"></text></g><g><title>dexpr::opcodes::OpCodeByte::name (3 samples, 1.13%)</title><rect x="68.3019%" y="197" width="1.1321%" height="15" fill="rgb(215,21,27)" fg:x="181" fg:w="3"/><text x="68.5519%" y="207.50"></text></g><g><title>dexpr::vm::vm::VM::compare_op (1 samples, 0.38%)</title><rect x="69.4340%" y="197" width="0.3774%" height="15" fill="rgb(232,23,21)" fg:x="184" fg:w="1"/><text x="69.6840%" y="207.50"></text></g><g><title>DYLD-STUB$$_platform_bzero (1 samples, 0.38%)</title><rect x="70.9434%" y="181" width="0.3774%" height="15" fill="rgb(244,5,23)" fg:x="188" fg:w="1"/><text x="71.1934%" y="191.50"></text></g><g><title>DYLD-STUB$$mach_absolute_time (1 samples, 0.38%)</title><rect x="71.3208%" y="181" width="0.3774%" height="15" fill="rgb(226,81,46)" fg:x="189" fg:w="1"/><text x="71.5708%" y="191.50"></text></g><g><title>_platform_memset (4 samples, 1.51%)</title><rect x="71.6981%" y="181" width="1.5094%" height="15" fill="rgb(247,70,30)" fg:x="190" fg:w="4"/><text x="71.9481%" y="191.50"></text></g><g><title>_xzm_free (8 samples, 3.02%)</title><rect x="73.2075%" y="181" width="3.0189%" height="15" fill="rgb(212,68,19)" fg:x="194" fg:w="8"/><text x="73.4575%" y="191.50">_xz..</text></g><g><title>dexpr::vm::vm::VM::execute (28 samples, 10.57%)</title><rect x="69.8113%" y="197" width="10.5660%" height="15" fill="rgb(240,187,13)" fg:x="185" fg:w="28"/><text x="70.0613%" y="207.50">dexpr::vm::vm::..</text></g><g><title>mach_absolute_time (11 samples, 4.15%)</title><rect x="76.2264%" y="181" width="4.1509%" height="15" fill="rgb(223,113,26)" fg:x="202" fg:w="11"/><text x="76.4764%" y="191.50">mach_..</text></g><g><title>dexpr::vm::vm::VM::handle_load_const (2 samples, 0.75%)</title><rect x="80.3774%" y="197" width="0.7547%" height="15" fill="rgb(206,192,2)" fg:x="213" fg:w="2"/><text x="80.6274%" y="207.50"></text></g><g><title>_platform_memmove (1 samples, 0.38%)</title><rect x="81.1321%" y="181" width="0.3774%" height="15" fill="rgb(241,108,4)" fg:x="215" fg:w="1"/><text x="81.3821%" y="191.50"></text></g><g><title>core::ptr::drop_in_place<[dexpr::ast::value::Value (2 samples, 0.75%)</title><rect x="81.5094%" y="181" width="0.7547%" height="15" fill="rgb(247,173,49)" fg:x="216" fg:w="2"/><text x="81.7594%" y="191.50"></text></g><g><title> 16]> (2 samples, 0.75%)</title><rect x="81.5094%" y="165" width="0.7547%" height="15" fill="rgb(224,114,35)" fg:x="216" fg:w="2"/><text x="81.7594%" y="175.50"></text></g><g><title>core::ptr::drop_in_place<dexpr::ast::value::Value> (2 samples, 0.75%)</title><rect x="81.5094%" y="149" width="0.7547%" height="15" fill="rgb(245,159,27)" fg:x="216" fg:w="2"/><text x="81.7594%" y="159.50"></text></g><g><title>dexpr::vm::vm::VM::handle_return (4 samples, 1.51%)</title><rect x="81.1321%" y="197" width="1.5094%" height="15" fill="rgb(245,172,44)" fg:x="215" fg:w="4"/><text x="81.3821%" y="207.50"></text></g><g><title>core::ptr::drop_in_place<dexpr::ast::value::Value> (1 samples, 0.38%)</title><rect x="82.2642%" y="181" width="0.3774%" height="15" fill="rgb(236,23,11)" fg:x="218" fg:w="1"/><text x="82.5142%" y="191.50"></text></g><g><title>dexpr::vm::vm::VM::read_jump_address (1 samples, 0.38%)</title><rect x="82.6415%" y="197" width="0.3774%" height="15" fill="rgb(205,117,38)" fg:x="219" fg:w="1"/><text x="82.8915%" y="207.50"></text></g><g><title>dexpr::bytecode::BytecodeReader::read_u32 (1 samples, 0.38%)</title><rect x="82.6415%" y="181" width="0.3774%" height="15" fill="rgb(237,72,25)" fg:x="219" fg:w="1"/><text x="82.8915%" y="191.50"></text></g><g><title>rust_decimal::ops::add::add_impl (1 samples, 0.38%)</title><rect x="83.0189%" y="197" width="0.3774%" height="15" fill="rgb(244,70,9)" fg:x="220" fg:w="1"/><text x="83.2689%" y="207.50"></text></g><g><title>rust_decimal::ops::add::add_sub_internal (1 samples, 0.38%)</title><rect x="83.0189%" y="181" width="0.3774%" height="15" fill="rgb(217,125,39)" fg:x="220" fg:w="1"/><text x="83.2689%" y="191.50"></text></g><g><title>rust_decimal::ops::add::sub_impl (1 samples, 0.38%)</title><rect x="83.3962%" y="197" width="0.3774%" height="15" fill="rgb(235,36,10)" fg:x="221" fg:w="1"/><text x="83.6462%" y="207.50"></text></g><g><title>rust_decimal::ops::add::add_sub_internal (1 samples, 0.38%)</title><rect x="83.3962%" y="181" width="0.3774%" height="15" fill="rgb(251,123,47)" fg:x="221" fg:w="1"/><text x="83.6462%" y="191.50"></text></g><g><title>DYLD-STUB$$free (1 samples, 0.38%)</title><rect x="83.7736%" y="181" width="0.3774%" height="15" fill="rgb(221,13,13)" fg:x="222" fg:w="1"/><text x="84.0236%" y="191.50"></text></g><g><title>__bzero (2 samples, 0.75%)</title><rect x="84.1509%" y="181" width="0.7547%" height="15" fill="rgb(238,131,9)" fg:x="223" fg:w="2"/><text x="84.4009%" y="191.50"></text></g><g><title>_platform_memset (4 samples, 1.51%)</title><rect x="84.9057%" y="181" width="1.5094%" height="15" fill="rgb(211,50,8)" fg:x="225" fg:w="4"/><text x="85.1557%" y="191.50"></text></g><g><title>_xzm_free (15 samples, 5.66%)</title><rect x="86.4151%" y="181" width="5.6604%" height="15" fill="rgb(245,182,24)" fg:x="229" fg:w="15"/><text x="86.6651%" y="191.50">_xzm_fr..</text></g><g><title>all (265 samples, 100%)</title><rect x="0.0000%" y="277" width="100.0000%" height="15" fill="rgb(242,14,37)" fg:x="0" fg:w="265"/><text x="0.2500%" y="287.50"></text></g><g><title>start (265 samples, 100.00%)</title><rect x="0.0000%" y="261" width="100.0000%" height="15" fill="rgb(246,228,12)" fg:x="0" fg:w="265"/><text x="0.2500%" y="271.50">start</text></g><g><title>main (264 samples, 99.62%)</title><rect x="0.3774%" y="245" width="99.6226%" height="15" fill="rgb(213,55,15)" fg:x="1" fg:w="264"/><text x="0.6274%" y="255.50">main</text></g><g><title>core::ops::function::FnOnce::call_once (264 samples, 99.62%)</title><rect x="0.3774%" y="229" width="99.6226%" height="15" fill="rgb(209,9,3)" fg:x="1" fg:w="264"/><text x="0.6274%" y="239.50">core::ops::function::FnOnce::call_once</text></g><g><title>dexpr::main (264 samples, 99.62%)</title><rect x="0.3774%" y="213" width="99.6226%" height="15" fill="rgb(230,59,30)" fg:x="1" fg:w="264"/><text x="0.6274%" y="223.50">dexpr::main</text></g><g><title>std::sys::alloc::unix::_<impl core::alloc::global::GlobalAlloc for std::alloc::System>::dealloc (43 samples, 16.23%)</title><rect x="83.7736%" y="197" width="16.2264%" height="15" fill="rgb(209,121,21)" fg:x="222" fg:w="43"/><text x="84.0236%" y="207.50">std::sys::alloc::unix::_<..</text></g><g><title>mach_absolute_time (21 samples, 7.92%)</title><rect x="92.0755%" y="181" width="7.9245%" height="15" fill="rgb(220,109,13)" fg:x="244" fg:w="21"/><text x="92.3255%" y="191.50">mach_absolu..</text></g></svg></svg> |