master.svg
image/svg+xml
Filename: master.svg
Type: image/svg+xml
Part: 4
<?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="630" onload="init(evt)" viewBox="0 0 1200 630" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<!-- 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); }
#search, #ignorecase { opacity:0.1; cursor:pointer; }
#search:hover, #search.show, #ignorecase:hover, #ignorecase.show { opacity:1; }
#subtitle { text-anchor:middle; font-color:rgb(160,160,160); }
#title { text-anchor:middle; font-size:17px}
#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[
"use strict";
var details, searchbtn, unzoombtn, matchedtxt, svg, searching, currentSearchTerm, ignorecase, ignorecaseBtn;
function init(evt) {
details = document.getElementById("details").firstChild;
searchbtn = document.getElementById("search");
ignorecaseBtn = document.getElementById("ignorecase");
unzoombtn = document.getElementById("unzoom");
matchedtxt = document.getElementById("matched");
svg = document.getElementsByTagName("svg")[0];
searching = 0;
currentSearchTerm = null;
// use GET parameters to restore a flamegraphs state.
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);
}
// 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(true);
zoom(target);
if (!document.querySelector('.parent')) {
// we have basically done a clearzoom so clear the url
var params = get_params();
if (params.x) delete params.x;
if (params.y) delete params.y;
history.replaceState(null, null, parse_params(params));
unzoombtn.classList.add("hide");
return;
}
// set parameters for zoom state
var el = target.querySelector("rect");
if (el && el.attributes && el.attributes.y && el.attributes._orig_x) {
var params = get_params()
params.x = el.attributes._orig_x.value;
params.y = el.attributes.y.value;
history.replaceState(null, null, parse_params(params));
}
}
else if (e.target.id == "unzoom") clearzoom();
else if (e.target.id == "search") search_prompt();
else if (e.target.id == "ignorecase") toggle_ignorecase();
}, false)
// mouse-over for info
// show
window.addEventListener("mouseover", function(e) {
var target = find_group(e.target);
if (target) details.nodeValue = "Function: " + 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
// ctrl-I to toggle case-sensitive search
window.addEventListener("keydown",function (e) {
if (e.keyCode === 114 || (e.ctrlKey && e.keyCode === 70)) {
e.preventDefault();
search_prompt();
}
else if (e.ctrlKey && e.keyCode === 73) {
e.preventDefault();
toggle_ignorecase();
}
}, 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];
}
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["_orig_" + attr] != undefined) return;
if (e.attributes[attr] == undefined) return;
if (val == undefined) val = e.attributes[attr].value;
e.setAttribute("_orig_" + attr, val);
}
function orig_load(e, attr) {
if (e.attributes["_orig_"+attr] == undefined) return;
e.attributes[attr].value = e.attributes["_orig_" + attr].value;
e.removeAttribute("_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) -3;
var txt = find_child(e, "title").textContent.replace(/\([^(]*\)$/,"");
t.attributes.x.value = parseFloat(r.attributes.x.value) + 3;
// Smaller than this size won't fit anything
if (w < 2 * 12 * 0.59) {
t.textContent = "";
return;
}
t.textContent = txt;
var sl = t.getSubStringLength(0, txt.length);
// check if only whitespace or if we can fit the entire string into width w
if (/^ *$/.test(txt) || sl < w)
return;
// this isn't perfect, but gives a good starting point
// and avoids calling getSubStringLength too often
var start = Math.floor((w/sl) * txt.length);
for (var x = start; x > 0; x = x-2) {
if (t.getSubStringLength(0, x + 2) <= w) {
t.textContent = txt.substring(0, x) + "..";
return;
}
}
t.textContent = "";
}
// zoom
function zoom_reset(e) {
if (e.attributes != undefined) {
orig_load(e, "x");
orig_load(e, "width");
}
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, ratio) {
if (e.attributes != undefined) {
if (e.attributes.x != undefined) {
orig_save(e, "x");
e.attributes.x.value = (parseFloat(e.attributes.x.value) - x - 10) * ratio + 10;
if (e.tagName == "text")
e.attributes.x.value = find_child(e.parentNode, "rect[x]").attributes.x.value + 3;
}
if (e.attributes.width != undefined) {
orig_save(e, "width");
e.attributes.width.value = parseFloat(e.attributes.width.value) * ratio;
}
}
if (e.childNodes == undefined) return;
for (var i = 0, c = e.childNodes; i < c.length; i++) {
zoom_child(c[i], x - 10, ratio);
}
}
function zoom_parent(e) {
if (e.attributes) {
if (e.attributes.x != undefined) {
orig_save(e, "x");
e.attributes.x.value = 10;
}
if (e.attributes.width != undefined) {
orig_save(e, "width");
e.attributes.width.value = parseInt(svg.width.baseVal.value) - (10 * 2);
}
}
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 = parseFloat(attr.width.value);
var xmin = parseFloat(attr.x.value);
var xmax = parseFloat(xmin + width);
var ymin = parseFloat(attr.y.value);
var ratio = (svg.width.baseVal.value - 2 * 10) / width;
// XXX: Workaround for JavaScript float issues (fix me)
var fudge = 0.0001;
unzoombtn.classList.remove("hide");
var el = document.getElementById("frames").children;
for (var i = 0; i < el.length; i++) {
var e = el[i];
var a = find_child(e, "rect").attributes;
var ex = parseFloat(a.x.value);
var ew = parseFloat(a.width.value);
var upstack;
// Is it an ancestor
if (0 == 0) {
upstack = parseFloat(a.y.value) > ymin;
} else {
upstack = parseFloat(a.y.value) < ymin;
}
if (upstack) {
// Direct ancestor
if (ex <= xmin && (ex+ew+fudge) >= 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 + fudge >= xmax) {
e.classList.add("hide");
}
else {
zoom_child(e, xmin, ratio);
update_text(e);
}
}
}
search();
}
function unzoom(dont_update_text) {
unzoombtn.classList.add("hide");
var el = document.getElementById("frames").children;
for(var i = 0; i < el.length; i++) {
el[i].classList.remove("parent");
el[i].classList.remove("hide");
zoom_reset(el[i]);
if(!dont_update_text) update_text(el[i]);
}
search();
}
function clearzoom() {
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));
}
// search
function toggle_ignorecase() {
ignorecase = !ignorecase;
if (ignorecase) {
ignorecaseBtn.classList.add("show");
} else {
ignorecaseBtn.classList.remove("show");
}
reset_search();
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_)"
+ (ignorecase ? ", ignoring case" : "")
+ "\nPress Ctrl-i to toggle case sensitivity", "");
if (term != null) search(term);
} else {
reset_search();
searching = 0;
currentSearchTerm = null;
searchbtn.classList.remove("show");
searchbtn.firstChild.nodeValue = "Search"
matchedtxt.classList.add("hide");
matchedtxt.firstChild.nodeValue = ""
}
}
function search(term) {
if (term) currentSearchTerm = term;
var re = new RegExp(currentSearchTerm, ignorecase ? 'i' : '');
var el = document.getElementById("frames").children;
var matches = new Object();
var maxwidth = 0;
for (var i = 0; i < el.length; i++) {
var e = el[i];
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 = parseFloat(rect.attributes.width.value);
if (w > maxwidth)
maxwidth = w;
if (func.match(re)) {
// highlight
var x = parseFloat(rect.attributes.x.value);
orig_save(rect, "fill");
rect.attributes.fill.value = "rgb(230,0,230)";
// 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 = currentSearchTerm;
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.
var fudge = 0.0001; // JavaScript floating point
for (var k in keys) {
var x = parseFloat(keys[k]);
var w = matches[keys[k]];
if (x >= lastx + lastw - fudge) {
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 + "%";
}
]]>
</script>
<rect x="0.0" y="0" width="1200.0" height="630.0" fill="url(#background)" />
<text id="title" x="600.00" y="24" >Flame Graph</text>
<text id="details" x="10.00" y="613" > </text>
<text id="unzoom" x="10.00" y="24" class="hide">Reset Zoom</text>
<text id="search" x="1090.00" y="24" >Search</text>
<text id="ignorecase" x="1174.00" y="24" >ic</text>
<text id="matched" x="1090.00" y="613" > </text>
<g id="frames">
<g >
<title>slot_getallattrs (12,750,000 samples, 0.09%)</title><rect x="1044.4" y="261" width="1.0" height="15.0" fill="rgb(249,203,48)" rx="2" ry="2" />
<text x="1047.36" y="271.5" ></text>
</g>
<g >
<title>pg_atomic_fetch_or_u32_impl (3,000,000 samples, 0.02%)</title><rect x="1185.6" y="53" width="0.2" height="15.0" fill="rgb(253,224,53)" rx="2" ry="2" />
<text x="1188.58" y="63.5" ></text>
</g>
<g >
<title>FileAccess (1,750,000 samples, 0.01%)</title><rect x="1181.3" y="149" width="0.2" height="15.0" fill="rgb(245,187,44)" rx="2" ry="2" />
<text x="1184.31" y="159.5" ></text>
</g>
<g >
<title>BufferDescriptorGetBuffer (4,750,000 samples, 0.03%)</title><rect x="1178.7" y="181" width="0.4" height="15.0" fill="rgb(210,23,5)" rx="2" ry="2" />
<text x="1181.68" y="191.5" ></text>
</g>
<g >
<title>heap_fetch_next_buffer (131,000,000 samples, 0.89%)</title><rect x="1178.2" y="229" width="10.5" height="15.0" fill="rgb(242,174,41)" rx="2" ry="2" />
<text x="1181.18" y="239.5" ></text>
</g>
<g >
<title>ConditionVariableBroadcast (4,000,000 samples, 0.03%)</title><rect x="1179.8" y="181" width="0.4" height="15.0" fill="rgb(206,5,1)" rx="2" ry="2" />
<text x="1182.85" y="191.5" ></text>
</g>
<g >
<title>PageGetItem (42,000,000 samples, 0.29%)</title><rect x="1174.8" y="229" width="3.4" height="15.0" fill="rgb(214,43,10)" rx="2" ry="2" />
<text x="1177.80" y="239.5" ></text>
</g>
<g >
<title>CheckBufferIsPinnedOnce (1,250,000 samples, 0.01%)</title><rect x="1184.1" y="101" width="0.1" height="15.0" fill="rgb(244,183,43)" rx="2" ry="2" />
<text x="1187.07" y="111.5" ></text>
</g>
<g >
<title>_IO_file_write@@GLIBC_2.2.5 (94,000,000 samples, 0.64%)</title><rect x="441.6" y="181" width="7.5" height="15.0" fill="rgb(214,43,10)" rx="2" ry="2" />
<text x="444.56" y="191.5" ></text>
</g>
<g >
<title>__libc_start_call_main (14,667,500,000 samples, 99.97%)</title><rect x="10.3" y="517" width="1179.7" height="15.0" fill="rgb(210,26,6)" rx="2" ry="2" />
<text x="13.30" y="527.5" >__libc_start_call_main</text>
</g>
<g >
<title>LWLockAttemptLock (8,750,000 samples, 0.06%)</title><rect x="1186.8" y="101" width="0.7" height="15.0" fill="rgb(235,138,33)" rx="2" ry="2" />
<text x="1189.78" y="111.5" ></text>
</g>
<g >
<title>pg_ltoa (1,769,500,000 samples, 12.06%)</title><rect x="722.7" y="213" width="142.3" height="15.0" fill="rgb(220,70,16)" rx="2" ry="2" />
<text x="725.66" y="223.5" >pg_ltoa</text>
</g>
<g >
<title>list_length (145,750,000 samples, 0.99%)</title><rect x="1032.1" y="261" width="11.8" height="15.0" fill="rgb(234,135,32)" rx="2" ry="2" />
<text x="1035.14" y="271.5" ></text>
</g>
<g >
<title>__mempcpy_avx_unaligned_erms (5,500,000 samples, 0.04%)</title><rect x="452.7" y="213" width="0.5" height="15.0" fill="rgb(222,82,19)" rx="2" ry="2" />
<text x="455.72" y="223.5" ></text>
</g>
<g >
<title>ReleaseBuffer (4,750,000 samples, 0.03%)</title><rect x="1168.5" y="213" width="0.4" height="15.0" fill="rgb(220,71,17)" rx="2" ry="2" />
<text x="1171.55" y="223.5" ></text>
</g>
<g >
<title>PinBufferForBlock (76,250,000 samples, 0.52%)</title><rect x="1182.6" y="149" width="6.1" height="15.0" fill="rgb(241,168,40)" rx="2" ry="2" />
<text x="1185.58" y="159.5" ></text>
</g>
<g >
<title>MemoryContextSwitchTo (10,250,000 samples, 0.07%)</title><rect x="474.1" y="261" width="0.8" height="15.0" fill="rgb(234,133,32)" rx="2" ry="2" />
<text x="477.10" y="271.5" ></text>
</g>
<g >
<title>BufferGetBlock (4,500,000 samples, 0.03%)</title><rect x="1173.9" y="213" width="0.4" height="15.0" fill="rgb(242,172,41)" rx="2" ry="2" />
<text x="1176.93" y="223.5" ></text>
</g>
<g >
<title>pg_atomic_sub_fetch_u32_impl (2,250,000 samples, 0.02%)</title><rect x="1187.6" y="85" width="0.1" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="1190.57" y="95.5" ></text>
</g>
<g >
<title>pg_atomic_compare_exchange_u32_impl (4,000,000 samples, 0.03%)</title><rect x="1187.2" y="69" width="0.3" height="15.0" fill="rgb(235,141,33)" rx="2" ry="2" />
<text x="1190.16" y="79.5" ></text>
</g>
<g >
<title>FunctionCall1Coll (4,675,750,000 samples, 31.87%)</title><rect x="488.9" y="245" width="376.1" height="15.0" fill="rgb(233,131,31)" rx="2" ry="2" />
<text x="491.92" y="255.5" >FunctionCall1Coll</text>
</g>
<g >
<title>LWLockAttemptLock (3,500,000 samples, 0.02%)</title><rect x="1185.1" y="69" width="0.2" height="15.0" fill="rgb(235,138,33)" rx="2" ry="2" />
<text x="1188.05" y="79.5" ></text>
</g>
<g >
<title>MemoryContextResetOnly (177,750,000 samples, 1.21%)</title><rect x="459.8" y="229" width="14.3" height="15.0" fill="rgb(210,25,6)" rx="2" ry="2" />
<text x="462.80" y="239.5" ></text>
</g>
<g >
<title>LockBufHdr (3,500,000 samples, 0.02%)</title><rect x="1185.5" y="85" width="0.3" height="15.0" fill="rgb(236,143,34)" rx="2" ry="2" />
<text x="1188.54" y="95.5" ></text>
</g>
<g >
<title>pg_atomic_fetch_or_u32_impl (3,250,000 samples, 0.02%)</title><rect x="1186.3" y="37" width="0.3" height="15.0" fill="rgb(253,224,53)" rx="2" ry="2" />
<text x="1189.30" y="47.5" ></text>
</g>
<g >
<title>pg_atomic_fetch_or_u32 (1,750,000 samples, 0.01%)</title><rect x="1180.9" y="117" width="0.1" height="15.0" fill="rgb(221,74,17)" rx="2" ry="2" />
<text x="1183.89" y="127.5" ></text>
</g>
<g >
<title>GetPrivateRefCount (1,250,000 samples, 0.01%)</title><rect x="1184.1" y="85" width="0.1" height="15.0" fill="rgb(224,88,21)" rx="2" ry="2" />
<text x="1187.07" y="95.5" ></text>
</g>
<g >
<title>table_scan_getnextslot (393,750,000 samples, 2.68%)</title><rect x="1158.3" y="277" width="31.7" height="15.0" fill="rgb(245,187,44)" rx="2" ry="2" />
<text x="1161.33" y="287.5" >ta..</text>
</g>
<g >
<title>DoCopy (14,667,500,000 samples, 99.97%)</title><rect x="10.3" y="309" width="1179.7" height="15.0" fill="rgb(252,217,51)" rx="2" ry="2" />
<text x="13.30" y="319.5" >DoCopy</text>
</g>
<g >
<title>pg_atomic_compare_exchange_u32_impl (1,750,000 samples, 0.01%)</title><rect x="1169.3" y="181" width="0.1" height="15.0" fill="rgb(235,141,33)" rx="2" ry="2" />
<text x="1172.29" y="191.5" ></text>
</g>
<g >
<title>read_stream_get_block (1,500,000 samples, 0.01%)</title><rect x="1182.4" y="181" width="0.1" height="15.0" fill="rgb(253,222,53)" rx="2" ry="2" />
<text x="1185.36" y="191.5" ></text>
</g>
<g >
<title>LWLockRelease (3,250,000 samples, 0.02%)</title><rect x="1187.5" y="117" width="0.2" height="15.0" fill="rgb(217,58,13)" rx="2" ry="2" />
<text x="1190.49" y="127.5" ></text>
</g>
<g >
<title>hash_bytes_uint32 (1,750,000 samples, 0.01%)</title><rect x="1167.6" y="149" width="0.1" height="15.0" fill="rgb(217,55,13)" rx="2" ry="2" />
<text x="1170.60" y="159.5" ></text>
</g>
<g >
<title>pg_atomic_compare_exchange_u32_impl (2,500,000 samples, 0.02%)</title><rect x="1185.1" y="37" width="0.2" height="15.0" fill="rgb(235,141,33)" rx="2" ry="2" />
<text x="1188.13" y="47.5" ></text>
</g>
<g >
<title>ResourceOwnerForgetBufferIO (2,750,000 samples, 0.02%)</title><rect x="1180.6" y="165" width="0.2" height="15.0" fill="rgb(215,46,11)" rx="2" ry="2" />
<text x="1183.57" y="175.5" ></text>
</g>
<g >
<title>IncrBufferRefCount (16,500,000 samples, 0.11%)</title><rect x="1167.2" y="213" width="1.3" height="15.0" fill="rgb(209,22,5)" rx="2" ry="2" />
<text x="1170.22" y="223.5" ></text>
</g>
<g >
<title>pg_atomic_fetch_or_u32 (2,500,000 samples, 0.02%)</title><rect x="1187.8" y="101" width="0.2" height="15.0" fill="rgb(221,74,17)" rx="2" ry="2" />
<text x="1190.85" y="111.5" ></text>
</g>
<g >
<title>StartReadBuffersImpl (76,500,000 samples, 0.52%)</title><rect x="1182.6" y="165" width="6.1" height="15.0" fill="rgb(232,125,30)" rx="2" ry="2" />
<text x="1185.56" y="175.5" ></text>
</g>
<g >
<title>slot_getsomeattrs (1,366,500,000 samples, 9.31%)</title><rect x="1048.4" y="261" width="109.9" height="15.0" fill="rgb(254,228,54)" rx="2" ry="2" />
<text x="1051.42" y="271.5" >slot_getsomea..</text>
</g>
<g >
<title>CopySendData (217,250,000 samples, 1.48%)</title><rect x="268.1" y="245" width="17.5" height="15.0" fill="rgb(221,75,18)" rx="2" ry="2" />
<text x="271.10" y="255.5" ></text>
</g>
<g >
<title>LWLockAcquire (2,250,000 samples, 0.02%)</title><rect x="1188.8" y="213" width="0.2" height="15.0" fill="rgb(209,20,4)" rx="2" ry="2" />
<text x="1191.81" y="223.5" ></text>
</g>
<g >
<title>PortalRun (14,667,500,000 samples, 99.97%)</title><rect x="10.3" y="373" width="1179.7" height="15.0" fill="rgb(223,85,20)" rx="2" ry="2" />
<text x="13.30" y="383.5" >PortalRun</text>
</g>
<g >
<title>hash_search_with_hash_value (4,000,000 samples, 0.03%)</title><rect x="1182.8" y="101" width="0.3" height="15.0" fill="rgb(249,205,49)" rx="2" ry="2" />
<text x="1185.82" y="111.5" ></text>
</g>
<g >
<title>mdreadv (12,000,000 samples, 0.08%)</title><rect x="1181.2" y="181" width="1.0" height="15.0" fill="rgb(239,159,38)" rx="2" ry="2" />
<text x="1184.23" y="191.5" ></text>
</g>
<g >
<title>heap_scan_stream_read_next_serial (1,500,000 samples, 0.01%)</title><rect x="1182.4" y="165" width="0.1" height="15.0" fill="rgb(205,4,0)" rx="2" ry="2" />
<text x="1185.36" y="175.5" ></text>
</g>
<g >
<title>hash_search_with_hash_value (9,500,000 samples, 0.06%)</title><rect x="1183.2" y="101" width="0.7" height="15.0" fill="rgb(249,205,49)" rx="2" ry="2" />
<text x="1186.16" y="111.5" ></text>
</g>
<g >
<title>_IO_file_overflow@@GLIBC_2.2.5 (3,250,000 samples, 0.02%)</title><rect x="449.1" y="213" width="0.3" height="15.0" fill="rgb(239,157,37)" rx="2" ry="2" />
<text x="452.12" y="223.5" ></text>
</g>
<g >
<title>ResourceOwnerEnlarge (2,000,000 samples, 0.01%)</title><rect x="1181.0" y="133" width="0.2" height="15.0" fill="rgb(223,86,20)" rx="2" ry="2" />
<text x="1184.03" y="143.5" ></text>
</g>
<g >
<title>GetPrivateRefCountEntry (15,500,000 samples, 0.11%)</title><rect x="1167.3" y="197" width="1.2" height="15.0" fill="rgb(250,209,50)" rx="2" ry="2" />
<text x="1170.26" y="207.5" ></text>
</g>
<g >
<title>read_stream_start_pending_read (77,500,000 samples, 0.53%)</title><rect x="1182.5" y="197" width="6.2" height="15.0" fill="rgb(232,126,30)" rx="2" ry="2" />
<text x="1185.48" y="207.5" ></text>
</g>
<g >
<title>pgstat_progress_update_param (52,750,000 samples, 0.36%)</title><rect x="453.2" y="245" width="4.2" height="15.0" fill="rgb(227,103,24)" rx="2" ry="2" />
<text x="456.17" y="255.5" ></text>
</g>
<g >
<title>hash_initial_lookup (2,750,000 samples, 0.02%)</title><rect x="1168.3" y="165" width="0.2" height="15.0" fill="rgb(251,214,51)" rx="2" ry="2" />
<text x="1171.28" y="175.5" ></text>
</g>
<g >
<title>LockBufHdr (2,250,000 samples, 0.02%)</title><rect x="1180.4" y="165" width="0.2" height="15.0" fill="rgb(236,143,34)" rx="2" ry="2" />
<text x="1183.39" y="175.5" ></text>
</g>
<g >
<title>CopyOneRowTo (12,855,000,000 samples, 87.62%)</title><rect x="11.5" y="277" width="1033.9" height="15.0" fill="rgb(210,23,5)" rx="2" ry="2" />
<text x="14.47" y="287.5" >CopyOneRowTo</text>
</g>
<g >
<title>page_collect_tuples (10,250,000 samples, 0.07%)</title><rect x="1189.2" y="213" width="0.8" height="15.0" fill="rgb(253,222,53)" rx="2" ry="2" />
<text x="1192.18" y="223.5" ></text>
</g>
<g >
<title>fetch_att (530,750,000 samples, 3.62%)</title><rect x="1115.6" y="197" width="42.7" height="15.0" fill="rgb(252,218,52)" rx="2" ry="2" />
<text x="1118.64" y="207.5" >fetc..</text>
</g>
<g >
<title>pg_atomic_fetch_or_u32 (1,500,000 samples, 0.01%)</title><rect x="1180.4" y="149" width="0.2" height="15.0" fill="rgb(221,74,17)" rx="2" ry="2" />
<text x="1183.45" y="159.5" ></text>
</g>
<g >
<title>CopyAttributeOutText (1,615,250,000 samples, 11.01%)</title><rect x="155.7" y="261" width="129.9" height="15.0" fill="rgb(249,204,48)" rx="2" ry="2" />
<text x="158.66" y="271.5" >CopyAttributeOut..</text>
</g>
<g >
<title>ReleaseBuffer (5,250,000 samples, 0.04%)</title><rect x="1178.7" y="213" width="0.4" height="15.0" fill="rgb(220,71,17)" rx="2" ry="2" />
<text x="1181.66" y="223.5" ></text>
</g>
<g >
<title>MemoryContextReset (207,500,000 samples, 1.41%)</title><rect x="457.4" y="261" width="16.7" height="15.0" fill="rgb(210,26,6)" rx="2" ry="2" />
<text x="460.41" y="271.5" ></text>
</g>
<g >
<title>UnpinBuffer (5,250,000 samples, 0.04%)</title><rect x="1178.7" y="197" width="0.4" height="15.0" fill="rgb(252,219,52)" rx="2" ry="2" />
<text x="1181.66" y="207.5" ></text>
</g>
<g >
<title>BufferGetBlockNumber (1,500,000 samples, 0.01%)</title><rect x="1178.5" y="213" width="0.2" height="15.0" fill="rgb(206,7,1)" rx="2" ry="2" />
<text x="1181.54" y="223.5" ></text>
</g>
<g >
<title>__libc_pread (4,750,000 samples, 0.03%)</title><rect x="1181.5" y="133" width="0.3" height="15.0" fill="rgb(238,156,37)" rx="2" ry="2" />
<text x="1184.45" y="143.5" ></text>
</g>
<g >
<title>hash_search_with_hash_value (9,500,000 samples, 0.06%)</title><rect x="1167.7" y="181" width="0.8" height="15.0" fill="rgb(249,205,49)" rx="2" ry="2" />
<text x="1170.74" y="191.5" ></text>
</g>
<g >
<title>GetVictimBuffer (33,250,000 samples, 0.23%)</title><rect x="1183.9" y="117" width="2.7" height="15.0" fill="rgb(209,18,4)" rx="2" ry="2" />
<text x="1186.93" y="127.5" ></text>
</g>
<g >
<title>__GI___libc_write (92,250,000 samples, 0.63%)</title><rect x="441.7" y="165" width="7.4" height="15.0" fill="rgb(217,57,13)" rx="2" ry="2" />
<text x="444.70" y="175.5" ></text>
</g>
<g >
<title>WaitReadBuffers (30,750,000 samples, 0.21%)</title><rect x="1179.8" y="197" width="2.4" height="15.0" fill="rgb(210,26,6)" rx="2" ry="2" />
<text x="1182.77" y="207.5" ></text>
</g>
<g >
<title>pg_ultoa_n (1,147,750,000 samples, 7.82%)</title><rect x="772.7" y="181" width="92.3" height="15.0" fill="rgb(240,162,38)" rx="2" ry="2" />
<text x="775.67" y="191.5" >pg_ultoa_n</text>
</g>
<g >
<title>StrategyGetBuffer (5,500,000 samples, 0.04%)</title><rect x="1186.1" y="101" width="0.5" height="15.0" fill="rgb(216,54,13)" rx="2" ry="2" />
<text x="1189.12" y="111.5" ></text>
</g>
<g >
<title>LockBufHdr (2,000,000 samples, 0.01%)</title><rect x="1180.9" y="133" width="0.1" height="15.0" fill="rgb(236,143,34)" rx="2" ry="2" />
<text x="1183.87" y="143.5" ></text>
</g>
<g >
<title>GetPrivateRefCountEntry (2,500,000 samples, 0.02%)</title><rect x="1169.1" y="197" width="0.2" height="15.0" fill="rgb(250,209,50)" rx="2" ry="2" />
<text x="1172.09" y="207.5" ></text>
</g>
<g >
<title>resetStringInfo (6,250,000 samples, 0.04%)</title><rect x="1043.9" y="261" width="0.5" height="15.0" fill="rgb(245,187,44)" rx="2" ry="2" />
<text x="1046.86" y="271.5" ></text>
</g>
<g >
<title>main (14,667,500,000 samples, 99.97%)</title><rect x="10.3" y="501" width="1179.7" height="15.0" fill="rgb(243,179,42)" rx="2" ry="2" />
<text x="13.30" y="511.5" >main</text>
</g>
<g >
<title>UnpinBufferNoOwner (6,000,000 samples, 0.04%)</title><rect x="1168.9" y="213" width="0.5" height="15.0" fill="rgb(253,221,53)" rx="2" ry="2" />
<text x="1171.95" y="223.5" ></text>
</g>
<g >
<title>slot_getsomeattrs_int (1,361,750,000 samples, 9.28%)</title><rect x="1048.8" y="245" width="109.5" height="15.0" fill="rgb(252,219,52)" rx="2" ry="2" />
<text x="1051.81" y="255.5" >slot_getsomea..</text>
</g>
<g >
<title>__memcmp_avx2_movbe (2,250,000 samples, 0.02%)</title><rect x="1184.8" y="53" width="0.2" height="15.0" fill="rgb(224,91,21)" rx="2" ry="2" />
<text x="1187.79" y="63.5" ></text>
</g>
<g >
<title>hash_search (2,750,000 samples, 0.02%)</title><rect x="1167.5" y="181" width="0.2" height="15.0" fill="rgb(216,55,13)" rx="2" ry="2" />
<text x="1170.52" y="191.5" ></text>
</g>
<g >
<title>slot_getallattrs (1,371,000,000 samples, 9.34%)</title><rect x="1048.1" y="277" width="110.2" height="15.0" fill="rgb(249,203,48)" rx="2" ry="2" />
<text x="1051.06" y="287.5" >slot_getallat..</text>
</g>
<g >
<title>BlockIdSet (2,750,000 samples, 0.02%)</title><rect x="1174.3" y="213" width="0.2" height="15.0" fill="rgb(236,143,34)" rx="2" ry="2" />
<text x="1177.30" y="223.5" ></text>
</g>
<g >
<title>pg_atomic_fetch_or_u32_impl (2,500,000 samples, 0.02%)</title><rect x="1187.8" y="85" width="0.2" height="15.0" fill="rgb(253,224,53)" rx="2" ry="2" />
<text x="1190.85" y="95.5" ></text>
</g>
<g >
<title>pg_preadv (8,750,000 samples, 0.06%)</title><rect x="1181.5" y="149" width="0.7" height="15.0" fill="rgb(213,40,9)" rx="2" ry="2" />
<text x="1184.45" y="159.5" ></text>
</g>
<g >
<title>ResourceOwnerForgetBuffer (4,750,000 samples, 0.03%)</title><rect x="1168.5" y="181" width="0.4" height="15.0" fill="rgb(247,193,46)" rx="2" ry="2" />
<text x="1171.55" y="191.5" ></text>
</g>
<g >
<title>_IO_do_write@@GLIBC_2.2.5 (97,250,000 samples, 0.66%)</title><rect x="441.3" y="213" width="7.8" height="15.0" fill="rgb(238,155,37)" rx="2" ry="2" />
<text x="444.30" y="223.5" ></text>
</g>
<g >
<title>pg_atomic_sub_fetch_u32 (2,250,000 samples, 0.02%)</title><rect x="1187.6" y="101" width="0.1" height="15.0" fill="rgb(242,174,41)" rx="2" ry="2" />
<text x="1190.57" y="111.5" ></text>
</g>
<g >
<title>__memmove_avx_unaligned_erms (426,500,000 samples, 2.91%)</title><rect x="935.3" y="245" width="34.3" height="15.0" fill="rgb(205,0,0)" rx="2" ry="2" />
<text x="938.34" y="255.5" >__..</text>
</g>
<g >
<title>pg_atomic_fetch_sub_u32_impl (2,250,000 samples, 0.02%)</title><rect x="1187.6" y="69" width="0.1" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="1190.57" y="79.5" ></text>
</g>
<g >
<title>ExecStoreBufferHeapTuple (87,000,000 samples, 0.59%)</title><rect x="1162.4" y="245" width="7.0" height="15.0" fill="rgb(230,117,28)" rx="2" ry="2" />
<text x="1165.43" y="255.5" ></text>
</g>
<g >
<title>LWLockAcquire (10,750,000 samples, 0.07%)</title><rect x="1186.6" y="117" width="0.9" height="15.0" fill="rgb(209,20,4)" rx="2" ry="2" />
<text x="1189.62" y="127.5" ></text>
</g>
<g >
<title>tts_buffer_heap_getsomeattrs (1,334,750,000 samples, 9.10%)</title><rect x="1051.0" y="229" width="107.3" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="1053.98" y="239.5" >tts_buffer_he..</text>
</g>
<g >
<title>pg_ultoa_n (1,285,000,000 samples, 8.76%)</title><rect x="761.6" y="197" width="103.4" height="15.0" fill="rgb(240,162,38)" rx="2" ry="2" />
<text x="764.63" y="207.5" >pg_ultoa_n</text>
</g>
<g >
<title>OutputFunctionCall (4,849,750,000 samples, 33.06%)</title><rect x="474.9" y="261" width="390.1" height="15.0" fill="rgb(251,212,50)" rx="2" ry="2" />
<text x="477.92" y="271.5" >OutputFunctionCall</text>
</g>
<g >
<title>postgres (14,671,250,000 samples, 100.00%)</title><rect x="10.0" y="565" width="1180.0" height="15.0" fill="rgb(233,131,31)" rx="2" ry="2" />
<text x="13.00" y="575.5" >postgres</text>
</g>
<g >
<title>pg_atomic_sub_fetch_u32_impl (1,750,000 samples, 0.01%)</title><rect x="1185.4" y="53" width="0.1" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="1188.40" y="63.5" ></text>
</g>
<g >
<title>__libc_start_main@@GLIBC_2.34 (14,667,500,000 samples, 99.97%)</title><rect x="10.3" y="533" width="1179.7" height="15.0" fill="rgb(229,113,27)" rx="2" ry="2" />
<text x="13.30" y="543.5" >__libc_start_main@@GLIBC_2.34</text>
</g>
<g >
<title>_IO_default_xsputn (2,500,000 samples, 0.02%)</title><rect x="441.1" y="213" width="0.2" height="15.0" fill="rgb(246,190,45)" rx="2" ry="2" />
<text x="444.10" y="223.5" ></text>
</g>
<g >
<title>_IO_fwrite (295,250,000 samples, 2.01%)</title><rect x="429.4" y="245" width="23.8" height="15.0" fill="rgb(210,23,5)" rx="2" ry="2" />
<text x="432.42" y="255.5" >_..</text>
</g>
<g >
<title>pg_atomic_compare_exchange_u32 (1,750,000 samples, 0.01%)</title><rect x="1169.3" y="197" width="0.1" height="15.0" fill="rgb(253,220,52)" rx="2" ry="2" />
<text x="1172.29" y="207.5" ></text>
</g>
<g >
<title>hash_bytes (2,000,000 samples, 0.01%)</title><rect x="1185.8" y="85" width="0.2" height="15.0" fill="rgb(227,102,24)" rx="2" ry="2" />
<text x="1188.84" y="95.5" ></text>
</g>
<g >
<title>__memmove_avx_unaligned_erms (35,000,000 samples, 0.24%)</title><rect x="449.4" y="213" width="2.8" height="15.0" fill="rgb(205,0,0)" rx="2" ry="2" />
<text x="452.39" y="223.5" ></text>
</g>
<g >
<title>MemoryContextCallResetCallbacks (2,000,000 samples, 0.01%)</title><rect x="473.9" y="213" width="0.2" height="15.0" fill="rgb(218,59,14)" rx="2" ry="2" />
<text x="476.94" y="223.5" ></text>
</g>
<g >
<title>PortalRunUtility (14,667,500,000 samples, 99.97%)</title><rect x="10.3" y="341" width="1179.7" height="15.0" fill="rgb(239,160,38)" rx="2" ry="2" />
<text x="13.30" y="351.5" >PortalRunUtility</text>
</g>
<g >
<title>LockBufHdr (3,750,000 samples, 0.03%)</title><rect x="1187.7" y="117" width="0.3" height="15.0" fill="rgb(236,143,34)" rx="2" ry="2" />
<text x="1190.75" y="127.5" ></text>
</g>
<g >
<title>MemoryChunkSetHdrMask (298,250,000 samples, 2.03%)</title><rect x="658.9" y="181" width="24.0" height="15.0" fill="rgb(218,62,14)" rx="2" ry="2" />
<text x="661.92" y="191.5" >M..</text>
</g>
<g >
<title>heapgettup_pagemode (255,750,000 samples, 1.74%)</title><rect x="1169.4" y="245" width="20.6" height="15.0" fill="rgb(242,170,40)" rx="2" ry="2" />
<text x="1172.43" y="255.5" ></text>
</g>
<g >
<title>DatumGetInt32 (36,500,000 samples, 0.25%)</title><rect x="694.4" y="213" width="2.9" height="15.0" fill="rgb(243,179,42)" rx="2" ry="2" />
<text x="697.39" y="223.5" ></text>
</g>
<g >
<title>LWLockAttemptLock (1,750,000 samples, 0.01%)</title><rect x="1188.9" y="197" width="0.1" height="15.0" fill="rgb(235,138,33)" rx="2" ry="2" />
<text x="1191.85" y="207.5" ></text>
</g>
<g >
<title>pg_atomic_compare_exchange_u32 (2,500,000 samples, 0.02%)</title><rect x="1185.1" y="53" width="0.2" height="15.0" fill="rgb(253,220,52)" rx="2" ry="2" />
<text x="1188.13" y="63.5" ></text>
</g>
<g >
<title>all (14,671,250,000 samples, 100%)</title><rect x="10.0" y="581" width="1180.0" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="13.00" y="591.5" ></text>
</g>
<g >
<title>LWLockAcquire (4,250,000 samples, 0.03%)</title><rect x="1185.0" y="85" width="0.3" height="15.0" fill="rgb(209,20,4)" rx="2" ry="2" />
<text x="1187.99" y="95.5" ></text>
</g>
<g >
<title>Int32GetDatum (101,500,000 samples, 0.69%)</title><rect x="1150.2" y="181" width="8.1" height="15.0" fill="rgb(243,179,42)" rx="2" ry="2" />
<text x="1153.17" y="191.5" ></text>
</g>
<g >
<title>pg_atomic_sub_fetch_u32 (1,750,000 samples, 0.01%)</title><rect x="1174.6" y="213" width="0.2" height="15.0" fill="rgb(242,174,41)" rx="2" ry="2" />
<text x="1177.64" y="223.5" ></text>
</g>
<g >
<title>decimalLength32 (254,750,000 samples, 1.74%)</title><rect x="844.5" y="165" width="20.5" height="15.0" fill="rgb(225,96,22)" rx="2" ry="2" />
<text x="847.50" y="175.5" ></text>
</g>
<g >
<title>slot_getsomeattrs (11,750,000 samples, 0.08%)</title><rect x="1044.4" y="245" width="1.0" height="15.0" fill="rgb(254,228,54)" rx="2" ry="2" />
<text x="1047.44" y="255.5" ></text>
</g>
<g >
<title>new_do_write (96,000,000 samples, 0.65%)</title><rect x="441.4" y="197" width="7.7" height="15.0" fill="rgb(206,5,1)" rx="2" ry="2" />
<text x="444.40" y="207.5" ></text>
</g>
<g >
<title>_IO_ferror (14,750,000 samples, 0.10%)</title><rect x="428.2" y="245" width="1.2" height="15.0" fill="rgb(216,53,12)" rx="2" ry="2" />
<text x="431.23" y="255.5" ></text>
</g>
<g >
<title>pg_atomic_fetch_sub_u32_impl (1,750,000 samples, 0.01%)</title><rect x="1174.6" y="181" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="1177.64" y="191.5" ></text>
</g>
<g >
<title>tts_buffer_heap_store_tuple (69,250,000 samples, 0.47%)</title><rect x="1163.9" y="229" width="5.5" height="15.0" fill="rgb(220,70,16)" rx="2" ry="2" />
<text x="1166.86" y="239.5" ></text>
</g>
<g >
<title>_start (14,667,500,000 samples, 99.97%)</title><rect x="10.3" y="549" width="1179.7" height="15.0" fill="rgb(245,185,44)" rx="2" ry="2" />
<text x="13.30" y="559.5" >_start</text>
</g>
<g >
<title>StartReadBuffers (76,500,000 samples, 0.52%)</title><rect x="1182.6" y="181" width="6.1" height="15.0" fill="rgb(229,111,26)" rx="2" ry="2" />
<text x="1185.56" y="191.5" ></text>
</g>
<g >
<title>postmaster_child_launch (14,667,500,000 samples, 99.97%)</title><rect x="10.3" y="437" width="1179.7" height="15.0" fill="rgb(206,5,1)" rx="2" ry="2" />
<text x="13.30" y="447.5" >postmaster_child_launch</text>
</g>
<g >
<title>pg_atomic_fetch_sub_u32_impl (1,750,000 samples, 0.01%)</title><rect x="1185.4" y="37" width="0.1" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="1188.40" y="47.5" ></text>
</g>
<g >
<title>PostmasterMain (14,667,500,000 samples, 99.97%)</title><rect x="10.3" y="485" width="1179.7" height="15.0" fill="rgb(212,35,8)" rx="2" ry="2" />
<text x="13.30" y="495.5" >PostmasterMain</text>
</g>
<g >
<title>GetPrivateRefCountEntry (1,250,000 samples, 0.01%)</title><rect x="1184.1" y="69" width="0.1" height="15.0" fill="rgb(250,209,50)" rx="2" ry="2" />
<text x="1187.07" y="79.5" ></text>
</g>
<g >
<title>hash_search_with_hash_value (2,000,000 samples, 0.01%)</title><rect x="1188.2" y="85" width="0.2" height="15.0" fill="rgb(249,205,49)" rx="2" ry="2" />
<text x="1191.23" y="95.5" ></text>
</g>
<g >
<title>ResourceOwnerForget (2,500,000 samples, 0.02%)</title><rect x="1180.6" y="149" width="0.2" height="15.0" fill="rgb(235,142,33)" rx="2" ry="2" />
<text x="1183.59" y="159.5" ></text>
</g>
<g >
<title>GetBufferFromRing (4,250,000 samples, 0.03%)</title><rect x="1186.2" y="85" width="0.4" height="15.0" fill="rgb(220,71,17)" rx="2" ry="2" />
<text x="1189.22" y="95.5" ></text>
</g>
<g >
<title>palloc (315,000,000 samples, 2.15%)</title><rect x="697.3" y="213" width="25.4" height="15.0" fill="rgb(211,29,7)" rx="2" ry="2" />
<text x="700.33" y="223.5" >p..</text>
</g>
<g >
<title>BufTableLookup (9,750,000 samples, 0.07%)</title><rect x="1183.1" y="117" width="0.8" height="15.0" fill="rgb(224,89,21)" rx="2" ry="2" />
<text x="1186.14" y="127.5" ></text>
</g>
<g >
<title>DoCopyTo (14,667,500,000 samples, 99.97%)</title><rect x="10.3" y="293" width="1179.7" height="15.0" fill="rgb(242,172,41)" rx="2" ry="2" />
<text x="13.30" y="303.5" >DoCopyTo</text>
</g>
<g >
<title>WaitReadBuffersCanStartIO (5,500,000 samples, 0.04%)</title><rect x="1180.8" y="181" width="0.4" height="15.0" fill="rgb(210,27,6)" rx="2" ry="2" />
<text x="1183.79" y="191.5" ></text>
</g>
<g >
<title>PortalRunMulti (14,667,500,000 samples, 99.97%)</title><rect x="10.3" y="357" width="1179.7" height="15.0" fill="rgb(245,184,44)" rx="2" ry="2" />
<text x="13.30" y="367.5" >PortalRunMulti</text>
</g>
<g >
<title>read_stream_look_ahead (3,000,000 samples, 0.02%)</title><rect x="1182.2" y="197" width="0.3" height="15.0" fill="rgb(252,219,52)" rx="2" ry="2" />
<text x="1185.24" y="207.5" ></text>
</g>
<g >
<title>BufTableDelete (10,000,000 samples, 0.07%)</title><rect x="1184.2" y="85" width="0.8" height="15.0" fill="rgb(226,98,23)" rx="2" ry="2" />
<text x="1187.19" y="95.5" ></text>
</g>
<g >
<title>MemoryContextResetOnly (177,750,000 samples, 1.21%)</title><rect x="459.8" y="245" width="14.3" height="15.0" fill="rgb(210,25,6)" rx="2" ry="2" />
<text x="462.80" y="255.5" ></text>
</g>
<g >
<title>PinBuffer_Locked (1,250,000 samples, 0.01%)</title><rect x="1186.0" y="101" width="0.1" height="15.0" fill="rgb(218,60,14)" rx="2" ry="2" />
<text x="1189.00" y="111.5" ></text>
</g>
<g >
<title>AllocSetFreeIndex (142,750,000 samples, 0.97%)</title><rect x="682.9" y="197" width="11.5" height="15.0" fill="rgb(254,227,54)" rx="2" ry="2" />
<text x="685.91" y="207.5" ></text>
</g>
<g >
<title>CopySendChar (92,750,000 samples, 0.63%)</title><rect x="420.8" y="245" width="7.4" height="15.0" fill="rgb(245,187,44)" rx="2" ry="2" />
<text x="423.77" y="255.5" ></text>
</g>
<g >
<title>ReservePrivateRefCountEntry (4,250,000 samples, 0.03%)</title><rect x="1188.0" y="117" width="0.4" height="15.0" fill="rgb(232,125,30)" rx="2" ry="2" />
<text x="1191.05" y="127.5" ></text>
</g>
<g >
<title>UnpinBuffer (4,750,000 samples, 0.03%)</title><rect x="1168.5" y="197" width="0.4" height="15.0" fill="rgb(252,219,52)" rx="2" ry="2" />
<text x="1171.55" y="207.5" ></text>
</g>
<g >
<title>pg_atomic_fetch_or_u32 (3,250,000 samples, 0.02%)</title><rect x="1186.3" y="53" width="0.3" height="15.0" fill="rgb(221,74,17)" rx="2" ry="2" />
<text x="1189.30" y="63.5" ></text>
</g>
<g >
<title>CopySendChar (1,526,000,000 samples, 10.40%)</title><rect x="285.6" y="261" width="122.7" height="15.0" fill="rgb(245,187,44)" rx="2" ry="2" />
<text x="288.57" y="271.5" >CopySendChar</text>
</g>
<g >
<title>exec_simple_query (14,667,500,000 samples, 99.97%)</title><rect x="10.3" y="389" width="1179.7" height="15.0" fill="rgb(211,29,6)" rx="2" ry="2" />
<text x="13.30" y="399.5" >exec_simple_query</text>
</g>
<g >
<title>pg_atomic_sub_fetch_u32 (1,750,000 samples, 0.01%)</title><rect x="1185.4" y="69" width="0.1" height="15.0" fill="rgb(242,174,41)" rx="2" ry="2" />
<text x="1188.40" y="79.5" ></text>
</g>
<g >
<title>preadv64 (4,000,000 samples, 0.03%)</title><rect x="1181.8" y="133" width="0.4" height="15.0" fill="rgb(231,122,29)" rx="2" ry="2" />
<text x="1184.84" y="143.5" ></text>
</g>
<g >
<title>standard_ProcessUtility (14,667,500,000 samples, 99.97%)</title><rect x="10.3" y="325" width="1179.7" height="15.0" fill="rgb(233,132,31)" rx="2" ry="2" />
<text x="13.30" y="335.5" >standard_ProcessUtility</text>
</g>
<g >
<title>LockBufHdr (4,250,000 samples, 0.03%)</title><rect x="1186.2" y="69" width="0.4" height="15.0" fill="rgb(236,143,34)" rx="2" ry="2" />
<text x="1189.22" y="79.5" ></text>
</g>
<g >
<title>ServerLoop (14,667,500,000 samples, 99.97%)</title><rect x="10.3" y="469" width="1179.7" height="15.0" fill="rgb(238,155,37)" rx="2" ry="2" />
<text x="13.30" y="479.5" >ServerLoop</text>
</g>
<g >
<title>pg_atomic_compare_exchange_u32 (4,000,000 samples, 0.03%)</title><rect x="1187.2" y="85" width="0.3" height="15.0" fill="rgb(253,220,52)" rx="2" ry="2" />
<text x="1190.16" y="95.5" ></text>
</g>
<g >
<title>heap_getnextslot (380,000,000 samples, 2.59%)</title><rect x="1159.4" y="261" width="30.6" height="15.0" fill="rgb(213,40,9)" rx="2" ry="2" />
<text x="1162.44" y="271.5" >he..</text>
</g>
<g >
<title>_IO_file_xsputn@@GLIBC_2.2.5 (3,500,000 samples, 0.02%)</title><rect x="10.0" y="533" width="0.3" height="15.0" fill="rgb(242,171,41)" rx="2" ry="2" />
<text x="13.02" y="543.5" ></text>
</g>
<g >
<title>AllocSetReset (167,250,000 samples, 1.14%)</title><rect x="460.5" y="213" width="13.4" height="15.0" fill="rgb(226,100,24)" rx="2" ry="2" />
<text x="463.49" y="223.5" ></text>
</g>
<g >
<title>UnpinBufferNoOwner (3,000,000 samples, 0.02%)</title><rect x="1179.1" y="213" width="0.2" height="15.0" fill="rgb(253,221,53)" rx="2" ry="2" />
<text x="1182.08" y="223.5" ></text>
</g>
<g >
<title>TerminateBufferIO (6,750,000 samples, 0.05%)</title><rect x="1180.2" y="181" width="0.6" height="15.0" fill="rgb(239,160,38)" rx="2" ry="2" />
<text x="1183.25" y="191.5" ></text>
</g>
<g >
<title>LWLockRelease (2,500,000 samples, 0.02%)</title><rect x="1185.3" y="85" width="0.2" height="15.0" fill="rgb(217,58,13)" rx="2" ry="2" />
<text x="1188.34" y="95.5" ></text>
</g>
<g >
<title>PostgresMain (14,667,500,000 samples, 99.97%)</title><rect x="10.3" y="405" width="1179.7" height="15.0" fill="rgb(227,103,24)" rx="2" ry="2" />
<text x="13.30" y="415.5" >PostgresMain</text>
</g>
<g >
<title>BackendStartup (14,667,500,000 samples, 99.97%)</title><rect x="10.3" y="453" width="1179.7" height="15.0" fill="rgb(243,177,42)" rx="2" ry="2" />
<text x="13.30" y="463.5" >BackendStartup</text>
</g>
<g >
<title>read_stream_next_buffer (116,750,000 samples, 0.80%)</title><rect x="1179.3" y="213" width="9.4" height="15.0" fill="rgb(216,50,12)" rx="2" ry="2" />
<text x="1182.32" y="223.5" ></text>
</g>
<g >
<title>pg_atomic_compare_exchange_u32_impl (1,250,000 samples, 0.01%)</title><rect x="1188.9" y="165" width="0.1" height="15.0" fill="rgb(235,141,33)" rx="2" ry="2" />
<text x="1191.89" y="175.5" ></text>
</g>
<g >
<title>GetPrivateRefCountEntry (2,250,000 samples, 0.02%)</title><rect x="1179.1" y="197" width="0.2" height="15.0" fill="rgb(250,209,50)" rx="2" ry="2" />
<text x="1182.14" y="207.5" ></text>
</g>
<g >
<title>heap_prepare_pagescan (16,000,000 samples, 0.11%)</title><rect x="1188.7" y="229" width="1.3" height="15.0" fill="rgb(222,82,19)" rx="2" ry="2" />
<text x="1191.71" y="239.5" ></text>
</g>
<g >
<title>FileReadV (11,250,000 samples, 0.08%)</title><rect x="1181.3" y="165" width="0.9" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="1184.27" y="175.5" ></text>
</g>
<g >
<title>LWLockRelease (3,250,000 samples, 0.02%)</title><rect x="1174.5" y="229" width="0.3" height="15.0" fill="rgb(217,58,13)" rx="2" ry="2" />
<text x="1177.52" y="239.5" ></text>
</g>
<g >
<title>_IO_file_xsputn@@GLIBC_2.2.5 (204,750,000 samples, 1.40%)</title><rect x="436.7" y="229" width="16.5" height="15.0" fill="rgb(242,171,41)" rx="2" ry="2" />
<text x="439.70" y="239.5" ></text>
</g>
<g >
<title>uint32_hash (1,750,000 samples, 0.01%)</title><rect x="1167.6" y="165" width="0.1" height="15.0" fill="rgb(240,162,38)" rx="2" ry="2" />
<text x="1170.60" y="175.5" ></text>
</g>
<g >
<title>pg_atomic_fetch_or_u32 (3,000,000 samples, 0.02%)</title><rect x="1185.6" y="69" width="0.2" height="15.0" fill="rgb(221,74,17)" rx="2" ry="2" />
<text x="1188.58" y="79.5" ></text>
</g>
<g >
<title>AllocSetAllocChunkFromBlock (425,000,000 samples, 2.90%)</title><rect x="648.7" y="197" width="34.2" height="15.0" fill="rgb(238,152,36)" rx="2" ry="2" />
<text x="651.73" y="207.5" >Al..</text>
</g>
<g >
<title>StartBufferIO (5,500,000 samples, 0.04%)</title><rect x="1180.8" y="149" width="0.4" height="15.0" fill="rgb(244,183,43)" rx="2" ry="2" />
<text x="1183.79" y="159.5" ></text>
</g>
<g >
<title>pg_atomic_fetch_or_u32_impl (1,750,000 samples, 0.01%)</title><rect x="1180.9" y="101" width="0.1" height="15.0" fill="rgb(253,224,53)" rx="2" ry="2" />
<text x="1183.89" y="111.5" ></text>
</g>
<g >
<title>hash_search (1,250,000 samples, 0.01%)</title><rect x="1188.1" y="85" width="0.1" height="15.0" fill="rgb(216,55,13)" rx="2" ry="2" />
<text x="1191.13" y="95.5" ></text>
</g>
<g >
<title>BackendMain (14,667,500,000 samples, 99.97%)</title><rect x="10.3" y="421" width="1179.7" height="15.0" fill="rgb(207,13,3)" rx="2" ry="2" />
<text x="13.30" y="431.5" >BackendMain</text>
</g>
<g >
<title>ItemPointerSet (2,750,000 samples, 0.02%)</title><rect x="1174.3" y="229" width="0.2" height="15.0" fill="rgb(237,147,35)" rx="2" ry="2" />
<text x="1177.30" y="239.5" ></text>
</g>
<g >
<title>WaitReadBuffersCanStartIO (5,500,000 samples, 0.04%)</title><rect x="1180.8" y="165" width="0.4" height="15.0" fill="rgb(210,27,6)" rx="2" ry="2" />
<text x="1183.79" y="175.5" ></text>
</g>
<g >
<title>appendBinaryStringInfo (2,078,250,000 samples, 14.17%)</title><rect x="865.0" y="261" width="167.1" height="15.0" fill="rgb(236,145,34)" rx="2" ry="2" />
<text x="867.98" y="271.5" >appendBinaryStringInfo</text>
</g>
<g >
<title>InvalidateVictimBuffer (22,750,000 samples, 0.16%)</title><rect x="1184.2" y="101" width="1.8" height="15.0" fill="rgb(248,198,47)" rx="2" ry="2" />
<text x="1187.17" y="111.5" ></text>
</g>
<g >
<title>int4out (4,112,750,000 samples, 28.03%)</title><rect x="534.2" y="229" width="330.8" height="15.0" fill="rgb(217,56,13)" rx="2" ry="2" />
<text x="537.20" y="239.5" >int4out</text>
</g>
<g >
<title>__memcmp_avx2_movbe (1,750,000 samples, 0.01%)</title><rect x="1168.1" y="165" width="0.2" height="15.0" fill="rgb(224,91,21)" rx="2" ry="2" />
<text x="1171.14" y="175.5" ></text>
</g>
<g >
<title>CopySendEndOfRow (610,500,000 samples, 4.16%)</title><rect x="408.3" y="261" width="49.1" height="15.0" fill="rgb(226,97,23)" rx="2" ry="2" />
<text x="411.31" y="271.5" >Copy..</text>
</g>
<g >
<title>_IO_fwrite (3,500,000 samples, 0.02%)</title><rect x="10.0" y="549" width="0.3" height="15.0" fill="rgb(210,23,5)" rx="2" ry="2" />
<text x="13.02" y="559.5" ></text>
</g>
<g >
<title>ResourceOwnerForget (4,500,000 samples, 0.03%)</title><rect x="1168.6" y="165" width="0.3" height="15.0" fill="rgb(235,142,33)" rx="2" ry="2" />
<text x="1171.57" y="175.5" ></text>
</g>
<g >
<title>BufferAlloc (75,000,000 samples, 0.51%)</title><rect x="1182.6" y="133" width="6.1" height="15.0" fill="rgb(252,220,52)" rx="2" ry="2" />
<text x="1185.62" y="143.5" ></text>
</g>
<g >
<title>get_hash_entry (3,000,000 samples, 0.02%)</title><rect x="1182.9" y="85" width="0.2" height="15.0" fill="rgb(225,93,22)" rx="2" ry="2" />
<text x="1185.88" y="95.5" ></text>
</g>
<g >
<title>pgstat_progress_update_param (33,250,000 samples, 0.23%)</title><rect x="1045.4" y="277" width="2.7" height="15.0" fill="rgb(227,103,24)" rx="2" ry="2" />
<text x="1048.39" y="287.5" ></text>
</g>
<g >
<title>AllocSetAlloc (1,231,250,000 samples, 8.39%)</title><rect x="595.4" y="213" width="99.0" height="15.0" fill="rgb(231,124,29)" rx="2" ry="2" />
<text x="598.37" y="223.5" >AllocSetAlloc</text>
</g>
<g >
<title>pg_atomic_sub_fetch_u32_impl (1,750,000 samples, 0.01%)</title><rect x="1174.6" y="197" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="1177.64" y="207.5" ></text>
</g>
<g >
<title>enlargeStringInfo (739,250,000 samples, 5.04%)</title><rect x="969.6" y="245" width="59.5" height="15.0" fill="rgb(237,150,35)" rx="2" ry="2" />
<text x="972.64" y="255.5" >enlarg..</text>
</g>
<g >
<title>BufTableInsert (4,000,000 samples, 0.03%)</title><rect x="1182.8" y="117" width="0.3" height="15.0" fill="rgb(206,8,1)" rx="2" ry="2" />
<text x="1185.82" y="127.5" ></text>
</g>
<g >
<title>memcpy@plt (37,750,000 samples, 0.26%)</title><rect x="1029.1" y="245" width="3.0" height="15.0" fill="rgb(224,88,21)" rx="2" ry="2" />
<text x="1032.10" y="255.5" ></text>
</g>
<g >
<title>slot_deform_heap_tuple (1,308,500,000 samples, 8.92%)</title><rect x="1053.1" y="213" width="105.2" height="15.0" fill="rgb(247,195,46)" rx="2" ry="2" />
<text x="1056.09" y="223.5" >slot_deform_..</text>
</g>
<g >
<title>hash_bytes (2,250,000 samples, 0.02%)</title><rect x="1188.5" y="117" width="0.1" height="15.0" fill="rgb(227,102,24)" rx="2" ry="2" />
<text x="1191.45" y="127.5" ></text>
</g>
<g >
<title>hash_search_with_hash_value (9,750,000 samples, 0.07%)</title><rect x="1184.2" y="69" width="0.8" height="15.0" fill="rgb(249,205,49)" rx="2" ry="2" />
<text x="1187.21" y="79.5" ></text>
</g>
<g >
<title>ReservePrivateRefCountEntry (4,000,000 samples, 0.03%)</title><rect x="1188.1" y="101" width="0.3" height="15.0" fill="rgb(232,125,30)" rx="2" ry="2" />
<text x="1191.07" y="111.5" ></text>
</g>
<g >
<title>__mempcpy@plt (6,500,000 samples, 0.04%)</title><rect x="452.2" y="213" width="0.5" height="15.0" fill="rgb(223,84,20)" rx="2" ry="2" />
<text x="455.20" y="223.5" ></text>
</g>
<g >
<title>heap_page_prune_opt (1,750,000 samples, 0.01%)</title><rect x="1189.0" y="213" width="0.2" height="15.0" fill="rgb(211,29,7)" rx="2" ry="2" />
<text x="1192.03" y="223.5" ></text>
</g>
<g >
<title>BufferGetPage (4,500,000 samples, 0.03%)</title><rect x="1173.9" y="229" width="0.4" height="15.0" fill="rgb(253,220,52)" rx="2" ry="2" />
<text x="1176.93" y="239.5" ></text>
</g>
<g >
<title>pg_atomic_fetch_or_u32_impl (1,500,000 samples, 0.01%)</title><rect x="1180.4" y="133" width="0.2" height="15.0" fill="rgb(253,224,53)" rx="2" ry="2" />
<text x="1183.45" y="143.5" ></text>
</g>
<g >
<title>pg_atomic_compare_exchange_u32 (1,250,000 samples, 0.01%)</title><rect x="1188.9" y="181" width="0.1" height="15.0" fill="rgb(253,220,52)" rx="2" ry="2" />
<text x="1191.89" y="191.5" ></text>
</g>
</g>
</svg>